blob: 5ea1ce3430793623d8d66c7cd3413b062e4b8fe0 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
15#include "llvm/CodeGen/MachineFunction.h"
16#include "llvm/CodeGen/MachineFrameInfo.h"
17#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner1b989192007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Devang Patelfcf1c752009-01-13 00:35:13 +000019#include "llvm/CodeGen/DwarfWriter.h"
20#include "llvm/Analysis/DebugInfo.h"
Dan Gohman12a9c082008-02-06 22:27:42 +000021#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Chenga448bc42007-08-16 23:50:06 +000022#include "llvm/Target/TargetFrameInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023#include "llvm/Target/TargetLowering.h"
24#include "llvm/Target/TargetData.h"
25#include "llvm/Target/TargetMachine.h"
26#include "llvm/Target/TargetOptions.h"
Dan Gohmane8b391e2008-04-12 04:36:06 +000027#include "llvm/Target/TargetSubtarget.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/CallingConv.h"
29#include "llvm/Constants.h"
30#include "llvm/DerivedTypes.h"
Bill Wendlinge3f43e52009-02-17 01:04:54 +000031#include "llvm/Function.h"
Devang Patelfcf1c752009-01-13 00:35:13 +000032#include "llvm/GlobalVariable.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033#include "llvm/Support/CommandLine.h"
34#include "llvm/Support/Compiler.h"
Duncan Sandsa3691432007-10-28 12:59:45 +000035#include "llvm/Support/MathExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036#include "llvm/ADT/DenseMap.h"
37#include "llvm/ADT/SmallVector.h"
38#include "llvm/ADT/SmallPtrSet.h"
39#include <map>
40using namespace llvm;
41
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042//===----------------------------------------------------------------------===//
43/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
44/// hacks on it until the target machine can handle it. This involves
45/// eliminating value sizes the machine cannot handle (promoting small sizes to
46/// large sizes or splitting up large values into small values) as well as
47/// eliminating operations the machine cannot handle.
48///
49/// This code also does a small amount of optimization and recognition of idioms
50/// as part of its processing. For example, if a target does not support a
51/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
52/// will attempt merge setcc and brc instructions into brcc's.
53///
54namespace {
55class VISIBILITY_HIDDEN SelectionDAGLegalize {
56 TargetLowering &TLI;
57 SelectionDAG &DAG;
Duncan Sandse016a2e2008-12-14 09:43:15 +000058 bool TypesNeedLegalizing;
Bill Wendling123374a2009-02-24 02:35:30 +000059 bool Fast;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060
61 // Libcall insertion helpers.
Scott Michel91099d62009-02-17 22:15:04 +000062
Dan Gohmanf17a25c2007-07-18 16:29:46 +000063 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
64 /// legalized. We use this to ensure that calls are properly serialized
65 /// against each other, including inserted libcalls.
Dan Gohman8181bd12008-07-27 21:46:04 +000066 SDValue LastCALLSEQ_END;
Scott Michel91099d62009-02-17 22:15:04 +000067
Dan Gohmanf17a25c2007-07-18 16:29:46 +000068 /// IsLegalizingCall - This member is used *only* for purposes of providing
Scott Michel91099d62009-02-17 22:15:04 +000069 /// helpful assertions that a libcall isn't created while another call is
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070 /// being legalized (which could lead to non-serialized call sequences).
71 bool IsLegalizingCall;
Scott Michel91099d62009-02-17 22:15:04 +000072
Mon P Wang7cba3942009-02-04 19:38:14 +000073 /// IsLegalizingCallArguments - This member is used only for the purpose
74 /// of providing assert to check for LegalizeTypes because legalizing an
75 /// operation might introduce call nodes that might need type legalization.
76 bool IsLegalizingCallArgs;
77
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078 enum LegalizeAction {
79 Legal, // The target natively supports this operation.
80 Promote, // This operation should be executed in a larger type.
81 Expand // Try to expand this to other ops, otherwise use a libcall.
82 };
Scott Michel91099d62009-02-17 22:15:04 +000083
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084 /// ValueTypeActions - This is a bitvector that contains two bits for each
85 /// value type, where the two bits correspond to the LegalizeAction enum.
86 /// This can be queried with "getTypeAction(VT)".
87 TargetLowering::ValueTypeActionImpl ValueTypeActions;
88
89 /// LegalizedNodes - For nodes that are of legal width, and that have more
90 /// than one use, this map indicates what regularized operand to use. This
91 /// allows us to avoid legalizing the same thing more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000092 DenseMap<SDValue, SDValue> LegalizedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093
94 /// PromotedNodes - For nodes that are below legal width, and that have more
95 /// than one use, this map indicates what promoted value to use. This allows
96 /// us to avoid promoting the same thing more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000097 DenseMap<SDValue, SDValue> PromotedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000098
99 /// ExpandedNodes - For nodes that need to be expanded this map indicates
Mon P Wang1448aad2008-10-30 08:01:45 +0000100 /// which operands are the expanded version of the input. This allows
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000101 /// us to avoid expanding the same node more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +0000102 DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000103
104 /// SplitNodes - For vector nodes that need to be split, this map indicates
Mon P Wang1448aad2008-10-30 08:01:45 +0000105 /// which operands are the split version of the input. This allows us
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106 /// to avoid splitting the same node more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +0000107 std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes;
Scott Michel91099d62009-02-17 22:15:04 +0000108
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109 /// ScalarizedNodes - For nodes that need to be converted from vector types to
110 /// scalar types, this contains the mapping of ones we have already
111 /// processed to the result.
Dan Gohman8181bd12008-07-27 21:46:04 +0000112 std::map<SDValue, SDValue> ScalarizedNodes;
Scott Michel91099d62009-02-17 22:15:04 +0000113
Mon P Wanga5a239f2008-11-06 05:31:54 +0000114 /// WidenNodes - For nodes that need to be widened from one vector type to
115 /// another, this contains the mapping of those that we have already widen.
116 /// This allows us to avoid widening more than once.
Mon P Wang1448aad2008-10-30 08:01:45 +0000117 std::map<SDValue, SDValue> WidenNodes;
118
Dan Gohman8181bd12008-07-27 21:46:04 +0000119 void AddLegalizedOperand(SDValue From, SDValue To) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 LegalizedNodes.insert(std::make_pair(From, To));
121 // If someone requests legalization of the new node, return itself.
122 if (From != To)
123 LegalizedNodes.insert(std::make_pair(To, To));
124 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000125 void AddPromotedOperand(SDValue From, SDValue To) {
Dan Gohman55d19662008-07-07 17:46:23 +0000126 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127 assert(isNew && "Got into the map somehow?");
Evan Chengcf576fd2008-11-24 07:09:49 +0000128 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 // If someone requests legalization of the new node, return itself.
130 LegalizedNodes.insert(std::make_pair(To, To));
131 }
Mon P Wanga5a239f2008-11-06 05:31:54 +0000132 void AddWidenedOperand(SDValue From, SDValue To) {
Mon P Wang1448aad2008-10-30 08:01:45 +0000133 bool isNew = WidenNodes.insert(std::make_pair(From, To)).second;
134 assert(isNew && "Got into the map somehow?");
Evan Chengcf576fd2008-11-24 07:09:49 +0000135 isNew = isNew;
Mon P Wang1448aad2008-10-30 08:01:45 +0000136 // If someone requests legalization of the new node, return itself.
137 LegalizedNodes.insert(std::make_pair(To, To));
138 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139
140public:
Bill Wendling123374a2009-02-24 02:35:30 +0000141 explicit SelectionDAGLegalize(SelectionDAG &DAG, bool TypesNeedLegalizing,
142 bool fast);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143
144 /// getTypeAction - Return how we should legalize values of this type, either
145 /// it is already legal or we need to expand it into multiple registers of
146 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands92c43912008-06-06 12:08:01 +0000147 LegalizeAction getTypeAction(MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
149 }
150
151 /// isTypeLegal - Return true if this type is legal on this target.
152 ///
Duncan Sands92c43912008-06-06 12:08:01 +0000153 bool isTypeLegal(MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154 return getTypeAction(VT) == Legal;
155 }
156
157 void LegalizeDAG();
158
159private:
160 /// HandleOp - Legalize, Promote, or Expand the specified operand as
161 /// appropriate for its type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000162 void HandleOp(SDValue Op);
Scott Michel91099d62009-02-17 22:15:04 +0000163
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 /// LegalizeOp - We know that the specified value has a legal type.
165 /// Recursively ensure that the operands have legal types, then return the
166 /// result.
Dan Gohman8181bd12008-07-27 21:46:04 +0000167 SDValue LegalizeOp(SDValue O);
Scott Michel91099d62009-02-17 22:15:04 +0000168
Dan Gohman6d05cac2007-10-11 23:57:53 +0000169 /// UnrollVectorOp - We know that the given vector has a legal type, however
170 /// the operation it performs is not legal and is an operation that we have
171 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
172 /// operating on each element individually.
Dan Gohman8181bd12008-07-27 21:46:04 +0000173 SDValue UnrollVectorOp(SDValue O);
Scott Michel91099d62009-02-17 22:15:04 +0000174
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000175 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
176 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
177 /// is necessary to spill the vector being inserted into to memory, perform
178 /// the insert there, and then read the result back.
Dan Gohman8181bd12008-07-27 21:46:04 +0000179 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Dale Johannesen352c47e2009-02-02 20:41:04 +0000180 SDValue Idx, DebugLoc dl);
Dan Gohman6d05cac2007-10-11 23:57:53 +0000181
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 /// PromoteOp - Given an operation that produces a value in an invalid type,
183 /// promote it to compute the value into a larger type. The produced value
184 /// will have the correct bits for the low portion of the register, but no
185 /// guarantee is made about the top bits: it may be zero, sign-extended, or
186 /// garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +0000187 SDValue PromoteOp(SDValue O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188
Dan Gohman8181bd12008-07-27 21:46:04 +0000189 /// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
Dan Gohman4fc03742008-10-01 15:07:49 +0000191 /// the LegalizedNodes map is filled in for any results that are not expanded,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192 /// the ExpandedNodes map is filled in for any results that are expanded, and
193 /// the Lo/Hi values are returned. This applies to integer types and Vector
194 /// types.
Dan Gohman8181bd12008-07-27 21:46:04 +0000195 void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196
Scott Michel91099d62009-02-17 22:15:04 +0000197 /// WidenVectorOp - Widen a vector operation to a wider type given by WidenVT
Mon P Wanga5a239f2008-11-06 05:31:54 +0000198 /// (e.g., v3i32 to v4i32). The produced value will have the correct value
199 /// for the existing elements but no guarantee is made about the new elements
200 /// at the end of the vector: it may be zero, ones, or garbage. This is useful
201 /// when we have an instruction operating on an illegal vector type and we
202 /// want to widen it to do the computation on a legal wider vector type.
Mon P Wang1448aad2008-10-30 08:01:45 +0000203 SDValue WidenVectorOp(SDValue Op, MVT WidenVT);
204
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205 /// SplitVectorOp - Given an operand of vector type, break it down into
206 /// two smaller values.
Dan Gohman8181bd12008-07-27 21:46:04 +0000207 void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi);
Scott Michel91099d62009-02-17 22:15:04 +0000208
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209 /// ScalarizeVectorOp - Given an operand of single-element vector type
210 /// (e.g. v1f32), convert it into the equivalent operation that returns a
211 /// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +0000212 SDValue ScalarizeVectorOp(SDValue O);
Scott Michel91099d62009-02-17 22:15:04 +0000213
Mon P Wanga5a239f2008-11-06 05:31:54 +0000214 /// Useful 16 element vector type that is used to pass operands for widening.
Scott Michel91099d62009-02-17 22:15:04 +0000215 typedef SmallVector<SDValue, 16> SDValueVector;
216
Mon P Wang1448aad2008-10-30 08:01:45 +0000217 /// LoadWidenVectorOp - Load a vector for a wider type. Returns true if
218 /// the LdChain contains a single load and false if it contains a token
219 /// factor for multiple loads. It takes
220 /// Result: location to return the result
221 /// LdChain: location to return the load chain
222 /// Op: load operation to widen
223 /// NVT: widen vector result type we want for the load
Scott Michel91099d62009-02-17 22:15:04 +0000224 bool LoadWidenVectorOp(SDValue& Result, SDValue& LdChain,
Mon P Wang1448aad2008-10-30 08:01:45 +0000225 SDValue Op, MVT NVT);
Scott Michel91099d62009-02-17 22:15:04 +0000226
Mon P Wang1448aad2008-10-30 08:01:45 +0000227 /// Helper genWidenVectorLoads - Helper function to generate a set of
228 /// loads to load a vector with a resulting wider type. It takes
229 /// LdChain: list of chains for the load we have generated
230 /// Chain: incoming chain for the ld vector
231 /// BasePtr: base pointer to load from
232 /// SV: memory disambiguation source value
233 /// SVOffset: memory disambiugation offset
234 /// Alignment: alignment of the memory
235 /// isVolatile: volatile load
Scott Michel91099d62009-02-17 22:15:04 +0000236 /// LdWidth: width of memory that we want to load
Mon P Wang1448aad2008-10-30 08:01:45 +0000237 /// ResType: the wider result result type for the resulting loaded vector
238 SDValue genWidenVectorLoads(SDValueVector& LdChain, SDValue Chain,
239 SDValue BasePtr, const Value *SV,
240 int SVOffset, unsigned Alignment,
241 bool isVolatile, unsigned LdWidth,
Dale Johannesend8fd5342009-02-02 22:49:46 +0000242 MVT ResType, DebugLoc dl);
Scott Michel91099d62009-02-17 22:15:04 +0000243
Mon P Wang1448aad2008-10-30 08:01:45 +0000244 /// StoreWidenVectorOp - Stores a widen vector into non widen memory
245 /// location. It takes
246 /// ST: store node that we want to replace
247 /// Chain: incoming store chain
248 /// BasePtr: base address of where we want to store into
Scott Michel91099d62009-02-17 22:15:04 +0000249 SDValue StoreWidenVectorOp(StoreSDNode *ST, SDValue Chain,
Mon P Wang1448aad2008-10-30 08:01:45 +0000250 SDValue BasePtr);
Scott Michel91099d62009-02-17 22:15:04 +0000251
Mon P Wang1448aad2008-10-30 08:01:45 +0000252 /// Helper genWidenVectorStores - Helper function to generate a set of
253 /// stores to store a widen vector into non widen memory
254 // It takes
255 // StChain: list of chains for the stores we have generated
256 // Chain: incoming chain for the ld vector
257 // BasePtr: base pointer to load from
258 // SV: memory disambiguation source value
259 // SVOffset: memory disambiugation offset
260 // Alignment: alignment of the memory
261 // isVolatile: volatile lod
Scott Michel91099d62009-02-17 22:15:04 +0000262 // ValOp: value to store
263 // StWidth: width of memory that we want to store
Mon P Wang1448aad2008-10-30 08:01:45 +0000264 void genWidenVectorStores(SDValueVector& StChain, SDValue Chain,
265 SDValue BasePtr, const Value *SV,
266 int SVOffset, unsigned Alignment,
267 bool isVolatile, SDValue ValOp,
Dale Johannesend8fd5342009-02-02 22:49:46 +0000268 unsigned StWidth, DebugLoc dl);
Scott Michel91099d62009-02-17 22:15:04 +0000269
Duncan Sandsd3ace282008-07-21 10:20:31 +0000270 /// isShuffleLegal - Return non-null if a vector shuffle is legal with the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000271 /// specified mask and type. Targets can specify exactly which masks they
272 /// support and the code generator is tasked with not creating illegal masks.
273 ///
274 /// Note that this will also return true for shuffles that are promoted to a
275 /// different type.
276 ///
277 /// If this is a legal shuffle, this method returns the (possibly promoted)
278 /// build_vector Mask. If it's not a legal shuffle, it returns null.
Dan Gohman8181bd12008-07-27 21:46:04 +0000279 SDNode *isShuffleLegal(MVT VT, SDValue Mask) const;
Scott Michel91099d62009-02-17 22:15:04 +0000280
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000281 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
282 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
283
Dale Johannesen352c47e2009-02-02 20:41:04 +0000284 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC,
285 DebugLoc dl);
286 void LegalizeSetCCCondCode(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
287 DebugLoc dl);
288 void LegalizeSetCC(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
289 DebugLoc dl) {
290 LegalizeSetCCOperands(LHS, RHS, CC, dl);
291 LegalizeSetCCCondCode(VT, LHS, RHS, CC, dl);
Evan Cheng71343822008-10-15 02:05:31 +0000292 }
Scott Michel91099d62009-02-17 22:15:04 +0000293
Dan Gohman8181bd12008-07-27 21:46:04 +0000294 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
295 SDValue &Hi);
Dale Johannesen9972b632009-02-02 19:03:57 +0000296 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000297
Dale Johannesen82b5b722009-02-02 22:12:50 +0000298 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT, DebugLoc dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000299 SDValue ExpandBUILD_VECTOR(SDNode *Node);
300 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Scott Michel91099d62009-02-17 22:15:04 +0000301 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy,
Dale Johannesen9972b632009-02-02 19:03:57 +0000302 SDValue Op, DebugLoc dl);
303 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT,
304 DebugLoc dl);
305 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned,
306 DebugLoc dl);
307 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned,
308 DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309
Dale Johannesen82b5b722009-02-02 22:12:50 +0000310 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
311 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000312 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +0000313 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000314 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +0000315 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316
Dan Gohman8181bd12008-07-27 21:46:04 +0000317 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
318 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000319};
320}
321
322/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
323/// specified mask and type. Targets can specify exactly which masks they
324/// support and the code generator is tasked with not creating illegal masks.
325///
326/// Note that this will also return true for shuffles that are promoted to a
327/// different type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000328SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDValue Mask) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000329 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
330 default: return 0;
331 case TargetLowering::Legal:
332 case TargetLowering::Custom:
333 break;
334 case TargetLowering::Promote: {
335 // If this is promoted to a different type, convert the shuffle mask and
336 // ask if it is legal in the promoted type!
Duncan Sands92c43912008-06-06 12:08:01 +0000337 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Duncan Sandsd3ace282008-07-21 10:20:31 +0000338 MVT EltVT = NVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339
340 // If we changed # elements, change the shuffle mask.
341 unsigned NumEltsGrowth =
Duncan Sands92c43912008-06-06 12:08:01 +0000342 NVT.getVectorNumElements() / VT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000343 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
344 if (NumEltsGrowth > 1) {
345 // Renumber the elements.
Dan Gohman8181bd12008-07-27 21:46:04 +0000346 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000347 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000348 SDValue InOp = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000349 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
350 if (InOp.getOpcode() == ISD::UNDEF)
Dale Johannesen9bfc0172009-02-06 23:05:02 +0000351 Ops.push_back(DAG.getUNDEF(EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 else {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000353 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getZExtValue();
Duncan Sandsd3ace282008-07-21 10:20:31 +0000354 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355 }
356 }
357 }
Evan Cheng907a2d22009-02-25 22:49:59 +0000358 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getDebugLoc(),
359 NVT, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360 }
361 VT = NVT;
362 break;
363 }
364 }
Gabor Greif1c80d112008-08-28 21:40:38 +0000365 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.getNode() : 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366}
367
Bill Wendling123374a2009-02-24 02:35:30 +0000368SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag,
369 bool types, bool fast)
Duncan Sandse016a2e2008-12-14 09:43:15 +0000370 : TLI(dag.getTargetLoweringInfo()), DAG(dag), TypesNeedLegalizing(types),
Bill Wendling123374a2009-02-24 02:35:30 +0000371 Fast(fast), ValueTypeActions(TLI.getValueTypeActions()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000372 assert(MVT::LAST_VALUETYPE <= 32 &&
373 "Too many value types for ValueTypeActions to hold!");
374}
375
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000376void SelectionDAGLegalize::LegalizeDAG() {
377 LastCALLSEQ_END = DAG.getEntryNode();
378 IsLegalizingCall = false;
Mon P Wang7cba3942009-02-04 19:38:14 +0000379 IsLegalizingCallArgs = false;
380
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381 // The legalize process is inherently a bottom-up recursive process (users
382 // legalize their uses before themselves). Given infinite stack space, we
383 // could just start legalizing on the root and traverse the whole graph. In
384 // practice however, this causes us to run out of stack space on large basic
385 // blocks. To avoid this problem, compute an ordering of the nodes where each
386 // node is only legalized after all of its operands are legalized.
Dan Gohman2d2a7a32008-09-30 18:30:35 +0000387 DAG.AssignTopologicalOrder();
388 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
389 E = prior(DAG.allnodes_end()); I != next(E); ++I)
390 HandleOp(SDValue(I, 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000391
392 // Finally, it's possible the root changed. Get the new root.
Dan Gohman8181bd12008-07-27 21:46:04 +0000393 SDValue OldRoot = DAG.getRoot();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
395 DAG.setRoot(LegalizedNodes[OldRoot]);
396
397 ExpandedNodes.clear();
398 LegalizedNodes.clear();
399 PromotedNodes.clear();
400 SplitNodes.clear();
401 ScalarizedNodes.clear();
Mon P Wang1448aad2008-10-30 08:01:45 +0000402 WidenNodes.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403
404 // Remove dead nodes now.
405 DAG.RemoveDeadNodes();
406}
407
408
409/// FindCallEndFromCallStart - Given a chained node that is part of a call
410/// sequence, find the CALLSEQ_END node that terminates the call sequence.
411static SDNode *FindCallEndFromCallStart(SDNode *Node) {
412 if (Node->getOpcode() == ISD::CALLSEQ_END)
413 return Node;
414 if (Node->use_empty())
415 return 0; // No CallSeqEnd
Scott Michel91099d62009-02-17 22:15:04 +0000416
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417 // The chain is usually at the end.
Dan Gohman8181bd12008-07-27 21:46:04 +0000418 SDValue TheChain(Node, Node->getNumValues()-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419 if (TheChain.getValueType() != MVT::Other) {
420 // Sometimes it's at the beginning.
Dan Gohman8181bd12008-07-27 21:46:04 +0000421 TheChain = SDValue(Node, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000422 if (TheChain.getValueType() != MVT::Other) {
423 // Otherwise, hunt for it.
424 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
425 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000426 TheChain = SDValue(Node, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000427 break;
428 }
Scott Michel91099d62009-02-17 22:15:04 +0000429
430 // Otherwise, we walked into a node without a chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000431 if (TheChain.getValueType() != MVT::Other)
432 return 0;
433 }
434 }
Scott Michel91099d62009-02-17 22:15:04 +0000435
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000436 for (SDNode::use_iterator UI = Node->use_begin(),
437 E = Node->use_end(); UI != E; ++UI) {
Scott Michel91099d62009-02-17 22:15:04 +0000438
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439 // Make sure to only follow users of our token chain.
Dan Gohman0c97f1d2008-07-27 20:43:25 +0000440 SDNode *User = *UI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000441 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
442 if (User->getOperand(i) == TheChain)
443 if (SDNode *Result = FindCallEndFromCallStart(User))
444 return Result;
445 }
446 return 0;
447}
448
Scott Michel91099d62009-02-17 22:15:04 +0000449/// FindCallStartFromCallEnd - Given a chained node that is part of a call
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450/// sequence, find the CALLSEQ_START node that initiates the call sequence.
451static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
452 assert(Node && "Didn't find callseq_start for a call??");
453 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Scott Michel91099d62009-02-17 22:15:04 +0000454
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000455 assert(Node->getOperand(0).getValueType() == MVT::Other &&
456 "Node doesn't have a token chain argument!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000457 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000458}
459
460/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
Scott Michel91099d62009-02-17 22:15:04 +0000461/// see if any uses can reach Dest. If no dest operands can get to dest,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000462/// legalize them, legalize ourself, and return false, otherwise, return true.
463///
464/// Keep track of the nodes we fine that actually do lead to Dest in
465/// NodesLeadingTo. This avoids retraversing them exponential number of times.
466///
467bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
468 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
469 if (N == Dest) return true; // N certainly leads to Dest :)
Scott Michel91099d62009-02-17 22:15:04 +0000470
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000471 // If we've already processed this node and it does lead to Dest, there is no
472 // need to reprocess it.
473 if (NodesLeadingTo.count(N)) return true;
Scott Michel91099d62009-02-17 22:15:04 +0000474
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 // If the first result of this node has been already legalized, then it cannot
476 // reach N.
477 switch (getTypeAction(N->getValueType(0))) {
Scott Michel91099d62009-02-17 22:15:04 +0000478 case Legal:
Dan Gohman8181bd12008-07-27 21:46:04 +0000479 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480 break;
481 case Promote:
Dan Gohman8181bd12008-07-27 21:46:04 +0000482 if (PromotedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000483 break;
484 case Expand:
Dan Gohman8181bd12008-07-27 21:46:04 +0000485 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486 break;
487 }
Scott Michel91099d62009-02-17 22:15:04 +0000488
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 // Okay, this node has not already been legalized. Check and legalize all
490 // operands. If none lead to Dest, then we can legalize this node.
491 bool OperandsLeadToDest = false;
492 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
493 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greif1c80d112008-08-28 21:40:38 +0000494 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000495
496 if (OperandsLeadToDest) {
497 NodesLeadingTo.insert(N);
498 return true;
499 }
500
501 // Okay, this node looks safe, legalize it and return false.
Dan Gohman8181bd12008-07-27 21:46:04 +0000502 HandleOp(SDValue(N, 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503 return false;
504}
505
Mon P Wang1448aad2008-10-30 08:01:45 +0000506/// HandleOp - Legalize, Promote, Widen, or Expand the specified operand as
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507/// appropriate for its type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000508void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +0000509 MVT VT = Op.getValueType();
Duncan Sandse016a2e2008-12-14 09:43:15 +0000510 // If the type legalizer was run then we should never see any illegal result
511 // types here except for target constants (the type legalizer does not touch
Mon P Wang26342922008-12-18 20:03:17 +0000512 // those) or for build vector used as a mask for a vector shuffle.
513 // FIXME: We can removed the BUILD_VECTOR case when we fix PR2957.
Duncan Sandse016a2e2008-12-14 09:43:15 +0000514 assert((TypesNeedLegalizing || getTypeAction(VT) == Legal ||
Mon P Wang7cba3942009-02-04 19:38:14 +0000515 IsLegalizingCallArgs || Op.getOpcode() == ISD::TargetConstant ||
Mon P Wang26342922008-12-18 20:03:17 +0000516 Op.getOpcode() == ISD::BUILD_VECTOR) &&
Duncan Sandse016a2e2008-12-14 09:43:15 +0000517 "Illegal type introduced after type legalization?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518 switch (getTypeAction(VT)) {
519 default: assert(0 && "Bad type action!");
520 case Legal: (void)LegalizeOp(Op); break;
Mon P Wang1448aad2008-10-30 08:01:45 +0000521 case Promote:
522 if (!VT.isVector()) {
523 (void)PromoteOp(Op);
524 break;
525 }
526 else {
527 // See if we can widen otherwise use Expand to either scalarize or split
528 MVT WidenVT = TLI.getWidenVectorType(VT);
529 if (WidenVT != MVT::Other) {
530 (void) WidenVectorOp(Op, WidenVT);
531 break;
532 }
533 // else fall thru to expand since we can't widen the vector
534 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +0000536 if (!VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000537 // If this is an illegal scalar, expand it into its two component
538 // pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +0000539 SDValue X, Y;
Chris Lattnerdad577b2007-08-25 01:00:22 +0000540 if (Op.getOpcode() == ISD::TargetConstant)
541 break; // Allow illegal target nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000542 ExpandOp(Op, X, Y);
Duncan Sands92c43912008-06-06 12:08:01 +0000543 } else if (VT.getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000544 // If this is an illegal single element vector, convert it to a
545 // scalar operation.
546 (void)ScalarizeVectorOp(Op);
547 } else {
Mon P Wang1448aad2008-10-30 08:01:45 +0000548 // This is an illegal multiple element vector.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000549 // Split it in half and legalize both parts.
Dan Gohman8181bd12008-07-27 21:46:04 +0000550 SDValue X, Y;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000551 SplitVectorOp(Op, X, Y);
552 }
553 break;
554 }
555}
556
557/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
558/// a load from the constant pool.
Dan Gohman8181bd12008-07-27 21:46:04 +0000559static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohman0275b132009-01-15 16:43:02 +0000560 SelectionDAG &DAG, const TargetLowering &TLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561 bool Extend = false;
Dale Johannesenea996922009-02-04 20:06:27 +0000562 DebugLoc dl = CFP->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000563
564 // If a FP immediate is precise when represented as a float and if the
565 // target can do an extending load from float to double, we put it into
566 // the constant pool as a float, even if it's is statically typed as a
Chris Lattnere718cc52008-03-05 06:46:58 +0000567 // double. This shrinks FP constants and canonicalizes them for targets where
568 // an FP extending load is the same cost as a normal load (such as on the x87
569 // fp stack or PPC FP unit).
Duncan Sands92c43912008-06-06 12:08:01 +0000570 MVT VT = CFP->getValueType(0);
Dan Gohmanc1f3a072008-09-12 18:08:03 +0000571 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572 if (!UseCP) {
Chris Lattner50ce8342009-03-08 01:47:41 +0000573 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen49cc7ce2008-10-09 18:53:47 +0000574 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Cheng354be062008-03-04 08:05:30 +0000575 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000576 }
577
Duncan Sands92c43912008-06-06 12:08:01 +0000578 MVT OrigVT = VT;
579 MVT SVT = VT;
Evan Cheng354be062008-03-04 08:05:30 +0000580 while (SVT != MVT::f32) {
Duncan Sands92c43912008-06-06 12:08:01 +0000581 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Cheng354be062008-03-04 08:05:30 +0000582 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
583 // Only do this if the target has a native EXTLOAD instruction from
584 // smaller type.
Evan Cheng08c171a2008-10-14 21:26:46 +0000585 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattnere718cc52008-03-05 06:46:58 +0000586 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands92c43912008-06-06 12:08:01 +0000587 const Type *SType = SVT.getTypeForMVT();
Evan Cheng354be062008-03-04 08:05:30 +0000588 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
589 VT = SVT;
590 Extend = true;
591 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000592 }
593
Dan Gohman8181bd12008-07-27 21:46:04 +0000594 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +0000595 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Cheng354be062008-03-04 08:05:30 +0000596 if (Extend)
Dale Johannesenea996922009-02-04 20:06:27 +0000597 return DAG.getExtLoad(ISD::EXTLOAD, dl,
Dale Johannesen3c4fb222009-02-04 02:34:38 +0000598 OrigVT, DAG.getEntryNode(),
Dan Gohmanfb020b62008-02-07 18:41:25 +0000599 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman04637d12008-09-16 22:05:41 +0000600 0, VT, false, Alignment);
Dale Johannesenea996922009-02-04 20:06:27 +0000601 return DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +0000602 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000603}
604
605
606/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
607/// operations.
608static
Dan Gohman8181bd12008-07-27 21:46:04 +0000609SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Dan Gohman0275b132009-01-15 16:43:02 +0000610 SelectionDAG &DAG,
611 const TargetLowering &TLI) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000612 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +0000613 MVT VT = Node->getValueType(0);
614 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000615 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
616 "fcopysign expansion only supported for f32 and f64");
Duncan Sands92c43912008-06-06 12:08:01 +0000617 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618
619 // First get the sign bit of second operand.
Dan Gohman8181bd12008-07-27 21:46:04 +0000620 SDValue Mask1 = (SrcVT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000621 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
622 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000623 Mask1 = DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, Mask1);
Scott Michel91099d62009-02-17 22:15:04 +0000624 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT,
Dale Johannesen352c47e2009-02-02 20:41:04 +0000625 Node->getOperand(1));
626 SignBit = DAG.getNode(ISD::AND, dl, SrcNVT, SignBit, Mask1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000627 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands92c43912008-06-06 12:08:01 +0000628 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000629 if (SizeDiff > 0) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000630 SignBit = DAG.getNode(ISD::SRL, dl, SrcNVT, SignBit,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000631 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000632 SignBit = DAG.getNode(ISD::TRUNCATE, dl, NVT, SignBit);
Chris Lattnere6fa1452008-07-10 23:46:13 +0000633 } else if (SizeDiff < 0) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000634 SignBit = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, SignBit);
635 SignBit = DAG.getNode(ISD::SHL, dl, NVT, SignBit,
Chris Lattnere6fa1452008-07-10 23:46:13 +0000636 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
637 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000638
639 // Clear the sign bit of first operand.
Dan Gohman8181bd12008-07-27 21:46:04 +0000640 SDValue Mask2 = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
642 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000643 Mask2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask2);
644 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
645 Result = DAG.getNode(ISD::AND, dl, NVT, Result, Mask2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000646
647 // Or the value with the sign bit.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000648 Result = DAG.getNode(ISD::OR, dl, NVT, Result, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000649 return Result;
650}
651
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000652/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
653static
Dan Gohman8181bd12008-07-27 21:46:04 +0000654SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
Dan Gohman0275b132009-01-15 16:43:02 +0000655 const TargetLowering &TLI) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000656 SDValue Chain = ST->getChain();
657 SDValue Ptr = ST->getBasePtr();
658 SDValue Val = ST->getValue();
Duncan Sands92c43912008-06-06 12:08:01 +0000659 MVT VT = Val.getValueType();
Dale Johannesen08275382007-09-08 19:29:23 +0000660 int Alignment = ST->getAlignment();
661 int SVOffset = ST->getSrcValueOffset();
Dale Johannesen352c47e2009-02-02 20:41:04 +0000662 DebugLoc dl = ST->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +0000663 if (ST->getMemoryVT().isFloatingPoint() ||
664 ST->getMemoryVT().isVector()) {
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000665 MVT intVT = MVT::getIntegerVT(VT.getSizeInBits());
666 if (TLI.isTypeLegal(intVT)) {
667 // Expand to a bitconvert of the value to the integer type of the
668 // same size, then a (misaligned) int store.
669 // FIXME: Does not handle truncating floating point stores!
Dale Johannesen352c47e2009-02-02 20:41:04 +0000670 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, intVT, Val);
671 return DAG.getStore(Chain, dl, Result, Ptr, ST->getSrcValue(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000672 SVOffset, ST->isVolatile(), Alignment);
673 } else {
674 // Do a (aligned) store to a stack slot, then copy from the stack slot
675 // to the final destination using (unaligned) integer loads and stores.
676 MVT StoredVT = ST->getMemoryVT();
677 MVT RegVT =
678 TLI.getRegisterType(MVT::getIntegerVT(StoredVT.getSizeInBits()));
679 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
680 unsigned RegBytes = RegVT.getSizeInBits() / 8;
681 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
Dale Johannesen08275382007-09-08 19:29:23 +0000682
Duncan Sands734f49b2008-12-13 07:18:38 +0000683 // Make sure the stack slot is also aligned for the register type.
684 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
685
686 // Perform the original store, only redirected to the stack slot.
Scott Michel91099d62009-02-17 22:15:04 +0000687 SDValue Store = DAG.getTruncStore(Chain, dl,
Bob Wilson2e958a42009-04-10 18:48:47 +0000688 Val, StackPtr, NULL, 0, StoredVT);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000689 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
690 SmallVector<SDValue, 8> Stores;
691 unsigned Offset = 0;
692
693 // Do all but one copies using the full register width.
694 for (unsigned i = 1; i < NumRegs; i++) {
695 // Load one integer register's worth from the stack slot.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000696 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, NULL, 0);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000697 // Store it to the final location. Remember the store.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000698 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000699 ST->getSrcValue(), SVOffset + Offset,
700 ST->isVolatile(),
701 MinAlign(ST->getAlignment(), Offset)));
702 // Increment the pointers.
703 Offset += RegBytes;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000704 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000705 Increment);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000706 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000707 }
708
Duncan Sands734f49b2008-12-13 07:18:38 +0000709 // The last store may be partial. Do a truncating store. On big-endian
710 // machines this requires an extending load from the stack slot to ensure
711 // that the bits are in the right place.
712 MVT MemVT = MVT::getIntegerVT(8 * (StoredBytes - Offset));
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000713
Duncan Sands734f49b2008-12-13 07:18:38 +0000714 // Load from the stack slot.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000715 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
Duncan Sands734f49b2008-12-13 07:18:38 +0000716 NULL, 0, MemVT);
717
Dale Johannesen352c47e2009-02-02 20:41:04 +0000718 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000719 ST->getSrcValue(), SVOffset + Offset,
Duncan Sands734f49b2008-12-13 07:18:38 +0000720 MemVT, ST->isVolatile(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000721 MinAlign(ST->getAlignment(), Offset)));
722 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000723 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000724 Stores.size());
725 }
Dale Johannesen08275382007-09-08 19:29:23 +0000726 }
Duncan Sands92c43912008-06-06 12:08:01 +0000727 assert(ST->getMemoryVT().isInteger() &&
728 !ST->getMemoryVT().isVector() &&
Dale Johannesen08275382007-09-08 19:29:23 +0000729 "Unaligned store of unknown type.");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000730 // Get the half-size VT
Duncan Sands92c43912008-06-06 12:08:01 +0000731 MVT NewStoredVT =
732 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
733 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000734 int IncrementSize = NumBits / 8;
735
736 // Divide the stored value in two parts.
Dan Gohman8181bd12008-07-27 21:46:04 +0000737 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
738 SDValue Lo = Val;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000739 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000740
741 // Store the two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000742 SDValue Store1, Store2;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000743 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000744 ST->getSrcValue(), SVOffset, NewStoredVT,
745 ST->isVolatile(), Alignment);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000746 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000747 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsa3691432007-10-28 12:59:45 +0000748 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000749 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000750 ST->getSrcValue(), SVOffset + IncrementSize,
751 NewStoredVT, ST->isVolatile(), Alignment);
752
Dale Johannesen352c47e2009-02-02 20:41:04 +0000753 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000754}
755
756/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
757static
Dan Gohman8181bd12008-07-27 21:46:04 +0000758SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
Dan Gohmana0c429e2009-01-15 16:58:17 +0000759 const TargetLowering &TLI) {
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000760 int SVOffset = LD->getSrcValueOffset();
Dan Gohman8181bd12008-07-27 21:46:04 +0000761 SDValue Chain = LD->getChain();
762 SDValue Ptr = LD->getBasePtr();
Duncan Sands92c43912008-06-06 12:08:01 +0000763 MVT VT = LD->getValueType(0);
764 MVT LoadedVT = LD->getMemoryVT();
Dale Johannesen352c47e2009-02-02 20:41:04 +0000765 DebugLoc dl = LD->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +0000766 if (VT.isFloatingPoint() || VT.isVector()) {
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000767 MVT intVT = MVT::getIntegerVT(LoadedVT.getSizeInBits());
768 if (TLI.isTypeLegal(intVT)) {
769 // Expand to a (misaligned) integer load of the same size,
770 // then bitconvert to floating point or vector.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000771 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000772 SVOffset, LD->isVolatile(),
Dale Johannesen08275382007-09-08 19:29:23 +0000773 LD->getAlignment());
Dale Johannesen352c47e2009-02-02 20:41:04 +0000774 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, LoadedVT, newLoad);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000775 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen352c47e2009-02-02 20:41:04 +0000776 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen08275382007-09-08 19:29:23 +0000777
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000778 SDValue Ops[] = { Result, Chain };
Dale Johannesen352c47e2009-02-02 20:41:04 +0000779 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000780 } else {
781 // Copy the value to a (aligned) stack slot using (unaligned) integer
782 // loads and stores, then do a (aligned) load from the stack slot.
783 MVT RegVT = TLI.getRegisterType(intVT);
784 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
785 unsigned RegBytes = RegVT.getSizeInBits() / 8;
786 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
787
Duncan Sands734f49b2008-12-13 07:18:38 +0000788 // Make sure the stack slot is also aligned for the register type.
789 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
790
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000791 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
792 SmallVector<SDValue, 8> Stores;
793 SDValue StackPtr = StackBase;
794 unsigned Offset = 0;
795
796 // Do all but one copies using the full register width.
797 for (unsigned i = 1; i < NumRegs; i++) {
798 // Load one integer register's worth from the original location.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000799 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000800 SVOffset + Offset, LD->isVolatile(),
801 MinAlign(LD->getAlignment(), Offset));
802 // Follow the load with a store to the stack slot. Remember the store.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000803 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000804 NULL, 0));
805 // Increment the pointers.
806 Offset += RegBytes;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000807 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
808 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000809 Increment);
810 }
811
812 // The last copy may be partial. Do an extending load.
Duncan Sands734f49b2008-12-13 07:18:38 +0000813 MVT MemVT = MVT::getIntegerVT(8 * (LoadedBytes - Offset));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000814 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000815 LD->getSrcValue(), SVOffset + Offset,
Duncan Sands734f49b2008-12-13 07:18:38 +0000816 MemVT, LD->isVolatile(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000817 MinAlign(LD->getAlignment(), Offset));
818 // Follow the load with a store to the stack slot. Remember the store.
Duncan Sands734f49b2008-12-13 07:18:38 +0000819 // On big-endian machines this requires a truncating store to ensure
820 // that the bits end up in the right place.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000821 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sands734f49b2008-12-13 07:18:38 +0000822 NULL, 0, MemVT));
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000823
824 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000825 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000826 Stores.size());
827
828 // Finally, perform the original load only redirected to the stack slot.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000829 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000830 NULL, 0, LoadedVT);
831
832 // Callers expect a MERGE_VALUES node.
833 SDValue Ops[] = { Load, TF };
Dale Johannesen352c47e2009-02-02 20:41:04 +0000834 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000835 }
Dale Johannesen08275382007-09-08 19:29:23 +0000836 }
Duncan Sands92c43912008-06-06 12:08:01 +0000837 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000838 "Unaligned load of unsupported type.");
839
Dale Johannesendc0ee192008-02-27 22:36:00 +0000840 // Compute the new VT that is half the size of the old one. This is an
841 // integer MVT.
Duncan Sands92c43912008-06-06 12:08:01 +0000842 unsigned NumBits = LoadedVT.getSizeInBits();
843 MVT NewLoadedVT;
844 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000845 NumBits >>= 1;
Scott Michel91099d62009-02-17 22:15:04 +0000846
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000847 unsigned Alignment = LD->getAlignment();
848 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000849 ISD::LoadExtType HiExtType = LD->getExtensionType();
850
851 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
852 if (HiExtType == ISD::NON_EXTLOAD)
853 HiExtType = ISD::ZEXTLOAD;
854
855 // Load the value in two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000856 SDValue Lo, Hi;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000857 if (TLI.isLittleEndian()) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000858 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000859 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000860 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000861 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000862 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000863 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsa3691432007-10-28 12:59:45 +0000864 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000865 } else {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000866 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Bob Wilson2e958a42009-04-10 18:48:47 +0000867 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000868 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000869 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000870 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000871 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsa3691432007-10-28 12:59:45 +0000872 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000873 }
874
875 // aggregate the two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000876 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
Dale Johannesen352c47e2009-02-02 20:41:04 +0000877 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
878 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000879
Dale Johannesen352c47e2009-02-02 20:41:04 +0000880 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000881 Hi.getValue(1));
882
Dan Gohman8181bd12008-07-27 21:46:04 +0000883 SDValue Ops[] = { Result, TF };
Dale Johannesen352c47e2009-02-02 20:41:04 +0000884 return DAG.getMergeValues(Ops, 2, dl);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000885}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000886
Dan Gohman6d05cac2007-10-11 23:57:53 +0000887/// UnrollVectorOp - We know that the given vector has a legal type, however
888/// the operation it performs is not legal and is an operation that we have
889/// no way of lowering. "Unroll" the vector, splitting out the scalars and
890/// operating on each element individually.
Dan Gohman8181bd12008-07-27 21:46:04 +0000891SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +0000892 MVT VT = Op.getValueType();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000893 assert(isTypeLegal(VT) &&
894 "Caller should expand or promote operands that are not legal!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000895 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman6d05cac2007-10-11 23:57:53 +0000896 "Can't unroll a vector with multiple results!");
Duncan Sands92c43912008-06-06 12:08:01 +0000897 unsigned NE = VT.getVectorNumElements();
898 MVT EltVT = VT.getVectorElementType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +0000899 DebugLoc dl = Op.getDebugLoc();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000900
Dan Gohman8181bd12008-07-27 21:46:04 +0000901 SmallVector<SDValue, 8> Scalars;
902 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman6d05cac2007-10-11 23:57:53 +0000903 for (unsigned i = 0; i != NE; ++i) {
904 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000905 SDValue Operand = Op.getOperand(j);
Duncan Sands92c43912008-06-06 12:08:01 +0000906 MVT OperandVT = Operand.getValueType();
907 if (OperandVT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +0000908 // A vector operand; extract a single element.
Duncan Sands92c43912008-06-06 12:08:01 +0000909 MVT OperandEltVT = OperandVT.getVectorElementType();
Dale Johannesen352c47e2009-02-02 20:41:04 +0000910 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dan Gohman6d05cac2007-10-11 23:57:53 +0000911 OperandEltVT,
912 Operand,
913 DAG.getConstant(i, MVT::i32));
914 } else {
915 // A scalar operand; just use it as is.
916 Operands[j] = Operand;
917 }
918 }
Mon P Wang9901e732008-12-09 05:46:39 +0000919
920 switch (Op.getOpcode()) {
921 default:
Dale Johannesen352c47e2009-02-02 20:41:04 +0000922 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT,
Mon P Wang9901e732008-12-09 05:46:39 +0000923 &Operands[0], Operands.size()));
924 break;
925 case ISD::SHL:
926 case ISD::SRA:
927 case ISD::SRL:
Duncan Sands7d9e3612009-01-31 15:50:11 +0000928 case ISD::ROTL:
929 case ISD::ROTR:
Dale Johannesen352c47e2009-02-02 20:41:04 +0000930 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, Operands[0],
Duncan Sands7d9e3612009-01-31 15:50:11 +0000931 DAG.getShiftAmountOperand(Operands[1])));
Mon P Wang9901e732008-12-09 05:46:39 +0000932 break;
933 }
Dan Gohman6d05cac2007-10-11 23:57:53 +0000934 }
935
Evan Cheng907a2d22009-02-25 22:49:59 +0000936 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Scalars[0], Scalars.size());
Dan Gohman6d05cac2007-10-11 23:57:53 +0000937}
938
Duncan Sands37a3f472008-01-10 10:28:30 +0000939/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands92c43912008-06-06 12:08:01 +0000940static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands37a3f472008-01-10 10:28:30 +0000941 RTLIB::Libcall Call_F32,
942 RTLIB::Libcall Call_F64,
943 RTLIB::Libcall Call_F80,
944 RTLIB::Libcall Call_PPCF128) {
945 return
946 VT == MVT::f32 ? Call_F32 :
947 VT == MVT::f64 ? Call_F64 :
948 VT == MVT::f80 ? Call_F80 :
949 VT == MVT::ppcf128 ? Call_PPCF128 :
950 RTLIB::UNKNOWN_LIBCALL;
951}
952
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000953/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
954/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
955/// is necessary to spill the vector being inserted into to memory, perform
956/// the insert there, and then read the result back.
Dan Gohman8181bd12008-07-27 21:46:04 +0000957SDValue SelectionDAGLegalize::
Dale Johannesen352c47e2009-02-02 20:41:04 +0000958PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
959 DebugLoc dl) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000960 SDValue Tmp1 = Vec;
961 SDValue Tmp2 = Val;
962 SDValue Tmp3 = Idx;
Scott Michel91099d62009-02-17 22:15:04 +0000963
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000964 // If the target doesn't support this, we have to spill the input vector
965 // to a temporary stack slot, update the element, then reload it. This is
966 // badness. We could also load the value into a vector register (either
967 // with a "move to register" or "extload into register" instruction, then
968 // permute it into place, if the idx is a constant and if the idx is
969 // supported by the target.
Duncan Sands92c43912008-06-06 12:08:01 +0000970 MVT VT = Tmp1.getValueType();
971 MVT EltVT = VT.getVectorElementType();
972 MVT IdxVT = Tmp3.getValueType();
973 MVT PtrVT = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +0000974 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000975
Gabor Greif1c80d112008-08-28 21:40:38 +0000976 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000977
978 // Store the vector.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000979 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Mon P Wang1448aad2008-10-30 08:01:45 +0000980 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000981
982 // Truncate or zero extend offset to target pointer type.
Duncan Sandsec142ee2008-06-08 20:54:56 +0000983 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000984 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000985 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +0000986 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000987 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
988 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000989 // Store the scalar value.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000990 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2,
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000991 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000992 // Load the updated vector.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000993 return DAG.getLoad(VT, dl, Ch, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000994 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000995}
996
Mon P Wang9901e732008-12-09 05:46:39 +0000997
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000998/// LegalizeOp - We know that the specified value has a legal type, and
999/// that its operands are legal. Now ensure that the operation itself
1000/// is legal, recursively ensuring that the operands' operations remain
1001/// legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00001002SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattnerdad577b2007-08-25 01:00:22 +00001003 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1004 return Op;
Scott Michel91099d62009-02-17 22:15:04 +00001005
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001006 assert(isTypeLegal(Op.getValueType()) &&
1007 "Caller should expand or promote operands that are not legal!");
Gabor Greif1c80d112008-08-28 21:40:38 +00001008 SDNode *Node = Op.getNode();
Dale Johannesenca6237b2009-01-30 23:10:59 +00001009 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001010
1011 // If this operation defines any values that cannot be represented in a
1012 // register on this target, make sure to expand or promote them.
1013 if (Node->getNumValues() > 1) {
1014 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1015 if (getTypeAction(Node->getValueType(i)) != Legal) {
1016 HandleOp(Op.getValue(i));
1017 assert(LegalizedNodes.count(Op) &&
1018 "Handling didn't add legal operands!");
1019 return LegalizedNodes[Op];
1020 }
1021 }
1022
1023 // Note that LegalizeOp may be reentered even from single-use nodes, which
1024 // means that we always must cache transformed nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00001025 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001026 if (I != LegalizedNodes.end()) return I->second;
1027
Dan Gohman8181bd12008-07-27 21:46:04 +00001028 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
1029 SDValue Result = Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001030 bool isCustom = false;
Scott Michel91099d62009-02-17 22:15:04 +00001031
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001032 switch (Node->getOpcode()) {
1033 case ISD::FrameIndex:
1034 case ISD::EntryToken:
1035 case ISD::Register:
1036 case ISD::BasicBlock:
1037 case ISD::TargetFrameIndex:
1038 case ISD::TargetJumpTable:
1039 case ISD::TargetConstant:
1040 case ISD::TargetConstantFP:
1041 case ISD::TargetConstantPool:
1042 case ISD::TargetGlobalAddress:
1043 case ISD::TargetGlobalTLSAddress:
Bill Wendlingfef06052008-09-16 21:48:12 +00001044 case ISD::TargetExternalSymbol:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001045 case ISD::VALUETYPE:
1046 case ISD::SRCVALUE:
Dan Gohman12a9c082008-02-06 22:27:42 +00001047 case ISD::MEMOPERAND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001048 case ISD::CONDCODE:
Duncan Sandsc93fae32008-03-21 09:14:45 +00001049 case ISD::ARG_FLAGS:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001050 // Primitives must all be legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +00001051 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052 "This must be legal!");
1053 break;
1054 default:
1055 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
1056 // If this is a target node, legalize it by legalizing the operands then
1057 // passing it through.
Dan Gohman8181bd12008-07-27 21:46:04 +00001058 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001059 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1060 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1061
1062 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
1063
1064 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1065 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00001066 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001067 }
1068 // Otherwise this is an unhandled builtin node. splat.
1069#ifndef NDEBUG
1070 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
1071#endif
1072 assert(0 && "Do not know how to legalize this operator!");
1073 abort();
1074 case ISD::GLOBAL_OFFSET_TABLE:
1075 case ISD::GlobalAddress:
1076 case ISD::GlobalTLSAddress:
Bill Wendlingfef06052008-09-16 21:48:12 +00001077 case ISD::ExternalSymbol:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001078 case ISD::ConstantPool:
1079 case ISD::JumpTable: // Nothing to do.
1080 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1081 default: assert(0 && "This action is not supported yet!");
1082 case TargetLowering::Custom:
1083 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001084 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085 // FALLTHROUGH if the target doesn't want to lower this op after all.
1086 case TargetLowering::Legal:
1087 break;
1088 }
1089 break;
1090 case ISD::FRAMEADDR:
1091 case ISD::RETURNADDR:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001092 // The only option for these nodes is to custom lower them. If the target
1093 // does not custom lower them, then return zero.
1094 Tmp1 = TLI.LowerOperation(Op, DAG);
Scott Michel91099d62009-02-17 22:15:04 +00001095 if (Tmp1.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001096 Result = Tmp1;
1097 else
1098 Result = DAG.getConstant(0, TLI.getPointerTy());
1099 break;
Anton Korobeynikove3d7f932007-08-29 23:18:48 +00001100 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands92c43912008-06-06 12:08:01 +00001101 MVT VT = Node->getValueType(0);
Anton Korobeynikov09386bd2007-08-29 19:28:29 +00001102 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1103 default: assert(0 && "This action is not supported yet!");
1104 case TargetLowering::Custom:
1105 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001106 if (Result.getNode()) break;
Anton Korobeynikov09386bd2007-08-29 19:28:29 +00001107 // Fall Thru
1108 case TargetLowering::Legal:
1109 Result = DAG.getConstant(0, VT);
1110 break;
1111 }
Anton Korobeynikove3d7f932007-08-29 23:18:48 +00001112 }
Anton Korobeynikov09386bd2007-08-29 19:28:29 +00001113 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001114 case ISD::EXCEPTIONADDR: {
1115 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00001116 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001117 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1118 default: assert(0 && "This action is not supported yet!");
1119 case TargetLowering::Expand: {
1120 unsigned Reg = TLI.getExceptionAddressRegister();
Dale Johannesen564036c2009-02-04 00:13:36 +00001121 Result = DAG.getCopyFromReg(Tmp1, dl, Reg, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001122 }
1123 break;
1124 case TargetLowering::Custom:
1125 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001126 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001127 // Fall Thru
1128 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001129 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001130 Result = DAG.getMergeValues(Ops, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001131 break;
1132 }
1133 }
1134 }
Gabor Greif1c80d112008-08-28 21:40:38 +00001135 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001136
Gabor Greif1c80d112008-08-28 21:40:38 +00001137 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001138 "Cannot return more than two values!");
1139
1140 // Since we produced two values, make sure to remember that we
1141 // legalized both of them.
1142 Tmp1 = LegalizeOp(Result);
1143 Tmp2 = LegalizeOp(Result.getValue(1));
1144 AddLegalizedOperand(Op.getValue(0), Tmp1);
1145 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001146 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001147 case ISD::EHSELECTION: {
1148 Tmp1 = LegalizeOp(Node->getOperand(0));
1149 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00001150 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001151 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1152 default: assert(0 && "This action is not supported yet!");
1153 case TargetLowering::Expand: {
1154 unsigned Reg = TLI.getExceptionSelectorRegister();
Dale Johannesen564036c2009-02-04 00:13:36 +00001155 Result = DAG.getCopyFromReg(Tmp2, dl, Reg, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156 }
1157 break;
1158 case TargetLowering::Custom:
1159 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001160 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001161 // Fall Thru
1162 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001163 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001164 Result = DAG.getMergeValues(Ops, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001165 break;
1166 }
1167 }
1168 }
Gabor Greif1c80d112008-08-28 21:40:38 +00001169 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001170
Gabor Greif1c80d112008-08-28 21:40:38 +00001171 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001172 "Cannot return more than two values!");
1173
1174 // Since we produced two values, make sure to remember that we
1175 // legalized both of them.
1176 Tmp1 = LegalizeOp(Result);
1177 Tmp2 = LegalizeOp(Result.getValue(1));
1178 AddLegalizedOperand(Op.getValue(0), Tmp1);
1179 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001180 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001181 case ISD::EH_RETURN: {
Duncan Sands92c43912008-06-06 12:08:01 +00001182 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001183 // The only "good" option for this node is to custom lower it.
1184 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1185 default: assert(0 && "This action is not supported at all!");
1186 case TargetLowering::Custom:
1187 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001188 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001189 // Fall Thru
1190 case TargetLowering::Legal:
1191 // Target does not know, how to lower this, lower to noop
1192 Result = LegalizeOp(Node->getOperand(0));
1193 break;
1194 }
1195 }
1196 break;
1197 case ISD::AssertSext:
1198 case ISD::AssertZext:
1199 Tmp1 = LegalizeOp(Node->getOperand(0));
1200 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1201 break;
1202 case ISD::MERGE_VALUES:
1203 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif46bf5472008-08-26 22:36:50 +00001204 Result = Node->getOperand(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001205 break;
1206 case ISD::CopyFromReg:
1207 Tmp1 = LegalizeOp(Node->getOperand(0));
1208 Result = Op.getValue(0);
1209 if (Node->getNumValues() == 2) {
1210 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1211 } else {
1212 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
1213 if (Node->getNumOperands() == 3) {
1214 Tmp2 = LegalizeOp(Node->getOperand(2));
1215 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1216 } else {
1217 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1218 }
1219 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1220 }
1221 // Since CopyFromReg produces two values, make sure to remember that we
1222 // legalized both of them.
1223 AddLegalizedOperand(Op.getValue(0), Result);
1224 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001225 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001226 case ISD::UNDEF: {
Duncan Sands92c43912008-06-06 12:08:01 +00001227 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001228 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
1229 default: assert(0 && "This action is not supported yet!");
1230 case TargetLowering::Expand:
Duncan Sands92c43912008-06-06 12:08:01 +00001231 if (VT.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001232 Result = DAG.getConstant(0, VT);
Duncan Sands92c43912008-06-06 12:08:01 +00001233 else if (VT.isFloatingPoint())
1234 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesen20b76352007-09-26 17:26:49 +00001235 VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001236 else
1237 assert(0 && "Unknown value type!");
1238 break;
1239 case TargetLowering::Legal:
1240 break;
1241 }
1242 break;
1243 }
Scott Michel91099d62009-02-17 22:15:04 +00001244
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001245 case ISD::INTRINSIC_W_CHAIN:
1246 case ISD::INTRINSIC_WO_CHAIN:
1247 case ISD::INTRINSIC_VOID: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001248 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001249 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1250 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1251 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michel91099d62009-02-17 22:15:04 +00001252
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001253 // Allow the target to custom lower its intrinsics if it wants to.
Scott Michel91099d62009-02-17 22:15:04 +00001254 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001255 TargetLowering::Custom) {
1256 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001257 if (Tmp3.getNode()) Result = Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001258 }
1259
Gabor Greif1c80d112008-08-28 21:40:38 +00001260 if (Result.getNode()->getNumValues() == 1) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001261
1262 // Must have return value and chain result.
Gabor Greif1c80d112008-08-28 21:40:38 +00001263 assert(Result.getNode()->getNumValues() == 2 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001264 "Cannot return more than two values!");
1265
Scott Michel91099d62009-02-17 22:15:04 +00001266 // Since loads produce two values, make sure to remember that we
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001267 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001268 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1269 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001270 return Result.getValue(Op.getResNo());
Scott Michel91099d62009-02-17 22:15:04 +00001271 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001272
Dan Gohman472d12c2008-06-30 20:59:49 +00001273 case ISD::DBG_STOPPOINT:
1274 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001275 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
Scott Michel91099d62009-02-17 22:15:04 +00001276
Dan Gohman472d12c2008-06-30 20:59:49 +00001277 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001278 case TargetLowering::Promote:
1279 default: assert(0 && "This action is not supported yet!");
Bill Wendlingb0940162009-02-13 02:16:35 +00001280 case TargetLowering::Expand: {
1281 DwarfWriter *DW = DAG.getDwarfWriter();
1282 bool useDEBUG_LOC = TLI.isOperationLegalOrCustom(ISD::DEBUG_LOC,
1283 MVT::Other);
1284 bool useLABEL = TLI.isOperationLegalOrCustom(ISD::DBG_LABEL, MVT::Other);
Scott Michel91099d62009-02-17 22:15:04 +00001285
Bill Wendlingb0940162009-02-13 02:16:35 +00001286 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
1287 GlobalVariable *CU_GV = cast<GlobalVariable>(DSP->getCompileUnit());
1288 if (DW && (useDEBUG_LOC || useLABEL) && !CU_GV->isDeclaration()) {
1289 DICompileUnit CU(cast<GlobalVariable>(DSP->getCompileUnit()));
Bill Wendlingf3f16e82009-03-13 04:39:26 +00001290 std::string Dir, FN;
1291 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
1292 CU.getFilename(FN));
Scott Michel91099d62009-02-17 22:15:04 +00001293
Bill Wendlingb0940162009-02-13 02:16:35 +00001294 unsigned Line = DSP->getLine();
1295 unsigned Col = DSP->getColumn();
Bill Wendlinge3f43e52009-02-17 01:04:54 +00001296
Bill Wendling123374a2009-02-24 02:35:30 +00001297 if (Fast) {
Bill Wendlinge3f43e52009-02-17 01:04:54 +00001298 // A bit self-referential to have DebugLoc on Debug_Loc nodes, but it
1299 // won't hurt anything.
1300 if (useDEBUG_LOC) {
1301 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Bill Wendlingb0940162009-02-13 02:16:35 +00001302 DAG.getConstant(Col, MVT::i32),
1303 DAG.getConstant(SrcFile, MVT::i32) };
Bill Wendlinge3f43e52009-02-17 01:04:54 +00001304 Result = DAG.getNode(ISD::DEBUG_LOC, dl, MVT::Other, Ops, 4);
1305 } else {
1306 unsigned ID = DW->RecordSourceLine(Line, Col, SrcFile);
1307 Result = DAG.getLabel(ISD::DBG_LABEL, dl, Tmp1, ID);
1308 }
Bill Wendlingb0940162009-02-13 02:16:35 +00001309 } else {
Bill Wendlinge3f43e52009-02-17 01:04:54 +00001310 Result = Tmp1; // chain
Bill Wendlingb0940162009-02-13 02:16:35 +00001311 }
1312 } else {
1313 Result = Tmp1; // chain
1314 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001315 break;
Bill Wendlingb0940162009-02-13 02:16:35 +00001316 }
Sanjiv Guptaec7cef42009-04-02 18:03:10 +00001317 case TargetLowering::Custom:
1318 Result = TLI.LowerOperation(Op, DAG);
Bob Wilson2e958a42009-04-10 18:48:47 +00001319 if (Result.getNode())
Sanjiv Guptaec7cef42009-04-02 18:03:10 +00001320 break;
Evan Chengd6f57682008-07-08 20:06:39 +00001321 case TargetLowering::Legal: {
1322 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1323 if (Action == Legal && Tmp1 == Node->getOperand(0))
1324 break;
1325
Dan Gohman8181bd12008-07-27 21:46:04 +00001326 SmallVector<SDValue, 8> Ops;
Evan Chengd6f57682008-07-08 20:06:39 +00001327 Ops.push_back(Tmp1);
1328 if (Action == Legal) {
1329 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1330 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1331 } else {
1332 // Otherwise promote them.
1333 Ops.push_back(PromoteOp(Node->getOperand(1)));
1334 Ops.push_back(PromoteOp(Node->getOperand(2)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001335 }
Evan Chengd6f57682008-07-08 20:06:39 +00001336 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1337 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1338 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001339 break;
1340 }
Evan Chengd6f57682008-07-08 20:06:39 +00001341 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001342 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001343
1344 case ISD::DECLARE:
1345 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1346 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1347 default: assert(0 && "This action is not supported yet!");
1348 case TargetLowering::Legal:
1349 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1350 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1351 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1352 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1353 break;
Chris Lattner203cd052008-02-28 05:53:40 +00001354 case TargetLowering::Expand:
1355 Result = LegalizeOp(Node->getOperand(0));
1356 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001357 }
Scott Michel91099d62009-02-17 22:15:04 +00001358 break;
1359
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001360 case ISD::DEBUG_LOC:
1361 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
1362 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
1363 default: assert(0 && "This action is not supported yet!");
Evan Chengd6f57682008-07-08 20:06:39 +00001364 case TargetLowering::Legal: {
1365 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001366 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Chengd6f57682008-07-08 20:06:39 +00001367 if (Action == Legal && Tmp1 == Node->getOperand(0))
1368 break;
1369 if (Action == Legal) {
1370 Tmp2 = Node->getOperand(1);
1371 Tmp3 = Node->getOperand(2);
1372 Tmp4 = Node->getOperand(3);
1373 } else {
1374 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1375 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1376 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1377 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001378 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1379 break;
1380 }
Evan Chengd6f57682008-07-08 20:06:39 +00001381 }
Scott Michel91099d62009-02-17 22:15:04 +00001382 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001383
Dan Gohmanfa607c92008-07-01 00:05:16 +00001384 case ISD::DBG_LABEL:
1385 case ISD::EH_LABEL:
1386 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1387 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001388 default: assert(0 && "This action is not supported yet!");
1389 case TargetLowering::Legal:
1390 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohmanfa607c92008-07-01 00:05:16 +00001391 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001392 break;
1393 case TargetLowering::Expand:
1394 Result = LegalizeOp(Node->getOperand(0));
1395 break;
1396 }
1397 break;
1398
Evan Chengd1d68072008-03-08 00:58:38 +00001399 case ISD::PREFETCH:
1400 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1401 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1402 default: assert(0 && "This action is not supported yet!");
1403 case TargetLowering::Legal:
1404 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1405 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1406 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1407 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1408 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1409 break;
1410 case TargetLowering::Expand:
1411 // It's a noop.
1412 Result = LegalizeOp(Node->getOperand(0));
1413 break;
1414 }
1415 break;
1416
Andrew Lenharth785610d2008-02-16 01:24:58 +00001417 case ISD::MEMBARRIER: {
1418 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001419 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1420 default: assert(0 && "This action is not supported yet!");
1421 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001422 SDValue Ops[6];
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001423 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sands3ee041a2008-02-27 08:53:44 +00001424 for (int x = 1; x < 6; ++x) {
1425 Ops[x] = Node->getOperand(x);
1426 if (!isTypeLegal(Ops[x].getValueType()))
1427 Ops[x] = PromoteOp(Ops[x]);
1428 }
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001429 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1430 break;
1431 }
1432 case TargetLowering::Expand:
1433 //There is no libgcc call for this op
1434 Result = Node->getOperand(0); // Noop
1435 break;
1436 }
Andrew Lenharth785610d2008-02-16 01:24:58 +00001437 break;
1438 }
1439
Dan Gohmanbebba8d2008-12-23 21:37:04 +00001440 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001441 unsigned int num_operands = 4;
1442 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001443 SDValue Ops[4];
Mon P Wang078a62d2008-05-05 19:05:59 +00001444 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001445 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang078a62d2008-05-05 19:05:59 +00001446 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Scott Michel91099d62009-02-17 22:15:04 +00001447
Mon P Wang078a62d2008-05-05 19:05:59 +00001448 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1449 default: assert(0 && "This action is not supported yet!");
1450 case TargetLowering::Custom:
1451 Result = TLI.LowerOperation(Result, DAG);
1452 break;
1453 case TargetLowering::Legal:
1454 break;
1455 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001456 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1457 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001458 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001459 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00001460 case ISD::ATOMIC_LOAD_ADD:
1461 case ISD::ATOMIC_LOAD_SUB:
1462 case ISD::ATOMIC_LOAD_AND:
1463 case ISD::ATOMIC_LOAD_OR:
1464 case ISD::ATOMIC_LOAD_XOR:
1465 case ISD::ATOMIC_LOAD_NAND:
1466 case ISD::ATOMIC_LOAD_MIN:
1467 case ISD::ATOMIC_LOAD_MAX:
1468 case ISD::ATOMIC_LOAD_UMIN:
1469 case ISD::ATOMIC_LOAD_UMAX:
1470 case ISD::ATOMIC_SWAP: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001471 unsigned int num_operands = 3;
1472 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001473 SDValue Ops[3];
Mon P Wang078a62d2008-05-05 19:05:59 +00001474 for (unsigned int x = 0; x < num_operands; ++x)
1475 Ops[x] = LegalizeOp(Node->getOperand(x));
1476 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sandsac496a12008-07-04 11:47:58 +00001477
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001478 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001479 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001480 case TargetLowering::Custom:
1481 Result = TLI.LowerOperation(Result, DAG);
1482 break;
1483 case TargetLowering::Legal:
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001484 break;
1485 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001486 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1487 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001488 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001489 }
Scott Michelf2e2b702007-08-08 23:23:31 +00001490 case ISD::Constant: {
1491 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1492 unsigned opAction =
1493 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1494
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001495 // We know we don't need to expand constants here, constants only have one
1496 // value and we check that it is fine above.
1497
Scott Michelf2e2b702007-08-08 23:23:31 +00001498 if (opAction == TargetLowering::Custom) {
1499 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001500 if (Tmp1.getNode())
Scott Michelf2e2b702007-08-08 23:23:31 +00001501 Result = Tmp1;
1502 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001503 break;
Scott Michelf2e2b702007-08-08 23:23:31 +00001504 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001505 case ISD::ConstantFP: {
1506 // Spill FP immediates to the constant pool if the target cannot directly
1507 // codegen them. Targets often have some immediate values that can be
1508 // efficiently generated into an FP register without a load. We explicitly
1509 // leave these constants as ConstantFP nodes for the target to deal with.
1510 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1511
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001512 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1513 default: assert(0 && "This action is not supported yet!");
Nate Begemane2ba64f2008-02-14 08:57:00 +00001514 case TargetLowering::Legal:
1515 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001516 case TargetLowering::Custom:
1517 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001518 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001519 Result = Tmp3;
1520 break;
1521 }
1522 // FALLTHROUGH
Nate Begemane2ba64f2008-02-14 08:57:00 +00001523 case TargetLowering::Expand: {
1524 // Check to see if this FP immediate is already legal.
1525 bool isLegal = false;
1526 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1527 E = TLI.legal_fpimm_end(); I != E; ++I) {
1528 if (CFP->isExactlyValue(*I)) {
1529 isLegal = true;
1530 break;
1531 }
1532 }
1533 // If this is a legal constant, turn it into a TargetConstantFP node.
1534 if (isLegal)
1535 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001536 Result = ExpandConstantFP(CFP, true, DAG, TLI);
1537 }
Nate Begemane2ba64f2008-02-14 08:57:00 +00001538 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001539 break;
1540 }
1541 case ISD::TokenFactor:
1542 if (Node->getNumOperands() == 2) {
1543 Tmp1 = LegalizeOp(Node->getOperand(0));
1544 Tmp2 = LegalizeOp(Node->getOperand(1));
1545 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1546 } else if (Node->getNumOperands() == 3) {
1547 Tmp1 = LegalizeOp(Node->getOperand(0));
1548 Tmp2 = LegalizeOp(Node->getOperand(1));
1549 Tmp3 = LegalizeOp(Node->getOperand(2));
1550 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1551 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00001552 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001553 // Legalize the operands.
1554 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1555 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1556 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1557 }
1558 break;
Scott Michel91099d62009-02-17 22:15:04 +00001559
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001560 case ISD::FORMAL_ARGUMENTS:
1561 case ISD::CALL:
1562 // The only option for this is to custom lower it.
1563 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001564 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesenac246272008-03-05 19:14:03 +00001565 // A call within a calling sequence must be legalized to something
1566 // other than the normal CALLSEQ_END. Violating this gets Legalize
1567 // into an infinite loop.
1568 assert ((!IsLegalizingCall ||
1569 Node->getOpcode() != ISD::CALL ||
Gabor Greif1c80d112008-08-28 21:40:38 +00001570 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesenac246272008-03-05 19:14:03 +00001571 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling22f8deb2007-11-13 00:44:25 +00001572
1573 // The number of incoming and outgoing values should match; unless the final
1574 // outgoing value is a flag.
Gabor Greif1c80d112008-08-28 21:40:38 +00001575 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1576 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1577 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling22f8deb2007-11-13 00:44:25 +00001578 MVT::Flag)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001579 "Lowering call/formal_arguments produced unexpected # results!");
Scott Michel91099d62009-02-17 22:15:04 +00001580
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001581 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
1582 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greif1c80d112008-08-28 21:40:38 +00001583 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1584 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling22f8deb2007-11-13 00:44:25 +00001585 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001586 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00001587 if (Op.getResNo() == i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001588 Tmp2 = Tmp1;
Dan Gohman8181bd12008-07-27 21:46:04 +00001589 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001590 }
1591 return Tmp2;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001592 case ISD::BUILD_VECTOR:
1593 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
1594 default: assert(0 && "This action is not supported yet!");
1595 case TargetLowering::Custom:
1596 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001597 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001598 Result = Tmp3;
1599 break;
1600 }
1601 // FALLTHROUGH
1602 case TargetLowering::Expand:
Gabor Greif1c80d112008-08-28 21:40:38 +00001603 Result = ExpandBUILD_VECTOR(Result.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001604 break;
1605 }
1606 break;
1607 case ISD::INSERT_VECTOR_ELT:
1608 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001609 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001610
1611 // The type of the value to insert may not be legal, even though the vector
1612 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1613 // here.
1614 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1615 default: assert(0 && "Cannot expand insert element operand");
1616 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1617 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang1448aad2008-10-30 08:01:45 +00001618 case Expand:
1619 // FIXME: An alternative would be to check to see if the target is not
Scott Michel91099d62009-02-17 22:15:04 +00001620 // going to custom lower this operation, we could bitcast to half elt
Mon P Wang1448aad2008-10-30 08:01:45 +00001621 // width and perform two inserts at that width, if that is legal.
1622 Tmp2 = Node->getOperand(1);
1623 break;
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001624 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001625 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michel91099d62009-02-17 22:15:04 +00001626
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001627 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1628 Node->getValueType(0))) {
1629 default: assert(0 && "This action is not supported yet!");
1630 case TargetLowering::Legal:
1631 break;
1632 case TargetLowering::Custom:
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001633 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001634 if (Tmp4.getNode()) {
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001635 Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001636 break;
1637 }
1638 // FALLTHROUGH
Mon P Wang1448aad2008-10-30 08:01:45 +00001639 case TargetLowering::Promote:
1640 // Fall thru for vector case
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001641 case TargetLowering::Expand: {
1642 // If the insert index is a constant, codegen this as a scalar_to_vector,
1643 // then a shuffle that inserts it into the right position in the vector.
1644 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001645 // SCALAR_TO_VECTOR requires that the type of the value being inserted
Duncan Sands6a3a01e2009-04-18 20:16:54 +00001646 // match the element type of the vector being created, except for
1647 // integers in which case the inserted value can be over width.
1648 MVT EltVT = Op.getValueType().getVectorElementType();
1649 if (Tmp2.getValueType() == EltVT ||
1650 (EltVT.isInteger() && Tmp2.getValueType().bitsGE(EltVT))) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001651 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Bob Wilson2e958a42009-04-10 18:48:47 +00001652 Tmp1.getValueType(), Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00001653
Duncan Sands92c43912008-06-06 12:08:01 +00001654 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1655 MVT ShufMaskVT =
1656 MVT::getIntVectorWithNumElements(NumElts);
1657 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Scott Michel91099d62009-02-17 22:15:04 +00001658
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001659 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1660 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1661 // elt 0 of the RHS.
Dan Gohman8181bd12008-07-27 21:46:04 +00001662 SmallVector<SDValue, 8> ShufOps;
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001663 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001664 if (i != InsertPos->getZExtValue())
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001665 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1666 else
1667 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1668 }
Evan Cheng907a2d22009-02-25 22:49:59 +00001669 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, ShufMaskVT,
Bob Wilson2e958a42009-04-10 18:48:47 +00001670 &ShufOps[0], ShufOps.size());
Scott Michel91099d62009-02-17 22:15:04 +00001671
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001672 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Tmp1.getValueType(),
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001673 Tmp1, ScVec, ShufMask);
1674 Result = LegalizeOp(Result);
1675 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001676 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001677 }
Dale Johannesen352c47e2009-02-02 20:41:04 +00001678 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001679 break;
1680 }
1681 }
1682 break;
1683 case ISD::SCALAR_TO_VECTOR:
1684 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1685 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1686 break;
1687 }
Scott Michel91099d62009-02-17 22:15:04 +00001688
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001689 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1690 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1691 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1692 Node->getValueType(0))) {
1693 default: assert(0 && "This action is not supported yet!");
1694 case TargetLowering::Legal:
1695 break;
1696 case TargetLowering::Custom:
1697 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001698 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001699 Result = Tmp3;
1700 break;
1701 }
1702 // FALLTHROUGH
1703 case TargetLowering::Expand:
1704 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1705 break;
1706 }
1707 break;
1708 case ISD::VECTOR_SHUFFLE:
1709 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1710 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1711 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1712
1713 // Allow targets to custom lower the SHUFFLEs they support.
Bob Wilson2e958a42009-04-10 18:48:47 +00001714 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, Result.getValueType())){
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001715 default: assert(0 && "Unknown operation action!");
1716 case TargetLowering::Legal:
1717 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1718 "vector shuffle should not be created if not legal!");
1719 break;
1720 case TargetLowering::Custom:
1721 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001722 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001723 Result = Tmp3;
1724 break;
1725 }
1726 // FALLTHROUGH
1727 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00001728 MVT VT = Node->getValueType(0);
1729 MVT EltVT = VT.getVectorElementType();
1730 MVT PtrVT = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00001731 SDValue Mask = Node->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001732 unsigned NumElems = Mask.getNumOperands();
Bob Wilson2e958a42009-04-10 18:48:47 +00001733 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001734 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001735 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001736 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00001737 Ops.push_back(DAG.getUNDEF(EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001738 } else {
1739 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001740 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001741 if (Idx < NumElems)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001742 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001743 DAG.getConstant(Idx, PtrVT)));
1744 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001745 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001746 DAG.getConstant(Idx - NumElems, PtrVT)));
1747 }
1748 }
Evan Cheng907a2d22009-02-25 22:49:59 +00001749 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001750 break;
1751 }
1752 case TargetLowering::Promote: {
1753 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00001754 MVT OVT = Node->getValueType(0);
1755 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001756
1757 // Cast the two input vectors.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001758 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
1759 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00001760
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001761 // Convert the shuffle mask to the right # elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00001762 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greif1c80d112008-08-28 21:40:38 +00001763 assert(Tmp3.getNode() && "Shuffle not legal?");
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001764 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, NVT, Tmp1, Tmp2, Tmp3);
1765 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001766 break;
1767 }
1768 }
1769 break;
Scott Michel91099d62009-02-17 22:15:04 +00001770
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001771 case ISD::EXTRACT_VECTOR_ELT:
1772 Tmp1 = Node->getOperand(0);
1773 Tmp2 = LegalizeOp(Node->getOperand(1));
1774 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1775 Result = ExpandEXTRACT_VECTOR_ELT(Result);
1776 break;
1777
Scott Michel91099d62009-02-17 22:15:04 +00001778 case ISD::EXTRACT_SUBVECTOR:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001779 Tmp1 = Node->getOperand(0);
1780 Tmp2 = LegalizeOp(Node->getOperand(1));
1781 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1782 Result = ExpandEXTRACT_SUBVECTOR(Result);
1783 break;
Scott Michel91099d62009-02-17 22:15:04 +00001784
Mon P Wang1448aad2008-10-30 08:01:45 +00001785 case ISD::CONCAT_VECTORS: {
1786 // Use extract/insert/build vector for now. We might try to be
1787 // more clever later.
1788 MVT PtrVT = TLI.getPointerTy();
1789 SmallVector<SDValue, 8> Ops;
1790 unsigned NumOperands = Node->getNumOperands();
1791 for (unsigned i=0; i < NumOperands; ++i) {
1792 SDValue SubOp = Node->getOperand(i);
1793 MVT VVT = SubOp.getNode()->getValueType(0);
1794 MVT EltVT = VVT.getVectorElementType();
1795 unsigned NumSubElem = VVT.getVectorNumElements();
1796 for (unsigned j=0; j < NumSubElem; ++j) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001797 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
Mon P Wang1448aad2008-10-30 08:01:45 +00001798 DAG.getConstant(j, PtrVT)));
1799 }
1800 }
Evan Cheng907a2d22009-02-25 22:49:59 +00001801 return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
1802 &Ops[0], Ops.size()));
Mon P Wang1448aad2008-10-30 08:01:45 +00001803 }
1804
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001805 case ISD::CALLSEQ_START: {
1806 SDNode *CallEnd = FindCallEndFromCallStart(Node);
Scott Michel91099d62009-02-17 22:15:04 +00001807
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001808 // Recursively Legalize all of the inputs of the call end that do not lead
1809 // to this call start. This ensures that any libcalls that need be inserted
1810 // are inserted *before* the CALLSEQ_START.
Mon P Wang7cba3942009-02-04 19:38:14 +00001811 IsLegalizingCallArgs = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001812 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
1813 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greif1c80d112008-08-28 21:40:38 +00001814 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001815 NodesLeadingTo);
1816 }
Mon P Wang7cba3942009-02-04 19:38:14 +00001817 IsLegalizingCallArgs = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001818
1819 // Now that we legalized all of the inputs (which may have inserted
1820 // libcalls) create the new CALLSEQ_START node.
1821 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1822
1823 // Merge in the last call, to ensure that this call start after the last
1824 // call ended.
1825 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Scott Michel91099d62009-02-17 22:15:04 +00001826 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001827 Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001828 Tmp1 = LegalizeOp(Tmp1);
1829 }
Scott Michel91099d62009-02-17 22:15:04 +00001830
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001831 // Do not try to legalize the target-specific arguments (#1+).
1832 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001833 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001834 Ops[0] = Tmp1;
1835 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1836 }
Scott Michel91099d62009-02-17 22:15:04 +00001837
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001838 // Remember that the CALLSEQ_START is legalized.
1839 AddLegalizedOperand(Op.getValue(0), Result);
1840 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1841 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Scott Michel91099d62009-02-17 22:15:04 +00001842
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001843 // Now that the callseq_start and all of the non-call nodes above this call
Scott Michel91099d62009-02-17 22:15:04 +00001844 // sequence have been legalized, legalize the call itself. During this
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001845 // process, no libcalls can/will be inserted, guaranteeing that no calls
1846 // can overlap.
1847 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001848 // Note that we are selecting this call!
Dan Gohman8181bd12008-07-27 21:46:04 +00001849 LastCALLSEQ_END = SDValue(CallEnd, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001850 IsLegalizingCall = true;
Scott Michel91099d62009-02-17 22:15:04 +00001851
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001852 // Legalize the call, starting from the CALLSEQ_END.
1853 LegalizeOp(LastCALLSEQ_END);
1854 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1855 return Result;
1856 }
1857 case ISD::CALLSEQ_END:
1858 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1859 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greif1c80d112008-08-28 21:40:38 +00001860 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001861 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1862 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001863 assert(I != LegalizedNodes.end() &&
1864 "Legalizing the call start should have legalized this node!");
1865 return I->second;
1866 }
Scott Michel91099d62009-02-17 22:15:04 +00001867
1868 // Otherwise, the call start has been legalized and everything is going
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001869 // according to plan. Just legalize ourselves normally here.
1870 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1871 // Do not try to legalize the target-specific arguments (#1+), except for
1872 // an optional flag input.
1873 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1874 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001875 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001876 Ops[0] = Tmp1;
1877 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1878 }
1879 } else {
1880 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1881 if (Tmp1 != Node->getOperand(0) ||
1882 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001883 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001884 Ops[0] = Tmp1;
1885 Ops.back() = Tmp2;
1886 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1887 }
1888 }
1889 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
1890 // This finishes up call legalization.
1891 IsLegalizingCall = false;
Scott Michel91099d62009-02-17 22:15:04 +00001892
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001893 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00001894 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001895 if (Node->getNumValues() == 2)
Dan Gohman8181bd12008-07-27 21:46:04 +00001896 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001897 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001898 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands92c43912008-06-06 12:08:01 +00001899 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001900 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1901 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1902 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
1903 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1904
1905 Tmp1 = Result.getValue(0);
1906 Tmp2 = Result.getValue(1);
Evan Chenga448bc42007-08-16 23:50:06 +00001907 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001908 default: assert(0 && "This action is not supported yet!");
1909 case TargetLowering::Expand: {
1910 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1911 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1912 " not tell us which reg is the stack pointer!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001913 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling22f8deb2007-11-13 00:44:25 +00001914
1915 // Chain the dynamic stack allocation so that it doesn't modify the stack
1916 // pointer when other instructions are using the stack.
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001917 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling22f8deb2007-11-13 00:44:25 +00001918
Dan Gohman8181bd12008-07-27 21:46:04 +00001919 SDValue Size = Tmp2.getOperand(1);
Dale Johannesen564036c2009-02-04 00:13:36 +00001920 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
Evan Chenga448bc42007-08-16 23:50:06 +00001921 Chain = SP.getValue(1);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001922 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Chenga448bc42007-08-16 23:50:06 +00001923 unsigned StackAlign =
1924 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1925 if (Align > StackAlign)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001926 SP = DAG.getNode(ISD::AND, dl, VT, SP,
Evan Cheng51ce0382007-08-17 18:02:22 +00001927 DAG.getConstant(-(uint64_t)Align, VT));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001928 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Dale Johannesen564036c2009-02-04 00:13:36 +00001929 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
Bill Wendling22f8deb2007-11-13 00:44:25 +00001930
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001931 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001932 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling22f8deb2007-11-13 00:44:25 +00001933
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001934 Tmp1 = LegalizeOp(Tmp1);
1935 Tmp2 = LegalizeOp(Tmp2);
1936 break;
1937 }
1938 case TargetLowering::Custom:
1939 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001940 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001941 Tmp1 = LegalizeOp(Tmp3);
1942 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1943 }
1944 break;
1945 case TargetLowering::Legal:
1946 break;
1947 }
1948 // Since this op produce two values, make sure to remember that we
1949 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001950 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1951 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001952 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001953 }
1954 case ISD::INLINEASM: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001955 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001956 bool Changed = false;
1957 // Legalize all of the operands of the inline asm, in case they are nodes
1958 // that need to be expanded or something. Note we skip the asm string and
1959 // all of the TargetConstant flags.
Dan Gohman8181bd12008-07-27 21:46:04 +00001960 SDValue Op = LegalizeOp(Ops[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001961 Changed = Op != Ops[0];
1962 Ops[0] = Op;
1963
1964 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1965 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Evan Cheng92167402009-03-20 18:03:34 +00001966 unsigned NumVals = InlineAsm::
1967 getNumOperandRegisters(cast<ConstantSDNode>(Ops[i])->getZExtValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001968 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001969 SDValue Op = LegalizeOp(Ops[i]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001970 if (Op != Ops[i]) {
1971 Changed = true;
1972 Ops[i] = Op;
1973 }
1974 }
1975 }
1976
1977 if (HasInFlag) {
1978 Op = LegalizeOp(Ops.back());
1979 Changed |= Op != Ops.back();
1980 Ops.back() = Op;
1981 }
Scott Michel91099d62009-02-17 22:15:04 +00001982
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001983 if (Changed)
1984 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michel91099d62009-02-17 22:15:04 +00001985
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001986 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman8181bd12008-07-27 21:46:04 +00001987 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1988 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001989 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001990 }
1991 case ISD::BR:
1992 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1993 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001994 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001995 Tmp1 = LegalizeOp(Tmp1);
1996 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00001997
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001998 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1999 break;
2000 case ISD::BRIND:
2001 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2002 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002003 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002004 Tmp1 = LegalizeOp(Tmp1);
2005 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00002006
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002007 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2008 default: assert(0 && "Indirect target must be legal type (pointer)!");
2009 case Legal:
2010 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2011 break;
2012 }
2013 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2014 break;
2015 case ISD::BR_JT:
2016 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2017 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002018 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002019 Tmp1 = LegalizeOp(Tmp1);
2020 LastCALLSEQ_END = DAG.getEntryNode();
2021
2022 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
2023 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2024
Scott Michel91099d62009-02-17 22:15:04 +00002025 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002026 default: assert(0 && "This action is not supported yet!");
2027 case TargetLowering::Legal: break;
2028 case TargetLowering::Custom:
2029 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002030 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002031 break;
2032 case TargetLowering::Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002033 SDValue Chain = Result.getOperand(0);
2034 SDValue Table = Result.getOperand(1);
2035 SDValue Index = Result.getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002036
Duncan Sands92c43912008-06-06 12:08:01 +00002037 MVT PTy = TLI.getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002038 MachineFunction &MF = DAG.getMachineFunction();
2039 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Scott Michel91099d62009-02-17 22:15:04 +00002040 Index= DAG.getNode(ISD::MUL, dl, PTy,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002041 Index, DAG.getConstant(EntrySize, PTy));
2042 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002043
Duncan Sands12ddc802008-12-12 08:13:38 +00002044 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002045 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Duncan Sands12ddc802008-12-12 08:13:38 +00002046 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Cheng6fb06762007-11-09 01:32:10 +00002047 Addr = LD;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002048 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2049 // For PIC, the sequence is:
2050 // BRIND(load(Jumptable + index) + RelocBase)
Evan Cheng6fb06762007-11-09 01:32:10 +00002051 // RelocBase can be JumpTable, GOT or some sort of global base.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002052 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
Evan Cheng6fb06762007-11-09 01:32:10 +00002053 TLI.getPICJumpTableRelocBase(Table, DAG));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002054 }
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002055 Result = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002056 }
2057 }
2058 break;
2059 case ISD::BRCOND:
2060 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2061 // Ensure that libcalls are emitted before a return.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002062 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002063 Tmp1 = LegalizeOp(Tmp1);
2064 LastCALLSEQ_END = DAG.getEntryNode();
2065
2066 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2067 case Expand: assert(0 && "It's impossible to expand bools");
2068 case Legal:
2069 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2070 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00002071 case Promote: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002072 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Scott Michel91099d62009-02-17 22:15:04 +00002073
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002074 // The top bits of the promoted condition are not necessarily zero, ensure
2075 // that the value is properly zero extended.
Dan Gohman07961cd2008-02-25 21:11:39 +00002076 unsigned BitWidth = Tmp2.getValueSizeInBits();
Scott Michel91099d62009-02-17 22:15:04 +00002077 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman07961cd2008-02-25 21:11:39 +00002078 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002079 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, MVT::i1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002080 break;
2081 }
Dan Gohman07961cd2008-02-25 21:11:39 +00002082 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002083
2084 // Basic block destination (Op#2) is always legal.
2085 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michel91099d62009-02-17 22:15:04 +00002086
2087 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002088 default: assert(0 && "This action is not supported yet!");
2089 case TargetLowering::Legal: break;
2090 case TargetLowering::Custom:
2091 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002092 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002093 break;
2094 case TargetLowering::Expand:
2095 // Expand brcond's setcc into its constituent parts and create a BR_CC
2096 // Node.
2097 if (Tmp2.getOpcode() == ISD::SETCC) {
Scott Michel91099d62009-02-17 22:15:04 +00002098 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002099 Tmp1, Tmp2.getOperand(2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002100 Tmp2.getOperand(0), Tmp2.getOperand(1),
2101 Node->getOperand(2));
2102 } else {
Scott Michel91099d62009-02-17 22:15:04 +00002103 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002104 DAG.getCondCode(ISD::SETNE), Tmp2,
2105 DAG.getConstant(0, Tmp2.getValueType()),
2106 Node->getOperand(2));
2107 }
2108 break;
2109 }
2110 break;
2111 case ISD::BR_CC:
2112 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2113 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002114 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002115 Tmp1 = LegalizeOp(Tmp1);
Scott Michel91099d62009-02-17 22:15:04 +00002116 Tmp2 = Node->getOperand(2); // LHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002117 Tmp3 = Node->getOperand(3); // RHS
2118 Tmp4 = Node->getOperand(1); // CC
2119
Scott Michel91099d62009-02-17 22:15:04 +00002120 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
Dale Johannesen352c47e2009-02-02 20:41:04 +00002121 Tmp2, Tmp3, Tmp4, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002122 LastCALLSEQ_END = DAG.getEntryNode();
2123
Evan Cheng71343822008-10-15 02:05:31 +00002124 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002125 // the LHS is a legal SETCC itself. In this case, we need to compare
2126 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00002127 if (Tmp3.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002128 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2129 Tmp4 = DAG.getCondCode(ISD::SETNE);
2130 }
Scott Michel91099d62009-02-17 22:15:04 +00002131
2132 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002133 Node->getOperand(4));
Scott Michel91099d62009-02-17 22:15:04 +00002134
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002135 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2136 default: assert(0 && "Unexpected action for BR_CC!");
2137 case TargetLowering::Legal: break;
2138 case TargetLowering::Custom:
2139 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002140 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002141 break;
2142 }
2143 break;
2144 case ISD::LOAD: {
2145 LoadSDNode *LD = cast<LoadSDNode>(Node);
2146 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2147 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
2148
2149 ISD::LoadExtType ExtType = LD->getExtensionType();
2150 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands92c43912008-06-06 12:08:01 +00002151 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002152 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2153 Tmp3 = Result.getValue(0);
2154 Tmp4 = Result.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00002155
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002156 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2157 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002158 case TargetLowering::Legal:
2159 // If this is an unaligned load and the target doesn't support it,
2160 // expand it.
2161 if (!TLI.allowsUnalignedMemoryAccesses()) {
2162 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002163 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002164 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00002165 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002166 TLI);
2167 Tmp3 = Result.getOperand(0);
2168 Tmp4 = Result.getOperand(1);
Dale Johannesen08275382007-09-08 19:29:23 +00002169 Tmp3 = LegalizeOp(Tmp3);
2170 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002171 }
2172 }
2173 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002174 case TargetLowering::Custom:
2175 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002176 if (Tmp1.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002177 Tmp3 = LegalizeOp(Tmp1);
2178 Tmp4 = LegalizeOp(Tmp1.getValue(1));
2179 }
2180 break;
2181 case TargetLowering::Promote: {
2182 // Only promote a load of vector type to another.
Duncan Sands92c43912008-06-06 12:08:01 +00002183 assert(VT.isVector() && "Cannot promote this load!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002184 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002185 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002186
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002187 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002188 LD->getSrcValueOffset(),
2189 LD->isVolatile(), LD->getAlignment());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00002190 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002191 Tmp4 = LegalizeOp(Tmp1.getValue(1));
2192 break;
2193 }
2194 }
Scott Michel91099d62009-02-17 22:15:04 +00002195 // Since loads produce two values, make sure to remember that we
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002196 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002197 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2198 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif46bf5472008-08-26 22:36:50 +00002199 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002200 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00002201 MVT SrcVT = LD->getMemoryVT();
2202 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sands082524c2008-01-23 20:39:46 +00002203 int SVOffset = LD->getSrcValueOffset();
2204 unsigned Alignment = LD->getAlignment();
2205 bool isVolatile = LD->isVolatile();
2206
Duncan Sands92c43912008-06-06 12:08:01 +00002207 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sands082524c2008-01-23 20:39:46 +00002208 // Some targets pretend to have an i1 loading operation, and actually
2209 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2210 // bits are guaranteed to be zero; it helps the optimizers understand
2211 // that these bits are zero. It is also useful for EXTLOAD, since it
2212 // tells the optimizers that those bits are undefined. It would be
2213 // nice to have an effective generic way of getting these benefits...
2214 // Until such a way is found, don't insist on promoting i1 here.
2215 (SrcVT != MVT::i1 ||
Evan Cheng08c171a2008-10-14 21:26:46 +00002216 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sands082524c2008-01-23 20:39:46 +00002217 // Promote to a byte-sized load if not loading an integral number of
2218 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands92c43912008-06-06 12:08:01 +00002219 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2220 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002221 SDValue Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00002222
2223 // The extra bits are guaranteed to be zero, since we stored them that
2224 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2225
2226 ISD::LoadExtType NewExtType =
2227 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2228
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002229 Result = DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Duncan Sands082524c2008-01-23 20:39:46 +00002230 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2231 NVT, isVolatile, Alignment);
2232
2233 Ch = Result.getValue(1); // The chain.
2234
2235 if (ExtType == ISD::SEXTLOAD)
2236 // Having the top bits zero doesn't help when sign extending.
Scott Michel91099d62009-02-17 22:15:04 +00002237 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002238 Result.getValueType(),
Duncan Sands082524c2008-01-23 20:39:46 +00002239 Result, DAG.getValueType(SrcVT));
2240 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2241 // All the top bits are guaranteed to be zero - inform the optimizers.
Scott Michel91099d62009-02-17 22:15:04 +00002242 Result = DAG.getNode(ISD::AssertZext, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002243 Result.getValueType(), Result,
Duncan Sands082524c2008-01-23 20:39:46 +00002244 DAG.getValueType(SrcVT));
2245
2246 Tmp1 = LegalizeOp(Result);
2247 Tmp2 = LegalizeOp(Ch);
2248 } else if (SrcWidth & (SrcWidth - 1)) {
2249 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands92c43912008-06-06 12:08:01 +00002250 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sands082524c2008-01-23 20:39:46 +00002251 "Unsupported extload!");
2252 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2253 assert(RoundWidth < SrcWidth);
2254 unsigned ExtraWidth = SrcWidth - RoundWidth;
2255 assert(ExtraWidth < RoundWidth);
2256 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2257 "Load size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002258 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2259 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002260 SDValue Lo, Hi, Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00002261 unsigned IncrementSize;
2262
2263 if (TLI.isLittleEndian()) {
2264 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2265 // Load the bottom RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002266 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2267 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002268 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2269 Alignment);
2270
2271 // Load the remaining ExtraWidth bits.
2272 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002273 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002274 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002275 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002276 LD->getSrcValue(), SVOffset + IncrementSize,
2277 ExtraVT, isVolatile,
2278 MinAlign(Alignment, IncrementSize));
2279
2280 // Build a factor node to remember that this load is independent of the
2281 // other one.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002282 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sands082524c2008-01-23 20:39:46 +00002283 Hi.getValue(1));
2284
2285 // Move the top bits to the right place.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002286 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sands082524c2008-01-23 20:39:46 +00002287 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2288
2289 // Join the hi and lo parts.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002290 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002291 } else {
Duncan Sands082524c2008-01-23 20:39:46 +00002292 // Big endian - avoid unaligned loads.
2293 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2294 // Load the top RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002295 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002296 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2297 Alignment);
2298
2299 // Load the remaining ExtraWidth bits.
2300 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002301 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002302 DAG.getIntPtrConstant(IncrementSize));
Scott Michel91099d62009-02-17 22:15:04 +00002303 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002304 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002305 LD->getSrcValue(), SVOffset + IncrementSize,
2306 ExtraVT, isVolatile,
2307 MinAlign(Alignment, IncrementSize));
2308
2309 // Build a factor node to remember that this load is independent of the
2310 // other one.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002311 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sands082524c2008-01-23 20:39:46 +00002312 Hi.getValue(1));
2313
2314 // Move the top bits to the right place.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002315 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sands082524c2008-01-23 20:39:46 +00002316 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2317
2318 // Join the hi and lo parts.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002319 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sands082524c2008-01-23 20:39:46 +00002320 }
2321
2322 Tmp1 = LegalizeOp(Result);
2323 Tmp2 = LegalizeOp(Ch);
2324 } else {
Evan Cheng08c171a2008-10-14 21:26:46 +00002325 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sands082524c2008-01-23 20:39:46 +00002326 default: assert(0 && "This action is not supported yet!");
2327 case TargetLowering::Custom:
2328 isCustom = true;
2329 // FALLTHROUGH
2330 case TargetLowering::Legal:
2331 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2332 Tmp1 = Result.getValue(0);
2333 Tmp2 = Result.getValue(1);
2334
2335 if (isCustom) {
2336 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002337 if (Tmp3.getNode()) {
Duncan Sands082524c2008-01-23 20:39:46 +00002338 Tmp1 = LegalizeOp(Tmp3);
2339 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2340 }
2341 } else {
2342 // If this is an unaligned load and the target doesn't support it,
2343 // expand it.
2344 if (!TLI.allowsUnalignedMemoryAccesses()) {
2345 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002346 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sands082524c2008-01-23 20:39:46 +00002347 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00002348 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sands082524c2008-01-23 20:39:46 +00002349 TLI);
2350 Tmp1 = Result.getOperand(0);
2351 Tmp2 = Result.getOperand(1);
2352 Tmp1 = LegalizeOp(Tmp1);
2353 Tmp2 = LegalizeOp(Tmp2);
2354 }
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002355 }
2356 }
Duncan Sands082524c2008-01-23 20:39:46 +00002357 break;
2358 case TargetLowering::Expand:
2359 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2360 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002361 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sands082524c2008-01-23 20:39:46 +00002362 LD->getSrcValueOffset(),
2363 LD->isVolatile(), LD->getAlignment());
Scott Michel91099d62009-02-17 22:15:04 +00002364 Result = DAG.getNode(ISD::FP_EXTEND, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002365 Node->getValueType(0), Load);
Duncan Sands082524c2008-01-23 20:39:46 +00002366 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2367 Tmp2 = LegalizeOp(Load.getValue(1));
2368 break;
2369 }
2370 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2371 // Turn the unsupported load into an EXTLOAD followed by an explicit
2372 // zero/sign extend inreg.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002373 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Duncan Sands082524c2008-01-23 20:39:46 +00002374 Tmp1, Tmp2, LD->getSrcValue(),
2375 LD->getSrcValueOffset(), SrcVT,
2376 LD->isVolatile(), LD->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +00002377 SDValue ValRes;
Duncan Sands082524c2008-01-23 20:39:46 +00002378 if (ExtType == ISD::SEXTLOAD)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002379 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2380 Result.getValueType(),
Duncan Sands082524c2008-01-23 20:39:46 +00002381 Result, DAG.getValueType(SrcVT));
2382 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002383 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
Duncan Sands082524c2008-01-23 20:39:46 +00002384 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2385 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002386 break;
2387 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002388 }
Duncan Sands082524c2008-01-23 20:39:46 +00002389
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002390 // Since loads produce two values, make sure to remember that we legalized
2391 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002392 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2393 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002394 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002395 }
2396 }
2397 case ISD::EXTRACT_ELEMENT: {
Duncan Sands92c43912008-06-06 12:08:01 +00002398 MVT OpTy = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002399 switch (getTypeAction(OpTy)) {
2400 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
2401 case Legal:
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002402 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002403 // 1 -> Hi
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002404 Result = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Duncan Sands92c43912008-06-06 12:08:01 +00002405 DAG.getConstant(OpTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002406 TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002407 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002408 } else {
2409 // 0 -> Lo
Scott Michel91099d62009-02-17 22:15:04 +00002410 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002411 Node->getOperand(0));
2412 }
2413 break;
2414 case Expand:
2415 // Get both the low and high parts.
2416 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002417 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002418 Result = Tmp2; // 1 -> Hi
2419 else
2420 Result = Tmp1; // 0 -> Lo
2421 break;
2422 }
2423 break;
2424 }
2425
2426 case ISD::CopyToReg:
2427 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2428
2429 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
2430 "Register type must be legal!");
2431 // Legalize the incoming value (must be a legal type).
2432 Tmp2 = LegalizeOp(Node->getOperand(2));
2433 if (Node->getNumValues() == 1) {
2434 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
2435 } else {
2436 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
2437 if (Node->getNumOperands() == 4) {
2438 Tmp3 = LegalizeOp(Node->getOperand(3));
2439 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2440 Tmp3);
2441 } else {
2442 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
2443 }
Scott Michel91099d62009-02-17 22:15:04 +00002444
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002445 // Since this produces two values, make sure to remember that we legalized
2446 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002447 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2448 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002449 return Result;
2450 }
2451 break;
2452
2453 case ISD::RET:
2454 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2455
2456 // Ensure that libcalls are emitted before a return.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002457 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002458 Tmp1 = LegalizeOp(Tmp1);
2459 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00002460
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002461 switch (Node->getNumOperands()) {
2462 case 3: // ret val
2463 Tmp2 = Node->getOperand(1);
2464 Tmp3 = Node->getOperand(2); // Signness
2465 switch (getTypeAction(Tmp2.getValueType())) {
2466 case Legal:
2467 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
2468 break;
2469 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +00002470 if (!Tmp2.getValueType().isVector()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002471 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002472 ExpandOp(Tmp2, Lo, Hi);
2473
2474 // Big endian systems want the hi reg first.
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002475 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002476 std::swap(Lo, Hi);
Scott Michel91099d62009-02-17 22:15:04 +00002477
Gabor Greif1c80d112008-08-28 21:40:38 +00002478 if (Hi.getNode())
Scott Michel91099d62009-02-17 22:15:04 +00002479 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilson2e958a42009-04-10 18:48:47 +00002480 Tmp1, Lo, Tmp3, Hi, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002481 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002482 Result = DAG.getNode(ISD::RET, dl, MVT::Other, Tmp1, Lo, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002483 Result = LegalizeOp(Result);
2484 } else {
Gabor Greif1c80d112008-08-28 21:40:38 +00002485 SDNode *InVal = Tmp2.getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002486 int InIx = Tmp2.getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002487 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2488 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michel91099d62009-02-17 22:15:04 +00002489
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002490 // Figure out if there is a simple type corresponding to this Vector
2491 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002492 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002493 if (TLI.isTypeLegal(TVT)) {
2494 // Turn this into a return of the vector type.
2495 Tmp2 = LegalizeOp(Tmp2);
2496 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2497 } else if (NumElems == 1) {
2498 // Turn this into a return of the scalar type.
2499 Tmp2 = ScalarizeVectorOp(Tmp2);
2500 Tmp2 = LegalizeOp(Tmp2);
2501 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michel91099d62009-02-17 22:15:04 +00002502
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002503 // FIXME: Returns of gcc generic vectors smaller than a legal type
2504 // should be returned in integer registers!
Scott Michel91099d62009-02-17 22:15:04 +00002505
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002506 // The scalarized value type may not be legal, e.g. it might require
2507 // promotion or expansion. Relegalize the return.
2508 Result = LegalizeOp(Result);
2509 } else {
2510 // FIXME: Returns of gcc generic vectors larger than a legal vector
2511 // type should be returned by reference!
Dan Gohman8181bd12008-07-27 21:46:04 +00002512 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002513 SplitVectorOp(Tmp2, Lo, Hi);
Scott Michel91099d62009-02-17 22:15:04 +00002514 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilson2e958a42009-04-10 18:48:47 +00002515 Tmp1, Lo, Tmp3, Hi, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002516 Result = LegalizeOp(Result);
2517 }
2518 }
2519 break;
2520 case Promote:
2521 Tmp2 = PromoteOp(Node->getOperand(1));
2522 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2523 Result = LegalizeOp(Result);
2524 break;
2525 }
2526 break;
2527 case 1: // ret void
2528 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2529 break;
2530 default: { // ret <values>
Dan Gohman8181bd12008-07-27 21:46:04 +00002531 SmallVector<SDValue, 8> NewValues;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002532 NewValues.push_back(Tmp1);
2533 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
2534 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2535 case Legal:
2536 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
2537 NewValues.push_back(Node->getOperand(i+1));
2538 break;
2539 case Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002540 SDValue Lo, Hi;
Duncan Sands92c43912008-06-06 12:08:01 +00002541 assert(!Node->getOperand(i).getValueType().isExtended() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002542 "FIXME: TODO: implement returning non-legal vector types!");
2543 ExpandOp(Node->getOperand(i), Lo, Hi);
2544 NewValues.push_back(Lo);
2545 NewValues.push_back(Node->getOperand(i+1));
Gabor Greif1c80d112008-08-28 21:40:38 +00002546 if (Hi.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002547 NewValues.push_back(Hi);
2548 NewValues.push_back(Node->getOperand(i+1));
2549 }
2550 break;
2551 }
2552 case Promote:
2553 assert(0 && "Can't promote multiple return value yet!");
2554 }
Scott Michel91099d62009-02-17 22:15:04 +00002555
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002556 if (NewValues.size() == Node->getNumOperands())
2557 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
2558 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002559 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002560 &NewValues[0], NewValues.size());
2561 break;
2562 }
2563 }
2564
2565 if (Result.getOpcode() == ISD::RET) {
2566 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2567 default: assert(0 && "This action is not supported yet!");
2568 case TargetLowering::Legal: break;
2569 case TargetLowering::Custom:
2570 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002571 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002572 break;
2573 }
2574 }
2575 break;
2576 case ISD::STORE: {
2577 StoreSDNode *ST = cast<StoreSDNode>(Node);
2578 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2579 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
2580 int SVOffset = ST->getSrcValueOffset();
2581 unsigned Alignment = ST->getAlignment();
2582 bool isVolatile = ST->isVolatile();
2583
2584 if (!ST->isTruncatingStore()) {
2585 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2586 // FIXME: We shouldn't do this for TargetConstantFP's.
2587 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2588 // to phase ordering between legalized code and the dag combiner. This
2589 // probably means that we need to integrate dag combiner and legalizer
2590 // together.
Dale Johannesen2fc20782007-09-14 22:26:36 +00002591 // We generally can't do this one for long doubles.
Chris Lattnere8671c52007-10-13 06:35:54 +00002592 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Scott Michel91099d62009-02-17 22:15:04 +00002593 if (CFP->getValueType(0) == MVT::f32 &&
Chris Lattner19f229a2007-10-15 05:46:06 +00002594 getTypeAction(MVT::i32) == Legal) {
Dan Gohman39509762008-03-11 00:11:06 +00002595 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002596 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen1616e902007-09-11 18:32:33 +00002597 MVT::i32);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002598 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dale Johannesen2fc20782007-09-14 22:26:36 +00002599 SVOffset, isVolatile, Alignment);
2600 break;
2601 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002602 // If this target supports 64-bit registers, do a single 64-bit store.
2603 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002604 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman39509762008-03-11 00:11:06 +00002605 zextOrTrunc(64), MVT::i64);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002606 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner19f229a2007-10-15 05:46:06 +00002607 SVOffset, isVolatile, Alignment);
2608 break;
Duncan Sands2418bec2008-06-13 19:07:40 +00002609 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002610 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2611 // stores. If the target supports neither 32- nor 64-bits, this
2612 // xform is certainly not worth it.
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002613 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman8181bd12008-07-27 21:46:04 +00002614 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2615 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002616 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner19f229a2007-10-15 05:46:06 +00002617
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002618 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Chris Lattner19f229a2007-10-15 05:46:06 +00002619 SVOffset, isVolatile, Alignment);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002620 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002621 DAG.getIntPtrConstant(4));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002622 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsa3691432007-10-28 12:59:45 +00002623 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner19f229a2007-10-15 05:46:06 +00002624
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002625 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Chris Lattner19f229a2007-10-15 05:46:06 +00002626 break;
2627 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002628 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002629 }
Scott Michel91099d62009-02-17 22:15:04 +00002630
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002631 switch (getTypeAction(ST->getMemoryVT())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002632 case Legal: {
2633 Tmp3 = LegalizeOp(ST->getValue());
Scott Michel91099d62009-02-17 22:15:04 +00002634 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002635 ST->getOffset());
2636
Duncan Sands92c43912008-06-06 12:08:01 +00002637 MVT VT = Tmp3.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002638 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2639 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002640 case TargetLowering::Legal:
2641 // If this is an unaligned store and the target doesn't support it,
2642 // expand it.
2643 if (!TLI.allowsUnalignedMemoryAccesses()) {
2644 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002645 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002646 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002647 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002648 TLI);
2649 }
2650 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002651 case TargetLowering::Custom:
2652 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002653 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002654 break;
2655 case TargetLowering::Promote:
Duncan Sands92c43912008-06-06 12:08:01 +00002656 assert(VT.isVector() && "Unknown legal promote case!");
Scott Michel91099d62009-02-17 22:15:04 +00002657 Tmp3 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002658 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002659 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002660 ST->getSrcValue(), SVOffset, isVolatile,
2661 Alignment);
2662 break;
2663 }
2664 break;
2665 }
2666 case Promote:
Mon P Wang1448aad2008-10-30 08:01:45 +00002667 if (!ST->getMemoryVT().isVector()) {
2668 // Truncate the value and store the result.
2669 Tmp3 = PromoteOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002670 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Mon P Wang1448aad2008-10-30 08:01:45 +00002671 SVOffset, ST->getMemoryVT(),
2672 isVolatile, Alignment);
2673 break;
2674 }
2675 // Fall thru to expand for vector
2676 case Expand: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002677 unsigned IncrementSize = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002678 SDValue Lo, Hi;
Scott Michel91099d62009-02-17 22:15:04 +00002679
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002680 // If this is a vector type, then we have to calculate the increment as
2681 // the product of the element size in bytes, and the number of elements
2682 // in the high half of the vector.
Duncan Sands92c43912008-06-06 12:08:01 +00002683 if (ST->getValue().getValueType().isVector()) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002684 SDNode *InVal = ST->getValue().getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002685 int InIx = ST->getValue().getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002686 MVT InVT = InVal->getValueType(InIx);
2687 unsigned NumElems = InVT.getVectorNumElements();
2688 MVT EVT = InVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002689
2690 // Figure out if there is a simple type corresponding to this Vector
2691 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002692 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002693 if (TLI.isTypeLegal(TVT)) {
2694 // Turn this into a normal store of the vector type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002695 Tmp3 = LegalizeOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002696 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002697 SVOffset, isVolatile, Alignment);
2698 Result = LegalizeOp(Result);
2699 break;
2700 } else if (NumElems == 1) {
2701 // Turn this into a normal store of the scalar type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002702 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002703 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002704 SVOffset, isVolatile, Alignment);
2705 // The scalarized value type may not be legal, e.g. it might require
2706 // promotion or expansion. Relegalize the scalar store.
2707 Result = LegalizeOp(Result);
2708 break;
2709 } else {
Mon P Wang1448aad2008-10-30 08:01:45 +00002710 // Check if we have widen this node with another value
2711 std::map<SDValue, SDValue>::iterator I =
2712 WidenNodes.find(ST->getValue());
2713 if (I != WidenNodes.end()) {
2714 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2715 break;
2716 }
2717 else {
2718 SplitVectorOp(ST->getValue(), Lo, Hi);
2719 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2720 EVT.getSizeInBits()/8;
2721 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002722 }
2723 } else {
Dan Gohmane9f633d2008-02-15 18:11:59 +00002724 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greif1c80d112008-08-28 21:40:38 +00002725 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002726
Richard Pennington73ae9e42008-09-25 16:15:10 +00002727 if (Hi.getNode() && TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002728 std::swap(Lo, Hi);
2729 }
2730
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002731 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002732 SVOffset, isVolatile, Alignment);
2733
Gabor Greif1c80d112008-08-28 21:40:38 +00002734 if (Hi.getNode() == NULL) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002735 // Must be int <-> float one-to-one expansion.
2736 Result = Lo;
2737 break;
2738 }
2739
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002740 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002741 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002742 assert(isTypeLegal(Tmp2.getValueType()) &&
2743 "Pointers must be legal!");
2744 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00002745 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002746 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002747 SVOffset, isVolatile, Alignment);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002748 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002749 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00002750 } // case Expand
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002751 }
2752 } else {
Chris Lattner3bc08502008-01-17 19:59:44 +00002753 switch (getTypeAction(ST->getValue().getValueType())) {
2754 case Legal:
2755 Tmp3 = LegalizeOp(ST->getValue());
2756 break;
2757 case Promote:
Mon P Wang1448aad2008-10-30 08:01:45 +00002758 if (!ST->getValue().getValueType().isVector()) {
2759 // We can promote the value, the truncstore will still take care of it.
2760 Tmp3 = PromoteOp(ST->getValue());
2761 break;
2762 }
2763 // Vector case falls through to expand
Chris Lattner3bc08502008-01-17 19:59:44 +00002764 case Expand:
2765 // Just store the low part. This may become a non-trunc store, so make
2766 // sure to use getTruncStore, not UpdateNodeOperands below.
2767 ExpandOp(ST->getValue(), Tmp3, Tmp4);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002768 return DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner3bc08502008-01-17 19:59:44 +00002769 SVOffset, MVT::i8, isVolatile, Alignment);
2770 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002771
Duncan Sands92c43912008-06-06 12:08:01 +00002772 MVT StVT = ST->getMemoryVT();
2773 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands40676662008-01-22 07:17:34 +00002774
Duncan Sands92c43912008-06-06 12:08:01 +00002775 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands40676662008-01-22 07:17:34 +00002776 // Promote to a byte-sized store with upper bits zero if not
2777 // storing an integral number of bytes. For example, promote
2778 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands92c43912008-06-06 12:08:01 +00002779 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002780 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
2781 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002782 SVOffset, NVT, isVolatile, Alignment);
2783 } else if (StWidth & (StWidth - 1)) {
2784 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands92c43912008-06-06 12:08:01 +00002785 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands40676662008-01-22 07:17:34 +00002786 "Unsupported truncstore!");
2787 unsigned RoundWidth = 1 << Log2_32(StWidth);
2788 assert(RoundWidth < StWidth);
2789 unsigned ExtraWidth = StWidth - RoundWidth;
2790 assert(ExtraWidth < RoundWidth);
2791 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2792 "Store size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002793 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2794 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002795 SDValue Lo, Hi;
Duncan Sands40676662008-01-22 07:17:34 +00002796 unsigned IncrementSize;
2797
2798 if (TLI.isLittleEndian()) {
2799 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2800 // Store the bottom RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002801 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002802 SVOffset, RoundVT,
2803 isVolatile, Alignment);
2804
2805 // Store the remaining ExtraWidth bits.
2806 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002807 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands40676662008-01-22 07:17:34 +00002808 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002809 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands40676662008-01-22 07:17:34 +00002810 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002811 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002812 SVOffset + IncrementSize, ExtraVT, isVolatile,
2813 MinAlign(Alignment, IncrementSize));
2814 } else {
2815 // Big endian - avoid unaligned stores.
2816 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2817 // Store the top RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002818 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands40676662008-01-22 07:17:34 +00002819 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002820 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
2821 SVOffset, RoundVT, isVolatile, Alignment);
Duncan Sands40676662008-01-22 07:17:34 +00002822
2823 // Store the remaining ExtraWidth bits.
2824 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002825 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands40676662008-01-22 07:17:34 +00002826 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002827 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002828 SVOffset + IncrementSize, ExtraVT, isVolatile,
2829 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002830 }
Duncan Sands40676662008-01-22 07:17:34 +00002831
2832 // The order of the stores doesn't matter.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002833 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Duncan Sands40676662008-01-22 07:17:34 +00002834 } else {
2835 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2836 Tmp2 != ST->getBasePtr())
2837 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2838 ST->getOffset());
2839
2840 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2841 default: assert(0 && "This action is not supported yet!");
2842 case TargetLowering::Legal:
2843 // If this is an unaligned store and the target doesn't support it,
2844 // expand it.
2845 if (!TLI.allowsUnalignedMemoryAccesses()) {
2846 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002847 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands40676662008-01-22 07:17:34 +00002848 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002849 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands40676662008-01-22 07:17:34 +00002850 TLI);
2851 }
2852 break;
2853 case TargetLowering::Custom:
2854 Result = TLI.LowerOperation(Result, DAG);
2855 break;
2856 case Expand:
2857 // TRUNCSTORE:i16 i32 -> STORE i16
2858 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002859 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
2860 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
2861 SVOffset, isVolatile, Alignment);
Duncan Sands40676662008-01-22 07:17:34 +00002862 break;
2863 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002864 }
2865 }
2866 break;
2867 }
2868 case ISD::PCMARKER:
2869 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2870 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
2871 break;
2872 case ISD::STACKSAVE:
2873 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2874 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2875 Tmp1 = Result.getValue(0);
2876 Tmp2 = Result.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00002877
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002878 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2879 default: assert(0 && "This action is not supported yet!");
2880 case TargetLowering::Legal: break;
2881 case TargetLowering::Custom:
2882 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002883 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002884 Tmp1 = LegalizeOp(Tmp3);
2885 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2886 }
2887 break;
2888 case TargetLowering::Expand:
Scott Michel91099d62009-02-17 22:15:04 +00002889 // Expand to CopyFromReg if the target set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002890 // StackPointerRegisterToSaveRestore.
2891 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesen564036c2009-02-04 00:13:36 +00002892 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), dl, SP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002893 Node->getValueType(0));
2894 Tmp2 = Tmp1.getValue(1);
2895 } else {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00002896 Tmp1 = DAG.getUNDEF(Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002897 Tmp2 = Node->getOperand(0);
2898 }
2899 break;
2900 }
2901
2902 // Since stacksave produce two values, make sure to remember that we
2903 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002904 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2905 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002906 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002907
2908 case ISD::STACKRESTORE:
2909 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2910 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2911 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00002912
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002913 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2914 default: assert(0 && "This action is not supported yet!");
2915 case TargetLowering::Legal: break;
2916 case TargetLowering::Custom:
2917 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002918 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002919 break;
2920 case TargetLowering::Expand:
Scott Michel91099d62009-02-17 22:15:04 +00002921 // Expand to CopyToReg if the target set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002922 // StackPointerRegisterToSaveRestore.
2923 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesen564036c2009-02-04 00:13:36 +00002924 Result = DAG.getCopyToReg(Tmp1, dl, SP, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002925 } else {
2926 Result = Tmp1;
2927 }
2928 break;
2929 }
2930 break;
2931
2932 case ISD::READCYCLECOUNTER:
2933 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
2934 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2935 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2936 Node->getValueType(0))) {
2937 default: assert(0 && "This action is not supported yet!");
2938 case TargetLowering::Legal:
2939 Tmp1 = Result.getValue(0);
2940 Tmp2 = Result.getValue(1);
2941 break;
2942 case TargetLowering::Custom:
2943 Result = TLI.LowerOperation(Result, DAG);
2944 Tmp1 = LegalizeOp(Result.getValue(0));
2945 Tmp2 = LegalizeOp(Result.getValue(1));
2946 break;
2947 }
2948
2949 // Since rdcc produce two values, make sure to remember that we legalized
2950 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002951 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2952 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002953 return Result;
2954
2955 case ISD::SELECT:
2956 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2957 case Expand: assert(0 && "It's impossible to expand bools");
2958 case Legal:
2959 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2960 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00002961 case Promote: {
Mon P Wang1448aad2008-10-30 08:01:45 +00002962 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002963 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
2964 // Make sure the condition is either zero or one.
Dan Gohman07961cd2008-02-25 21:11:39 +00002965 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002966 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman07961cd2008-02-25 21:11:39 +00002967 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002968 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, MVT::i1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002969 break;
2970 }
Dan Gohman07961cd2008-02-25 21:11:39 +00002971 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002972 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
2973 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
2974
2975 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michel91099d62009-02-17 22:15:04 +00002976
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002977 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
2978 default: assert(0 && "This action is not supported yet!");
2979 case TargetLowering::Legal: break;
2980 case TargetLowering::Custom: {
2981 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002982 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002983 break;
2984 }
2985 case TargetLowering::Expand:
2986 if (Tmp1.getOpcode() == ISD::SETCC) {
Scott Michel91099d62009-02-17 22:15:04 +00002987 Result = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002988 Tmp2, Tmp3,
2989 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2990 } else {
Scott Michel91099d62009-02-17 22:15:04 +00002991 Result = DAG.getSelectCC(dl, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002992 DAG.getConstant(0, Tmp1.getValueType()),
2993 Tmp2, Tmp3, ISD::SETNE);
2994 }
2995 break;
2996 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00002997 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002998 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2999 unsigned ExtOp, TruncOp;
Duncan Sands92c43912008-06-06 12:08:01 +00003000 if (Tmp2.getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003001 ExtOp = ISD::BIT_CONVERT;
3002 TruncOp = ISD::BIT_CONVERT;
Duncan Sands92c43912008-06-06 12:08:01 +00003003 } else if (Tmp2.getValueType().isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003004 ExtOp = ISD::ANY_EXTEND;
3005 TruncOp = ISD::TRUNCATE;
3006 } else {
3007 ExtOp = ISD::FP_EXTEND;
3008 TruncOp = ISD::FP_ROUND;
3009 }
3010 // Promote each of the values to the new type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003011 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Tmp2);
3012 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003013 // Perform the larger operation, then round down.
Bob Wilson2e958a42009-04-10 18:48:47 +00003014 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
Chris Lattner5872a362008-01-17 07:00:52 +00003015 if (TruncOp != ISD::FP_ROUND)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003016 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result);
Chris Lattner5872a362008-01-17 07:00:52 +00003017 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003018 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result,
Chris Lattner5872a362008-01-17 07:00:52 +00003019 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003020 break;
3021 }
3022 }
3023 break;
3024 case ISD::SELECT_CC: {
3025 Tmp1 = Node->getOperand(0); // LHS
3026 Tmp2 = Node->getOperand(1); // RHS
3027 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
3028 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman8181bd12008-07-27 21:46:04 +00003029 SDValue CC = Node->getOperand(4);
Scott Michel91099d62009-02-17 22:15:04 +00003030
3031 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
Dale Johannesen352c47e2009-02-02 20:41:04 +00003032 Tmp1, Tmp2, CC, dl);
Scott Michel91099d62009-02-17 22:15:04 +00003033
Evan Cheng71343822008-10-15 02:05:31 +00003034 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003035 // the LHS is a legal SETCC itself. In this case, we need to compare
3036 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00003037 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003038 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3039 CC = DAG.getCondCode(ISD::SETNE);
3040 }
3041 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3042
3043 // Everything is legal, see if we should expand this op or something.
3044 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3045 default: assert(0 && "This action is not supported yet!");
3046 case TargetLowering::Legal: break;
3047 case TargetLowering::Custom:
3048 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003049 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003050 break;
3051 }
3052 break;
3053 }
3054 case ISD::SETCC:
3055 Tmp1 = Node->getOperand(0);
3056 Tmp2 = Node->getOperand(1);
3057 Tmp3 = Node->getOperand(2);
Dale Johannesen352c47e2009-02-02 20:41:04 +00003058 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Scott Michel91099d62009-02-17 22:15:04 +00003059
3060 // If we had to Expand the SetCC operands into a SELECT node, then it may
3061 // not always be possible to return a true LHS & RHS. In this case, just
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003062 // return the value we legalized, returned in the LHS
Gabor Greif1c80d112008-08-28 21:40:38 +00003063 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003064 Result = Tmp1;
3065 break;
3066 }
3067
3068 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
3069 default: assert(0 && "Cannot handle this action for SETCC yet!");
3070 case TargetLowering::Custom:
3071 isCustom = true;
3072 // FALLTHROUGH.
3073 case TargetLowering::Legal:
3074 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3075 if (isCustom) {
3076 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003077 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003078 }
3079 break;
3080 case TargetLowering::Promote: {
3081 // First step, figure out the appropriate operation to use.
3082 // Allow SETCC to not be supported for all legal data types
3083 // Mostly this targets FP
Duncan Sands92c43912008-06-06 12:08:01 +00003084 MVT NewInTy = Node->getOperand(0).getValueType();
3085 MVT OldVT = NewInTy; OldVT = OldVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003086
3087 // Scan for the appropriate larger type to use.
3088 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00003089 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003090
Duncan Sands92c43912008-06-06 12:08:01 +00003091 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003092 "Fell off of the edge of the integer world");
Duncan Sands92c43912008-06-06 12:08:01 +00003093 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003094 "Fell off of the edge of the floating point world");
Scott Michel91099d62009-02-17 22:15:04 +00003095
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003096 // If the target supports SETCC of this type, use it.
Dan Gohman52c51aa2009-01-28 17:46:25 +00003097 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003098 break;
3099 }
Duncan Sands92c43912008-06-06 12:08:01 +00003100 if (NewInTy.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003101 assert(0 && "Cannot promote Legal Integer SETCC yet");
3102 else {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003103 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
3104 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003105 }
3106 Tmp1 = LegalizeOp(Tmp1);
3107 Tmp2 = LegalizeOp(Tmp2);
3108 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3109 Result = LegalizeOp(Result);
3110 break;
3111 }
3112 case TargetLowering::Expand:
3113 // Expand a setcc node into a select_cc of the same condition, lhs, and
3114 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands92c43912008-06-06 12:08:01 +00003115 MVT VT = Node->getValueType(0);
Scott Michel91099d62009-02-17 22:15:04 +00003116 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003117 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
3118 Tmp3);
3119 break;
3120 }
3121 break;
Nate Begeman9a1ce152008-05-12 19:40:03 +00003122 case ISD::VSETCC: {
3123 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3124 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman8181bd12008-07-27 21:46:04 +00003125 SDValue CC = Node->getOperand(2);
Scott Michel91099d62009-02-17 22:15:04 +00003126
Nate Begeman9a1ce152008-05-12 19:40:03 +00003127 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3128
3129 // Everything is legal, see if we should expand this op or something.
3130 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3131 default: assert(0 && "This action is not supported yet!");
3132 case TargetLowering::Legal: break;
3133 case TargetLowering::Custom:
3134 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003135 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9a1ce152008-05-12 19:40:03 +00003136 break;
Mon P Wangec428ad2008-12-13 08:15:14 +00003137 case TargetLowering::Expand: {
3138 // Unroll into a nasty set of scalar code for now.
3139 MVT VT = Node->getValueType(0);
3140 unsigned NumElems = VT.getVectorNumElements();
3141 MVT EltVT = VT.getVectorElementType();
3142 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3143 SmallVector<SDValue, 8> Ops(NumElems);
3144 for (unsigned i = 0; i < NumElems; ++i) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003145 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT,
Mon P Wangec428ad2008-12-13 08:15:14 +00003146 Tmp1, DAG.getIntPtrConstant(i));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003147 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
3148 In1, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3149 TmpEltVT, Tmp2,
3150 DAG.getIntPtrConstant(i)),
Mon P Wang77bc9cd2008-12-17 08:49:47 +00003151 CC);
Bob Wilson2e958a42009-04-10 18:48:47 +00003152 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i],
3153 DAG.getConstant(APInt::getAllOnesValue
3154 (EltVT.getSizeInBits()), EltVT),
3155 DAG.getConstant(0, EltVT));
Mon P Wangec428ad2008-12-13 08:15:14 +00003156 }
Evan Cheng907a2d22009-02-25 22:49:59 +00003157 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
Mon P Wangec428ad2008-12-13 08:15:14 +00003158 break;
3159 }
Nate Begeman9a1ce152008-05-12 19:40:03 +00003160 }
3161 break;
3162 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003163
3164 case ISD::SHL_PARTS:
3165 case ISD::SRA_PARTS:
3166 case ISD::SRL_PARTS: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003167 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003168 bool Changed = false;
Duncan Sands7d9e3612009-01-31 15:50:11 +00003169 unsigned N = Node->getNumOperands();
3170 for (unsigned i = 0; i + 1 < N; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003171 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3172 Changed |= Ops.back() != Node->getOperand(i);
3173 }
Duncan Sands7d9e3612009-01-31 15:50:11 +00003174 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3175 Changed |= Ops.back() != Node->getOperand(N-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003176 if (Changed)
3177 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
3178
3179 switch (TLI.getOperationAction(Node->getOpcode(),
3180 Node->getValueType(0))) {
3181 default: assert(0 && "This action is not supported yet!");
3182 case TargetLowering::Legal: break;
3183 case TargetLowering::Custom:
3184 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003185 if (Tmp1.getNode()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003186 SDValue Tmp2, RetVal(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003187 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
3188 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman8181bd12008-07-27 21:46:04 +00003189 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00003190 if (i == Op.getResNo())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003191 RetVal = Tmp2;
3192 }
Gabor Greif1c80d112008-08-28 21:40:38 +00003193 assert(RetVal.getNode() && "Illegal result number");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003194 return RetVal;
3195 }
3196 break;
3197 }
3198
3199 // Since these produce multiple values, make sure to remember that we
3200 // legalized all of them.
3201 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman8181bd12008-07-27 21:46:04 +00003202 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00003203 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003204 }
3205
3206 // Binary operators
3207 case ISD::ADD:
3208 case ISD::SUB:
3209 case ISD::MUL:
3210 case ISD::MULHS:
3211 case ISD::MULHU:
3212 case ISD::UDIV:
3213 case ISD::SDIV:
3214 case ISD::AND:
3215 case ISD::OR:
3216 case ISD::XOR:
3217 case ISD::SHL:
3218 case ISD::SRL:
3219 case ISD::SRA:
3220 case ISD::FADD:
3221 case ISD::FSUB:
3222 case ISD::FMUL:
3223 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00003224 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003225 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands7d9e3612009-01-31 15:50:11 +00003226 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begemanbb1ce942008-07-29 15:49:41 +00003227
3228 if ((Node->getOpcode() == ISD::SHL ||
3229 Node->getOpcode() == ISD::SRL ||
3230 Node->getOpcode() == ISD::SRA) &&
Duncan Sands7d9e3612009-01-31 15:50:11 +00003231 !Node->getValueType(0).isVector())
3232 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3233
3234 switch (getTypeAction(Tmp2.getValueType())) {
3235 case Expand: assert(0 && "Not possible");
3236 case Legal:
3237 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3238 break;
3239 case Promote:
3240 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3241 break;
Mon P Wangec428ad2008-12-13 08:15:14 +00003242 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00003243
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003244 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00003245
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003246 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3247 default: assert(0 && "BinOp legalize operation not supported");
3248 case TargetLowering::Legal: break;
3249 case TargetLowering::Custom:
3250 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003251 if (Tmp1.getNode()) {
Nate Begemanbb1ce942008-07-29 15:49:41 +00003252 Result = Tmp1;
3253 break;
Nate Begeman7569e762008-07-29 19:07:27 +00003254 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00003255 // Fall through if the custom lower can't deal with the operation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003256 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00003257 MVT VT = Op.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00003258
Dan Gohman5a199552007-10-08 18:33:35 +00003259 // See if multiply or divide can be lowered using two-result operations.
3260 SDVTList VTs = DAG.getVTList(VT, VT);
3261 if (Node->getOpcode() == ISD::MUL) {
3262 // We just need the low half of the multiply; try both the signed
3263 // and unsigned forms. If the target supports both SMUL_LOHI and
3264 // UMUL_LOHI, form a preference by checking which forms of plain
3265 // MULH it supports.
Dan Gohman52c51aa2009-01-28 17:46:25 +00003266 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3267 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3268 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3269 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman5a199552007-10-08 18:33:35 +00003270 unsigned OpToUse = 0;
3271 if (HasSMUL_LOHI && !HasMULHS) {
3272 OpToUse = ISD::SMUL_LOHI;
3273 } else if (HasUMUL_LOHI && !HasMULHU) {
3274 OpToUse = ISD::UMUL_LOHI;
3275 } else if (HasSMUL_LOHI) {
3276 OpToUse = ISD::SMUL_LOHI;
3277 } else if (HasUMUL_LOHI) {
3278 OpToUse = ISD::UMUL_LOHI;
3279 }
3280 if (OpToUse) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003281 Result = SDValue(DAG.getNode(OpToUse, dl, VTs, Tmp1, Tmp2).getNode(),
3282 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003283 break;
3284 }
3285 }
3286 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003287 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Scott Michel91099d62009-02-17 22:15:04 +00003288 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003289 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003290 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003291 break;
3292 }
Scott Michel91099d62009-02-17 22:15:04 +00003293 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003294 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003295 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl,
3296 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003297 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003298 break;
3299 }
3300 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003301 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michel91099d62009-02-17 22:15:04 +00003302 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003303 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003304 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003305 break;
3306 }
3307 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003308 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003309 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3310 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003311 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003312 break;
3313 }
Mon P Wang26342922008-12-18 20:03:17 +00003314
Dan Gohman6d05cac2007-10-11 23:57:53 +00003315 // Check to see if we have a libcall for this operator.
3316 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3317 bool isSigned = false;
3318 switch (Node->getOpcode()) {
3319 case ISD::UDIV:
3320 case ISD::SDIV:
3321 if (VT == MVT::i32) {
3322 LC = Node->getOpcode() == ISD::UDIV
Mon P Wang1448aad2008-10-30 08:01:45 +00003323 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003324 isSigned = Node->getOpcode() == ISD::SDIV;
3325 }
3326 break;
Chris Lattner48188652008-10-04 21:27:46 +00003327 case ISD::MUL:
3328 if (VT == MVT::i32)
3329 LC = RTLIB::MUL_I32;
sampoa0d77372009-01-24 22:12:48 +00003330 else if (VT == MVT::i64)
Scott Michel81215042008-12-29 03:21:37 +00003331 LC = RTLIB::MUL_I64;
Chris Lattner48188652008-10-04 21:27:46 +00003332 break;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003333 case ISD::FPOW:
Duncan Sands37a3f472008-01-10 10:28:30 +00003334 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3335 RTLIB::POW_PPCF128);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003336 break;
Scott Michel8c67fa42009-01-21 04:58:48 +00003337 case ISD::FDIV:
3338 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3339 RTLIB::DIV_PPCF128);
3340 break;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003341 default: break;
3342 }
3343 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003344 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003345 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003346 break;
3347 }
Scott Michel91099d62009-02-17 22:15:04 +00003348
Duncan Sands92c43912008-06-06 12:08:01 +00003349 assert(Node->getValueType(0).isVector() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003350 "Cannot expand this binary operator!");
3351 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman6d05cac2007-10-11 23:57:53 +00003352 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003353 break;
3354 }
3355 case TargetLowering::Promote: {
3356 switch (Node->getOpcode()) {
3357 default: assert(0 && "Do not know how to promote this BinOp!");
3358 case ISD::AND:
3359 case ISD::OR:
3360 case ISD::XOR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003361 MVT OVT = Node->getValueType(0);
3362 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3363 assert(OVT.isVector() && "Cannot promote this BinOp!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003364 // Bit convert each of the values to the new type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003365 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
3366 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
3367 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003368 // Bit convert the result back the original type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003369 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003370 break;
3371 }
3372 }
3373 }
3374 }
3375 break;
Scott Michel91099d62009-02-17 22:15:04 +00003376
Dan Gohman475cd732007-10-05 14:17:22 +00003377 case ISD::SMUL_LOHI:
3378 case ISD::UMUL_LOHI:
3379 case ISD::SDIVREM:
3380 case ISD::UDIVREM:
3381 // These nodes will only be produced by target-specific lowering, so
3382 // they shouldn't be here if they aren't legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +00003383 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohman475cd732007-10-05 14:17:22 +00003384 "This must be legal!");
Dan Gohman5a199552007-10-08 18:33:35 +00003385
3386 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3387 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3388 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman475cd732007-10-05 14:17:22 +00003389 break;
3390
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003391 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3392 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3393 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3394 case Expand: assert(0 && "Not possible");
3395 case Legal:
3396 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3397 break;
3398 case Promote:
3399 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3400 break;
3401 }
Scott Michel91099d62009-02-17 22:15:04 +00003402
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003403 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00003404
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003405 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3406 default: assert(0 && "Operation not supported");
3407 case TargetLowering::Custom:
3408 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003409 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003410 break;
3411 case TargetLowering::Legal: break;
3412 case TargetLowering::Expand: {
3413 // If this target supports fabs/fneg natively and select is cheap,
3414 // do this efficiently.
3415 if (!TLI.isSelectExpensive() &&
3416 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3417 TargetLowering::Legal &&
3418 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
3419 TargetLowering::Legal) {
3420 // Get the sign bit of the RHS.
Duncan Sands92c43912008-06-06 12:08:01 +00003421 MVT IVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003422 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003423 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, IVT, Tmp2);
3424 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(IVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003425 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3426 // Get the absolute value of the result.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003427 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003428 // Select between the nabs and abs value based on the sign bit of
3429 // the input.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003430 Result = DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
Scott Michel91099d62009-02-17 22:15:04 +00003431 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003432 AbsVal),
3433 AbsVal);
3434 Result = LegalizeOp(Result);
3435 break;
3436 }
Scott Michel91099d62009-02-17 22:15:04 +00003437
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003438 // Otherwise, do bitwise ops!
Duncan Sands92c43912008-06-06 12:08:01 +00003439 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003440 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3441 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003442 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003443 Result = LegalizeOp(Result);
3444 break;
3445 }
3446 }
3447 break;
Scott Michel91099d62009-02-17 22:15:04 +00003448
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003449 case ISD::ADDC:
3450 case ISD::SUBC:
3451 Tmp1 = LegalizeOp(Node->getOperand(0));
3452 Tmp2 = LegalizeOp(Node->getOperand(1));
3453 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003454 Tmp3 = Result.getValue(0);
3455 Tmp4 = Result.getValue(1);
3456
3457 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3458 default: assert(0 && "This action is not supported yet!");
3459 case TargetLowering::Legal:
3460 break;
3461 case TargetLowering::Custom:
3462 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3463 if (Tmp1.getNode() != NULL) {
Sanjiv Guptad57f2e12008-11-27 05:58:04 +00003464 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003465 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3466 }
3467 break;
3468 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003469 // Since this produces two values, make sure to remember that we legalized
3470 // both of them.
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003471 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3472 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3473 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003474
3475 case ISD::ADDE:
3476 case ISD::SUBE:
3477 Tmp1 = LegalizeOp(Node->getOperand(0));
3478 Tmp2 = LegalizeOp(Node->getOperand(1));
3479 Tmp3 = LegalizeOp(Node->getOperand(2));
3480 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003481 Tmp3 = Result.getValue(0);
3482 Tmp4 = Result.getValue(1);
3483
3484 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3485 default: assert(0 && "This action is not supported yet!");
3486 case TargetLowering::Legal:
3487 break;
3488 case TargetLowering::Custom:
3489 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3490 if (Tmp1.getNode() != NULL) {
Sanjiv Guptad57f2e12008-11-27 05:58:04 +00003491 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003492 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3493 }
3494 break;
3495 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003496 // Since this produces two values, make sure to remember that we legalized
3497 // both of them.
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003498 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3499 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3500 return Op.getResNo() ? Tmp4 : Tmp3;
Scott Michel91099d62009-02-17 22:15:04 +00003501
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003502 case ISD::BUILD_PAIR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003503 MVT PairTy = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003504 // TODO: handle the case where the Lo and Hi operands are not of legal type
3505 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3506 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3507 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
3508 case TargetLowering::Promote:
3509 case TargetLowering::Custom:
3510 assert(0 && "Cannot promote/custom this yet!");
3511 case TargetLowering::Legal:
3512 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003513 Result = DAG.getNode(ISD::BUILD_PAIR, dl, PairTy, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003514 break;
3515 case TargetLowering::Expand:
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003516 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Tmp1);
3517 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Tmp2);
3518 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003519 DAG.getConstant(PairTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003520 TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003521 Result = DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003522 break;
3523 }
3524 break;
3525 }
3526
3527 case ISD::UREM:
3528 case ISD::SREM:
3529 case ISD::FREM:
3530 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3531 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3532
3533 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3534 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3535 case TargetLowering::Custom:
3536 isCustom = true;
3537 // FALLTHROUGH
3538 case TargetLowering::Legal:
3539 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3540 if (isCustom) {
3541 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003542 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003543 }
3544 break;
Dan Gohman5a199552007-10-08 18:33:35 +00003545 case TargetLowering::Expand: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003546 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
3547 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands92c43912008-06-06 12:08:01 +00003548 MVT VT = Node->getValueType(0);
Scott Michel91099d62009-02-17 22:15:04 +00003549
Dan Gohman5a199552007-10-08 18:33:35 +00003550 // See if remainder can be lowered using two-result operations.
3551 SDVTList VTs = DAG.getVTList(VT, VT);
3552 if (Node->getOpcode() == ISD::SREM &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003553 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michel91099d62009-02-17 22:15:04 +00003554 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003555 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003556 break;
3557 }
3558 if (Node->getOpcode() == ISD::UREM &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003559 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003560 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3561 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003562 break;
3563 }
3564
Duncan Sands92c43912008-06-06 12:08:01 +00003565 if (VT.isInteger()) {
Dan Gohman5a199552007-10-08 18:33:35 +00003566 if (TLI.getOperationAction(DivOpc, VT) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003567 TargetLowering::Legal) {
3568 // X % Y -> X-X/Y*Y
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003569 Result = DAG.getNode(DivOpc, dl, VT, Tmp1, Tmp2);
3570 Result = DAG.getNode(ISD::MUL, dl, VT, Result, Tmp2);
3571 Result = DAG.getNode(ISD::SUB, dl, VT, Tmp1, Result);
Duncan Sands92c43912008-06-06 12:08:01 +00003572 } else if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003573 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003574 } else {
Dan Gohman5a199552007-10-08 18:33:35 +00003575 assert(VT == MVT::i32 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003576 "Cannot expand this binary operator!");
3577 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3578 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman8181bd12008-07-27 21:46:04 +00003579 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003580 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003581 }
Dan Gohman59b4b102007-11-06 22:11:54 +00003582 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00003583 assert(VT.isFloatingPoint() &&
Dan Gohman59b4b102007-11-06 22:11:54 +00003584 "remainder op must have integer or floating-point type");
Duncan Sands92c43912008-06-06 12:08:01 +00003585 if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003586 Result = LegalizeOp(UnrollVectorOp(Op));
3587 } else {
3588 // Floating point mod -> fmod libcall.
Duncan Sands37a3f472008-01-10 10:28:30 +00003589 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3590 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003591 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003592 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003593 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003594 }
3595 break;
3596 }
Dan Gohman5a199552007-10-08 18:33:35 +00003597 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003598 break;
3599 case ISD::VAARG: {
3600 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3601 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3602
Duncan Sands92c43912008-06-06 12:08:01 +00003603 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003604 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3605 default: assert(0 && "This action is not supported yet!");
3606 case TargetLowering::Custom:
3607 isCustom = true;
3608 // FALLTHROUGH
3609 case TargetLowering::Legal:
3610 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3611 Result = Result.getValue(0);
3612 Tmp1 = Result.getValue(1);
3613
3614 if (isCustom) {
3615 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003616 if (Tmp2.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003617 Result = LegalizeOp(Tmp2);
3618 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3619 }
3620 }
3621 break;
3622 case TargetLowering::Expand: {
Dan Gohman12a9c082008-02-06 22:27:42 +00003623 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003624 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003625 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003626 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sandsd68f13b2009-01-12 20:38:59 +00003627 DAG.getConstant(TLI.getTargetData()->
3628 getTypePaddedSize(VT.getTypeForMVT()),
3629 TLI.getPointerTy()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003630 // Store the incremented VAList to the legalized pointer
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003631 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003632 // Load the actual argument out of the pointer VAList
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003633 Result = DAG.getLoad(VT, dl, Tmp3, VAList, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003634 Tmp1 = LegalizeOp(Result.getValue(1));
3635 Result = LegalizeOp(Result);
3636 break;
3637 }
3638 }
Scott Michel91099d62009-02-17 22:15:04 +00003639 // Since VAARG produces two values, make sure to remember that we
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003640 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003641 AddLegalizedOperand(SDValue(Node, 0), Result);
3642 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00003643 return Op.getResNo() ? Tmp1 : Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003644 }
Scott Michel91099d62009-02-17 22:15:04 +00003645
3646 case ISD::VACOPY:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003647 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3648 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3649 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3650
3651 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3652 default: assert(0 && "This action is not supported yet!");
3653 case TargetLowering::Custom:
3654 isCustom = true;
3655 // FALLTHROUGH
3656 case TargetLowering::Legal:
3657 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3658 Node->getOperand(3), Node->getOperand(4));
3659 if (isCustom) {
3660 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003661 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003662 }
3663 break;
3664 case TargetLowering::Expand:
3665 // This defaults to loading a pointer from the input and storing it to the
3666 // output, returning the chain.
Dan Gohman12a9c082008-02-06 22:27:42 +00003667 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3668 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003669 Tmp4 = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp3, VS, 0);
3670 Result = DAG.getStore(Tmp4.getValue(1), dl, Tmp4, Tmp2, VD, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003671 break;
3672 }
3673 break;
3674
Scott Michel91099d62009-02-17 22:15:04 +00003675 case ISD::VAEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003676 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3677 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3678
3679 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3680 default: assert(0 && "This action is not supported yet!");
3681 case TargetLowering::Custom:
3682 isCustom = true;
3683 // FALLTHROUGH
3684 case TargetLowering::Legal:
3685 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3686 if (isCustom) {
3687 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003688 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003689 }
3690 break;
3691 case TargetLowering::Expand:
3692 Result = Tmp1; // Default to a no-op, return the chain
3693 break;
3694 }
3695 break;
Scott Michel91099d62009-02-17 22:15:04 +00003696
3697 case ISD::VASTART:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003698 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3699 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3700
3701 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michel91099d62009-02-17 22:15:04 +00003702
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003703 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3704 default: assert(0 && "This action is not supported yet!");
3705 case TargetLowering::Legal: break;
3706 case TargetLowering::Custom:
3707 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003708 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003709 break;
3710 }
3711 break;
Scott Michel91099d62009-02-17 22:15:04 +00003712
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003713 case ISD::ROTL:
3714 case ISD::ROTR:
3715 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands7d9e3612009-01-31 15:50:11 +00003716 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003717 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3718 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3719 default:
3720 assert(0 && "ROTL/ROTR legalize operation not supported");
3721 break;
3722 case TargetLowering::Legal:
3723 break;
3724 case TargetLowering::Custom:
3725 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003726 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003727 break;
3728 case TargetLowering::Promote:
3729 assert(0 && "Do not know how to promote ROTL/ROTR");
3730 break;
3731 case TargetLowering::Expand:
3732 assert(0 && "Do not know how to expand ROTL/ROTR");
3733 break;
3734 }
3735 break;
Scott Michel91099d62009-02-17 22:15:04 +00003736
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003737 case ISD::BSWAP:
3738 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3739 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3740 case TargetLowering::Custom:
3741 assert(0 && "Cannot custom legalize this yet!");
3742 case TargetLowering::Legal:
3743 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3744 break;
3745 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003746 MVT OVT = Tmp1.getValueType();
3747 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3748 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003749
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003750 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
3751 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3752 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003753 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3754 break;
3755 }
3756 case TargetLowering::Expand:
Dale Johannesen82b5b722009-02-02 22:12:50 +00003757 Result = ExpandBSWAP(Tmp1, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003758 break;
3759 }
3760 break;
Scott Michel91099d62009-02-17 22:15:04 +00003761
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003762 case ISD::CTPOP:
3763 case ISD::CTTZ:
3764 case ISD::CTLZ:
3765 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3766 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel48b63e62007-07-30 21:00:31 +00003767 case TargetLowering::Custom:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003768 case TargetLowering::Legal:
3769 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel48b63e62007-07-30 21:00:31 +00003770 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michelbc62b412007-08-02 02:22:46 +00003771 TargetLowering::Custom) {
3772 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003773 if (Tmp1.getNode()) {
Scott Michelbc62b412007-08-02 02:22:46 +00003774 Result = Tmp1;
3775 }
Scott Michel48b63e62007-07-30 21:00:31 +00003776 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003777 break;
3778 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003779 MVT OVT = Tmp1.getValueType();
3780 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003781
3782 // Zero extend the argument.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003783 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003784 // Perform the larger operation, then subtract if needed.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003785 Tmp1 = DAG.getNode(Node->getOpcode(), dl, Node->getValueType(0), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003786 switch (Node->getOpcode()) {
3787 case ISD::CTPOP:
3788 Result = Tmp1;
3789 break;
3790 case ISD::CTTZ:
3791 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003792 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
3793 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003794 ISD::SETEQ);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003795 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003796 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003797 break;
3798 case ISD::CTLZ:
3799 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003800 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00003801 DAG.getConstant(NVT.getSizeInBits() -
3802 OVT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003803 break;
3804 }
3805 break;
3806 }
3807 case TargetLowering::Expand:
Dale Johannesen82b5b722009-02-02 22:12:50 +00003808 Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003809 break;
3810 }
3811 break;
3812
3813 // Unary operators
3814 case ISD::FABS:
3815 case ISD::FNEG:
3816 case ISD::FSQRT:
3817 case ISD::FSIN:
3818 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003819 case ISD::FLOG:
3820 case ISD::FLOG2:
3821 case ISD::FLOG10:
3822 case ISD::FEXP:
3823 case ISD::FEXP2:
Dan Gohmanc8b20e22008-08-21 17:55:02 +00003824 case ISD::FTRUNC:
3825 case ISD::FFLOOR:
3826 case ISD::FCEIL:
3827 case ISD::FRINT:
3828 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003829 Tmp1 = LegalizeOp(Node->getOperand(0));
3830 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3831 case TargetLowering::Promote:
3832 case TargetLowering::Custom:
3833 isCustom = true;
3834 // FALLTHROUGH
3835 case TargetLowering::Legal:
3836 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3837 if (isCustom) {
3838 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003839 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003840 }
3841 break;
3842 case TargetLowering::Expand:
3843 switch (Node->getOpcode()) {
3844 default: assert(0 && "Unreachable!");
3845 case ISD::FNEG:
3846 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3847 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003848 Result = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp2, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003849 break;
3850 case ISD::FABS: {
3851 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands92c43912008-06-06 12:08:01 +00003852 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003853 Tmp2 = DAG.getConstantFP(0.0, VT);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003854 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00003855 Tmp1, Tmp2, ISD::SETUGT);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003856 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3857 Result = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003858 break;
3859 }
Evan Cheng1fac6952008-09-09 23:35:53 +00003860 case ISD::FSQRT:
3861 case ISD::FSIN:
Scott Michel91099d62009-02-17 22:15:04 +00003862 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003863 case ISD::FLOG:
3864 case ISD::FLOG2:
3865 case ISD::FLOG10:
3866 case ISD::FEXP:
3867 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00003868 case ISD::FTRUNC:
3869 case ISD::FFLOOR:
3870 case ISD::FCEIL:
3871 case ISD::FRINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00003872 case ISD::FNEARBYINT: {
Duncan Sands92c43912008-06-06 12:08:01 +00003873 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003874
3875 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003876 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003877 Result = LegalizeOp(UnrollVectorOp(Op));
3878 break;
3879 }
3880
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003881 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3882 switch(Node->getOpcode()) {
3883 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00003884 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3885 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003886 break;
3887 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00003888 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3889 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003890 break;
3891 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00003892 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3893 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003894 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00003895 case ISD::FLOG:
3896 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3897 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3898 break;
3899 case ISD::FLOG2:
3900 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3901 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3902 break;
3903 case ISD::FLOG10:
3904 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3905 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3906 break;
3907 case ISD::FEXP:
3908 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3909 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3910 break;
3911 case ISD::FEXP2:
3912 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3913 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3914 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00003915 case ISD::FTRUNC:
3916 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3917 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3918 break;
3919 case ISD::FFLOOR:
3920 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3921 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3922 break;
3923 case ISD::FCEIL:
3924 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3925 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3926 break;
3927 case ISD::FRINT:
3928 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3929 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3930 break;
3931 case ISD::FNEARBYINT:
3932 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3933 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3934 break;
Evan Cheng1fac6952008-09-09 23:35:53 +00003935 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003936 default: assert(0 && "Unreachable!");
3937 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003938 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003939 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003940 break;
3941 }
3942 }
3943 break;
3944 }
3945 break;
3946 case ISD::FPOWI: {
Duncan Sands92c43912008-06-06 12:08:01 +00003947 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003948
3949 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003950 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003951 Result = LegalizeOp(UnrollVectorOp(Op));
3952 break;
3953 }
3954
3955 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands37a3f472008-01-10 10:28:30 +00003956 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3957 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003958 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003959 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003960 break;
3961 }
3962 case ISD::BIT_CONVERT:
3963 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003964 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00003965 Node->getValueType(0), dl);
Duncan Sands92c43912008-06-06 12:08:01 +00003966 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003967 // The input has to be a vector type, we have to either scalarize it, pack
3968 // it, or convert it based on whether the input vector type is legal.
Gabor Greif1c80d112008-08-28 21:40:38 +00003969 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00003970 int InIx = Node->getOperand(0).getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00003971 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3972 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michel91099d62009-02-17 22:15:04 +00003973
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003974 // Figure out if there is a simple type corresponding to this Vector
3975 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00003976 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003977 if (TLI.isTypeLegal(TVT)) {
3978 // Turn this into a bit convert of the vector input.
Scott Michel91099d62009-02-17 22:15:04 +00003979 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003980 LegalizeOp(Node->getOperand(0)));
3981 break;
3982 } else if (NumElems == 1) {
3983 // Turn this into a bit convert of the scalar input.
Scott Michel91099d62009-02-17 22:15:04 +00003984 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003985 ScalarizeVectorOp(Node->getOperand(0)));
3986 break;
3987 } else {
3988 // FIXME: UNIMP! Store then reload
3989 assert(0 && "Cast from unsupported vector type not implemented yet!");
3990 }
3991 } else {
3992 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3993 Node->getOperand(0).getValueType())) {
3994 default: assert(0 && "Unknown operation action!");
3995 case TargetLowering::Expand:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003996 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00003997 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003998 break;
3999 case TargetLowering::Legal:
4000 Tmp1 = LegalizeOp(Node->getOperand(0));
4001 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4002 break;
4003 }
4004 }
4005 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004006 case ISD::CONVERT_RNDSAT: {
4007 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4008 switch (CvtCode) {
4009 default: assert(0 && "Unknown cvt code!");
4010 case ISD::CVT_SF:
4011 case ISD::CVT_UF:
Mon P Wang73d31542008-11-10 20:54:11 +00004012 case ISD::CVT_FF:
Mon P Wang2fc3f9e2008-12-09 07:27:39 +00004013 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004014 case ISD::CVT_FS:
4015 case ISD::CVT_FU:
4016 case ISD::CVT_SS:
4017 case ISD::CVT_SU:
4018 case ISD::CVT_US:
4019 case ISD::CVT_UU: {
4020 SDValue DTyOp = Node->getOperand(1);
4021 SDValue STyOp = Node->getOperand(2);
4022 SDValue RndOp = Node->getOperand(3);
4023 SDValue SatOp = Node->getOperand(4);
4024 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4025 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4026 case Legal:
4027 Tmp1 = LegalizeOp(Node->getOperand(0));
4028 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
4029 RndOp, SatOp);
4030 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4031 TargetLowering::Custom) {
4032 Tmp1 = TLI.LowerOperation(Result, DAG);
4033 if (Tmp1.getNode()) Result = Tmp1;
4034 }
4035 break;
4036 case Promote:
4037 Result = PromoteOp(Node->getOperand(0));
4038 // For FP, make Op1 a i32
Scott Michel91099d62009-02-17 22:15:04 +00004039
Dale Johannesen564036c2009-02-04 00:13:36 +00004040 Result = DAG.getConvertRndSat(Op.getValueType(), dl, Result,
Mon P Wang73d31542008-11-10 20:54:11 +00004041 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4042 break;
4043 }
4044 break;
4045 }
4046 } // end switch CvtCode
4047 break;
4048 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004049 // Conversion operators. The source and destination have different types.
4050 case ISD::SINT_TO_FP:
4051 case ISD::UINT_TO_FP: {
4052 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman29c3cef2008-08-14 20:04:46 +00004053 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesen9972b632009-02-02 19:03:57 +00004054 Node->getValueType(0), Node->getOperand(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004055 break;
4056 }
4057 case ISD::TRUNCATE:
4058 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4059 case Legal:
4060 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michele9b8a402008-12-02 19:55:08 +00004061 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4062 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4063 case TargetLowering::Custom:
Mon P Wang72fe5462008-12-11 00:44:22 +00004064 isCustom = true;
4065 // FALLTHROUGH
Scott Michele9b8a402008-12-02 19:55:08 +00004066 case TargetLowering::Legal:
Mon P Wang72fe5462008-12-11 00:44:22 +00004067 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4068 if (isCustom) {
4069 Tmp1 = TLI.LowerOperation(Result, DAG);
4070 if (Tmp1.getNode()) Result = Tmp1;
4071 }
4072 break;
Mon P Wang83edba52008-12-12 01:25:51 +00004073 case TargetLowering::Expand:
4074 assert(Result.getValueType().isVector() && "must be vector type");
4075 // Unroll the truncate. We should do better.
4076 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerbfc55ee2008-12-02 12:12:25 +00004077 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004078 break;
4079 case Expand:
4080 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4081
4082 // Since the result is legal, we should just be able to truncate the low
4083 // part of the source.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004084 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004085 break;
4086 case Promote:
4087 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004088 Result = DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004089 break;
4090 }
4091 break;
4092
4093 case ISD::FP_TO_SINT:
4094 case ISD::FP_TO_UINT:
4095 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4096 case Legal:
4097 Tmp1 = LegalizeOp(Node->getOperand(0));
4098
4099 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4100 default: assert(0 && "Unknown operation action!");
4101 case TargetLowering::Custom:
4102 isCustom = true;
4103 // FALLTHROUGH
4104 case TargetLowering::Legal:
4105 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4106 if (isCustom) {
4107 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004108 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004109 }
4110 break;
4111 case TargetLowering::Promote:
4112 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Scott Michel91099d62009-02-17 22:15:04 +00004113 Node->getOpcode() == ISD::FP_TO_SINT,
Dale Johannesen9972b632009-02-02 19:03:57 +00004114 dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004115 break;
4116 case TargetLowering::Expand:
4117 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004118 SDValue True, False;
Duncan Sands92c43912008-06-06 12:08:01 +00004119 MVT VT = Node->getOperand(0).getValueType();
4120 MVT NVT = Node->getValueType(0);
Dale Johannesen958b08b2007-09-19 23:55:34 +00004121 const uint64_t zero[] = {0, 0};
Duncan Sands92c43912008-06-06 12:08:01 +00004122 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4123 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohman88ae8c52008-02-29 01:44:25 +00004124 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen958b08b2007-09-19 23:55:34 +00004125 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel91099d62009-02-17 22:15:04 +00004126 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
Dale Johannesen9972b632009-02-02 19:03:57 +00004127 Node->getOperand(0),
Duncan Sands4a361272009-01-01 15:52:00 +00004128 Tmp2, ISD::SETLT);
Dale Johannesen9972b632009-02-02 19:03:57 +00004129 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4130 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
Scott Michel91099d62009-02-17 22:15:04 +00004131 DAG.getNode(ISD::FSUB, dl, VT,
Dale Johannesen9972b632009-02-02 19:03:57 +00004132 Node->getOperand(0), Tmp2));
4133 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohman88ae8c52008-02-29 01:44:25 +00004134 DAG.getConstant(x, NVT));
Dale Johannesen9972b632009-02-02 19:03:57 +00004135 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004136 break;
4137 } else {
4138 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4139 }
4140 break;
4141 }
4142 break;
4143 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00004144 MVT VT = Op.getValueType();
4145 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesend3b6af32007-10-11 23:32:15 +00004146 // Convert ppcf128 to i32
Dale Johannesen3d8578b2007-10-10 01:01:31 +00004147 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner5872a362008-01-17 07:00:52 +00004148 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Scott Michel91099d62009-02-17 22:15:04 +00004149 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner5872a362008-01-17 07:00:52 +00004150 Node->getOperand(0), DAG.getValueType(MVT::f64));
Scott Michel91099d62009-02-17 22:15:04 +00004151 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner5872a362008-01-17 07:00:52 +00004152 DAG.getIntPtrConstant(1));
Dale Johannesen9972b632009-02-02 19:03:57 +00004153 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner5872a362008-01-17 07:00:52 +00004154 } else {
Dale Johannesend3b6af32007-10-11 23:32:15 +00004155 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4156 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4157 Tmp2 = DAG.getConstantFP(apf, OVT);
4158 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4159 // FIXME: generated code sucks.
Scott Michel91099d62009-02-17 22:15:04 +00004160 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
Dale Johannesen9972b632009-02-02 19:03:57 +00004161 Tmp2,
4162 DAG.getNode(ISD::ADD, dl, MVT::i32,
4163 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4164 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesend3b6af32007-10-11 23:32:15 +00004165 Node->getOperand(0), Tmp2)),
4166 DAG.getConstant(0x80000000, MVT::i32)),
Scott Michel91099d62009-02-17 22:15:04 +00004167 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesend3b6af32007-10-11 23:32:15 +00004168 Node->getOperand(0)),
4169 DAG.getCondCode(ISD::SETGE));
4170 }
Dale Johannesen3d8578b2007-10-10 01:01:31 +00004171 break;
4172 }
Dan Gohmanec51f642008-03-10 23:03:31 +00004173 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsf68dffb2008-07-17 02:36:29 +00004174 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4175 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4176 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman8181bd12008-07-27 21:46:04 +00004177 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00004178 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004179 break;
4180 }
4181 case Promote:
4182 Tmp1 = PromoteOp(Node->getOperand(0));
4183 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4184 Result = LegalizeOp(Result);
4185 break;
4186 }
4187 break;
4188
Chris Lattner56ecde32008-01-16 06:57:07 +00004189 case ISD::FP_EXTEND: {
Duncan Sands92c43912008-06-06 12:08:01 +00004190 MVT DstVT = Op.getValueType();
4191 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00004192 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4193 // The only other way we can lower this is to turn it into a STORE,
4194 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen82b5b722009-02-02 22:12:50 +00004195 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl);
Chris Lattner5872a362008-01-17 07:00:52 +00004196 break;
Chris Lattner56ecde32008-01-16 06:57:07 +00004197 }
4198 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4199 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4200 case Legal:
4201 Tmp1 = LegalizeOp(Node->getOperand(0));
4202 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4203 break;
4204 case Promote:
4205 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004206 Result = DAG.getNode(ISD::FP_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattner56ecde32008-01-16 06:57:07 +00004207 break;
4208 }
4209 break;
Chris Lattner5872a362008-01-17 07:00:52 +00004210 }
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00004211 case ISD::FP_ROUND: {
Duncan Sands92c43912008-06-06 12:08:01 +00004212 MVT DstVT = Op.getValueType();
4213 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00004214 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4215 if (SrcVT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004216 SDValue Lo;
Dale Johannesena0d36082008-01-20 01:18:38 +00004217 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner5872a362008-01-17 07:00:52 +00004218 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesena0d36082008-01-20 01:18:38 +00004219 if (DstVT!=MVT::f64)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004220 Result = DAG.getNode(ISD::FP_ROUND, dl,
4221 DstVT, Result, Op.getOperand(1));
Chris Lattner5872a362008-01-17 07:00:52 +00004222 break;
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00004223 }
Chris Lattner5872a362008-01-17 07:00:52 +00004224 // The only other way we can lower this is to turn it into a STORE,
4225 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen82b5b722009-02-02 22:12:50 +00004226 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl);
Chris Lattner5872a362008-01-17 07:00:52 +00004227 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004228 }
Chris Lattner56ecde32008-01-16 06:57:07 +00004229 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4230 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4231 case Legal:
4232 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner5872a362008-01-17 07:00:52 +00004233 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00004234 break;
4235 case Promote:
4236 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004237 Result = DAG.getNode(ISD::FP_ROUND, dl, Op.getValueType(), Tmp1,
Chris Lattner5872a362008-01-17 07:00:52 +00004238 Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00004239 break;
4240 }
4241 break;
Chris Lattner5872a362008-01-17 07:00:52 +00004242 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004243 case ISD::ANY_EXTEND:
4244 case ISD::ZERO_EXTEND:
4245 case ISD::SIGN_EXTEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004246 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4247 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4248 case Legal:
4249 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michelac54d002008-04-30 00:26:38 +00004250 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michelac7091c2008-02-15 23:05:48 +00004251 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4252 TargetLowering::Custom) {
Scott Michelac54d002008-04-30 00:26:38 +00004253 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004254 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelac7091c2008-02-15 23:05:48 +00004255 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004256 break;
4257 case Promote:
4258 switch (Node->getOpcode()) {
4259 case ISD::ANY_EXTEND:
4260 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004261 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004262 break;
4263 case ISD::ZERO_EXTEND:
4264 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004265 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4266 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004267 Node->getOperand(0).getValueType());
4268 break;
4269 case ISD::SIGN_EXTEND:
4270 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004271 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4272 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004273 Result,
4274 DAG.getValueType(Node->getOperand(0).getValueType()));
4275 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004276 }
4277 }
4278 break;
4279 case ISD::FP_ROUND_INREG:
4280 case ISD::SIGN_EXTEND_INREG: {
4281 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004282 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004283
4284 // If this operation is not supported, convert it to a shl/shr or load/store
4285 // pair.
4286 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4287 default: assert(0 && "This action not supported for this op yet!");
4288 case TargetLowering::Legal:
4289 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
4290 break;
4291 case TargetLowering::Expand:
4292 // If this is an integer extend and shifts are supported, do that.
4293 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
4294 // NOTE: we could fall back on load/store here too for targets without
4295 // SAR. However, it is doubtful that any exist.
Duncan Sands92c43912008-06-06 12:08:01 +00004296 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4297 ExtraVT.getSizeInBits();
Dan Gohman8181bd12008-07-27 21:46:04 +00004298 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004299 Result = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004300 Node->getOperand(0), ShiftCst);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004301 Result = DAG.getNode(ISD::SRA, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004302 Result, ShiftCst);
4303 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
4304 // The only way we can lower this is to turn it into a TRUNCSTORE,
4305 // EXTLOAD pair, targetting a temporary location (a stack slot).
4306
4307 // NOTE: there is a choice here between constantly creating new stack
4308 // slots and always reusing the same one. We currently always create
4309 // new ones, as reuse may inhibit scheduling.
Scott Michel91099d62009-02-17 22:15:04 +00004310 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00004311 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004312 } else {
4313 assert(0 && "Unknown op");
4314 }
4315 break;
4316 }
4317 break;
4318 }
Duncan Sands38947cd2007-07-27 12:58:54 +00004319 case ISD::TRAMPOLINE: {
Dan Gohman8181bd12008-07-27 21:46:04 +00004320 SDValue Ops[6];
Duncan Sands38947cd2007-07-27 12:58:54 +00004321 for (unsigned i = 0; i != 6; ++i)
4322 Ops[i] = LegalizeOp(Node->getOperand(i));
4323 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4324 // The only option for this node is to custom lower it.
4325 Result = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004326 assert(Result.getNode() && "Should always custom lower!");
Duncan Sands7407a9f2007-09-11 14:10:23 +00004327
4328 // Since trampoline produces two values, make sure to remember that we
4329 // legalized both of them.
4330 Tmp1 = LegalizeOp(Result.getValue(1));
4331 Result = LegalizeOp(Result);
Dan Gohman8181bd12008-07-27 21:46:04 +00004332 AddLegalizedOperand(SDValue(Node, 0), Result);
4333 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00004334 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands38947cd2007-07-27 12:58:54 +00004335 }
Dan Gohmane8e4a412008-05-14 00:43:10 +00004336 case ISD::FLT_ROUNDS_: {
Duncan Sands92c43912008-06-06 12:08:01 +00004337 MVT VT = Node->getValueType(0);
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004338 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4339 default: assert(0 && "This action not supported for this op yet!");
4340 case TargetLowering::Custom:
4341 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004342 if (Result.getNode()) break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004343 // Fall Thru
4344 case TargetLowering::Legal:
4345 // If this operation is not supported, lower it to constant 1
4346 Result = DAG.getConstant(1, VT);
4347 break;
4348 }
Dan Gohmane09dc8c2008-05-12 16:07:15 +00004349 break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004350 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00004351 case ISD::TRAP: {
Duncan Sands92c43912008-06-06 12:08:01 +00004352 MVT VT = Node->getValueType(0);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004353 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4354 default: assert(0 && "This action not supported for this op yet!");
Chris Lattnere99bbb72008-01-15 21:58:08 +00004355 case TargetLowering::Legal:
4356 Tmp1 = LegalizeOp(Node->getOperand(0));
4357 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4358 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004359 case TargetLowering::Custom:
4360 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004361 if (Result.getNode()) break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004362 // Fall Thru
Chris Lattnere99bbb72008-01-15 21:58:08 +00004363 case TargetLowering::Expand:
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004364 // If this operation is not supported, lower it to 'abort()' call
Chris Lattnere99bbb72008-01-15 21:58:08 +00004365 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004366 TargetLowering::ArgListTy Args;
Bob Wilson2e958a42009-04-10 18:48:47 +00004367 std::pair<SDValue, SDValue> CallResult =
Duncan Sandsead972e2008-02-14 17:28:50 +00004368 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen67cc9b62008-09-26 19:31:26 +00004369 false, false, false, false, CallingConv::C, false,
Bill Wendlingfef06052008-09-16 21:48:12 +00004370 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesenca6237b2009-01-30 23:10:59 +00004371 Args, DAG, dl);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004372 Result = CallResult.second;
4373 break;
4374 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00004375 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004376 }
Bill Wendling913dcf32008-11-22 00:22:52 +00004377
Bill Wendling7e04be62008-12-09 22:08:41 +00004378 case ISD::SADDO:
4379 case ISD::SSUBO: {
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004380 MVT VT = Node->getValueType(0);
4381 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4382 default: assert(0 && "This action not supported for this op yet!");
4383 case TargetLowering::Custom:
4384 Result = TLI.LowerOperation(Op, DAG);
4385 if (Result.getNode()) break;
4386 // FALLTHROUGH
4387 case TargetLowering::Legal: {
4388 SDValue LHS = LegalizeOp(Node->getOperand(0));
4389 SDValue RHS = LegalizeOp(Node->getOperand(1));
4390
Scott Michel91099d62009-02-17 22:15:04 +00004391 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004392 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling7e04be62008-12-09 22:08:41 +00004393 LHS, RHS);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004394 MVT OType = Node->getValueType(1);
4395
Bill Wendlingc65e6e42008-11-25 08:19:22 +00004396 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004397
Bill Wendlingcf4de122008-11-25 19:40:17 +00004398 // LHSSign -> LHS >= 0
4399 // RHSSign -> RHS >= 0
4400 // SumSign -> Sum >= 0
4401 //
Bill Wendling7e04be62008-12-09 22:08:41 +00004402 // Add:
Bill Wendlingcf4de122008-11-25 19:40:17 +00004403 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling7e04be62008-12-09 22:08:41 +00004404 // Sub:
4405 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendlingcf4de122008-11-25 19:40:17 +00004406 //
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004407 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
4408 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
Scott Michel91099d62009-02-17 22:15:04 +00004409 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
4410 Node->getOpcode() == ISD::SADDO ?
Bill Wendling7e04be62008-12-09 22:08:41 +00004411 ISD::SETEQ : ISD::SETNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004412
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004413 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
4414 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004415
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004416 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004417
4418 MVT ValueVTs[] = { LHS.getValueType(), OType };
4419 SDValue Ops[] = { Sum, Cmp };
4420
Scott Michel91099d62009-02-17 22:15:04 +00004421 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004422 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sands42d7bb82008-12-01 11:41:29 +00004423 &Ops[0], 2);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004424 SDNode *RNode = Result.getNode();
Dan Gohman3209ac32009-04-15 20:06:30 +00004425 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004426 break;
4427 }
4428 }
4429
4430 break;
4431 }
Bill Wendling7e04be62008-12-09 22:08:41 +00004432 case ISD::UADDO:
4433 case ISD::USUBO: {
Bill Wendling4c134df2008-11-24 19:21:46 +00004434 MVT VT = Node->getValueType(0);
4435 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4436 default: assert(0 && "This action not supported for this op yet!");
4437 case TargetLowering::Custom:
4438 Result = TLI.LowerOperation(Op, DAG);
4439 if (Result.getNode()) break;
4440 // FALLTHROUGH
4441 case TargetLowering::Legal: {
4442 SDValue LHS = LegalizeOp(Node->getOperand(0));
4443 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling913dcf32008-11-22 00:22:52 +00004444
Bill Wendling7e04be62008-12-09 22:08:41 +00004445 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004446 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling7e04be62008-12-09 22:08:41 +00004447 LHS, RHS);
Bill Wendling4c134df2008-11-24 19:21:46 +00004448 MVT OType = Node->getValueType(1);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004449 SDValue Cmp = DAG.getSetCC(dl, OType, Sum, LHS,
Scott Michel91099d62009-02-17 22:15:04 +00004450 Node->getOpcode () == ISD::UADDO ?
Bill Wendling7e04be62008-12-09 22:08:41 +00004451 ISD::SETULT : ISD::SETUGT);
Bill Wendling913dcf32008-11-22 00:22:52 +00004452
Bill Wendling4c134df2008-11-24 19:21:46 +00004453 MVT ValueVTs[] = { LHS.getValueType(), OType };
4454 SDValue Ops[] = { Sum, Cmp };
Bill Wendling913dcf32008-11-22 00:22:52 +00004455
Scott Michel91099d62009-02-17 22:15:04 +00004456 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004457 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sands42d7bb82008-12-01 11:41:29 +00004458 &Ops[0], 2);
Bill Wendling4c134df2008-11-24 19:21:46 +00004459 SDNode *RNode = Result.getNode();
Dan Gohman3209ac32009-04-15 20:06:30 +00004460 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendling4c134df2008-11-24 19:21:46 +00004461 break;
4462 }
4463 }
4464
Bill Wendling913dcf32008-11-22 00:22:52 +00004465 break;
4466 }
Bill Wendling7e04be62008-12-09 22:08:41 +00004467 case ISD::SMULO:
4468 case ISD::UMULO: {
4469 MVT VT = Node->getValueType(0);
4470 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4471 default: assert(0 && "This action is not supported at all!");
4472 case TargetLowering::Custom:
4473 Result = TLI.LowerOperation(Op, DAG);
4474 if (Result.getNode()) break;
4475 // Fall Thru
4476 case TargetLowering::Legal:
4477 // FIXME: According to Hacker's Delight, this can be implemented in
4478 // target independent lowering, but it would be inefficient, since it
Bill Wendling35f1a9d2008-12-10 02:01:32 +00004479 // requires a division + a branch.
Scott Michel91099d62009-02-17 22:15:04 +00004480 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
Bill Wendling7e04be62008-12-09 22:08:41 +00004481 break;
4482 }
4483 break;
4484 }
4485
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004486 }
Scott Michel91099d62009-02-17 22:15:04 +00004487
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004488 assert(Result.getValueType() == Op.getValueType() &&
4489 "Bad legalization!");
Scott Michel91099d62009-02-17 22:15:04 +00004490
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004491 // Make sure that the generated code is itself legal.
4492 if (Result != Op)
4493 Result = LegalizeOp(Result);
4494
4495 // Note that LegalizeOp may be reentered even from single-use nodes, which
4496 // means that we always must cache transformed nodes.
4497 AddLegalizedOperand(Op, Result);
4498 return Result;
4499}
4500
4501/// PromoteOp - Given an operation that produces a value in an invalid type,
4502/// promote it to compute the value into a larger type. The produced value will
4503/// have the correct bits for the low portion of the register, but no guarantee
4504/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +00004505SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00004506 MVT VT = Op.getValueType();
4507 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004508 assert(getTypeAction(VT) == Promote &&
4509 "Caller should expand or legalize operands that are not promotable!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004510 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004511 "Cannot promote to smaller type!");
4512
Dan Gohman8181bd12008-07-27 21:46:04 +00004513 SDValue Tmp1, Tmp2, Tmp3;
4514 SDValue Result;
Gabor Greif1c80d112008-08-28 21:40:38 +00004515 SDNode *Node = Op.getNode();
Dale Johannesen82b5b722009-02-02 22:12:50 +00004516 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004517
Dan Gohman8181bd12008-07-27 21:46:04 +00004518 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004519 if (I != PromotedNodes.end()) return I->second;
4520
4521 switch (Node->getOpcode()) {
4522 case ISD::CopyFromReg:
4523 assert(0 && "CopyFromReg must be legal!");
4524 default:
4525#ifndef NDEBUG
4526 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
4527#endif
4528 assert(0 && "Do not know how to promote this operator!");
4529 abort();
4530 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004531 Result = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004532 break;
4533 case ISD::Constant:
4534 if (VT != MVT::i1)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004535 Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004536 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00004537 Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004538 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4539 break;
4540 case ISD::ConstantFP:
Dale Johannesen82b5b722009-02-02 22:12:50 +00004541 Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004542 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4543 break;
4544
Duncan Sands4a361272009-01-01 15:52:00 +00004545 case ISD::SETCC: {
4546 MVT VT0 = Node->getOperand(0).getValueType();
4547 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004548 && "SetCC type is not legal??");
Dale Johannesen82b5b722009-02-02 22:12:50 +00004549 Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0),
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004550 Node->getOperand(0), Node->getOperand(1),
4551 Node->getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004552 break;
Duncan Sands4a361272009-01-01 15:52:00 +00004553 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004554 case ISD::TRUNCATE:
4555 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4556 case Legal:
4557 Result = LegalizeOp(Node->getOperand(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00004558 assert(Result.getValueType().bitsGE(NVT) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004559 "This truncation doesn't make sense!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004560 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dale Johannesen82b5b722009-02-02 22:12:50 +00004561 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004562 break;
4563 case Promote:
4564 // The truncation is not required, because we don't guarantee anything
4565 // about high bits anyway.
4566 Result = PromoteOp(Node->getOperand(0));
4567 break;
4568 case Expand:
4569 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4570 // Truncate the low part of the expanded value to the result type
Dale Johannesen82b5b722009-02-02 22:12:50 +00004571 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004572 }
4573 break;
4574 case ISD::SIGN_EXTEND:
4575 case ISD::ZERO_EXTEND:
4576 case ISD::ANY_EXTEND:
4577 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4578 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4579 case Legal:
4580 // Input is legal? Just do extend all the way to the larger type.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004581 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004582 break;
4583 case Promote:
4584 // Promote the reg if it's smaller.
4585 Result = PromoteOp(Node->getOperand(0));
4586 // The high bits are not guaranteed to be anything. Insert an extend.
4587 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004588 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004589 DAG.getValueType(Node->getOperand(0).getValueType()));
4590 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004591 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004592 Node->getOperand(0).getValueType());
4593 break;
4594 }
4595 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004596 case ISD::CONVERT_RNDSAT: {
4597 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4598 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4599 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4600 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4601 "can only promote integers");
Dale Johannesen564036c2009-02-04 00:13:36 +00004602 Result = DAG.getConvertRndSat(NVT, dl, Node->getOperand(0),
Mon P Wang73d31542008-11-10 20:54:11 +00004603 Node->getOperand(1), Node->getOperand(2),
4604 Node->getOperand(3), Node->getOperand(4),
4605 CvtCode);
4606 break;
4607
4608 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004609 case ISD::BIT_CONVERT:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004610 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00004611 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004612 Result = PromoteOp(Result);
4613 break;
Scott Michel91099d62009-02-17 22:15:04 +00004614
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004615 case ISD::FP_EXTEND:
4616 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4617 case ISD::FP_ROUND:
4618 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4619 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4620 case Promote: assert(0 && "Unreachable with 2 FP types!");
4621 case Legal:
Chris Lattner5872a362008-01-17 07:00:52 +00004622 if (Node->getConstantOperandVal(1) == 0) {
4623 // Input is legal? Do an FP_ROUND_INREG.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004624 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0),
Chris Lattner5872a362008-01-17 07:00:52 +00004625 DAG.getValueType(VT));
4626 } else {
4627 // Just remove the truncate, it isn't affecting the value.
Scott Michel91099d62009-02-17 22:15:04 +00004628 Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0),
Chris Lattner5872a362008-01-17 07:00:52 +00004629 Node->getOperand(1));
4630 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004631 break;
4632 }
4633 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004634 case ISD::SINT_TO_FP:
4635 case ISD::UINT_TO_FP:
4636 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4637 case Legal:
4638 // No extra round required here.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004639 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004640 break;
4641
4642 case Promote:
4643 Result = PromoteOp(Node->getOperand(0));
4644 if (Node->getOpcode() == ISD::SINT_TO_FP)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004645 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004646 Result,
4647 DAG.getValueType(Node->getOperand(0).getValueType()));
4648 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00004649 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004650 Node->getOperand(0).getValueType());
4651 // No extra round required here.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004652 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004653 break;
4654 case Expand:
4655 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00004656 Node->getOperand(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004657 // Round if we cannot tolerate excess precision.
4658 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004659 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004660 DAG.getValueType(VT));
4661 break;
4662 }
4663 break;
4664
4665 case ISD::SIGN_EXTEND_INREG:
4666 Result = PromoteOp(Node->getOperand(0));
Scott Michel91099d62009-02-17 22:15:04 +00004667 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004668 Node->getOperand(1));
4669 break;
4670 case ISD::FP_TO_SINT:
4671 case ISD::FP_TO_UINT:
4672 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4673 case Legal:
4674 case Expand:
4675 Tmp1 = Node->getOperand(0);
4676 break;
4677 case Promote:
4678 // The input result is prerounded, so we don't have to do anything
4679 // special.
4680 Tmp1 = PromoteOp(Node->getOperand(0));
4681 break;
4682 }
4683 // If we're promoting a UINT to a larger size, check to see if the new node
4684 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4685 // we can use that instead. This allows us to generate better code for
4686 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4687 // legal, such as PowerPC.
Scott Michel91099d62009-02-17 22:15:04 +00004688 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00004689 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4690 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004691 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Dale Johannesen82b5b722009-02-02 22:12:50 +00004692 Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004693 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00004694 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004695 }
4696 break;
4697
4698 case ISD::FABS:
4699 case ISD::FNEG:
4700 Tmp1 = PromoteOp(Node->getOperand(0));
4701 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004702 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004703 // NOTE: we do not have to do any extra rounding here for
4704 // NoExcessFPPrecision, because we know the input will have the appropriate
4705 // precision, and these operations don't modify precision at all.
4706 break;
4707
Dale Johannesen92b33082008-09-04 00:47:13 +00004708 case ISD::FLOG:
4709 case ISD::FLOG2:
4710 case ISD::FLOG10:
4711 case ISD::FEXP:
4712 case ISD::FEXP2:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004713 case ISD::FSQRT:
4714 case ISD::FSIN:
4715 case ISD::FCOS:
Dan Gohmanb2158232008-08-21 18:38:14 +00004716 case ISD::FTRUNC:
4717 case ISD::FFLOOR:
4718 case ISD::FCEIL:
4719 case ISD::FRINT:
4720 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004721 Tmp1 = PromoteOp(Node->getOperand(0));
4722 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004723 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004724 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004725 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004726 DAG.getValueType(VT));
4727 break;
4728
Evan Cheng1fac6952008-09-09 23:35:53 +00004729 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004730 case ISD::FPOWI: {
Evan Cheng1fac6952008-09-09 23:35:53 +00004731 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004732 // directly as well, which may be better.
4733 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng1fac6952008-09-09 23:35:53 +00004734 Tmp2 = Node->getOperand(1);
4735 if (Node->getOpcode() == ISD::FPOW)
4736 Tmp2 = PromoteOp(Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004737 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004738 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004739 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004740 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004741 DAG.getValueType(VT));
4742 break;
4743 }
Scott Michel91099d62009-02-17 22:15:04 +00004744
Dan Gohmanbebba8d2008-12-23 21:37:04 +00004745 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004746 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004747 Tmp2 = PromoteOp(Node->getOperand(2));
4748 Tmp3 = PromoteOp(Node->getOperand(3));
Scott Michel91099d62009-02-17 22:15:04 +00004749 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
4750 AtomNode->getChain(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004751 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004752 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004753 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004754 // Remember that we legalized the chain.
4755 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4756 break;
4757 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00004758 case ISD::ATOMIC_LOAD_ADD:
4759 case ISD::ATOMIC_LOAD_SUB:
4760 case ISD::ATOMIC_LOAD_AND:
4761 case ISD::ATOMIC_LOAD_OR:
4762 case ISD::ATOMIC_LOAD_XOR:
4763 case ISD::ATOMIC_LOAD_NAND:
4764 case ISD::ATOMIC_LOAD_MIN:
4765 case ISD::ATOMIC_LOAD_MAX:
4766 case ISD::ATOMIC_LOAD_UMIN:
4767 case ISD::ATOMIC_LOAD_UMAX:
4768 case ISD::ATOMIC_SWAP: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004769 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004770 Tmp2 = PromoteOp(Node->getOperand(2));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004771 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Scott Michel91099d62009-02-17 22:15:04 +00004772 AtomNode->getChain(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004773 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004774 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004775 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004776 // Remember that we legalized the chain.
4777 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4778 break;
4779 }
4780
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004781 case ISD::AND:
4782 case ISD::OR:
4783 case ISD::XOR:
4784 case ISD::ADD:
4785 case ISD::SUB:
4786 case ISD::MUL:
4787 // The input may have strange things in the top bits of the registers, but
4788 // these operations don't care. They may have weird bits going out, but
4789 // that too is okay if they are integer operations.
4790 Tmp1 = PromoteOp(Node->getOperand(0));
4791 Tmp2 = PromoteOp(Node->getOperand(1));
4792 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004793 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004794 break;
4795 case ISD::FADD:
4796 case ISD::FSUB:
4797 case ISD::FMUL:
4798 Tmp1 = PromoteOp(Node->getOperand(0));
4799 Tmp2 = PromoteOp(Node->getOperand(1));
4800 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004801 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00004802
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004803 // Floating point operations will give excess precision that we may not be
4804 // able to tolerate. If we DO allow excess precision, just leave it,
4805 // otherwise excise it.
4806 // FIXME: Why would we need to round FP ops more than integer ones?
4807 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
4808 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004809 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004810 DAG.getValueType(VT));
4811 break;
4812
4813 case ISD::SDIV:
4814 case ISD::SREM:
4815 // These operators require that their input be sign extended.
4816 Tmp1 = PromoteOp(Node->getOperand(0));
4817 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004818 if (NVT.isInteger()) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00004819 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004820 DAG.getValueType(VT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004821 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004822 DAG.getValueType(VT));
4823 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00004824 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004825
4826 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands92c43912008-06-06 12:08:01 +00004827 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004828 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004829 DAG.getValueType(VT));
4830 break;
4831 case ISD::FDIV:
4832 case ISD::FREM:
4833 case ISD::FCOPYSIGN:
4834 // These operators require that their input be fp extended.
4835 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004836 case Expand: assert(0 && "not implemented");
4837 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4838 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004839 }
4840 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004841 case Expand: assert(0 && "not implemented");
4842 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4843 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004844 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00004845 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00004846
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004847 // Perform FP_ROUND: this is probably overly pessimistic.
4848 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004849 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004850 DAG.getValueType(VT));
4851 break;
4852
4853 case ISD::UDIV:
4854 case ISD::UREM:
4855 // These operators require that their input be zero extended.
4856 Tmp1 = PromoteOp(Node->getOperand(0));
4857 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004858 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dale Johannesen82b5b722009-02-02 22:12:50 +00004859 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4860 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
4861 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004862 break;
4863
4864 case ISD::SHL:
4865 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004866 Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004867 break;
4868 case ISD::SRA:
4869 // The input value must be properly sign extended.
4870 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004871 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004872 DAG.getValueType(VT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004873 Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004874 break;
4875 case ISD::SRL:
4876 // The input value must be properly zero extended.
4877 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004878 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4879 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004880 break;
4881
4882 case ISD::VAARG:
4883 Tmp1 = Node->getOperand(0); // Get the chain.
4884 Tmp2 = Node->getOperand(1); // Get the pointer.
4885 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
Dale Johannesen564036c2009-02-04 00:13:36 +00004886 Tmp3 = DAG.getVAArg(VT, dl, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sandsac496a12008-07-04 11:47:58 +00004887 Result = TLI.LowerOperation(Tmp3, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004888 } else {
Dan Gohman12a9c082008-02-06 22:27:42 +00004889 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesen564036c2009-02-04 00:13:36 +00004890 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004891 // Increment the pointer, VAList, to the next vaarg
Scott Michel91099d62009-02-17 22:15:04 +00004892 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sands92c43912008-06-06 12:08:01 +00004893 DAG.getConstant(VT.getSizeInBits()/8,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004894 TLI.getPointerTy()));
4895 // Store the incremented VAList to the legalized pointer
Dale Johannesen82b5b722009-02-02 22:12:50 +00004896 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004897 // Load the actual argument out of the pointer VAList
Dale Johannesen82b5b722009-02-02 22:12:50 +00004898 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004899 }
4900 // Remember that we legalized the chain.
4901 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4902 break;
4903
4904 case ISD::LOAD: {
4905 LoadSDNode *LD = cast<LoadSDNode>(Node);
4906 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4907 ? ISD::EXTLOAD : LD->getExtensionType();
Dale Johannesen82b5b722009-02-02 22:12:50 +00004908 Result = DAG.getExtLoad(ExtType, dl, NVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004909 LD->getChain(), LD->getBasePtr(),
4910 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004911 LD->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004912 LD->isVolatile(),
4913 LD->getAlignment());
4914 // Remember that we legalized the chain.
4915 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4916 break;
4917 }
Scott Michel67224b22008-06-02 22:18:03 +00004918 case ISD::SELECT: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004919 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4920 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel67224b22008-06-02 22:18:03 +00004921
Duncan Sands92c43912008-06-06 12:08:01 +00004922 MVT VT2 = Tmp2.getValueType();
Scott Michel67224b22008-06-02 22:18:03 +00004923 assert(VT2 == Tmp3.getValueType()
Scott Michel7b54de02008-06-03 19:13:20 +00004924 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4925 // Ensure that the resulting node is at least the same size as the operands'
4926 // value types, because we cannot assume that TLI.getSetCCValueType() is
4927 // constant.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004928 Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004929 break;
Scott Michel67224b22008-06-02 22:18:03 +00004930 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004931 case ISD::SELECT_CC:
4932 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4933 Tmp3 = PromoteOp(Node->getOperand(3)); // False
Dale Johannesen82b5b722009-02-02 22:12:50 +00004934 Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004935 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
4936 break;
4937 case ISD::BSWAP:
4938 Tmp1 = Node->getOperand(0);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004939 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
4940 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4941 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004942 DAG.getConstant(NVT.getSizeInBits() -
4943 VT.getSizeInBits(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004944 TLI.getShiftAmountTy()));
4945 break;
4946 case ISD::CTPOP:
4947 case ISD::CTTZ:
4948 case ISD::CTLZ:
4949 // Zero extend the argument
Dale Johannesen82b5b722009-02-02 22:12:50 +00004950 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004951 // Perform the larger operation, then subtract if needed.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004952 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004953 switch(Node->getOpcode()) {
4954 case ISD::CTPOP:
4955 Result = Tmp1;
4956 break;
4957 case ISD::CTTZ:
4958 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004959 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004960 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004961 ISD::SETEQ);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004962 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00004963 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004964 break;
4965 case ISD::CTLZ:
4966 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00004967 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004968 DAG.getConstant(NVT.getSizeInBits() -
4969 VT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004970 break;
4971 }
4972 break;
4973 case ISD::EXTRACT_SUBVECTOR:
4974 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
4975 break;
4976 case ISD::EXTRACT_VECTOR_ELT:
4977 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4978 break;
4979 }
4980
Gabor Greif1c80d112008-08-28 21:40:38 +00004981 assert(Result.getNode() && "Didn't set a result!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004982
4983 // Make sure the result is itself legal.
4984 Result = LegalizeOp(Result);
Scott Michel91099d62009-02-17 22:15:04 +00004985
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004986 // Remember that we promoted this!
4987 AddPromotedOperand(Op, Result);
4988 return Result;
4989}
4990
4991/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4992/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4993/// based on the vector type. The return type of this matches the element type
4994/// of the vector, which may not be legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00004995SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004996 // We know that operand #0 is the Vec vector. If the index is a constant
4997 // or if the invec is a supported hardware type, we can use it. Otherwise,
4998 // lower to a store then an indexed load.
Dan Gohman8181bd12008-07-27 21:46:04 +00004999 SDValue Vec = Op.getOperand(0);
5000 SDValue Idx = Op.getOperand(1);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005001 DebugLoc dl = Op.getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00005002
Duncan Sands92c43912008-06-06 12:08:01 +00005003 MVT TVT = Vec.getValueType();
5004 unsigned NumElems = TVT.getVectorNumElements();
Scott Michel91099d62009-02-17 22:15:04 +00005005
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005006 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
5007 default: assert(0 && "This action is not supported yet!");
5008 case TargetLowering::Custom: {
5009 Vec = LegalizeOp(Vec);
5010 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005011 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005012 if (Tmp3.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005013 return Tmp3;
5014 break;
5015 }
5016 case TargetLowering::Legal:
5017 if (isTypeLegal(TVT)) {
5018 Vec = LegalizeOp(Vec);
5019 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lambcc021a02007-07-26 03:33:13 +00005020 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005021 }
5022 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00005023 case TargetLowering::Promote:
5024 assert(TVT.isVector() && "not vector type");
5025 // fall thru to expand since vectors are by default are promote
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005026 case TargetLowering::Expand:
5027 break;
5028 }
5029
5030 if (NumElems == 1) {
5031 // This must be an access of the only element. Return it.
5032 Op = ScalarizeVectorOp(Vec);
5033 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman2b10fde2008-01-29 02:24:00 +00005034 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005035 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005036 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005037 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005038 if (CIdx->getZExtValue() < NumLoElts) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005039 Vec = Lo;
5040 } else {
5041 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005042 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005043 Idx.getValueType());
5044 }
Scott Michel91099d62009-02-17 22:15:04 +00005045
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005046 // It's now an extract from the appropriate high or low part. Recurse.
5047 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
5048 Op = ExpandEXTRACT_VECTOR_ELT(Op);
5049 } else {
5050 // Store the value to a temporary stack slot, then LOAD the scalar
5051 // element back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00005052 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dale Johannesen352c47e2009-02-02 20:41:04 +00005053 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005054
5055 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +00005056 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dale Johannesen352c47e2009-02-02 20:41:04 +00005057 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005058 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005059
Duncan Sandsec142ee2008-06-08 20:54:56 +00005060 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Dale Johannesen352c47e2009-02-02 20:41:04 +00005061 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005062 else
Dale Johannesen352c47e2009-02-02 20:41:04 +00005063 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005064
Dale Johannesen352c47e2009-02-02 20:41:04 +00005065 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005066
Dale Johannesen352c47e2009-02-02 20:41:04 +00005067 Op = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005068 }
5069 return Op;
5070}
5071
5072/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
5073/// we assume the operation can be split if it is not already legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00005074SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005075 // We know that operand #0 is the Vec vector. For now we assume the index
5076 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman8181bd12008-07-27 21:46:04 +00005077 SDValue Vec = Op.getOperand(0);
5078 SDValue Idx = LegalizeOp(Op.getOperand(1));
Scott Michel91099d62009-02-17 22:15:04 +00005079
Duncan Sands92c43912008-06-06 12:08:01 +00005080 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Scott Michel91099d62009-02-17 22:15:04 +00005081
Duncan Sands92c43912008-06-06 12:08:01 +00005082 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005083 // This must be an access of the desired vector length. Return it.
5084 return Vec;
5085 }
5086
5087 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005088 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005089 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005090 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005091 Vec = Lo;
5092 } else {
5093 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005094 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5095 Idx.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005096 }
Scott Michel91099d62009-02-17 22:15:04 +00005097
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005098 // It's now an extract from the appropriate high or low part. Recurse.
5099 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
5100 return ExpandEXTRACT_SUBVECTOR(Op);
5101}
5102
5103/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5104/// with condition CC on the current target. This usually involves legalizing
5105/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5106/// there may be no choice but to create a new SetCC node to represent the
5107/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman8181bd12008-07-27 21:46:04 +00005108/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5109void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5110 SDValue &RHS,
Dale Johannesen352c47e2009-02-02 20:41:04 +00005111 SDValue &CC,
5112 DebugLoc dl) {
Scott Michel91099d62009-02-17 22:15:04 +00005113 SDValue Tmp1, Tmp2, Tmp3, Result;
5114
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005115 switch (getTypeAction(LHS.getValueType())) {
5116 case Legal:
5117 Tmp1 = LegalizeOp(LHS); // LHS
5118 Tmp2 = LegalizeOp(RHS); // RHS
5119 break;
5120 case Promote:
5121 Tmp1 = PromoteOp(LHS); // LHS
5122 Tmp2 = PromoteOp(RHS); // RHS
5123
5124 // If this is an FP compare, the operands have already been extended.
Duncan Sands92c43912008-06-06 12:08:01 +00005125 if (LHS.getValueType().isInteger()) {
5126 MVT VT = LHS.getValueType();
5127 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005128
5129 // Otherwise, we have to insert explicit sign or zero extends. Note
5130 // that we could insert sign extends for ALL conditions, but zero extend
5131 // is cheaper on many machines (an AND instead of two shifts), so prefer
5132 // it.
5133 switch (cast<CondCodeSDNode>(CC)->get()) {
5134 default: assert(0 && "Unknown integer comparison!");
5135 case ISD::SETEQ:
5136 case ISD::SETNE:
5137 case ISD::SETUGE:
5138 case ISD::SETUGT:
5139 case ISD::SETULE:
5140 case ISD::SETULT:
5141 // ALL of these operations will work if we either sign or zero extend
5142 // the operands (including the unsigned comparisons!). Zero extend is
5143 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005144 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5145 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005146 break;
5147 case ISD::SETGE:
5148 case ISD::SETGT:
5149 case ISD::SETLT:
5150 case ISD::SETLE:
Dale Johannesen352c47e2009-02-02 20:41:04 +00005151 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005152 DAG.getValueType(VT));
Dale Johannesen352c47e2009-02-02 20:41:04 +00005153 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005154 DAG.getValueType(VT));
Evan Chengd901b662008-10-13 18:46:18 +00005155 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5156 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005157 break;
5158 }
5159 }
5160 break;
5161 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00005162 MVT VT = LHS.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005163 if (VT == MVT::f32 || VT == MVT::f64) {
5164 // Expand into one or more soft-fp libcall(s).
Evan Cheng24108632008-07-01 21:35:46 +00005165 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005166 switch (cast<CondCodeSDNode>(CC)->get()) {
5167 case ISD::SETEQ:
5168 case ISD::SETOEQ:
5169 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
5170 break;
5171 case ISD::SETNE:
5172 case ISD::SETUNE:
5173 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
5174 break;
5175 case ISD::SETGE:
5176 case ISD::SETOGE:
5177 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
5178 break;
5179 case ISD::SETLT:
5180 case ISD::SETOLT:
5181 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5182 break;
5183 case ISD::SETLE:
5184 case ISD::SETOLE:
5185 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
5186 break;
5187 case ISD::SETGT:
5188 case ISD::SETOGT:
5189 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
5190 break;
5191 case ISD::SETUO:
5192 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5193 break;
5194 case ISD::SETO:
5195 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
5196 break;
5197 default:
5198 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5199 switch (cast<CondCodeSDNode>(CC)->get()) {
5200 case ISD::SETONE:
5201 // SETONE = SETOLT | SETOGT
5202 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5203 // Fallthrough
5204 case ISD::SETUGT:
5205 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
5206 break;
5207 case ISD::SETUGE:
5208 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
5209 break;
5210 case ISD::SETULT:
5211 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5212 break;
5213 case ISD::SETULE:
5214 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
5215 break;
5216 case ISD::SETUEQ:
5217 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
5218 break;
5219 default: assert(0 && "Unsupported FP setcc!");
5220 }
5221 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00005222
Dan Gohman8181bd12008-07-27 21:46:04 +00005223 SDValue Dummy;
5224 SDValue Ops[2] = { LHS, RHS };
Dale Johannesen352c47e2009-02-02 20:41:04 +00005225 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005226 false /*sign irrelevant*/, Dummy);
5227 Tmp2 = DAG.getConstant(0, MVT::i32);
5228 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
5229 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesen352c47e2009-02-02 20:41:04 +00005230 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005231 TLI.getSetCCResultType(Tmp1.getValueType()),
5232 Tmp1, Tmp2, CC);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005233 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005234 false /*sign irrelevant*/, Dummy);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005235 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005236 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5237 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesen352c47e2009-02-02 20:41:04 +00005238 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman8181bd12008-07-27 21:46:04 +00005239 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005240 }
Evan Cheng18a1ab12008-07-07 07:18:09 +00005241 LHS = LegalizeOp(Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005242 RHS = Tmp2;
5243 return;
5244 }
5245
Dan Gohman8181bd12008-07-27 21:46:04 +00005246 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005247 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen472d15d2007-10-06 01:24:11 +00005248 ExpandOp(RHS, RHSLo, RHSHi);
5249 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5250
5251 if (VT==MVT::ppcf128) {
5252 // FIXME: This generated code sucks. We want to generate
Dale Johannesen26317b62008-09-12 00:30:56 +00005253 // FCMPU crN, hi1, hi2
Dale Johannesen472d15d2007-10-06 01:24:11 +00005254 // BNE crN, L:
Dale Johannesen26317b62008-09-12 00:30:56 +00005255 // FCMPU crN, lo1, lo2
Dale Johannesen472d15d2007-10-06 01:24:11 +00005256 // The following can be improved, but not that much.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005257 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005258 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005259 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005260 LHSLo, RHSLo, CCCode);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005261 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5262 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005263 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005264 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005265 LHSHi, RHSHi, CCCode);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005266 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5267 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman8181bd12008-07-27 21:46:04 +00005268 Tmp2 = SDValue();
Dale Johannesen472d15d2007-10-06 01:24:11 +00005269 break;
5270 }
5271
5272 switch (CCCode) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005273 case ISD::SETEQ:
5274 case ISD::SETNE:
5275 if (RHSLo == RHSHi)
5276 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5277 if (RHSCST->isAllOnesValue()) {
5278 // Comparison to -1.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005279 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005280 Tmp2 = RHSLo;
5281 break;
5282 }
5283
Dale Johannesen352c47e2009-02-02 20:41:04 +00005284 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5285 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5286 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005287 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5288 break;
5289 default:
5290 // If this is a comparison of the sign bit, just look at the top part.
5291 // X > -1, x < 0
5292 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
Scott Michel91099d62009-02-17 22:15:04 +00005293 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman9d24dc72008-03-13 22:13:53 +00005294 CST->isNullValue()) || // X < 0
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005295 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5296 CST->isAllOnesValue())) { // X > -1
5297 Tmp1 = LHSHi;
5298 Tmp2 = RHSHi;
5299 break;
5300 }
5301
5302 // FIXME: This generated code sucks.
5303 ISD::CondCode LowCC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005304 switch (CCCode) {
5305 default: assert(0 && "Unknown integer setcc!");
5306 case ISD::SETLT:
5307 case ISD::SETULT: LowCC = ISD::SETULT; break;
5308 case ISD::SETGT:
5309 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5310 case ISD::SETLE:
5311 case ISD::SETULE: LowCC = ISD::SETULE; break;
5312 case ISD::SETGE:
5313 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5314 }
5315
5316 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5317 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5318 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5319
5320 // NOTE: on targets without efficient SELECT of bools, we can always use
5321 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
5322 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands4a361272009-01-01 15:52:00 +00005323 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
Dale Johannesen38496eb2009-02-03 00:47:48 +00005324 LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00005325 if (!Tmp1.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005326 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005327 LHSLo, RHSLo, LowCC);
5328 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
Dale Johannesen38496eb2009-02-03 00:47:48 +00005329 LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00005330 if (!Tmp2.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005331 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005332 TLI.getSetCCResultType(LHSHi.getValueType()),
Bob Wilson2e958a42009-04-10 18:48:47 +00005333 LHSHi, RHSHi, CC);
Scott Michel91099d62009-02-17 22:15:04 +00005334
Gabor Greif1c80d112008-08-28 21:40:38 +00005335 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5336 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman9d24dc72008-03-13 22:13:53 +00005337 if ((Tmp1C && Tmp1C->isNullValue()) ||
5338 (Tmp2C && Tmp2C->isNullValue() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005339 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5340 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman9d24dc72008-03-13 22:13:53 +00005341 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005342 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5343 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5344 // low part is known false, returns high part.
5345 // For LE / GE, if high part is known false, ignore the low part.
5346 // For LT / GT, if high part is known true, ignore the low part.
5347 Tmp1 = Tmp2;
Dan Gohman8181bd12008-07-27 21:46:04 +00005348 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005349 } else {
Duncan Sands4a361272009-01-01 15:52:00 +00005350 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5351 LHSHi, RHSHi, ISD::SETEQ, false,
Dale Johannesen38496eb2009-02-03 00:47:48 +00005352 DagCombineInfo, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00005353 if (!Result.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005354 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005355 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005356 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005357 Result, Tmp1, Tmp2));
5358 Tmp1 = Result;
Dan Gohman8181bd12008-07-27 21:46:04 +00005359 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005360 }
5361 }
5362 }
5363 }
5364 LHS = Tmp1;
5365 RHS = Tmp2;
5366}
5367
Evan Cheng71343822008-10-15 02:05:31 +00005368/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5369/// condition code CC on the current target. This routine assumes LHS and rHS
5370/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5371/// illegal condition code into AND / OR of multiple SETCC values.
5372void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5373 SDValue &LHS, SDValue &RHS,
Dale Johannesen352c47e2009-02-02 20:41:04 +00005374 SDValue &CC,
5375 DebugLoc dl) {
Evan Cheng71343822008-10-15 02:05:31 +00005376 MVT OpVT = LHS.getValueType();
5377 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5378 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5379 default: assert(0 && "Unknown condition code action!");
5380 case TargetLowering::Legal:
5381 // Nothing to do.
5382 break;
5383 case TargetLowering::Expand: {
5384 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5385 unsigned Opc = 0;
5386 switch (CCCode) {
5387 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohman2b5b9ca2008-10-21 03:12:54 +00005388 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5389 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5390 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5391 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5392 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5393 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5394 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5395 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5396 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5397 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5398 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5399 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng71343822008-10-15 02:05:31 +00005400 // FIXME: Implement more expansions.
5401 }
5402
Dale Johannesen352c47e2009-02-02 20:41:04 +00005403 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5404 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5405 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng71343822008-10-15 02:05:31 +00005406 RHS = SDValue();
5407 CC = SDValue();
5408 break;
5409 }
5410 }
5411}
5412
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005413/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5414/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5415/// a load from the stack slot to DestVT, extending it if needed.
5416/// The resultant code need not be legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00005417SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5418 MVT SlotVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005419 MVT DestVT,
5420 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005421 // Create the stack frame object.
Bob Wilson2e958a42009-04-10 18:48:47 +00005422 unsigned SrcAlign =
5423 TLI.getTargetData()->getPrefTypeAlignment(SrcOp.getValueType().
5424 getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00005425 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michel91099d62009-02-17 22:15:04 +00005426
Dan Gohman20e37962008-02-11 18:58:42 +00005427 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00005428 int SPFI = StackPtrFI->getIndex();
Dan Gohman8a8251a2009-01-29 21:02:43 +00005429 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5430
Duncan Sands92c43912008-06-06 12:08:01 +00005431 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5432 unsigned SlotSize = SlotVT.getSizeInBits();
5433 unsigned DestSize = DestVT.getSizeInBits();
Bob Wilson2e958a42009-04-10 18:48:47 +00005434 unsigned DestAlign =
5435 TLI.getTargetData()->getPrefTypeAlignment(DestVT.getTypeForMVT());
Scott Michel91099d62009-02-17 22:15:04 +00005436
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005437 // Emit a store to the stack slot. Use a truncstore if the input value is
5438 // later than DestVT.
Dan Gohman8181bd12008-07-27 21:46:04 +00005439 SDValue Store;
Scott Michel91099d62009-02-17 22:15:04 +00005440
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005441 if (SrcSize > SlotSize)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005442 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman8a8251a2009-01-29 21:02:43 +00005443 SV, 0, SlotVT, false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005444 else {
5445 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen82b5b722009-02-02 22:12:50 +00005446 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman8a8251a2009-01-29 21:02:43 +00005447 SV, 0, false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005448 }
Scott Michel91099d62009-02-17 22:15:04 +00005449
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005450 // Result is a load from the stack slot.
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005451 if (SlotSize == DestSize)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005452 return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign);
Scott Michel91099d62009-02-17 22:15:04 +00005453
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005454 assert(SlotSize < DestSize && "Unknown extension!");
Dale Johannesen82b5b722009-02-02 22:12:50 +00005455 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang55854cc2008-07-05 20:40:31 +00005456 false, DestAlign);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005457}
5458
Dan Gohman8181bd12008-07-27 21:46:04 +00005459SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005460 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005461 // Create a vector sized/aligned stack slot, store the value to element #0,
5462 // then load the whole vector back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00005463 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman12a9c082008-02-06 22:27:42 +00005464
Dan Gohman20e37962008-02-11 18:58:42 +00005465 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00005466 int SPFI = StackPtrFI->getIndex();
5467
Duncan Sands6a3a01e2009-04-18 20:16:54 +00005468 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
5469 StackPtr,
5470 PseudoSourceValue::getFixedStack(SPFI), 0,
5471 Node->getValueType(0).getVectorElementType());
Dale Johannesen82b5b722009-02-02 22:12:50 +00005472 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005473 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005474}
5475
5476
5477/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
5478/// support the operation, but do support the resultant vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00005479SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson27b41332009-04-13 20:20:30 +00005480 unsigned NumElems = Node->getNumOperands();
5481 SDValue SplatValue = Node->getOperand(0);
5482 DebugLoc dl = Node->getDebugLoc();
5483 MVT VT = Node->getValueType(0);
5484 MVT OpVT = SplatValue.getValueType();
5485 MVT EltVT = VT.getVectorElementType();
Scott Michel91099d62009-02-17 22:15:04 +00005486
5487 // If the only non-undef value is the low element, turn this into a
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005488 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005489 bool isOnlyLowElement = true;
Scott Michel91099d62009-02-17 22:15:04 +00005490
Dan Gohman8181bd12008-07-27 21:46:04 +00005491 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerd8cee732008-03-09 00:29:42 +00005492 // and use a bitmask instead of a list of elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00005493 std::map<SDValue, std::vector<unsigned> > Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005494 Values[SplatValue].push_back(0);
5495 bool isConstant = true;
5496 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5497 SplatValue.getOpcode() != ISD::UNDEF)
5498 isConstant = false;
Scott Michel91099d62009-02-17 22:15:04 +00005499
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005500 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005501 SDValue V = Node->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005502 Values[V].push_back(i);
5503 if (V.getOpcode() != ISD::UNDEF)
5504 isOnlyLowElement = false;
5505 if (SplatValue != V)
Bob Wilson2e958a42009-04-10 18:48:47 +00005506 SplatValue = SDValue(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005507
5508 // If this isn't a constant element or an undef, we can't use a constant
5509 // pool load.
5510 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5511 V.getOpcode() != ISD::UNDEF)
5512 isConstant = false;
5513 }
Scott Michel91099d62009-02-17 22:15:04 +00005514
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005515 if (isOnlyLowElement) {
5516 // If the low element is an undef too, then this whole things is an undef.
5517 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
Bob Wilson27b41332009-04-13 20:20:30 +00005518 return DAG.getUNDEF(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005519 // Otherwise, turn this into a scalar_to_vector node.
Bob Wilson27b41332009-04-13 20:20:30 +00005520 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005521 }
Scott Michel91099d62009-02-17 22:15:04 +00005522
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005523 // If all elements are constants, create a load from the constant pool.
5524 if (isConstant) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005525 std::vector<Constant*> CV;
5526 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00005527 if (ConstantFPSDNode *V =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005528 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00005529 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michel91099d62009-02-17 22:15:04 +00005530 } else if (ConstantSDNode *V =
Bob Wilson2e958a42009-04-10 18:48:47 +00005531 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00005532 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005533 } else {
5534 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Bob Wilson27b41332009-04-13 20:20:30 +00005535 const Type *OpNTy = OpVT.getTypeForMVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005536 CV.push_back(UndefValue::get(OpNTy));
5537 }
5538 }
5539 Constant *CP = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005540 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +00005541 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen82b5b722009-02-02 22:12:50 +00005542 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00005543 PseudoSourceValue::getConstantPool(), 0,
5544 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005545 }
Scott Michel91099d62009-02-17 22:15:04 +00005546
Gabor Greif1c80d112008-08-28 21:40:38 +00005547 if (SplatValue.getNode()) { // Splat of one value?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005548 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands92c43912008-06-06 12:08:01 +00005549 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman8181bd12008-07-27 21:46:04 +00005550 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5551 std::vector<SDValue> ZeroVec(NumElems, Zero);
Evan Cheng907a2d22009-02-25 22:49:59 +00005552 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Bob Wilson2e958a42009-04-10 18:48:47 +00005553 &ZeroVec[0], ZeroVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005554
5555 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Bob Wilson27b41332009-04-13 20:20:30 +00005556 if (isShuffleLegal(VT, SplatMask)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005557 // Get the splatted value into the low element of a vector register.
Scott Michel91099d62009-02-17 22:15:04 +00005558 SDValue LowValVec =
Bob Wilson27b41332009-04-13 20:20:30 +00005559 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, SplatValue);
Scott Michel91099d62009-02-17 22:15:04 +00005560
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005561 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Bob Wilson27b41332009-04-13 20:20:30 +00005562 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, LowValVec,
5563 DAG.getUNDEF(VT), SplatMask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005564 }
5565 }
Scott Michel91099d62009-02-17 22:15:04 +00005566
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005567 // If there are only two unique elements, we may be able to turn this into a
5568 // vector shuffle.
5569 if (Values.size() == 2) {
Chris Lattnerd8cee732008-03-09 00:29:42 +00005570 // Get the two values in deterministic order.
Dan Gohman8181bd12008-07-27 21:46:04 +00005571 SDValue Val1 = Node->getOperand(1);
5572 SDValue Val2;
5573 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerd8cee732008-03-09 00:29:42 +00005574 if (MI->first != Val1)
5575 Val2 = MI->first;
5576 else
5577 Val2 = (++MI)->first;
Scott Michel91099d62009-02-17 22:15:04 +00005578
Bob Wilson2e958a42009-04-10 18:48:47 +00005579 // If Val1 is an undef, make sure it ends up as Val2, to ensure that our
Chris Lattnerd8cee732008-03-09 00:29:42 +00005580 // vector shuffle has the undef vector on the RHS.
5581 if (Val1.getOpcode() == ISD::UNDEF)
5582 std::swap(Val1, Val2);
Scott Michel91099d62009-02-17 22:15:04 +00005583
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005584 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands92c43912008-06-06 12:08:01 +00005585 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5586 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00005587 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerd8cee732008-03-09 00:29:42 +00005588
5589 // Set elements of the shuffle mask for Val1.
5590 std::vector<unsigned> &Val1Elts = Values[Val1];
5591 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5592 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5593
5594 // Set elements of the shuffle mask for Val2.
5595 std::vector<unsigned> &Val2Elts = Values[Val2];
5596 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5597 if (Val2.getOpcode() != ISD::UNDEF)
5598 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5599 else
Dale Johannesen9bfc0172009-02-06 23:05:02 +00005600 MaskVec[Val2Elts[i]] = DAG.getUNDEF(MaskEltVT);
Scott Michel91099d62009-02-17 22:15:04 +00005601
Evan Cheng907a2d22009-02-25 22:49:59 +00005602 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Bob Wilson2e958a42009-04-10 18:48:47 +00005603 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005604
Chris Lattnerd8cee732008-03-09 00:29:42 +00005605 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Bob Wilson27b41332009-04-13 20:20:30 +00005606 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR, VT) &&
5607 isShuffleLegal(VT, ShuffleMask)) {
5608 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val1);
5609 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val2);
Dan Gohman8181bd12008-07-27 21:46:04 +00005610 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005611
5612 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Bob Wilson27b41332009-04-13 20:20:30 +00005613 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005614 }
5615 }
Scott Michel91099d62009-02-17 22:15:04 +00005616
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005617 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5618 // aligned object on the stack, store each element into it, then load
5619 // the result as a vector.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005620 // Create the stack frame object.
Dan Gohman8181bd12008-07-27 21:46:04 +00005621 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman8a8251a2009-01-29 21:02:43 +00005622 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5623 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5624
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005625 // Emit a store of each element to the stack slot.
Dan Gohman8181bd12008-07-27 21:46:04 +00005626 SmallVector<SDValue, 8> Stores;
Bob Wilson27b41332009-04-13 20:20:30 +00005627 unsigned TypeByteSize = OpVT.getSizeInBits() / 8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005628 // Store (in the right endianness) the elements to memory.
5629 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5630 // Ignore undef elements.
5631 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michel91099d62009-02-17 22:15:04 +00005632
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005633 unsigned Offset = TypeByteSize*i;
Scott Michel91099d62009-02-17 22:15:04 +00005634
Dan Gohman8181bd12008-07-27 21:46:04 +00005635 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dale Johannesen82b5b722009-02-02 22:12:50 +00005636 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
Scott Michel91099d62009-02-17 22:15:04 +00005637
Dale Johannesen82b5b722009-02-02 22:12:50 +00005638 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i),
5639 Idx, SV, Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005640 }
Scott Michel91099d62009-02-17 22:15:04 +00005641
Dan Gohman8181bd12008-07-27 21:46:04 +00005642 SDValue StoreChain;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005643 if (!Stores.empty()) // Not all undef elements?
Dale Johannesen82b5b722009-02-02 22:12:50 +00005644 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005645 &Stores[0], Stores.size());
5646 else
5647 StoreChain = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00005648
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005649 // Result is a load from the stack slot.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005650 return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005651}
5652
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005653void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman8181bd12008-07-27 21:46:04 +00005654 SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005655 SDValue &Lo, SDValue &Hi,
5656 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005657 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00005658 SDValue LHSL, LHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005659 ExpandOp(Op, LHSL, LHSH);
5660
Dan Gohman8181bd12008-07-27 21:46:04 +00005661 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands92c43912008-06-06 12:08:01 +00005662 MVT VT = LHSL.getValueType();
Dan Gohmanee036282009-04-09 23:54:40 +00005663 Lo = DAG.getNode(NodeOp, dl, DAG.getVTList(VT, VT), Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005664 Hi = Lo.getValue(1);
5665}
5666
5667
5668/// ExpandShift - Try to find a clever way to expand this shift operation out to
5669/// smaller elements. If we can't find a way that is more efficient than a
5670/// libcall on this target, return false. Otherwise, return true with the
5671/// low-parts expanded into Lo and Hi.
Bob Wilson2e958a42009-04-10 18:48:47 +00005672bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005673 SDValue &Lo, SDValue &Hi,
5674 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005675 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5676 "This is not a shift!");
5677
Duncan Sands92c43912008-06-06 12:08:01 +00005678 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman8181bd12008-07-27 21:46:04 +00005679 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands92c43912008-06-06 12:08:01 +00005680 MVT ShTy = ShAmt.getValueType();
5681 unsigned ShBits = ShTy.getSizeInBits();
5682 unsigned VTBits = Op.getValueType().getSizeInBits();
5683 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005684
Chris Lattner8c931452007-10-14 20:35:12 +00005685 // Handle the case when Amt is an immediate.
Gabor Greif1c80d112008-08-28 21:40:38 +00005686 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005687 unsigned Cst = CN->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005688 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005689 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005690 ExpandOp(Op, InL, InH);
5691 switch(Opc) {
5692 case ISD::SHL:
5693 if (Cst > VTBits) {
5694 Lo = DAG.getConstant(0, NVT);
5695 Hi = DAG.getConstant(0, NVT);
5696 } else if (Cst > NVTBits) {
5697 Lo = DAG.getConstant(0, NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00005698 Hi = DAG.getNode(ISD::SHL, dl,
Bob Wilson2e958a42009-04-10 18:48:47 +00005699 NVT, InL, DAG.getConstant(Cst-NVTBits, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005700 } else if (Cst == NVTBits) {
5701 Lo = DAG.getConstant(0, NVT);
5702 Hi = InL;
5703 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005704 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy));
5705 Hi = DAG.getNode(ISD::OR, dl, NVT,
5706 DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)),
Scott Michel91099d62009-02-17 22:15:04 +00005707 DAG.getNode(ISD::SRL, dl, NVT, InL,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005708 DAG.getConstant(NVTBits-Cst, ShTy)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005709 }
5710 return true;
5711 case ISD::SRL:
5712 if (Cst > VTBits) {
5713 Lo = DAG.getConstant(0, NVT);
5714 Hi = DAG.getConstant(0, NVT);
5715 } else if (Cst > NVTBits) {
Scott Michel91099d62009-02-17 22:15:04 +00005716 Lo = DAG.getNode(ISD::SRL, dl, NVT,
Bob Wilson2e958a42009-04-10 18:48:47 +00005717 InH, DAG.getConstant(Cst-NVTBits, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005718 Hi = DAG.getConstant(0, NVT);
5719 } else if (Cst == NVTBits) {
5720 Lo = InH;
5721 Hi = DAG.getConstant(0, NVT);
5722 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005723 Lo = DAG.getNode(ISD::OR, dl, NVT,
5724 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michel91099d62009-02-17 22:15:04 +00005725 DAG.getNode(ISD::SHL, dl, NVT, InH,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005726 DAG.getConstant(NVTBits-Cst, ShTy)));
5727 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005728 }
5729 return true;
5730 case ISD::SRA:
5731 if (Cst > VTBits) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005732 Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005733 DAG.getConstant(NVTBits-1, ShTy));
5734 } else if (Cst > NVTBits) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005735 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005736 DAG.getConstant(Cst-NVTBits, ShTy));
Dale Johannesen82b5b722009-02-02 22:12:50 +00005737 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005738 DAG.getConstant(NVTBits-1, ShTy));
5739 } else if (Cst == NVTBits) {
5740 Lo = InH;
Dale Johannesen82b5b722009-02-02 22:12:50 +00005741 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005742 DAG.getConstant(NVTBits-1, ShTy));
5743 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005744 Lo = DAG.getNode(ISD::OR, dl, NVT,
5745 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michel91099d62009-02-17 22:15:04 +00005746 DAG.getNode(ISD::SHL, dl,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005747 NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5748 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005749 }
5750 return true;
5751 }
5752 }
Scott Michel91099d62009-02-17 22:15:04 +00005753
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005754 // Okay, the shift amount isn't constant. However, if we can tell that it is
5755 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohmanece0a882008-02-20 16:57:27 +00005756 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5757 APInt KnownZero, KnownOne;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005758 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Scott Michel91099d62009-02-17 22:15:04 +00005759
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005760 // If we know that if any of the high bits of the shift amount are one, then
5761 // we can do this as a couple of simple shifts.
Dan Gohmanece0a882008-02-20 16:57:27 +00005762 if (KnownOne.intersects(Mask)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005763 // Mask out the high bit, which we know is set.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005764 Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt,
Dan Gohmanece0a882008-02-20 16:57:27 +00005765 DAG.getConstant(~Mask, Amt.getValueType()));
Scott Michel91099d62009-02-17 22:15:04 +00005766
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005767 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005768 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005769 ExpandOp(Op, InL, InH);
5770 switch(Opc) {
5771 case ISD::SHL:
5772 Lo = DAG.getConstant(0, NVT); // Low part is zero.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005773 Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005774 return true;
5775 case ISD::SRL:
5776 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005777 Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005778 return true;
5779 case ISD::SRA:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005780 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005781 DAG.getConstant(NVTBits-1, Amt.getValueType()));
Dale Johannesen82b5b722009-02-02 22:12:50 +00005782 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005783 return true;
5784 }
5785 }
Scott Michel91099d62009-02-17 22:15:04 +00005786
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005787 // If we know that the high bits of the shift amount are all zero, then we can
5788 // do this as a couple of simple shifts.
5789 if ((KnownZero & Mask) == Mask) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005790 // Compute 32-amt.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005791 SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005792 DAG.getConstant(NVTBits, Amt.getValueType()),
5793 Amt);
Scott Michel91099d62009-02-17 22:15:04 +00005794
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005795 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005796 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005797 ExpandOp(Op, InL, InH);
5798 switch(Opc) {
5799 case ISD::SHL:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005800 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
5801 Hi = DAG.getNode(ISD::OR, dl, NVT,
5802 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
5803 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005804 return true;
5805 case ISD::SRL:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005806 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
5807 Lo = DAG.getNode(ISD::OR, dl, NVT,
5808 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5809 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005810 return true;
5811 case ISD::SRA:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005812 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
5813 Lo = DAG.getNode(ISD::OR, dl, NVT,
5814 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5815 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005816 return true;
5817 }
5818 }
Scott Michel91099d62009-02-17 22:15:04 +00005819
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005820 return false;
5821}
5822
5823
5824// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5825// does not fit into a register, return the lo part and set the hi part to the
5826// by-reg argument. If it does fit into a single register, return the result
5827// and leave the Hi part unset.
Dan Gohman8181bd12008-07-27 21:46:04 +00005828SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5829 bool isSigned, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005830 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
Scott Michel91099d62009-02-17 22:15:04 +00005831 // The input chain to this libcall is the entry node of the function.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005832 // Legalizing the call will automatically add the previous call to the
5833 // dependence.
Dan Gohman8181bd12008-07-27 21:46:04 +00005834 SDValue InChain = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00005835
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005836 TargetLowering::ArgListTy Args;
5837 TargetLowering::ArgListEntry Entry;
5838 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands92c43912008-06-06 12:08:01 +00005839 MVT ArgVT = Node->getOperand(i).getValueType();
5840 const Type *ArgTy = ArgVT.getTypeForMVT();
Scott Michel91099d62009-02-17 22:15:04 +00005841 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005842 Entry.isSExt = isSigned;
Duncan Sandsead972e2008-02-14 17:28:50 +00005843 Entry.isZExt = !isSigned;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005844 Args.push_back(Entry);
5845 }
Bill Wendlingfef06052008-09-16 21:48:12 +00005846 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang1448aad2008-10-30 08:01:45 +00005847 TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005848
5849 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands92c43912008-06-06 12:08:01 +00005850 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Bob Wilson2e958a42009-04-10 18:48:47 +00005851 std::pair<SDValue, SDValue> CallInfo =
Dale Johannesen67cc9b62008-09-26 19:31:26 +00005852 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesenca6237b2009-01-30 23:10:59 +00005853 CallingConv::C, false, Callee, Args, DAG,
5854 Node->getDebugLoc());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005855
5856 // Legalize the call sequence, starting with the chain. This will advance
5857 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5858 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5859 LegalizeOp(CallInfo.second);
Dan Gohman8181bd12008-07-27 21:46:04 +00005860 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005861 switch (getTypeAction(CallInfo.first.getValueType())) {
5862 default: assert(0 && "Unknown thing");
5863 case Legal:
5864 Result = CallInfo.first;
5865 break;
5866 case Expand:
5867 ExpandOp(CallInfo.first, Result, Hi);
5868 break;
5869 }
5870 return Result;
5871}
5872
Dan Gohman29c3cef2008-08-14 20:04:46 +00005873/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5874///
5875SDValue SelectionDAGLegalize::
Dale Johannesen9972b632009-02-02 19:03:57 +00005876LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5877 DebugLoc dl) {
Dan Gohman29c3cef2008-08-14 20:04:46 +00005878 bool isCustom = false;
5879 SDValue Tmp1;
5880 switch (getTypeAction(Op.getValueType())) {
5881 case Legal:
5882 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5883 Op.getValueType())) {
5884 default: assert(0 && "Unknown operation action!");
5885 case TargetLowering::Custom:
5886 isCustom = true;
5887 // FALLTHROUGH
5888 case TargetLowering::Legal:
5889 Tmp1 = LegalizeOp(Op);
Gabor Greif1c80d112008-08-28 21:40:38 +00005890 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005891 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5892 else
Dale Johannesen9972b632009-02-02 19:03:57 +00005893 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman29c3cef2008-08-14 20:04:46 +00005894 DestTy, Tmp1);
5895 if (isCustom) {
5896 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005897 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman29c3cef2008-08-14 20:04:46 +00005898 }
5899 break;
5900 case TargetLowering::Expand:
Dale Johannesen9972b632009-02-02 19:03:57 +00005901 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005902 break;
5903 case TargetLowering::Promote:
Dale Johannesen9972b632009-02-02 19:03:57 +00005904 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005905 break;
5906 }
5907 break;
5908 case Expand:
Dale Johannesen9972b632009-02-02 19:03:57 +00005909 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman29c3cef2008-08-14 20:04:46 +00005910 break;
5911 case Promote:
5912 Tmp1 = PromoteOp(Op);
5913 if (isSigned) {
Dale Johannesen9972b632009-02-02 19:03:57 +00005914 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Bob Wilson2e958a42009-04-10 18:48:47 +00005915 Tmp1, DAG.getValueType(Op.getValueType()));
Dan Gohman29c3cef2008-08-14 20:04:46 +00005916 } else {
Bob Wilson2e958a42009-04-10 18:48:47 +00005917 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, Op.getValueType());
Dan Gohman29c3cef2008-08-14 20:04:46 +00005918 }
Gabor Greif1c80d112008-08-28 21:40:38 +00005919 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005920 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5921 else
Dale Johannesen9972b632009-02-02 19:03:57 +00005922 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman29c3cef2008-08-14 20:04:46 +00005923 DestTy, Tmp1);
5924 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5925 break;
5926 }
5927 return Result;
5928}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005929
5930/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5931///
Dan Gohman8181bd12008-07-27 21:46:04 +00005932SDValue SelectionDAGLegalize::
Dale Johannesen9972b632009-02-02 19:03:57 +00005933ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00005934 MVT SourceVT = Source.getValueType();
Dan Gohman8b232ff2008-03-11 01:59:03 +00005935 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005936
Dan Gohman29c3cef2008-08-14 20:04:46 +00005937 // Expand unsupported int-to-fp vector casts by unrolling them.
5938 if (DestTy.isVector()) {
5939 if (!ExpandSource)
5940 return LegalizeOp(UnrollVectorOp(Source));
5941 MVT DestEltTy = DestTy.getVectorElementType();
5942 if (DestTy.getVectorNumElements() == 1) {
5943 SDValue Scalar = ScalarizeVectorOp(Source);
5944 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesen9972b632009-02-02 19:03:57 +00005945 DestEltTy, Scalar, dl);
Evan Cheng907a2d22009-02-25 22:49:59 +00005946 return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005947 }
5948 SDValue Lo, Hi;
5949 SplitVectorOp(Source, Lo, Hi);
5950 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5951 DestTy.getVectorNumElements() / 2);
Scott Michel91099d62009-02-17 22:15:04 +00005952 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesen9972b632009-02-02 19:03:57 +00005953 Lo, dl);
Scott Michel91099d62009-02-17 22:15:04 +00005954 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesen9972b632009-02-02 19:03:57 +00005955 Hi, dl);
5956 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengd901b662008-10-13 18:46:18 +00005957 HiResult));
Dan Gohman29c3cef2008-08-14 20:04:46 +00005958 }
5959
Evan Chengf99a7752008-04-01 02:18:22 +00005960 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5961 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohmana193dba2008-03-05 02:07:31 +00005962 // The integer value loaded will be incorrectly if the 'sign bit' of the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005963 // incoming integer is set. To handle this, we dynamically test to see if
5964 // it is set, and, if so, add a fudge factor.
Dan Gohman8181bd12008-07-27 21:46:04 +00005965 SDValue Hi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005966 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005967 SDValue Lo;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005968 ExpandOp(Source, Lo, Hi);
Dale Johannesen9972b632009-02-02 19:03:57 +00005969 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman8b232ff2008-03-11 01:59:03 +00005970 } else {
5971 // The comparison for the sign bit will use the entire operand.
5972 Hi = Source;
5973 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005974
Dale Johannesen96db7962008-11-04 20:52:49 +00005975 // Check to see if the target has a custom way to lower this. If so, use
5976 // it. (Note we've already expanded the operand in this case.)
Dale Johannesena359b8b2008-10-21 20:50:01 +00005977 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
5978 default: assert(0 && "This action not implemented for this operation!");
5979 case TargetLowering::Legal:
5980 case TargetLowering::Expand:
5981 break; // This case is handled below.
5982 case TargetLowering::Custom: {
Dale Johannesen24dd9a52009-02-07 00:55:49 +00005983 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, dl, DestTy,
Bob Wilson2e958a42009-04-10 18:48:47 +00005984 Source), DAG);
Dale Johannesena359b8b2008-10-21 20:50:01 +00005985 if (NV.getNode())
5986 return LegalizeOp(NV);
5987 break; // The target decided this was legal after all
5988 }
5989 }
5990
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005991 // If this is unsigned, and not supported, first perform the conversion to
5992 // signed, then adjust the result if the sign bit is set.
Dale Johannesen9972b632009-02-02 19:03:57 +00005993 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005994
Scott Michel91099d62009-02-17 22:15:04 +00005995 SDValue SignSet = DAG.getSetCC(dl,
Dale Johannesen9972b632009-02-02 19:03:57 +00005996 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005997 Hi, DAG.getConstant(0, Hi.getValueType()),
5998 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00005999 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesen9972b632009-02-02 19:03:57 +00006000 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006001 SignSet, Four, Zero);
6002 uint64_t FF = 0x5f800000ULL;
6003 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattner50ce8342009-03-08 01:47:41 +00006004 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006005
Dan Gohman8181bd12008-07-27 21:46:04 +00006006 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +00006007 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen9972b632009-02-02 19:03:57 +00006008 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00006009 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00006010 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006011 if (DestTy == MVT::f32)
Dale Johannesen9972b632009-02-02 19:03:57 +00006012 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00006013 PseudoSourceValue::getConstantPool(), 0,
6014 false, Alignment);
Duncan Sandsec142ee2008-06-08 20:54:56 +00006015 else if (DestTy.bitsGT(MVT::f32))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006016 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen9972b632009-02-02 19:03:57 +00006017 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman12a9c082008-02-06 22:27:42 +00006018 CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00006019 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00006020 MVT::f32, false, Alignment);
Scott Michel91099d62009-02-17 22:15:04 +00006021 else
Dale Johannesen2fc20782007-09-14 22:26:36 +00006022 assert(0 && "Unexpected conversion");
6023
Duncan Sands92c43912008-06-06 12:08:01 +00006024 MVT SCVT = SignedConv.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006025 if (SCVT != DestTy) {
6026 // Destination type needs to be expanded as well. The FADD now we are
6027 // constructing will be expanded into a libcall.
Duncan Sands92c43912008-06-06 12:08:01 +00006028 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
6029 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesen9972b632009-02-02 19:03:57 +00006030 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006031 SignedConv, SignedConv.getValue(1));
6032 }
Dale Johannesen9972b632009-02-02 19:03:57 +00006033 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006034 }
Dale Johannesen9972b632009-02-02 19:03:57 +00006035 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006036 }
6037
6038 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmanc98645c2008-03-05 01:08:17 +00006039 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006040 default: assert(0 && "This action not implemented for this operation!");
6041 case TargetLowering::Legal:
6042 case TargetLowering::Expand:
6043 break; // This case is handled below.
6044 case TargetLowering::Custom: {
Dale Johannesen9972b632009-02-02 19:03:57 +00006045 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Bob Wilson2e958a42009-04-10 18:48:47 +00006046 Source), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006047 if (NV.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006048 return LegalizeOp(NV);
6049 break; // The target decided this was legal after all
6050 }
6051 }
6052
6053 // Expand the source, then glue it back together for the call. We must expand
6054 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman8b232ff2008-03-11 01:59:03 +00006055 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006056 SDValue SrcLo, SrcHi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00006057 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesen9972b632009-02-02 19:03:57 +00006058 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman8b232ff2008-03-11 01:59:03 +00006059 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006060
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006061 RTLIB::Libcall LC = isSigned ?
6062 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6063 RTLIB::getUINTTOFP(SourceVT, DestTy);
6064 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6065
Dale Johannesen9972b632009-02-02 19:03:57 +00006066 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman8181bd12008-07-27 21:46:04 +00006067 SDValue HiPart;
Gabor Greif1c80d112008-08-28 21:40:38 +00006068 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6069 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesen9972b632009-02-02 19:03:57 +00006070 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmanec51f642008-03-10 23:03:31 +00006071 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006072}
6073
6074/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6075/// INT_TO_FP operation of the specified operand when the target requests that
6076/// we expand it. At this point, we know that the result and operand types are
6077/// legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00006078SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6079 SDValue Op0,
Dale Johannesen9972b632009-02-02 19:03:57 +00006080 MVT DestVT,
6081 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006082 if (Op0.getValueType() == MVT::i32) {
6083 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michel91099d62009-02-17 22:15:04 +00006084
Chris Lattner0aeb1d02008-01-16 07:03:22 +00006085 // Get the stack frame index of a 8 byte buffer.
Dan Gohman8181bd12008-07-27 21:46:04 +00006086 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michel91099d62009-02-17 22:15:04 +00006087
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006088 // word offset constant for Hi/Lo address computation
Dan Gohman8181bd12008-07-27 21:46:04 +00006089 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006090 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman8181bd12008-07-27 21:46:04 +00006091 SDValue Hi = StackSlot;
Scott Michel91099d62009-02-17 22:15:04 +00006092 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilson2e958a42009-04-10 18:48:47 +00006093 TLI.getPointerTy(), StackSlot, WordOff);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006094 if (TLI.isLittleEndian())
6095 std::swap(Hi, Lo);
Scott Michel91099d62009-02-17 22:15:04 +00006096
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006097 // if signed map to unsigned space
Dan Gohman8181bd12008-07-27 21:46:04 +00006098 SDValue Op0Mapped;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006099 if (isSigned) {
6100 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman8181bd12008-07-27 21:46:04 +00006101 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesen9972b632009-02-02 19:03:57 +00006102 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006103 } else {
6104 Op0Mapped = Op0;
6105 }
6106 // store the lo of the constructed double - based on integer input
Dale Johannesen9972b632009-02-02 19:03:57 +00006107 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilson2e958a42009-04-10 18:48:47 +00006108 Op0Mapped, Lo, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006109 // initial hi portion of constructed double
Dan Gohman8181bd12008-07-27 21:46:04 +00006110 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006111 // store the hi of the constructed double - biased exponent
Dale Johannesen9972b632009-02-02 19:03:57 +00006112 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006113 // load the constructed double
Dale Johannesen9972b632009-02-02 19:03:57 +00006114 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006115 // FP constant to bias correct the final result
Dan Gohman8181bd12008-07-27 21:46:04 +00006116 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilson2e958a42009-04-10 18:48:47 +00006117 BitsToDouble(0x4330000080000000ULL) :
6118 BitsToDouble(0x4330000000000000ULL),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006119 MVT::f64);
6120 // subtract the bias
Dale Johannesen9972b632009-02-02 19:03:57 +00006121 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006122 // final result
Dan Gohman8181bd12008-07-27 21:46:04 +00006123 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006124 // handle final rounding
6125 if (DestVT == MVT::f64) {
6126 // do nothing
6127 Result = Sub;
Duncan Sandsec142ee2008-06-08 20:54:56 +00006128 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesen9972b632009-02-02 19:03:57 +00006129 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner5872a362008-01-17 07:00:52 +00006130 DAG.getIntPtrConstant(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00006131 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen9972b632009-02-02 19:03:57 +00006132 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006133 }
6134 return Result;
6135 }
6136 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesen9972b632009-02-02 19:03:57 +00006137 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006138
Dale Johannesen9972b632009-02-02 19:03:57 +00006139 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00006140 Op0, DAG.getConstant(0, Op0.getValueType()),
6141 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00006142 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesen9972b632009-02-02 19:03:57 +00006143 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006144 SignSet, Four, Zero);
6145
6146 // If the sign bit of the integer is set, the large number will be treated
6147 // as a negative number. To counteract this, the dynamic code adds an
6148 // offset depending on the data type.
6149 uint64_t FF;
Duncan Sands92c43912008-06-06 12:08:01 +00006150 switch (Op0.getValueType().getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006151 default: assert(0 && "Unsupported integer type!");
6152 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6153 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6154 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6155 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6156 }
6157 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattner50ce8342009-03-08 01:47:41 +00006158 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006159
Dan Gohman8181bd12008-07-27 21:46:04 +00006160 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +00006161 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen9972b632009-02-02 19:03:57 +00006162 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00006163 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00006164 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006165 if (DestVT == MVT::f32)
Dale Johannesen9972b632009-02-02 19:03:57 +00006166 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00006167 PseudoSourceValue::getConstantPool(), 0,
6168 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006169 else {
Dan Gohman12a9c082008-02-06 22:27:42 +00006170 FudgeInReg =
Dale Johannesen9972b632009-02-02 19:03:57 +00006171 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman12a9c082008-02-06 22:27:42 +00006172 DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00006173 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00006174 MVT::f32, false, Alignment));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006175 }
6176
Dale Johannesen9972b632009-02-02 19:03:57 +00006177 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006178}
6179
6180/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6181/// *INT_TO_FP operation of the specified operand when the target requests that
6182/// we promote it. At this point, we know that the result and operand types are
6183/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6184/// operation that takes a larger input.
Dan Gohman8181bd12008-07-27 21:46:04 +00006185SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6186 MVT DestVT,
Dale Johannesen9972b632009-02-02 19:03:57 +00006187 bool isSigned,
6188 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006189 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00006190 MVT NewInTy = LegalOp.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006191
6192 unsigned OpToUse = 0;
6193
6194 // Scan for the appropriate larger type to use.
6195 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00006196 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6197 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006198
6199 // If the target supports SINT_TO_FP of this type, use it.
6200 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6201 default: break;
6202 case TargetLowering::Legal:
6203 if (!TLI.isTypeLegal(NewInTy))
6204 break; // Can't use this datatype.
6205 // FALL THROUGH.
6206 case TargetLowering::Custom:
6207 OpToUse = ISD::SINT_TO_FP;
6208 break;
6209 }
6210 if (OpToUse) break;
6211 if (isSigned) continue;
6212
6213 // If the target supports UINT_TO_FP of this type, use it.
6214 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6215 default: break;
6216 case TargetLowering::Legal:
6217 if (!TLI.isTypeLegal(NewInTy))
6218 break; // Can't use this datatype.
6219 // FALL THROUGH.
6220 case TargetLowering::Custom:
6221 OpToUse = ISD::UINT_TO_FP;
6222 break;
6223 }
6224 if (OpToUse) break;
6225
6226 // Otherwise, try a larger type.
6227 }
6228
6229 // Okay, we found the operation and type to use. Zero extend our input to the
6230 // desired type then run the operation on it.
Dale Johannesen9972b632009-02-02 19:03:57 +00006231 return DAG.getNode(OpToUse, dl, DestVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006232 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesen9972b632009-02-02 19:03:57 +00006233 dl, NewInTy, LegalOp));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006234}
6235
6236/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6237/// FP_TO_*INT operation of the specified operand when the target requests that
6238/// we promote it. At this point, we know that the result and operand types are
6239/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6240/// operation that returns a larger result.
Dan Gohman8181bd12008-07-27 21:46:04 +00006241SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6242 MVT DestVT,
Dale Johannesen9972b632009-02-02 19:03:57 +00006243 bool isSigned,
6244 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006245 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00006246 MVT NewOutTy = DestVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006247
6248 unsigned OpToUse = 0;
6249
6250 // Scan for the appropriate larger type to use.
6251 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00006252 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6253 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006254
6255 // If the target supports FP_TO_SINT returning this type, use it.
6256 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6257 default: break;
6258 case TargetLowering::Legal:
6259 if (!TLI.isTypeLegal(NewOutTy))
6260 break; // Can't use this datatype.
6261 // FALL THROUGH.
6262 case TargetLowering::Custom:
6263 OpToUse = ISD::FP_TO_SINT;
6264 break;
6265 }
6266 if (OpToUse) break;
6267
6268 // If the target supports FP_TO_UINT of this type, use it.
6269 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
6270 default: break;
6271 case TargetLowering::Legal:
6272 if (!TLI.isTypeLegal(NewOutTy))
6273 break; // Can't use this datatype.
6274 // FALL THROUGH.
6275 case TargetLowering::Custom:
6276 OpToUse = ISD::FP_TO_UINT;
6277 break;
6278 }
6279 if (OpToUse) break;
6280
6281 // Otherwise, try a larger type.
6282 }
6283
Scott Michel91099d62009-02-17 22:15:04 +00006284
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006285 // Okay, we found the operation and type to use.
Dale Johannesen9972b632009-02-02 19:03:57 +00006286 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sandsac496a12008-07-04 11:47:58 +00006287
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006288 // If the operation produces an invalid type, it must be custom lowered. Use
6289 // the target lowering hooks to expand it. Just keep the low part of the
6290 // expanded operation, we know that we're truncating anyway.
6291 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands7d9834b2008-12-01 11:39:25 +00006292 SmallVector<SDValue, 2> Results;
6293 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6294 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6295 Operation = Results[0];
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006296 }
Duncan Sandsac496a12008-07-04 11:47:58 +00006297
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006298 // Truncate the result of the extended FP_TO_*INT operation to the desired
6299 // size.
Dale Johannesen9972b632009-02-02 19:03:57 +00006300 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006301}
6302
6303/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6304///
Dale Johannesen82b5b722009-02-02 22:12:50 +00006305SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00006306 MVT VT = Op.getValueType();
6307 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00006308 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands92c43912008-06-06 12:08:01 +00006309 switch (VT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006310 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6311 case MVT::i16:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006312 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6313 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6314 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006315 case MVT::i32:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006316 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6317 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6318 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6319 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6320 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6321 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6322 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6323 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6324 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006325 case MVT::i64:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006326 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
6327 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
6328 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6329 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6330 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6331 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6332 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
6333 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
6334 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6335 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6336 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6337 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6338 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6339 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6340 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
6341 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
6342 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6343 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6344 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
6345 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
6346 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006347 }
6348}
6349
6350/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6351///
Scott Michel91099d62009-02-17 22:15:04 +00006352SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen82b5b722009-02-02 22:12:50 +00006353 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006354 switch (Opc) {
6355 default: assert(0 && "Cannot expand this yet!");
6356 case ISD::CTPOP: {
6357 static const uint64_t mask[6] = {
6358 0x5555555555555555ULL, 0x3333333333333333ULL,
6359 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6360 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6361 };
Duncan Sands92c43912008-06-06 12:08:01 +00006362 MVT VT = Op.getValueType();
6363 MVT ShVT = TLI.getShiftAmountTy();
6364 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006365 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6366 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sands505ba942009-02-01 18:06:53 +00006367 unsigned EltSize = VT.isVector() ?
6368 VT.getVectorElementType().getSizeInBits() : len;
6369 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman8181bd12008-07-27 21:46:04 +00006370 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michel91099d62009-02-17 22:15:04 +00006371 Op = DAG.getNode(ISD::ADD, dl, VT,
Dale Johannesen18ae8af2009-02-06 21:55:48 +00006372 DAG.getNode(ISD::AND, dl, VT, Op, Tmp2),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006373 DAG.getNode(ISD::AND, dl, VT,
6374 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3),
6375 Tmp2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006376 }
6377 return Op;
6378 }
6379 case ISD::CTLZ: {
6380 // for now, we do this:
6381 // x = x | (x >> 1);
6382 // x = x | (x >> 2);
6383 // ...
6384 // x = x | (x >>16);
6385 // x = x | (x >>32); // for 64-bit input
6386 // return popcount(~x);
6387 //
6388 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00006389 MVT VT = Op.getValueType();
6390 MVT ShVT = TLI.getShiftAmountTy();
6391 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006392 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006393 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michel91099d62009-02-17 22:15:04 +00006394 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesen18ae8af2009-02-06 21:55:48 +00006395 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006396 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00006397 Op = DAG.getNOT(dl, Op, VT);
6398 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006399 }
6400 case ISD::CTTZ: {
6401 // for now, we use: { return popcount(~x & (x - 1)); }
6402 // unless the target has ctlz but not ctpop, in which case we use:
6403 // { return 32 - nlz(~x & (x-1)); }
6404 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00006405 MVT VT = Op.getValueType();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006406 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
6407 DAG.getNOT(dl, Op, VT),
6408 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendlingfcfb47d2009-01-30 23:03:19 +00006409 DAG.getConstant(1, VT)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006410 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohman52c51aa2009-01-28 17:46:25 +00006411 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6412 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00006413 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands92c43912008-06-06 12:08:01 +00006414 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006415 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
6416 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006417 }
6418 }
6419}
6420
Dan Gohman8181bd12008-07-27 21:46:04 +00006421/// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006422/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman4fc03742008-10-01 15:07:49 +00006423/// LegalizedNodes map is filled in for any results that are not expanded, the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006424/// ExpandedNodes map is filled in for any results that are expanded, and the
6425/// Lo/Hi values are returned.
Dan Gohman8181bd12008-07-27 21:46:04 +00006426void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands92c43912008-06-06 12:08:01 +00006427 MVT VT = Op.getValueType();
6428 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greif1c80d112008-08-28 21:40:38 +00006429 SDNode *Node = Op.getNode();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006430 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006431 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00006432 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands92c43912008-06-06 12:08:01 +00006433 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006434
6435 // See if we already expanded it.
Dan Gohman8181bd12008-07-27 21:46:04 +00006436 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006437 = ExpandedNodes.find(Op);
6438 if (I != ExpandedNodes.end()) {
6439 Lo = I->second.first;
6440 Hi = I->second.second;
6441 return;
6442 }
6443
6444 switch (Node->getOpcode()) {
6445 case ISD::CopyFromReg:
6446 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006447 case ISD::FP_ROUND_INREG:
Scott Michel91099d62009-02-17 22:15:04 +00006448 if (VT == MVT::ppcf128 &&
6449 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006450 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006451 SDValue SrcLo, SrcHi, Src;
Dale Johannesend3b6af32007-10-11 23:32:15 +00006452 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006453 Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi);
Bob Wilson2e958a42009-04-10 18:48:47 +00006454 SDValue Result =
6455 TLI.LowerOperation(DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src,
6456 Op.getOperand(1)), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006457 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6458 Lo = Result.getNode()->getOperand(0);
6459 Hi = Result.getNode()->getOperand(1);
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006460 break;
6461 }
6462 // fall through
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006463 default:
6464#ifndef NDEBUG
6465 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
6466#endif
6467 assert(0 && "Do not know how to expand this operator!");
6468 abort();
Dan Gohman550c8462008-02-27 01:52:30 +00006469 case ISD::EXTRACT_ELEMENT:
6470 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006471 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman550c8462008-02-27 01:52:30 +00006472 return ExpandOp(Hi, Lo, Hi);
Dan Gohman7e7aa2c2008-02-27 19:44:57 +00006473 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen2ff963d2007-10-31 00:32:36 +00006474 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen2ff963d2007-10-31 00:32:36 +00006475 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6476 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6477 return ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006478 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00006479 Lo = DAG.getUNDEF(NVT);
6480 Hi = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006481 break;
6482 case ISD::Constant: {
Duncan Sands92c43912008-06-06 12:08:01 +00006483 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman97f1f8e2008-03-03 22:20:46 +00006484 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6485 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6486 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006487 break;
6488 }
6489 case ISD::ConstantFP: {
6490 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesen2aef5692007-10-11 18:07:22 +00006491 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00006492 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesen2aef5692007-10-11 18:07:22 +00006493 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6494 MVT::f64);
Scott Michel91099d62009-02-17 22:15:04 +00006495 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
Dale Johannesen2aef5692007-10-11 18:07:22 +00006496 MVT::f64);
6497 break;
6498 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006499 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
6500 if (getTypeAction(Lo.getValueType()) == Expand)
6501 ExpandOp(Lo, Lo, Hi);
6502 break;
6503 }
6504 case ISD::BUILD_PAIR:
6505 // Return the operands.
6506 Lo = Node->getOperand(0);
6507 Hi = Node->getOperand(1);
6508 break;
Scott Michel91099d62009-02-17 22:15:04 +00006509
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006510 case ISD::MERGE_VALUES:
Chris Lattner1b66f822007-11-24 19:12:15 +00006511 if (Node->getNumValues() == 1) {
6512 ExpandOp(Op.getOperand(0), Lo, Hi);
6513 break;
6514 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006515 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif46bf5472008-08-26 22:36:50 +00006516 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006517 Op.getValue(1).getValueType() == MVT::Other &&
6518 "unhandled MERGE_VALUES");
6519 ExpandOp(Op.getOperand(0), Lo, Hi);
6520 // Remember that we legalized the chain.
6521 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6522 break;
Scott Michel91099d62009-02-17 22:15:04 +00006523
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006524 case ISD::SIGN_EXTEND_INREG:
6525 ExpandOp(Node->getOperand(0), Lo, Hi);
6526 // sext_inreg the low part if needed.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006527 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1));
Scott Michel91099d62009-02-17 22:15:04 +00006528
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006529 // The high part gets the sign extension from the lo-part. This handles
6530 // things like sextinreg V:i64 from i8.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006531 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Duncan Sands92c43912008-06-06 12:08:01 +00006532 DAG.getConstant(NVT.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006533 TLI.getShiftAmountTy()));
6534 break;
6535
6536 case ISD::BSWAP: {
6537 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006538 SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi);
6539 Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006540 Lo = TempLo;
6541 break;
6542 }
Scott Michel91099d62009-02-17 22:15:04 +00006543
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006544 case ISD::CTPOP:
6545 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006546 Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6547 DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
6548 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006549 Hi = DAG.getConstant(0, NVT);
6550 break;
6551
6552 case ISD::CTLZ: {
6553 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
6554 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006555 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006556 SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
6557 SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ,
6558 BitsC, ISD::SETNE);
6559 SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
6560 LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006561
Dale Johannesen82b5b722009-02-02 22:12:50 +00006562 Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006563 Hi = DAG.getConstant(0, NVT);
6564 break;
6565 }
6566
6567 case ISD::CTTZ: {
6568 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
6569 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006570 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006571 SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
6572 SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ,
6573 BitsC, ISD::SETNE);
6574 SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
6575 HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006576
Dale Johannesen82b5b722009-02-02 22:12:50 +00006577 Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006578 Hi = DAG.getConstant(0, NVT);
6579 break;
6580 }
6581
6582 case ISD::VAARG: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006583 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6584 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dale Johannesen564036c2009-02-04 00:13:36 +00006585 Lo = DAG.getVAArg(NVT, dl, Ch, Ptr, Node->getOperand(2));
6586 Hi = DAG.getVAArg(NVT, dl, Lo.getValue(1), Ptr, Node->getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006587
6588 // Remember that we legalized the chain.
6589 Hi = LegalizeOp(Hi);
6590 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006591 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006592 std::swap(Lo, Hi);
6593 break;
6594 }
Scott Michel91099d62009-02-17 22:15:04 +00006595
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006596 case ISD::LOAD: {
6597 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00006598 SDValue Ch = LD->getChain(); // Legalize the chain.
6599 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006600 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman29c3cef2008-08-14 20:04:46 +00006601 const Value *SV = LD->getSrcValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006602 int SVOffset = LD->getSrcValueOffset();
6603 unsigned Alignment = LD->getAlignment();
6604 bool isVolatile = LD->isVolatile();
6605
6606 if (ExtType == ISD::NON_EXTLOAD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006607 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006608 isVolatile, Alignment);
6609 if (VT == MVT::f32 || VT == MVT::f64) {
6610 // f32->i32 or f64->i64 one to one expansion.
6611 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006612 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006613 // Recursively expand the new load.
6614 if (getTypeAction(NVT) == Expand)
6615 ExpandOp(Lo, Lo, Hi);
6616 break;
6617 }
6618
6619 // Increment the pointer to the other half.
Duncan Sands92c43912008-06-06 12:08:01 +00006620 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dale Johannesen82b5b722009-02-02 22:12:50 +00006621 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00006622 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006623 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00006624 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006625 Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006626 isVolatile, Alignment);
6627
6628 // Build a factor node to remember that this load is independent of the
6629 // other one.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006630 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilson2e958a42009-04-10 18:48:47 +00006631 Hi.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006632
6633 // Remember that we legalized the chain.
6634 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006635 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006636 std::swap(Lo, Hi);
6637 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00006638 MVT EVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006639
Dale Johannesen2550e3a2007-10-19 20:29:00 +00006640 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6641 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006642 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dale Johannesen82b5b722009-02-02 22:12:50 +00006643 SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV,
Bob Wilson2e958a42009-04-10 18:48:47 +00006644 SVOffset, isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006645 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006646 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dale Johannesen82b5b722009-02-02 22:12:50 +00006647 ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006648 break;
6649 }
Scott Michel91099d62009-02-17 22:15:04 +00006650
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006651 if (EVT == NVT)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006652 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006653 SVOffset, isVolatile, Alignment);
6654 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00006655 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006656 SVOffset, EVT, isVolatile,
6657 Alignment);
Scott Michel91099d62009-02-17 22:15:04 +00006658
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006659 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006660 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006661
6662 if (ExtType == ISD::SEXTLOAD) {
6663 // The high part is obtained by SRA'ing all but one of the bits of the
6664 // lo part.
Duncan Sands92c43912008-06-06 12:08:01 +00006665 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006666 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006667 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6668 } else if (ExtType == ISD::ZEXTLOAD) {
6669 // The high part is just a zero.
6670 Hi = DAG.getConstant(0, NVT);
6671 } else /* if (ExtType == ISD::EXTLOAD) */ {
6672 // The high part is undefined.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00006673 Hi = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006674 }
6675 }
6676 break;
6677 }
6678 case ISD::AND:
6679 case ISD::OR:
6680 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +00006681 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006682 ExpandOp(Node->getOperand(0), LL, LH);
6683 ExpandOp(Node->getOperand(1), RL, RH);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006684 Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL);
6685 Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006686 break;
6687 }
6688 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006689 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006690 ExpandOp(Node->getOperand(1), LL, LH);
6691 ExpandOp(Node->getOperand(2), RL, RH);
6692 if (getTypeAction(NVT) == Expand)
6693 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006694 Lo = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LL, RL);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006695 if (VT != MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006696 Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006697 break;
6698 }
6699 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006700 SDValue TL, TH, FL, FH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006701 ExpandOp(Node->getOperand(2), TL, TH);
6702 ExpandOp(Node->getOperand(3), FL, FH);
6703 if (getTypeAction(NVT) == Expand)
6704 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006705 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006706 Node->getOperand(1), TL, FL, Node->getOperand(4));
6707 if (VT != MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006708 Hi = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006709 Node->getOperand(1), TH, FH, Node->getOperand(4));
6710 break;
6711 }
6712 case ISD::ANY_EXTEND:
6713 // The low part is any extension of the input (which degenerates to a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006714 Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006715 // The high part is undefined.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00006716 Hi = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006717 break;
6718 case ISD::SIGN_EXTEND: {
6719 // The low part is just a sign extension of the input (which degenerates to
6720 // a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006721 Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006722
6723 // The high part is obtained by SRA'ing all but one of the bits of the lo
6724 // part.
Duncan Sands92c43912008-06-06 12:08:01 +00006725 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006726 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006727 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6728 break;
6729 }
6730 case ISD::ZERO_EXTEND:
6731 // The low part is just a zero extension of the input (which degenerates to
6732 // a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006733 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006734
6735 // The high part is just a zero.
6736 Hi = DAG.getConstant(0, NVT);
6737 break;
Scott Michel91099d62009-02-17 22:15:04 +00006738
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006739 case ISD::TRUNCATE: {
6740 // The input value must be larger than this value. Expand *it*.
Dan Gohman8181bd12008-07-27 21:46:04 +00006741 SDValue NewLo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006742 ExpandOp(Node->getOperand(0), NewLo, Hi);
Scott Michel91099d62009-02-17 22:15:04 +00006743
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006744 // The low part is now either the right size, or it is closer. If not the
6745 // right size, make an illegal truncate so we recursively expand it.
6746 if (NewLo.getValueType() != Node->getValueType(0))
Dale Johannesen82b5b722009-02-02 22:12:50 +00006747 NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006748 ExpandOp(NewLo, Lo, Hi);
6749 break;
6750 }
Scott Michel91099d62009-02-17 22:15:04 +00006751
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006752 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006753 SDValue Tmp;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006754 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6755 // If the target wants to, allow it to lower this itself.
6756 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6757 case Expand: assert(0 && "cannot expand FP!");
6758 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6759 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6760 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00006761 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006762 }
6763
6764 // f32 / f64 must be expanded to i32 / i64.
6765 if (VT == MVT::f32 || VT == MVT::f64) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006766 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006767 if (getTypeAction(NVT) == Expand)
6768 ExpandOp(Lo, Lo, Hi);
6769 break;
6770 }
6771
6772 // If source operand will be expanded to the same type as VT, i.e.
6773 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands92c43912008-06-06 12:08:01 +00006774 MVT VT0 = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006775 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6776 ExpandOp(Node->getOperand(0), Lo, Hi);
6777 break;
6778 }
6779
6780 // Turn this into a load/store pair by default.
Gabor Greif1c80d112008-08-28 21:40:38 +00006781 if (Tmp.getNode() == 0)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006782 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl);
Scott Michel91099d62009-02-17 22:15:04 +00006783
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006784 ExpandOp(Tmp, Lo, Hi);
6785 break;
6786 }
6787
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006788 case ISD::READCYCLECOUNTER: {
Scott Michel91099d62009-02-17 22:15:04 +00006789 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006790 TargetLowering::Custom &&
6791 "Must custom expand ReadCycleCounter");
Dan Gohman8181bd12008-07-27 21:46:04 +00006792 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006793 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006794 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006795 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006796 LegalizeOp(Tmp.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006797 break;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006798 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006799
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006800 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen44eb5372008-10-03 19:41:08 +00006801 // This operation does not need a loop.
6802 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6803 assert(Tmp.getNode() && "Node must be custom expanded!");
6804 ExpandOp(Tmp.getValue(0), Lo, Hi);
6805 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6806 LegalizeOp(Tmp.getValue(1)));
6807 break;
6808 }
6809
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006810 case ISD::ATOMIC_LOAD_ADD:
6811 case ISD::ATOMIC_LOAD_SUB:
6812 case ISD::ATOMIC_LOAD_AND:
6813 case ISD::ATOMIC_LOAD_OR:
6814 case ISD::ATOMIC_LOAD_XOR:
6815 case ISD::ATOMIC_LOAD_NAND:
6816 case ISD::ATOMIC_SWAP: {
Dale Johannesen44eb5372008-10-03 19:41:08 +00006817 // These operations require a loop to be generated. We can't do that yet,
6818 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesenf160d802008-10-02 18:53:47 +00006819 SDValue In2Lo, In2Hi, In2;
6820 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006821 In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi);
Dale Johannesen44eb5372008-10-03 19:41:08 +00006822 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
Scott Michel91099d62009-02-17 22:15:04 +00006823 SDValue Replace =
Dale Johannesen82b5b722009-02-02 22:12:50 +00006824 DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(),
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006825 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen44eb5372008-10-03 19:41:08 +00006826 Anode->getSrcValue(), Anode->getAlignment());
6827 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesenf160d802008-10-02 18:53:47 +00006828 ExpandOp(Result.getValue(0), Lo, Hi);
6829 // Remember that we legalized the chain.
Bob Wilson2e958a42009-04-10 18:48:47 +00006830 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Result.getValue(1)));
Andrew Lenharth81580822008-03-05 01:15:49 +00006831 break;
6832 }
6833
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006834 // These operators cannot be expanded directly, emit them as calls to
6835 // library functions.
6836 case ISD::FP_TO_SINT: {
6837 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006838 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006839 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6840 case Expand: assert(0 && "cannot expand FP!");
6841 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6842 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6843 }
6844
Dale Johannesen82b5b722009-02-02 22:12:50 +00006845 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006846
6847 // Now that the custom expander is done, expand the result, which is still
6848 // VT.
Gabor Greif1c80d112008-08-28 21:40:38 +00006849 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006850 ExpandOp(Op, Lo, Hi);
6851 break;
6852 }
6853 }
6854
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006855 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6856 VT);
6857 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6858 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006859 break;
6860 }
6861
6862 case ISD::FP_TO_UINT: {
6863 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006864 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006865 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6866 case Expand: assert(0 && "cannot expand FP!");
6867 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6868 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6869 }
Scott Michel91099d62009-02-17 22:15:04 +00006870
Dale Johannesen82b5b722009-02-02 22:12:50 +00006871 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006872
6873 // Now that the custom expander is done, expand the result.
Gabor Greif1c80d112008-08-28 21:40:38 +00006874 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006875 ExpandOp(Op, Lo, Hi);
6876 break;
6877 }
6878 }
6879
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006880 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6881 VT);
6882 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6883 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006884 break;
6885 }
6886
6887 case ISD::SHL: {
6888 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006889 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006890 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006891 SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006892 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006893 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006894 // Now that the custom expander is done, expand the result, which is
6895 // still VT.
6896 ExpandOp(Op, Lo, Hi);
6897 break;
6898 }
6899 }
Scott Michel91099d62009-02-17 22:15:04 +00006900
6901 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006902 // this X << 1 as X+X.
6903 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman52c51aa2009-01-28 17:46:25 +00006904 if (ShAmt->getAPIntValue() == 1 &&
Scott Michel91099d62009-02-17 22:15:04 +00006905 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00006906 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006907 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006908 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6909 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6910 LoOps[1] = LoOps[0];
Dale Johannesen82b5b722009-02-02 22:12:50 +00006911 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006912
6913 HiOps[1] = HiOps[0];
6914 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006915 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006916 break;
6917 }
6918 }
Scott Michel91099d62009-02-17 22:15:04 +00006919
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006920 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006921 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006922 break;
6923
6924 // If this target supports SHL_PARTS, use it.
6925 TargetLowering::LegalizeAction Action =
6926 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6927 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6928 Action == TargetLowering::Custom) {
Scott Michel91099d62009-02-17 22:15:04 +00006929 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006930 ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006931 break;
6932 }
6933
6934 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006935 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006936 break;
6937 }
6938
6939 case ISD::SRA: {
6940 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006941 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006942 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dale Johannesen18ae8af2009-02-06 21:55:48 +00006943 SDValue Op = DAG.getNode(ISD::SRA, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006944 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006945 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006946 // Now that the custom expander is done, expand the result, which is
6947 // still VT.
6948 ExpandOp(Op, Lo, Hi);
6949 break;
6950 }
6951 }
Scott Michel91099d62009-02-17 22:15:04 +00006952
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006953 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006954 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006955 break;
6956
6957 // If this target supports SRA_PARTS, use it.
6958 TargetLowering::LegalizeAction Action =
6959 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6960 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6961 Action == TargetLowering::Custom) {
Scott Michel91099d62009-02-17 22:15:04 +00006962 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006963 ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006964 break;
6965 }
6966
6967 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006968 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006969 break;
6970 }
6971
6972 case ISD::SRL: {
6973 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006974 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006975 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006976 SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006977 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006978 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006979 // Now that the custom expander is done, expand the result, which is
6980 // still VT.
6981 ExpandOp(Op, Lo, Hi);
6982 break;
6983 }
6984 }
6985
6986 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006987 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006988 break;
6989
6990 // If this target supports SRL_PARTS, use it.
6991 TargetLowering::LegalizeAction Action =
6992 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6993 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6994 Action == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006995 ExpandShiftParts(ISD::SRL_PARTS,
6996 Node->getOperand(0), ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006997 break;
6998 }
6999
7000 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007001 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007002 break;
7003 }
7004
7005 case ISD::ADD:
7006 case ISD::SUB: {
7007 // If the target wants to custom expand this, let them.
7008 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
7009 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007010 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00007011 if (Result.getNode()) {
Duncan Sands4c3885b2008-06-22 09:42:16 +00007012 ExpandOp(Result, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007013 break;
7014 }
7015 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007016 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007017 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007018 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7019 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman8181bd12008-07-27 21:46:04 +00007020 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007021 LoOps[0] = LHSL;
7022 LoOps[1] = RHSL;
7023 HiOps[0] = LHSH;
7024 HiOps[1] = RHSH;
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007025
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007026 //cascaded check to see if any smaller size has a a carry flag.
7027 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
7028 bool hasCarry = false;
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007029 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
7030 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohman52c51aa2009-01-28 17:46:25 +00007031 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007032 hasCarry = true;
7033 break;
7034 }
7035 }
7036
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007037 if(hasCarry) {
Evan Cheng2bdd3d92008-12-12 18:49:09 +00007038 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007039 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007040 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007041 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007042 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007043 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007044 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007045 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007046 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007047 }
7048 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007049 } else {
Andrew Lenharth5e814462008-10-07 14:15:42 +00007050 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007051 Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2);
7052 Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
7053 SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007054 Lo, LoOps[0], ISD::SETULT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007055 SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
Scott Michel91099d62009-02-17 22:15:04 +00007056 DAG.getConstant(1, NVT),
Andrew Lenharth5e814462008-10-07 14:15:42 +00007057 DAG.getConstant(0, NVT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00007058 SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007059 Lo, LoOps[1], ISD::SETULT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007060 SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
Scott Michel91099d62009-02-17 22:15:04 +00007061 DAG.getConstant(1, NVT),
Andrew Lenharth5e814462008-10-07 14:15:42 +00007062 Carry1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007063 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007064 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007065 Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
7066 Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
7067 SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT);
7068 SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
Scott Michel91099d62009-02-17 22:15:04 +00007069 DAG.getConstant(1, NVT),
Andrew Lenharth5e814462008-10-07 14:15:42 +00007070 DAG.getConstant(0, NVT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00007071 Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007072 }
7073 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007074 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007075 }
Scott Michel91099d62009-02-17 22:15:04 +00007076
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007077 case ISD::ADDC:
7078 case ISD::SUBC: {
7079 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007080 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007081 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7082 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7083 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00007084 SDValue LoOps[2] = { LHSL, RHSL };
7085 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michel91099d62009-02-17 22:15:04 +00007086
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007087 if (Node->getOpcode() == ISD::ADDC) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007088 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007089 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007090 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007091 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007092 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007093 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007094 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007095 }
7096 // Remember that we legalized the flag.
7097 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7098 break;
7099 }
7100 case ISD::ADDE:
7101 case ISD::SUBE: {
7102 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007103 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007104 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7105 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7106 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00007107 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7108 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michel91099d62009-02-17 22:15:04 +00007109
Dale Johannesen82b5b722009-02-02 22:12:50 +00007110 Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007111 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007112 Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3);
Scott Michel91099d62009-02-17 22:15:04 +00007113
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007114 // Remember that we legalized the flag.
7115 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7116 break;
7117 }
7118 case ISD::MUL: {
7119 // If the target wants to custom expand this, let them.
7120 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007121 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00007122 if (New.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007123 ExpandOp(New, Lo, Hi);
7124 break;
7125 }
7126 }
Scott Michel91099d62009-02-17 22:15:04 +00007127
Dan Gohman52c51aa2009-01-28 17:46:25 +00007128 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7129 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7130 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7131 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman5a199552007-10-08 18:33:35 +00007132 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007133 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007134 ExpandOp(Node->getOperand(0), LL, LH);
7135 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman07961cd2008-02-25 21:11:39 +00007136 unsigned OuterBitSize = Op.getValueSizeInBits();
7137 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman5a199552007-10-08 18:33:35 +00007138 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7139 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman2594d942008-03-10 20:42:19 +00007140 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7141 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7142 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman5a199552007-10-08 18:33:35 +00007143 // The inputs are both zero-extended.
7144 if (HasUMUL_LOHI) {
7145 // We can emit a umul_lohi.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007146 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00007147 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00007148 break;
7149 }
7150 if (HasMULHU) {
7151 // We can emit a mulhu+mul.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007152 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7153 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
Dan Gohman5a199552007-10-08 18:33:35 +00007154 break;
7155 }
Dan Gohman5a199552007-10-08 18:33:35 +00007156 }
Dan Gohman07961cd2008-02-25 21:11:39 +00007157 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman5a199552007-10-08 18:33:35 +00007158 // The input values are both sign-extended.
7159 if (HasSMUL_LOHI) {
7160 // We can emit a smul_lohi.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007161 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00007162 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00007163 break;
7164 }
7165 if (HasMULHS) {
7166 // We can emit a mulhs+mul.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007167 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7168 Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
Dan Gohman5a199552007-10-08 18:33:35 +00007169 break;
7170 }
7171 }
7172 if (HasUMUL_LOHI) {
7173 // Lo,Hi = umul LHS, RHS.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007174 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
Dan Gohman5a199552007-10-08 18:33:35 +00007175 DAG.getVTList(NVT, NVT), LL, RL);
7176 Lo = UMulLOHI;
7177 Hi = UMulLOHI.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007178 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7179 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7180 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7181 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007182 break;
7183 }
Dale Johannesen612c88b2007-10-24 22:26:08 +00007184 if (HasMULHU) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007185 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7186 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
7187 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7188 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7189 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7190 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dale Johannesen612c88b2007-10-24 22:26:08 +00007191 break;
7192 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007193 }
7194
Dan Gohman5a199552007-10-08 18:33:35 +00007195 // If nothing else, we can make a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007196 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007197 break;
7198 }
7199 case ISD::SDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007200 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007201 break;
7202 case ISD::UDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007203 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007204 break;
7205 case ISD::SREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007206 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007207 break;
7208 case ISD::UREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007209 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007210 break;
7211
7212 case ISD::FADD:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007213 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7214 RTLIB::ADD_F64,
7215 RTLIB::ADD_F80,
7216 RTLIB::ADD_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007217 Node, false, Hi);
7218 break;
7219 case ISD::FSUB:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007220 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7221 RTLIB::SUB_F64,
7222 RTLIB::SUB_F80,
7223 RTLIB::SUB_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007224 Node, false, Hi);
7225 break;
7226 case ISD::FMUL:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007227 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7228 RTLIB::MUL_F64,
7229 RTLIB::MUL_F80,
7230 RTLIB::MUL_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007231 Node, false, Hi);
7232 break;
7233 case ISD::FDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007234 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7235 RTLIB::DIV_F64,
7236 RTLIB::DIV_F80,
7237 RTLIB::DIV_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007238 Node, false, Hi);
7239 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007240 case ISD::FP_EXTEND: {
Dale Johannesen4c14d512007-10-12 01:37:08 +00007241 if (VT == MVT::ppcf128) {
7242 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7243 Node->getOperand(0).getValueType()==MVT::f64);
7244 const uint64_t zero = 0;
7245 if (Node->getOperand(0).getValueType()==MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00007246 Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0));
Dale Johannesen4c14d512007-10-12 01:37:08 +00007247 else
7248 Hi = Node->getOperand(0);
7249 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7250 break;
7251 }
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007252 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7253 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7254 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007255 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007256 }
7257 case ISD::FP_ROUND: {
7258 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7259 VT);
7260 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7261 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007262 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007263 }
Evan Cheng5316b392008-09-09 23:02:14 +00007264 case ISD::FSQRT:
7265 case ISD::FSIN:
Scott Michel91099d62009-02-17 22:15:04 +00007266 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007267 case ISD::FLOG:
7268 case ISD::FLOG2:
7269 case ISD::FLOG10:
7270 case ISD::FEXP:
7271 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00007272 case ISD::FTRUNC:
7273 case ISD::FFLOOR:
7274 case ISD::FCEIL:
7275 case ISD::FRINT:
7276 case ISD::FNEARBYINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00007277 case ISD::FPOW:
7278 case ISD::FPOWI: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007279 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
7280 switch(Node->getOpcode()) {
7281 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00007282 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7283 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007284 break;
7285 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00007286 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7287 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007288 break;
7289 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00007290 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7291 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007292 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00007293 case ISD::FLOG:
7294 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7295 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7296 break;
7297 case ISD::FLOG2:
7298 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7299 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7300 break;
7301 case ISD::FLOG10:
7302 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7303 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7304 break;
7305 case ISD::FEXP:
7306 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7307 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7308 break;
7309 case ISD::FEXP2:
7310 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7311 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7312 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00007313 case ISD::FTRUNC:
7314 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7315 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7316 break;
7317 case ISD::FFLOOR:
7318 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7319 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7320 break;
7321 case ISD::FCEIL:
7322 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7323 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7324 break;
7325 case ISD::FRINT:
7326 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7327 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7328 break;
7329 case ISD::FNEARBYINT:
7330 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7331 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7332 break;
Evan Cheng5316b392008-09-09 23:02:14 +00007333 case ISD::FPOW:
7334 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7335 RTLIB::POW_PPCF128);
7336 break;
7337 case ISD::FPOWI:
7338 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7339 RTLIB::POWI_PPCF128);
7340 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007341 default: assert(0 && "Unreachable!");
7342 }
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007343 Lo = ExpandLibCall(LC, Node, false, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007344 break;
7345 }
7346 case ISD::FABS: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00007347 if (VT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007348 SDValue Tmp;
Dale Johannesen5707ef82007-10-12 19:02:17 +00007349 ExpandOp(Node->getOperand(0), Lo, Tmp);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007350 Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp);
Dale Johannesen5707ef82007-10-12 19:02:17 +00007351 // lo = hi==fabs(hi) ? lo : -lo;
Dale Johannesen82b5b722009-02-02 22:12:50 +00007352 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp,
Bob Wilson2e958a42009-04-10 18:48:47 +00007353 Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo),
7354 DAG.getCondCode(ISD::SETEQ));
Dale Johannesen5707ef82007-10-12 19:02:17 +00007355 break;
7356 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007357 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007358 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7359 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007360 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7361 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7362 Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007363 if (getTypeAction(NVT) == Expand)
7364 ExpandOp(Lo, Lo, Hi);
7365 break;
7366 }
7367 case ISD::FNEG: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00007368 if (VT == MVT::ppcf128) {
7369 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007370 Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo);
7371 Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi);
Dale Johannesen5707ef82007-10-12 19:02:17 +00007372 break;
7373 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007374 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007375 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7376 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007377 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7378 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7379 Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007380 if (getTypeAction(NVT) == Expand)
7381 ExpandOp(Lo, Lo, Hi);
7382 break;
7383 }
7384 case ISD::FCOPYSIGN: {
7385 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7386 if (getTypeAction(NVT) == Expand)
7387 ExpandOp(Lo, Lo, Hi);
7388 break;
7389 }
7390 case ISD::SINT_TO_FP:
7391 case ISD::UINT_TO_FP: {
7392 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands92c43912008-06-06 12:08:01 +00007393 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesen6a779c82008-03-18 17:28:38 +00007394
7395 // Promote the operand if needed. Do this before checking for
7396 // ppcf128 so conversions of i16 and i8 work.
7397 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007398 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesen6a779c82008-03-18 17:28:38 +00007399 Tmp = isSigned
Dale Johannesen82b5b722009-02-02 22:12:50 +00007400 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp,
Dale Johannesen6a779c82008-03-18 17:28:38 +00007401 DAG.getValueType(SrcVT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00007402 : DAG.getZeroExtendInReg(Tmp, dl, SrcVT);
Gabor Greif1c80d112008-08-28 21:40:38 +00007403 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesen6a779c82008-03-18 17:28:38 +00007404 SrcVT = Node->getOperand(0).getValueType();
7405 }
7406
Dan Gohmanec51f642008-03-10 23:03:31 +00007407 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohman84d00962008-02-25 21:39:34 +00007408 static const uint64_t zero = 0;
Dale Johannesen4c14d512007-10-12 01:37:08 +00007409 if (isSigned) {
Scott Michel91099d62009-02-17 22:15:04 +00007410 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesen4c14d512007-10-12 01:37:08 +00007411 Node->getOperand(0)));
7412 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7413 } else {
Dan Gohman84d00962008-02-25 21:39:34 +00007414 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Scott Michel91099d62009-02-17 22:15:04 +00007415 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesen4c14d512007-10-12 01:37:08 +00007416 Node->getOperand(0)));
7417 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007418 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007419 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen82b5b722009-02-02 22:12:50 +00007420 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl,
7421 MVT::ppcf128, Node->getOperand(0),
Scott Michel91099d62009-02-17 22:15:04 +00007422 DAG.getConstant(0, MVT::i32),
Dale Johannesen82b5b722009-02-02 22:12:50 +00007423 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilson2e958a42009-04-10 18:48:47 +00007424 DAG.getConstantFP
7425 (APFloat(APInt(128, 2, TwoE32)),
7426 MVT::ppcf128)),
Dale Johannesen4c14d512007-10-12 01:37:08 +00007427 Hi,
7428 DAG.getCondCode(ISD::SETLT)),
7429 Lo, Hi);
7430 }
7431 break;
7432 }
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007433 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7434 // si64->ppcf128 done by libcall, below
Dan Gohman84d00962008-02-25 21:39:34 +00007435 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen82b5b722009-02-02 22:12:50 +00007436 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128,
7437 Node->getOperand(0)), Lo, Hi);
7438 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007439 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
Dale Johannesen82b5b722009-02-02 22:12:50 +00007440 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128,
7441 Node->getOperand(0),
Scott Michel91099d62009-02-17 22:15:04 +00007442 DAG.getConstant(0, MVT::i64),
Dale Johannesen82b5b722009-02-02 22:12:50 +00007443 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilson2e958a42009-04-10 18:48:47 +00007444 DAG.getConstantFP
7445 (APFloat(APInt(128, 2, TwoE64)),
7446 MVT::ppcf128)),
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007447 Hi,
7448 DAG.getCondCode(ISD::SETLT)),
7449 Lo, Hi);
7450 break;
7451 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007452
Dan Gohmanec51f642008-03-10 23:03:31 +00007453 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00007454 Node->getOperand(0), dl);
Evan Chenga8740032008-04-01 01:50:16 +00007455 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng4a2f6df2008-04-01 01:51:26 +00007456 // float to i32 etc. can be 'expanded' to a single node.
Evan Chenga8740032008-04-01 01:50:16 +00007457 ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007458 break;
7459 }
7460 }
7461
7462 // Make sure the resultant values have been legalized themselves, unless this
7463 // is a type that requires multi-step expansion.
7464 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7465 Lo = LegalizeOp(Lo);
Gabor Greif1c80d112008-08-28 21:40:38 +00007466 if (Hi.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007467 // Don't legalize the high part if it is expanded to a single node.
7468 Hi = LegalizeOp(Hi);
7469 }
7470
7471 // Remember in a map if the values will be reused later.
Dan Gohman55d19662008-07-07 17:46:23 +00007472 bool isNew =
7473 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007474 assert(isNew && "Value already expanded?!?");
Evan Chengcf576fd2008-11-24 07:09:49 +00007475 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007476}
7477
7478/// SplitVectorOp - Given an operand of vector type, break it down into
7479/// two smaller values, still of vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00007480void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7481 SDValue &Hi) {
Duncan Sands92c43912008-06-06 12:08:01 +00007482 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greif1c80d112008-08-28 21:40:38 +00007483 SDNode *Node = Op.getNode();
Dale Johannesen352c47e2009-02-02 20:41:04 +00007484 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00007485 unsigned NumElements = Op.getValueType().getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007486 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman4a365ad2007-11-15 21:15:26 +00007487
Duncan Sands92c43912008-06-06 12:08:01 +00007488 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman4a365ad2007-11-15 21:15:26 +00007489
7490 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7491 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7492
Duncan Sands92c43912008-06-06 12:08:01 +00007493 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7494 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman4a365ad2007-11-15 21:15:26 +00007495
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007496 // See if we already split it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007497 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007498 = SplitNodes.find(Op);
7499 if (I != SplitNodes.end()) {
7500 Lo = I->second.first;
7501 Hi = I->second.second;
7502 return;
7503 }
Scott Michel91099d62009-02-17 22:15:04 +00007504
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007505 switch (Node->getOpcode()) {
Scott Michel91099d62009-02-17 22:15:04 +00007506 default:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007507#ifndef NDEBUG
7508 Node->dump(&DAG);
7509#endif
7510 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattner3dec33a2007-11-19 20:21:32 +00007511 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007512 Lo = DAG.getUNDEF(NewVT_Lo);
7513 Hi = DAG.getUNDEF(NewVT_Hi);
Chris Lattner3dec33a2007-11-19 20:21:32 +00007514 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007515 case ISD::BUILD_PAIR:
7516 Lo = Node->getOperand(0);
7517 Hi = Node->getOperand(1);
7518 break;
Dan Gohmanb3228dc2007-09-28 23:53:40 +00007519 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007520 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7521 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007522 unsigned Index = Idx->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007523 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007524 if (Index < NewNumElts_Lo)
Dale Johannesend8fd5342009-02-02 22:49:46 +00007525 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Lo, Lo, ScalarOp,
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007526 DAG.getIntPtrConstant(Index));
7527 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00007528 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Hi, Hi, ScalarOp,
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007529 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7530 break;
7531 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007532 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Bob Wilson2e958a42009-04-10 18:48:47 +00007533 Node->getOperand(1),
7534 Node->getOperand(2), dl);
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007535 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohmanb3228dc2007-09-28 23:53:40 +00007536 break;
7537 }
Chris Lattner587c46d2007-11-19 21:16:54 +00007538 case ISD::VECTOR_SHUFFLE: {
7539 // Build the low part.
Dan Gohman8181bd12008-07-27 21:46:04 +00007540 SDValue Mask = Node->getOperand(2);
7541 SmallVector<SDValue, 8> Ops;
Duncan Sands92c43912008-06-06 12:08:01 +00007542 MVT PtrVT = TLI.getPointerTy();
Scott Michel91099d62009-02-17 22:15:04 +00007543
7544 // Insert all of the elements from the input that are needed. We use
Chris Lattner587c46d2007-11-19 21:16:54 +00007545 // buildvector of extractelement here because the input vectors will have
7546 // to be legalized, so this makes the code simpler.
7547 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007548 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007549 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007550 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007551 continue;
7552 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007553 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007554 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00007555 if (Idx >= NumElements) {
7556 InVec = Node->getOperand(1);
7557 Idx -= NumElements;
7558 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00007559 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner587c46d2007-11-19 21:16:54 +00007560 DAG.getConstant(Idx, PtrVT)));
7561 }
Evan Cheng907a2d22009-02-25 22:49:59 +00007562 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &Ops[0], Ops.size());
Chris Lattner587c46d2007-11-19 21:16:54 +00007563 Ops.clear();
Scott Michel91099d62009-02-17 22:15:04 +00007564
Chris Lattner587c46d2007-11-19 21:16:54 +00007565 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007566 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007567 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007568 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007569 continue;
7570 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007571 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007572 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00007573 if (Idx >= NumElements) {
7574 InVec = Node->getOperand(1);
7575 Idx -= NumElements;
7576 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00007577 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner587c46d2007-11-19 21:16:54 +00007578 DAG.getConstant(Idx, PtrVT)));
7579 }
Evan Cheng907a2d22009-02-25 22:49:59 +00007580 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner587c46d2007-11-19 21:16:54 +00007581 break;
7582 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007583 case ISD::BUILD_VECTOR: {
Scott Michel91099d62009-02-17 22:15:04 +00007584 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Bob Wilson2e958a42009-04-10 18:48:47 +00007585 Node->op_begin()+NewNumElts_Lo);
Evan Cheng907a2d22009-02-25 22:49:59 +00007586 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007587
Scott Michel91099d62009-02-17 22:15:04 +00007588 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Bob Wilson2e958a42009-04-10 18:48:47 +00007589 Node->op_end());
Evan Cheng907a2d22009-02-25 22:49:59 +00007590 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007591 break;
7592 }
7593 case ISD::CONCAT_VECTORS: {
Nate Begeman4a365ad2007-11-15 21:15:26 +00007594 // FIXME: Handle non-power-of-two vectors?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007595 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7596 if (NewNumSubvectors == 1) {
7597 Lo = Node->getOperand(0);
7598 Hi = Node->getOperand(1);
7599 } else {
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007600 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7601 Node->op_begin()+NewNumSubvectors);
Scott Michel91099d62009-02-17 22:15:04 +00007602 Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Lo,
Dale Johannesend8fd5342009-02-02 22:49:46 +00007603 &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007604
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007605 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Bob Wilson2e958a42009-04-10 18:48:47 +00007606 Node->op_end());
Scott Michel91099d62009-02-17 22:15:04 +00007607 Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Hi,
Dale Johannesend8fd5342009-02-02 22:49:46 +00007608 &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007609 }
7610 break;
7611 }
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007612 case ISD::EXTRACT_SUBVECTOR: {
7613 SDValue Vec = Op.getOperand(0);
7614 SDValue Idx = Op.getOperand(1);
7615 MVT IdxVT = Idx.getValueType();
7616
Dale Johannesend8fd5342009-02-02 22:49:46 +00007617 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Lo, Vec, Idx);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007618 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7619 if (CIdx) {
Scott Michel91099d62009-02-17 22:15:04 +00007620 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec,
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007621 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7622 IdxVT));
7623 } else {
Dale Johannesend8fd5342009-02-02 22:49:46 +00007624 Idx = DAG.getNode(ISD::ADD, dl, IdxVT, Idx,
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007625 DAG.getConstant(NewNumElts_Lo, IdxVT));
Dale Johannesend8fd5342009-02-02 22:49:46 +00007626 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec, Idx);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007627 }
7628 break;
7629 }
Dan Gohmand5d4c872007-10-17 14:48:28 +00007630 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007631 SDValue Cond = Node->getOperand(0);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007632
Dan Gohman8181bd12008-07-27 21:46:04 +00007633 SDValue LL, LH, RL, RH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00007634 SplitVectorOp(Node->getOperand(1), LL, LH);
7635 SplitVectorOp(Node->getOperand(2), RL, RH);
7636
Duncan Sands92c43912008-06-06 12:08:01 +00007637 if (Cond.getValueType().isVector()) {
Dan Gohmand5d4c872007-10-17 14:48:28 +00007638 // Handle a vector merge.
Dan Gohman8181bd12008-07-27 21:46:04 +00007639 SDValue CL, CH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00007640 SplitVectorOp(Cond, CL, CH);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007641 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, CL, LL, RL);
7642 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, CH, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007643 } else {
7644 // Handle a simple select with vector operands.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007645 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, Cond, LL, RL);
7646 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, Cond, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007647 }
7648 break;
7649 }
Chris Lattnerc7471452008-06-30 02:43:01 +00007650 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007651 SDValue CondLHS = Node->getOperand(0);
7652 SDValue CondRHS = Node->getOperand(1);
7653 SDValue CondCode = Node->getOperand(4);
Scott Michel91099d62009-02-17 22:15:04 +00007654
Dan Gohman8181bd12008-07-27 21:46:04 +00007655 SDValue LL, LH, RL, RH;
Chris Lattnerc7471452008-06-30 02:43:01 +00007656 SplitVectorOp(Node->getOperand(2), LL, LH);
7657 SplitVectorOp(Node->getOperand(3), RL, RH);
Scott Michel91099d62009-02-17 22:15:04 +00007658
Chris Lattnerc7471452008-06-30 02:43:01 +00007659 // Handle a simple select with vector operands.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007660 Lo = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Lo, CondLHS, CondRHS,
Chris Lattnerc7471452008-06-30 02:43:01 +00007661 LL, RL, CondCode);
Scott Michel91099d62009-02-17 22:15:04 +00007662 Hi = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Hi, CondLHS, CondRHS,
Chris Lattnerc7471452008-06-30 02:43:01 +00007663 LH, RH, CondCode);
7664 break;
7665 }
Nate Begeman9a1ce152008-05-12 19:40:03 +00007666 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007667 SDValue LL, LH, RL, RH;
Nate Begeman9a1ce152008-05-12 19:40:03 +00007668 SplitVectorOp(Node->getOperand(0), LL, LH);
7669 SplitVectorOp(Node->getOperand(1), RL, RH);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007670 Lo = DAG.getNode(ISD::VSETCC, dl, NewVT_Lo, LL, RL, Node->getOperand(2));
7671 Hi = DAG.getNode(ISD::VSETCC, dl, NewVT_Hi, LH, RH, Node->getOperand(2));
Nate Begeman9a1ce152008-05-12 19:40:03 +00007672 break;
7673 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007674 case ISD::ADD:
7675 case ISD::SUB:
7676 case ISD::MUL:
7677 case ISD::FADD:
7678 case ISD::FSUB:
7679 case ISD::FMUL:
7680 case ISD::SDIV:
7681 case ISD::UDIV:
7682 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007683 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007684 case ISD::AND:
7685 case ISD::OR:
Dan Gohman9e1b7ee2007-11-19 15:15:03 +00007686 case ISD::XOR:
7687 case ISD::UREM:
7688 case ISD::SREM:
Mon P Wang26342922008-12-18 20:03:17 +00007689 case ISD::FREM:
7690 case ISD::SHL:
7691 case ISD::SRA:
7692 case ISD::SRL: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007693 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007694 SplitVectorOp(Node->getOperand(0), LL, LH);
7695 SplitVectorOp(Node->getOperand(1), RL, RH);
Scott Michel91099d62009-02-17 22:15:04 +00007696
Dale Johannesend8fd5342009-02-02 22:49:46 +00007697 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, LL, RL);
7698 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007699 break;
7700 }
Dan Gohman29c3cef2008-08-14 20:04:46 +00007701 case ISD::FP_ROUND:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007702 case ISD::FPOWI: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007703 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007704 SplitVectorOp(Node->getOperand(0), L, H);
7705
Dale Johannesend8fd5342009-02-02 22:49:46 +00007706 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L, Node->getOperand(1));
7707 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H, Node->getOperand(1));
Dan Gohman6d05cac2007-10-11 23:57:53 +00007708 break;
7709 }
7710 case ISD::CTTZ:
7711 case ISD::CTLZ:
7712 case ISD::CTPOP:
7713 case ISD::FNEG:
7714 case ISD::FABS:
7715 case ISD::FSQRT:
7716 case ISD::FSIN:
Nate Begeman78246ca2007-11-17 03:58:34 +00007717 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007718 case ISD::FLOG:
7719 case ISD::FLOG2:
7720 case ISD::FLOG10:
7721 case ISD::FEXP:
7722 case ISD::FEXP2:
Nate Begeman78246ca2007-11-17 03:58:34 +00007723 case ISD::FP_TO_SINT:
7724 case ISD::FP_TO_UINT:
7725 case ISD::SINT_TO_FP:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007726 case ISD::UINT_TO_FP:
7727 case ISD::TRUNCATE:
7728 case ISD::ANY_EXTEND:
7729 case ISD::SIGN_EXTEND:
7730 case ISD::ZERO_EXTEND:
7731 case ISD::FP_EXTEND: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007732 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007733 SplitVectorOp(Node->getOperand(0), L, H);
7734
Dale Johannesend8fd5342009-02-02 22:49:46 +00007735 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L);
7736 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H);
Dan Gohman6d05cac2007-10-11 23:57:53 +00007737 break;
7738 }
Mon P Wang73d31542008-11-10 20:54:11 +00007739 case ISD::CONVERT_RNDSAT: {
7740 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7741 SDValue L, H;
7742 SplitVectorOp(Node->getOperand(0), L, H);
Bob Wilson2e958a42009-04-10 18:48:47 +00007743 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7744 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7745 SDValue STyOpL = DAG.getValueType(L.getValueType());
7746 SDValue STyOpH = DAG.getValueType(H.getValueType());
Mon P Wang73d31542008-11-10 20:54:11 +00007747
7748 SDValue RndOp = Node->getOperand(3);
7749 SDValue SatOp = Node->getOperand(4);
7750
Dale Johannesen564036c2009-02-04 00:13:36 +00007751 Lo = DAG.getConvertRndSat(NewVT_Lo, dl, L, DTyOpL, STyOpL,
Mon P Wang73d31542008-11-10 20:54:11 +00007752 RndOp, SatOp, CvtCode);
Dale Johannesen564036c2009-02-04 00:13:36 +00007753 Hi = DAG.getConvertRndSat(NewVT_Hi, dl, H, DTyOpH, STyOpH,
Mon P Wang73d31542008-11-10 20:54:11 +00007754 RndOp, SatOp, CvtCode);
7755 break;
7756 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007757 case ISD::LOAD: {
7758 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007759 SDValue Ch = LD->getChain();
7760 SDValue Ptr = LD->getBasePtr();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007761 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007762 const Value *SV = LD->getSrcValue();
7763 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007764 MVT MemoryVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007765 unsigned Alignment = LD->getAlignment();
7766 bool isVolatile = LD->isVolatile();
7767
Dan Gohman29c3cef2008-08-14 20:04:46 +00007768 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007769 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Dan Gohman29c3cef2008-08-14 20:04:46 +00007770
7771 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7772 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7773 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7774
Dale Johannesend8fd5342009-02-02 22:49:46 +00007775 Lo = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007776 NewVT_Lo, Ch, Ptr, Offset,
7777 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7778 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dale Johannesend8fd5342009-02-02 22:49:46 +00007779 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00007780 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007781 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00007782 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007783 Hi = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007784 NewVT_Hi, Ch, Ptr, Offset,
7785 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Scott Michel91099d62009-02-17 22:15:04 +00007786
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007787 // Build a factor node to remember that this load is independent of the
7788 // other one.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007789 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilson2e958a42009-04-10 18:48:47 +00007790 Hi.getValue(1));
Scott Michel91099d62009-02-17 22:15:04 +00007791
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007792 // Remember that we legalized the chain.
7793 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
7794 break;
7795 }
7796 case ISD::BIT_CONVERT: {
7797 // We know the result is a vector. The input may be either a vector or a
7798 // scalar value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007799 SDValue InOp = Node->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007800 if (!InOp.getValueType().isVector() ||
7801 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007802 // The input is a scalar or single-element vector.
7803 // Lower to a store/load so that it can be split.
7804 // FIXME: this could be improved probably.
Bob Wilson2e958a42009-04-10 18:48:47 +00007805 unsigned LdAlign = TLI.getTargetData()->
7806 getPrefTypeAlignment(Op.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00007807 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greif1c80d112008-08-28 21:40:38 +00007808 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007809
Dale Johannesend8fd5342009-02-02 22:49:46 +00007810 SDValue St = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilson2e958a42009-04-10 18:48:47 +00007811 InOp, Ptr,
7812 PseudoSourceValue::getFixedStack(FI), 0);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007813 InOp = DAG.getLoad(Op.getValueType(), dl, St, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007814 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007815 }
7816 // Split the vector and convert each of the pieces now.
7817 SplitVectorOp(InOp, Lo, Hi);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007818 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Lo, Lo);
7819 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Hi, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007820 break;
7821 }
7822 }
Scott Michel91099d62009-02-17 22:15:04 +00007823
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007824 // Remember in a map if the values will be reused later.
Scott Michel91099d62009-02-17 22:15:04 +00007825 bool isNew =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007826 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
7827 assert(isNew && "Value already split?!?");
Evan Chengcf576fd2008-11-24 07:09:49 +00007828 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007829}
7830
7831
7832/// ScalarizeVectorOp - Given an operand of single-element vector type
7833/// (e.g. v1f32), convert it into the equivalent operation that returns a
7834/// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007835SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00007836 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greif1c80d112008-08-28 21:40:38 +00007837 SDNode *Node = Op.getNode();
Dale Johannesend8fd5342009-02-02 22:49:46 +00007838 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00007839 MVT NewVT = Op.getValueType().getVectorElementType();
7840 assert(Op.getValueType().getVectorNumElements() == 1);
Scott Michel91099d62009-02-17 22:15:04 +00007841
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007842 // See if we already scalarized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007843 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007844 if (I != ScalarizedNodes.end()) return I->second;
Scott Michel91099d62009-02-17 22:15:04 +00007845
Dan Gohman8181bd12008-07-27 21:46:04 +00007846 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007847 switch (Node->getOpcode()) {
Scott Michel91099d62009-02-17 22:15:04 +00007848 default:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007849#ifndef NDEBUG
7850 Node->dump(&DAG); cerr << "\n";
7851#endif
7852 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7853 case ISD::ADD:
7854 case ISD::FADD:
7855 case ISD::SUB:
7856 case ISD::FSUB:
7857 case ISD::MUL:
7858 case ISD::FMUL:
7859 case ISD::SDIV:
7860 case ISD::UDIV:
7861 case ISD::FDIV:
7862 case ISD::SREM:
7863 case ISD::UREM:
7864 case ISD::FREM:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007865 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007866 case ISD::AND:
7867 case ISD::OR:
7868 case ISD::XOR:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007869 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michel91099d62009-02-17 22:15:04 +00007870 NewVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007871 ScalarizeVectorOp(Node->getOperand(0)),
7872 ScalarizeVectorOp(Node->getOperand(1)));
7873 break;
7874 case ISD::FNEG:
7875 case ISD::FABS:
7876 case ISD::FSQRT:
7877 case ISD::FSIN:
7878 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007879 case ISD::FLOG:
7880 case ISD::FLOG2:
7881 case ISD::FLOG10:
7882 case ISD::FEXP:
7883 case ISD::FEXP2:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007884 case ISD::FP_TO_SINT:
7885 case ISD::FP_TO_UINT:
7886 case ISD::SINT_TO_FP:
7887 case ISD::UINT_TO_FP:
7888 case ISD::SIGN_EXTEND:
7889 case ISD::ZERO_EXTEND:
7890 case ISD::ANY_EXTEND:
7891 case ISD::TRUNCATE:
7892 case ISD::FP_EXTEND:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007893 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michel91099d62009-02-17 22:15:04 +00007894 NewVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007895 ScalarizeVectorOp(Node->getOperand(0)));
7896 break;
Mon P Wang73d31542008-11-10 20:54:11 +00007897 case ISD::CONVERT_RNDSAT: {
7898 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
Dale Johannesen564036c2009-02-04 00:13:36 +00007899 Result = DAG.getConvertRndSat(NewVT, dl, Op0,
Mon P Wang73d31542008-11-10 20:54:11 +00007900 DAG.getValueType(NewVT),
7901 DAG.getValueType(Op0.getValueType()),
7902 Node->getOperand(3),
7903 Node->getOperand(4),
7904 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7905 break;
7906 }
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007907 case ISD::FPOWI:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007908 case ISD::FP_ROUND:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007909 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michel91099d62009-02-17 22:15:04 +00007910 NewVT,
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007911 ScalarizeVectorOp(Node->getOperand(0)),
7912 Node->getOperand(1));
7913 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007914 case ISD::LOAD: {
7915 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007916 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7917 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman29c3cef2008-08-14 20:04:46 +00007918 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007919 const Value *SV = LD->getSrcValue();
7920 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007921 MVT MemoryVT = LD->getMemoryVT();
7922 unsigned Alignment = LD->getAlignment();
7923 bool isVolatile = LD->isVolatile();
7924
7925 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007926 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Scott Michel91099d62009-02-17 22:15:04 +00007927
Dale Johannesend8fd5342009-02-02 22:49:46 +00007928 Result = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007929 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7930 MemoryVT.getVectorElementType(),
7931 isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007932
7933 // Remember that we legalized the chain.
7934 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7935 break;
7936 }
7937 case ISD::BUILD_VECTOR:
7938 Result = Node->getOperand(0);
7939 break;
7940 case ISD::INSERT_VECTOR_ELT:
7941 // Returning the inserted scalar element.
7942 Result = Node->getOperand(1);
7943 break;
7944 case ISD::CONCAT_VECTORS:
7945 assert(Node->getOperand(0).getValueType() == NewVT &&
7946 "Concat of non-legal vectors not yet supported!");
7947 Result = Node->getOperand(0);
7948 break;
7949 case ISD::VECTOR_SHUFFLE: {
7950 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007951 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007952 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007953 Result = ScalarizeVectorOp(Node->getOperand(1));
7954 else
7955 Result = ScalarizeVectorOp(Node->getOperand(0));
7956 break;
7957 }
7958 case ISD::EXTRACT_SUBVECTOR:
Scott Michel91099d62009-02-17 22:15:04 +00007959 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT,
Dale Johannesend8fd5342009-02-02 22:49:46 +00007960 Node->getOperand(0), Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007961 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007962 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007963 SDValue Op0 = Op.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007964 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng2cc16e72008-05-16 17:19:05 +00007965 Op0 = ScalarizeVectorOp(Op0);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007966 Result = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007967 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007968 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007969 case ISD::SELECT:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007970 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Op.getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007971 ScalarizeVectorOp(Op.getOperand(1)),
7972 ScalarizeVectorOp(Op.getOperand(2)));
7973 break;
Chris Lattnerc7471452008-06-30 02:43:01 +00007974 case ISD::SELECT_CC:
Scott Michel91099d62009-02-17 22:15:04 +00007975 Result = DAG.getNode(ISD::SELECT_CC, dl, NewVT, Node->getOperand(0),
Chris Lattnerc7471452008-06-30 02:43:01 +00007976 Node->getOperand(1),
7977 ScalarizeVectorOp(Op.getOperand(2)),
7978 ScalarizeVectorOp(Op.getOperand(3)),
7979 Node->getOperand(4));
7980 break;
Nate Begeman78ca4f92008-05-12 23:09:43 +00007981 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007982 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7983 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Dale Johannesend8fd5342009-02-02 22:49:46 +00007984 Result = DAG.getNode(ISD::SETCC, dl,
7985 TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00007986 Op0, Op1, Op.getOperand(2));
Dale Johannesend8fd5342009-02-02 22:49:46 +00007987 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Result,
Nate Begeman78ca4f92008-05-12 23:09:43 +00007988 DAG.getConstant(-1ULL, NewVT),
7989 DAG.getConstant(0ULL, NewVT));
7990 break;
7991 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007992 }
7993
7994 if (TLI.isTypeLegal(NewVT))
7995 Result = LegalizeOp(Result);
7996 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7997 assert(isNew && "Value already scalarized?");
Evan Chengcf576fd2008-11-24 07:09:49 +00007998 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007999 return Result;
8000}
8001
8002
Mon P Wang1448aad2008-10-30 08:01:45 +00008003SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
8004 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
8005 if (I != WidenNodes.end()) return I->second;
Scott Michel91099d62009-02-17 22:15:04 +00008006
Mon P Wang1448aad2008-10-30 08:01:45 +00008007 MVT VT = Op.getValueType();
8008 assert(VT.isVector() && "Cannot widen non-vector type!");
8009
8010 SDValue Result;
8011 SDNode *Node = Op.getNode();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008012 DebugLoc dl = Node->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008013 MVT EVT = VT.getVectorElementType();
8014
8015 unsigned NumElts = VT.getVectorNumElements();
8016 unsigned NewNumElts = WidenVT.getVectorNumElements();
8017 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
8018 assert(NewNumElts < 17);
8019
8020 // When widen is called, it is assumed that it is more efficient to use a
8021 // wide type. The default action is to widen to operation to a wider legal
8022 // vector type and then do the operation if it is legal by calling LegalizeOp
8023 // again. If there is no vector equivalent, we will unroll the operation, do
8024 // it, and rebuild the vector. If most of the operations are vectorizible to
8025 // the legal type, the resulting code will be more efficient. If this is not
8026 // the case, the resulting code will preform badly as we end up generating
8027 // code to pack/unpack the results. It is the function that calls widen
Mon P Wanga5a239f2008-11-06 05:31:54 +00008028 // that is responsible for seeing this doesn't happen.
Mon P Wang1448aad2008-10-30 08:01:45 +00008029 switch (Node->getOpcode()) {
Scott Michel91099d62009-02-17 22:15:04 +00008030 default:
Mon P Wang1448aad2008-10-30 08:01:45 +00008031#ifndef NDEBUG
8032 Node->dump(&DAG);
8033#endif
8034 assert(0 && "Unexpected operation in WidenVectorOp!");
8035 break;
8036 case ISD::CopyFromReg:
Mon P Wang257e1c72008-11-15 06:05:52 +00008037 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang1448aad2008-10-30 08:01:45 +00008038 case ISD::Constant:
8039 case ISD::ConstantFP:
8040 // To build a vector of these elements, clients should call BuildVector
8041 // and with each element instead of creating a node with a vector type
8042 assert(0 && "Unexpected operation in WidenVectorOp!");
8043 case ISD::VAARG:
8044 // Variable Arguments with vector types doesn't make any sense to me
8045 assert(0 && "Unexpected operation in WidenVectorOp!");
8046 break;
Mon P Wang257e1c72008-11-15 06:05:52 +00008047 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008048 Result = DAG.getUNDEF(WidenVT);
Mon P Wang257e1c72008-11-15 06:05:52 +00008049 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00008050 case ISD::BUILD_VECTOR: {
8051 // Build a vector with undefined for the new nodes
8052 SDValueVector NewOps(Node->op_begin(), Node->op_end());
8053 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008054 NewOps.push_back(DAG.getUNDEF(EVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008055 }
Evan Cheng907a2d22009-02-25 22:49:59 +00008056 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT,
8057 &NewOps[0], NewOps.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008058 break;
8059 }
8060 case ISD::INSERT_VECTOR_ELT: {
8061 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008062 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, WidenVT, Tmp1,
Mon P Wang1448aad2008-10-30 08:01:45 +00008063 Node->getOperand(1), Node->getOperand(2));
8064 break;
8065 }
8066 case ISD::VECTOR_SHUFFLE: {
8067 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8068 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8069 // VECTOR_SHUFFLE 3rd operand must be a constant build vector that is
8070 // used as permutation array. We build the vector here instead of widening
8071 // because we don't want to legalize and have it turned to something else.
8072 SDValue PermOp = Node->getOperand(2);
8073 SDValueVector NewOps;
8074 MVT PVT = PermOp.getValueType().getVectorElementType();
8075 for (unsigned i = 0; i < NumElts; ++i) {
8076 if (PermOp.getOperand(i).getOpcode() == ISD::UNDEF) {
8077 NewOps.push_back(PermOp.getOperand(i));
8078 } else {
8079 unsigned Idx =
Mon P Wangec428ad2008-12-13 08:15:14 +00008080 cast<ConstantSDNode>(PermOp.getOperand(i))->getZExtValue();
Mon P Wang1448aad2008-10-30 08:01:45 +00008081 if (Idx < NumElts) {
8082 NewOps.push_back(PermOp.getOperand(i));
8083 }
8084 else {
8085 NewOps.push_back(DAG.getConstant(Idx + NewNumElts - NumElts,
8086 PermOp.getOperand(i).getValueType()));
Scott Michel91099d62009-02-17 22:15:04 +00008087 }
Mon P Wang1448aad2008-10-30 08:01:45 +00008088 }
8089 }
8090 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008091 NewOps.push_back(DAG.getUNDEF(PVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008092 }
Scott Michel91099d62009-02-17 22:15:04 +00008093
Evan Cheng907a2d22009-02-25 22:49:59 +00008094 SDValue Tmp3 = DAG.getNode(ISD::BUILD_VECTOR, dl,
8095 MVT::getVectorVT(PVT, NewOps.size()),
8096 &NewOps[0], NewOps.size());
Scott Michel91099d62009-02-17 22:15:04 +00008097
Dale Johannesend8fd5342009-02-02 22:49:46 +00008098 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, WidenVT, Tmp1, Tmp2, Tmp3);
Mon P Wang1448aad2008-10-30 08:01:45 +00008099 break;
8100 }
8101 case ISD::LOAD: {
8102 // If the load widen returns true, we can use a single load for the
8103 // vector. Otherwise, it is returning a token factor for multiple
8104 // loads.
8105 SDValue TFOp;
8106 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8107 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8108 else
8109 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8110 break;
8111 }
8112
8113 case ISD::BIT_CONVERT: {
8114 SDValue Tmp1 = Node->getOperand(0);
8115 // Converts between two different types so we need to determine
8116 // the correct widen type for the input operand.
Mon P Wang26342922008-12-18 20:03:17 +00008117 MVT InVT = Tmp1.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00008118 unsigned WidenSize = WidenVT.getSizeInBits();
Mon P Wang26342922008-12-18 20:03:17 +00008119 if (InVT.isVector()) {
8120 MVT InEltVT = InVT.getVectorElementType();
8121 unsigned InEltSize = InEltVT.getSizeInBits();
8122 assert(WidenSize % InEltSize == 0 &&
8123 "can not widen bit convert that are not multiple of element type");
8124 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8125 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8126 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
Dale Johannesend8fd5342009-02-02 22:49:46 +00008127 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Tmp1);
Mon P Wang26342922008-12-18 20:03:17 +00008128 } else {
8129 // If the result size is a multiple of the input size, widen the input
8130 // and then convert.
8131 unsigned InSize = InVT.getSizeInBits();
8132 assert(WidenSize % InSize == 0 &&
8133 "can not widen bit convert that are not multiple of element type");
8134 unsigned NewNumElts = WidenSize / InSize;
8135 SmallVector<SDValue, 16> Ops(NewNumElts);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008136 SDValue UndefVal = DAG.getUNDEF(InVT);
Mon P Wang26342922008-12-18 20:03:17 +00008137 Ops[0] = Tmp1;
8138 for (unsigned i = 1; i < NewNumElts; ++i)
8139 Ops[i] = UndefVal;
Mon P Wang1448aad2008-10-30 08:01:45 +00008140
Mon P Wang26342922008-12-18 20:03:17 +00008141 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
Evan Cheng907a2d22009-02-25 22:49:59 +00008142 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, NewInVT, &Ops[0], NewNumElts);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008143 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Result);
Mon P Wang1448aad2008-10-30 08:01:45 +00008144 }
8145 break;
8146 }
8147
8148 case ISD::SINT_TO_FP:
8149 case ISD::UINT_TO_FP:
8150 case ISD::FP_TO_SINT:
Mon P Wang26342922008-12-18 20:03:17 +00008151 case ISD::FP_TO_UINT:
8152 case ISD::FP_ROUND: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008153 SDValue Tmp1 = Node->getOperand(0);
8154 // Converts between two different types so we need to determine
8155 // the correct widen type for the input operand.
8156 MVT TVT = Tmp1.getValueType();
8157 assert(TVT.isVector() && "can not widen non vector type");
8158 MVT TEVT = TVT.getVectorElementType();
8159 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8160 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8161 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008162 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang1448aad2008-10-30 08:01:45 +00008163 break;
8164 }
8165
8166 case ISD::FP_EXTEND:
8167 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8168 case ISD::TRUNCATE:
8169 case ISD::SIGN_EXTEND:
8170 case ISD::ZERO_EXTEND:
8171 case ISD::ANY_EXTEND:
Mon P Wang1448aad2008-10-30 08:01:45 +00008172 case ISD::SIGN_EXTEND_INREG:
8173 case ISD::FABS:
8174 case ISD::FNEG:
8175 case ISD::FSQRT:
8176 case ISD::FSIN:
Mon P Wang257e1c72008-11-15 06:05:52 +00008177 case ISD::FCOS:
8178 case ISD::CTPOP:
8179 case ISD::CTTZ:
8180 case ISD::CTLZ: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008181 // Unary op widening
Mon P Wang26342922008-12-18 20:03:17 +00008182 SDValue Tmp1;
Mon P Wang1448aad2008-10-30 08:01:45 +00008183 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8184 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008185 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang1448aad2008-10-30 08:01:45 +00008186 break;
8187 }
Mon P Wang73d31542008-11-10 20:54:11 +00008188 case ISD::CONVERT_RNDSAT: {
8189 SDValue RndOp = Node->getOperand(3);
8190 SDValue SatOp = Node->getOperand(4);
Mon P Wang73d31542008-11-10 20:54:11 +00008191 SDValue SrcOp = Node->getOperand(0);
8192
8193 // Converts between two different types so we need to determine
8194 // the correct widen type for the input operand.
8195 MVT SVT = SrcOp.getValueType();
8196 assert(SVT.isVector() && "can not widen non vector type");
8197 MVT SEVT = SVT.getVectorElementType();
8198 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8199
8200 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8201 assert(SrcOp.getValueType() == WidenVT);
8202 SDValue DTyOp = DAG.getValueType(WidenVT);
8203 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8204 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8205
Dale Johannesen564036c2009-02-04 00:13:36 +00008206 Result = DAG.getConvertRndSat(WidenVT, dl, SrcOp, DTyOp, STyOp,
Mon P Wang73d31542008-11-10 20:54:11 +00008207 RndOp, SatOp, CvtCode);
Mon P Wang73d31542008-11-10 20:54:11 +00008208 break;
8209 }
Mon P Wang1448aad2008-10-30 08:01:45 +00008210 case ISD::FPOW:
Scott Michel91099d62009-02-17 22:15:04 +00008211 case ISD::FPOWI:
Mon P Wang1448aad2008-10-30 08:01:45 +00008212 case ISD::ADD:
8213 case ISD::SUB:
8214 case ISD::MUL:
8215 case ISD::MULHS:
8216 case ISD::MULHU:
8217 case ISD::AND:
8218 case ISD::OR:
8219 case ISD::XOR:
8220 case ISD::FADD:
8221 case ISD::FSUB:
8222 case ISD::FMUL:
8223 case ISD::SDIV:
8224 case ISD::SREM:
8225 case ISD::FDIV:
8226 case ISD::FREM:
8227 case ISD::FCOPYSIGN:
8228 case ISD::UDIV:
8229 case ISD::UREM:
8230 case ISD::BSWAP: {
8231 // Binary op widening
Mon P Wang1448aad2008-10-30 08:01:45 +00008232 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8233 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8234 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008235 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2);
Mon P Wang1448aad2008-10-30 08:01:45 +00008236 break;
8237 }
8238
8239 case ISD::SHL:
8240 case ISD::SRA:
8241 case ISD::SRL: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008242 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8243 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangd5638262008-12-02 07:35:08 +00008244 SDValue ShOp = Node->getOperand(1);
8245 MVT ShVT = ShOp.getValueType();
8246 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8247 WidenVT.getVectorNumElements());
8248 ShOp = WidenVectorOp(ShOp, NewShVT);
8249 assert(ShOp.getValueType() == NewShVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008250 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, ShOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008251 break;
8252 }
Mon P Wangd5638262008-12-02 07:35:08 +00008253
Mon P Wang1448aad2008-10-30 08:01:45 +00008254 case ISD::EXTRACT_VECTOR_ELT: {
8255 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8256 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008257 Result = DAG.getNode(Node->getOpcode(), dl, EVT, Tmp1, Node->getOperand(1));
Mon P Wang1448aad2008-10-30 08:01:45 +00008258 break;
8259 }
8260 case ISD::CONCAT_VECTORS: {
8261 // We concurrently support only widen on a multiple of the incoming vector.
8262 // We could widen on a multiple of the incoming operand if necessary.
8263 unsigned NumConcat = NewNumElts / NumElts;
8264 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008265 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang1448aad2008-10-30 08:01:45 +00008266 SmallVector<SDValue, 8> MOps;
8267 MOps.push_back(Op);
8268 for (unsigned i = 1; i != NumConcat; ++i) {
8269 MOps.push_back(UndefVal);
8270 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00008271 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang1448aad2008-10-30 08:01:45 +00008272 &MOps[0], MOps.size()));
8273 break;
8274 }
8275 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang257e1c72008-11-15 06:05:52 +00008276 SDValue Tmp1 = Node->getOperand(0);
8277 SDValue Idx = Node->getOperand(1);
8278 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8279 if (CIdx && CIdx->getZExtValue() == 0) {
8280 // Since we are access the start of the vector, the incoming
8281 // vector type might be the proper.
8282 MVT Tmp1VT = Tmp1.getValueType();
8283 if (Tmp1VT == WidenVT)
8284 return Tmp1;
8285 else {
8286 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8287 if (Tmp1VTNumElts < NewNumElts)
8288 Result = WidenVectorOp(Tmp1, WidenVT);
8289 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00008290 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, Tmp1, Idx);
Mon P Wang257e1c72008-11-15 06:05:52 +00008291 }
8292 } else if (NewNumElts % NumElts == 0) {
8293 // Widen the extracted subvector.
8294 unsigned NumConcat = NewNumElts / NumElts;
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008295 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang257e1c72008-11-15 06:05:52 +00008296 SmallVector<SDValue, 8> MOps;
8297 MOps.push_back(Op);
8298 for (unsigned i = 1; i != NumConcat; ++i) {
8299 MOps.push_back(UndefVal);
8300 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00008301 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang257e1c72008-11-15 06:05:52 +00008302 &MOps[0], MOps.size()));
8303 } else {
8304 assert(0 && "can not widen extract subvector");
8305 // This could be implemented using insert and build vector but I would
8306 // like to see when this happens.
8307 }
Mon P Wang1448aad2008-10-30 08:01:45 +00008308 break;
8309 }
8310
8311 case ISD::SELECT: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008312 // Determine new condition widen type and widen
8313 SDValue Cond1 = Node->getOperand(0);
8314 MVT CondVT = Cond1.getValueType();
8315 assert(CondVT.isVector() && "can not widen non vector type");
8316 MVT CondEVT = CondVT.getVectorElementType();
8317 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8318 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8319 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8320
8321 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8322 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8323 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008324 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang1448aad2008-10-30 08:01:45 +00008325 break;
8326 }
Scott Michel91099d62009-02-17 22:15:04 +00008327
Mon P Wang1448aad2008-10-30 08:01:45 +00008328 case ISD::SELECT_CC: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008329 // Determine new condition widen type and widen
8330 SDValue Cond1 = Node->getOperand(0);
8331 SDValue Cond2 = Node->getOperand(1);
8332 MVT CondVT = Cond1.getValueType();
8333 assert(CondVT.isVector() && "can not widen non vector type");
8334 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8335 MVT CondEVT = CondVT.getVectorElementType();
8336 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8337 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8338 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8339 assert(Cond1.getValueType() == CondWidenVT &&
8340 Cond2.getValueType() == CondWidenVT && "condition not widen");
8341
8342 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8343 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8344 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8345 "operands not widen");
Dale Johannesend8fd5342009-02-02 22:49:46 +00008346 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Cond2, Tmp1,
Mon P Wang1448aad2008-10-30 08:01:45 +00008347 Tmp2, Node->getOperand(4));
Mon P Wang1448aad2008-10-30 08:01:45 +00008348 break;
Mon P Wang42ac14e2008-10-30 18:21:52 +00008349 }
8350 case ISD::VSETCC: {
8351 // Determine widen for the operand
8352 SDValue Tmp1 = Node->getOperand(0);
8353 MVT TmpVT = Tmp1.getValueType();
8354 assert(TmpVT.isVector() && "can not widen non vector type");
8355 MVT TmpEVT = TmpVT.getVectorElementType();
8356 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8357 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8358 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008359 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2,
Mon P Wang42ac14e2008-10-30 18:21:52 +00008360 Node->getOperand(2));
Mon P Wang1448aad2008-10-30 08:01:45 +00008361 break;
8362 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00008363 case ISD::ATOMIC_CMP_SWAP:
8364 case ISD::ATOMIC_LOAD_ADD:
8365 case ISD::ATOMIC_LOAD_SUB:
8366 case ISD::ATOMIC_LOAD_AND:
8367 case ISD::ATOMIC_LOAD_OR:
8368 case ISD::ATOMIC_LOAD_XOR:
8369 case ISD::ATOMIC_LOAD_NAND:
8370 case ISD::ATOMIC_LOAD_MIN:
8371 case ISD::ATOMIC_LOAD_MAX:
8372 case ISD::ATOMIC_LOAD_UMIN:
8373 case ISD::ATOMIC_LOAD_UMAX:
8374 case ISD::ATOMIC_SWAP: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008375 // For now, we assume that using vectors for these operations don't make
8376 // much sense so we just split it. We return an empty result
8377 SDValue X, Y;
8378 SplitVectorOp(Op, X, Y);
8379 return Result;
8380 break;
8381 }
8382
8383 } // end switch (Node->getOpcode())
8384
Scott Michel91099d62009-02-17 22:15:04 +00008385 assert(Result.getNode() && "Didn't set a result!");
Mon P Wang1448aad2008-10-30 08:01:45 +00008386 if (Result != Op)
8387 Result = LegalizeOp(Result);
8388
Mon P Wanga5a239f2008-11-06 05:31:54 +00008389 AddWidenedOperand(Op, Result);
Mon P Wang1448aad2008-10-30 08:01:45 +00008390 return Result;
8391}
8392
8393// Utility function to find a legal vector type and its associated element
8394// type from a preferred width and whose vector type must be the same size
8395// as the VVT.
8396// TLI: Target lowering used to determine legal types
8397// Width: Preferred width of element type
8398// VVT: Vector value type whose size we must match.
8399// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0275b132009-01-15 16:43:02 +00008400static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang1448aad2008-10-30 08:01:45 +00008401 MVT& EVT, MVT& VecEVT) {
8402 // We start with the preferred width, make it a power of 2 and see if
8403 // we can find a vector type of that width. If not, we reduce it by
8404 // another power of 2. If we have widen the type, a vector of bytes should
8405 // always be legal.
8406 assert(TLI.isTypeLegal(VVT));
8407 unsigned EWidth = Width + 1;
8408 do {
8409 assert(EWidth > 0);
8410 EWidth = (1 << Log2_32(EWidth-1));
8411 EVT = MVT::getIntegerVT(EWidth);
8412 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8413 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8414 } while (!TLI.isTypeLegal(VecEVT) ||
8415 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8416}
8417
8418SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8419 SDValue Chain,
8420 SDValue BasePtr,
8421 const Value *SV,
8422 int SVOffset,
8423 unsigned Alignment,
8424 bool isVolatile,
8425 unsigned LdWidth,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008426 MVT ResType,
8427 DebugLoc dl) {
Mon P Wang1448aad2008-10-30 08:01:45 +00008428 // We assume that we have good rules to handle loading power of two loads so
8429 // we break down the operations to power of 2 loads. The strategy is to
8430 // load the largest power of 2 that we can easily transform to a legal vector
8431 // and then insert into that vector, and the cast the result into the legal
8432 // vector that we want. This avoids unnecessary stack converts.
8433 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8434 // the load is nonvolatile, we an use a wider load for the value.
8435 // Find a vector length we can load a large chunk
8436 MVT EVT, VecEVT;
8437 unsigned EVTWidth;
8438 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8439 EVTWidth = EVT.getSizeInBits();
8440
Dale Johannesend8fd5342009-02-02 22:49:46 +00008441 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV, SVOffset,
Bob Wilson2e958a42009-04-10 18:48:47 +00008442 isVolatile, Alignment);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008443 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecEVT, LdOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008444 LdChain.push_back(LdOp.getValue(1));
Scott Michel91099d62009-02-17 22:15:04 +00008445
Mon P Wang1448aad2008-10-30 08:01:45 +00008446 // Check if we can load the element with one instruction
8447 if (LdWidth == EVTWidth) {
Dale Johannesend8fd5342009-02-02 22:49:46 +00008448 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008449 }
8450
8451 // The vector element order is endianness dependent.
8452 unsigned Idx = 1;
8453 LdWidth -= EVTWidth;
8454 unsigned Offset = 0;
Scott Michel91099d62009-02-17 22:15:04 +00008455
Mon P Wang1448aad2008-10-30 08:01:45 +00008456 while (LdWidth > 0) {
8457 unsigned Increment = EVTWidth / 8;
8458 Offset += Increment;
Dale Johannesend8fd5342009-02-02 22:49:46 +00008459 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang1448aad2008-10-30 08:01:45 +00008460 DAG.getIntPtrConstant(Increment));
8461
8462 if (LdWidth < EVTWidth) {
8463 // Our current type we are using is too large, use a smaller size by
8464 // using a smaller power of 2
8465 unsigned oEVTWidth = EVTWidth;
8466 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8467 EVTWidth = EVT.getSizeInBits();
8468 // Readjust position and vector position based on new load type
Mon P Wang257e1c72008-11-15 06:05:52 +00008469 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008470 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008471 }
Scott Michel91099d62009-02-17 22:15:04 +00008472
Dale Johannesend8fd5342009-02-02 22:49:46 +00008473 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV,
Bob Wilson2e958a42009-04-10 18:48:47 +00008474 SVOffset+Offset, isVolatile,
8475 MinAlign(Alignment, Offset));
Mon P Wang1448aad2008-10-30 08:01:45 +00008476 LdChain.push_back(LdOp.getValue(1));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008477 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecEVT, VecOp, LdOp,
Mon P Wang1448aad2008-10-30 08:01:45 +00008478 DAG.getIntPtrConstant(Idx++));
Scott Michel91099d62009-02-17 22:15:04 +00008479
Mon P Wang1448aad2008-10-30 08:01:45 +00008480 LdWidth -= EVTWidth;
8481 }
8482
Dale Johannesend8fd5342009-02-02 22:49:46 +00008483 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008484}
8485
8486bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8487 SDValue& TFOp,
8488 SDValue Op,
8489 MVT NVT) {
8490 // TODO: Add support for ConcatVec and the ability to load many vector
8491 // types (e.g., v4i8). This will not work when a vector register
8492 // to memory mapping is strange (e.g., vector elements are not
8493 // stored in some sequential order).
8494
Scott Michel91099d62009-02-17 22:15:04 +00008495 // It must be true that the widen vector type is bigger than where
Mon P Wang1448aad2008-10-30 08:01:45 +00008496 // we need to load from.
8497 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8498 MVT LdVT = LD->getMemoryVT();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008499 DebugLoc dl = LD->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008500 assert(LdVT.isVector() && NVT.isVector());
8501 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
Scott Michel91099d62009-02-17 22:15:04 +00008502
Mon P Wang1448aad2008-10-30 08:01:45 +00008503 // Load information
8504 SDValue Chain = LD->getChain();
8505 SDValue BasePtr = LD->getBasePtr();
8506 int SVOffset = LD->getSrcValueOffset();
8507 unsigned Alignment = LD->getAlignment();
8508 bool isVolatile = LD->isVolatile();
8509 const Value *SV = LD->getSrcValue();
8510 unsigned int LdWidth = LdVT.getSizeInBits();
Scott Michel91099d62009-02-17 22:15:04 +00008511
Mon P Wang1448aad2008-10-30 08:01:45 +00008512 // Load value as a large register
8513 SDValueVector LdChain;
8514 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008515 Alignment, isVolatile, LdWidth, NVT, dl);
Mon P Wang1448aad2008-10-30 08:01:45 +00008516
8517 if (LdChain.size() == 1) {
8518 TFOp = LdChain[0];
8519 return true;
8520 }
8521 else {
Scott Michel91099d62009-02-17 22:15:04 +00008522 TFOp=DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008523 &LdChain[0], LdChain.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008524 return false;
8525 }
8526}
8527
8528
8529void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8530 SDValue Chain,
8531 SDValue BasePtr,
8532 const Value *SV,
8533 int SVOffset,
8534 unsigned Alignment,
8535 bool isVolatile,
Mon P Wang257e1c72008-11-15 06:05:52 +00008536 SDValue ValOp,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008537 unsigned StWidth,
8538 DebugLoc dl) {
Mon P Wang1448aad2008-10-30 08:01:45 +00008539 // Breaks the stores into a series of power of 2 width stores. For any
8540 // width, we convert the vector to the vector of element size that we
8541 // want to store. This avoids requiring a stack convert.
Scott Michel91099d62009-02-17 22:15:04 +00008542
Mon P Wang1448aad2008-10-30 08:01:45 +00008543 // Find a width of the element type we can store with
8544 MVT VVT = ValOp.getValueType();
8545 MVT EVT, VecEVT;
8546 unsigned EVTWidth;
8547 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8548 EVTWidth = EVT.getSizeInBits();
8549
Dale Johannesend8fd5342009-02-02 22:49:46 +00008550 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, ValOp);
8551 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang927daf52008-11-06 22:52:21 +00008552 DAG.getIntPtrConstant(0));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008553 SDValue StOp = DAG.getStore(Chain, dl, EOp, BasePtr, SV, SVOffset,
Bob Wilson2e958a42009-04-10 18:48:47 +00008554 isVolatile, Alignment);
Mon P Wang1448aad2008-10-30 08:01:45 +00008555 StChain.push_back(StOp);
8556
8557 // Check if we are done
8558 if (StWidth == EVTWidth) {
8559 return;
8560 }
Scott Michel91099d62009-02-17 22:15:04 +00008561
Mon P Wang1448aad2008-10-30 08:01:45 +00008562 unsigned Idx = 1;
8563 StWidth -= EVTWidth;
8564 unsigned Offset = 0;
Scott Michel91099d62009-02-17 22:15:04 +00008565
Mon P Wang1448aad2008-10-30 08:01:45 +00008566 while (StWidth > 0) {
8567 unsigned Increment = EVTWidth / 8;
8568 Offset += Increment;
Dale Johannesend8fd5342009-02-02 22:49:46 +00008569 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang1448aad2008-10-30 08:01:45 +00008570 DAG.getIntPtrConstant(Increment));
Scott Michel91099d62009-02-17 22:15:04 +00008571
Mon P Wang1448aad2008-10-30 08:01:45 +00008572 if (StWidth < EVTWidth) {
8573 // Our current type we are using is too large, use a smaller size by
8574 // using a smaller power of 2
8575 unsigned oEVTWidth = EVTWidth;
8576 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8577 EVTWidth = EVT.getSizeInBits();
8578 // Readjust position and vector position based on new load type
Mon P Wang257e1c72008-11-15 06:05:52 +00008579 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008580 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008581 }
Scott Michel91099d62009-02-17 22:15:04 +00008582
Dale Johannesend8fd5342009-02-02 22:49:46 +00008583 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang257e1c72008-11-15 06:05:52 +00008584 DAG.getIntPtrConstant(Idx++));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008585 StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr, SV,
Mon P Wang1448aad2008-10-30 08:01:45 +00008586 SVOffset + Offset, isVolatile,
8587 MinAlign(Alignment, Offset)));
8588 StWidth -= EVTWidth;
8589 }
8590}
8591
8592
8593SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
Bob Wilson2e958a42009-04-10 18:48:47 +00008594 SDValue Chain,
8595 SDValue BasePtr) {
Mon P Wang1448aad2008-10-30 08:01:45 +00008596 // TODO: It might be cleaner if we can use SplitVector and have more legal
8597 // vector types that can be stored into memory (e.g., v4xi8 can
8598 // be stored as a word). This will not work when a vector register
8599 // to memory mapping is strange (e.g., vector elements are not
8600 // stored in some sequential order).
Scott Michel91099d62009-02-17 22:15:04 +00008601
Mon P Wang1448aad2008-10-30 08:01:45 +00008602 MVT StVT = ST->getMemoryVT();
8603 SDValue ValOp = ST->getValue();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008604 DebugLoc dl = ST->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008605
8606 // Check if we have widen this node with another value
8607 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8608 if (I != WidenNodes.end())
8609 ValOp = I->second;
Scott Michel91099d62009-02-17 22:15:04 +00008610
Mon P Wang1448aad2008-10-30 08:01:45 +00008611 MVT VVT = ValOp.getValueType();
8612
8613 // It must be true that we the widen vector type is bigger than where
8614 // we need to store.
8615 assert(StVT.isVector() && VVT.isVector());
Dan Gohman783a32c2009-01-28 03:10:52 +00008616 assert(StVT.bitsLT(VVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008617 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8618
8619 // Store value
8620 SDValueVector StChain;
8621 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8622 ST->getSrcValueOffset(), ST->getAlignment(),
Dale Johannesend8fd5342009-02-02 22:49:46 +00008623 ST->isVolatile(), ValOp, StVT.getSizeInBits(), dl);
Mon P Wang1448aad2008-10-30 08:01:45 +00008624 if (StChain.size() == 1)
8625 return StChain[0];
Scott Michel91099d62009-02-17 22:15:04 +00008626 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00008627 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8628 &StChain[0], StChain.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008629}
8630
8631
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008632// SelectionDAG::Legalize - This is the entry point for the file.
8633//
Bill Wendling123374a2009-02-24 02:35:30 +00008634void SelectionDAG::Legalize(bool TypesNeedLegalizing, bool Fast) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008635 /// run - This is the main entry point to this class.
8636 ///
Bill Wendling123374a2009-02-24 02:35:30 +00008637 SelectionDAGLegalize(*this, TypesNeedLegalizing, Fast).LegalizeDAG();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008638}
8639