blob: f88831e83812dd40cfc0cb0a2fa8b42e150811a6 [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"
Devang Patelfcf1c752009-01-13 00:35:13 +000031#include "llvm/GlobalVariable.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032#include "llvm/Support/CommandLine.h"
33#include "llvm/Support/Compiler.h"
Duncan Sandsa3691432007-10-28 12:59:45 +000034#include "llvm/Support/MathExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035#include "llvm/ADT/DenseMap.h"
36#include "llvm/ADT/SmallVector.h"
37#include "llvm/ADT/SmallPtrSet.h"
38#include <map>
39using namespace llvm;
40
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041//===----------------------------------------------------------------------===//
42/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
43/// hacks on it until the target machine can handle it. This involves
44/// eliminating value sizes the machine cannot handle (promoting small sizes to
45/// large sizes or splitting up large values into small values) as well as
46/// eliminating operations the machine cannot handle.
47///
48/// This code also does a small amount of optimization and recognition of idioms
49/// as part of its processing. For example, if a target does not support a
50/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
51/// will attempt merge setcc and brc instructions into brcc's.
52///
53namespace {
54class VISIBILITY_HIDDEN SelectionDAGLegalize {
55 TargetLowering &TLI;
56 SelectionDAG &DAG;
Duncan Sandse016a2e2008-12-14 09:43:15 +000057 bool TypesNeedLegalizing;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058
59 // Libcall insertion helpers.
60
61 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
62 /// legalized. We use this to ensure that calls are properly serialized
63 /// against each other, including inserted libcalls.
Dan Gohman8181bd12008-07-27 21:46:04 +000064 SDValue LastCALLSEQ_END;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065
66 /// IsLegalizingCall - This member is used *only* for purposes of providing
67 /// helpful assertions that a libcall isn't created while another call is
68 /// being legalized (which could lead to non-serialized call sequences).
69 bool IsLegalizingCall;
70
71 enum LegalizeAction {
72 Legal, // The target natively supports this operation.
73 Promote, // This operation should be executed in a larger type.
74 Expand // Try to expand this to other ops, otherwise use a libcall.
75 };
76
77 /// ValueTypeActions - This is a bitvector that contains two bits for each
78 /// value type, where the two bits correspond to the LegalizeAction enum.
79 /// This can be queried with "getTypeAction(VT)".
80 TargetLowering::ValueTypeActionImpl ValueTypeActions;
81
82 /// LegalizedNodes - For nodes that are of legal width, and that have more
83 /// than one use, this map indicates what regularized operand to use. This
84 /// allows us to avoid legalizing the same thing more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000085 DenseMap<SDValue, SDValue> LegalizedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000086
87 /// PromotedNodes - For nodes that are below legal width, and that have more
88 /// than one use, this map indicates what promoted value to use. This allows
89 /// us to avoid promoting the same thing more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000090 DenseMap<SDValue, SDValue> PromotedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000091
92 /// ExpandedNodes - For nodes that need to be expanded this map indicates
Mon P Wang1448aad2008-10-30 08:01:45 +000093 /// which operands are the expanded version of the input. This allows
Dan Gohmanf17a25c2007-07-18 16:29:46 +000094 /// us to avoid expanding the same node more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000095 DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096
97 /// SplitNodes - For vector nodes that need to be split, this map indicates
Mon P Wang1448aad2008-10-30 08:01:45 +000098 /// which operands are the split version of the input. This allows us
Dan Gohmanf17a25c2007-07-18 16:29:46 +000099 /// to avoid splitting the same node more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +0000100 std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000101
102 /// ScalarizedNodes - For nodes that need to be converted from vector types to
103 /// scalar types, this contains the mapping of ones we have already
104 /// processed to the result.
Dan Gohman8181bd12008-07-27 21:46:04 +0000105 std::map<SDValue, SDValue> ScalarizedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106
Mon P Wanga5a239f2008-11-06 05:31:54 +0000107 /// WidenNodes - For nodes that need to be widened from one vector type to
108 /// another, this contains the mapping of those that we have already widen.
109 /// This allows us to avoid widening more than once.
Mon P Wang1448aad2008-10-30 08:01:45 +0000110 std::map<SDValue, SDValue> WidenNodes;
111
Dan Gohman8181bd12008-07-27 21:46:04 +0000112 void AddLegalizedOperand(SDValue From, SDValue To) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000113 LegalizedNodes.insert(std::make_pair(From, To));
114 // If someone requests legalization of the new node, return itself.
115 if (From != To)
116 LegalizedNodes.insert(std::make_pair(To, To));
117 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000118 void AddPromotedOperand(SDValue From, SDValue To) {
Dan Gohman55d19662008-07-07 17:46:23 +0000119 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 assert(isNew && "Got into the map somehow?");
Evan Chengcf576fd2008-11-24 07:09:49 +0000121 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000122 // If someone requests legalization of the new node, return itself.
123 LegalizedNodes.insert(std::make_pair(To, To));
124 }
Mon P Wanga5a239f2008-11-06 05:31:54 +0000125 void AddWidenedOperand(SDValue From, SDValue To) {
Mon P Wang1448aad2008-10-30 08:01:45 +0000126 bool isNew = WidenNodes.insert(std::make_pair(From, To)).second;
127 assert(isNew && "Got into the map somehow?");
Evan Chengcf576fd2008-11-24 07:09:49 +0000128 isNew = isNew;
Mon P Wang1448aad2008-10-30 08:01:45 +0000129 // If someone requests legalization of the new node, return itself.
130 LegalizedNodes.insert(std::make_pair(To, To));
131 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132
133public:
Duncan Sandse016a2e2008-12-14 09:43:15 +0000134 explicit SelectionDAGLegalize(SelectionDAG &DAG, bool TypesNeedLegalizing);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135
136 /// getTypeAction - Return how we should legalize values of this type, either
137 /// it is already legal or we need to expand it into multiple registers of
138 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands92c43912008-06-06 12:08:01 +0000139 LegalizeAction getTypeAction(MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000140 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
141 }
142
143 /// isTypeLegal - Return true if this type is legal on this target.
144 ///
Duncan Sands92c43912008-06-06 12:08:01 +0000145 bool isTypeLegal(MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000146 return getTypeAction(VT) == Legal;
147 }
148
149 void LegalizeDAG();
150
151private:
152 /// HandleOp - Legalize, Promote, or Expand the specified operand as
153 /// appropriate for its type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000154 void HandleOp(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155
156 /// LegalizeOp - We know that the specified value has a legal type.
157 /// Recursively ensure that the operands have legal types, then return the
158 /// result.
Dan Gohman8181bd12008-07-27 21:46:04 +0000159 SDValue LegalizeOp(SDValue O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160
Dan Gohman6d05cac2007-10-11 23:57:53 +0000161 /// UnrollVectorOp - We know that the given vector has a legal type, however
162 /// the operation it performs is not legal and is an operation that we have
163 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
164 /// operating on each element individually.
Dan Gohman8181bd12008-07-27 21:46:04 +0000165 SDValue UnrollVectorOp(SDValue O);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000166
167 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
168 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
169 /// is necessary to spill the vector being inserted into to memory, perform
170 /// the insert there, and then read the result back.
Dan Gohman8181bd12008-07-27 21:46:04 +0000171 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Dale Johannesen352c47e2009-02-02 20:41:04 +0000172 SDValue Idx, DebugLoc dl);
Dan Gohman6d05cac2007-10-11 23:57:53 +0000173
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174 /// PromoteOp - Given an operation that produces a value in an invalid type,
175 /// promote it to compute the value into a larger type. The produced value
176 /// will have the correct bits for the low portion of the register, but no
177 /// guarantee is made about the top bits: it may be zero, sign-extended, or
178 /// garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +0000179 SDValue PromoteOp(SDValue O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180
Dan Gohman8181bd12008-07-27 21:46:04 +0000181 /// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
Dan Gohman4fc03742008-10-01 15:07:49 +0000183 /// the LegalizedNodes map is filled in for any results that are not expanded,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 /// the ExpandedNodes map is filled in for any results that are expanded, and
185 /// the Lo/Hi values are returned. This applies to integer types and Vector
186 /// types.
Dan Gohman8181bd12008-07-27 21:46:04 +0000187 void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188
Mon P Wanga5a239f2008-11-06 05:31:54 +0000189 /// WidenVectorOp - Widen a vector operation to a wider type given by WidenVT
190 /// (e.g., v3i32 to v4i32). The produced value will have the correct value
191 /// for the existing elements but no guarantee is made about the new elements
192 /// at the end of the vector: it may be zero, ones, or garbage. This is useful
193 /// when we have an instruction operating on an illegal vector type and we
194 /// want to widen it to do the computation on a legal wider vector type.
Mon P Wang1448aad2008-10-30 08:01:45 +0000195 SDValue WidenVectorOp(SDValue Op, MVT WidenVT);
196
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000197 /// SplitVectorOp - Given an operand of vector type, break it down into
198 /// two smaller values.
Dan Gohman8181bd12008-07-27 21:46:04 +0000199 void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000200
201 /// ScalarizeVectorOp - Given an operand of single-element vector type
202 /// (e.g. v1f32), convert it into the equivalent operation that returns a
203 /// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +0000204 SDValue ScalarizeVectorOp(SDValue O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205
Mon P Wanga5a239f2008-11-06 05:31:54 +0000206 /// Useful 16 element vector type that is used to pass operands for widening.
Mon P Wang1448aad2008-10-30 08:01:45 +0000207 typedef SmallVector<SDValue, 16> SDValueVector;
208
209 /// LoadWidenVectorOp - Load a vector for a wider type. Returns true if
210 /// the LdChain contains a single load and false if it contains a token
211 /// factor for multiple loads. It takes
212 /// Result: location to return the result
213 /// LdChain: location to return the load chain
214 /// Op: load operation to widen
215 /// NVT: widen vector result type we want for the load
216 bool LoadWidenVectorOp(SDValue& Result, SDValue& LdChain,
217 SDValue Op, MVT NVT);
218
219 /// Helper genWidenVectorLoads - Helper function to generate a set of
220 /// loads to load a vector with a resulting wider type. It takes
221 /// LdChain: list of chains for the load we have generated
222 /// Chain: incoming chain for the ld vector
223 /// BasePtr: base pointer to load from
224 /// SV: memory disambiguation source value
225 /// SVOffset: memory disambiugation offset
226 /// Alignment: alignment of the memory
227 /// isVolatile: volatile load
228 /// LdWidth: width of memory that we want to load
229 /// ResType: the wider result result type for the resulting loaded vector
230 SDValue genWidenVectorLoads(SDValueVector& LdChain, SDValue Chain,
231 SDValue BasePtr, const Value *SV,
232 int SVOffset, unsigned Alignment,
233 bool isVolatile, unsigned LdWidth,
Dale Johannesend8fd5342009-02-02 22:49:46 +0000234 MVT ResType, DebugLoc dl);
Mon P Wang1448aad2008-10-30 08:01:45 +0000235
236 /// StoreWidenVectorOp - Stores a widen vector into non widen memory
237 /// location. It takes
238 /// ST: store node that we want to replace
239 /// Chain: incoming store chain
240 /// BasePtr: base address of where we want to store into
241 SDValue StoreWidenVectorOp(StoreSDNode *ST, SDValue Chain,
242 SDValue BasePtr);
243
244 /// Helper genWidenVectorStores - Helper function to generate a set of
245 /// stores to store a widen vector into non widen memory
246 // It takes
247 // StChain: list of chains for the stores we have generated
248 // Chain: incoming chain for the ld vector
249 // BasePtr: base pointer to load from
250 // SV: memory disambiguation source value
251 // SVOffset: memory disambiugation offset
252 // Alignment: alignment of the memory
253 // isVolatile: volatile lod
254 // ValOp: value to store
255 // StWidth: width of memory that we want to store
256 void genWidenVectorStores(SDValueVector& StChain, SDValue Chain,
257 SDValue BasePtr, const Value *SV,
258 int SVOffset, unsigned Alignment,
259 bool isVolatile, SDValue ValOp,
Dale Johannesend8fd5342009-02-02 22:49:46 +0000260 unsigned StWidth, DebugLoc dl);
Mon P Wang1448aad2008-10-30 08:01:45 +0000261
Duncan Sandsd3ace282008-07-21 10:20:31 +0000262 /// isShuffleLegal - Return non-null if a vector shuffle is legal with the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263 /// specified mask and type. Targets can specify exactly which masks they
264 /// support and the code generator is tasked with not creating illegal masks.
265 ///
266 /// Note that this will also return true for shuffles that are promoted to a
267 /// different type.
268 ///
269 /// If this is a legal shuffle, this method returns the (possibly promoted)
270 /// build_vector Mask. If it's not a legal shuffle, it returns null.
Dan Gohman8181bd12008-07-27 21:46:04 +0000271 SDNode *isShuffleLegal(MVT VT, SDValue Mask) const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000272
273 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
274 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
275
Dale Johannesen352c47e2009-02-02 20:41:04 +0000276 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC,
277 DebugLoc dl);
278 void LegalizeSetCCCondCode(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
279 DebugLoc dl);
280 void LegalizeSetCC(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
281 DebugLoc dl) {
282 LegalizeSetCCOperands(LHS, RHS, CC, dl);
283 LegalizeSetCCCondCode(VT, LHS, RHS, CC, dl);
Evan Cheng71343822008-10-15 02:05:31 +0000284 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285
Dan Gohman8181bd12008-07-27 21:46:04 +0000286 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
287 SDValue &Hi);
Dale Johannesen9972b632009-02-02 19:03:57 +0000288 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000289
Dale Johannesen82b5b722009-02-02 22:12:50 +0000290 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT, DebugLoc dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000291 SDValue ExpandBUILD_VECTOR(SDNode *Node);
292 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Dale Johannesen9972b632009-02-02 19:03:57 +0000293 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy,
294 SDValue Op, DebugLoc dl);
295 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT,
296 DebugLoc dl);
297 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned,
298 DebugLoc dl);
299 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned,
300 DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301
Dale Johannesen82b5b722009-02-02 22:12:50 +0000302 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
303 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000304 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +0000305 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000306 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +0000307 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308
Dan Gohman8181bd12008-07-27 21:46:04 +0000309 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
310 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000311};
312}
313
314/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
315/// specified mask and type. Targets can specify exactly which masks they
316/// support and the code generator is tasked with not creating illegal masks.
317///
318/// Note that this will also return true for shuffles that are promoted to a
319/// different type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000320SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDValue Mask) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000321 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
322 default: return 0;
323 case TargetLowering::Legal:
324 case TargetLowering::Custom:
325 break;
326 case TargetLowering::Promote: {
327 // If this is promoted to a different type, convert the shuffle mask and
328 // ask if it is legal in the promoted type!
Duncan Sands92c43912008-06-06 12:08:01 +0000329 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Duncan Sandsd3ace282008-07-21 10:20:31 +0000330 MVT EltVT = NVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000331
332 // If we changed # elements, change the shuffle mask.
333 unsigned NumEltsGrowth =
Duncan Sands92c43912008-06-06 12:08:01 +0000334 NVT.getVectorNumElements() / VT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000335 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
336 if (NumEltsGrowth > 1) {
337 // Renumber the elements.
Dan Gohman8181bd12008-07-27 21:46:04 +0000338 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000340 SDValue InOp = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000341 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
342 if (InOp.getOpcode() == ISD::UNDEF)
Dale Johannesen352c47e2009-02-02 20:41:04 +0000343 Ops.push_back(DAG.getNode(ISD::UNDEF,
344 InOp.getNode()->getDebugLoc(), EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000345 else {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000346 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getZExtValue();
Duncan Sandsd3ace282008-07-21 10:20:31 +0000347 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000348 }
349 }
350 }
Dale Johannesen352c47e2009-02-02 20:41:04 +0000351 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getNode()->getDebugLoc(),
352 NVT, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000353 }
354 VT = NVT;
355 break;
356 }
357 }
Gabor Greif1c80d112008-08-28 21:40:38 +0000358 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.getNode() : 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000359}
360
Duncan Sandse016a2e2008-12-14 09:43:15 +0000361SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag, bool types)
362 : TLI(dag.getTargetLoweringInfo()), DAG(dag), TypesNeedLegalizing(types),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 ValueTypeActions(TLI.getValueTypeActions()) {
364 assert(MVT::LAST_VALUETYPE <= 32 &&
365 "Too many value types for ValueTypeActions to hold!");
366}
367
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368void SelectionDAGLegalize::LegalizeDAG() {
369 LastCALLSEQ_END = DAG.getEntryNode();
370 IsLegalizingCall = false;
371
372 // The legalize process is inherently a bottom-up recursive process (users
373 // legalize their uses before themselves). Given infinite stack space, we
374 // could just start legalizing on the root and traverse the whole graph. In
375 // practice however, this causes us to run out of stack space on large basic
376 // blocks. To avoid this problem, compute an ordering of the nodes where each
377 // node is only legalized after all of its operands are legalized.
Dan Gohman2d2a7a32008-09-30 18:30:35 +0000378 DAG.AssignTopologicalOrder();
379 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
380 E = prior(DAG.allnodes_end()); I != next(E); ++I)
381 HandleOp(SDValue(I, 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000382
383 // Finally, it's possible the root changed. Get the new root.
Dan Gohman8181bd12008-07-27 21:46:04 +0000384 SDValue OldRoot = DAG.getRoot();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000385 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
386 DAG.setRoot(LegalizedNodes[OldRoot]);
387
388 ExpandedNodes.clear();
389 LegalizedNodes.clear();
390 PromotedNodes.clear();
391 SplitNodes.clear();
392 ScalarizedNodes.clear();
Mon P Wang1448aad2008-10-30 08:01:45 +0000393 WidenNodes.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394
395 // Remove dead nodes now.
396 DAG.RemoveDeadNodes();
397}
398
399
400/// FindCallEndFromCallStart - Given a chained node that is part of a call
401/// sequence, find the CALLSEQ_END node that terminates the call sequence.
402static SDNode *FindCallEndFromCallStart(SDNode *Node) {
403 if (Node->getOpcode() == ISD::CALLSEQ_END)
404 return Node;
405 if (Node->use_empty())
406 return 0; // No CallSeqEnd
407
408 // The chain is usually at the end.
Dan Gohman8181bd12008-07-27 21:46:04 +0000409 SDValue TheChain(Node, Node->getNumValues()-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000410 if (TheChain.getValueType() != MVT::Other) {
411 // Sometimes it's at the beginning.
Dan Gohman8181bd12008-07-27 21:46:04 +0000412 TheChain = SDValue(Node, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000413 if (TheChain.getValueType() != MVT::Other) {
414 // Otherwise, hunt for it.
415 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
416 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000417 TheChain = SDValue(Node, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000418 break;
419 }
420
421 // Otherwise, we walked into a node without a chain.
422 if (TheChain.getValueType() != MVT::Other)
423 return 0;
424 }
425 }
426
427 for (SDNode::use_iterator UI = Node->use_begin(),
428 E = Node->use_end(); UI != E; ++UI) {
429
430 // Make sure to only follow users of our token chain.
Dan Gohman0c97f1d2008-07-27 20:43:25 +0000431 SDNode *User = *UI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000432 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
433 if (User->getOperand(i) == TheChain)
434 if (SDNode *Result = FindCallEndFromCallStart(User))
435 return Result;
436 }
437 return 0;
438}
439
440/// FindCallStartFromCallEnd - Given a chained node that is part of a call
441/// sequence, find the CALLSEQ_START node that initiates the call sequence.
442static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
443 assert(Node && "Didn't find callseq_start for a call??");
444 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
445
446 assert(Node->getOperand(0).getValueType() == MVT::Other &&
447 "Node doesn't have a token chain argument!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000448 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000449}
450
451/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
452/// see if any uses can reach Dest. If no dest operands can get to dest,
453/// legalize them, legalize ourself, and return false, otherwise, return true.
454///
455/// Keep track of the nodes we fine that actually do lead to Dest in
456/// NodesLeadingTo. This avoids retraversing them exponential number of times.
457///
458bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
459 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
460 if (N == Dest) return true; // N certainly leads to Dest :)
461
462 // If we've already processed this node and it does lead to Dest, there is no
463 // need to reprocess it.
464 if (NodesLeadingTo.count(N)) return true;
465
466 // If the first result of this node has been already legalized, then it cannot
467 // reach N.
468 switch (getTypeAction(N->getValueType(0))) {
469 case Legal:
Dan Gohman8181bd12008-07-27 21:46:04 +0000470 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000471 break;
472 case Promote:
Dan Gohman8181bd12008-07-27 21:46:04 +0000473 if (PromotedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000474 break;
475 case Expand:
Dan Gohman8181bd12008-07-27 21:46:04 +0000476 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000477 break;
478 }
479
480 // Okay, this node has not already been legalized. Check and legalize all
481 // operands. If none lead to Dest, then we can legalize this node.
482 bool OperandsLeadToDest = false;
483 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
484 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greif1c80d112008-08-28 21:40:38 +0000485 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486
487 if (OperandsLeadToDest) {
488 NodesLeadingTo.insert(N);
489 return true;
490 }
491
492 // Okay, this node looks safe, legalize it and return false.
Dan Gohman8181bd12008-07-27 21:46:04 +0000493 HandleOp(SDValue(N, 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000494 return false;
495}
496
Mon P Wang1448aad2008-10-30 08:01:45 +0000497/// HandleOp - Legalize, Promote, Widen, or Expand the specified operand as
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000498/// appropriate for its type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000499void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +0000500 MVT VT = Op.getValueType();
Duncan Sandse016a2e2008-12-14 09:43:15 +0000501 // If the type legalizer was run then we should never see any illegal result
502 // types here except for target constants (the type legalizer does not touch
Mon P Wang26342922008-12-18 20:03:17 +0000503 // those) or for build vector used as a mask for a vector shuffle.
504 // FIXME: We can removed the BUILD_VECTOR case when we fix PR2957.
Duncan Sandse016a2e2008-12-14 09:43:15 +0000505 assert((TypesNeedLegalizing || getTypeAction(VT) == Legal ||
Mon P Wang26342922008-12-18 20:03:17 +0000506 Op.getOpcode() == ISD::TargetConstant ||
507 Op.getOpcode() == ISD::BUILD_VECTOR) &&
Duncan Sandse016a2e2008-12-14 09:43:15 +0000508 "Illegal type introduced after type legalization?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509 switch (getTypeAction(VT)) {
510 default: assert(0 && "Bad type action!");
511 case Legal: (void)LegalizeOp(Op); break;
Mon P Wang1448aad2008-10-30 08:01:45 +0000512 case Promote:
513 if (!VT.isVector()) {
514 (void)PromoteOp(Op);
515 break;
516 }
517 else {
518 // See if we can widen otherwise use Expand to either scalarize or split
519 MVT WidenVT = TLI.getWidenVectorType(VT);
520 if (WidenVT != MVT::Other) {
521 (void) WidenVectorOp(Op, WidenVT);
522 break;
523 }
524 // else fall thru to expand since we can't widen the vector
525 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +0000527 if (!VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000528 // If this is an illegal scalar, expand it into its two component
529 // pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +0000530 SDValue X, Y;
Chris Lattnerdad577b2007-08-25 01:00:22 +0000531 if (Op.getOpcode() == ISD::TargetConstant)
532 break; // Allow illegal target nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000533 ExpandOp(Op, X, Y);
Duncan Sands92c43912008-06-06 12:08:01 +0000534 } else if (VT.getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535 // If this is an illegal single element vector, convert it to a
536 // scalar operation.
537 (void)ScalarizeVectorOp(Op);
538 } else {
Mon P Wang1448aad2008-10-30 08:01:45 +0000539 // This is an illegal multiple element vector.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540 // Split it in half and legalize both parts.
Dan Gohman8181bd12008-07-27 21:46:04 +0000541 SDValue X, Y;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000542 SplitVectorOp(Op, X, Y);
543 }
544 break;
545 }
546}
547
548/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
549/// a load from the constant pool.
Dan Gohman8181bd12008-07-27 21:46:04 +0000550static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohman0275b132009-01-15 16:43:02 +0000551 SelectionDAG &DAG, const TargetLowering &TLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000552 bool Extend = false;
553
554 // If a FP immediate is precise when represented as a float and if the
555 // target can do an extending load from float to double, we put it into
556 // the constant pool as a float, even if it's is statically typed as a
Chris Lattnere718cc52008-03-05 06:46:58 +0000557 // double. This shrinks FP constants and canonicalizes them for targets where
558 // an FP extending load is the same cost as a normal load (such as on the x87
559 // fp stack or PPC FP unit).
Duncan Sands92c43912008-06-06 12:08:01 +0000560 MVT VT = CFP->getValueType(0);
Dan Gohmanc1f3a072008-09-12 18:08:03 +0000561 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000562 if (!UseCP) {
Dale Johannesen2fc20782007-09-14 22:26:36 +0000563 if (VT!=MVT::f64 && VT!=MVT::f32)
564 assert(0 && "Invalid type expansion");
Dale Johannesen49cc7ce2008-10-09 18:53:47 +0000565 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Cheng354be062008-03-04 08:05:30 +0000566 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000567 }
568
Duncan Sands92c43912008-06-06 12:08:01 +0000569 MVT OrigVT = VT;
570 MVT SVT = VT;
Evan Cheng354be062008-03-04 08:05:30 +0000571 while (SVT != MVT::f32) {
Duncan Sands92c43912008-06-06 12:08:01 +0000572 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Cheng354be062008-03-04 08:05:30 +0000573 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
574 // Only do this if the target has a native EXTLOAD instruction from
575 // smaller type.
Evan Cheng08c171a2008-10-14 21:26:46 +0000576 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattnere718cc52008-03-05 06:46:58 +0000577 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands92c43912008-06-06 12:08:01 +0000578 const Type *SType = SVT.getTypeForMVT();
Evan Cheng354be062008-03-04 08:05:30 +0000579 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
580 VT = SVT;
581 Extend = true;
582 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 }
584
Dan Gohman8181bd12008-07-27 21:46:04 +0000585 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Dan Gohman04637d12008-09-16 22:05:41 +0000586 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Cheng354be062008-03-04 08:05:30 +0000587 if (Extend)
588 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohmanfb020b62008-02-07 18:41:25 +0000589 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman04637d12008-09-16 22:05:41 +0000590 0, VT, false, Alignment);
Evan Cheng354be062008-03-04 08:05:30 +0000591 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +0000592 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000593}
594
595
596/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
597/// operations.
598static
Dan Gohman8181bd12008-07-27 21:46:04 +0000599SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Dan Gohman0275b132009-01-15 16:43:02 +0000600 SelectionDAG &DAG,
601 const TargetLowering &TLI) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000602 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +0000603 MVT VT = Node->getValueType(0);
604 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000605 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
606 "fcopysign expansion only supported for f32 and f64");
Duncan Sands92c43912008-06-06 12:08:01 +0000607 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608
609 // First get the sign bit of second operand.
Dan Gohman8181bd12008-07-27 21:46:04 +0000610 SDValue Mask1 = (SrcVT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000611 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
612 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000613 Mask1 = DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, Mask1);
614 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT,
615 Node->getOperand(1));
616 SignBit = DAG.getNode(ISD::AND, dl, SrcNVT, SignBit, Mask1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000617 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands92c43912008-06-06 12:08:01 +0000618 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000619 if (SizeDiff > 0) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000620 SignBit = DAG.getNode(ISD::SRL, dl, SrcNVT, SignBit,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000621 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000622 SignBit = DAG.getNode(ISD::TRUNCATE, dl, NVT, SignBit);
Chris Lattnere6fa1452008-07-10 23:46:13 +0000623 } else if (SizeDiff < 0) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000624 SignBit = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, SignBit);
625 SignBit = DAG.getNode(ISD::SHL, dl, NVT, SignBit,
Chris Lattnere6fa1452008-07-10 23:46:13 +0000626 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
627 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000628
629 // Clear the sign bit of first operand.
Dan Gohman8181bd12008-07-27 21:46:04 +0000630 SDValue Mask2 = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000631 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
632 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000633 Mask2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask2);
634 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
635 Result = DAG.getNode(ISD::AND, dl, NVT, Result, Mask2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000636
637 // Or the value with the sign bit.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000638 Result = DAG.getNode(ISD::OR, dl, NVT, Result, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639 return Result;
640}
641
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000642/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
643static
Dan Gohman8181bd12008-07-27 21:46:04 +0000644SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
Dan Gohman0275b132009-01-15 16:43:02 +0000645 const TargetLowering &TLI) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000646 SDValue Chain = ST->getChain();
647 SDValue Ptr = ST->getBasePtr();
648 SDValue Val = ST->getValue();
Duncan Sands92c43912008-06-06 12:08:01 +0000649 MVT VT = Val.getValueType();
Dale Johannesen08275382007-09-08 19:29:23 +0000650 int Alignment = ST->getAlignment();
651 int SVOffset = ST->getSrcValueOffset();
Dale Johannesen352c47e2009-02-02 20:41:04 +0000652 DebugLoc dl = ST->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +0000653 if (ST->getMemoryVT().isFloatingPoint() ||
654 ST->getMemoryVT().isVector()) {
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000655 MVT intVT = MVT::getIntegerVT(VT.getSizeInBits());
656 if (TLI.isTypeLegal(intVT)) {
657 // Expand to a bitconvert of the value to the integer type of the
658 // same size, then a (misaligned) int store.
659 // FIXME: Does not handle truncating floating point stores!
Dale Johannesen352c47e2009-02-02 20:41:04 +0000660 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, intVT, Val);
661 return DAG.getStore(Chain, dl, Result, Ptr, ST->getSrcValue(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000662 SVOffset, ST->isVolatile(), Alignment);
663 } else {
664 // Do a (aligned) store to a stack slot, then copy from the stack slot
665 // to the final destination using (unaligned) integer loads and stores.
666 MVT StoredVT = ST->getMemoryVT();
667 MVT RegVT =
668 TLI.getRegisterType(MVT::getIntegerVT(StoredVT.getSizeInBits()));
669 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
670 unsigned RegBytes = RegVT.getSizeInBits() / 8;
671 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
Dale Johannesen08275382007-09-08 19:29:23 +0000672
Duncan Sands734f49b2008-12-13 07:18:38 +0000673 // Make sure the stack slot is also aligned for the register type.
674 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
675
676 // Perform the original store, only redirected to the stack slot.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000677 SDValue Store = DAG.getTruncStore(Chain, dl,
678 Val, StackPtr, NULL, 0,StoredVT);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000679 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
680 SmallVector<SDValue, 8> Stores;
681 unsigned Offset = 0;
682
683 // Do all but one copies using the full register width.
684 for (unsigned i = 1; i < NumRegs; i++) {
685 // Load one integer register's worth from the stack slot.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000686 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, NULL, 0);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000687 // Store it to the final location. Remember the store.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000688 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000689 ST->getSrcValue(), SVOffset + Offset,
690 ST->isVolatile(),
691 MinAlign(ST->getAlignment(), Offset)));
692 // Increment the pointers.
693 Offset += RegBytes;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000694 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000695 Increment);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000696 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000697 }
698
Duncan Sands734f49b2008-12-13 07:18:38 +0000699 // The last store may be partial. Do a truncating store. On big-endian
700 // machines this requires an extending load from the stack slot to ensure
701 // that the bits are in the right place.
702 MVT MemVT = MVT::getIntegerVT(8 * (StoredBytes - Offset));
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000703
Duncan Sands734f49b2008-12-13 07:18:38 +0000704 // Load from the stack slot.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000705 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
Duncan Sands734f49b2008-12-13 07:18:38 +0000706 NULL, 0, MemVT);
707
Dale Johannesen352c47e2009-02-02 20:41:04 +0000708 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000709 ST->getSrcValue(), SVOffset + Offset,
Duncan Sands734f49b2008-12-13 07:18:38 +0000710 MemVT, ST->isVolatile(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000711 MinAlign(ST->getAlignment(), Offset)));
712 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000713 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000714 Stores.size());
715 }
Dale Johannesen08275382007-09-08 19:29:23 +0000716 }
Duncan Sands92c43912008-06-06 12:08:01 +0000717 assert(ST->getMemoryVT().isInteger() &&
718 !ST->getMemoryVT().isVector() &&
Dale Johannesen08275382007-09-08 19:29:23 +0000719 "Unaligned store of unknown type.");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000720 // Get the half-size VT
Duncan Sands92c43912008-06-06 12:08:01 +0000721 MVT NewStoredVT =
722 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
723 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000724 int IncrementSize = NumBits / 8;
725
726 // Divide the stored value in two parts.
Dan Gohman8181bd12008-07-27 21:46:04 +0000727 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
728 SDValue Lo = Val;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000729 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000730
731 // Store the two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000732 SDValue Store1, Store2;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000733 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000734 ST->getSrcValue(), SVOffset, NewStoredVT,
735 ST->isVolatile(), Alignment);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000736 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000737 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsa3691432007-10-28 12:59:45 +0000738 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000739 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000740 ST->getSrcValue(), SVOffset + IncrementSize,
741 NewStoredVT, ST->isVolatile(), Alignment);
742
Dale Johannesen352c47e2009-02-02 20:41:04 +0000743 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000744}
745
746/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
747static
Dan Gohman8181bd12008-07-27 21:46:04 +0000748SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
Dan Gohmana0c429e2009-01-15 16:58:17 +0000749 const TargetLowering &TLI) {
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000750 int SVOffset = LD->getSrcValueOffset();
Dan Gohman8181bd12008-07-27 21:46:04 +0000751 SDValue Chain = LD->getChain();
752 SDValue Ptr = LD->getBasePtr();
Duncan Sands92c43912008-06-06 12:08:01 +0000753 MVT VT = LD->getValueType(0);
754 MVT LoadedVT = LD->getMemoryVT();
Dale Johannesen352c47e2009-02-02 20:41:04 +0000755 DebugLoc dl = LD->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +0000756 if (VT.isFloatingPoint() || VT.isVector()) {
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000757 MVT intVT = MVT::getIntegerVT(LoadedVT.getSizeInBits());
758 if (TLI.isTypeLegal(intVT)) {
759 // Expand to a (misaligned) integer load of the same size,
760 // then bitconvert to floating point or vector.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000761 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000762 SVOffset, LD->isVolatile(),
Dale Johannesen08275382007-09-08 19:29:23 +0000763 LD->getAlignment());
Dale Johannesen352c47e2009-02-02 20:41:04 +0000764 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, LoadedVT, newLoad);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000765 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen352c47e2009-02-02 20:41:04 +0000766 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen08275382007-09-08 19:29:23 +0000767
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000768 SDValue Ops[] = { Result, Chain };
Dale Johannesen352c47e2009-02-02 20:41:04 +0000769 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000770 } else {
771 // Copy the value to a (aligned) stack slot using (unaligned) integer
772 // loads and stores, then do a (aligned) load from the stack slot.
773 MVT RegVT = TLI.getRegisterType(intVT);
774 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
775 unsigned RegBytes = RegVT.getSizeInBits() / 8;
776 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
777
Duncan Sands734f49b2008-12-13 07:18:38 +0000778 // Make sure the stack slot is also aligned for the register type.
779 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
780
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000781 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
782 SmallVector<SDValue, 8> Stores;
783 SDValue StackPtr = StackBase;
784 unsigned Offset = 0;
785
786 // Do all but one copies using the full register width.
787 for (unsigned i = 1; i < NumRegs; i++) {
788 // Load one integer register's worth from the original location.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000789 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000790 SVOffset + Offset, LD->isVolatile(),
791 MinAlign(LD->getAlignment(), Offset));
792 // Follow the load with a store to the stack slot. Remember the store.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000793 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000794 NULL, 0));
795 // Increment the pointers.
796 Offset += RegBytes;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000797 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
798 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000799 Increment);
800 }
801
802 // The last copy may be partial. Do an extending load.
Duncan Sands734f49b2008-12-13 07:18:38 +0000803 MVT MemVT = MVT::getIntegerVT(8 * (LoadedBytes - Offset));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000804 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000805 LD->getSrcValue(), SVOffset + Offset,
Duncan Sands734f49b2008-12-13 07:18:38 +0000806 MemVT, LD->isVolatile(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000807 MinAlign(LD->getAlignment(), Offset));
808 // Follow the load with a store to the stack slot. Remember the store.
Duncan Sands734f49b2008-12-13 07:18:38 +0000809 // On big-endian machines this requires a truncating store to ensure
810 // that the bits end up in the right place.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000811 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sands734f49b2008-12-13 07:18:38 +0000812 NULL, 0, MemVT));
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000813
814 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000815 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000816 Stores.size());
817
818 // Finally, perform the original load only redirected to the stack slot.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000819 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000820 NULL, 0, LoadedVT);
821
822 // Callers expect a MERGE_VALUES node.
823 SDValue Ops[] = { Load, TF };
Dale Johannesen352c47e2009-02-02 20:41:04 +0000824 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000825 }
Dale Johannesen08275382007-09-08 19:29:23 +0000826 }
Duncan Sands92c43912008-06-06 12:08:01 +0000827 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000828 "Unaligned load of unsupported type.");
829
Dale Johannesendc0ee192008-02-27 22:36:00 +0000830 // Compute the new VT that is half the size of the old one. This is an
831 // integer MVT.
Duncan Sands92c43912008-06-06 12:08:01 +0000832 unsigned NumBits = LoadedVT.getSizeInBits();
833 MVT NewLoadedVT;
834 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000835 NumBits >>= 1;
836
837 unsigned Alignment = LD->getAlignment();
838 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000839 ISD::LoadExtType HiExtType = LD->getExtensionType();
840
841 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
842 if (HiExtType == ISD::NON_EXTLOAD)
843 HiExtType = ISD::ZEXTLOAD;
844
845 // Load the value in two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000846 SDValue Lo, Hi;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000847 if (TLI.isLittleEndian()) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000848 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000849 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000850 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000851 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000852 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000853 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsa3691432007-10-28 12:59:45 +0000854 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000855 } else {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000856 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
857 SVOffset, NewLoadedVT,LD->isVolatile(), Alignment);
858 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000859 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000860 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000861 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsa3691432007-10-28 12:59:45 +0000862 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000863 }
864
865 // aggregate the two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000866 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
Dale Johannesen352c47e2009-02-02 20:41:04 +0000867 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
868 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000869
Dale Johannesen352c47e2009-02-02 20:41:04 +0000870 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000871 Hi.getValue(1));
872
Dan Gohman8181bd12008-07-27 21:46:04 +0000873 SDValue Ops[] = { Result, TF };
Dale Johannesen352c47e2009-02-02 20:41:04 +0000874 return DAG.getMergeValues(Ops, 2, dl);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000875}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000876
Dan Gohman6d05cac2007-10-11 23:57:53 +0000877/// UnrollVectorOp - We know that the given vector has a legal type, however
878/// the operation it performs is not legal and is an operation that we have
879/// no way of lowering. "Unroll" the vector, splitting out the scalars and
880/// operating on each element individually.
Dan Gohman8181bd12008-07-27 21:46:04 +0000881SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +0000882 MVT VT = Op.getValueType();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000883 assert(isTypeLegal(VT) &&
884 "Caller should expand or promote operands that are not legal!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000885 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman6d05cac2007-10-11 23:57:53 +0000886 "Can't unroll a vector with multiple results!");
Duncan Sands92c43912008-06-06 12:08:01 +0000887 unsigned NE = VT.getVectorNumElements();
888 MVT EltVT = VT.getVectorElementType();
Dale Johannesen352c47e2009-02-02 20:41:04 +0000889 DebugLoc dl = Op.getNode()->getDebugLoc();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000890
Dan Gohman8181bd12008-07-27 21:46:04 +0000891 SmallVector<SDValue, 8> Scalars;
892 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman6d05cac2007-10-11 23:57:53 +0000893 for (unsigned i = 0; i != NE; ++i) {
894 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000895 SDValue Operand = Op.getOperand(j);
Duncan Sands92c43912008-06-06 12:08:01 +0000896 MVT OperandVT = Operand.getValueType();
897 if (OperandVT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +0000898 // A vector operand; extract a single element.
Duncan Sands92c43912008-06-06 12:08:01 +0000899 MVT OperandEltVT = OperandVT.getVectorElementType();
Dale Johannesen352c47e2009-02-02 20:41:04 +0000900 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dan Gohman6d05cac2007-10-11 23:57:53 +0000901 OperandEltVT,
902 Operand,
903 DAG.getConstant(i, MVT::i32));
904 } else {
905 // A scalar operand; just use it as is.
906 Operands[j] = Operand;
907 }
908 }
Mon P Wang9901e732008-12-09 05:46:39 +0000909
910 switch (Op.getOpcode()) {
911 default:
Dale Johannesen352c47e2009-02-02 20:41:04 +0000912 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT,
Mon P Wang9901e732008-12-09 05:46:39 +0000913 &Operands[0], Operands.size()));
914 break;
915 case ISD::SHL:
916 case ISD::SRA:
917 case ISD::SRL:
Duncan Sands7d9e3612009-01-31 15:50:11 +0000918 case ISD::ROTL:
919 case ISD::ROTR:
Dale Johannesen352c47e2009-02-02 20:41:04 +0000920 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, Operands[0],
Duncan Sands7d9e3612009-01-31 15:50:11 +0000921 DAG.getShiftAmountOperand(Operands[1])));
Mon P Wang9901e732008-12-09 05:46:39 +0000922 break;
923 }
Dan Gohman6d05cac2007-10-11 23:57:53 +0000924 }
925
Dale Johannesen352c47e2009-02-02 20:41:04 +0000926 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Scalars[0], Scalars.size());
Dan Gohman6d05cac2007-10-11 23:57:53 +0000927}
928
Duncan Sands37a3f472008-01-10 10:28:30 +0000929/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands92c43912008-06-06 12:08:01 +0000930static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands37a3f472008-01-10 10:28:30 +0000931 RTLIB::Libcall Call_F32,
932 RTLIB::Libcall Call_F64,
933 RTLIB::Libcall Call_F80,
934 RTLIB::Libcall Call_PPCF128) {
935 return
936 VT == MVT::f32 ? Call_F32 :
937 VT == MVT::f64 ? Call_F64 :
938 VT == MVT::f80 ? Call_F80 :
939 VT == MVT::ppcf128 ? Call_PPCF128 :
940 RTLIB::UNKNOWN_LIBCALL;
941}
942
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000943/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
944/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
945/// is necessary to spill the vector being inserted into to memory, perform
946/// the insert there, and then read the result back.
Dan Gohman8181bd12008-07-27 21:46:04 +0000947SDValue SelectionDAGLegalize::
Dale Johannesen352c47e2009-02-02 20:41:04 +0000948PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
949 DebugLoc dl) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000950 SDValue Tmp1 = Vec;
951 SDValue Tmp2 = Val;
952 SDValue Tmp3 = Idx;
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000953
954 // If the target doesn't support this, we have to spill the input vector
955 // to a temporary stack slot, update the element, then reload it. This is
956 // badness. We could also load the value into a vector register (either
957 // with a "move to register" or "extload into register" instruction, then
958 // permute it into place, if the idx is a constant and if the idx is
959 // supported by the target.
Duncan Sands92c43912008-06-06 12:08:01 +0000960 MVT VT = Tmp1.getValueType();
961 MVT EltVT = VT.getVectorElementType();
962 MVT IdxVT = Tmp3.getValueType();
963 MVT PtrVT = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +0000964 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000965
Gabor Greif1c80d112008-08-28 21:40:38 +0000966 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000967
968 // Store the vector.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000969 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Mon P Wang1448aad2008-10-30 08:01:45 +0000970 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000971
972 // Truncate or zero extend offset to target pointer type.
Duncan Sandsec142ee2008-06-08 20:54:56 +0000973 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000974 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000975 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +0000976 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000977 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
978 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000979 // Store the scalar value.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000980 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2,
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000981 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000982 // Load the updated vector.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000983 return DAG.getLoad(VT, dl, Ch, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000984 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000985}
986
Mon P Wang9901e732008-12-09 05:46:39 +0000987
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000988/// LegalizeOp - We know that the specified value has a legal type, and
989/// that its operands are legal. Now ensure that the operation itself
990/// is legal, recursively ensuring that the operands' operations remain
991/// legal.
Dan Gohman8181bd12008-07-27 21:46:04 +0000992SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattnerdad577b2007-08-25 01:00:22 +0000993 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
994 return Op;
995
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000996 assert(isTypeLegal(Op.getValueType()) &&
997 "Caller should expand or promote operands that are not legal!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000998 SDNode *Node = Op.getNode();
Dale Johannesenca6237b2009-01-30 23:10:59 +0000999 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001000
1001 // If this operation defines any values that cannot be represented in a
1002 // register on this target, make sure to expand or promote them.
1003 if (Node->getNumValues() > 1) {
1004 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1005 if (getTypeAction(Node->getValueType(i)) != Legal) {
1006 HandleOp(Op.getValue(i));
1007 assert(LegalizedNodes.count(Op) &&
1008 "Handling didn't add legal operands!");
1009 return LegalizedNodes[Op];
1010 }
1011 }
1012
1013 // Note that LegalizeOp may be reentered even from single-use nodes, which
1014 // means that we always must cache transformed nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00001015 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001016 if (I != LegalizedNodes.end()) return I->second;
1017
Dan Gohman8181bd12008-07-27 21:46:04 +00001018 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
1019 SDValue Result = Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001020 bool isCustom = false;
1021
1022 switch (Node->getOpcode()) {
1023 case ISD::FrameIndex:
1024 case ISD::EntryToken:
1025 case ISD::Register:
1026 case ISD::BasicBlock:
1027 case ISD::TargetFrameIndex:
1028 case ISD::TargetJumpTable:
1029 case ISD::TargetConstant:
1030 case ISD::TargetConstantFP:
1031 case ISD::TargetConstantPool:
1032 case ISD::TargetGlobalAddress:
1033 case ISD::TargetGlobalTLSAddress:
Bill Wendlingfef06052008-09-16 21:48:12 +00001034 case ISD::TargetExternalSymbol:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001035 case ISD::VALUETYPE:
1036 case ISD::SRCVALUE:
Dan Gohman12a9c082008-02-06 22:27:42 +00001037 case ISD::MEMOPERAND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001038 case ISD::CONDCODE:
Duncan Sandsc93fae32008-03-21 09:14:45 +00001039 case ISD::ARG_FLAGS:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001040 // Primitives must all be legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +00001041 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001042 "This must be legal!");
1043 break;
1044 default:
1045 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
1046 // If this is a target node, legalize it by legalizing the operands then
1047 // passing it through.
Dan Gohman8181bd12008-07-27 21:46:04 +00001048 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001049 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1050 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1051
1052 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
1053
1054 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1055 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00001056 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001057 }
1058 // Otherwise this is an unhandled builtin node. splat.
1059#ifndef NDEBUG
1060 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
1061#endif
1062 assert(0 && "Do not know how to legalize this operator!");
1063 abort();
1064 case ISD::GLOBAL_OFFSET_TABLE:
1065 case ISD::GlobalAddress:
1066 case ISD::GlobalTLSAddress:
Bill Wendlingfef06052008-09-16 21:48:12 +00001067 case ISD::ExternalSymbol:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001068 case ISD::ConstantPool:
1069 case ISD::JumpTable: // Nothing to do.
1070 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1071 default: assert(0 && "This action is not supported yet!");
1072 case TargetLowering::Custom:
1073 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001074 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001075 // FALLTHROUGH if the target doesn't want to lower this op after all.
1076 case TargetLowering::Legal:
1077 break;
1078 }
1079 break;
1080 case ISD::FRAMEADDR:
1081 case ISD::RETURNADDR:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001082 // The only option for these nodes is to custom lower them. If the target
1083 // does not custom lower them, then return zero.
1084 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001085 if (Tmp1.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001086 Result = Tmp1;
1087 else
1088 Result = DAG.getConstant(0, TLI.getPointerTy());
1089 break;
Anton Korobeynikove3d7f932007-08-29 23:18:48 +00001090 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands92c43912008-06-06 12:08:01 +00001091 MVT VT = Node->getValueType(0);
Anton Korobeynikov09386bd2007-08-29 19:28:29 +00001092 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1093 default: assert(0 && "This action is not supported yet!");
1094 case TargetLowering::Custom:
1095 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001096 if (Result.getNode()) break;
Anton Korobeynikov09386bd2007-08-29 19:28:29 +00001097 // Fall Thru
1098 case TargetLowering::Legal:
1099 Result = DAG.getConstant(0, VT);
1100 break;
1101 }
Anton Korobeynikove3d7f932007-08-29 23:18:48 +00001102 }
Anton Korobeynikov09386bd2007-08-29 19:28:29 +00001103 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001104 case ISD::EXCEPTIONADDR: {
1105 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00001106 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001107 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1108 default: assert(0 && "This action is not supported yet!");
1109 case TargetLowering::Expand: {
1110 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001111 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001112 }
1113 break;
1114 case TargetLowering::Custom:
1115 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001116 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001117 // Fall Thru
1118 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001119 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001120 Result = DAG.getMergeValues(Ops, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001121 break;
1122 }
1123 }
1124 }
Gabor Greif1c80d112008-08-28 21:40:38 +00001125 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001126
Gabor Greif1c80d112008-08-28 21:40:38 +00001127 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001128 "Cannot return more than two values!");
1129
1130 // Since we produced two values, make sure to remember that we
1131 // legalized both of them.
1132 Tmp1 = LegalizeOp(Result);
1133 Tmp2 = LegalizeOp(Result.getValue(1));
1134 AddLegalizedOperand(Op.getValue(0), Tmp1);
1135 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001136 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001137 case ISD::EHSELECTION: {
1138 Tmp1 = LegalizeOp(Node->getOperand(0));
1139 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00001140 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001141 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1142 default: assert(0 && "This action is not supported yet!");
1143 case TargetLowering::Expand: {
1144 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001145 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001146 }
1147 break;
1148 case TargetLowering::Custom:
1149 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001150 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001151 // Fall Thru
1152 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001153 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001154 Result = DAG.getMergeValues(Ops, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001155 break;
1156 }
1157 }
1158 }
Gabor Greif1c80d112008-08-28 21:40:38 +00001159 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001160
Gabor Greif1c80d112008-08-28 21:40:38 +00001161 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001162 "Cannot return more than two values!");
1163
1164 // Since we produced two values, make sure to remember that we
1165 // legalized both of them.
1166 Tmp1 = LegalizeOp(Result);
1167 Tmp2 = LegalizeOp(Result.getValue(1));
1168 AddLegalizedOperand(Op.getValue(0), Tmp1);
1169 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001170 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001171 case ISD::EH_RETURN: {
Duncan Sands92c43912008-06-06 12:08:01 +00001172 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001173 // The only "good" option for this node is to custom lower it.
1174 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1175 default: assert(0 && "This action is not supported at all!");
1176 case TargetLowering::Custom:
1177 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001178 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001179 // Fall Thru
1180 case TargetLowering::Legal:
1181 // Target does not know, how to lower this, lower to noop
1182 Result = LegalizeOp(Node->getOperand(0));
1183 break;
1184 }
1185 }
1186 break;
1187 case ISD::AssertSext:
1188 case ISD::AssertZext:
1189 Tmp1 = LegalizeOp(Node->getOperand(0));
1190 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1191 break;
1192 case ISD::MERGE_VALUES:
1193 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif46bf5472008-08-26 22:36:50 +00001194 Result = Node->getOperand(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001195 break;
1196 case ISD::CopyFromReg:
1197 Tmp1 = LegalizeOp(Node->getOperand(0));
1198 Result = Op.getValue(0);
1199 if (Node->getNumValues() == 2) {
1200 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1201 } else {
1202 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
1203 if (Node->getNumOperands() == 3) {
1204 Tmp2 = LegalizeOp(Node->getOperand(2));
1205 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1206 } else {
1207 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1208 }
1209 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1210 }
1211 // Since CopyFromReg produces two values, make sure to remember that we
1212 // legalized both of them.
1213 AddLegalizedOperand(Op.getValue(0), Result);
1214 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001215 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001216 case ISD::UNDEF: {
Duncan Sands92c43912008-06-06 12:08:01 +00001217 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001218 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
1219 default: assert(0 && "This action is not supported yet!");
1220 case TargetLowering::Expand:
Duncan Sands92c43912008-06-06 12:08:01 +00001221 if (VT.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001222 Result = DAG.getConstant(0, VT);
Duncan Sands92c43912008-06-06 12:08:01 +00001223 else if (VT.isFloatingPoint())
1224 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesen20b76352007-09-26 17:26:49 +00001225 VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001226 else
1227 assert(0 && "Unknown value type!");
1228 break;
1229 case TargetLowering::Legal:
1230 break;
1231 }
1232 break;
1233 }
1234
1235 case ISD::INTRINSIC_W_CHAIN:
1236 case ISD::INTRINSIC_WO_CHAIN:
1237 case ISD::INTRINSIC_VOID: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001238 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001239 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1240 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1241 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1242
1243 // Allow the target to custom lower its intrinsics if it wants to.
1244 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
1245 TargetLowering::Custom) {
1246 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001247 if (Tmp3.getNode()) Result = Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001248 }
1249
Gabor Greif1c80d112008-08-28 21:40:38 +00001250 if (Result.getNode()->getNumValues() == 1) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001251
1252 // Must have return value and chain result.
Gabor Greif1c80d112008-08-28 21:40:38 +00001253 assert(Result.getNode()->getNumValues() == 2 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001254 "Cannot return more than two values!");
1255
1256 // Since loads produce two values, make sure to remember that we
1257 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001258 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1259 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001260 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001261 }
1262
Dan Gohman472d12c2008-06-30 20:59:49 +00001263 case ISD::DBG_STOPPOINT:
1264 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001265 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1266
Dan Gohman472d12c2008-06-30 20:59:49 +00001267 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001268 case TargetLowering::Promote:
1269 default: assert(0 && "This action is not supported yet!");
1270 case TargetLowering::Expand: {
Devang Patelfcf1c752009-01-13 00:35:13 +00001271 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohman52c51aa2009-01-28 17:46:25 +00001272 bool useDEBUG_LOC = TLI.isOperationLegalOrCustom(ISD::DEBUG_LOC,
1273 MVT::Other);
1274 bool useLABEL = TLI.isOperationLegalOrCustom(ISD::DBG_LABEL, MVT::Other);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001275
Dan Gohman472d12c2008-06-30 20:59:49 +00001276 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
Devang Patelfcf1c752009-01-13 00:35:13 +00001277 GlobalVariable *CU_GV = cast<GlobalVariable>(DSP->getCompileUnit());
1278 if (DW && (useDEBUG_LOC || useLABEL) && !CU_GV->isDeclaration()) {
1279 DICompileUnit CU(cast<GlobalVariable>(DSP->getCompileUnit()));
1280 unsigned SrcFile = DW->RecordSource(CU.getDirectory(),
1281 CU.getFilename());
1282
Dan Gohman472d12c2008-06-30 20:59:49 +00001283 unsigned Line = DSP->getLine();
1284 unsigned Col = DSP->getColumn();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001285
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001286 // A bit self-referential to have DebugLoc on Debug_Loc nodes, but
1287 // it won't hurt anything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001288 if (useDEBUG_LOC) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001289 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Evan Chengd6f57682008-07-08 20:06:39 +00001290 DAG.getConstant(Col, MVT::i32),
1291 DAG.getConstant(SrcFile, MVT::i32) };
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001292 Result = DAG.getNode(ISD::DEBUG_LOC, dl, MVT::Other, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001293 } else {
Devang Patelfcf1c752009-01-13 00:35:13 +00001294 unsigned ID = DW->RecordSourceLine(Line, Col, SrcFile);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001295 Result = DAG.getLabel(ISD::DBG_LABEL, dl, Tmp1, ID);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001296 }
1297 } else {
1298 Result = Tmp1; // chain
1299 }
1300 break;
1301 }
Evan Chengd6f57682008-07-08 20:06:39 +00001302 case TargetLowering::Legal: {
1303 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1304 if (Action == Legal && Tmp1 == Node->getOperand(0))
1305 break;
1306
Dan Gohman8181bd12008-07-27 21:46:04 +00001307 SmallVector<SDValue, 8> Ops;
Evan Chengd6f57682008-07-08 20:06:39 +00001308 Ops.push_back(Tmp1);
1309 if (Action == Legal) {
1310 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1311 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1312 } else {
1313 // Otherwise promote them.
1314 Ops.push_back(PromoteOp(Node->getOperand(1)));
1315 Ops.push_back(PromoteOp(Node->getOperand(2)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001316 }
Evan Chengd6f57682008-07-08 20:06:39 +00001317 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1318 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1319 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001320 break;
1321 }
Evan Chengd6f57682008-07-08 20:06:39 +00001322 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001323 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001324
1325 case ISD::DECLARE:
1326 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1327 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1328 default: assert(0 && "This action is not supported yet!");
1329 case TargetLowering::Legal:
1330 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1331 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1332 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1333 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1334 break;
Chris Lattner203cd052008-02-28 05:53:40 +00001335 case TargetLowering::Expand:
1336 Result = LegalizeOp(Node->getOperand(0));
1337 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001338 }
1339 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001340
1341 case ISD::DEBUG_LOC:
1342 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
1343 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
1344 default: assert(0 && "This action is not supported yet!");
Evan Chengd6f57682008-07-08 20:06:39 +00001345 case TargetLowering::Legal: {
1346 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001347 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Chengd6f57682008-07-08 20:06:39 +00001348 if (Action == Legal && Tmp1 == Node->getOperand(0))
1349 break;
1350 if (Action == Legal) {
1351 Tmp2 = Node->getOperand(1);
1352 Tmp3 = Node->getOperand(2);
1353 Tmp4 = Node->getOperand(3);
1354 } else {
1355 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1356 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1357 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1358 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001359 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1360 break;
1361 }
Evan Chengd6f57682008-07-08 20:06:39 +00001362 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001363 break;
1364
Dan Gohmanfa607c92008-07-01 00:05:16 +00001365 case ISD::DBG_LABEL:
1366 case ISD::EH_LABEL:
1367 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1368 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001369 default: assert(0 && "This action is not supported yet!");
1370 case TargetLowering::Legal:
1371 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohmanfa607c92008-07-01 00:05:16 +00001372 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001373 break;
1374 case TargetLowering::Expand:
1375 Result = LegalizeOp(Node->getOperand(0));
1376 break;
1377 }
1378 break;
1379
Evan Chengd1d68072008-03-08 00:58:38 +00001380 case ISD::PREFETCH:
1381 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1382 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1383 default: assert(0 && "This action is not supported yet!");
1384 case TargetLowering::Legal:
1385 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1386 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1387 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1388 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1389 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1390 break;
1391 case TargetLowering::Expand:
1392 // It's a noop.
1393 Result = LegalizeOp(Node->getOperand(0));
1394 break;
1395 }
1396 break;
1397
Andrew Lenharth785610d2008-02-16 01:24:58 +00001398 case ISD::MEMBARRIER: {
1399 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001400 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1401 default: assert(0 && "This action is not supported yet!");
1402 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001403 SDValue Ops[6];
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001404 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sands3ee041a2008-02-27 08:53:44 +00001405 for (int x = 1; x < 6; ++x) {
1406 Ops[x] = Node->getOperand(x);
1407 if (!isTypeLegal(Ops[x].getValueType()))
1408 Ops[x] = PromoteOp(Ops[x]);
1409 }
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001410 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1411 break;
1412 }
1413 case TargetLowering::Expand:
1414 //There is no libgcc call for this op
1415 Result = Node->getOperand(0); // Noop
1416 break;
1417 }
Andrew Lenharth785610d2008-02-16 01:24:58 +00001418 break;
1419 }
1420
Dan Gohmanbebba8d2008-12-23 21:37:04 +00001421 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001422 unsigned int num_operands = 4;
1423 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001424 SDValue Ops[4];
Mon P Wang078a62d2008-05-05 19:05:59 +00001425 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001426 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang078a62d2008-05-05 19:05:59 +00001427 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1428
1429 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1430 default: assert(0 && "This action is not supported yet!");
1431 case TargetLowering::Custom:
1432 Result = TLI.LowerOperation(Result, DAG);
1433 break;
1434 case TargetLowering::Legal:
1435 break;
1436 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001437 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1438 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001439 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001440 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00001441 case ISD::ATOMIC_LOAD_ADD:
1442 case ISD::ATOMIC_LOAD_SUB:
1443 case ISD::ATOMIC_LOAD_AND:
1444 case ISD::ATOMIC_LOAD_OR:
1445 case ISD::ATOMIC_LOAD_XOR:
1446 case ISD::ATOMIC_LOAD_NAND:
1447 case ISD::ATOMIC_LOAD_MIN:
1448 case ISD::ATOMIC_LOAD_MAX:
1449 case ISD::ATOMIC_LOAD_UMIN:
1450 case ISD::ATOMIC_LOAD_UMAX:
1451 case ISD::ATOMIC_SWAP: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001452 unsigned int num_operands = 3;
1453 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001454 SDValue Ops[3];
Mon P Wang078a62d2008-05-05 19:05:59 +00001455 for (unsigned int x = 0; x < num_operands; ++x)
1456 Ops[x] = LegalizeOp(Node->getOperand(x));
1457 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sandsac496a12008-07-04 11:47:58 +00001458
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001459 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001460 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001461 case TargetLowering::Custom:
1462 Result = TLI.LowerOperation(Result, DAG);
1463 break;
1464 case TargetLowering::Legal:
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001465 break;
1466 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001467 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1468 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001469 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001470 }
Scott Michelf2e2b702007-08-08 23:23:31 +00001471 case ISD::Constant: {
1472 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1473 unsigned opAction =
1474 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1475
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001476 // We know we don't need to expand constants here, constants only have one
1477 // value and we check that it is fine above.
1478
Scott Michelf2e2b702007-08-08 23:23:31 +00001479 if (opAction == TargetLowering::Custom) {
1480 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001481 if (Tmp1.getNode())
Scott Michelf2e2b702007-08-08 23:23:31 +00001482 Result = Tmp1;
1483 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001484 break;
Scott Michelf2e2b702007-08-08 23:23:31 +00001485 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001486 case ISD::ConstantFP: {
1487 // Spill FP immediates to the constant pool if the target cannot directly
1488 // codegen them. Targets often have some immediate values that can be
1489 // efficiently generated into an FP register without a load. We explicitly
1490 // leave these constants as ConstantFP nodes for the target to deal with.
1491 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1492
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001493 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1494 default: assert(0 && "This action is not supported yet!");
Nate Begemane2ba64f2008-02-14 08:57:00 +00001495 case TargetLowering::Legal:
1496 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001497 case TargetLowering::Custom:
1498 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001499 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001500 Result = Tmp3;
1501 break;
1502 }
1503 // FALLTHROUGH
Nate Begemane2ba64f2008-02-14 08:57:00 +00001504 case TargetLowering::Expand: {
1505 // Check to see if this FP immediate is already legal.
1506 bool isLegal = false;
1507 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1508 E = TLI.legal_fpimm_end(); I != E; ++I) {
1509 if (CFP->isExactlyValue(*I)) {
1510 isLegal = true;
1511 break;
1512 }
1513 }
1514 // If this is a legal constant, turn it into a TargetConstantFP node.
1515 if (isLegal)
1516 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001517 Result = ExpandConstantFP(CFP, true, DAG, TLI);
1518 }
Nate Begemane2ba64f2008-02-14 08:57:00 +00001519 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001520 break;
1521 }
1522 case ISD::TokenFactor:
1523 if (Node->getNumOperands() == 2) {
1524 Tmp1 = LegalizeOp(Node->getOperand(0));
1525 Tmp2 = LegalizeOp(Node->getOperand(1));
1526 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1527 } else if (Node->getNumOperands() == 3) {
1528 Tmp1 = LegalizeOp(Node->getOperand(0));
1529 Tmp2 = LegalizeOp(Node->getOperand(1));
1530 Tmp3 = LegalizeOp(Node->getOperand(2));
1531 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1532 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00001533 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001534 // Legalize the operands.
1535 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1536 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1537 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1538 }
1539 break;
1540
1541 case ISD::FORMAL_ARGUMENTS:
1542 case ISD::CALL:
1543 // The only option for this is to custom lower it.
1544 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001545 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesenac246272008-03-05 19:14:03 +00001546 // A call within a calling sequence must be legalized to something
1547 // other than the normal CALLSEQ_END. Violating this gets Legalize
1548 // into an infinite loop.
1549 assert ((!IsLegalizingCall ||
1550 Node->getOpcode() != ISD::CALL ||
Gabor Greif1c80d112008-08-28 21:40:38 +00001551 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesenac246272008-03-05 19:14:03 +00001552 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling22f8deb2007-11-13 00:44:25 +00001553
1554 // The number of incoming and outgoing values should match; unless the final
1555 // outgoing value is a flag.
Gabor Greif1c80d112008-08-28 21:40:38 +00001556 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1557 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1558 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling22f8deb2007-11-13 00:44:25 +00001559 MVT::Flag)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001560 "Lowering call/formal_arguments produced unexpected # results!");
1561
1562 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
1563 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greif1c80d112008-08-28 21:40:38 +00001564 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1565 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling22f8deb2007-11-13 00:44:25 +00001566 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001567 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00001568 if (Op.getResNo() == i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001569 Tmp2 = Tmp1;
Dan Gohman8181bd12008-07-27 21:46:04 +00001570 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001571 }
1572 return Tmp2;
Christopher Lambb768c2e2007-07-26 07:34:40 +00001573 case ISD::EXTRACT_SUBREG: {
1574 Tmp1 = LegalizeOp(Node->getOperand(0));
1575 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1576 assert(idx && "Operand must be a constant");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001577 Tmp2 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lambb768c2e2007-07-26 07:34:40 +00001578 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1579 }
1580 break;
1581 case ISD::INSERT_SUBREG: {
1582 Tmp1 = LegalizeOp(Node->getOperand(0));
1583 Tmp2 = LegalizeOp(Node->getOperand(1));
1584 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1585 assert(idx && "Operand must be a constant");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001586 Tmp3 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lambb768c2e2007-07-26 07:34:40 +00001587 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1588 }
1589 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001590 case ISD::BUILD_VECTOR:
1591 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
1592 default: assert(0 && "This action is not supported yet!");
1593 case TargetLowering::Custom:
1594 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001595 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001596 Result = Tmp3;
1597 break;
1598 }
1599 // FALLTHROUGH
1600 case TargetLowering::Expand:
Gabor Greif1c80d112008-08-28 21:40:38 +00001601 Result = ExpandBUILD_VECTOR(Result.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001602 break;
1603 }
1604 break;
1605 case ISD::INSERT_VECTOR_ELT:
1606 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001607 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001608
1609 // The type of the value to insert may not be legal, even though the vector
1610 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1611 // here.
1612 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1613 default: assert(0 && "Cannot expand insert element operand");
1614 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1615 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang1448aad2008-10-30 08:01:45 +00001616 case Expand:
1617 // FIXME: An alternative would be to check to see if the target is not
1618 // going to custom lower this operation, we could bitcast to half elt
1619 // width and perform two inserts at that width, if that is legal.
1620 Tmp2 = Node->getOperand(1);
1621 break;
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001622 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001623 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1624
1625 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1626 Node->getValueType(0))) {
1627 default: assert(0 && "This action is not supported yet!");
1628 case TargetLowering::Legal:
1629 break;
1630 case TargetLowering::Custom:
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001631 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001632 if (Tmp4.getNode()) {
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001633 Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001634 break;
1635 }
1636 // FALLTHROUGH
Mon P Wang1448aad2008-10-30 08:01:45 +00001637 case TargetLowering::Promote:
1638 // Fall thru for vector case
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001639 case TargetLowering::Expand: {
1640 // If the insert index is a constant, codegen this as a scalar_to_vector,
1641 // then a shuffle that inserts it into the right position in the vector.
1642 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001643 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1644 // match the element type of the vector being created.
1645 if (Tmp2.getValueType() ==
Duncan Sands92c43912008-06-06 12:08:01 +00001646 Op.getValueType().getVectorElementType()) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001647 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001648 Tmp1.getValueType(), Tmp2);
1649
Duncan Sands92c43912008-06-06 12:08:01 +00001650 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1651 MVT ShufMaskVT =
1652 MVT::getIntVectorWithNumElements(NumElts);
1653 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001654
1655 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1656 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1657 // elt 0 of the RHS.
Dan Gohman8181bd12008-07-27 21:46:04 +00001658 SmallVector<SDValue, 8> ShufOps;
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001659 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001660 if (i != InsertPos->getZExtValue())
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001661 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1662 else
1663 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1664 }
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001665 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, ShufMaskVT,
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001666 &ShufOps[0], ShufOps.size());
1667
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001668 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Tmp1.getValueType(),
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001669 Tmp1, ScVec, ShufMask);
1670 Result = LegalizeOp(Result);
1671 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001672 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001673 }
Dale Johannesen352c47e2009-02-02 20:41:04 +00001674 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001675 break;
1676 }
1677 }
1678 break;
1679 case ISD::SCALAR_TO_VECTOR:
1680 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1681 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1682 break;
1683 }
1684
1685 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1686 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1687 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1688 Node->getValueType(0))) {
1689 default: assert(0 && "This action is not supported yet!");
1690 case TargetLowering::Legal:
1691 break;
1692 case TargetLowering::Custom:
1693 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001694 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001695 Result = Tmp3;
1696 break;
1697 }
1698 // FALLTHROUGH
1699 case TargetLowering::Expand:
1700 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1701 break;
1702 }
1703 break;
1704 case ISD::VECTOR_SHUFFLE:
1705 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1706 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1707 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1708
1709 // Allow targets to custom lower the SHUFFLEs they support.
1710 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1711 default: assert(0 && "Unknown operation action!");
1712 case TargetLowering::Legal:
1713 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1714 "vector shuffle should not be created if not legal!");
1715 break;
1716 case TargetLowering::Custom:
1717 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001718 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001719 Result = Tmp3;
1720 break;
1721 }
1722 // FALLTHROUGH
1723 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00001724 MVT VT = Node->getValueType(0);
1725 MVT EltVT = VT.getVectorElementType();
1726 MVT PtrVT = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00001727 SDValue Mask = Node->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001728 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00001729 SmallVector<SDValue,8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001730 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001731 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001732 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001733 Ops.push_back(DAG.getNode(ISD::UNDEF, dl, EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001734 } else {
1735 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001736 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001737 if (Idx < NumElems)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001738 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001739 DAG.getConstant(Idx, PtrVT)));
1740 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001741 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001742 DAG.getConstant(Idx - NumElems, PtrVT)));
1743 }
1744 }
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001745 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001746 break;
1747 }
1748 case TargetLowering::Promote: {
1749 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00001750 MVT OVT = Node->getValueType(0);
1751 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001752
1753 // Cast the two input vectors.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001754 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
1755 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001756
1757 // Convert the shuffle mask to the right # elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00001758 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greif1c80d112008-08-28 21:40:38 +00001759 assert(Tmp3.getNode() && "Shuffle not legal?");
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001760 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, NVT, Tmp1, Tmp2, Tmp3);
1761 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001762 break;
1763 }
1764 }
1765 break;
1766
1767 case ISD::EXTRACT_VECTOR_ELT:
1768 Tmp1 = Node->getOperand(0);
1769 Tmp2 = LegalizeOp(Node->getOperand(1));
1770 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1771 Result = ExpandEXTRACT_VECTOR_ELT(Result);
1772 break;
1773
1774 case ISD::EXTRACT_SUBVECTOR:
1775 Tmp1 = Node->getOperand(0);
1776 Tmp2 = LegalizeOp(Node->getOperand(1));
1777 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1778 Result = ExpandEXTRACT_SUBVECTOR(Result);
1779 break;
1780
Mon P Wang1448aad2008-10-30 08:01:45 +00001781 case ISD::CONCAT_VECTORS: {
1782 // Use extract/insert/build vector for now. We might try to be
1783 // more clever later.
1784 MVT PtrVT = TLI.getPointerTy();
1785 SmallVector<SDValue, 8> Ops;
1786 unsigned NumOperands = Node->getNumOperands();
1787 for (unsigned i=0; i < NumOperands; ++i) {
1788 SDValue SubOp = Node->getOperand(i);
1789 MVT VVT = SubOp.getNode()->getValueType(0);
1790 MVT EltVT = VVT.getVectorElementType();
1791 unsigned NumSubElem = VVT.getVectorNumElements();
1792 for (unsigned j=0; j < NumSubElem; ++j) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001793 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
Mon P Wang1448aad2008-10-30 08:01:45 +00001794 DAG.getConstant(j, PtrVT)));
1795 }
1796 }
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001797 return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
Mon P Wang1448aad2008-10-30 08:01:45 +00001798 &Ops[0], Ops.size()));
1799 }
1800
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001801 case ISD::CALLSEQ_START: {
1802 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1803
1804 // Recursively Legalize all of the inputs of the call end that do not lead
1805 // to this call start. This ensures that any libcalls that need be inserted
1806 // are inserted *before* the CALLSEQ_START.
1807 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
1808 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greif1c80d112008-08-28 21:40:38 +00001809 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001810 NodesLeadingTo);
1811 }
1812
1813 // Now that we legalized all of the inputs (which may have inserted
1814 // libcalls) create the new CALLSEQ_START node.
1815 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1816
1817 // Merge in the last call, to ensure that this call start after the last
1818 // call ended.
1819 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001820 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1821 Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001822 Tmp1 = LegalizeOp(Tmp1);
1823 }
1824
1825 // Do not try to legalize the target-specific arguments (#1+).
1826 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001827 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001828 Ops[0] = Tmp1;
1829 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1830 }
1831
1832 // Remember that the CALLSEQ_START is legalized.
1833 AddLegalizedOperand(Op.getValue(0), Result);
1834 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1835 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1836
1837 // Now that the callseq_start and all of the non-call nodes above this call
1838 // sequence have been legalized, legalize the call itself. During this
1839 // process, no libcalls can/will be inserted, guaranteeing that no calls
1840 // can overlap.
1841 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001842 // Note that we are selecting this call!
Dan Gohman8181bd12008-07-27 21:46:04 +00001843 LastCALLSEQ_END = SDValue(CallEnd, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001844 IsLegalizingCall = true;
1845
1846 // Legalize the call, starting from the CALLSEQ_END.
1847 LegalizeOp(LastCALLSEQ_END);
1848 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1849 return Result;
1850 }
1851 case ISD::CALLSEQ_END:
1852 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1853 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greif1c80d112008-08-28 21:40:38 +00001854 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001855 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1856 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001857 assert(I != LegalizedNodes.end() &&
1858 "Legalizing the call start should have legalized this node!");
1859 return I->second;
1860 }
1861
1862 // Otherwise, the call start has been legalized and everything is going
1863 // according to plan. Just legalize ourselves normally here.
1864 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1865 // Do not try to legalize the target-specific arguments (#1+), except for
1866 // an optional flag input.
1867 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1868 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001869 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001870 Ops[0] = Tmp1;
1871 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1872 }
1873 } else {
1874 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1875 if (Tmp1 != Node->getOperand(0) ||
1876 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001877 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001878 Ops[0] = Tmp1;
1879 Ops.back() = Tmp2;
1880 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1881 }
1882 }
1883 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
1884 // This finishes up call legalization.
1885 IsLegalizingCall = false;
1886
1887 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00001888 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001889 if (Node->getNumValues() == 2)
Dan Gohman8181bd12008-07-27 21:46:04 +00001890 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001891 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001892 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands92c43912008-06-06 12:08:01 +00001893 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001894 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1895 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1896 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
1897 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1898
1899 Tmp1 = Result.getValue(0);
1900 Tmp2 = Result.getValue(1);
Evan Chenga448bc42007-08-16 23:50:06 +00001901 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001902 default: assert(0 && "This action is not supported yet!");
1903 case TargetLowering::Expand: {
1904 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1905 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1906 " not tell us which reg is the stack pointer!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001907 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling22f8deb2007-11-13 00:44:25 +00001908
1909 // Chain the dynamic stack allocation so that it doesn't modify the stack
1910 // pointer when other instructions are using the stack.
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001911 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling22f8deb2007-11-13 00:44:25 +00001912
Dan Gohman8181bd12008-07-27 21:46:04 +00001913 SDValue Size = Tmp2.getOperand(1);
1914 SDValue SP = DAG.getCopyFromReg(Chain, SPReg, VT);
Evan Chenga448bc42007-08-16 23:50:06 +00001915 Chain = SP.getValue(1);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001916 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Chenga448bc42007-08-16 23:50:06 +00001917 unsigned StackAlign =
1918 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1919 if (Align > StackAlign)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001920 SP = DAG.getNode(ISD::AND, dl, VT, SP,
Evan Cheng51ce0382007-08-17 18:02:22 +00001921 DAG.getConstant(-(uint64_t)Align, VT));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001922 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Bill Wendling22f8deb2007-11-13 00:44:25 +00001923 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1924
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001925 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001926 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling22f8deb2007-11-13 00:44:25 +00001927
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001928 Tmp1 = LegalizeOp(Tmp1);
1929 Tmp2 = LegalizeOp(Tmp2);
1930 break;
1931 }
1932 case TargetLowering::Custom:
1933 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001934 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001935 Tmp1 = LegalizeOp(Tmp3);
1936 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1937 }
1938 break;
1939 case TargetLowering::Legal:
1940 break;
1941 }
1942 // Since this op produce two values, make sure to remember that we
1943 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001944 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1945 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001946 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001947 }
1948 case ISD::INLINEASM: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001949 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001950 bool Changed = false;
1951 // Legalize all of the operands of the inline asm, in case they are nodes
1952 // that need to be expanded or something. Note we skip the asm string and
1953 // all of the TargetConstant flags.
Dan Gohman8181bd12008-07-27 21:46:04 +00001954 SDValue Op = LegalizeOp(Ops[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001955 Changed = Op != Ops[0];
1956 Ops[0] = Op;
1957
1958 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1959 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001960 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getZExtValue() >> 3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001961 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001962 SDValue Op = LegalizeOp(Ops[i]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001963 if (Op != Ops[i]) {
1964 Changed = true;
1965 Ops[i] = Op;
1966 }
1967 }
1968 }
1969
1970 if (HasInFlag) {
1971 Op = LegalizeOp(Ops.back());
1972 Changed |= Op != Ops.back();
1973 Ops.back() = Op;
1974 }
1975
1976 if (Changed)
1977 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1978
1979 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman8181bd12008-07-27 21:46:04 +00001980 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1981 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001982 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001983 }
1984 case ISD::BR:
1985 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1986 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001987 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001988 Tmp1 = LegalizeOp(Tmp1);
1989 LastCALLSEQ_END = DAG.getEntryNode();
1990
1991 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1992 break;
1993 case ISD::BRIND:
1994 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1995 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001996 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001997 Tmp1 = LegalizeOp(Tmp1);
1998 LastCALLSEQ_END = DAG.getEntryNode();
1999
2000 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2001 default: assert(0 && "Indirect target must be legal type (pointer)!");
2002 case Legal:
2003 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2004 break;
2005 }
2006 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2007 break;
2008 case ISD::BR_JT:
2009 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2010 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002011 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002012 Tmp1 = LegalizeOp(Tmp1);
2013 LastCALLSEQ_END = DAG.getEntryNode();
2014
2015 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
2016 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2017
2018 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
2019 default: assert(0 && "This action is not supported yet!");
2020 case TargetLowering::Legal: break;
2021 case TargetLowering::Custom:
2022 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002023 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002024 break;
2025 case TargetLowering::Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002026 SDValue Chain = Result.getOperand(0);
2027 SDValue Table = Result.getOperand(1);
2028 SDValue Index = Result.getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002029
Duncan Sands92c43912008-06-06 12:08:01 +00002030 MVT PTy = TLI.getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002031 MachineFunction &MF = DAG.getMachineFunction();
2032 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002033 Index= DAG.getNode(ISD::MUL, dl, PTy,
2034 Index, DAG.getConstant(EntrySize, PTy));
2035 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002036
Duncan Sands12ddc802008-12-12 08:13:38 +00002037 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002038 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Duncan Sands12ddc802008-12-12 08:13:38 +00002039 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Cheng6fb06762007-11-09 01:32:10 +00002040 Addr = LD;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002041 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2042 // For PIC, the sequence is:
2043 // BRIND(load(Jumptable + index) + RelocBase)
Evan Cheng6fb06762007-11-09 01:32:10 +00002044 // RelocBase can be JumpTable, GOT or some sort of global base.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002045 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
Evan Cheng6fb06762007-11-09 01:32:10 +00002046 TLI.getPICJumpTableRelocBase(Table, DAG));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002047 }
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002048 Result = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002049 }
2050 }
2051 break;
2052 case ISD::BRCOND:
2053 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2054 // Ensure that libcalls are emitted before a return.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002055 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002056 Tmp1 = LegalizeOp(Tmp1);
2057 LastCALLSEQ_END = DAG.getEntryNode();
2058
2059 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2060 case Expand: assert(0 && "It's impossible to expand bools");
2061 case Legal:
2062 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2063 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00002064 case Promote: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002065 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
2066
2067 // The top bits of the promoted condition are not necessarily zero, ensure
2068 // that the value is properly zero extended.
Dan Gohman07961cd2008-02-25 21:11:39 +00002069 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002070 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman07961cd2008-02-25 21:11:39 +00002071 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002072 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, MVT::i1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002073 break;
2074 }
Dan Gohman07961cd2008-02-25 21:11:39 +00002075 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002076
2077 // Basic block destination (Op#2) is always legal.
2078 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2079
2080 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
2081 default: assert(0 && "This action is not supported yet!");
2082 case TargetLowering::Legal: break;
2083 case TargetLowering::Custom:
2084 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002085 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002086 break;
2087 case TargetLowering::Expand:
2088 // Expand brcond's setcc into its constituent parts and create a BR_CC
2089 // Node.
2090 if (Tmp2.getOpcode() == ISD::SETCC) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002091 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
2092 Tmp1, Tmp2.getOperand(2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002093 Tmp2.getOperand(0), Tmp2.getOperand(1),
2094 Node->getOperand(2));
2095 } else {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002096 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002097 DAG.getCondCode(ISD::SETNE), Tmp2,
2098 DAG.getConstant(0, Tmp2.getValueType()),
2099 Node->getOperand(2));
2100 }
2101 break;
2102 }
2103 break;
2104 case ISD::BR_CC:
2105 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2106 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002107 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002108 Tmp1 = LegalizeOp(Tmp1);
2109 Tmp2 = Node->getOperand(2); // LHS
2110 Tmp3 = Node->getOperand(3); // RHS
2111 Tmp4 = Node->getOperand(1); // CC
2112
Dale Johannesen352c47e2009-02-02 20:41:04 +00002113 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
2114 Tmp2, Tmp3, Tmp4, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002115 LastCALLSEQ_END = DAG.getEntryNode();
2116
Evan Cheng71343822008-10-15 02:05:31 +00002117 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002118 // the LHS is a legal SETCC itself. In this case, we need to compare
2119 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00002120 if (Tmp3.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002121 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2122 Tmp4 = DAG.getCondCode(ISD::SETNE);
2123 }
2124
2125 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
2126 Node->getOperand(4));
2127
2128 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2129 default: assert(0 && "Unexpected action for BR_CC!");
2130 case TargetLowering::Legal: break;
2131 case TargetLowering::Custom:
2132 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002133 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002134 break;
2135 }
2136 break;
2137 case ISD::LOAD: {
2138 LoadSDNode *LD = cast<LoadSDNode>(Node);
2139 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2140 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
2141
2142 ISD::LoadExtType ExtType = LD->getExtensionType();
2143 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands92c43912008-06-06 12:08:01 +00002144 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002145 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2146 Tmp3 = Result.getValue(0);
2147 Tmp4 = Result.getValue(1);
2148
2149 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2150 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002151 case TargetLowering::Legal:
2152 // If this is an unaligned load and the target doesn't support it,
2153 // expand it.
2154 if (!TLI.allowsUnalignedMemoryAccesses()) {
2155 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002156 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002157 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00002158 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002159 TLI);
2160 Tmp3 = Result.getOperand(0);
2161 Tmp4 = Result.getOperand(1);
Dale Johannesen08275382007-09-08 19:29:23 +00002162 Tmp3 = LegalizeOp(Tmp3);
2163 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002164 }
2165 }
2166 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002167 case TargetLowering::Custom:
2168 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002169 if (Tmp1.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002170 Tmp3 = LegalizeOp(Tmp1);
2171 Tmp4 = LegalizeOp(Tmp1.getValue(1));
2172 }
2173 break;
2174 case TargetLowering::Promote: {
2175 // Only promote a load of vector type to another.
Duncan Sands92c43912008-06-06 12:08:01 +00002176 assert(VT.isVector() && "Cannot promote this load!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002177 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002178 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002179
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002180 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002181 LD->getSrcValueOffset(),
2182 LD->isVolatile(), LD->getAlignment());
2183 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
2184 Tmp4 = LegalizeOp(Tmp1.getValue(1));
2185 break;
2186 }
2187 }
2188 // Since loads produce two values, make sure to remember that we
2189 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002190 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2191 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif46bf5472008-08-26 22:36:50 +00002192 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002193 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00002194 MVT SrcVT = LD->getMemoryVT();
2195 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sands082524c2008-01-23 20:39:46 +00002196 int SVOffset = LD->getSrcValueOffset();
2197 unsigned Alignment = LD->getAlignment();
2198 bool isVolatile = LD->isVolatile();
2199
Duncan Sands92c43912008-06-06 12:08:01 +00002200 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sands082524c2008-01-23 20:39:46 +00002201 // Some targets pretend to have an i1 loading operation, and actually
2202 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2203 // bits are guaranteed to be zero; it helps the optimizers understand
2204 // that these bits are zero. It is also useful for EXTLOAD, since it
2205 // tells the optimizers that those bits are undefined. It would be
2206 // nice to have an effective generic way of getting these benefits...
2207 // Until such a way is found, don't insist on promoting i1 here.
2208 (SrcVT != MVT::i1 ||
Evan Cheng08c171a2008-10-14 21:26:46 +00002209 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sands082524c2008-01-23 20:39:46 +00002210 // Promote to a byte-sized load if not loading an integral number of
2211 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands92c43912008-06-06 12:08:01 +00002212 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2213 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002214 SDValue Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00002215
2216 // The extra bits are guaranteed to be zero, since we stored them that
2217 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2218
2219 ISD::LoadExtType NewExtType =
2220 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2221
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002222 Result = DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Duncan Sands082524c2008-01-23 20:39:46 +00002223 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2224 NVT, isVolatile, Alignment);
2225
2226 Ch = Result.getValue(1); // The chain.
2227
2228 if (ExtType == ISD::SEXTLOAD)
2229 // Having the top bits zero doesn't help when sign extending.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002230 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2231 Result.getValueType(),
Duncan Sands082524c2008-01-23 20:39:46 +00002232 Result, DAG.getValueType(SrcVT));
2233 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2234 // All the top bits are guaranteed to be zero - inform the optimizers.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002235 Result = DAG.getNode(ISD::AssertZext, dl,
2236 Result.getValueType(), Result,
Duncan Sands082524c2008-01-23 20:39:46 +00002237 DAG.getValueType(SrcVT));
2238
2239 Tmp1 = LegalizeOp(Result);
2240 Tmp2 = LegalizeOp(Ch);
2241 } else if (SrcWidth & (SrcWidth - 1)) {
2242 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands92c43912008-06-06 12:08:01 +00002243 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sands082524c2008-01-23 20:39:46 +00002244 "Unsupported extload!");
2245 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2246 assert(RoundWidth < SrcWidth);
2247 unsigned ExtraWidth = SrcWidth - RoundWidth;
2248 assert(ExtraWidth < RoundWidth);
2249 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2250 "Load size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002251 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2252 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002253 SDValue Lo, Hi, Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00002254 unsigned IncrementSize;
2255
2256 if (TLI.isLittleEndian()) {
2257 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2258 // Load the bottom RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002259 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2260 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002261 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2262 Alignment);
2263
2264 // Load the remaining ExtraWidth bits.
2265 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002266 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002267 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002268 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002269 LD->getSrcValue(), SVOffset + IncrementSize,
2270 ExtraVT, isVolatile,
2271 MinAlign(Alignment, IncrementSize));
2272
2273 // Build a factor node to remember that this load is independent of the
2274 // other one.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002275 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sands082524c2008-01-23 20:39:46 +00002276 Hi.getValue(1));
2277
2278 // Move the top bits to the right place.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002279 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sands082524c2008-01-23 20:39:46 +00002280 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2281
2282 // Join the hi and lo parts.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002283 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002284 } else {
Duncan Sands082524c2008-01-23 20:39:46 +00002285 // Big endian - avoid unaligned loads.
2286 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2287 // Load the top RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002288 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002289 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2290 Alignment);
2291
2292 // Load the remaining ExtraWidth bits.
2293 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002294 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002295 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002296 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2297 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002298 LD->getSrcValue(), SVOffset + IncrementSize,
2299 ExtraVT, isVolatile,
2300 MinAlign(Alignment, IncrementSize));
2301
2302 // Build a factor node to remember that this load is independent of the
2303 // other one.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002304 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sands082524c2008-01-23 20:39:46 +00002305 Hi.getValue(1));
2306
2307 // Move the top bits to the right place.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002308 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sands082524c2008-01-23 20:39:46 +00002309 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2310
2311 // Join the hi and lo parts.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002312 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sands082524c2008-01-23 20:39:46 +00002313 }
2314
2315 Tmp1 = LegalizeOp(Result);
2316 Tmp2 = LegalizeOp(Ch);
2317 } else {
Evan Cheng08c171a2008-10-14 21:26:46 +00002318 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sands082524c2008-01-23 20:39:46 +00002319 default: assert(0 && "This action is not supported yet!");
2320 case TargetLowering::Custom:
2321 isCustom = true;
2322 // FALLTHROUGH
2323 case TargetLowering::Legal:
2324 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2325 Tmp1 = Result.getValue(0);
2326 Tmp2 = Result.getValue(1);
2327
2328 if (isCustom) {
2329 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002330 if (Tmp3.getNode()) {
Duncan Sands082524c2008-01-23 20:39:46 +00002331 Tmp1 = LegalizeOp(Tmp3);
2332 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2333 }
2334 } else {
2335 // If this is an unaligned load and the target doesn't support it,
2336 // expand it.
2337 if (!TLI.allowsUnalignedMemoryAccesses()) {
2338 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002339 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sands082524c2008-01-23 20:39:46 +00002340 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00002341 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sands082524c2008-01-23 20:39:46 +00002342 TLI);
2343 Tmp1 = Result.getOperand(0);
2344 Tmp2 = Result.getOperand(1);
2345 Tmp1 = LegalizeOp(Tmp1);
2346 Tmp2 = LegalizeOp(Tmp2);
2347 }
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002348 }
2349 }
Duncan Sands082524c2008-01-23 20:39:46 +00002350 break;
2351 case TargetLowering::Expand:
2352 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2353 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002354 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sands082524c2008-01-23 20:39:46 +00002355 LD->getSrcValueOffset(),
2356 LD->isVolatile(), LD->getAlignment());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002357 Result = DAG.getNode(ISD::FP_EXTEND, dl,
2358 Node->getValueType(0), Load);
Duncan Sands082524c2008-01-23 20:39:46 +00002359 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2360 Tmp2 = LegalizeOp(Load.getValue(1));
2361 break;
2362 }
2363 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2364 // Turn the unsupported load into an EXTLOAD followed by an explicit
2365 // zero/sign extend inreg.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002366 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Duncan Sands082524c2008-01-23 20:39:46 +00002367 Tmp1, Tmp2, LD->getSrcValue(),
2368 LD->getSrcValueOffset(), SrcVT,
2369 LD->isVolatile(), LD->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +00002370 SDValue ValRes;
Duncan Sands082524c2008-01-23 20:39:46 +00002371 if (ExtType == ISD::SEXTLOAD)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002372 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2373 Result.getValueType(),
Duncan Sands082524c2008-01-23 20:39:46 +00002374 Result, DAG.getValueType(SrcVT));
2375 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002376 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
Duncan Sands082524c2008-01-23 20:39:46 +00002377 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2378 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002379 break;
2380 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002381 }
Duncan Sands082524c2008-01-23 20:39:46 +00002382
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002383 // Since loads produce two values, make sure to remember that we legalized
2384 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002385 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2386 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002387 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002388 }
2389 }
2390 case ISD::EXTRACT_ELEMENT: {
Duncan Sands92c43912008-06-06 12:08:01 +00002391 MVT OpTy = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002392 switch (getTypeAction(OpTy)) {
2393 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
2394 case Legal:
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002395 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002396 // 1 -> Hi
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002397 Result = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Duncan Sands92c43912008-06-06 12:08:01 +00002398 DAG.getConstant(OpTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002399 TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002400 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002401 } else {
2402 // 0 -> Lo
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002403 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002404 Node->getOperand(0));
2405 }
2406 break;
2407 case Expand:
2408 // Get both the low and high parts.
2409 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002410 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002411 Result = Tmp2; // 1 -> Hi
2412 else
2413 Result = Tmp1; // 0 -> Lo
2414 break;
2415 }
2416 break;
2417 }
2418
2419 case ISD::CopyToReg:
2420 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2421
2422 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
2423 "Register type must be legal!");
2424 // Legalize the incoming value (must be a legal type).
2425 Tmp2 = LegalizeOp(Node->getOperand(2));
2426 if (Node->getNumValues() == 1) {
2427 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
2428 } else {
2429 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
2430 if (Node->getNumOperands() == 4) {
2431 Tmp3 = LegalizeOp(Node->getOperand(3));
2432 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2433 Tmp3);
2434 } else {
2435 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
2436 }
2437
2438 // Since this produces two values, make sure to remember that we legalized
2439 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002440 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2441 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002442 return Result;
2443 }
2444 break;
2445
2446 case ISD::RET:
2447 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2448
2449 // Ensure that libcalls are emitted before a return.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002450 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002451 Tmp1 = LegalizeOp(Tmp1);
2452 LastCALLSEQ_END = DAG.getEntryNode();
2453
2454 switch (Node->getNumOperands()) {
2455 case 3: // ret val
2456 Tmp2 = Node->getOperand(1);
2457 Tmp3 = Node->getOperand(2); // Signness
2458 switch (getTypeAction(Tmp2.getValueType())) {
2459 case Legal:
2460 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
2461 break;
2462 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +00002463 if (!Tmp2.getValueType().isVector()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002464 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002465 ExpandOp(Tmp2, Lo, Hi);
2466
2467 // Big endian systems want the hi reg first.
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002468 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002469 std::swap(Lo, Hi);
2470
Gabor Greif1c80d112008-08-28 21:40:38 +00002471 if (Hi.getNode())
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002472 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
2473 Tmp1, Lo, Tmp3, Hi,Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002474 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002475 Result = DAG.getNode(ISD::RET, dl, MVT::Other, Tmp1, Lo, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002476 Result = LegalizeOp(Result);
2477 } else {
Gabor Greif1c80d112008-08-28 21:40:38 +00002478 SDNode *InVal = Tmp2.getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002479 int InIx = Tmp2.getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002480 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2481 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002482
2483 // Figure out if there is a simple type corresponding to this Vector
2484 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002485 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002486 if (TLI.isTypeLegal(TVT)) {
2487 // Turn this into a return of the vector type.
2488 Tmp2 = LegalizeOp(Tmp2);
2489 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2490 } else if (NumElems == 1) {
2491 // Turn this into a return of the scalar type.
2492 Tmp2 = ScalarizeVectorOp(Tmp2);
2493 Tmp2 = LegalizeOp(Tmp2);
2494 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2495
2496 // FIXME: Returns of gcc generic vectors smaller than a legal type
2497 // should be returned in integer registers!
2498
2499 // The scalarized value type may not be legal, e.g. it might require
2500 // promotion or expansion. Relegalize the return.
2501 Result = LegalizeOp(Result);
2502 } else {
2503 // FIXME: Returns of gcc generic vectors larger than a legal vector
2504 // type should be returned by reference!
Dan Gohman8181bd12008-07-27 21:46:04 +00002505 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002506 SplitVectorOp(Tmp2, Lo, Hi);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002507 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
2508 Tmp1, Lo, Tmp3, Hi,Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002509 Result = LegalizeOp(Result);
2510 }
2511 }
2512 break;
2513 case Promote:
2514 Tmp2 = PromoteOp(Node->getOperand(1));
2515 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2516 Result = LegalizeOp(Result);
2517 break;
2518 }
2519 break;
2520 case 1: // ret void
2521 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2522 break;
2523 default: { // ret <values>
Dan Gohman8181bd12008-07-27 21:46:04 +00002524 SmallVector<SDValue, 8> NewValues;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002525 NewValues.push_back(Tmp1);
2526 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
2527 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2528 case Legal:
2529 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
2530 NewValues.push_back(Node->getOperand(i+1));
2531 break;
2532 case Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002533 SDValue Lo, Hi;
Duncan Sands92c43912008-06-06 12:08:01 +00002534 assert(!Node->getOperand(i).getValueType().isExtended() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002535 "FIXME: TODO: implement returning non-legal vector types!");
2536 ExpandOp(Node->getOperand(i), Lo, Hi);
2537 NewValues.push_back(Lo);
2538 NewValues.push_back(Node->getOperand(i+1));
Gabor Greif1c80d112008-08-28 21:40:38 +00002539 if (Hi.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002540 NewValues.push_back(Hi);
2541 NewValues.push_back(Node->getOperand(i+1));
2542 }
2543 break;
2544 }
2545 case Promote:
2546 assert(0 && "Can't promote multiple return value yet!");
2547 }
2548
2549 if (NewValues.size() == Node->getNumOperands())
2550 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
2551 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002552 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002553 &NewValues[0], NewValues.size());
2554 break;
2555 }
2556 }
2557
2558 if (Result.getOpcode() == ISD::RET) {
2559 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2560 default: assert(0 && "This action is not supported yet!");
2561 case TargetLowering::Legal: break;
2562 case TargetLowering::Custom:
2563 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002564 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002565 break;
2566 }
2567 }
2568 break;
2569 case ISD::STORE: {
2570 StoreSDNode *ST = cast<StoreSDNode>(Node);
2571 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2572 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
2573 int SVOffset = ST->getSrcValueOffset();
2574 unsigned Alignment = ST->getAlignment();
2575 bool isVolatile = ST->isVolatile();
2576
2577 if (!ST->isTruncatingStore()) {
2578 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2579 // FIXME: We shouldn't do this for TargetConstantFP's.
2580 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2581 // to phase ordering between legalized code and the dag combiner. This
2582 // probably means that we need to integrate dag combiner and legalizer
2583 // together.
Dale Johannesen2fc20782007-09-14 22:26:36 +00002584 // We generally can't do this one for long doubles.
Chris Lattnere8671c52007-10-13 06:35:54 +00002585 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002586 if (CFP->getValueType(0) == MVT::f32 &&
2587 getTypeAction(MVT::i32) == Legal) {
Dan Gohman39509762008-03-11 00:11:06 +00002588 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002589 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen1616e902007-09-11 18:32:33 +00002590 MVT::i32);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002591 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dale Johannesen2fc20782007-09-14 22:26:36 +00002592 SVOffset, isVolatile, Alignment);
2593 break;
2594 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002595 // If this target supports 64-bit registers, do a single 64-bit store.
2596 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002597 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman39509762008-03-11 00:11:06 +00002598 zextOrTrunc(64), MVT::i64);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002599 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner19f229a2007-10-15 05:46:06 +00002600 SVOffset, isVolatile, Alignment);
2601 break;
Duncan Sands2418bec2008-06-13 19:07:40 +00002602 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002603 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2604 // stores. If the target supports neither 32- nor 64-bits, this
2605 // xform is certainly not worth it.
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002606 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman8181bd12008-07-27 21:46:04 +00002607 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2608 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002609 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner19f229a2007-10-15 05:46:06 +00002610
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002611 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Chris Lattner19f229a2007-10-15 05:46:06 +00002612 SVOffset, isVolatile, Alignment);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002613 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002614 DAG.getIntPtrConstant(4));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002615 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsa3691432007-10-28 12:59:45 +00002616 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner19f229a2007-10-15 05:46:06 +00002617
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002618 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Chris Lattner19f229a2007-10-15 05:46:06 +00002619 break;
2620 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002621 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002622 }
2623
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002624 switch (getTypeAction(ST->getMemoryVT())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002625 case Legal: {
2626 Tmp3 = LegalizeOp(ST->getValue());
2627 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2628 ST->getOffset());
2629
Duncan Sands92c43912008-06-06 12:08:01 +00002630 MVT VT = Tmp3.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002631 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2632 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002633 case TargetLowering::Legal:
2634 // If this is an unaligned store and the target doesn't support it,
2635 // expand it.
2636 if (!TLI.allowsUnalignedMemoryAccesses()) {
2637 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002638 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002639 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002640 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002641 TLI);
2642 }
2643 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002644 case TargetLowering::Custom:
2645 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002646 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002647 break;
2648 case TargetLowering::Promote:
Duncan Sands92c43912008-06-06 12:08:01 +00002649 assert(VT.isVector() && "Unknown legal promote case!");
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002650 Tmp3 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002651 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002652 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002653 ST->getSrcValue(), SVOffset, isVolatile,
2654 Alignment);
2655 break;
2656 }
2657 break;
2658 }
2659 case Promote:
Mon P Wang1448aad2008-10-30 08:01:45 +00002660 if (!ST->getMemoryVT().isVector()) {
2661 // Truncate the value and store the result.
2662 Tmp3 = PromoteOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002663 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Mon P Wang1448aad2008-10-30 08:01:45 +00002664 SVOffset, ST->getMemoryVT(),
2665 isVolatile, Alignment);
2666 break;
2667 }
2668 // Fall thru to expand for vector
2669 case Expand: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002670 unsigned IncrementSize = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002671 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002672
2673 // If this is a vector type, then we have to calculate the increment as
2674 // the product of the element size in bytes, and the number of elements
2675 // in the high half of the vector.
Duncan Sands92c43912008-06-06 12:08:01 +00002676 if (ST->getValue().getValueType().isVector()) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002677 SDNode *InVal = ST->getValue().getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002678 int InIx = ST->getValue().getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002679 MVT InVT = InVal->getValueType(InIx);
2680 unsigned NumElems = InVT.getVectorNumElements();
2681 MVT EVT = InVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002682
2683 // Figure out if there is a simple type corresponding to this Vector
2684 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002685 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002686 if (TLI.isTypeLegal(TVT)) {
2687 // Turn this into a normal store of the vector type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002688 Tmp3 = LegalizeOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002689 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002690 SVOffset, isVolatile, Alignment);
2691 Result = LegalizeOp(Result);
2692 break;
2693 } else if (NumElems == 1) {
2694 // Turn this into a normal store of the scalar type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002695 Tmp3 = ScalarizeVectorOp(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 // The scalarized value type may not be legal, e.g. it might require
2699 // promotion or expansion. Relegalize the scalar store.
2700 Result = LegalizeOp(Result);
2701 break;
2702 } else {
Mon P Wang1448aad2008-10-30 08:01:45 +00002703 // Check if we have widen this node with another value
2704 std::map<SDValue, SDValue>::iterator I =
2705 WidenNodes.find(ST->getValue());
2706 if (I != WidenNodes.end()) {
2707 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2708 break;
2709 }
2710 else {
2711 SplitVectorOp(ST->getValue(), Lo, Hi);
2712 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2713 EVT.getSizeInBits()/8;
2714 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002715 }
2716 } else {
Dan Gohmane9f633d2008-02-15 18:11:59 +00002717 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greif1c80d112008-08-28 21:40:38 +00002718 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002719
Richard Pennington73ae9e42008-09-25 16:15:10 +00002720 if (Hi.getNode() && TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002721 std::swap(Lo, Hi);
2722 }
2723
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002724 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002725 SVOffset, isVolatile, Alignment);
2726
Gabor Greif1c80d112008-08-28 21:40:38 +00002727 if (Hi.getNode() == NULL) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002728 // Must be int <-> float one-to-one expansion.
2729 Result = Lo;
2730 break;
2731 }
2732
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002733 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002734 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002735 assert(isTypeLegal(Tmp2.getValueType()) &&
2736 "Pointers must be legal!");
2737 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00002738 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002739 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002740 SVOffset, isVolatile, Alignment);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002741 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002742 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00002743 } // case Expand
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002744 }
2745 } else {
Chris Lattner3bc08502008-01-17 19:59:44 +00002746 switch (getTypeAction(ST->getValue().getValueType())) {
2747 case Legal:
2748 Tmp3 = LegalizeOp(ST->getValue());
2749 break;
2750 case Promote:
Mon P Wang1448aad2008-10-30 08:01:45 +00002751 if (!ST->getValue().getValueType().isVector()) {
2752 // We can promote the value, the truncstore will still take care of it.
2753 Tmp3 = PromoteOp(ST->getValue());
2754 break;
2755 }
2756 // Vector case falls through to expand
Chris Lattner3bc08502008-01-17 19:59:44 +00002757 case Expand:
2758 // Just store the low part. This may become a non-trunc store, so make
2759 // sure to use getTruncStore, not UpdateNodeOperands below.
2760 ExpandOp(ST->getValue(), Tmp3, Tmp4);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002761 return DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner3bc08502008-01-17 19:59:44 +00002762 SVOffset, MVT::i8, isVolatile, Alignment);
2763 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002764
Duncan Sands92c43912008-06-06 12:08:01 +00002765 MVT StVT = ST->getMemoryVT();
2766 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands40676662008-01-22 07:17:34 +00002767
Duncan Sands92c43912008-06-06 12:08:01 +00002768 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands40676662008-01-22 07:17:34 +00002769 // Promote to a byte-sized store with upper bits zero if not
2770 // storing an integral number of bytes. For example, promote
2771 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands92c43912008-06-06 12:08:01 +00002772 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002773 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
2774 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002775 SVOffset, NVT, isVolatile, Alignment);
2776 } else if (StWidth & (StWidth - 1)) {
2777 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands92c43912008-06-06 12:08:01 +00002778 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands40676662008-01-22 07:17:34 +00002779 "Unsupported truncstore!");
2780 unsigned RoundWidth = 1 << Log2_32(StWidth);
2781 assert(RoundWidth < StWidth);
2782 unsigned ExtraWidth = StWidth - RoundWidth;
2783 assert(ExtraWidth < RoundWidth);
2784 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2785 "Store size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002786 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2787 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002788 SDValue Lo, Hi;
Duncan Sands40676662008-01-22 07:17:34 +00002789 unsigned IncrementSize;
2790
2791 if (TLI.isLittleEndian()) {
2792 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2793 // Store the bottom RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002794 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002795 SVOffset, RoundVT,
2796 isVolatile, Alignment);
2797
2798 // Store the remaining ExtraWidth bits.
2799 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002800 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands40676662008-01-22 07:17:34 +00002801 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002802 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands40676662008-01-22 07:17:34 +00002803 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002804 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002805 SVOffset + IncrementSize, ExtraVT, isVolatile,
2806 MinAlign(Alignment, IncrementSize));
2807 } else {
2808 // Big endian - avoid unaligned stores.
2809 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2810 // Store the top RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002811 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands40676662008-01-22 07:17:34 +00002812 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002813 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
2814 SVOffset, RoundVT, isVolatile, Alignment);
Duncan Sands40676662008-01-22 07:17:34 +00002815
2816 // Store the remaining ExtraWidth bits.
2817 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002818 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands40676662008-01-22 07:17:34 +00002819 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002820 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002821 SVOffset + IncrementSize, ExtraVT, isVolatile,
2822 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002823 }
Duncan Sands40676662008-01-22 07:17:34 +00002824
2825 // The order of the stores doesn't matter.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002826 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Duncan Sands40676662008-01-22 07:17:34 +00002827 } else {
2828 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2829 Tmp2 != ST->getBasePtr())
2830 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2831 ST->getOffset());
2832
2833 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2834 default: assert(0 && "This action is not supported yet!");
2835 case TargetLowering::Legal:
2836 // If this is an unaligned store and the target doesn't support it,
2837 // expand it.
2838 if (!TLI.allowsUnalignedMemoryAccesses()) {
2839 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002840 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands40676662008-01-22 07:17:34 +00002841 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002842 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands40676662008-01-22 07:17:34 +00002843 TLI);
2844 }
2845 break;
2846 case TargetLowering::Custom:
2847 Result = TLI.LowerOperation(Result, DAG);
2848 break;
2849 case Expand:
2850 // TRUNCSTORE:i16 i32 -> STORE i16
2851 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002852 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
2853 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
2854 SVOffset, isVolatile, Alignment);
Duncan Sands40676662008-01-22 07:17:34 +00002855 break;
2856 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002857 }
2858 }
2859 break;
2860 }
2861 case ISD::PCMARKER:
2862 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2863 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
2864 break;
2865 case ISD::STACKSAVE:
2866 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2867 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2868 Tmp1 = Result.getValue(0);
2869 Tmp2 = Result.getValue(1);
2870
2871 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2872 default: assert(0 && "This action is not supported yet!");
2873 case TargetLowering::Legal: break;
2874 case TargetLowering::Custom:
2875 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002876 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002877 Tmp1 = LegalizeOp(Tmp3);
2878 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2879 }
2880 break;
2881 case TargetLowering::Expand:
2882 // Expand to CopyFromReg if the target set
2883 // StackPointerRegisterToSaveRestore.
2884 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2885 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
2886 Node->getValueType(0));
2887 Tmp2 = Tmp1.getValue(1);
2888 } else {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002889 Tmp1 = DAG.getNode(ISD::UNDEF, dl, Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002890 Tmp2 = Node->getOperand(0);
2891 }
2892 break;
2893 }
2894
2895 // Since stacksave produce two values, make sure to remember that we
2896 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002897 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2898 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002899 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002900
2901 case ISD::STACKRESTORE:
2902 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2903 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2904 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2905
2906 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2907 default: assert(0 && "This action is not supported yet!");
2908 case TargetLowering::Legal: break;
2909 case TargetLowering::Custom:
2910 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002911 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002912 break;
2913 case TargetLowering::Expand:
2914 // Expand to CopyToReg if the target set
2915 // StackPointerRegisterToSaveRestore.
2916 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2917 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2918 } else {
2919 Result = Tmp1;
2920 }
2921 break;
2922 }
2923 break;
2924
2925 case ISD::READCYCLECOUNTER:
2926 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
2927 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2928 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2929 Node->getValueType(0))) {
2930 default: assert(0 && "This action is not supported yet!");
2931 case TargetLowering::Legal:
2932 Tmp1 = Result.getValue(0);
2933 Tmp2 = Result.getValue(1);
2934 break;
2935 case TargetLowering::Custom:
2936 Result = TLI.LowerOperation(Result, DAG);
2937 Tmp1 = LegalizeOp(Result.getValue(0));
2938 Tmp2 = LegalizeOp(Result.getValue(1));
2939 break;
2940 }
2941
2942 // Since rdcc produce two values, make sure to remember that we legalized
2943 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002944 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2945 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002946 return Result;
2947
2948 case ISD::SELECT:
2949 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2950 case Expand: assert(0 && "It's impossible to expand bools");
2951 case Legal:
2952 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2953 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00002954 case Promote: {
Mon P Wang1448aad2008-10-30 08:01:45 +00002955 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002956 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
2957 // Make sure the condition is either zero or one.
Dan Gohman07961cd2008-02-25 21:11:39 +00002958 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002959 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman07961cd2008-02-25 21:11:39 +00002960 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002961 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, MVT::i1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002962 break;
2963 }
Dan Gohman07961cd2008-02-25 21:11:39 +00002964 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002965 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
2966 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
2967
2968 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2969
2970 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
2971 default: assert(0 && "This action is not supported yet!");
2972 case TargetLowering::Legal: break;
2973 case TargetLowering::Custom: {
2974 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002975 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002976 break;
2977 }
2978 case TargetLowering::Expand:
2979 if (Tmp1.getOpcode() == ISD::SETCC) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002980 Result = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002981 Tmp2, Tmp3,
2982 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2983 } else {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002984 Result = DAG.getSelectCC(dl, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002985 DAG.getConstant(0, Tmp1.getValueType()),
2986 Tmp2, Tmp3, ISD::SETNE);
2987 }
2988 break;
2989 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00002990 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002991 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2992 unsigned ExtOp, TruncOp;
Duncan Sands92c43912008-06-06 12:08:01 +00002993 if (Tmp2.getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002994 ExtOp = ISD::BIT_CONVERT;
2995 TruncOp = ISD::BIT_CONVERT;
Duncan Sands92c43912008-06-06 12:08:01 +00002996 } else if (Tmp2.getValueType().isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002997 ExtOp = ISD::ANY_EXTEND;
2998 TruncOp = ISD::TRUNCATE;
2999 } else {
3000 ExtOp = ISD::FP_EXTEND;
3001 TruncOp = ISD::FP_ROUND;
3002 }
3003 // Promote each of the values to the new type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003004 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Tmp2);
3005 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003006 // Perform the larger operation, then round down.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003007 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner5872a362008-01-17 07:00:52 +00003008 if (TruncOp != ISD::FP_ROUND)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003009 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result);
Chris Lattner5872a362008-01-17 07:00:52 +00003010 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003011 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result,
Chris Lattner5872a362008-01-17 07:00:52 +00003012 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003013 break;
3014 }
3015 }
3016 break;
3017 case ISD::SELECT_CC: {
3018 Tmp1 = Node->getOperand(0); // LHS
3019 Tmp2 = Node->getOperand(1); // RHS
3020 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
3021 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman8181bd12008-07-27 21:46:04 +00003022 SDValue CC = Node->getOperand(4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003023
Dale Johannesen352c47e2009-02-02 20:41:04 +00003024 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
3025 Tmp1, Tmp2, CC, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003026
Evan Cheng71343822008-10-15 02:05:31 +00003027 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003028 // the LHS is a legal SETCC itself. In this case, we need to compare
3029 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00003030 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003031 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3032 CC = DAG.getCondCode(ISD::SETNE);
3033 }
3034 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3035
3036 // Everything is legal, see if we should expand this op or something.
3037 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3038 default: assert(0 && "This action is not supported yet!");
3039 case TargetLowering::Legal: break;
3040 case TargetLowering::Custom:
3041 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003042 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003043 break;
3044 }
3045 break;
3046 }
3047 case ISD::SETCC:
3048 Tmp1 = Node->getOperand(0);
3049 Tmp2 = Node->getOperand(1);
3050 Tmp3 = Node->getOperand(2);
Dale Johannesen352c47e2009-02-02 20:41:04 +00003051 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003052
3053 // If we had to Expand the SetCC operands into a SELECT node, then it may
3054 // not always be possible to return a true LHS & RHS. In this case, just
3055 // return the value we legalized, returned in the LHS
Gabor Greif1c80d112008-08-28 21:40:38 +00003056 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003057 Result = Tmp1;
3058 break;
3059 }
3060
3061 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
3062 default: assert(0 && "Cannot handle this action for SETCC yet!");
3063 case TargetLowering::Custom:
3064 isCustom = true;
3065 // FALLTHROUGH.
3066 case TargetLowering::Legal:
3067 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3068 if (isCustom) {
3069 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003070 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003071 }
3072 break;
3073 case TargetLowering::Promote: {
3074 // First step, figure out the appropriate operation to use.
3075 // Allow SETCC to not be supported for all legal data types
3076 // Mostly this targets FP
Duncan Sands92c43912008-06-06 12:08:01 +00003077 MVT NewInTy = Node->getOperand(0).getValueType();
3078 MVT OldVT = NewInTy; OldVT = OldVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003079
3080 // Scan for the appropriate larger type to use.
3081 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00003082 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003083
Duncan Sands92c43912008-06-06 12:08:01 +00003084 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003085 "Fell off of the edge of the integer world");
Duncan Sands92c43912008-06-06 12:08:01 +00003086 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003087 "Fell off of the edge of the floating point world");
3088
3089 // If the target supports SETCC of this type, use it.
Dan Gohman52c51aa2009-01-28 17:46:25 +00003090 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003091 break;
3092 }
Duncan Sands92c43912008-06-06 12:08:01 +00003093 if (NewInTy.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003094 assert(0 && "Cannot promote Legal Integer SETCC yet");
3095 else {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003096 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
3097 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003098 }
3099 Tmp1 = LegalizeOp(Tmp1);
3100 Tmp2 = LegalizeOp(Tmp2);
3101 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3102 Result = LegalizeOp(Result);
3103 break;
3104 }
3105 case TargetLowering::Expand:
3106 // Expand a setcc node into a select_cc of the same condition, lhs, and
3107 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands92c43912008-06-06 12:08:01 +00003108 MVT VT = Node->getValueType(0);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003109 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003110 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
3111 Tmp3);
3112 break;
3113 }
3114 break;
Nate Begeman9a1ce152008-05-12 19:40:03 +00003115 case ISD::VSETCC: {
3116 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3117 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman8181bd12008-07-27 21:46:04 +00003118 SDValue CC = Node->getOperand(2);
Nate Begeman9a1ce152008-05-12 19:40:03 +00003119
3120 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3121
3122 // Everything is legal, see if we should expand this op or something.
3123 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3124 default: assert(0 && "This action is not supported yet!");
3125 case TargetLowering::Legal: break;
3126 case TargetLowering::Custom:
3127 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003128 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9a1ce152008-05-12 19:40:03 +00003129 break;
Mon P Wangec428ad2008-12-13 08:15:14 +00003130 case TargetLowering::Expand: {
3131 // Unroll into a nasty set of scalar code for now.
3132 MVT VT = Node->getValueType(0);
3133 unsigned NumElems = VT.getVectorNumElements();
3134 MVT EltVT = VT.getVectorElementType();
3135 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3136 SmallVector<SDValue, 8> Ops(NumElems);
3137 for (unsigned i = 0; i < NumElems; ++i) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003138 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT,
Mon P Wangec428ad2008-12-13 08:15:14 +00003139 Tmp1, DAG.getIntPtrConstant(i));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003140 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
3141 In1, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3142 TmpEltVT, Tmp2,
3143 DAG.getIntPtrConstant(i)),
Mon P Wang77bc9cd2008-12-17 08:49:47 +00003144 CC);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003145 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i], DAG.getConstant(
Duncan Sands505ba942009-02-01 18:06:53 +00003146 APInt::getAllOnesValue(EltVT.getSizeInBits()),
3147 EltVT), DAG.getConstant(0, EltVT));
Mon P Wangec428ad2008-12-13 08:15:14 +00003148 }
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003149 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
Mon P Wangec428ad2008-12-13 08:15:14 +00003150 break;
3151 }
Nate Begeman9a1ce152008-05-12 19:40:03 +00003152 }
3153 break;
3154 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003155
3156 case ISD::SHL_PARTS:
3157 case ISD::SRA_PARTS:
3158 case ISD::SRL_PARTS: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003159 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003160 bool Changed = false;
Duncan Sands7d9e3612009-01-31 15:50:11 +00003161 unsigned N = Node->getNumOperands();
3162 for (unsigned i = 0; i + 1 < N; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003163 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3164 Changed |= Ops.back() != Node->getOperand(i);
3165 }
Duncan Sands7d9e3612009-01-31 15:50:11 +00003166 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3167 Changed |= Ops.back() != Node->getOperand(N-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003168 if (Changed)
3169 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
3170
3171 switch (TLI.getOperationAction(Node->getOpcode(),
3172 Node->getValueType(0))) {
3173 default: assert(0 && "This action is not supported yet!");
3174 case TargetLowering::Legal: break;
3175 case TargetLowering::Custom:
3176 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003177 if (Tmp1.getNode()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003178 SDValue Tmp2, RetVal(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003179 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
3180 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman8181bd12008-07-27 21:46:04 +00003181 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00003182 if (i == Op.getResNo())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003183 RetVal = Tmp2;
3184 }
Gabor Greif1c80d112008-08-28 21:40:38 +00003185 assert(RetVal.getNode() && "Illegal result number");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003186 return RetVal;
3187 }
3188 break;
3189 }
3190
3191 // Since these produce multiple values, make sure to remember that we
3192 // legalized all of them.
3193 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman8181bd12008-07-27 21:46:04 +00003194 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00003195 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003196 }
3197
3198 // Binary operators
3199 case ISD::ADD:
3200 case ISD::SUB:
3201 case ISD::MUL:
3202 case ISD::MULHS:
3203 case ISD::MULHU:
3204 case ISD::UDIV:
3205 case ISD::SDIV:
3206 case ISD::AND:
3207 case ISD::OR:
3208 case ISD::XOR:
3209 case ISD::SHL:
3210 case ISD::SRL:
3211 case ISD::SRA:
3212 case ISD::FADD:
3213 case ISD::FSUB:
3214 case ISD::FMUL:
3215 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00003216 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003217 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands7d9e3612009-01-31 15:50:11 +00003218 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begemanbb1ce942008-07-29 15:49:41 +00003219
3220 if ((Node->getOpcode() == ISD::SHL ||
3221 Node->getOpcode() == ISD::SRL ||
3222 Node->getOpcode() == ISD::SRA) &&
Duncan Sands7d9e3612009-01-31 15:50:11 +00003223 !Node->getValueType(0).isVector())
3224 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3225
3226 switch (getTypeAction(Tmp2.getValueType())) {
3227 case Expand: assert(0 && "Not possible");
3228 case Legal:
3229 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3230 break;
3231 case Promote:
3232 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3233 break;
Mon P Wangec428ad2008-12-13 08:15:14 +00003234 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00003235
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003236 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00003237
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003238 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3239 default: assert(0 && "BinOp legalize operation not supported");
3240 case TargetLowering::Legal: break;
3241 case TargetLowering::Custom:
3242 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003243 if (Tmp1.getNode()) {
Nate Begemanbb1ce942008-07-29 15:49:41 +00003244 Result = Tmp1;
3245 break;
Nate Begeman7569e762008-07-29 19:07:27 +00003246 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00003247 // Fall through if the custom lower can't deal with the operation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003248 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00003249 MVT VT = Op.getValueType();
Mon P Wang1448aad2008-10-30 08:01:45 +00003250
Dan Gohman5a199552007-10-08 18:33:35 +00003251 // See if multiply or divide can be lowered using two-result operations.
3252 SDVTList VTs = DAG.getVTList(VT, VT);
3253 if (Node->getOpcode() == ISD::MUL) {
3254 // We just need the low half of the multiply; try both the signed
3255 // and unsigned forms. If the target supports both SMUL_LOHI and
3256 // UMUL_LOHI, form a preference by checking which forms of plain
3257 // MULH it supports.
Dan Gohman52c51aa2009-01-28 17:46:25 +00003258 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3259 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3260 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3261 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman5a199552007-10-08 18:33:35 +00003262 unsigned OpToUse = 0;
3263 if (HasSMUL_LOHI && !HasMULHS) {
3264 OpToUse = ISD::SMUL_LOHI;
3265 } else if (HasUMUL_LOHI && !HasMULHU) {
3266 OpToUse = ISD::UMUL_LOHI;
3267 } else if (HasSMUL_LOHI) {
3268 OpToUse = ISD::SMUL_LOHI;
3269 } else if (HasUMUL_LOHI) {
3270 OpToUse = ISD::UMUL_LOHI;
3271 }
3272 if (OpToUse) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003273 Result = SDValue(DAG.getNode(OpToUse, dl, VTs, Tmp1, Tmp2).getNode(),
3274 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003275 break;
3276 }
3277 }
3278 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003279 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003280 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl,
3281 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003282 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003283 break;
3284 }
3285 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003286 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003287 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl,
3288 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003289 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003290 break;
3291 }
3292 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003293 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003294 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
3295 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003296 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003297 break;
3298 }
3299 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003300 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003301 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3302 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003303 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003304 break;
3305 }
Mon P Wang26342922008-12-18 20:03:17 +00003306
Dan Gohman6d05cac2007-10-11 23:57:53 +00003307 // Check to see if we have a libcall for this operator.
3308 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3309 bool isSigned = false;
3310 switch (Node->getOpcode()) {
3311 case ISD::UDIV:
3312 case ISD::SDIV:
3313 if (VT == MVT::i32) {
3314 LC = Node->getOpcode() == ISD::UDIV
Mon P Wang1448aad2008-10-30 08:01:45 +00003315 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003316 isSigned = Node->getOpcode() == ISD::SDIV;
3317 }
3318 break;
Chris Lattner48188652008-10-04 21:27:46 +00003319 case ISD::MUL:
3320 if (VT == MVT::i32)
3321 LC = RTLIB::MUL_I32;
sampoa0d77372009-01-24 22:12:48 +00003322 else if (VT == MVT::i64)
Scott Michel81215042008-12-29 03:21:37 +00003323 LC = RTLIB::MUL_I64;
Chris Lattner48188652008-10-04 21:27:46 +00003324 break;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003325 case ISD::FPOW:
Duncan Sands37a3f472008-01-10 10:28:30 +00003326 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3327 RTLIB::POW_PPCF128);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003328 break;
Scott Michel8c67fa42009-01-21 04:58:48 +00003329 case ISD::FDIV:
3330 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3331 RTLIB::DIV_PPCF128);
3332 break;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003333 default: break;
3334 }
3335 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003336 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003337 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003338 break;
3339 }
Mon P Wang1448aad2008-10-30 08:01:45 +00003340
Duncan Sands92c43912008-06-06 12:08:01 +00003341 assert(Node->getValueType(0).isVector() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003342 "Cannot expand this binary operator!");
3343 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman6d05cac2007-10-11 23:57:53 +00003344 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003345 break;
3346 }
3347 case TargetLowering::Promote: {
3348 switch (Node->getOpcode()) {
3349 default: assert(0 && "Do not know how to promote this BinOp!");
3350 case ISD::AND:
3351 case ISD::OR:
3352 case ISD::XOR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003353 MVT OVT = Node->getValueType(0);
3354 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3355 assert(OVT.isVector() && "Cannot promote this BinOp!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003356 // Bit convert each of the values to the new type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003357 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
3358 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
3359 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003360 // Bit convert the result back the original type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003361 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003362 break;
3363 }
3364 }
3365 }
3366 }
3367 break;
3368
Dan Gohman475cd732007-10-05 14:17:22 +00003369 case ISD::SMUL_LOHI:
3370 case ISD::UMUL_LOHI:
3371 case ISD::SDIVREM:
3372 case ISD::UDIVREM:
3373 // These nodes will only be produced by target-specific lowering, so
3374 // they shouldn't be here if they aren't legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +00003375 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohman475cd732007-10-05 14:17:22 +00003376 "This must be legal!");
Dan Gohman5a199552007-10-08 18:33:35 +00003377
3378 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3379 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3380 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman475cd732007-10-05 14:17:22 +00003381 break;
3382
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003383 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3384 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3385 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3386 case Expand: assert(0 && "Not possible");
3387 case Legal:
3388 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3389 break;
3390 case Promote:
3391 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3392 break;
3393 }
3394
3395 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3396
3397 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3398 default: assert(0 && "Operation not supported");
3399 case TargetLowering::Custom:
3400 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003401 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003402 break;
3403 case TargetLowering::Legal: break;
3404 case TargetLowering::Expand: {
3405 // If this target supports fabs/fneg natively and select is cheap,
3406 // do this efficiently.
3407 if (!TLI.isSelectExpensive() &&
3408 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3409 TargetLowering::Legal &&
3410 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
3411 TargetLowering::Legal) {
3412 // Get the sign bit of the RHS.
Duncan Sands92c43912008-06-06 12:08:01 +00003413 MVT IVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003414 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003415 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, IVT, Tmp2);
3416 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(IVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003417 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3418 // Get the absolute value of the result.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003419 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003420 // Select between the nabs and abs value based on the sign bit of
3421 // the input.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003422 Result = DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003423 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3424 AbsVal),
3425 AbsVal);
3426 Result = LegalizeOp(Result);
3427 break;
3428 }
3429
3430 // Otherwise, do bitwise ops!
Duncan Sands92c43912008-06-06 12:08:01 +00003431 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003432 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3433 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003434 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003435 Result = LegalizeOp(Result);
3436 break;
3437 }
3438 }
3439 break;
3440
3441 case ISD::ADDC:
3442 case ISD::SUBC:
3443 Tmp1 = LegalizeOp(Node->getOperand(0));
3444 Tmp2 = LegalizeOp(Node->getOperand(1));
3445 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003446 Tmp3 = Result.getValue(0);
3447 Tmp4 = Result.getValue(1);
3448
3449 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3450 default: assert(0 && "This action is not supported yet!");
3451 case TargetLowering::Legal:
3452 break;
3453 case TargetLowering::Custom:
3454 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3455 if (Tmp1.getNode() != NULL) {
Sanjiv Guptad57f2e12008-11-27 05:58:04 +00003456 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003457 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3458 }
3459 break;
3460 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003461 // Since this produces two values, make sure to remember that we legalized
3462 // both of them.
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003463 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3464 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3465 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003466
3467 case ISD::ADDE:
3468 case ISD::SUBE:
3469 Tmp1 = LegalizeOp(Node->getOperand(0));
3470 Tmp2 = LegalizeOp(Node->getOperand(1));
3471 Tmp3 = LegalizeOp(Node->getOperand(2));
3472 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003473 Tmp3 = Result.getValue(0);
3474 Tmp4 = Result.getValue(1);
3475
3476 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3477 default: assert(0 && "This action is not supported yet!");
3478 case TargetLowering::Legal:
3479 break;
3480 case TargetLowering::Custom:
3481 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3482 if (Tmp1.getNode() != NULL) {
Sanjiv Guptad57f2e12008-11-27 05:58:04 +00003483 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003484 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3485 }
3486 break;
3487 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003488 // Since this produces two values, make sure to remember that we legalized
3489 // both of them.
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003490 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3491 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3492 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003493
3494 case ISD::BUILD_PAIR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003495 MVT PairTy = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003496 // TODO: handle the case where the Lo and Hi operands are not of legal type
3497 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3498 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3499 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
3500 case TargetLowering::Promote:
3501 case TargetLowering::Custom:
3502 assert(0 && "Cannot promote/custom this yet!");
3503 case TargetLowering::Legal:
3504 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003505 Result = DAG.getNode(ISD::BUILD_PAIR, dl, PairTy, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003506 break;
3507 case TargetLowering::Expand:
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003508 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Tmp1);
3509 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Tmp2);
3510 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003511 DAG.getConstant(PairTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003512 TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003513 Result = DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003514 break;
3515 }
3516 break;
3517 }
3518
3519 case ISD::UREM:
3520 case ISD::SREM:
3521 case ISD::FREM:
3522 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3523 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3524
3525 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3526 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3527 case TargetLowering::Custom:
3528 isCustom = true;
3529 // FALLTHROUGH
3530 case TargetLowering::Legal:
3531 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3532 if (isCustom) {
3533 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003534 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003535 }
3536 break;
Dan Gohman5a199552007-10-08 18:33:35 +00003537 case TargetLowering::Expand: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003538 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
3539 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands92c43912008-06-06 12:08:01 +00003540 MVT VT = Node->getValueType(0);
Dan Gohman5a199552007-10-08 18:33:35 +00003541
3542 // See if remainder can be lowered using two-result operations.
3543 SDVTList VTs = DAG.getVTList(VT, VT);
3544 if (Node->getOpcode() == ISD::SREM &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003545 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003546 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
3547 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003548 break;
3549 }
3550 if (Node->getOpcode() == ISD::UREM &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003551 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003552 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3553 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003554 break;
3555 }
3556
Duncan Sands92c43912008-06-06 12:08:01 +00003557 if (VT.isInteger()) {
Dan Gohman5a199552007-10-08 18:33:35 +00003558 if (TLI.getOperationAction(DivOpc, VT) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003559 TargetLowering::Legal) {
3560 // X % Y -> X-X/Y*Y
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003561 Result = DAG.getNode(DivOpc, dl, VT, Tmp1, Tmp2);
3562 Result = DAG.getNode(ISD::MUL, dl, VT, Result, Tmp2);
3563 Result = DAG.getNode(ISD::SUB, dl, VT, Tmp1, Result);
Duncan Sands92c43912008-06-06 12:08:01 +00003564 } else if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003565 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003566 } else {
Dan Gohman5a199552007-10-08 18:33:35 +00003567 assert(VT == MVT::i32 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003568 "Cannot expand this binary operator!");
3569 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3570 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman8181bd12008-07-27 21:46:04 +00003571 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003572 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003573 }
Dan Gohman59b4b102007-11-06 22:11:54 +00003574 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00003575 assert(VT.isFloatingPoint() &&
Dan Gohman59b4b102007-11-06 22:11:54 +00003576 "remainder op must have integer or floating-point type");
Duncan Sands92c43912008-06-06 12:08:01 +00003577 if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003578 Result = LegalizeOp(UnrollVectorOp(Op));
3579 } else {
3580 // Floating point mod -> fmod libcall.
Duncan Sands37a3f472008-01-10 10:28:30 +00003581 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3582 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003583 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003584 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003585 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003586 }
3587 break;
3588 }
Dan Gohman5a199552007-10-08 18:33:35 +00003589 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003590 break;
3591 case ISD::VAARG: {
3592 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3593 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3594
Duncan Sands92c43912008-06-06 12:08:01 +00003595 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003596 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3597 default: assert(0 && "This action is not supported yet!");
3598 case TargetLowering::Custom:
3599 isCustom = true;
3600 // FALLTHROUGH
3601 case TargetLowering::Legal:
3602 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3603 Result = Result.getValue(0);
3604 Tmp1 = Result.getValue(1);
3605
3606 if (isCustom) {
3607 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003608 if (Tmp2.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003609 Result = LegalizeOp(Tmp2);
3610 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3611 }
3612 }
3613 break;
3614 case TargetLowering::Expand: {
Dan Gohman12a9c082008-02-06 22:27:42 +00003615 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003616 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003617 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003618 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sandsd68f13b2009-01-12 20:38:59 +00003619 DAG.getConstant(TLI.getTargetData()->
3620 getTypePaddedSize(VT.getTypeForMVT()),
3621 TLI.getPointerTy()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003622 // Store the incremented VAList to the legalized pointer
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003623 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003624 // Load the actual argument out of the pointer VAList
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003625 Result = DAG.getLoad(VT, dl, Tmp3, VAList, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003626 Tmp1 = LegalizeOp(Result.getValue(1));
3627 Result = LegalizeOp(Result);
3628 break;
3629 }
3630 }
3631 // Since VAARG produces two values, make sure to remember that we
3632 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003633 AddLegalizedOperand(SDValue(Node, 0), Result);
3634 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00003635 return Op.getResNo() ? Tmp1 : Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003636 }
3637
3638 case ISD::VACOPY:
3639 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3640 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3641 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3642
3643 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3644 default: assert(0 && "This action is not supported yet!");
3645 case TargetLowering::Custom:
3646 isCustom = true;
3647 // FALLTHROUGH
3648 case TargetLowering::Legal:
3649 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3650 Node->getOperand(3), Node->getOperand(4));
3651 if (isCustom) {
3652 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003653 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003654 }
3655 break;
3656 case TargetLowering::Expand:
3657 // This defaults to loading a pointer from the input and storing it to the
3658 // output, returning the chain.
Dan Gohman12a9c082008-02-06 22:27:42 +00003659 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3660 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003661 Tmp4 = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp3, VS, 0);
3662 Result = DAG.getStore(Tmp4.getValue(1), dl, Tmp4, Tmp2, VD, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003663 break;
3664 }
3665 break;
3666
3667 case ISD::VAEND:
3668 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3669 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3670
3671 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3672 default: assert(0 && "This action is not supported yet!");
3673 case TargetLowering::Custom:
3674 isCustom = true;
3675 // FALLTHROUGH
3676 case TargetLowering::Legal:
3677 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3678 if (isCustom) {
3679 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003680 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003681 }
3682 break;
3683 case TargetLowering::Expand:
3684 Result = Tmp1; // Default to a no-op, return the chain
3685 break;
3686 }
3687 break;
3688
3689 case ISD::VASTART:
3690 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3691 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3692
3693 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3694
3695 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3696 default: assert(0 && "This action is not supported yet!");
3697 case TargetLowering::Legal: break;
3698 case TargetLowering::Custom:
3699 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003700 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003701 break;
3702 }
3703 break;
3704
3705 case ISD::ROTL:
3706 case ISD::ROTR:
3707 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands7d9e3612009-01-31 15:50:11 +00003708 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003709 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3710 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3711 default:
3712 assert(0 && "ROTL/ROTR legalize operation not supported");
3713 break;
3714 case TargetLowering::Legal:
3715 break;
3716 case TargetLowering::Custom:
3717 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003718 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003719 break;
3720 case TargetLowering::Promote:
3721 assert(0 && "Do not know how to promote ROTL/ROTR");
3722 break;
3723 case TargetLowering::Expand:
3724 assert(0 && "Do not know how to expand ROTL/ROTR");
3725 break;
3726 }
3727 break;
3728
3729 case ISD::BSWAP:
3730 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3731 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3732 case TargetLowering::Custom:
3733 assert(0 && "Cannot custom legalize this yet!");
3734 case TargetLowering::Legal:
3735 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3736 break;
3737 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003738 MVT OVT = Tmp1.getValueType();
3739 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3740 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003741
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003742 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
3743 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3744 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003745 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3746 break;
3747 }
3748 case TargetLowering::Expand:
Dale Johannesen82b5b722009-02-02 22:12:50 +00003749 Result = ExpandBSWAP(Tmp1, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003750 break;
3751 }
3752 break;
3753
3754 case ISD::CTPOP:
3755 case ISD::CTTZ:
3756 case ISD::CTLZ:
3757 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3758 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel48b63e62007-07-30 21:00:31 +00003759 case TargetLowering::Custom:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003760 case TargetLowering::Legal:
3761 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel48b63e62007-07-30 21:00:31 +00003762 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michelbc62b412007-08-02 02:22:46 +00003763 TargetLowering::Custom) {
3764 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003765 if (Tmp1.getNode()) {
Scott Michelbc62b412007-08-02 02:22:46 +00003766 Result = Tmp1;
3767 }
Scott Michel48b63e62007-07-30 21:00:31 +00003768 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003769 break;
3770 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003771 MVT OVT = Tmp1.getValueType();
3772 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003773
3774 // Zero extend the argument.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003775 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003776 // Perform the larger operation, then subtract if needed.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003777 Tmp1 = DAG.getNode(Node->getOpcode(), dl, Node->getValueType(0), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003778 switch (Node->getOpcode()) {
3779 case ISD::CTPOP:
3780 Result = Tmp1;
3781 break;
3782 case ISD::CTTZ:
3783 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003784 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
3785 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003786 ISD::SETEQ);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003787 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003788 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003789 break;
3790 case ISD::CTLZ:
3791 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003792 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00003793 DAG.getConstant(NVT.getSizeInBits() -
3794 OVT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003795 break;
3796 }
3797 break;
3798 }
3799 case TargetLowering::Expand:
Dale Johannesen82b5b722009-02-02 22:12:50 +00003800 Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003801 break;
3802 }
3803 break;
3804
3805 // Unary operators
3806 case ISD::FABS:
3807 case ISD::FNEG:
3808 case ISD::FSQRT:
3809 case ISD::FSIN:
3810 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003811 case ISD::FLOG:
3812 case ISD::FLOG2:
3813 case ISD::FLOG10:
3814 case ISD::FEXP:
3815 case ISD::FEXP2:
Dan Gohmanc8b20e22008-08-21 17:55:02 +00003816 case ISD::FTRUNC:
3817 case ISD::FFLOOR:
3818 case ISD::FCEIL:
3819 case ISD::FRINT:
3820 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003821 Tmp1 = LegalizeOp(Node->getOperand(0));
3822 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3823 case TargetLowering::Promote:
3824 case TargetLowering::Custom:
3825 isCustom = true;
3826 // FALLTHROUGH
3827 case TargetLowering::Legal:
3828 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3829 if (isCustom) {
3830 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003831 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003832 }
3833 break;
3834 case TargetLowering::Expand:
3835 switch (Node->getOpcode()) {
3836 default: assert(0 && "Unreachable!");
3837 case ISD::FNEG:
3838 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3839 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003840 Result = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp2, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003841 break;
3842 case ISD::FABS: {
3843 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands92c43912008-06-06 12:08:01 +00003844 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003845 Tmp2 = DAG.getConstantFP(0.0, VT);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003846 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00003847 Tmp1, Tmp2, ISD::SETUGT);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003848 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3849 Result = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003850 break;
3851 }
Evan Cheng1fac6952008-09-09 23:35:53 +00003852 case ISD::FSQRT:
3853 case ISD::FSIN:
3854 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003855 case ISD::FLOG:
3856 case ISD::FLOG2:
3857 case ISD::FLOG10:
3858 case ISD::FEXP:
3859 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00003860 case ISD::FTRUNC:
3861 case ISD::FFLOOR:
3862 case ISD::FCEIL:
3863 case ISD::FRINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00003864 case ISD::FNEARBYINT: {
Duncan Sands92c43912008-06-06 12:08:01 +00003865 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003866
3867 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003868 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003869 Result = LegalizeOp(UnrollVectorOp(Op));
3870 break;
3871 }
3872
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003873 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3874 switch(Node->getOpcode()) {
3875 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00003876 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3877 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003878 break;
3879 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00003880 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3881 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003882 break;
3883 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00003884 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3885 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003886 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00003887 case ISD::FLOG:
3888 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3889 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3890 break;
3891 case ISD::FLOG2:
3892 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3893 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3894 break;
3895 case ISD::FLOG10:
3896 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3897 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3898 break;
3899 case ISD::FEXP:
3900 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3901 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3902 break;
3903 case ISD::FEXP2:
3904 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3905 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3906 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00003907 case ISD::FTRUNC:
3908 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3909 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3910 break;
3911 case ISD::FFLOOR:
3912 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3913 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3914 break;
3915 case ISD::FCEIL:
3916 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3917 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3918 break;
3919 case ISD::FRINT:
3920 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3921 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3922 break;
3923 case ISD::FNEARBYINT:
3924 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3925 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3926 break;
Evan Cheng1fac6952008-09-09 23:35:53 +00003927 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003928 default: assert(0 && "Unreachable!");
3929 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003930 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003931 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003932 break;
3933 }
3934 }
3935 break;
3936 }
3937 break;
3938 case ISD::FPOWI: {
Duncan Sands92c43912008-06-06 12:08:01 +00003939 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003940
3941 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003942 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003943 Result = LegalizeOp(UnrollVectorOp(Op));
3944 break;
3945 }
3946
3947 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands37a3f472008-01-10 10:28:30 +00003948 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3949 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003950 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003951 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003952 break;
3953 }
3954 case ISD::BIT_CONVERT:
3955 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003956 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00003957 Node->getValueType(0), dl);
Duncan Sands92c43912008-06-06 12:08:01 +00003958 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003959 // The input has to be a vector type, we have to either scalarize it, pack
3960 // it, or convert it based on whether the input vector type is legal.
Gabor Greif1c80d112008-08-28 21:40:38 +00003961 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00003962 int InIx = Node->getOperand(0).getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00003963 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3964 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003965
3966 // Figure out if there is a simple type corresponding to this Vector
3967 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00003968 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003969 if (TLI.isTypeLegal(TVT)) {
3970 // Turn this into a bit convert of the vector input.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003971 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003972 LegalizeOp(Node->getOperand(0)));
3973 break;
3974 } else if (NumElems == 1) {
3975 // Turn this into a bit convert of the scalar input.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003976 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003977 ScalarizeVectorOp(Node->getOperand(0)));
3978 break;
3979 } else {
3980 // FIXME: UNIMP! Store then reload
3981 assert(0 && "Cast from unsupported vector type not implemented yet!");
3982 }
3983 } else {
3984 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3985 Node->getOperand(0).getValueType())) {
3986 default: assert(0 && "Unknown operation action!");
3987 case TargetLowering::Expand:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003988 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00003989 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003990 break;
3991 case TargetLowering::Legal:
3992 Tmp1 = LegalizeOp(Node->getOperand(0));
3993 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3994 break;
3995 }
3996 }
3997 break;
Mon P Wang73d31542008-11-10 20:54:11 +00003998 case ISD::CONVERT_RNDSAT: {
3999 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4000 switch (CvtCode) {
4001 default: assert(0 && "Unknown cvt code!");
4002 case ISD::CVT_SF:
4003 case ISD::CVT_UF:
Mon P Wang73d31542008-11-10 20:54:11 +00004004 case ISD::CVT_FF:
Mon P Wang2fc3f9e2008-12-09 07:27:39 +00004005 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004006 case ISD::CVT_FS:
4007 case ISD::CVT_FU:
4008 case ISD::CVT_SS:
4009 case ISD::CVT_SU:
4010 case ISD::CVT_US:
4011 case ISD::CVT_UU: {
4012 SDValue DTyOp = Node->getOperand(1);
4013 SDValue STyOp = Node->getOperand(2);
4014 SDValue RndOp = Node->getOperand(3);
4015 SDValue SatOp = Node->getOperand(4);
4016 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4017 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4018 case Legal:
4019 Tmp1 = LegalizeOp(Node->getOperand(0));
4020 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
4021 RndOp, SatOp);
4022 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4023 TargetLowering::Custom) {
4024 Tmp1 = TLI.LowerOperation(Result, DAG);
4025 if (Tmp1.getNode()) Result = Tmp1;
4026 }
4027 break;
4028 case Promote:
4029 Result = PromoteOp(Node->getOperand(0));
4030 // For FP, make Op1 a i32
4031
Mon P Wang2fc3f9e2008-12-09 07:27:39 +00004032 Result = DAG.getConvertRndSat(Op.getValueType(), Result,
Mon P Wang73d31542008-11-10 20:54:11 +00004033 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4034 break;
4035 }
4036 break;
4037 }
4038 } // end switch CvtCode
4039 break;
4040 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004041 // Conversion operators. The source and destination have different types.
4042 case ISD::SINT_TO_FP:
4043 case ISD::UINT_TO_FP: {
4044 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman29c3cef2008-08-14 20:04:46 +00004045 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesen9972b632009-02-02 19:03:57 +00004046 Node->getValueType(0), Node->getOperand(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004047 break;
4048 }
4049 case ISD::TRUNCATE:
4050 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4051 case Legal:
4052 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michele9b8a402008-12-02 19:55:08 +00004053 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4054 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4055 case TargetLowering::Custom:
Mon P Wang72fe5462008-12-11 00:44:22 +00004056 isCustom = true;
4057 // FALLTHROUGH
Scott Michele9b8a402008-12-02 19:55:08 +00004058 case TargetLowering::Legal:
Mon P Wang72fe5462008-12-11 00:44:22 +00004059 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4060 if (isCustom) {
4061 Tmp1 = TLI.LowerOperation(Result, DAG);
4062 if (Tmp1.getNode()) Result = Tmp1;
4063 }
4064 break;
Mon P Wang83edba52008-12-12 01:25:51 +00004065 case TargetLowering::Expand:
4066 assert(Result.getValueType().isVector() && "must be vector type");
4067 // Unroll the truncate. We should do better.
4068 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerbfc55ee2008-12-02 12:12:25 +00004069 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004070 break;
4071 case Expand:
4072 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4073
4074 // Since the result is legal, we should just be able to truncate the low
4075 // part of the source.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004076 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004077 break;
4078 case Promote:
4079 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004080 Result = DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004081 break;
4082 }
4083 break;
4084
4085 case ISD::FP_TO_SINT:
4086 case ISD::FP_TO_UINT:
4087 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4088 case Legal:
4089 Tmp1 = LegalizeOp(Node->getOperand(0));
4090
4091 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4092 default: assert(0 && "Unknown operation action!");
4093 case TargetLowering::Custom:
4094 isCustom = true;
4095 // FALLTHROUGH
4096 case TargetLowering::Legal:
4097 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4098 if (isCustom) {
4099 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004100 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004101 }
4102 break;
4103 case TargetLowering::Promote:
4104 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Dale Johannesen9972b632009-02-02 19:03:57 +00004105 Node->getOpcode() == ISD::FP_TO_SINT,
4106 dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004107 break;
4108 case TargetLowering::Expand:
4109 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004110 SDValue True, False;
Duncan Sands92c43912008-06-06 12:08:01 +00004111 MVT VT = Node->getOperand(0).getValueType();
4112 MVT NVT = Node->getValueType(0);
Dale Johannesen958b08b2007-09-19 23:55:34 +00004113 const uint64_t zero[] = {0, 0};
Duncan Sands92c43912008-06-06 12:08:01 +00004114 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4115 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohman88ae8c52008-02-29 01:44:25 +00004116 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen958b08b2007-09-19 23:55:34 +00004117 Tmp2 = DAG.getConstantFP(apf, VT);
Dale Johannesen9972b632009-02-02 19:03:57 +00004118 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
4119 Node->getOperand(0),
Duncan Sands4a361272009-01-01 15:52:00 +00004120 Tmp2, ISD::SETLT);
Dale Johannesen9972b632009-02-02 19:03:57 +00004121 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4122 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
4123 DAG.getNode(ISD::FSUB, dl, VT,
4124 Node->getOperand(0), Tmp2));
4125 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohman88ae8c52008-02-29 01:44:25 +00004126 DAG.getConstant(x, NVT));
Dale Johannesen9972b632009-02-02 19:03:57 +00004127 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004128 break;
4129 } else {
4130 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4131 }
4132 break;
4133 }
4134 break;
4135 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00004136 MVT VT = Op.getValueType();
4137 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesend3b6af32007-10-11 23:32:15 +00004138 // Convert ppcf128 to i32
Dale Johannesen3d8578b2007-10-10 01:01:31 +00004139 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner5872a362008-01-17 07:00:52 +00004140 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Dale Johannesen9972b632009-02-02 19:03:57 +00004141 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner5872a362008-01-17 07:00:52 +00004142 Node->getOperand(0), DAG.getValueType(MVT::f64));
Dale Johannesen9972b632009-02-02 19:03:57 +00004143 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner5872a362008-01-17 07:00:52 +00004144 DAG.getIntPtrConstant(1));
Dale Johannesen9972b632009-02-02 19:03:57 +00004145 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner5872a362008-01-17 07:00:52 +00004146 } else {
Dale Johannesend3b6af32007-10-11 23:32:15 +00004147 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4148 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4149 Tmp2 = DAG.getConstantFP(apf, OVT);
4150 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4151 // FIXME: generated code sucks.
Dale Johannesen9972b632009-02-02 19:03:57 +00004152 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
4153 Tmp2,
4154 DAG.getNode(ISD::ADD, dl, MVT::i32,
4155 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4156 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesend3b6af32007-10-11 23:32:15 +00004157 Node->getOperand(0), Tmp2)),
4158 DAG.getConstant(0x80000000, MVT::i32)),
Dale Johannesen9972b632009-02-02 19:03:57 +00004159 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesend3b6af32007-10-11 23:32:15 +00004160 Node->getOperand(0)),
4161 DAG.getCondCode(ISD::SETGE));
4162 }
Dale Johannesen3d8578b2007-10-10 01:01:31 +00004163 break;
4164 }
Dan Gohmanec51f642008-03-10 23:03:31 +00004165 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsf68dffb2008-07-17 02:36:29 +00004166 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4167 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4168 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman8181bd12008-07-27 21:46:04 +00004169 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00004170 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004171 break;
4172 }
4173 case Promote:
4174 Tmp1 = PromoteOp(Node->getOperand(0));
4175 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4176 Result = LegalizeOp(Result);
4177 break;
4178 }
4179 break;
4180
Chris Lattner56ecde32008-01-16 06:57:07 +00004181 case ISD::FP_EXTEND: {
Duncan Sands92c43912008-06-06 12:08:01 +00004182 MVT DstVT = Op.getValueType();
4183 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00004184 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4185 // The only other way we can lower this is to turn it into a STORE,
4186 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen82b5b722009-02-02 22:12:50 +00004187 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl);
Chris Lattner5872a362008-01-17 07:00:52 +00004188 break;
Chris Lattner56ecde32008-01-16 06:57:07 +00004189 }
4190 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4191 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4192 case Legal:
4193 Tmp1 = LegalizeOp(Node->getOperand(0));
4194 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4195 break;
4196 case Promote:
4197 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004198 Result = DAG.getNode(ISD::FP_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattner56ecde32008-01-16 06:57:07 +00004199 break;
4200 }
4201 break;
Chris Lattner5872a362008-01-17 07:00:52 +00004202 }
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00004203 case ISD::FP_ROUND: {
Duncan Sands92c43912008-06-06 12:08:01 +00004204 MVT DstVT = Op.getValueType();
4205 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00004206 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4207 if (SrcVT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004208 SDValue Lo;
Dale Johannesena0d36082008-01-20 01:18:38 +00004209 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner5872a362008-01-17 07:00:52 +00004210 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesena0d36082008-01-20 01:18:38 +00004211 if (DstVT!=MVT::f64)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004212 Result = DAG.getNode(ISD::FP_ROUND, dl,
4213 DstVT, Result, Op.getOperand(1));
Chris Lattner5872a362008-01-17 07:00:52 +00004214 break;
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00004215 }
Chris Lattner5872a362008-01-17 07:00:52 +00004216 // The only other way we can lower this is to turn it into a STORE,
4217 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen82b5b722009-02-02 22:12:50 +00004218 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl);
Chris Lattner5872a362008-01-17 07:00:52 +00004219 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004220 }
Chris Lattner56ecde32008-01-16 06:57:07 +00004221 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4222 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4223 case Legal:
4224 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner5872a362008-01-17 07:00:52 +00004225 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00004226 break;
4227 case Promote:
4228 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004229 Result = DAG.getNode(ISD::FP_ROUND, dl, Op.getValueType(), Tmp1,
Chris Lattner5872a362008-01-17 07:00:52 +00004230 Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00004231 break;
4232 }
4233 break;
Chris Lattner5872a362008-01-17 07:00:52 +00004234 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004235 case ISD::ANY_EXTEND:
4236 case ISD::ZERO_EXTEND:
4237 case ISD::SIGN_EXTEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004238 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4239 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4240 case Legal:
4241 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michelac54d002008-04-30 00:26:38 +00004242 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michelac7091c2008-02-15 23:05:48 +00004243 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4244 TargetLowering::Custom) {
Scott Michelac54d002008-04-30 00:26:38 +00004245 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004246 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelac7091c2008-02-15 23:05:48 +00004247 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004248 break;
4249 case Promote:
4250 switch (Node->getOpcode()) {
4251 case ISD::ANY_EXTEND:
4252 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004253 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004254 break;
4255 case ISD::ZERO_EXTEND:
4256 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004257 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4258 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004259 Node->getOperand(0).getValueType());
4260 break;
4261 case ISD::SIGN_EXTEND:
4262 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004263 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4264 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004265 Result,
4266 DAG.getValueType(Node->getOperand(0).getValueType()));
4267 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004268 }
4269 }
4270 break;
4271 case ISD::FP_ROUND_INREG:
4272 case ISD::SIGN_EXTEND_INREG: {
4273 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004274 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004275
4276 // If this operation is not supported, convert it to a shl/shr or load/store
4277 // pair.
4278 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4279 default: assert(0 && "This action not supported for this op yet!");
4280 case TargetLowering::Legal:
4281 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
4282 break;
4283 case TargetLowering::Expand:
4284 // If this is an integer extend and shifts are supported, do that.
4285 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
4286 // NOTE: we could fall back on load/store here too for targets without
4287 // SAR. However, it is doubtful that any exist.
Duncan Sands92c43912008-06-06 12:08:01 +00004288 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4289 ExtraVT.getSizeInBits();
Dan Gohman8181bd12008-07-27 21:46:04 +00004290 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004291 Result = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004292 Node->getOperand(0), ShiftCst);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004293 Result = DAG.getNode(ISD::SRA, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004294 Result, ShiftCst);
4295 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
4296 // The only way we can lower this is to turn it into a TRUNCSTORE,
4297 // EXTLOAD pair, targetting a temporary location (a stack slot).
4298
4299 // NOTE: there is a choice here between constantly creating new stack
4300 // slots and always reusing the same one. We currently always create
4301 // new ones, as reuse may inhibit scheduling.
Chris Lattner59370bd2008-01-16 07:51:34 +00004302 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00004303 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004304 } else {
4305 assert(0 && "Unknown op");
4306 }
4307 break;
4308 }
4309 break;
4310 }
Duncan Sands38947cd2007-07-27 12:58:54 +00004311 case ISD::TRAMPOLINE: {
Dan Gohman8181bd12008-07-27 21:46:04 +00004312 SDValue Ops[6];
Duncan Sands38947cd2007-07-27 12:58:54 +00004313 for (unsigned i = 0; i != 6; ++i)
4314 Ops[i] = LegalizeOp(Node->getOperand(i));
4315 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4316 // The only option for this node is to custom lower it.
4317 Result = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004318 assert(Result.getNode() && "Should always custom lower!");
Duncan Sands7407a9f2007-09-11 14:10:23 +00004319
4320 // Since trampoline produces two values, make sure to remember that we
4321 // legalized both of them.
4322 Tmp1 = LegalizeOp(Result.getValue(1));
4323 Result = LegalizeOp(Result);
Dan Gohman8181bd12008-07-27 21:46:04 +00004324 AddLegalizedOperand(SDValue(Node, 0), Result);
4325 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00004326 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands38947cd2007-07-27 12:58:54 +00004327 }
Dan Gohmane8e4a412008-05-14 00:43:10 +00004328 case ISD::FLT_ROUNDS_: {
Duncan Sands92c43912008-06-06 12:08:01 +00004329 MVT VT = Node->getValueType(0);
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004330 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4331 default: assert(0 && "This action not supported for this op yet!");
4332 case TargetLowering::Custom:
4333 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004334 if (Result.getNode()) break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004335 // Fall Thru
4336 case TargetLowering::Legal:
4337 // If this operation is not supported, lower it to constant 1
4338 Result = DAG.getConstant(1, VT);
4339 break;
4340 }
Dan Gohmane09dc8c2008-05-12 16:07:15 +00004341 break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004342 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00004343 case ISD::TRAP: {
Duncan Sands92c43912008-06-06 12:08:01 +00004344 MVT VT = Node->getValueType(0);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004345 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4346 default: assert(0 && "This action not supported for this op yet!");
Chris Lattnere99bbb72008-01-15 21:58:08 +00004347 case TargetLowering::Legal:
4348 Tmp1 = LegalizeOp(Node->getOperand(0));
4349 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4350 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004351 case TargetLowering::Custom:
4352 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004353 if (Result.getNode()) break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004354 // Fall Thru
Chris Lattnere99bbb72008-01-15 21:58:08 +00004355 case TargetLowering::Expand:
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004356 // If this operation is not supported, lower it to 'abort()' call
Chris Lattnere99bbb72008-01-15 21:58:08 +00004357 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004358 TargetLowering::ArgListTy Args;
Dan Gohman8181bd12008-07-27 21:46:04 +00004359 std::pair<SDValue,SDValue> CallResult =
Duncan Sandsead972e2008-02-14 17:28:50 +00004360 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen67cc9b62008-09-26 19:31:26 +00004361 false, false, false, false, CallingConv::C, false,
Bill Wendlingfef06052008-09-16 21:48:12 +00004362 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesenca6237b2009-01-30 23:10:59 +00004363 Args, DAG, dl);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004364 Result = CallResult.second;
4365 break;
4366 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00004367 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004368 }
Bill Wendling913dcf32008-11-22 00:22:52 +00004369
Bill Wendling7e04be62008-12-09 22:08:41 +00004370 case ISD::SADDO:
4371 case ISD::SSUBO: {
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004372 MVT VT = Node->getValueType(0);
4373 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4374 default: assert(0 && "This action not supported for this op yet!");
4375 case TargetLowering::Custom:
4376 Result = TLI.LowerOperation(Op, DAG);
4377 if (Result.getNode()) break;
4378 // FALLTHROUGH
4379 case TargetLowering::Legal: {
4380 SDValue LHS = LegalizeOp(Node->getOperand(0));
4381 SDValue RHS = LegalizeOp(Node->getOperand(1));
4382
Bill Wendling7e04be62008-12-09 22:08:41 +00004383 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004384 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling7e04be62008-12-09 22:08:41 +00004385 LHS, RHS);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004386 MVT OType = Node->getValueType(1);
4387
Bill Wendlingc65e6e42008-11-25 08:19:22 +00004388 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004389
Bill Wendlingcf4de122008-11-25 19:40:17 +00004390 // LHSSign -> LHS >= 0
4391 // RHSSign -> RHS >= 0
4392 // SumSign -> Sum >= 0
4393 //
Bill Wendling7e04be62008-12-09 22:08:41 +00004394 // Add:
Bill Wendlingcf4de122008-11-25 19:40:17 +00004395 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling7e04be62008-12-09 22:08:41 +00004396 // Sub:
4397 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendlingcf4de122008-11-25 19:40:17 +00004398 //
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004399 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
4400 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
4401 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
Bill Wendling7e04be62008-12-09 22:08:41 +00004402 Node->getOpcode() == ISD::SADDO ?
4403 ISD::SETEQ : ISD::SETNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004404
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004405 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
4406 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004407
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004408 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004409
4410 MVT ValueVTs[] = { LHS.getValueType(), OType };
4411 SDValue Ops[] = { Sum, Cmp };
4412
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004413 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
4414 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sands42d7bb82008-12-01 11:41:29 +00004415 &Ops[0], 2);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004416 SDNode *RNode = Result.getNode();
4417 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4418 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4419 break;
4420 }
4421 }
4422
4423 break;
4424 }
Bill Wendling7e04be62008-12-09 22:08:41 +00004425 case ISD::UADDO:
4426 case ISD::USUBO: {
Bill Wendling4c134df2008-11-24 19:21:46 +00004427 MVT VT = Node->getValueType(0);
4428 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4429 default: assert(0 && "This action not supported for this op yet!");
4430 case TargetLowering::Custom:
4431 Result = TLI.LowerOperation(Op, DAG);
4432 if (Result.getNode()) break;
4433 // FALLTHROUGH
4434 case TargetLowering::Legal: {
4435 SDValue LHS = LegalizeOp(Node->getOperand(0));
4436 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling913dcf32008-11-22 00:22:52 +00004437
Bill Wendling7e04be62008-12-09 22:08:41 +00004438 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004439 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling7e04be62008-12-09 22:08:41 +00004440 LHS, RHS);
Bill Wendling4c134df2008-11-24 19:21:46 +00004441 MVT OType = Node->getValueType(1);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004442 SDValue Cmp = DAG.getSetCC(dl, OType, Sum, LHS,
Bill Wendling7e04be62008-12-09 22:08:41 +00004443 Node->getOpcode () == ISD::UADDO ?
4444 ISD::SETULT : ISD::SETUGT);
Bill Wendling913dcf32008-11-22 00:22:52 +00004445
Bill Wendling4c134df2008-11-24 19:21:46 +00004446 MVT ValueVTs[] = { LHS.getValueType(), OType };
4447 SDValue Ops[] = { Sum, Cmp };
Bill Wendling913dcf32008-11-22 00:22:52 +00004448
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004449 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
4450 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sands42d7bb82008-12-01 11:41:29 +00004451 &Ops[0], 2);
Bill Wendling4c134df2008-11-24 19:21:46 +00004452 SDNode *RNode = Result.getNode();
4453 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4454 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4455 break;
4456 }
4457 }
4458
Bill Wendling913dcf32008-11-22 00:22:52 +00004459 break;
4460 }
Bill Wendling7e04be62008-12-09 22:08:41 +00004461 case ISD::SMULO:
4462 case ISD::UMULO: {
4463 MVT VT = Node->getValueType(0);
4464 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4465 default: assert(0 && "This action is not supported at all!");
4466 case TargetLowering::Custom:
4467 Result = TLI.LowerOperation(Op, DAG);
4468 if (Result.getNode()) break;
4469 // Fall Thru
4470 case TargetLowering::Legal:
4471 // FIXME: According to Hacker's Delight, this can be implemented in
4472 // target independent lowering, but it would be inefficient, since it
Bill Wendling35f1a9d2008-12-10 02:01:32 +00004473 // requires a division + a branch.
Bill Wendling7e04be62008-12-09 22:08:41 +00004474 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
4475 break;
4476 }
4477 break;
4478 }
4479
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004480 }
4481
4482 assert(Result.getValueType() == Op.getValueType() &&
4483 "Bad legalization!");
4484
4485 // Make sure that the generated code is itself legal.
4486 if (Result != Op)
4487 Result = LegalizeOp(Result);
4488
4489 // Note that LegalizeOp may be reentered even from single-use nodes, which
4490 // means that we always must cache transformed nodes.
4491 AddLegalizedOperand(Op, Result);
4492 return Result;
4493}
4494
4495/// PromoteOp - Given an operation that produces a value in an invalid type,
4496/// promote it to compute the value into a larger type. The produced value will
4497/// have the correct bits for the low portion of the register, but no guarantee
4498/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +00004499SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00004500 MVT VT = Op.getValueType();
4501 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004502 assert(getTypeAction(VT) == Promote &&
4503 "Caller should expand or legalize operands that are not promotable!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004504 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004505 "Cannot promote to smaller type!");
4506
Dan Gohman8181bd12008-07-27 21:46:04 +00004507 SDValue Tmp1, Tmp2, Tmp3;
4508 SDValue Result;
Gabor Greif1c80d112008-08-28 21:40:38 +00004509 SDNode *Node = Op.getNode();
Dale Johannesen82b5b722009-02-02 22:12:50 +00004510 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004511
Dan Gohman8181bd12008-07-27 21:46:04 +00004512 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004513 if (I != PromotedNodes.end()) return I->second;
4514
4515 switch (Node->getOpcode()) {
4516 case ISD::CopyFromReg:
4517 assert(0 && "CopyFromReg must be legal!");
4518 default:
4519#ifndef NDEBUG
4520 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
4521#endif
4522 assert(0 && "Do not know how to promote this operator!");
4523 abort();
4524 case ISD::UNDEF:
Dale Johannesen82b5b722009-02-02 22:12:50 +00004525 Result = DAG.getNode(ISD::UNDEF, dl, NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004526 break;
4527 case ISD::Constant:
4528 if (VT != MVT::i1)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004529 Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004530 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00004531 Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004532 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4533 break;
4534 case ISD::ConstantFP:
Dale Johannesen82b5b722009-02-02 22:12:50 +00004535 Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004536 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4537 break;
4538
Duncan Sands4a361272009-01-01 15:52:00 +00004539 case ISD::SETCC: {
4540 MVT VT0 = Node->getOperand(0).getValueType();
4541 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004542 && "SetCC type is not legal??");
Dale Johannesen82b5b722009-02-02 22:12:50 +00004543 Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0),
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004544 Node->getOperand(0), Node->getOperand(1),
4545 Node->getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004546 break;
Duncan Sands4a361272009-01-01 15:52:00 +00004547 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004548 case ISD::TRUNCATE:
4549 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4550 case Legal:
4551 Result = LegalizeOp(Node->getOperand(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00004552 assert(Result.getValueType().bitsGE(NVT) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004553 "This truncation doesn't make sense!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004554 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dale Johannesen82b5b722009-02-02 22:12:50 +00004555 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004556 break;
4557 case Promote:
4558 // The truncation is not required, because we don't guarantee anything
4559 // about high bits anyway.
4560 Result = PromoteOp(Node->getOperand(0));
4561 break;
4562 case Expand:
4563 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4564 // Truncate the low part of the expanded value to the result type
Dale Johannesen82b5b722009-02-02 22:12:50 +00004565 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004566 }
4567 break;
4568 case ISD::SIGN_EXTEND:
4569 case ISD::ZERO_EXTEND:
4570 case ISD::ANY_EXTEND:
4571 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4572 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4573 case Legal:
4574 // Input is legal? Just do extend all the way to the larger type.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004575 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004576 break;
4577 case Promote:
4578 // Promote the reg if it's smaller.
4579 Result = PromoteOp(Node->getOperand(0));
4580 // The high bits are not guaranteed to be anything. Insert an extend.
4581 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004582 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004583 DAG.getValueType(Node->getOperand(0).getValueType()));
4584 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004585 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004586 Node->getOperand(0).getValueType());
4587 break;
4588 }
4589 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004590 case ISD::CONVERT_RNDSAT: {
4591 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4592 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4593 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4594 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4595 "can only promote integers");
4596 Result = DAG.getConvertRndSat(NVT, Node->getOperand(0),
4597 Node->getOperand(1), Node->getOperand(2),
4598 Node->getOperand(3), Node->getOperand(4),
4599 CvtCode);
4600 break;
4601
4602 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004603 case ISD::BIT_CONVERT:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004604 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00004605 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004606 Result = PromoteOp(Result);
4607 break;
4608
4609 case ISD::FP_EXTEND:
4610 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4611 case ISD::FP_ROUND:
4612 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4613 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4614 case Promote: assert(0 && "Unreachable with 2 FP types!");
4615 case Legal:
Chris Lattner5872a362008-01-17 07:00:52 +00004616 if (Node->getConstantOperandVal(1) == 0) {
4617 // Input is legal? Do an FP_ROUND_INREG.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004618 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0),
Chris Lattner5872a362008-01-17 07:00:52 +00004619 DAG.getValueType(VT));
4620 } else {
4621 // Just remove the truncate, it isn't affecting the value.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004622 Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0),
Chris Lattner5872a362008-01-17 07:00:52 +00004623 Node->getOperand(1));
4624 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004625 break;
4626 }
4627 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004628 case ISD::SINT_TO_FP:
4629 case ISD::UINT_TO_FP:
4630 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4631 case Legal:
4632 // No extra round required here.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004633 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004634 break;
4635
4636 case Promote:
4637 Result = PromoteOp(Node->getOperand(0));
4638 if (Node->getOpcode() == ISD::SINT_TO_FP)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004639 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004640 Result,
4641 DAG.getValueType(Node->getOperand(0).getValueType()));
4642 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00004643 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004644 Node->getOperand(0).getValueType());
4645 // No extra round required here.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004646 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004647 break;
4648 case Expand:
4649 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00004650 Node->getOperand(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004651 // Round if we cannot tolerate excess precision.
4652 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004653 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004654 DAG.getValueType(VT));
4655 break;
4656 }
4657 break;
4658
4659 case ISD::SIGN_EXTEND_INREG:
4660 Result = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004661 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004662 Node->getOperand(1));
4663 break;
4664 case ISD::FP_TO_SINT:
4665 case ISD::FP_TO_UINT:
4666 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4667 case Legal:
4668 case Expand:
4669 Tmp1 = Node->getOperand(0);
4670 break;
4671 case Promote:
4672 // The input result is prerounded, so we don't have to do anything
4673 // special.
4674 Tmp1 = PromoteOp(Node->getOperand(0));
4675 break;
4676 }
4677 // If we're promoting a UINT to a larger size, check to see if the new node
4678 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4679 // we can use that instead. This allows us to generate better code for
4680 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4681 // legal, such as PowerPC.
4682 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00004683 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4684 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004685 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Dale Johannesen82b5b722009-02-02 22:12:50 +00004686 Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004687 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00004688 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004689 }
4690 break;
4691
4692 case ISD::FABS:
4693 case ISD::FNEG:
4694 Tmp1 = PromoteOp(Node->getOperand(0));
4695 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004696 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004697 // NOTE: we do not have to do any extra rounding here for
4698 // NoExcessFPPrecision, because we know the input will have the appropriate
4699 // precision, and these operations don't modify precision at all.
4700 break;
4701
Dale Johannesen92b33082008-09-04 00:47:13 +00004702 case ISD::FLOG:
4703 case ISD::FLOG2:
4704 case ISD::FLOG10:
4705 case ISD::FEXP:
4706 case ISD::FEXP2:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004707 case ISD::FSQRT:
4708 case ISD::FSIN:
4709 case ISD::FCOS:
Dan Gohmanb2158232008-08-21 18:38:14 +00004710 case ISD::FTRUNC:
4711 case ISD::FFLOOR:
4712 case ISD::FCEIL:
4713 case ISD::FRINT:
4714 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004715 Tmp1 = PromoteOp(Node->getOperand(0));
4716 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004717 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004718 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004719 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004720 DAG.getValueType(VT));
4721 break;
4722
Evan Cheng1fac6952008-09-09 23:35:53 +00004723 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004724 case ISD::FPOWI: {
Evan Cheng1fac6952008-09-09 23:35:53 +00004725 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004726 // directly as well, which may be better.
4727 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng1fac6952008-09-09 23:35:53 +00004728 Tmp2 = Node->getOperand(1);
4729 if (Node->getOpcode() == ISD::FPOW)
4730 Tmp2 = PromoteOp(Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004731 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004732 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004733 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004734 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004735 DAG.getValueType(VT));
4736 break;
4737 }
4738
Dan Gohmanbebba8d2008-12-23 21:37:04 +00004739 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004740 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004741 Tmp2 = PromoteOp(Node->getOperand(2));
4742 Tmp3 = PromoteOp(Node->getOperand(3));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004743 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Dan Gohmanbebba8d2008-12-23 21:37:04 +00004744 AtomNode->getChain(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004745 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004746 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004747 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004748 // Remember that we legalized the chain.
4749 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4750 break;
4751 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00004752 case ISD::ATOMIC_LOAD_ADD:
4753 case ISD::ATOMIC_LOAD_SUB:
4754 case ISD::ATOMIC_LOAD_AND:
4755 case ISD::ATOMIC_LOAD_OR:
4756 case ISD::ATOMIC_LOAD_XOR:
4757 case ISD::ATOMIC_LOAD_NAND:
4758 case ISD::ATOMIC_LOAD_MIN:
4759 case ISD::ATOMIC_LOAD_MAX:
4760 case ISD::ATOMIC_LOAD_UMIN:
4761 case ISD::ATOMIC_LOAD_UMAX:
4762 case ISD::ATOMIC_SWAP: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004763 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004764 Tmp2 = PromoteOp(Node->getOperand(2));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004765 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Dan Gohmanbebba8d2008-12-23 21:37:04 +00004766 AtomNode->getChain(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004767 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004768 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004769 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004770 // Remember that we legalized the chain.
4771 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4772 break;
4773 }
4774
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004775 case ISD::AND:
4776 case ISD::OR:
4777 case ISD::XOR:
4778 case ISD::ADD:
4779 case ISD::SUB:
4780 case ISD::MUL:
4781 // The input may have strange things in the top bits of the registers, but
4782 // these operations don't care. They may have weird bits going out, but
4783 // that too is okay if they are integer operations.
4784 Tmp1 = PromoteOp(Node->getOperand(0));
4785 Tmp2 = PromoteOp(Node->getOperand(1));
4786 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004787 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004788 break;
4789 case ISD::FADD:
4790 case ISD::FSUB:
4791 case ISD::FMUL:
4792 Tmp1 = PromoteOp(Node->getOperand(0));
4793 Tmp2 = PromoteOp(Node->getOperand(1));
4794 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004795 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004796
4797 // Floating point operations will give excess precision that we may not be
4798 // able to tolerate. If we DO allow excess precision, just leave it,
4799 // otherwise excise it.
4800 // FIXME: Why would we need to round FP ops more than integer ones?
4801 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
4802 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004803 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004804 DAG.getValueType(VT));
4805 break;
4806
4807 case ISD::SDIV:
4808 case ISD::SREM:
4809 // These operators require that their input be sign extended.
4810 Tmp1 = PromoteOp(Node->getOperand(0));
4811 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004812 if (NVT.isInteger()) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00004813 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004814 DAG.getValueType(VT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004815 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004816 DAG.getValueType(VT));
4817 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00004818 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004819
4820 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands92c43912008-06-06 12:08:01 +00004821 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004822 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004823 DAG.getValueType(VT));
4824 break;
4825 case ISD::FDIV:
4826 case ISD::FREM:
4827 case ISD::FCOPYSIGN:
4828 // These operators require that their input be fp extended.
4829 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004830 case Expand: assert(0 && "not implemented");
4831 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4832 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004833 }
4834 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004835 case Expand: assert(0 && "not implemented");
4836 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4837 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004838 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00004839 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004840
4841 // Perform FP_ROUND: this is probably overly pessimistic.
4842 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004843 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004844 DAG.getValueType(VT));
4845 break;
4846
4847 case ISD::UDIV:
4848 case ISD::UREM:
4849 // These operators require that their input be zero extended.
4850 Tmp1 = PromoteOp(Node->getOperand(0));
4851 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004852 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dale Johannesen82b5b722009-02-02 22:12:50 +00004853 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4854 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
4855 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004856 break;
4857
4858 case ISD::SHL:
4859 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004860 Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004861 break;
4862 case ISD::SRA:
4863 // The input value must be properly sign extended.
4864 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004865 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004866 DAG.getValueType(VT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004867 Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004868 break;
4869 case ISD::SRL:
4870 // The input value must be properly zero extended.
4871 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004872 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4873 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004874 break;
4875
4876 case ISD::VAARG:
4877 Tmp1 = Node->getOperand(0); // Get the chain.
4878 Tmp2 = Node->getOperand(1); // Get the pointer.
4879 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4880 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sandsac496a12008-07-04 11:47:58 +00004881 Result = TLI.LowerOperation(Tmp3, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004882 } else {
Dan Gohman12a9c082008-02-06 22:27:42 +00004883 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00004884 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004885 // Increment the pointer, VAList, to the next vaarg
Dale Johannesen82b5b722009-02-02 22:12:50 +00004886 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sands92c43912008-06-06 12:08:01 +00004887 DAG.getConstant(VT.getSizeInBits()/8,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004888 TLI.getPointerTy()));
4889 // Store the incremented VAList to the legalized pointer
Dale Johannesen82b5b722009-02-02 22:12:50 +00004890 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004891 // Load the actual argument out of the pointer VAList
Dale Johannesen82b5b722009-02-02 22:12:50 +00004892 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004893 }
4894 // Remember that we legalized the chain.
4895 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4896 break;
4897
4898 case ISD::LOAD: {
4899 LoadSDNode *LD = cast<LoadSDNode>(Node);
4900 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4901 ? ISD::EXTLOAD : LD->getExtensionType();
Dale Johannesen82b5b722009-02-02 22:12:50 +00004902 Result = DAG.getExtLoad(ExtType, dl, NVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004903 LD->getChain(), LD->getBasePtr(),
4904 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004905 LD->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004906 LD->isVolatile(),
4907 LD->getAlignment());
4908 // Remember that we legalized the chain.
4909 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4910 break;
4911 }
Scott Michel67224b22008-06-02 22:18:03 +00004912 case ISD::SELECT: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004913 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4914 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel67224b22008-06-02 22:18:03 +00004915
Duncan Sands92c43912008-06-06 12:08:01 +00004916 MVT VT2 = Tmp2.getValueType();
Scott Michel67224b22008-06-02 22:18:03 +00004917 assert(VT2 == Tmp3.getValueType()
Scott Michel7b54de02008-06-03 19:13:20 +00004918 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4919 // Ensure that the resulting node is at least the same size as the operands'
4920 // value types, because we cannot assume that TLI.getSetCCValueType() is
4921 // constant.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004922 Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004923 break;
Scott Michel67224b22008-06-02 22:18:03 +00004924 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004925 case ISD::SELECT_CC:
4926 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4927 Tmp3 = PromoteOp(Node->getOperand(3)); // False
Dale Johannesen82b5b722009-02-02 22:12:50 +00004928 Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004929 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
4930 break;
4931 case ISD::BSWAP:
4932 Tmp1 = Node->getOperand(0);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004933 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
4934 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4935 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004936 DAG.getConstant(NVT.getSizeInBits() -
4937 VT.getSizeInBits(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004938 TLI.getShiftAmountTy()));
4939 break;
4940 case ISD::CTPOP:
4941 case ISD::CTTZ:
4942 case ISD::CTLZ:
4943 // Zero extend the argument
Dale Johannesen82b5b722009-02-02 22:12:50 +00004944 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004945 // Perform the larger operation, then subtract if needed.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004946 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004947 switch(Node->getOpcode()) {
4948 case ISD::CTPOP:
4949 Result = Tmp1;
4950 break;
4951 case ISD::CTTZ:
4952 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004953 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004954 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004955 ISD::SETEQ);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004956 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00004957 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004958 break;
4959 case ISD::CTLZ:
4960 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00004961 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004962 DAG.getConstant(NVT.getSizeInBits() -
4963 VT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004964 break;
4965 }
4966 break;
4967 case ISD::EXTRACT_SUBVECTOR:
4968 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
4969 break;
4970 case ISD::EXTRACT_VECTOR_ELT:
4971 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4972 break;
4973 }
4974
Gabor Greif1c80d112008-08-28 21:40:38 +00004975 assert(Result.getNode() && "Didn't set a result!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004976
4977 // Make sure the result is itself legal.
4978 Result = LegalizeOp(Result);
4979
4980 // Remember that we promoted this!
4981 AddPromotedOperand(Op, Result);
4982 return Result;
4983}
4984
4985/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4986/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4987/// based on the vector type. The return type of this matches the element type
4988/// of the vector, which may not be legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00004989SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004990 // We know that operand #0 is the Vec vector. If the index is a constant
4991 // or if the invec is a supported hardware type, we can use it. Otherwise,
4992 // lower to a store then an indexed load.
Dan Gohman8181bd12008-07-27 21:46:04 +00004993 SDValue Vec = Op.getOperand(0);
4994 SDValue Idx = Op.getOperand(1);
Dale Johannesen352c47e2009-02-02 20:41:04 +00004995 DebugLoc dl = Op.getNode()->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004996
Duncan Sands92c43912008-06-06 12:08:01 +00004997 MVT TVT = Vec.getValueType();
4998 unsigned NumElems = TVT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004999
5000 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
5001 default: assert(0 && "This action is not supported yet!");
5002 case TargetLowering::Custom: {
5003 Vec = LegalizeOp(Vec);
5004 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005005 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005006 if (Tmp3.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005007 return Tmp3;
5008 break;
5009 }
5010 case TargetLowering::Legal:
5011 if (isTypeLegal(TVT)) {
5012 Vec = LegalizeOp(Vec);
5013 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lambcc021a02007-07-26 03:33:13 +00005014 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005015 }
5016 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00005017 case TargetLowering::Promote:
5018 assert(TVT.isVector() && "not vector type");
5019 // fall thru to expand since vectors are by default are promote
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005020 case TargetLowering::Expand:
5021 break;
5022 }
5023
5024 if (NumElems == 1) {
5025 // This must be an access of the only element. Return it.
5026 Op = ScalarizeVectorOp(Vec);
5027 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman2b10fde2008-01-29 02:24:00 +00005028 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005029 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005030 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005031 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005032 if (CIdx->getZExtValue() < NumLoElts) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005033 Vec = Lo;
5034 } else {
5035 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005036 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005037 Idx.getValueType());
5038 }
5039
5040 // It's now an extract from the appropriate high or low part. Recurse.
5041 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
5042 Op = ExpandEXTRACT_VECTOR_ELT(Op);
5043 } else {
5044 // Store the value to a temporary stack slot, then LOAD the scalar
5045 // element back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00005046 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dale Johannesen352c47e2009-02-02 20:41:04 +00005047 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005048
5049 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +00005050 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dale Johannesen352c47e2009-02-02 20:41:04 +00005051 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005052 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005053
Duncan Sandsec142ee2008-06-08 20:54:56 +00005054 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Dale Johannesen352c47e2009-02-02 20:41:04 +00005055 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005056 else
Dale Johannesen352c47e2009-02-02 20:41:04 +00005057 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005058
Dale Johannesen352c47e2009-02-02 20:41:04 +00005059 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005060
Dale Johannesen352c47e2009-02-02 20:41:04 +00005061 Op = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005062 }
5063 return Op;
5064}
5065
5066/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
5067/// we assume the operation can be split if it is not already legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00005068SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005069 // We know that operand #0 is the Vec vector. For now we assume the index
5070 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman8181bd12008-07-27 21:46:04 +00005071 SDValue Vec = Op.getOperand(0);
5072 SDValue Idx = LegalizeOp(Op.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005073
Duncan Sands92c43912008-06-06 12:08:01 +00005074 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005075
Duncan Sands92c43912008-06-06 12:08:01 +00005076 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005077 // This must be an access of the desired vector length. Return it.
5078 return Vec;
5079 }
5080
5081 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005082 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005083 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005084 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005085 Vec = Lo;
5086 } else {
5087 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005088 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5089 Idx.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005090 }
5091
5092 // It's now an extract from the appropriate high or low part. Recurse.
5093 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
5094 return ExpandEXTRACT_SUBVECTOR(Op);
5095}
5096
5097/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5098/// with condition CC on the current target. This usually involves legalizing
5099/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5100/// there may be no choice but to create a new SetCC node to represent the
5101/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman8181bd12008-07-27 21:46:04 +00005102/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5103void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5104 SDValue &RHS,
Dale Johannesen352c47e2009-02-02 20:41:04 +00005105 SDValue &CC,
5106 DebugLoc dl) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005107 SDValue Tmp1, Tmp2, Tmp3, Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005108
5109 switch (getTypeAction(LHS.getValueType())) {
5110 case Legal:
5111 Tmp1 = LegalizeOp(LHS); // LHS
5112 Tmp2 = LegalizeOp(RHS); // RHS
5113 break;
5114 case Promote:
5115 Tmp1 = PromoteOp(LHS); // LHS
5116 Tmp2 = PromoteOp(RHS); // RHS
5117
5118 // If this is an FP compare, the operands have already been extended.
Duncan Sands92c43912008-06-06 12:08:01 +00005119 if (LHS.getValueType().isInteger()) {
5120 MVT VT = LHS.getValueType();
5121 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005122
5123 // Otherwise, we have to insert explicit sign or zero extends. Note
5124 // that we could insert sign extends for ALL conditions, but zero extend
5125 // is cheaper on many machines (an AND instead of two shifts), so prefer
5126 // it.
5127 switch (cast<CondCodeSDNode>(CC)->get()) {
5128 default: assert(0 && "Unknown integer comparison!");
5129 case ISD::SETEQ:
5130 case ISD::SETNE:
5131 case ISD::SETUGE:
5132 case ISD::SETUGT:
5133 case ISD::SETULE:
5134 case ISD::SETULT:
5135 // ALL of these operations will work if we either sign or zero extend
5136 // the operands (including the unsigned comparisons!). Zero extend is
5137 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005138 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5139 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005140 break;
5141 case ISD::SETGE:
5142 case ISD::SETGT:
5143 case ISD::SETLT:
5144 case ISD::SETLE:
Dale Johannesen352c47e2009-02-02 20:41:04 +00005145 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005146 DAG.getValueType(VT));
Dale Johannesen352c47e2009-02-02 20:41:04 +00005147 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005148 DAG.getValueType(VT));
Evan Chengd901b662008-10-13 18:46:18 +00005149 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5150 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005151 break;
5152 }
5153 }
5154 break;
5155 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00005156 MVT VT = LHS.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005157 if (VT == MVT::f32 || VT == MVT::f64) {
5158 // Expand into one or more soft-fp libcall(s).
Evan Cheng24108632008-07-01 21:35:46 +00005159 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005160 switch (cast<CondCodeSDNode>(CC)->get()) {
5161 case ISD::SETEQ:
5162 case ISD::SETOEQ:
5163 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
5164 break;
5165 case ISD::SETNE:
5166 case ISD::SETUNE:
5167 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
5168 break;
5169 case ISD::SETGE:
5170 case ISD::SETOGE:
5171 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
5172 break;
5173 case ISD::SETLT:
5174 case ISD::SETOLT:
5175 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5176 break;
5177 case ISD::SETLE:
5178 case ISD::SETOLE:
5179 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
5180 break;
5181 case ISD::SETGT:
5182 case ISD::SETOGT:
5183 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
5184 break;
5185 case ISD::SETUO:
5186 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5187 break;
5188 case ISD::SETO:
5189 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
5190 break;
5191 default:
5192 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5193 switch (cast<CondCodeSDNode>(CC)->get()) {
5194 case ISD::SETONE:
5195 // SETONE = SETOLT | SETOGT
5196 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5197 // Fallthrough
5198 case ISD::SETUGT:
5199 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
5200 break;
5201 case ISD::SETUGE:
5202 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
5203 break;
5204 case ISD::SETULT:
5205 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5206 break;
5207 case ISD::SETULE:
5208 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
5209 break;
5210 case ISD::SETUEQ:
5211 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
5212 break;
5213 default: assert(0 && "Unsupported FP setcc!");
5214 }
5215 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00005216
Dan Gohman8181bd12008-07-27 21:46:04 +00005217 SDValue Dummy;
5218 SDValue Ops[2] = { LHS, RHS };
Dale Johannesen352c47e2009-02-02 20:41:04 +00005219 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005220 false /*sign irrelevant*/, Dummy);
5221 Tmp2 = DAG.getConstant(0, MVT::i32);
5222 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
5223 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesen352c47e2009-02-02 20:41:04 +00005224 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005225 TLI.getSetCCResultType(Tmp1.getValueType()),
5226 Tmp1, Tmp2, CC);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005227 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005228 false /*sign irrelevant*/, Dummy);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005229 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005230 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5231 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesen352c47e2009-02-02 20:41:04 +00005232 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman8181bd12008-07-27 21:46:04 +00005233 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005234 }
Evan Cheng18a1ab12008-07-07 07:18:09 +00005235 LHS = LegalizeOp(Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005236 RHS = Tmp2;
5237 return;
5238 }
5239
Dan Gohman8181bd12008-07-27 21:46:04 +00005240 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005241 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen472d15d2007-10-06 01:24:11 +00005242 ExpandOp(RHS, RHSLo, RHSHi);
5243 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5244
5245 if (VT==MVT::ppcf128) {
5246 // FIXME: This generated code sucks. We want to generate
Dale Johannesen26317b62008-09-12 00:30:56 +00005247 // FCMPU crN, hi1, hi2
Dale Johannesen472d15d2007-10-06 01:24:11 +00005248 // BNE crN, L:
Dale Johannesen26317b62008-09-12 00:30:56 +00005249 // FCMPU crN, lo1, lo2
Dale Johannesen472d15d2007-10-06 01:24:11 +00005250 // The following can be improved, but not that much.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005251 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005252 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005253 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005254 LHSLo, RHSLo, CCCode);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005255 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5256 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005257 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005258 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005259 LHSHi, RHSHi, CCCode);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005260 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5261 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman8181bd12008-07-27 21:46:04 +00005262 Tmp2 = SDValue();
Dale Johannesen472d15d2007-10-06 01:24:11 +00005263 break;
5264 }
5265
5266 switch (CCCode) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005267 case ISD::SETEQ:
5268 case ISD::SETNE:
5269 if (RHSLo == RHSHi)
5270 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5271 if (RHSCST->isAllOnesValue()) {
5272 // Comparison to -1.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005273 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005274 Tmp2 = RHSLo;
5275 break;
5276 }
5277
Dale Johannesen352c47e2009-02-02 20:41:04 +00005278 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5279 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5280 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005281 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5282 break;
5283 default:
5284 // If this is a comparison of the sign bit, just look at the top part.
5285 // X > -1, x < 0
5286 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
5287 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman9d24dc72008-03-13 22:13:53 +00005288 CST->isNullValue()) || // X < 0
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005289 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5290 CST->isAllOnesValue())) { // X > -1
5291 Tmp1 = LHSHi;
5292 Tmp2 = RHSHi;
5293 break;
5294 }
5295
5296 // FIXME: This generated code sucks.
5297 ISD::CondCode LowCC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005298 switch (CCCode) {
5299 default: assert(0 && "Unknown integer setcc!");
5300 case ISD::SETLT:
5301 case ISD::SETULT: LowCC = ISD::SETULT; break;
5302 case ISD::SETGT:
5303 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5304 case ISD::SETLE:
5305 case ISD::SETULE: LowCC = ISD::SETULE; break;
5306 case ISD::SETGE:
5307 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5308 }
5309
5310 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5311 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5312 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5313
5314 // NOTE: on targets without efficient SELECT of bools, we can always use
5315 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
5316 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands4a361272009-01-01 15:52:00 +00005317 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
5318 LHSLo, RHSLo, LowCC, false, DagCombineInfo);
Gabor Greif1c80d112008-08-28 21:40:38 +00005319 if (!Tmp1.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005320 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005321 LHSLo, RHSLo, LowCC);
5322 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5323 LHSHi, RHSHi, CCCode, false, DagCombineInfo);
Gabor Greif1c80d112008-08-28 21:40:38 +00005324 if (!Tmp2.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005325 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005326 TLI.getSetCCResultType(LHSHi.getValueType()),
5327 LHSHi, RHSHi,CC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005328
Gabor Greif1c80d112008-08-28 21:40:38 +00005329 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5330 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman9d24dc72008-03-13 22:13:53 +00005331 if ((Tmp1C && Tmp1C->isNullValue()) ||
5332 (Tmp2C && Tmp2C->isNullValue() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005333 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5334 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman9d24dc72008-03-13 22:13:53 +00005335 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005336 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5337 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5338 // low part is known false, returns high part.
5339 // For LE / GE, if high part is known false, ignore the low part.
5340 // For LT / GT, if high part is known true, ignore the low part.
5341 Tmp1 = Tmp2;
Dan Gohman8181bd12008-07-27 21:46:04 +00005342 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005343 } else {
Duncan Sands4a361272009-01-01 15:52:00 +00005344 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5345 LHSHi, RHSHi, ISD::SETEQ, false,
5346 DagCombineInfo);
Gabor Greif1c80d112008-08-28 21:40:38 +00005347 if (!Result.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005348 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005349 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005350 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005351 Result, Tmp1, Tmp2));
5352 Tmp1 = Result;
Dan Gohman8181bd12008-07-27 21:46:04 +00005353 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005354 }
5355 }
5356 }
5357 }
5358 LHS = Tmp1;
5359 RHS = Tmp2;
5360}
5361
Evan Cheng71343822008-10-15 02:05:31 +00005362/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5363/// condition code CC on the current target. This routine assumes LHS and rHS
5364/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5365/// illegal condition code into AND / OR of multiple SETCC values.
5366void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5367 SDValue &LHS, SDValue &RHS,
Dale Johannesen352c47e2009-02-02 20:41:04 +00005368 SDValue &CC,
5369 DebugLoc dl) {
Evan Cheng71343822008-10-15 02:05:31 +00005370 MVT OpVT = LHS.getValueType();
5371 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5372 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5373 default: assert(0 && "Unknown condition code action!");
5374 case TargetLowering::Legal:
5375 // Nothing to do.
5376 break;
5377 case TargetLowering::Expand: {
5378 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5379 unsigned Opc = 0;
5380 switch (CCCode) {
5381 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohman2b5b9ca2008-10-21 03:12:54 +00005382 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5383 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5384 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5385 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5386 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5387 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5388 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5389 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5390 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5391 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5392 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5393 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng71343822008-10-15 02:05:31 +00005394 // FIXME: Implement more expansions.
5395 }
5396
Dale Johannesen352c47e2009-02-02 20:41:04 +00005397 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5398 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5399 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng71343822008-10-15 02:05:31 +00005400 RHS = SDValue();
5401 CC = SDValue();
5402 break;
5403 }
5404 }
5405}
5406
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005407/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5408/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5409/// a load from the stack slot to DestVT, extending it if needed.
5410/// The resultant code need not be legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00005411SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5412 MVT SlotVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005413 MVT DestVT,
5414 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005415 // Create the stack frame object.
Mon P Wang55854cc2008-07-05 20:40:31 +00005416 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
5417 SrcOp.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00005418 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Mon P Wang55854cc2008-07-05 20:40:31 +00005419
Dan Gohman20e37962008-02-11 18:58:42 +00005420 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00005421 int SPFI = StackPtrFI->getIndex();
Dan Gohman8a8251a2009-01-29 21:02:43 +00005422 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5423
Duncan Sands92c43912008-06-06 12:08:01 +00005424 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5425 unsigned SlotSize = SlotVT.getSizeInBits();
5426 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang55854cc2008-07-05 20:40:31 +00005427 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
5428 DestVT.getTypeForMVT());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005429
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005430 // Emit a store to the stack slot. Use a truncstore if the input value is
5431 // later than DestVT.
Dan Gohman8181bd12008-07-27 21:46:04 +00005432 SDValue Store;
Mon P Wang55854cc2008-07-05 20:40:31 +00005433
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005434 if (SrcSize > SlotSize)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005435 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman8a8251a2009-01-29 21:02:43 +00005436 SV, 0, SlotVT, false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005437 else {
5438 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen82b5b722009-02-02 22:12:50 +00005439 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman8a8251a2009-01-29 21:02:43 +00005440 SV, 0, false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005441 }
5442
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005443 // Result is a load from the stack slot.
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005444 if (SlotSize == DestSize)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005445 return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005446
5447 assert(SlotSize < DestSize && "Unknown extension!");
Dale Johannesen82b5b722009-02-02 22:12:50 +00005448 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang55854cc2008-07-05 20:40:31 +00005449 false, DestAlign);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005450}
5451
Dan Gohman8181bd12008-07-27 21:46:04 +00005452SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005453 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005454 // Create a vector sized/aligned stack slot, store the value to element #0,
5455 // then load the whole vector back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00005456 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman12a9c082008-02-06 22:27:42 +00005457
Dan Gohman20e37962008-02-11 18:58:42 +00005458 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00005459 int SPFI = StackPtrFI->getIndex();
5460
Dale Johannesen82b5b722009-02-02 22:12:50 +00005461 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(0),
5462 StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005463 PseudoSourceValue::getFixedStack(SPFI), 0);
Dale Johannesen82b5b722009-02-02 22:12:50 +00005464 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005465 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005466}
5467
5468
5469/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
5470/// support the operation, but do support the resultant vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00005471SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005472
5473 // If the only non-undef value is the low element, turn this into a
5474 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
5475 unsigned NumElems = Node->getNumOperands();
5476 bool isOnlyLowElement = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00005477 SDValue SplatValue = Node->getOperand(0);
Dale Johannesen82b5b722009-02-02 22:12:50 +00005478 DebugLoc dl = Node->getDebugLoc();
Chris Lattnerd8cee732008-03-09 00:29:42 +00005479
Dan Gohman8181bd12008-07-27 21:46:04 +00005480 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerd8cee732008-03-09 00:29:42 +00005481 // and use a bitmask instead of a list of elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00005482 std::map<SDValue, std::vector<unsigned> > Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005483 Values[SplatValue].push_back(0);
5484 bool isConstant = true;
5485 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5486 SplatValue.getOpcode() != ISD::UNDEF)
5487 isConstant = false;
5488
5489 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005490 SDValue V = Node->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005491 Values[V].push_back(i);
5492 if (V.getOpcode() != ISD::UNDEF)
5493 isOnlyLowElement = false;
5494 if (SplatValue != V)
Dan Gohman8181bd12008-07-27 21:46:04 +00005495 SplatValue = SDValue(0,0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005496
5497 // If this isn't a constant element or an undef, we can't use a constant
5498 // pool load.
5499 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5500 V.getOpcode() != ISD::UNDEF)
5501 isConstant = false;
5502 }
5503
5504 if (isOnlyLowElement) {
5505 // If the low element is an undef too, then this whole things is an undef.
5506 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005507 return DAG.getNode(ISD::UNDEF, dl, Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005508 // Otherwise, turn this into a scalar_to_vector node.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005509 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005510 Node->getOperand(0));
5511 }
5512
5513 // If all elements are constants, create a load from the constant pool.
5514 if (isConstant) {
Duncan Sands92c43912008-06-06 12:08:01 +00005515 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005516 std::vector<Constant*> CV;
5517 for (unsigned i = 0, e = NumElems; i != e; ++i) {
5518 if (ConstantFPSDNode *V =
5519 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00005520 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005521 } else if (ConstantSDNode *V =
Chris Lattner5e0610f2008-04-20 00:41:09 +00005522 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00005523 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005524 } else {
5525 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner5e0610f2008-04-20 00:41:09 +00005526 const Type *OpNTy =
Duncan Sands92c43912008-06-06 12:08:01 +00005527 Node->getOperand(0).getValueType().getTypeForMVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005528 CV.push_back(UndefValue::get(OpNTy));
5529 }
5530 }
5531 Constant *CP = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005532 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman04637d12008-09-16 22:05:41 +00005533 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen82b5b722009-02-02 22:12:50 +00005534 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00005535 PseudoSourceValue::getConstantPool(), 0,
5536 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005537 }
5538
Gabor Greif1c80d112008-08-28 21:40:38 +00005539 if (SplatValue.getNode()) { // Splat of one value?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005540 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands92c43912008-06-06 12:08:01 +00005541 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman8181bd12008-07-27 21:46:04 +00005542 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5543 std::vector<SDValue> ZeroVec(NumElems, Zero);
Dale Johannesen82b5b722009-02-02 22:12:50 +00005544 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005545 &ZeroVec[0], ZeroVec.size());
5546
5547 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
5548 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
5549 // Get the splatted value into the low element of a vector register.
Dan Gohman8181bd12008-07-27 21:46:04 +00005550 SDValue LowValVec =
Dale Johannesen82b5b722009-02-02 22:12:50 +00005551 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5552 Node->getValueType(0), SplatValue);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005553
5554 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005555 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl,
5556 Node->getValueType(0), LowValVec,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005557 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5558 SplatMask);
5559 }
5560 }
5561
5562 // If there are only two unique elements, we may be able to turn this into a
5563 // vector shuffle.
5564 if (Values.size() == 2) {
Chris Lattnerd8cee732008-03-09 00:29:42 +00005565 // Get the two values in deterministic order.
Dan Gohman8181bd12008-07-27 21:46:04 +00005566 SDValue Val1 = Node->getOperand(1);
5567 SDValue Val2;
5568 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerd8cee732008-03-09 00:29:42 +00005569 if (MI->first != Val1)
5570 Val2 = MI->first;
5571 else
5572 Val2 = (++MI)->first;
5573
5574 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
5575 // vector shuffle has the undef vector on the RHS.
5576 if (Val1.getOpcode() == ISD::UNDEF)
5577 std::swap(Val1, Val2);
5578
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005579 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands92c43912008-06-06 12:08:01 +00005580 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5581 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00005582 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerd8cee732008-03-09 00:29:42 +00005583
5584 // Set elements of the shuffle mask for Val1.
5585 std::vector<unsigned> &Val1Elts = Values[Val1];
5586 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5587 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5588
5589 // Set elements of the shuffle mask for Val2.
5590 std::vector<unsigned> &Val2Elts = Values[Val2];
5591 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5592 if (Val2.getOpcode() != ISD::UNDEF)
5593 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5594 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00005595 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, dl, MaskEltVT);
Chris Lattnerd8cee732008-03-09 00:29:42 +00005596
Dale Johannesen82b5b722009-02-02 22:12:50 +00005597 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005598 &MaskVec[0], MaskVec.size());
5599
Chris Lattnerd8cee732008-03-09 00:29:42 +00005600 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Dan Gohman52c51aa2009-01-28 17:46:25 +00005601 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR,
5602 Node->getValueType(0)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005603 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005604 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,Node->getValueType(0), Val1);
5605 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,Node->getValueType(0), Val2);
Dan Gohman8181bd12008-07-27 21:46:04 +00005606 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005607
5608 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005609 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl,Node->getValueType(0), Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005610 }
5611 }
5612
5613 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5614 // aligned object on the stack, store each element into it, then load
5615 // the result as a vector.
Duncan Sands92c43912008-06-06 12:08:01 +00005616 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005617 // Create the stack frame object.
Dan Gohman8181bd12008-07-27 21:46:04 +00005618 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman8a8251a2009-01-29 21:02:43 +00005619 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5620 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5621
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005622 // Emit a store of each element to the stack slot.
Dan Gohman8181bd12008-07-27 21:46:04 +00005623 SmallVector<SDValue, 8> Stores;
Duncan Sands92c43912008-06-06 12:08:01 +00005624 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005625 // Store (in the right endianness) the elements to memory.
5626 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5627 // Ignore undef elements.
5628 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5629
5630 unsigned Offset = TypeByteSize*i;
5631
Dan Gohman8181bd12008-07-27 21:46:04 +00005632 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dale Johannesen82b5b722009-02-02 22:12:50 +00005633 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005634
Dale Johannesen82b5b722009-02-02 22:12:50 +00005635 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i),
5636 Idx, SV, Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005637 }
5638
Dan Gohman8181bd12008-07-27 21:46:04 +00005639 SDValue StoreChain;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005640 if (!Stores.empty()) // Not all undef elements?
Dale Johannesen82b5b722009-02-02 22:12:50 +00005641 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005642 &Stores[0], Stores.size());
5643 else
5644 StoreChain = DAG.getEntryNode();
5645
5646 // Result is a load from the stack slot.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005647 return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005648}
5649
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005650void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman8181bd12008-07-27 21:46:04 +00005651 SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005652 SDValue &Lo, SDValue &Hi,
5653 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005654 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00005655 SDValue LHSL, LHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005656 ExpandOp(Op, LHSL, LHSH);
5657
Dan Gohman8181bd12008-07-27 21:46:04 +00005658 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands92c43912008-06-06 12:08:01 +00005659 MVT VT = LHSL.getValueType();
Dale Johannesen82b5b722009-02-02 22:12:50 +00005660 Lo = DAG.getNode(NodeOp, dl, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005661 Hi = Lo.getValue(1);
5662}
5663
5664
5665/// ExpandShift - Try to find a clever way to expand this shift operation out to
5666/// smaller elements. If we can't find a way that is more efficient than a
5667/// libcall on this target, return false. Otherwise, return true with the
5668/// low-parts expanded into Lo and Hi.
Dan Gohman8181bd12008-07-27 21:46:04 +00005669bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005670 SDValue &Lo, SDValue &Hi,
5671 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005672 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5673 "This is not a shift!");
5674
Duncan Sands92c43912008-06-06 12:08:01 +00005675 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman8181bd12008-07-27 21:46:04 +00005676 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands92c43912008-06-06 12:08:01 +00005677 MVT ShTy = ShAmt.getValueType();
5678 unsigned ShBits = ShTy.getSizeInBits();
5679 unsigned VTBits = Op.getValueType().getSizeInBits();
5680 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005681
Chris Lattner8c931452007-10-14 20:35:12 +00005682 // Handle the case when Amt is an immediate.
Gabor Greif1c80d112008-08-28 21:40:38 +00005683 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005684 unsigned Cst = CN->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005685 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005686 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005687 ExpandOp(Op, InL, InH);
5688 switch(Opc) {
5689 case ISD::SHL:
5690 if (Cst > VTBits) {
5691 Lo = DAG.getConstant(0, NVT);
5692 Hi = DAG.getConstant(0, NVT);
5693 } else if (Cst > NVTBits) {
5694 Lo = DAG.getConstant(0, NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00005695 Hi = DAG.getNode(ISD::SHL, dl,
5696 NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005697 } else if (Cst == NVTBits) {
5698 Lo = DAG.getConstant(0, NVT);
5699 Hi = InL;
5700 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005701 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy));
5702 Hi = DAG.getNode(ISD::OR, dl, NVT,
5703 DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)),
5704 DAG.getNode(ISD::SRL, dl, NVT, InL,
5705 DAG.getConstant(NVTBits-Cst, ShTy)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005706 }
5707 return true;
5708 case ISD::SRL:
5709 if (Cst > VTBits) {
5710 Lo = DAG.getConstant(0, NVT);
5711 Hi = DAG.getConstant(0, NVT);
5712 } else if (Cst > NVTBits) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005713 Lo = DAG.getNode(ISD::SRL, dl, NVT,
5714 InH, DAG.getConstant(Cst-NVTBits,ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005715 Hi = DAG.getConstant(0, NVT);
5716 } else if (Cst == NVTBits) {
5717 Lo = InH;
5718 Hi = DAG.getConstant(0, NVT);
5719 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005720 Lo = DAG.getNode(ISD::OR, dl, NVT,
5721 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
5722 DAG.getNode(ISD::SHL, dl, NVT, InH,
5723 DAG.getConstant(NVTBits-Cst, ShTy)));
5724 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005725 }
5726 return true;
5727 case ISD::SRA:
5728 if (Cst > VTBits) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005729 Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005730 DAG.getConstant(NVTBits-1, ShTy));
5731 } else if (Cst > NVTBits) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005732 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005733 DAG.getConstant(Cst-NVTBits, ShTy));
Dale Johannesen82b5b722009-02-02 22:12:50 +00005734 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005735 DAG.getConstant(NVTBits-1, ShTy));
5736 } else if (Cst == NVTBits) {
5737 Lo = InH;
Dale Johannesen82b5b722009-02-02 22:12:50 +00005738 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005739 DAG.getConstant(NVTBits-1, ShTy));
5740 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005741 Lo = DAG.getNode(ISD::OR, dl, NVT,
5742 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
5743 DAG.getNode(ISD::SHL, dl,
5744 NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5745 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005746 }
5747 return true;
5748 }
5749 }
5750
5751 // Okay, the shift amount isn't constant. However, if we can tell that it is
5752 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohmanece0a882008-02-20 16:57:27 +00005753 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5754 APInt KnownZero, KnownOne;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005755 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
5756
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005757 // If we know that if any of the high bits of the shift amount are one, then
5758 // we can do this as a couple of simple shifts.
Dan Gohmanece0a882008-02-20 16:57:27 +00005759 if (KnownOne.intersects(Mask)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005760 // Mask out the high bit, which we know is set.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005761 Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt,
Dan Gohmanece0a882008-02-20 16:57:27 +00005762 DAG.getConstant(~Mask, Amt.getValueType()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005763
5764 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005765 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005766 ExpandOp(Op, InL, InH);
5767 switch(Opc) {
5768 case ISD::SHL:
5769 Lo = DAG.getConstant(0, NVT); // Low part is zero.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005770 Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005771 return true;
5772 case ISD::SRL:
5773 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005774 Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005775 return true;
5776 case ISD::SRA:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005777 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005778 DAG.getConstant(NVTBits-1, Amt.getValueType()));
Dale Johannesen82b5b722009-02-02 22:12:50 +00005779 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005780 return true;
5781 }
5782 }
5783
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005784 // If we know that the high bits of the shift amount are all zero, then we can
5785 // do this as a couple of simple shifts.
5786 if ((KnownZero & Mask) == Mask) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005787 // Compute 32-amt.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005788 SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005789 DAG.getConstant(NVTBits, Amt.getValueType()),
5790 Amt);
5791
5792 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005793 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005794 ExpandOp(Op, InL, InH);
5795 switch(Opc) {
5796 case ISD::SHL:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005797 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
5798 Hi = DAG.getNode(ISD::OR, dl, NVT,
5799 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
5800 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005801 return true;
5802 case ISD::SRL:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005803 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
5804 Lo = DAG.getNode(ISD::OR, dl, NVT,
5805 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5806 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005807 return true;
5808 case ISD::SRA:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005809 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
5810 Lo = DAG.getNode(ISD::OR, dl, NVT,
5811 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5812 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005813 return true;
5814 }
5815 }
5816
5817 return false;
5818}
5819
5820
5821// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5822// does not fit into a register, return the lo part and set the hi part to the
5823// by-reg argument. If it does fit into a single register, return the result
5824// and leave the Hi part unset.
Dan Gohman8181bd12008-07-27 21:46:04 +00005825SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5826 bool isSigned, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005827 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5828 // The input chain to this libcall is the entry node of the function.
5829 // Legalizing the call will automatically add the previous call to the
5830 // dependence.
Dan Gohman8181bd12008-07-27 21:46:04 +00005831 SDValue InChain = DAG.getEntryNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005832
5833 TargetLowering::ArgListTy Args;
5834 TargetLowering::ArgListEntry Entry;
5835 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands92c43912008-06-06 12:08:01 +00005836 MVT ArgVT = Node->getOperand(i).getValueType();
5837 const Type *ArgTy = ArgVT.getTypeForMVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005838 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
5839 Entry.isSExt = isSigned;
Duncan Sandsead972e2008-02-14 17:28:50 +00005840 Entry.isZExt = !isSigned;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005841 Args.push_back(Entry);
5842 }
Bill Wendlingfef06052008-09-16 21:48:12 +00005843 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang1448aad2008-10-30 08:01:45 +00005844 TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005845
5846 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands92c43912008-06-06 12:08:01 +00005847 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman8181bd12008-07-27 21:46:04 +00005848 std::pair<SDValue,SDValue> CallInfo =
Dale Johannesen67cc9b62008-09-26 19:31:26 +00005849 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesenca6237b2009-01-30 23:10:59 +00005850 CallingConv::C, false, Callee, Args, DAG,
5851 Node->getDebugLoc());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005852
5853 // Legalize the call sequence, starting with the chain. This will advance
5854 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5855 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5856 LegalizeOp(CallInfo.second);
Dan Gohman8181bd12008-07-27 21:46:04 +00005857 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005858 switch (getTypeAction(CallInfo.first.getValueType())) {
5859 default: assert(0 && "Unknown thing");
5860 case Legal:
5861 Result = CallInfo.first;
5862 break;
5863 case Expand:
5864 ExpandOp(CallInfo.first, Result, Hi);
5865 break;
5866 }
5867 return Result;
5868}
5869
Dan Gohman29c3cef2008-08-14 20:04:46 +00005870/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5871///
5872SDValue SelectionDAGLegalize::
Dale Johannesen9972b632009-02-02 19:03:57 +00005873LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5874 DebugLoc dl) {
Dan Gohman29c3cef2008-08-14 20:04:46 +00005875 bool isCustom = false;
5876 SDValue Tmp1;
5877 switch (getTypeAction(Op.getValueType())) {
5878 case Legal:
5879 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5880 Op.getValueType())) {
5881 default: assert(0 && "Unknown operation action!");
5882 case TargetLowering::Custom:
5883 isCustom = true;
5884 // FALLTHROUGH
5885 case TargetLowering::Legal:
5886 Tmp1 = LegalizeOp(Op);
Gabor Greif1c80d112008-08-28 21:40:38 +00005887 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005888 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5889 else
Dale Johannesen9972b632009-02-02 19:03:57 +00005890 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman29c3cef2008-08-14 20:04:46 +00005891 DestTy, Tmp1);
5892 if (isCustom) {
5893 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005894 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman29c3cef2008-08-14 20:04:46 +00005895 }
5896 break;
5897 case TargetLowering::Expand:
Dale Johannesen9972b632009-02-02 19:03:57 +00005898 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005899 break;
5900 case TargetLowering::Promote:
Dale Johannesen9972b632009-02-02 19:03:57 +00005901 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005902 break;
5903 }
5904 break;
5905 case Expand:
Dale Johannesen9972b632009-02-02 19:03:57 +00005906 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman29c3cef2008-08-14 20:04:46 +00005907 break;
5908 case Promote:
5909 Tmp1 = PromoteOp(Op);
5910 if (isSigned) {
Dale Johannesen9972b632009-02-02 19:03:57 +00005911 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Dan Gohman29c3cef2008-08-14 20:04:46 +00005912 Tmp1, DAG.getValueType(Op.getValueType()));
5913 } else {
Dale Johannesen9972b632009-02-02 19:03:57 +00005914 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl,
Dan Gohman29c3cef2008-08-14 20:04:46 +00005915 Op.getValueType());
5916 }
Gabor Greif1c80d112008-08-28 21:40:38 +00005917 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005918 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5919 else
Dale Johannesen9972b632009-02-02 19:03:57 +00005920 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman29c3cef2008-08-14 20:04:46 +00005921 DestTy, Tmp1);
5922 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5923 break;
5924 }
5925 return Result;
5926}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005927
5928/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5929///
Dan Gohman8181bd12008-07-27 21:46:04 +00005930SDValue SelectionDAGLegalize::
Dale Johannesen9972b632009-02-02 19:03:57 +00005931ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00005932 MVT SourceVT = Source.getValueType();
Dan Gohman8b232ff2008-03-11 01:59:03 +00005933 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005934
Dan Gohman29c3cef2008-08-14 20:04:46 +00005935 // Expand unsupported int-to-fp vector casts by unrolling them.
5936 if (DestTy.isVector()) {
5937 if (!ExpandSource)
5938 return LegalizeOp(UnrollVectorOp(Source));
5939 MVT DestEltTy = DestTy.getVectorElementType();
5940 if (DestTy.getVectorNumElements() == 1) {
5941 SDValue Scalar = ScalarizeVectorOp(Source);
5942 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesen9972b632009-02-02 19:03:57 +00005943 DestEltTy, Scalar, dl);
5944 return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005945 }
5946 SDValue Lo, Hi;
5947 SplitVectorOp(Source, Lo, Hi);
5948 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5949 DestTy.getVectorNumElements() / 2);
Dale Johannesen9972b632009-02-02 19:03:57 +00005950 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
5951 Lo, dl);
5952 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
5953 Hi, dl);
5954 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengd901b662008-10-13 18:46:18 +00005955 HiResult));
Dan Gohman29c3cef2008-08-14 20:04:46 +00005956 }
5957
Evan Chengf99a7752008-04-01 02:18:22 +00005958 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5959 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohmana193dba2008-03-05 02:07:31 +00005960 // The integer value loaded will be incorrectly if the 'sign bit' of the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005961 // incoming integer is set. To handle this, we dynamically test to see if
5962 // it is set, and, if so, add a fudge factor.
Dan Gohman8181bd12008-07-27 21:46:04 +00005963 SDValue Hi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005964 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005965 SDValue Lo;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005966 ExpandOp(Source, Lo, Hi);
Dale Johannesen9972b632009-02-02 19:03:57 +00005967 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman8b232ff2008-03-11 01:59:03 +00005968 } else {
5969 // The comparison for the sign bit will use the entire operand.
5970 Hi = Source;
5971 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005972
Dale Johannesen96db7962008-11-04 20:52:49 +00005973 // Check to see if the target has a custom way to lower this. If so, use
5974 // it. (Note we've already expanded the operand in this case.)
Dale Johannesena359b8b2008-10-21 20:50:01 +00005975 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
5976 default: assert(0 && "This action not implemented for this operation!");
5977 case TargetLowering::Legal:
5978 case TargetLowering::Expand:
5979 break; // This case is handled below.
5980 case TargetLowering::Custom: {
5981 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, DestTy,
5982 Source), DAG);
5983 if (NV.getNode())
5984 return LegalizeOp(NV);
5985 break; // The target decided this was legal after all
5986 }
5987 }
5988
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005989 // If this is unsigned, and not supported, first perform the conversion to
5990 // signed, then adjust the result if the sign bit is set.
Dale Johannesen9972b632009-02-02 19:03:57 +00005991 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005992
Dale Johannesen9972b632009-02-02 19:03:57 +00005993 SDValue SignSet = DAG.getSetCC(dl,
5994 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005995 Hi, DAG.getConstant(0, Hi.getValueType()),
5996 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00005997 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesen9972b632009-02-02 19:03:57 +00005998 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005999 SignSet, Four, Zero);
6000 uint64_t FF = 0x5f800000ULL;
6001 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohmana193dba2008-03-05 02:07:31 +00006002 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006003
Dan Gohman8181bd12008-07-27 21:46:04 +00006004 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman04637d12008-09-16 22:05:41 +00006005 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen9972b632009-02-02 19:03:57 +00006006 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00006007 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00006008 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006009 if (DestTy == MVT::f32)
Dale Johannesen9972b632009-02-02 19:03:57 +00006010 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00006011 PseudoSourceValue::getConstantPool(), 0,
6012 false, Alignment);
Duncan Sandsec142ee2008-06-08 20:54:56 +00006013 else if (DestTy.bitsGT(MVT::f32))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006014 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen9972b632009-02-02 19:03:57 +00006015 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman12a9c082008-02-06 22:27:42 +00006016 CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00006017 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00006018 MVT::f32, false, Alignment);
Dale Johannesen2fc20782007-09-14 22:26:36 +00006019 else
6020 assert(0 && "Unexpected conversion");
6021
Duncan Sands92c43912008-06-06 12:08:01 +00006022 MVT SCVT = SignedConv.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006023 if (SCVT != DestTy) {
6024 // Destination type needs to be expanded as well. The FADD now we are
6025 // constructing will be expanded into a libcall.
Duncan Sands92c43912008-06-06 12:08:01 +00006026 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
6027 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesen9972b632009-02-02 19:03:57 +00006028 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006029 SignedConv, SignedConv.getValue(1));
6030 }
Dale Johannesen9972b632009-02-02 19:03:57 +00006031 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006032 }
Dale Johannesen9972b632009-02-02 19:03:57 +00006033 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006034 }
6035
6036 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmanc98645c2008-03-05 01:08:17 +00006037 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006038 default: assert(0 && "This action not implemented for this operation!");
6039 case TargetLowering::Legal:
6040 case TargetLowering::Expand:
6041 break; // This case is handled below.
6042 case TargetLowering::Custom: {
Dale Johannesen9972b632009-02-02 19:03:57 +00006043 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006044 Source), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006045 if (NV.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006046 return LegalizeOp(NV);
6047 break; // The target decided this was legal after all
6048 }
6049 }
6050
6051 // Expand the source, then glue it back together for the call. We must expand
6052 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman8b232ff2008-03-11 01:59:03 +00006053 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006054 SDValue SrcLo, SrcHi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00006055 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesen9972b632009-02-02 19:03:57 +00006056 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman8b232ff2008-03-11 01:59:03 +00006057 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006058
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006059 RTLIB::Libcall LC = isSigned ?
6060 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6061 RTLIB::getUINTTOFP(SourceVT, DestTy);
6062 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6063
Dale Johannesen9972b632009-02-02 19:03:57 +00006064 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman8181bd12008-07-27 21:46:04 +00006065 SDValue HiPart;
Gabor Greif1c80d112008-08-28 21:40:38 +00006066 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6067 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesen9972b632009-02-02 19:03:57 +00006068 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmanec51f642008-03-10 23:03:31 +00006069 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006070}
6071
6072/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6073/// INT_TO_FP operation of the specified operand when the target requests that
6074/// we expand it. At this point, we know that the result and operand types are
6075/// legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00006076SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6077 SDValue Op0,
Dale Johannesen9972b632009-02-02 19:03:57 +00006078 MVT DestVT,
6079 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006080 if (Op0.getValueType() == MVT::i32) {
6081 // simple 32-bit [signed|unsigned] integer to float/double expansion
6082
Chris Lattner0aeb1d02008-01-16 07:03:22 +00006083 // Get the stack frame index of a 8 byte buffer.
Dan Gohman8181bd12008-07-27 21:46:04 +00006084 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Chris Lattner0aeb1d02008-01-16 07:03:22 +00006085
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006086 // word offset constant for Hi/Lo address computation
Dan Gohman8181bd12008-07-27 21:46:04 +00006087 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006088 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman8181bd12008-07-27 21:46:04 +00006089 SDValue Hi = StackSlot;
Dale Johannesen9972b632009-02-02 19:03:57 +00006090 SDValue Lo = DAG.getNode(ISD::ADD, dl,
6091 TLI.getPointerTy(), StackSlot,WordOff);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006092 if (TLI.isLittleEndian())
6093 std::swap(Hi, Lo);
6094
6095 // if signed map to unsigned space
Dan Gohman8181bd12008-07-27 21:46:04 +00006096 SDValue Op0Mapped;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006097 if (isSigned) {
6098 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman8181bd12008-07-27 21:46:04 +00006099 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesen9972b632009-02-02 19:03:57 +00006100 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006101 } else {
6102 Op0Mapped = Op0;
6103 }
6104 // store the lo of the constructed double - based on integer input
Dale Johannesen9972b632009-02-02 19:03:57 +00006105 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006106 Op0Mapped, Lo, NULL, 0);
6107 // initial hi portion of constructed double
Dan Gohman8181bd12008-07-27 21:46:04 +00006108 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006109 // store the hi of the constructed double - biased exponent
Dale Johannesen9972b632009-02-02 19:03:57 +00006110 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006111 // load the constructed double
Dale Johannesen9972b632009-02-02 19:03:57 +00006112 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006113 // FP constant to bias correct the final result
Dan Gohman8181bd12008-07-27 21:46:04 +00006114 SDValue Bias = DAG.getConstantFP(isSigned ?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006115 BitsToDouble(0x4330000080000000ULL)
6116 : BitsToDouble(0x4330000000000000ULL),
6117 MVT::f64);
6118 // subtract the bias
Dale Johannesen9972b632009-02-02 19:03:57 +00006119 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006120 // final result
Dan Gohman8181bd12008-07-27 21:46:04 +00006121 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006122 // handle final rounding
6123 if (DestVT == MVT::f64) {
6124 // do nothing
6125 Result = Sub;
Duncan Sandsec142ee2008-06-08 20:54:56 +00006126 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesen9972b632009-02-02 19:03:57 +00006127 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner5872a362008-01-17 07:00:52 +00006128 DAG.getIntPtrConstant(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00006129 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen9972b632009-02-02 19:03:57 +00006130 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006131 }
6132 return Result;
6133 }
6134 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesen9972b632009-02-02 19:03:57 +00006135 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006136
Dale Johannesen9972b632009-02-02 19:03:57 +00006137 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00006138 Op0, DAG.getConstant(0, Op0.getValueType()),
6139 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00006140 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesen9972b632009-02-02 19:03:57 +00006141 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006142 SignSet, Four, Zero);
6143
6144 // If the sign bit of the integer is set, the large number will be treated
6145 // as a negative number. To counteract this, the dynamic code adds an
6146 // offset depending on the data type.
6147 uint64_t FF;
Duncan Sands92c43912008-06-06 12:08:01 +00006148 switch (Op0.getValueType().getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006149 default: assert(0 && "Unsupported integer type!");
6150 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6151 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6152 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6153 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6154 }
6155 if (TLI.isLittleEndian()) FF <<= 32;
6156 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
6157
Dan Gohman8181bd12008-07-27 21:46:04 +00006158 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman04637d12008-09-16 22:05:41 +00006159 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen9972b632009-02-02 19:03:57 +00006160 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00006161 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00006162 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006163 if (DestVT == MVT::f32)
Dale Johannesen9972b632009-02-02 19:03:57 +00006164 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00006165 PseudoSourceValue::getConstantPool(), 0,
6166 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006167 else {
Dan Gohman12a9c082008-02-06 22:27:42 +00006168 FudgeInReg =
Dale Johannesen9972b632009-02-02 19:03:57 +00006169 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman12a9c082008-02-06 22:27:42 +00006170 DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00006171 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00006172 MVT::f32, false, Alignment));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006173 }
6174
Dale Johannesen9972b632009-02-02 19:03:57 +00006175 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006176}
6177
6178/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6179/// *INT_TO_FP operation of the specified operand when the target requests that
6180/// we promote it. At this point, we know that the result and operand types are
6181/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6182/// operation that takes a larger input.
Dan Gohman8181bd12008-07-27 21:46:04 +00006183SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6184 MVT DestVT,
Dale Johannesen9972b632009-02-02 19:03:57 +00006185 bool isSigned,
6186 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006187 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00006188 MVT NewInTy = LegalOp.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006189
6190 unsigned OpToUse = 0;
6191
6192 // Scan for the appropriate larger type to use.
6193 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00006194 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6195 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006196
6197 // If the target supports SINT_TO_FP of this type, use it.
6198 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6199 default: break;
6200 case TargetLowering::Legal:
6201 if (!TLI.isTypeLegal(NewInTy))
6202 break; // Can't use this datatype.
6203 // FALL THROUGH.
6204 case TargetLowering::Custom:
6205 OpToUse = ISD::SINT_TO_FP;
6206 break;
6207 }
6208 if (OpToUse) break;
6209 if (isSigned) continue;
6210
6211 // If the target supports UINT_TO_FP of this type, use it.
6212 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6213 default: break;
6214 case TargetLowering::Legal:
6215 if (!TLI.isTypeLegal(NewInTy))
6216 break; // Can't use this datatype.
6217 // FALL THROUGH.
6218 case TargetLowering::Custom:
6219 OpToUse = ISD::UINT_TO_FP;
6220 break;
6221 }
6222 if (OpToUse) break;
6223
6224 // Otherwise, try a larger type.
6225 }
6226
6227 // Okay, we found the operation and type to use. Zero extend our input to the
6228 // desired type then run the operation on it.
Dale Johannesen9972b632009-02-02 19:03:57 +00006229 return DAG.getNode(OpToUse, dl, DestVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006230 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesen9972b632009-02-02 19:03:57 +00006231 dl, NewInTy, LegalOp));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006232}
6233
6234/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6235/// FP_TO_*INT operation of the specified operand when the target requests that
6236/// we promote it. At this point, we know that the result and operand types are
6237/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6238/// operation that returns a larger result.
Dan Gohman8181bd12008-07-27 21:46:04 +00006239SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6240 MVT DestVT,
Dale Johannesen9972b632009-02-02 19:03:57 +00006241 bool isSigned,
6242 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006243 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00006244 MVT NewOutTy = DestVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006245
6246 unsigned OpToUse = 0;
6247
6248 // Scan for the appropriate larger type to use.
6249 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00006250 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6251 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006252
6253 // If the target supports FP_TO_SINT returning this type, use it.
6254 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6255 default: break;
6256 case TargetLowering::Legal:
6257 if (!TLI.isTypeLegal(NewOutTy))
6258 break; // Can't use this datatype.
6259 // FALL THROUGH.
6260 case TargetLowering::Custom:
6261 OpToUse = ISD::FP_TO_SINT;
6262 break;
6263 }
6264 if (OpToUse) break;
6265
6266 // If the target supports FP_TO_UINT of this type, use it.
6267 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
6268 default: break;
6269 case TargetLowering::Legal:
6270 if (!TLI.isTypeLegal(NewOutTy))
6271 break; // Can't use this datatype.
6272 // FALL THROUGH.
6273 case TargetLowering::Custom:
6274 OpToUse = ISD::FP_TO_UINT;
6275 break;
6276 }
6277 if (OpToUse) break;
6278
6279 // Otherwise, try a larger type.
6280 }
6281
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006282
6283 // Okay, we found the operation and type to use.
Dale Johannesen9972b632009-02-02 19:03:57 +00006284 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sandsac496a12008-07-04 11:47:58 +00006285
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006286 // If the operation produces an invalid type, it must be custom lowered. Use
6287 // the target lowering hooks to expand it. Just keep the low part of the
6288 // expanded operation, we know that we're truncating anyway.
6289 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands7d9834b2008-12-01 11:39:25 +00006290 SmallVector<SDValue, 2> Results;
6291 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6292 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6293 Operation = Results[0];
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006294 }
Duncan Sandsac496a12008-07-04 11:47:58 +00006295
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006296 // Truncate the result of the extended FP_TO_*INT operation to the desired
6297 // size.
Dale Johannesen9972b632009-02-02 19:03:57 +00006298 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006299}
6300
6301/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6302///
Dale Johannesen82b5b722009-02-02 22:12:50 +00006303SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00006304 MVT VT = Op.getValueType();
6305 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00006306 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands92c43912008-06-06 12:08:01 +00006307 switch (VT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006308 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6309 case MVT::i16:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006310 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6311 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6312 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006313 case MVT::i32:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006314 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6315 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6316 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6317 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6318 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6319 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6320 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6321 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6322 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006323 case MVT::i64:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006324 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
6325 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
6326 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6327 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6328 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6329 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6330 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
6331 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
6332 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6333 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6334 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6335 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6336 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6337 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6338 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
6339 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
6340 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6341 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6342 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
6343 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
6344 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006345 }
6346}
6347
6348/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6349///
Dale Johannesen82b5b722009-02-02 22:12:50 +00006350SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
6351 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006352 switch (Opc) {
6353 default: assert(0 && "Cannot expand this yet!");
6354 case ISD::CTPOP: {
6355 static const uint64_t mask[6] = {
6356 0x5555555555555555ULL, 0x3333333333333333ULL,
6357 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6358 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6359 };
Duncan Sands92c43912008-06-06 12:08:01 +00006360 MVT VT = Op.getValueType();
6361 MVT ShVT = TLI.getShiftAmountTy();
6362 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006363 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6364 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sands505ba942009-02-01 18:06:53 +00006365 unsigned EltSize = VT.isVector() ?
6366 VT.getVectorElementType().getSizeInBits() : len;
6367 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman8181bd12008-07-27 21:46:04 +00006368 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006369 Op = DAG.getNode(ISD::ADD, dl, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
6370 DAG.getNode(ISD::AND, dl, VT,
6371 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3),
6372 Tmp2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006373 }
6374 return Op;
6375 }
6376 case ISD::CTLZ: {
6377 // for now, we do this:
6378 // x = x | (x >> 1);
6379 // x = x | (x >> 2);
6380 // ...
6381 // x = x | (x >>16);
6382 // x = x | (x >>32); // for 64-bit input
6383 // return popcount(~x);
6384 //
6385 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00006386 MVT VT = Op.getValueType();
6387 MVT ShVT = TLI.getShiftAmountTy();
6388 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006389 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006390 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006391 Op = DAG.getNode(ISD::OR, dl, VT, Op,
6392 DAG.getNode(ISD::SRL, VT, Op, Tmp3));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006393 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00006394 Op = DAG.getNOT(dl, Op, VT);
6395 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006396 }
6397 case ISD::CTTZ: {
6398 // for now, we use: { return popcount(~x & (x - 1)); }
6399 // unless the target has ctlz but not ctpop, in which case we use:
6400 // { return 32 - nlz(~x & (x-1)); }
6401 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00006402 MVT VT = Op.getValueType();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006403 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
6404 DAG.getNOT(dl, Op, VT),
6405 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendlingfcfb47d2009-01-30 23:03:19 +00006406 DAG.getConstant(1, VT)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006407 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohman52c51aa2009-01-28 17:46:25 +00006408 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6409 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00006410 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands92c43912008-06-06 12:08:01 +00006411 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006412 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
6413 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006414 }
6415 }
6416}
6417
Dan Gohman8181bd12008-07-27 21:46:04 +00006418/// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006419/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman4fc03742008-10-01 15:07:49 +00006420/// LegalizedNodes map is filled in for any results that are not expanded, the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006421/// ExpandedNodes map is filled in for any results that are expanded, and the
6422/// Lo/Hi values are returned.
Dan Gohman8181bd12008-07-27 21:46:04 +00006423void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands92c43912008-06-06 12:08:01 +00006424 MVT VT = Op.getValueType();
6425 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greif1c80d112008-08-28 21:40:38 +00006426 SDNode *Node = Op.getNode();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006427 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006428 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00006429 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands92c43912008-06-06 12:08:01 +00006430 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006431
6432 // See if we already expanded it.
Dan Gohman8181bd12008-07-27 21:46:04 +00006433 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006434 = ExpandedNodes.find(Op);
6435 if (I != ExpandedNodes.end()) {
6436 Lo = I->second.first;
6437 Hi = I->second.second;
6438 return;
6439 }
6440
6441 switch (Node->getOpcode()) {
6442 case ISD::CopyFromReg:
6443 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006444 case ISD::FP_ROUND_INREG:
6445 if (VT == MVT::ppcf128 &&
6446 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
6447 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006448 SDValue SrcLo, SrcHi, Src;
Dale Johannesend3b6af32007-10-11 23:32:15 +00006449 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006450 Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006451 SDValue Result = TLI.LowerOperation(
Dale Johannesen82b5b722009-02-02 22:12:50 +00006452 DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src, Op.getOperand(1)), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006453 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6454 Lo = Result.getNode()->getOperand(0);
6455 Hi = Result.getNode()->getOperand(1);
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006456 break;
6457 }
6458 // fall through
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006459 default:
6460#ifndef NDEBUG
6461 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
6462#endif
6463 assert(0 && "Do not know how to expand this operator!");
6464 abort();
Dan Gohman550c8462008-02-27 01:52:30 +00006465 case ISD::EXTRACT_ELEMENT:
6466 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006467 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman550c8462008-02-27 01:52:30 +00006468 return ExpandOp(Hi, Lo, Hi);
Dan Gohman7e7aa2c2008-02-27 19:44:57 +00006469 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen2ff963d2007-10-31 00:32:36 +00006470 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen2ff963d2007-10-31 00:32:36 +00006471 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6472 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6473 return ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006474 case ISD::UNDEF:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006475 Lo = DAG.getNode(ISD::UNDEF, dl, NVT);
6476 Hi = DAG.getNode(ISD::UNDEF, dl, NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006477 break;
6478 case ISD::Constant: {
Duncan Sands92c43912008-06-06 12:08:01 +00006479 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman97f1f8e2008-03-03 22:20:46 +00006480 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6481 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6482 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006483 break;
6484 }
6485 case ISD::ConstantFP: {
6486 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesen2aef5692007-10-11 18:07:22 +00006487 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00006488 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesen2aef5692007-10-11 18:07:22 +00006489 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6490 MVT::f64);
6491 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
6492 MVT::f64);
6493 break;
6494 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006495 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
6496 if (getTypeAction(Lo.getValueType()) == Expand)
6497 ExpandOp(Lo, Lo, Hi);
6498 break;
6499 }
6500 case ISD::BUILD_PAIR:
6501 // Return the operands.
6502 Lo = Node->getOperand(0);
6503 Hi = Node->getOperand(1);
6504 break;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006505
6506 case ISD::MERGE_VALUES:
Chris Lattner1b66f822007-11-24 19:12:15 +00006507 if (Node->getNumValues() == 1) {
6508 ExpandOp(Op.getOperand(0), Lo, Hi);
6509 break;
6510 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006511 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif46bf5472008-08-26 22:36:50 +00006512 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006513 Op.getValue(1).getValueType() == MVT::Other &&
6514 "unhandled MERGE_VALUES");
6515 ExpandOp(Op.getOperand(0), Lo, Hi);
6516 // Remember that we legalized the chain.
6517 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6518 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006519
6520 case ISD::SIGN_EXTEND_INREG:
6521 ExpandOp(Node->getOperand(0), Lo, Hi);
6522 // sext_inreg the low part if needed.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006523 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006524
6525 // The high part gets the sign extension from the lo-part. This handles
6526 // things like sextinreg V:i64 from i8.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006527 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Duncan Sands92c43912008-06-06 12:08:01 +00006528 DAG.getConstant(NVT.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006529 TLI.getShiftAmountTy()));
6530 break;
6531
6532 case ISD::BSWAP: {
6533 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006534 SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi);
6535 Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006536 Lo = TempLo;
6537 break;
6538 }
6539
6540 case ISD::CTPOP:
6541 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006542 Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6543 DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
6544 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006545 Hi = DAG.getConstant(0, NVT);
6546 break;
6547
6548 case ISD::CTLZ: {
6549 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
6550 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006551 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006552 SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
6553 SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ,
6554 BitsC, ISD::SETNE);
6555 SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
6556 LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006557
Dale Johannesen82b5b722009-02-02 22:12:50 +00006558 Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006559 Hi = DAG.getConstant(0, NVT);
6560 break;
6561 }
6562
6563 case ISD::CTTZ: {
6564 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
6565 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006566 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006567 SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
6568 SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ,
6569 BitsC, ISD::SETNE);
6570 SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
6571 HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006572
Dale Johannesen82b5b722009-02-02 22:12:50 +00006573 Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006574 Hi = DAG.getConstant(0, NVT);
6575 break;
6576 }
6577
6578 case ISD::VAARG: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006579 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6580 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006581 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
6582 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
6583
6584 // Remember that we legalized the chain.
6585 Hi = LegalizeOp(Hi);
6586 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006587 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006588 std::swap(Lo, Hi);
6589 break;
6590 }
6591
6592 case ISD::LOAD: {
6593 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00006594 SDValue Ch = LD->getChain(); // Legalize the chain.
6595 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006596 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman29c3cef2008-08-14 20:04:46 +00006597 const Value *SV = LD->getSrcValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006598 int SVOffset = LD->getSrcValueOffset();
6599 unsigned Alignment = LD->getAlignment();
6600 bool isVolatile = LD->isVolatile();
6601
6602 if (ExtType == ISD::NON_EXTLOAD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006603 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006604 isVolatile, Alignment);
6605 if (VT == MVT::f32 || VT == MVT::f64) {
6606 // f32->i32 or f64->i64 one to one expansion.
6607 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006608 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006609 // Recursively expand the new load.
6610 if (getTypeAction(NVT) == Expand)
6611 ExpandOp(Lo, Lo, Hi);
6612 break;
6613 }
6614
6615 // Increment the pointer to the other half.
Duncan Sands92c43912008-06-06 12:08:01 +00006616 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dale Johannesen82b5b722009-02-02 22:12:50 +00006617 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00006618 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006619 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00006620 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006621 Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006622 isVolatile, Alignment);
6623
6624 // Build a factor node to remember that this load is independent of the
6625 // other one.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006626 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006627 Hi.getValue(1));
6628
6629 // Remember that we legalized the chain.
6630 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006631 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006632 std::swap(Lo, Hi);
6633 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00006634 MVT EVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006635
Dale Johannesen2550e3a2007-10-19 20:29:00 +00006636 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6637 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006638 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dale Johannesen82b5b722009-02-02 22:12:50 +00006639 SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006640 SVOffset, isVolatile, Alignment);
6641 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006642 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dale Johannesen82b5b722009-02-02 22:12:50 +00006643 ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006644 break;
6645 }
6646
6647 if (EVT == NVT)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006648 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006649 SVOffset, isVolatile, Alignment);
6650 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00006651 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006652 SVOffset, EVT, isVolatile,
6653 Alignment);
6654
6655 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006656 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006657
6658 if (ExtType == ISD::SEXTLOAD) {
6659 // The high part is obtained by SRA'ing all but one of the bits of the
6660 // lo part.
Duncan Sands92c43912008-06-06 12:08:01 +00006661 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006662 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006663 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6664 } else if (ExtType == ISD::ZEXTLOAD) {
6665 // The high part is just a zero.
6666 Hi = DAG.getConstant(0, NVT);
6667 } else /* if (ExtType == ISD::EXTLOAD) */ {
6668 // The high part is undefined.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006669 Hi = DAG.getNode(ISD::UNDEF, dl, NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006670 }
6671 }
6672 break;
6673 }
6674 case ISD::AND:
6675 case ISD::OR:
6676 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +00006677 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006678 ExpandOp(Node->getOperand(0), LL, LH);
6679 ExpandOp(Node->getOperand(1), RL, RH);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006680 Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL);
6681 Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006682 break;
6683 }
6684 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006685 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006686 ExpandOp(Node->getOperand(1), LL, LH);
6687 ExpandOp(Node->getOperand(2), RL, RH);
6688 if (getTypeAction(NVT) == Expand)
6689 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006690 Lo = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LL, RL);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006691 if (VT != MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006692 Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006693 break;
6694 }
6695 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006696 SDValue TL, TH, FL, FH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006697 ExpandOp(Node->getOperand(2), TL, TH);
6698 ExpandOp(Node->getOperand(3), FL, FH);
6699 if (getTypeAction(NVT) == Expand)
6700 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006701 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006702 Node->getOperand(1), TL, FL, Node->getOperand(4));
6703 if (VT != MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006704 Hi = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006705 Node->getOperand(1), TH, FH, Node->getOperand(4));
6706 break;
6707 }
6708 case ISD::ANY_EXTEND:
6709 // The low part is any extension of the input (which degenerates to a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006710 Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006711 // The high part is undefined.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006712 Hi = DAG.getNode(ISD::UNDEF, dl, NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006713 break;
6714 case ISD::SIGN_EXTEND: {
6715 // The low part is just a sign extension of the input (which degenerates to
6716 // a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006717 Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006718
6719 // The high part is obtained by SRA'ing all but one of the bits of the lo
6720 // part.
Duncan Sands92c43912008-06-06 12:08:01 +00006721 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006722 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006723 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6724 break;
6725 }
6726 case ISD::ZERO_EXTEND:
6727 // The low part is just a zero extension of the input (which degenerates to
6728 // a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006729 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006730
6731 // The high part is just a zero.
6732 Hi = DAG.getConstant(0, NVT);
6733 break;
6734
6735 case ISD::TRUNCATE: {
6736 // The input value must be larger than this value. Expand *it*.
Dan Gohman8181bd12008-07-27 21:46:04 +00006737 SDValue NewLo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006738 ExpandOp(Node->getOperand(0), NewLo, Hi);
6739
6740 // The low part is now either the right size, or it is closer. If not the
6741 // right size, make an illegal truncate so we recursively expand it.
6742 if (NewLo.getValueType() != Node->getValueType(0))
Dale Johannesen82b5b722009-02-02 22:12:50 +00006743 NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006744 ExpandOp(NewLo, Lo, Hi);
6745 break;
6746 }
6747
6748 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006749 SDValue Tmp;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006750 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6751 // If the target wants to, allow it to lower this itself.
6752 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6753 case Expand: assert(0 && "cannot expand FP!");
6754 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6755 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6756 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00006757 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006758 }
6759
6760 // f32 / f64 must be expanded to i32 / i64.
6761 if (VT == MVT::f32 || VT == MVT::f64) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006762 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006763 if (getTypeAction(NVT) == Expand)
6764 ExpandOp(Lo, Lo, Hi);
6765 break;
6766 }
6767
6768 // If source operand will be expanded to the same type as VT, i.e.
6769 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands92c43912008-06-06 12:08:01 +00006770 MVT VT0 = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006771 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6772 ExpandOp(Node->getOperand(0), Lo, Hi);
6773 break;
6774 }
6775
6776 // Turn this into a load/store pair by default.
Gabor Greif1c80d112008-08-28 21:40:38 +00006777 if (Tmp.getNode() == 0)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006778 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006779
6780 ExpandOp(Tmp, Lo, Hi);
6781 break;
6782 }
6783
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006784 case ISD::READCYCLECOUNTER: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006785 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6786 TargetLowering::Custom &&
6787 "Must custom expand ReadCycleCounter");
Dan Gohman8181bd12008-07-27 21:46:04 +00006788 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006789 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006790 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006791 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006792 LegalizeOp(Tmp.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006793 break;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006794 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006795
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006796 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen44eb5372008-10-03 19:41:08 +00006797 // This operation does not need a loop.
6798 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6799 assert(Tmp.getNode() && "Node must be custom expanded!");
6800 ExpandOp(Tmp.getValue(0), Lo, Hi);
6801 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6802 LegalizeOp(Tmp.getValue(1)));
6803 break;
6804 }
6805
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006806 case ISD::ATOMIC_LOAD_ADD:
6807 case ISD::ATOMIC_LOAD_SUB:
6808 case ISD::ATOMIC_LOAD_AND:
6809 case ISD::ATOMIC_LOAD_OR:
6810 case ISD::ATOMIC_LOAD_XOR:
6811 case ISD::ATOMIC_LOAD_NAND:
6812 case ISD::ATOMIC_SWAP: {
Dale Johannesen44eb5372008-10-03 19:41:08 +00006813 // These operations require a loop to be generated. We can't do that yet,
6814 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesenf160d802008-10-02 18:53:47 +00006815 SDValue In2Lo, In2Hi, In2;
6816 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006817 In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi);
Dale Johannesen44eb5372008-10-03 19:41:08 +00006818 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
6819 SDValue Replace =
Dale Johannesen82b5b722009-02-02 22:12:50 +00006820 DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(),
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006821 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen44eb5372008-10-03 19:41:08 +00006822 Anode->getSrcValue(), Anode->getAlignment());
6823 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesenf160d802008-10-02 18:53:47 +00006824 ExpandOp(Result.getValue(0), Lo, Hi);
6825 // Remember that we legalized the chain.
6826 AddLegalizedOperand(SDValue(Node,1), LegalizeOp(Result.getValue(1)));
Andrew Lenharth81580822008-03-05 01:15:49 +00006827 break;
6828 }
6829
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006830 // These operators cannot be expanded directly, emit them as calls to
6831 // library functions.
6832 case ISD::FP_TO_SINT: {
6833 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006834 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006835 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6836 case Expand: assert(0 && "cannot expand FP!");
6837 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6838 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6839 }
6840
Dale Johannesen82b5b722009-02-02 22:12:50 +00006841 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006842
6843 // Now that the custom expander is done, expand the result, which is still
6844 // VT.
Gabor Greif1c80d112008-08-28 21:40:38 +00006845 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006846 ExpandOp(Op, Lo, Hi);
6847 break;
6848 }
6849 }
6850
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006851 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6852 VT);
6853 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6854 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006855 break;
6856 }
6857
6858 case ISD::FP_TO_UINT: {
6859 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006860 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006861 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6862 case Expand: assert(0 && "cannot expand FP!");
6863 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6864 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6865 }
6866
Dale Johannesen82b5b722009-02-02 22:12:50 +00006867 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006868
6869 // Now that the custom expander is done, expand the result.
Gabor Greif1c80d112008-08-28 21:40:38 +00006870 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006871 ExpandOp(Op, Lo, Hi);
6872 break;
6873 }
6874 }
6875
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006876 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6877 VT);
6878 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6879 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006880 break;
6881 }
6882
6883 case ISD::SHL: {
6884 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006885 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006886 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006887 SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006888 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006889 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006890 // Now that the custom expander is done, expand the result, which is
6891 // still VT.
6892 ExpandOp(Op, Lo, Hi);
6893 break;
6894 }
6895 }
6896
6897 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6898 // this X << 1 as X+X.
6899 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman52c51aa2009-01-28 17:46:25 +00006900 if (ShAmt->getAPIntValue() == 1 &&
6901 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
6902 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006903 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006904 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6905 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6906 LoOps[1] = LoOps[0];
Dale Johannesen82b5b722009-02-02 22:12:50 +00006907 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006908
6909 HiOps[1] = HiOps[0];
6910 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006911 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006912 break;
6913 }
6914 }
6915
6916 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006917 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006918 break;
6919
6920 // If this target supports SHL_PARTS, use it.
6921 TargetLowering::LegalizeAction Action =
6922 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6923 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6924 Action == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006925 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0),
6926 ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006927 break;
6928 }
6929
6930 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006931 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006932 break;
6933 }
6934
6935 case ISD::SRA: {
6936 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006937 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006938 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006939 SDValue Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006940 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006941 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006942 // Now that the custom expander is done, expand the result, which is
6943 // still VT.
6944 ExpandOp(Op, Lo, Hi);
6945 break;
6946 }
6947 }
6948
6949 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006950 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006951 break;
6952
6953 // If this target supports SRA_PARTS, use it.
6954 TargetLowering::LegalizeAction Action =
6955 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6956 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6957 Action == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006958 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0),
6959 ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006960 break;
6961 }
6962
6963 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006964 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006965 break;
6966 }
6967
6968 case ISD::SRL: {
6969 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006970 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006971 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006972 SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006973 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006974 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006975 // Now that the custom expander is done, expand the result, which is
6976 // still VT.
6977 ExpandOp(Op, Lo, Hi);
6978 break;
6979 }
6980 }
6981
6982 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006983 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006984 break;
6985
6986 // If this target supports SRL_PARTS, use it.
6987 TargetLowering::LegalizeAction Action =
6988 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6989 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6990 Action == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006991 ExpandShiftParts(ISD::SRL_PARTS,
6992 Node->getOperand(0), ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006993 break;
6994 }
6995
6996 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006997 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006998 break;
6999 }
7000
7001 case ISD::ADD:
7002 case ISD::SUB: {
7003 // If the target wants to custom expand this, let them.
7004 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
7005 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007006 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00007007 if (Result.getNode()) {
Duncan Sands4c3885b2008-06-22 09:42:16 +00007008 ExpandOp(Result, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007009 break;
7010 }
7011 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007012 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007013 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007014 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7015 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman8181bd12008-07-27 21:46:04 +00007016 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007017 LoOps[0] = LHSL;
7018 LoOps[1] = RHSL;
7019 HiOps[0] = LHSH;
7020 HiOps[1] = RHSH;
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007021
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007022 //cascaded check to see if any smaller size has a a carry flag.
7023 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
7024 bool hasCarry = false;
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007025 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
7026 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohman52c51aa2009-01-28 17:46:25 +00007027 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007028 hasCarry = true;
7029 break;
7030 }
7031 }
7032
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007033 if(hasCarry) {
Evan Cheng2bdd3d92008-12-12 18:49:09 +00007034 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007035 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007036 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007037 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007038 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007039 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007040 Lo = DAG.getNode(ISD::SUBC, 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::SUBE, dl, VTList, HiOps, 3);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007043 }
7044 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007045 } else {
Andrew Lenharth5e814462008-10-07 14:15:42 +00007046 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007047 Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2);
7048 Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
7049 SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007050 Lo, LoOps[0], ISD::SETULT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007051 SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
Andrew Lenharth5e814462008-10-07 14:15:42 +00007052 DAG.getConstant(1, NVT),
7053 DAG.getConstant(0, NVT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00007054 SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007055 Lo, LoOps[1], ISD::SETULT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007056 SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
Andrew Lenharth5e814462008-10-07 14:15:42 +00007057 DAG.getConstant(1, NVT),
7058 Carry1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007059 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007060 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007061 Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
7062 Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
7063 SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT);
7064 SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
Andrew Lenharth5e814462008-10-07 14:15:42 +00007065 DAG.getConstant(1, NVT),
7066 DAG.getConstant(0, NVT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00007067 Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007068 }
7069 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007070 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007071 }
7072
7073 case ISD::ADDC:
7074 case ISD::SUBC: {
7075 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007076 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007077 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7078 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7079 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00007080 SDValue LoOps[2] = { LHSL, RHSL };
7081 SDValue HiOps[3] = { LHSH, RHSH };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007082
7083 if (Node->getOpcode() == ISD::ADDC) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007084 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007085 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007086 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007087 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007088 Lo = DAG.getNode(ISD::SUBC, 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::SUBE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007091 }
7092 // Remember that we legalized the flag.
7093 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7094 break;
7095 }
7096 case ISD::ADDE:
7097 case ISD::SUBE: {
7098 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007099 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007100 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7101 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7102 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00007103 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7104 SDValue HiOps[3] = { LHSH, RHSH };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007105
Dale Johannesen82b5b722009-02-02 22:12:50 +00007106 Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007107 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007108 Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007109
7110 // Remember that we legalized the flag.
7111 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7112 break;
7113 }
7114 case ISD::MUL: {
7115 // If the target wants to custom expand this, let them.
7116 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007117 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00007118 if (New.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007119 ExpandOp(New, Lo, Hi);
7120 break;
7121 }
7122 }
7123
Dan Gohman52c51aa2009-01-28 17:46:25 +00007124 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7125 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7126 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7127 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman5a199552007-10-08 18:33:35 +00007128 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007129 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007130 ExpandOp(Node->getOperand(0), LL, LH);
7131 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman07961cd2008-02-25 21:11:39 +00007132 unsigned OuterBitSize = Op.getValueSizeInBits();
7133 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman5a199552007-10-08 18:33:35 +00007134 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7135 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman2594d942008-03-10 20:42:19 +00007136 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7137 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7138 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman5a199552007-10-08 18:33:35 +00007139 // The inputs are both zero-extended.
7140 if (HasUMUL_LOHI) {
7141 // We can emit a umul_lohi.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007142 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00007143 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00007144 break;
7145 }
7146 if (HasMULHU) {
7147 // We can emit a mulhu+mul.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007148 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7149 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
Dan Gohman5a199552007-10-08 18:33:35 +00007150 break;
7151 }
Dan Gohman5a199552007-10-08 18:33:35 +00007152 }
Dan Gohman07961cd2008-02-25 21:11:39 +00007153 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman5a199552007-10-08 18:33:35 +00007154 // The input values are both sign-extended.
7155 if (HasSMUL_LOHI) {
7156 // We can emit a smul_lohi.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007157 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00007158 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00007159 break;
7160 }
7161 if (HasMULHS) {
7162 // We can emit a mulhs+mul.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007163 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7164 Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
Dan Gohman5a199552007-10-08 18:33:35 +00007165 break;
7166 }
7167 }
7168 if (HasUMUL_LOHI) {
7169 // Lo,Hi = umul LHS, RHS.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007170 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
Dan Gohman5a199552007-10-08 18:33:35 +00007171 DAG.getVTList(NVT, NVT), LL, RL);
7172 Lo = UMulLOHI;
7173 Hi = UMulLOHI.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007174 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7175 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7176 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7177 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007178 break;
7179 }
Dale Johannesen612c88b2007-10-24 22:26:08 +00007180 if (HasMULHU) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007181 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7182 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
7183 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7184 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7185 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7186 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dale Johannesen612c88b2007-10-24 22:26:08 +00007187 break;
7188 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007189 }
7190
Dan Gohman5a199552007-10-08 18:33:35 +00007191 // If nothing else, we can make a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007192 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007193 break;
7194 }
7195 case ISD::SDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007196 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007197 break;
7198 case ISD::UDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007199 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007200 break;
7201 case ISD::SREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007202 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007203 break;
7204 case ISD::UREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007205 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007206 break;
7207
7208 case ISD::FADD:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007209 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7210 RTLIB::ADD_F64,
7211 RTLIB::ADD_F80,
7212 RTLIB::ADD_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007213 Node, false, Hi);
7214 break;
7215 case ISD::FSUB:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007216 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7217 RTLIB::SUB_F64,
7218 RTLIB::SUB_F80,
7219 RTLIB::SUB_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007220 Node, false, Hi);
7221 break;
7222 case ISD::FMUL:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007223 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7224 RTLIB::MUL_F64,
7225 RTLIB::MUL_F80,
7226 RTLIB::MUL_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007227 Node, false, Hi);
7228 break;
7229 case ISD::FDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007230 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7231 RTLIB::DIV_F64,
7232 RTLIB::DIV_F80,
7233 RTLIB::DIV_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007234 Node, false, Hi);
7235 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007236 case ISD::FP_EXTEND: {
Dale Johannesen4c14d512007-10-12 01:37:08 +00007237 if (VT == MVT::ppcf128) {
7238 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7239 Node->getOperand(0).getValueType()==MVT::f64);
7240 const uint64_t zero = 0;
7241 if (Node->getOperand(0).getValueType()==MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00007242 Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0));
Dale Johannesen4c14d512007-10-12 01:37:08 +00007243 else
7244 Hi = Node->getOperand(0);
7245 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7246 break;
7247 }
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007248 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7249 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7250 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007251 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007252 }
7253 case ISD::FP_ROUND: {
7254 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7255 VT);
7256 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7257 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007258 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007259 }
Evan Cheng5316b392008-09-09 23:02:14 +00007260 case ISD::FSQRT:
7261 case ISD::FSIN:
7262 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007263 case ISD::FLOG:
7264 case ISD::FLOG2:
7265 case ISD::FLOG10:
7266 case ISD::FEXP:
7267 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00007268 case ISD::FTRUNC:
7269 case ISD::FFLOOR:
7270 case ISD::FCEIL:
7271 case ISD::FRINT:
7272 case ISD::FNEARBYINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00007273 case ISD::FPOW:
7274 case ISD::FPOWI: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007275 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
7276 switch(Node->getOpcode()) {
7277 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00007278 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7279 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007280 break;
7281 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00007282 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7283 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007284 break;
7285 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00007286 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7287 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007288 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00007289 case ISD::FLOG:
7290 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7291 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7292 break;
7293 case ISD::FLOG2:
7294 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7295 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7296 break;
7297 case ISD::FLOG10:
7298 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7299 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7300 break;
7301 case ISD::FEXP:
7302 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7303 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7304 break;
7305 case ISD::FEXP2:
7306 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7307 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7308 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00007309 case ISD::FTRUNC:
7310 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7311 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7312 break;
7313 case ISD::FFLOOR:
7314 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7315 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7316 break;
7317 case ISD::FCEIL:
7318 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7319 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7320 break;
7321 case ISD::FRINT:
7322 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7323 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7324 break;
7325 case ISD::FNEARBYINT:
7326 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7327 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7328 break;
Evan Cheng5316b392008-09-09 23:02:14 +00007329 case ISD::FPOW:
7330 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7331 RTLIB::POW_PPCF128);
7332 break;
7333 case ISD::FPOWI:
7334 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7335 RTLIB::POWI_PPCF128);
7336 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007337 default: assert(0 && "Unreachable!");
7338 }
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007339 Lo = ExpandLibCall(LC, Node, false, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007340 break;
7341 }
7342 case ISD::FABS: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00007343 if (VT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007344 SDValue Tmp;
Dale Johannesen5707ef82007-10-12 19:02:17 +00007345 ExpandOp(Node->getOperand(0), Lo, Tmp);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007346 Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp);
Dale Johannesen5707ef82007-10-12 19:02:17 +00007347 // lo = hi==fabs(hi) ? lo : -lo;
Dale Johannesen82b5b722009-02-02 22:12:50 +00007348 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp,
7349 Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo),
Dale Johannesen5707ef82007-10-12 19:02:17 +00007350 DAG.getCondCode(ISD::SETEQ));
7351 break;
7352 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007353 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007354 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7355 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007356 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7357 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7358 Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007359 if (getTypeAction(NVT) == Expand)
7360 ExpandOp(Lo, Lo, Hi);
7361 break;
7362 }
7363 case ISD::FNEG: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00007364 if (VT == MVT::ppcf128) {
7365 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007366 Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo);
7367 Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi);
Dale Johannesen5707ef82007-10-12 19:02:17 +00007368 break;
7369 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007370 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007371 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7372 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007373 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7374 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7375 Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007376 if (getTypeAction(NVT) == Expand)
7377 ExpandOp(Lo, Lo, Hi);
7378 break;
7379 }
7380 case ISD::FCOPYSIGN: {
7381 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7382 if (getTypeAction(NVT) == Expand)
7383 ExpandOp(Lo, Lo, Hi);
7384 break;
7385 }
7386 case ISD::SINT_TO_FP:
7387 case ISD::UINT_TO_FP: {
7388 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands92c43912008-06-06 12:08:01 +00007389 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesen6a779c82008-03-18 17:28:38 +00007390
7391 // Promote the operand if needed. Do this before checking for
7392 // ppcf128 so conversions of i16 and i8 work.
7393 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007394 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesen6a779c82008-03-18 17:28:38 +00007395 Tmp = isSigned
Dale Johannesen82b5b722009-02-02 22:12:50 +00007396 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp,
Dale Johannesen6a779c82008-03-18 17:28:38 +00007397 DAG.getValueType(SrcVT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00007398 : DAG.getZeroExtendInReg(Tmp, dl, SrcVT);
Gabor Greif1c80d112008-08-28 21:40:38 +00007399 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesen6a779c82008-03-18 17:28:38 +00007400 SrcVT = Node->getOperand(0).getValueType();
7401 }
7402
Dan Gohmanec51f642008-03-10 23:03:31 +00007403 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohman84d00962008-02-25 21:39:34 +00007404 static const uint64_t zero = 0;
Dale Johannesen4c14d512007-10-12 01:37:08 +00007405 if (isSigned) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007406 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesen4c14d512007-10-12 01:37:08 +00007407 Node->getOperand(0)));
7408 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7409 } else {
Dan Gohman84d00962008-02-25 21:39:34 +00007410 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesen82b5b722009-02-02 22:12:50 +00007411 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesen4c14d512007-10-12 01:37:08 +00007412 Node->getOperand(0)));
7413 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007414 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007415 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen82b5b722009-02-02 22:12:50 +00007416 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl,
7417 MVT::ppcf128, Node->getOperand(0),
Dale Johannesen4c14d512007-10-12 01:37:08 +00007418 DAG.getConstant(0, MVT::i32),
Dale Johannesen82b5b722009-02-02 22:12:50 +00007419 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Dale Johannesen4c14d512007-10-12 01:37:08 +00007420 DAG.getConstantFP(
7421 APFloat(APInt(128, 2, TwoE32)),
7422 MVT::ppcf128)),
7423 Hi,
7424 DAG.getCondCode(ISD::SETLT)),
7425 Lo, Hi);
7426 }
7427 break;
7428 }
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007429 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7430 // si64->ppcf128 done by libcall, below
Dan Gohman84d00962008-02-25 21:39:34 +00007431 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen82b5b722009-02-02 22:12:50 +00007432 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128,
7433 Node->getOperand(0)), Lo, Hi);
7434 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007435 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
Dale Johannesen82b5b722009-02-02 22:12:50 +00007436 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128,
7437 Node->getOperand(0),
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007438 DAG.getConstant(0, MVT::i64),
Dale Johannesen82b5b722009-02-02 22:12:50 +00007439 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007440 DAG.getConstantFP(
7441 APFloat(APInt(128, 2, TwoE64)),
7442 MVT::ppcf128)),
7443 Hi,
7444 DAG.getCondCode(ISD::SETLT)),
7445 Lo, Hi);
7446 break;
7447 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007448
Dan Gohmanec51f642008-03-10 23:03:31 +00007449 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00007450 Node->getOperand(0), dl);
Evan Chenga8740032008-04-01 01:50:16 +00007451 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng4a2f6df2008-04-01 01:51:26 +00007452 // float to i32 etc. can be 'expanded' to a single node.
Evan Chenga8740032008-04-01 01:50:16 +00007453 ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007454 break;
7455 }
7456 }
7457
7458 // Make sure the resultant values have been legalized themselves, unless this
7459 // is a type that requires multi-step expansion.
7460 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7461 Lo = LegalizeOp(Lo);
Gabor Greif1c80d112008-08-28 21:40:38 +00007462 if (Hi.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007463 // Don't legalize the high part if it is expanded to a single node.
7464 Hi = LegalizeOp(Hi);
7465 }
7466
7467 // Remember in a map if the values will be reused later.
Dan Gohman55d19662008-07-07 17:46:23 +00007468 bool isNew =
7469 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007470 assert(isNew && "Value already expanded?!?");
Evan Chengcf576fd2008-11-24 07:09:49 +00007471 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007472}
7473
7474/// SplitVectorOp - Given an operand of vector type, break it down into
7475/// two smaller values, still of vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00007476void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7477 SDValue &Hi) {
Duncan Sands92c43912008-06-06 12:08:01 +00007478 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greif1c80d112008-08-28 21:40:38 +00007479 SDNode *Node = Op.getNode();
Dale Johannesen352c47e2009-02-02 20:41:04 +00007480 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00007481 unsigned NumElements = Op.getValueType().getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007482 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman4a365ad2007-11-15 21:15:26 +00007483
Duncan Sands92c43912008-06-06 12:08:01 +00007484 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman4a365ad2007-11-15 21:15:26 +00007485
7486 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7487 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7488
Duncan Sands92c43912008-06-06 12:08:01 +00007489 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7490 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman4a365ad2007-11-15 21:15:26 +00007491
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007492 // See if we already split it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007493 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007494 = SplitNodes.find(Op);
7495 if (I != SplitNodes.end()) {
7496 Lo = I->second.first;
7497 Hi = I->second.second;
7498 return;
7499 }
7500
7501 switch (Node->getOpcode()) {
7502 default:
7503#ifndef NDEBUG
7504 Node->dump(&DAG);
7505#endif
7506 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattner3dec33a2007-11-19 20:21:32 +00007507 case ISD::UNDEF:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007508 Lo = DAG.getNode(ISD::UNDEF, dl, NewVT_Lo);
7509 Hi = DAG.getNode(ISD::UNDEF, dl, NewVT_Hi);
Chris Lattner3dec33a2007-11-19 20:21:32 +00007510 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007511 case ISD::BUILD_PAIR:
7512 Lo = Node->getOperand(0);
7513 Hi = Node->getOperand(1);
7514 break;
Dan Gohmanb3228dc2007-09-28 23:53:40 +00007515 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007516 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7517 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007518 unsigned Index = Idx->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007519 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007520 if (Index < NewNumElts_Lo)
Dale Johannesend8fd5342009-02-02 22:49:46 +00007521 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Lo, Lo, ScalarOp,
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007522 DAG.getIntPtrConstant(Index));
7523 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00007524 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Hi, Hi, ScalarOp,
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007525 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7526 break;
7527 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007528 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007529 Node->getOperand(1),
Dale Johannesen352c47e2009-02-02 20:41:04 +00007530 Node->getOperand(2), dl);
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007531 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohmanb3228dc2007-09-28 23:53:40 +00007532 break;
7533 }
Chris Lattner587c46d2007-11-19 21:16:54 +00007534 case ISD::VECTOR_SHUFFLE: {
7535 // Build the low part.
Dan Gohman8181bd12008-07-27 21:46:04 +00007536 SDValue Mask = Node->getOperand(2);
7537 SmallVector<SDValue, 8> Ops;
Duncan Sands92c43912008-06-06 12:08:01 +00007538 MVT PtrVT = TLI.getPointerTy();
Chris Lattner587c46d2007-11-19 21:16:54 +00007539
7540 // Insert all of the elements from the input that are needed. We use
7541 // buildvector of extractelement here because the input vectors will have
7542 // to be legalized, so this makes the code simpler.
7543 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007544 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007545 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesend8fd5342009-02-02 22:49:46 +00007546 Ops.push_back(DAG.getNode(ISD::UNDEF, dl, NewEltVT));
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007547 continue;
7548 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007549 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007550 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00007551 if (Idx >= NumElements) {
7552 InVec = Node->getOperand(1);
7553 Idx -= NumElements;
7554 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00007555 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner587c46d2007-11-19 21:16:54 +00007556 DAG.getConstant(Idx, PtrVT)));
7557 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00007558 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &Ops[0], Ops.size());
Chris Lattner587c46d2007-11-19 21:16:54 +00007559 Ops.clear();
7560
7561 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007562 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007563 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesend8fd5342009-02-02 22:49:46 +00007564 Ops.push_back(DAG.getNode(ISD::UNDEF, dl, NewEltVT));
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007565 continue;
7566 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007567 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007568 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00007569 if (Idx >= NumElements) {
7570 InVec = Node->getOperand(1);
7571 Idx -= NumElements;
7572 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00007573 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner587c46d2007-11-19 21:16:54 +00007574 DAG.getConstant(Idx, PtrVT)));
7575 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00007576 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner587c46d2007-11-19 21:16:54 +00007577 break;
7578 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007579 case ISD::BUILD_VECTOR: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007580 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman4a365ad2007-11-15 21:15:26 +00007581 Node->op_begin()+NewNumElts_Lo);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007582 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007583
Dan Gohman8181bd12008-07-27 21:46:04 +00007584 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007585 Node->op_end());
Dale Johannesend8fd5342009-02-02 22:49:46 +00007586 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007587 break;
7588 }
7589 case ISD::CONCAT_VECTORS: {
Nate Begeman4a365ad2007-11-15 21:15:26 +00007590 // FIXME: Handle non-power-of-two vectors?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007591 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7592 if (NewNumSubvectors == 1) {
7593 Lo = Node->getOperand(0);
7594 Hi = Node->getOperand(1);
7595 } else {
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007596 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7597 Node->op_begin()+NewNumSubvectors);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007598 Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Lo,
7599 &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007600
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007601 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007602 Node->op_end());
Dale Johannesend8fd5342009-02-02 22:49:46 +00007603 Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Hi,
7604 &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007605 }
7606 break;
7607 }
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007608 case ISD::EXTRACT_SUBVECTOR: {
7609 SDValue Vec = Op.getOperand(0);
7610 SDValue Idx = Op.getOperand(1);
7611 MVT IdxVT = Idx.getValueType();
7612
Dale Johannesend8fd5342009-02-02 22:49:46 +00007613 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Lo, Vec, Idx);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007614 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7615 if (CIdx) {
Dale Johannesend8fd5342009-02-02 22:49:46 +00007616 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec,
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007617 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7618 IdxVT));
7619 } else {
Dale Johannesend8fd5342009-02-02 22:49:46 +00007620 Idx = DAG.getNode(ISD::ADD, dl, IdxVT, Idx,
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007621 DAG.getConstant(NewNumElts_Lo, IdxVT));
Dale Johannesend8fd5342009-02-02 22:49:46 +00007622 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec, Idx);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007623 }
7624 break;
7625 }
Dan Gohmand5d4c872007-10-17 14:48:28 +00007626 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007627 SDValue Cond = Node->getOperand(0);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007628
Dan Gohman8181bd12008-07-27 21:46:04 +00007629 SDValue LL, LH, RL, RH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00007630 SplitVectorOp(Node->getOperand(1), LL, LH);
7631 SplitVectorOp(Node->getOperand(2), RL, RH);
7632
Duncan Sands92c43912008-06-06 12:08:01 +00007633 if (Cond.getValueType().isVector()) {
Dan Gohmand5d4c872007-10-17 14:48:28 +00007634 // Handle a vector merge.
Dan Gohman8181bd12008-07-27 21:46:04 +00007635 SDValue CL, CH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00007636 SplitVectorOp(Cond, CL, CH);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007637 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, CL, LL, RL);
7638 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, CH, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007639 } else {
7640 // Handle a simple select with vector operands.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007641 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, Cond, LL, RL);
7642 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, Cond, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007643 }
7644 break;
7645 }
Chris Lattnerc7471452008-06-30 02:43:01 +00007646 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007647 SDValue CondLHS = Node->getOperand(0);
7648 SDValue CondRHS = Node->getOperand(1);
7649 SDValue CondCode = Node->getOperand(4);
Chris Lattnerc7471452008-06-30 02:43:01 +00007650
Dan Gohman8181bd12008-07-27 21:46:04 +00007651 SDValue LL, LH, RL, RH;
Chris Lattnerc7471452008-06-30 02:43:01 +00007652 SplitVectorOp(Node->getOperand(2), LL, LH);
7653 SplitVectorOp(Node->getOperand(3), RL, RH);
7654
7655 // Handle a simple select with vector operands.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007656 Lo = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Lo, CondLHS, CondRHS,
Chris Lattnerc7471452008-06-30 02:43:01 +00007657 LL, RL, CondCode);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007658 Hi = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Hi, CondLHS, CondRHS,
Chris Lattnerc7471452008-06-30 02:43:01 +00007659 LH, RH, CondCode);
7660 break;
7661 }
Nate Begeman9a1ce152008-05-12 19:40:03 +00007662 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007663 SDValue LL, LH, RL, RH;
Nate Begeman9a1ce152008-05-12 19:40:03 +00007664 SplitVectorOp(Node->getOperand(0), LL, LH);
7665 SplitVectorOp(Node->getOperand(1), RL, RH);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007666 Lo = DAG.getNode(ISD::VSETCC, dl, NewVT_Lo, LL, RL, Node->getOperand(2));
7667 Hi = DAG.getNode(ISD::VSETCC, dl, NewVT_Hi, LH, RH, Node->getOperand(2));
Nate Begeman9a1ce152008-05-12 19:40:03 +00007668 break;
7669 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007670 case ISD::ADD:
7671 case ISD::SUB:
7672 case ISD::MUL:
7673 case ISD::FADD:
7674 case ISD::FSUB:
7675 case ISD::FMUL:
7676 case ISD::SDIV:
7677 case ISD::UDIV:
7678 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007679 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007680 case ISD::AND:
7681 case ISD::OR:
Dan Gohman9e1b7ee2007-11-19 15:15:03 +00007682 case ISD::XOR:
7683 case ISD::UREM:
7684 case ISD::SREM:
Mon P Wang26342922008-12-18 20:03:17 +00007685 case ISD::FREM:
7686 case ISD::SHL:
7687 case ISD::SRA:
7688 case ISD::SRL: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007689 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007690 SplitVectorOp(Node->getOperand(0), LL, LH);
7691 SplitVectorOp(Node->getOperand(1), RL, RH);
7692
Dale Johannesend8fd5342009-02-02 22:49:46 +00007693 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, LL, RL);
7694 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007695 break;
7696 }
Dan Gohman29c3cef2008-08-14 20:04:46 +00007697 case ISD::FP_ROUND:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007698 case ISD::FPOWI: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007699 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007700 SplitVectorOp(Node->getOperand(0), L, H);
7701
Dale Johannesend8fd5342009-02-02 22:49:46 +00007702 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L, Node->getOperand(1));
7703 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H, Node->getOperand(1));
Dan Gohman6d05cac2007-10-11 23:57:53 +00007704 break;
7705 }
7706 case ISD::CTTZ:
7707 case ISD::CTLZ:
7708 case ISD::CTPOP:
7709 case ISD::FNEG:
7710 case ISD::FABS:
7711 case ISD::FSQRT:
7712 case ISD::FSIN:
Nate Begeman78246ca2007-11-17 03:58:34 +00007713 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007714 case ISD::FLOG:
7715 case ISD::FLOG2:
7716 case ISD::FLOG10:
7717 case ISD::FEXP:
7718 case ISD::FEXP2:
Nate Begeman78246ca2007-11-17 03:58:34 +00007719 case ISD::FP_TO_SINT:
7720 case ISD::FP_TO_UINT:
7721 case ISD::SINT_TO_FP:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007722 case ISD::UINT_TO_FP:
7723 case ISD::TRUNCATE:
7724 case ISD::ANY_EXTEND:
7725 case ISD::SIGN_EXTEND:
7726 case ISD::ZERO_EXTEND:
7727 case ISD::FP_EXTEND: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007728 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007729 SplitVectorOp(Node->getOperand(0), L, H);
7730
Dale Johannesend8fd5342009-02-02 22:49:46 +00007731 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L);
7732 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H);
Dan Gohman6d05cac2007-10-11 23:57:53 +00007733 break;
7734 }
Mon P Wang73d31542008-11-10 20:54:11 +00007735 case ISD::CONVERT_RNDSAT: {
7736 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7737 SDValue L, H;
7738 SplitVectorOp(Node->getOperand(0), L, H);
7739 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7740 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7741 SDValue STyOpL = DAG.getValueType(L.getValueType());
7742 SDValue STyOpH = DAG.getValueType(H.getValueType());
7743
7744 SDValue RndOp = Node->getOperand(3);
7745 SDValue SatOp = Node->getOperand(4);
7746
7747 Lo = DAG.getConvertRndSat(NewVT_Lo, L, DTyOpL, STyOpL,
7748 RndOp, SatOp, CvtCode);
7749 Hi = DAG.getConvertRndSat(NewVT_Hi, H, DTyOpH, STyOpH,
7750 RndOp, SatOp, CvtCode);
7751 break;
7752 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007753 case ISD::LOAD: {
7754 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007755 SDValue Ch = LD->getChain();
7756 SDValue Ptr = LD->getBasePtr();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007757 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007758 const Value *SV = LD->getSrcValue();
7759 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007760 MVT MemoryVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007761 unsigned Alignment = LD->getAlignment();
7762 bool isVolatile = LD->isVolatile();
7763
Dan Gohman29c3cef2008-08-14 20:04:46 +00007764 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesend8fd5342009-02-02 22:49:46 +00007765 SDValue Offset = DAG.getNode(ISD::UNDEF, dl, Ptr.getValueType());
Dan Gohman29c3cef2008-08-14 20:04:46 +00007766
7767 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7768 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7769 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7770
Dale Johannesend8fd5342009-02-02 22:49:46 +00007771 Lo = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007772 NewVT_Lo, Ch, Ptr, Offset,
7773 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7774 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dale Johannesend8fd5342009-02-02 22:49:46 +00007775 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00007776 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007777 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00007778 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007779 Hi = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007780 NewVT_Hi, Ch, Ptr, Offset,
7781 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007782
7783 // Build a factor node to remember that this load is independent of the
7784 // other one.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007785 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007786 Hi.getValue(1));
7787
7788 // Remember that we legalized the chain.
7789 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
7790 break;
7791 }
7792 case ISD::BIT_CONVERT: {
7793 // We know the result is a vector. The input may be either a vector or a
7794 // scalar value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007795 SDValue InOp = Node->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007796 if (!InOp.getValueType().isVector() ||
7797 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007798 // The input is a scalar or single-element vector.
7799 // Lower to a store/load so that it can be split.
7800 // FIXME: this could be improved probably.
Mon P Wang36b59ac2008-07-15 05:28:34 +00007801 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
7802 Op.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00007803 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greif1c80d112008-08-28 21:40:38 +00007804 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007805
Dale Johannesend8fd5342009-02-02 22:49:46 +00007806 SDValue St = DAG.getStore(DAG.getEntryNode(), dl,
Dan Gohman12a9c082008-02-06 22:27:42 +00007807 InOp, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007808 PseudoSourceValue::getFixedStack(FI), 0);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007809 InOp = DAG.getLoad(Op.getValueType(), dl, St, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007810 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007811 }
7812 // Split the vector and convert each of the pieces now.
7813 SplitVectorOp(InOp, Lo, Hi);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007814 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Lo, Lo);
7815 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Hi, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007816 break;
7817 }
7818 }
7819
7820 // Remember in a map if the values will be reused later.
7821 bool isNew =
7822 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
7823 assert(isNew && "Value already split?!?");
Evan Chengcf576fd2008-11-24 07:09:49 +00007824 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007825}
7826
7827
7828/// ScalarizeVectorOp - Given an operand of single-element vector type
7829/// (e.g. v1f32), convert it into the equivalent operation that returns a
7830/// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007831SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00007832 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greif1c80d112008-08-28 21:40:38 +00007833 SDNode *Node = Op.getNode();
Dale Johannesend8fd5342009-02-02 22:49:46 +00007834 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00007835 MVT NewVT = Op.getValueType().getVectorElementType();
7836 assert(Op.getValueType().getVectorNumElements() == 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007837
7838 // See if we already scalarized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007839 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007840 if (I != ScalarizedNodes.end()) return I->second;
7841
Dan Gohman8181bd12008-07-27 21:46:04 +00007842 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007843 switch (Node->getOpcode()) {
7844 default:
7845#ifndef NDEBUG
7846 Node->dump(&DAG); cerr << "\n";
7847#endif
7848 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7849 case ISD::ADD:
7850 case ISD::FADD:
7851 case ISD::SUB:
7852 case ISD::FSUB:
7853 case ISD::MUL:
7854 case ISD::FMUL:
7855 case ISD::SDIV:
7856 case ISD::UDIV:
7857 case ISD::FDIV:
7858 case ISD::SREM:
7859 case ISD::UREM:
7860 case ISD::FREM:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007861 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007862 case ISD::AND:
7863 case ISD::OR:
7864 case ISD::XOR:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007865 Result = DAG.getNode(Node->getOpcode(), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007866 NewVT,
7867 ScalarizeVectorOp(Node->getOperand(0)),
7868 ScalarizeVectorOp(Node->getOperand(1)));
7869 break;
7870 case ISD::FNEG:
7871 case ISD::FABS:
7872 case ISD::FSQRT:
7873 case ISD::FSIN:
7874 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007875 case ISD::FLOG:
7876 case ISD::FLOG2:
7877 case ISD::FLOG10:
7878 case ISD::FEXP:
7879 case ISD::FEXP2:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007880 case ISD::FP_TO_SINT:
7881 case ISD::FP_TO_UINT:
7882 case ISD::SINT_TO_FP:
7883 case ISD::UINT_TO_FP:
7884 case ISD::SIGN_EXTEND:
7885 case ISD::ZERO_EXTEND:
7886 case ISD::ANY_EXTEND:
7887 case ISD::TRUNCATE:
7888 case ISD::FP_EXTEND:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007889 Result = DAG.getNode(Node->getOpcode(), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007890 NewVT,
7891 ScalarizeVectorOp(Node->getOperand(0)));
7892 break;
Mon P Wang73d31542008-11-10 20:54:11 +00007893 case ISD::CONVERT_RNDSAT: {
7894 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
7895 Result = DAG.getConvertRndSat(NewVT, Op0,
7896 DAG.getValueType(NewVT),
7897 DAG.getValueType(Op0.getValueType()),
7898 Node->getOperand(3),
7899 Node->getOperand(4),
7900 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7901 break;
7902 }
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007903 case ISD::FPOWI:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007904 case ISD::FP_ROUND:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007905 Result = DAG.getNode(Node->getOpcode(), dl,
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007906 NewVT,
7907 ScalarizeVectorOp(Node->getOperand(0)),
7908 Node->getOperand(1));
7909 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007910 case ISD::LOAD: {
7911 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007912 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7913 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman29c3cef2008-08-14 20:04:46 +00007914 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007915 const Value *SV = LD->getSrcValue();
7916 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007917 MVT MemoryVT = LD->getMemoryVT();
7918 unsigned Alignment = LD->getAlignment();
7919 bool isVolatile = LD->isVolatile();
7920
7921 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesend8fd5342009-02-02 22:49:46 +00007922 SDValue Offset = DAG.getNode(ISD::UNDEF, dl, Ptr.getValueType());
Dan Gohman29c3cef2008-08-14 20:04:46 +00007923
Dale Johannesend8fd5342009-02-02 22:49:46 +00007924 Result = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007925 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7926 MemoryVT.getVectorElementType(),
7927 isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007928
7929 // Remember that we legalized the chain.
7930 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7931 break;
7932 }
7933 case ISD::BUILD_VECTOR:
7934 Result = Node->getOperand(0);
7935 break;
7936 case ISD::INSERT_VECTOR_ELT:
7937 // Returning the inserted scalar element.
7938 Result = Node->getOperand(1);
7939 break;
7940 case ISD::CONCAT_VECTORS:
7941 assert(Node->getOperand(0).getValueType() == NewVT &&
7942 "Concat of non-legal vectors not yet supported!");
7943 Result = Node->getOperand(0);
7944 break;
7945 case ISD::VECTOR_SHUFFLE: {
7946 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007947 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007948 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007949 Result = ScalarizeVectorOp(Node->getOperand(1));
7950 else
7951 Result = ScalarizeVectorOp(Node->getOperand(0));
7952 break;
7953 }
7954 case ISD::EXTRACT_SUBVECTOR:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007955 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT,
7956 Node->getOperand(0), Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007957 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007958 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007959 SDValue Op0 = Op.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007960 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng2cc16e72008-05-16 17:19:05 +00007961 Op0 = ScalarizeVectorOp(Op0);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007962 Result = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007963 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007964 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007965 case ISD::SELECT:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007966 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Op.getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007967 ScalarizeVectorOp(Op.getOperand(1)),
7968 ScalarizeVectorOp(Op.getOperand(2)));
7969 break;
Chris Lattnerc7471452008-06-30 02:43:01 +00007970 case ISD::SELECT_CC:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007971 Result = DAG.getNode(ISD::SELECT_CC, dl, NewVT, Node->getOperand(0),
Chris Lattnerc7471452008-06-30 02:43:01 +00007972 Node->getOperand(1),
7973 ScalarizeVectorOp(Op.getOperand(2)),
7974 ScalarizeVectorOp(Op.getOperand(3)),
7975 Node->getOperand(4));
7976 break;
Nate Begeman78ca4f92008-05-12 23:09:43 +00007977 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007978 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7979 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Dale Johannesend8fd5342009-02-02 22:49:46 +00007980 Result = DAG.getNode(ISD::SETCC, dl,
7981 TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00007982 Op0, Op1, Op.getOperand(2));
Dale Johannesend8fd5342009-02-02 22:49:46 +00007983 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Result,
Nate Begeman78ca4f92008-05-12 23:09:43 +00007984 DAG.getConstant(-1ULL, NewVT),
7985 DAG.getConstant(0ULL, NewVT));
7986 break;
7987 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007988 }
7989
7990 if (TLI.isTypeLegal(NewVT))
7991 Result = LegalizeOp(Result);
7992 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7993 assert(isNew && "Value already scalarized?");
Evan Chengcf576fd2008-11-24 07:09:49 +00007994 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007995 return Result;
7996}
7997
7998
Mon P Wang1448aad2008-10-30 08:01:45 +00007999SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
8000 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
8001 if (I != WidenNodes.end()) return I->second;
8002
8003 MVT VT = Op.getValueType();
8004 assert(VT.isVector() && "Cannot widen non-vector type!");
8005
8006 SDValue Result;
8007 SDNode *Node = Op.getNode();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008008 DebugLoc dl = Node->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008009 MVT EVT = VT.getVectorElementType();
8010
8011 unsigned NumElts = VT.getVectorNumElements();
8012 unsigned NewNumElts = WidenVT.getVectorNumElements();
8013 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
8014 assert(NewNumElts < 17);
8015
8016 // When widen is called, it is assumed that it is more efficient to use a
8017 // wide type. The default action is to widen to operation to a wider legal
8018 // vector type and then do the operation if it is legal by calling LegalizeOp
8019 // again. If there is no vector equivalent, we will unroll the operation, do
8020 // it, and rebuild the vector. If most of the operations are vectorizible to
8021 // the legal type, the resulting code will be more efficient. If this is not
8022 // the case, the resulting code will preform badly as we end up generating
8023 // code to pack/unpack the results. It is the function that calls widen
Mon P Wanga5a239f2008-11-06 05:31:54 +00008024 // that is responsible for seeing this doesn't happen.
Mon P Wang1448aad2008-10-30 08:01:45 +00008025 switch (Node->getOpcode()) {
8026 default:
8027#ifndef NDEBUG
8028 Node->dump(&DAG);
8029#endif
8030 assert(0 && "Unexpected operation in WidenVectorOp!");
8031 break;
8032 case ISD::CopyFromReg:
Mon P Wang257e1c72008-11-15 06:05:52 +00008033 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang1448aad2008-10-30 08:01:45 +00008034 case ISD::Constant:
8035 case ISD::ConstantFP:
8036 // To build a vector of these elements, clients should call BuildVector
8037 // and with each element instead of creating a node with a vector type
8038 assert(0 && "Unexpected operation in WidenVectorOp!");
8039 case ISD::VAARG:
8040 // Variable Arguments with vector types doesn't make any sense to me
8041 assert(0 && "Unexpected operation in WidenVectorOp!");
8042 break;
Mon P Wang257e1c72008-11-15 06:05:52 +00008043 case ISD::UNDEF:
Dale Johannesend8fd5342009-02-02 22:49:46 +00008044 Result = DAG.getNode(ISD::UNDEF, dl, WidenVT);
Mon P Wang257e1c72008-11-15 06:05:52 +00008045 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00008046 case ISD::BUILD_VECTOR: {
8047 // Build a vector with undefined for the new nodes
8048 SDValueVector NewOps(Node->op_begin(), Node->op_end());
8049 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesend8fd5342009-02-02 22:49:46 +00008050 NewOps.push_back(DAG.getNode(ISD::UNDEF, dl, EVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008051 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00008052 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT,
8053 &NewOps[0], NewOps.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008054 break;
8055 }
8056 case ISD::INSERT_VECTOR_ELT: {
8057 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008058 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, WidenVT, Tmp1,
Mon P Wang1448aad2008-10-30 08:01:45 +00008059 Node->getOperand(1), Node->getOperand(2));
8060 break;
8061 }
8062 case ISD::VECTOR_SHUFFLE: {
8063 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8064 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8065 // VECTOR_SHUFFLE 3rd operand must be a constant build vector that is
8066 // used as permutation array. We build the vector here instead of widening
8067 // because we don't want to legalize and have it turned to something else.
8068 SDValue PermOp = Node->getOperand(2);
8069 SDValueVector NewOps;
8070 MVT PVT = PermOp.getValueType().getVectorElementType();
8071 for (unsigned i = 0; i < NumElts; ++i) {
8072 if (PermOp.getOperand(i).getOpcode() == ISD::UNDEF) {
8073 NewOps.push_back(PermOp.getOperand(i));
8074 } else {
8075 unsigned Idx =
Mon P Wangec428ad2008-12-13 08:15:14 +00008076 cast<ConstantSDNode>(PermOp.getOperand(i))->getZExtValue();
Mon P Wang1448aad2008-10-30 08:01:45 +00008077 if (Idx < NumElts) {
8078 NewOps.push_back(PermOp.getOperand(i));
8079 }
8080 else {
8081 NewOps.push_back(DAG.getConstant(Idx + NewNumElts - NumElts,
8082 PermOp.getOperand(i).getValueType()));
8083 }
8084 }
8085 }
8086 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesend8fd5342009-02-02 22:49:46 +00008087 NewOps.push_back(DAG.getNode(ISD::UNDEF, dl, PVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008088 }
8089
Dale Johannesend8fd5342009-02-02 22:49:46 +00008090 SDValue Tmp3 = DAG.getNode(ISD::BUILD_VECTOR, dl,
Mon P Wang1448aad2008-10-30 08:01:45 +00008091 MVT::getVectorVT(PVT, NewOps.size()),
8092 &NewOps[0], NewOps.size());
8093
Dale Johannesend8fd5342009-02-02 22:49:46 +00008094 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, WidenVT, Tmp1, Tmp2, Tmp3);
Mon P Wang1448aad2008-10-30 08:01:45 +00008095 break;
8096 }
8097 case ISD::LOAD: {
8098 // If the load widen returns true, we can use a single load for the
8099 // vector. Otherwise, it is returning a token factor for multiple
8100 // loads.
8101 SDValue TFOp;
8102 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8103 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8104 else
8105 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8106 break;
8107 }
8108
8109 case ISD::BIT_CONVERT: {
8110 SDValue Tmp1 = Node->getOperand(0);
8111 // Converts between two different types so we need to determine
8112 // the correct widen type for the input operand.
Mon P Wang26342922008-12-18 20:03:17 +00008113 MVT InVT = Tmp1.getValueType();
8114 unsigned WidenSize = WidenVT.getSizeInBits();
8115 if (InVT.isVector()) {
8116 MVT InEltVT = InVT.getVectorElementType();
8117 unsigned InEltSize = InEltVT.getSizeInBits();
8118 assert(WidenSize % InEltSize == 0 &&
8119 "can not widen bit convert that are not multiple of element type");
8120 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8121 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8122 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
Dale Johannesend8fd5342009-02-02 22:49:46 +00008123 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Tmp1);
Mon P Wang26342922008-12-18 20:03:17 +00008124 } else {
8125 // If the result size is a multiple of the input size, widen the input
8126 // and then convert.
8127 unsigned InSize = InVT.getSizeInBits();
8128 assert(WidenSize % InSize == 0 &&
8129 "can not widen bit convert that are not multiple of element type");
8130 unsigned NewNumElts = WidenSize / InSize;
8131 SmallVector<SDValue, 16> Ops(NewNumElts);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008132 SDValue UndefVal = DAG.getNode(ISD::UNDEF, dl, InVT);
Mon P Wang26342922008-12-18 20:03:17 +00008133 Ops[0] = Tmp1;
8134 for (unsigned i = 1; i < NewNumElts; ++i)
8135 Ops[i] = UndefVal;
Mon P Wang1448aad2008-10-30 08:01:45 +00008136
Mon P Wang26342922008-12-18 20:03:17 +00008137 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008138 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, NewInVT, &Ops[0], NewNumElts);
8139 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Result);
Mon P Wang1448aad2008-10-30 08:01:45 +00008140 }
8141 break;
8142 }
8143
8144 case ISD::SINT_TO_FP:
8145 case ISD::UINT_TO_FP:
8146 case ISD::FP_TO_SINT:
Mon P Wang26342922008-12-18 20:03:17 +00008147 case ISD::FP_TO_UINT:
8148 case ISD::FP_ROUND: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008149 SDValue Tmp1 = Node->getOperand(0);
8150 // Converts between two different types so we need to determine
8151 // the correct widen type for the input operand.
8152 MVT TVT = Tmp1.getValueType();
8153 assert(TVT.isVector() && "can not widen non vector type");
8154 MVT TEVT = TVT.getVectorElementType();
8155 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8156 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8157 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008158 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang1448aad2008-10-30 08:01:45 +00008159 break;
8160 }
8161
8162 case ISD::FP_EXTEND:
8163 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8164 case ISD::TRUNCATE:
8165 case ISD::SIGN_EXTEND:
8166 case ISD::ZERO_EXTEND:
8167 case ISD::ANY_EXTEND:
Mon P Wang1448aad2008-10-30 08:01:45 +00008168 case ISD::SIGN_EXTEND_INREG:
8169 case ISD::FABS:
8170 case ISD::FNEG:
8171 case ISD::FSQRT:
8172 case ISD::FSIN:
Mon P Wang257e1c72008-11-15 06:05:52 +00008173 case ISD::FCOS:
8174 case ISD::CTPOP:
8175 case ISD::CTTZ:
8176 case ISD::CTLZ: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008177 // Unary op widening
Mon P Wang26342922008-12-18 20:03:17 +00008178 SDValue Tmp1;
Mon P Wang1448aad2008-10-30 08:01:45 +00008179 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8180 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008181 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang1448aad2008-10-30 08:01:45 +00008182 break;
8183 }
Mon P Wang73d31542008-11-10 20:54:11 +00008184 case ISD::CONVERT_RNDSAT: {
8185 SDValue RndOp = Node->getOperand(3);
8186 SDValue SatOp = Node->getOperand(4);
Mon P Wang73d31542008-11-10 20:54:11 +00008187 SDValue SrcOp = Node->getOperand(0);
8188
8189 // Converts between two different types so we need to determine
8190 // the correct widen type for the input operand.
8191 MVT SVT = SrcOp.getValueType();
8192 assert(SVT.isVector() && "can not widen non vector type");
8193 MVT SEVT = SVT.getVectorElementType();
8194 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8195
8196 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8197 assert(SrcOp.getValueType() == WidenVT);
8198 SDValue DTyOp = DAG.getValueType(WidenVT);
8199 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8200 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8201
8202 Result = DAG.getConvertRndSat(WidenVT, SrcOp, DTyOp, STyOp,
8203 RndOp, SatOp, CvtCode);
Mon P Wang73d31542008-11-10 20:54:11 +00008204 break;
8205 }
Mon P Wang1448aad2008-10-30 08:01:45 +00008206 case ISD::FPOW:
8207 case ISD::FPOWI:
8208 case ISD::ADD:
8209 case ISD::SUB:
8210 case ISD::MUL:
8211 case ISD::MULHS:
8212 case ISD::MULHU:
8213 case ISD::AND:
8214 case ISD::OR:
8215 case ISD::XOR:
8216 case ISD::FADD:
8217 case ISD::FSUB:
8218 case ISD::FMUL:
8219 case ISD::SDIV:
8220 case ISD::SREM:
8221 case ISD::FDIV:
8222 case ISD::FREM:
8223 case ISD::FCOPYSIGN:
8224 case ISD::UDIV:
8225 case ISD::UREM:
8226 case ISD::BSWAP: {
8227 // Binary op widening
Mon P Wang1448aad2008-10-30 08:01:45 +00008228 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8229 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8230 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008231 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2);
Mon P Wang1448aad2008-10-30 08:01:45 +00008232 break;
8233 }
8234
8235 case ISD::SHL:
8236 case ISD::SRA:
8237 case ISD::SRL: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008238 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8239 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangd5638262008-12-02 07:35:08 +00008240 SDValue ShOp = Node->getOperand(1);
8241 MVT ShVT = ShOp.getValueType();
8242 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8243 WidenVT.getVectorNumElements());
8244 ShOp = WidenVectorOp(ShOp, NewShVT);
8245 assert(ShOp.getValueType() == NewShVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008246 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, ShOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008247 break;
8248 }
Mon P Wangd5638262008-12-02 07:35:08 +00008249
Mon P Wang1448aad2008-10-30 08:01:45 +00008250 case ISD::EXTRACT_VECTOR_ELT: {
8251 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8252 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008253 Result = DAG.getNode(Node->getOpcode(), dl, EVT, Tmp1, Node->getOperand(1));
Mon P Wang1448aad2008-10-30 08:01:45 +00008254 break;
8255 }
8256 case ISD::CONCAT_VECTORS: {
8257 // We concurrently support only widen on a multiple of the incoming vector.
8258 // We could widen on a multiple of the incoming operand if necessary.
8259 unsigned NumConcat = NewNumElts / NumElts;
8260 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Dale Johannesend8fd5342009-02-02 22:49:46 +00008261 SDValue UndefVal = DAG.getNode(ISD::UNDEF, dl, VT);
Mon P Wang1448aad2008-10-30 08:01:45 +00008262 SmallVector<SDValue, 8> MOps;
8263 MOps.push_back(Op);
8264 for (unsigned i = 1; i != NumConcat; ++i) {
8265 MOps.push_back(UndefVal);
8266 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00008267 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang1448aad2008-10-30 08:01:45 +00008268 &MOps[0], MOps.size()));
8269 break;
8270 }
8271 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang257e1c72008-11-15 06:05:52 +00008272 SDValue Tmp1 = Node->getOperand(0);
8273 SDValue Idx = Node->getOperand(1);
8274 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8275 if (CIdx && CIdx->getZExtValue() == 0) {
8276 // Since we are access the start of the vector, the incoming
8277 // vector type might be the proper.
8278 MVT Tmp1VT = Tmp1.getValueType();
8279 if (Tmp1VT == WidenVT)
8280 return Tmp1;
8281 else {
8282 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8283 if (Tmp1VTNumElts < NewNumElts)
8284 Result = WidenVectorOp(Tmp1, WidenVT);
8285 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00008286 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, Tmp1, Idx);
Mon P Wang257e1c72008-11-15 06:05:52 +00008287 }
8288 } else if (NewNumElts % NumElts == 0) {
8289 // Widen the extracted subvector.
8290 unsigned NumConcat = NewNumElts / NumElts;
Dale Johannesend8fd5342009-02-02 22:49:46 +00008291 SDValue UndefVal = DAG.getNode(ISD::UNDEF, dl, VT);
Mon P Wang257e1c72008-11-15 06:05:52 +00008292 SmallVector<SDValue, 8> MOps;
8293 MOps.push_back(Op);
8294 for (unsigned i = 1; i != NumConcat; ++i) {
8295 MOps.push_back(UndefVal);
8296 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00008297 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang257e1c72008-11-15 06:05:52 +00008298 &MOps[0], MOps.size()));
8299 } else {
8300 assert(0 && "can not widen extract subvector");
8301 // This could be implemented using insert and build vector but I would
8302 // like to see when this happens.
8303 }
Mon P Wang1448aad2008-10-30 08:01:45 +00008304 break;
8305 }
8306
8307 case ISD::SELECT: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008308 // Determine new condition widen type and widen
8309 SDValue Cond1 = Node->getOperand(0);
8310 MVT CondVT = Cond1.getValueType();
8311 assert(CondVT.isVector() && "can not widen non vector type");
8312 MVT CondEVT = CondVT.getVectorElementType();
8313 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8314 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8315 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8316
8317 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8318 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8319 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008320 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang1448aad2008-10-30 08:01:45 +00008321 break;
8322 }
8323
8324 case ISD::SELECT_CC: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008325 // Determine new condition widen type and widen
8326 SDValue Cond1 = Node->getOperand(0);
8327 SDValue Cond2 = Node->getOperand(1);
8328 MVT CondVT = Cond1.getValueType();
8329 assert(CondVT.isVector() && "can not widen non vector type");
8330 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8331 MVT CondEVT = CondVT.getVectorElementType();
8332 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8333 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8334 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8335 assert(Cond1.getValueType() == CondWidenVT &&
8336 Cond2.getValueType() == CondWidenVT && "condition not widen");
8337
8338 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8339 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8340 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8341 "operands not widen");
Dale Johannesend8fd5342009-02-02 22:49:46 +00008342 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Cond2, Tmp1,
Mon P Wang1448aad2008-10-30 08:01:45 +00008343 Tmp2, Node->getOperand(4));
Mon P Wang1448aad2008-10-30 08:01:45 +00008344 break;
Mon P Wang42ac14e2008-10-30 18:21:52 +00008345 }
8346 case ISD::VSETCC: {
8347 // Determine widen for the operand
8348 SDValue Tmp1 = Node->getOperand(0);
8349 MVT TmpVT = Tmp1.getValueType();
8350 assert(TmpVT.isVector() && "can not widen non vector type");
8351 MVT TmpEVT = TmpVT.getVectorElementType();
8352 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8353 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8354 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008355 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2,
Mon P Wang42ac14e2008-10-30 18:21:52 +00008356 Node->getOperand(2));
Mon P Wang1448aad2008-10-30 08:01:45 +00008357 break;
8358 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00008359 case ISD::ATOMIC_CMP_SWAP:
8360 case ISD::ATOMIC_LOAD_ADD:
8361 case ISD::ATOMIC_LOAD_SUB:
8362 case ISD::ATOMIC_LOAD_AND:
8363 case ISD::ATOMIC_LOAD_OR:
8364 case ISD::ATOMIC_LOAD_XOR:
8365 case ISD::ATOMIC_LOAD_NAND:
8366 case ISD::ATOMIC_LOAD_MIN:
8367 case ISD::ATOMIC_LOAD_MAX:
8368 case ISD::ATOMIC_LOAD_UMIN:
8369 case ISD::ATOMIC_LOAD_UMAX:
8370 case ISD::ATOMIC_SWAP: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008371 // For now, we assume that using vectors for these operations don't make
8372 // much sense so we just split it. We return an empty result
8373 SDValue X, Y;
8374 SplitVectorOp(Op, X, Y);
8375 return Result;
8376 break;
8377 }
8378
8379 } // end switch (Node->getOpcode())
8380
8381 assert(Result.getNode() && "Didn't set a result!");
8382 if (Result != Op)
8383 Result = LegalizeOp(Result);
8384
Mon P Wanga5a239f2008-11-06 05:31:54 +00008385 AddWidenedOperand(Op, Result);
Mon P Wang1448aad2008-10-30 08:01:45 +00008386 return Result;
8387}
8388
8389// Utility function to find a legal vector type and its associated element
8390// type from a preferred width and whose vector type must be the same size
8391// as the VVT.
8392// TLI: Target lowering used to determine legal types
8393// Width: Preferred width of element type
8394// VVT: Vector value type whose size we must match.
8395// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0275b132009-01-15 16:43:02 +00008396static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang1448aad2008-10-30 08:01:45 +00008397 MVT& EVT, MVT& VecEVT) {
8398 // We start with the preferred width, make it a power of 2 and see if
8399 // we can find a vector type of that width. If not, we reduce it by
8400 // another power of 2. If we have widen the type, a vector of bytes should
8401 // always be legal.
8402 assert(TLI.isTypeLegal(VVT));
8403 unsigned EWidth = Width + 1;
8404 do {
8405 assert(EWidth > 0);
8406 EWidth = (1 << Log2_32(EWidth-1));
8407 EVT = MVT::getIntegerVT(EWidth);
8408 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8409 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8410 } while (!TLI.isTypeLegal(VecEVT) ||
8411 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8412}
8413
8414SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8415 SDValue Chain,
8416 SDValue BasePtr,
8417 const Value *SV,
8418 int SVOffset,
8419 unsigned Alignment,
8420 bool isVolatile,
8421 unsigned LdWidth,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008422 MVT ResType,
8423 DebugLoc dl) {
Mon P Wang1448aad2008-10-30 08:01:45 +00008424 // We assume that we have good rules to handle loading power of two loads so
8425 // we break down the operations to power of 2 loads. The strategy is to
8426 // load the largest power of 2 that we can easily transform to a legal vector
8427 // and then insert into that vector, and the cast the result into the legal
8428 // vector that we want. This avoids unnecessary stack converts.
8429 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8430 // the load is nonvolatile, we an use a wider load for the value.
8431 // Find a vector length we can load a large chunk
8432 MVT EVT, VecEVT;
8433 unsigned EVTWidth;
8434 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8435 EVTWidth = EVT.getSizeInBits();
8436
Dale Johannesend8fd5342009-02-02 22:49:46 +00008437 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV, SVOffset,
Mon P Wang1448aad2008-10-30 08:01:45 +00008438 isVolatile, Alignment);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008439 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecEVT, LdOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008440 LdChain.push_back(LdOp.getValue(1));
8441
8442 // Check if we can load the element with one instruction
8443 if (LdWidth == EVTWidth) {
Dale Johannesend8fd5342009-02-02 22:49:46 +00008444 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008445 }
8446
8447 // The vector element order is endianness dependent.
8448 unsigned Idx = 1;
8449 LdWidth -= EVTWidth;
8450 unsigned Offset = 0;
8451
8452 while (LdWidth > 0) {
8453 unsigned Increment = EVTWidth / 8;
8454 Offset += Increment;
Dale Johannesend8fd5342009-02-02 22:49:46 +00008455 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang1448aad2008-10-30 08:01:45 +00008456 DAG.getIntPtrConstant(Increment));
8457
8458 if (LdWidth < EVTWidth) {
8459 // Our current type we are using is too large, use a smaller size by
8460 // using a smaller power of 2
8461 unsigned oEVTWidth = EVTWidth;
8462 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8463 EVTWidth = EVT.getSizeInBits();
8464 // Readjust position and vector position based on new load type
Mon P Wang257e1c72008-11-15 06:05:52 +00008465 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008466 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008467 }
8468
Dale Johannesend8fd5342009-02-02 22:49:46 +00008469 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV,
Mon P Wang1448aad2008-10-30 08:01:45 +00008470 SVOffset+Offset, isVolatile,
8471 MinAlign(Alignment, Offset));
8472 LdChain.push_back(LdOp.getValue(1));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008473 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecEVT, VecOp, LdOp,
Mon P Wang1448aad2008-10-30 08:01:45 +00008474 DAG.getIntPtrConstant(Idx++));
8475
8476 LdWidth -= EVTWidth;
8477 }
8478
Dale Johannesend8fd5342009-02-02 22:49:46 +00008479 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008480}
8481
8482bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8483 SDValue& TFOp,
8484 SDValue Op,
8485 MVT NVT) {
8486 // TODO: Add support for ConcatVec and the ability to load many vector
8487 // types (e.g., v4i8). This will not work when a vector register
8488 // to memory mapping is strange (e.g., vector elements are not
8489 // stored in some sequential order).
8490
8491 // It must be true that the widen vector type is bigger than where
8492 // we need to load from.
8493 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8494 MVT LdVT = LD->getMemoryVT();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008495 DebugLoc dl = LD->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008496 assert(LdVT.isVector() && NVT.isVector());
8497 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
8498
8499 // Load information
8500 SDValue Chain = LD->getChain();
8501 SDValue BasePtr = LD->getBasePtr();
8502 int SVOffset = LD->getSrcValueOffset();
8503 unsigned Alignment = LD->getAlignment();
8504 bool isVolatile = LD->isVolatile();
8505 const Value *SV = LD->getSrcValue();
8506 unsigned int LdWidth = LdVT.getSizeInBits();
8507
8508 // Load value as a large register
8509 SDValueVector LdChain;
8510 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008511 Alignment, isVolatile, LdWidth, NVT, dl);
Mon P Wang1448aad2008-10-30 08:01:45 +00008512
8513 if (LdChain.size() == 1) {
8514 TFOp = LdChain[0];
8515 return true;
8516 }
8517 else {
Dale Johannesend8fd5342009-02-02 22:49:46 +00008518 TFOp=DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8519 &LdChain[0], LdChain.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008520 return false;
8521 }
8522}
8523
8524
8525void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8526 SDValue Chain,
8527 SDValue BasePtr,
8528 const Value *SV,
8529 int SVOffset,
8530 unsigned Alignment,
8531 bool isVolatile,
Mon P Wang257e1c72008-11-15 06:05:52 +00008532 SDValue ValOp,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008533 unsigned StWidth,
8534 DebugLoc dl) {
Mon P Wang1448aad2008-10-30 08:01:45 +00008535 // Breaks the stores into a series of power of 2 width stores. For any
8536 // width, we convert the vector to the vector of element size that we
8537 // want to store. This avoids requiring a stack convert.
8538
8539 // Find a width of the element type we can store with
8540 MVT VVT = ValOp.getValueType();
8541 MVT EVT, VecEVT;
8542 unsigned EVTWidth;
8543 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8544 EVTWidth = EVT.getSizeInBits();
8545
Dale Johannesend8fd5342009-02-02 22:49:46 +00008546 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, ValOp);
8547 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang927daf52008-11-06 22:52:21 +00008548 DAG.getIntPtrConstant(0));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008549 SDValue StOp = DAG.getStore(Chain, dl, EOp, BasePtr, SV, SVOffset,
Mon P Wang1448aad2008-10-30 08:01:45 +00008550 isVolatile, Alignment);
8551 StChain.push_back(StOp);
8552
8553 // Check if we are done
8554 if (StWidth == EVTWidth) {
8555 return;
8556 }
8557
8558 unsigned Idx = 1;
8559 StWidth -= EVTWidth;
8560 unsigned Offset = 0;
8561
8562 while (StWidth > 0) {
8563 unsigned Increment = EVTWidth / 8;
8564 Offset += Increment;
Dale Johannesend8fd5342009-02-02 22:49:46 +00008565 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang1448aad2008-10-30 08:01:45 +00008566 DAG.getIntPtrConstant(Increment));
8567
8568 if (StWidth < EVTWidth) {
8569 // Our current type we are using is too large, use a smaller size by
8570 // using a smaller power of 2
8571 unsigned oEVTWidth = EVTWidth;
8572 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8573 EVTWidth = EVT.getSizeInBits();
8574 // Readjust position and vector position based on new load type
Mon P Wang257e1c72008-11-15 06:05:52 +00008575 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008576 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008577 }
8578
Dale Johannesend8fd5342009-02-02 22:49:46 +00008579 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang257e1c72008-11-15 06:05:52 +00008580 DAG.getIntPtrConstant(Idx++));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008581 StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr, SV,
Mon P Wang1448aad2008-10-30 08:01:45 +00008582 SVOffset + Offset, isVolatile,
8583 MinAlign(Alignment, Offset)));
8584 StWidth -= EVTWidth;
8585 }
8586}
8587
8588
8589SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
8590 SDValue Chain,
8591 SDValue BasePtr) {
8592 // TODO: It might be cleaner if we can use SplitVector and have more legal
8593 // vector types that can be stored into memory (e.g., v4xi8 can
8594 // be stored as a word). This will not work when a vector register
8595 // to memory mapping is strange (e.g., vector elements are not
8596 // stored in some sequential order).
8597
8598 MVT StVT = ST->getMemoryVT();
8599 SDValue ValOp = ST->getValue();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008600 DebugLoc dl = ST->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008601
8602 // Check if we have widen this node with another value
8603 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8604 if (I != WidenNodes.end())
8605 ValOp = I->second;
8606
8607 MVT VVT = ValOp.getValueType();
8608
8609 // It must be true that we the widen vector type is bigger than where
8610 // we need to store.
8611 assert(StVT.isVector() && VVT.isVector());
Dan Gohman783a32c2009-01-28 03:10:52 +00008612 assert(StVT.bitsLT(VVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008613 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8614
8615 // Store value
8616 SDValueVector StChain;
8617 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8618 ST->getSrcValueOffset(), ST->getAlignment(),
Dale Johannesend8fd5342009-02-02 22:49:46 +00008619 ST->isVolatile(), ValOp, StVT.getSizeInBits(), dl);
Mon P Wang1448aad2008-10-30 08:01:45 +00008620 if (StChain.size() == 1)
8621 return StChain[0];
8622 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00008623 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8624 &StChain[0], StChain.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008625}
8626
8627
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008628// SelectionDAG::Legalize - This is the entry point for the file.
8629//
Duncan Sandse016a2e2008-12-14 09:43:15 +00008630void SelectionDAG::Legalize(bool TypesNeedLegalizing) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008631 /// run - This is the main entry point to this class.
8632 ///
Duncan Sandse016a2e2008-12-14 09:43:15 +00008633 SelectionDAGLegalize(*this, TypesNeedLegalizing).LegalizeDAG();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008634}
8635