blob: bdcad0a3b5eaf6b49c54a1771088c7df07d968c7 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
15#include "llvm/CodeGen/MachineFunction.h"
16#include "llvm/CodeGen/MachineFrameInfo.h"
17#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner1b989192007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Devang Patelfcf1c752009-01-13 00:35:13 +000019#include "llvm/CodeGen/DwarfWriter.h"
20#include "llvm/Analysis/DebugInfo.h"
Dan Gohman12a9c082008-02-06 22:27:42 +000021#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Chenga448bc42007-08-16 23:50:06 +000022#include "llvm/Target/TargetFrameInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023#include "llvm/Target/TargetLowering.h"
24#include "llvm/Target/TargetData.h"
25#include "llvm/Target/TargetMachine.h"
26#include "llvm/Target/TargetOptions.h"
Dan Gohmane8b391e2008-04-12 04:36:06 +000027#include "llvm/Target/TargetSubtarget.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/CallingConv.h"
29#include "llvm/Constants.h"
30#include "llvm/DerivedTypes.h"
Bill Wendlinge3f43e52009-02-17 01:04:54 +000031#include "llvm/Function.h"
Devang Patelfcf1c752009-01-13 00:35:13 +000032#include "llvm/GlobalVariable.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033#include "llvm/Support/CommandLine.h"
34#include "llvm/Support/Compiler.h"
Duncan Sandsa3691432007-10-28 12:59:45 +000035#include "llvm/Support/MathExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036#include "llvm/ADT/DenseMap.h"
37#include "llvm/ADT/SmallVector.h"
38#include "llvm/ADT/SmallPtrSet.h"
39#include <map>
40using namespace llvm;
41
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042//===----------------------------------------------------------------------===//
43/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
44/// hacks on it until the target machine can handle it. This involves
45/// eliminating value sizes the machine cannot handle (promoting small sizes to
46/// large sizes or splitting up large values into small values) as well as
47/// eliminating operations the machine cannot handle.
48///
49/// This code also does a small amount of optimization and recognition of idioms
50/// as part of its processing. For example, if a target does not support a
51/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
52/// will attempt merge setcc and brc instructions into brcc's.
53///
54namespace {
55class VISIBILITY_HIDDEN SelectionDAGLegalize {
56 TargetLowering &TLI;
57 SelectionDAG &DAG;
Bill Wendling5ed22ac2009-04-29 23:29:43 +000058 CodeGenOpt::Level OptLevel;
Duncan Sandse016a2e2008-12-14 09:43:15 +000059 bool TypesNeedLegalizing;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060
61 // Libcall insertion helpers.
Scott Michel91099d62009-02-17 22:15:04 +000062
Dan Gohmanf17a25c2007-07-18 16:29:46 +000063 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
64 /// legalized. We use this to ensure that calls are properly serialized
65 /// against each other, including inserted libcalls.
Dan Gohman8181bd12008-07-27 21:46:04 +000066 SDValue LastCALLSEQ_END;
Scott Michel91099d62009-02-17 22:15:04 +000067
Dan Gohmanf17a25c2007-07-18 16:29:46 +000068 /// IsLegalizingCall - This member is used *only* for purposes of providing
Scott Michel91099d62009-02-17 22:15:04 +000069 /// helpful assertions that a libcall isn't created while another call is
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070 /// being legalized (which could lead to non-serialized call sequences).
71 bool IsLegalizingCall;
Scott Michel91099d62009-02-17 22:15:04 +000072
Mon P Wang7cba3942009-02-04 19:38:14 +000073 /// IsLegalizingCallArguments - This member is used only for the purpose
74 /// of providing assert to check for LegalizeTypes because legalizing an
75 /// operation might introduce call nodes that might need type legalization.
76 bool IsLegalizingCallArgs;
77
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078 enum LegalizeAction {
79 Legal, // The target natively supports this operation.
80 Promote, // This operation should be executed in a larger type.
81 Expand // Try to expand this to other ops, otherwise use a libcall.
82 };
Scott Michel91099d62009-02-17 22:15:04 +000083
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084 /// ValueTypeActions - This is a bitvector that contains two bits for each
85 /// value type, where the two bits correspond to the LegalizeAction enum.
86 /// This can be queried with "getTypeAction(VT)".
87 TargetLowering::ValueTypeActionImpl ValueTypeActions;
88
89 /// LegalizedNodes - For nodes that are of legal width, and that have more
90 /// than one use, this map indicates what regularized operand to use. This
91 /// allows us to avoid legalizing the same thing more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000092 DenseMap<SDValue, SDValue> LegalizedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093
94 /// PromotedNodes - For nodes that are below legal width, and that have more
95 /// than one use, this map indicates what promoted value to use. This allows
96 /// us to avoid promoting the same thing more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000097 DenseMap<SDValue, SDValue> PromotedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000098
99 /// ExpandedNodes - For nodes that need to be expanded this map indicates
Mon P Wang1448aad2008-10-30 08:01:45 +0000100 /// which operands are the expanded version of the input. This allows
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000101 /// us to avoid expanding the same node more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +0000102 DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000103
104 /// SplitNodes - For vector nodes that need to be split, this map indicates
Mon P Wang1448aad2008-10-30 08:01:45 +0000105 /// which operands are the split version of the input. This allows us
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106 /// to avoid splitting the same node more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +0000107 std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes;
Scott Michel91099d62009-02-17 22:15:04 +0000108
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109 /// ScalarizedNodes - For nodes that need to be converted from vector types to
110 /// scalar types, this contains the mapping of ones we have already
111 /// processed to the result.
Dan Gohman8181bd12008-07-27 21:46:04 +0000112 std::map<SDValue, SDValue> ScalarizedNodes;
Scott Michel91099d62009-02-17 22:15:04 +0000113
Mon P Wanga5a239f2008-11-06 05:31:54 +0000114 /// WidenNodes - For nodes that need to be widened from one vector type to
115 /// another, this contains the mapping of those that we have already widen.
116 /// This allows us to avoid widening more than once.
Mon P Wang1448aad2008-10-30 08:01:45 +0000117 std::map<SDValue, SDValue> WidenNodes;
118
Dan Gohman8181bd12008-07-27 21:46:04 +0000119 void AddLegalizedOperand(SDValue From, SDValue To) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 LegalizedNodes.insert(std::make_pair(From, To));
121 // If someone requests legalization of the new node, return itself.
122 if (From != To)
123 LegalizedNodes.insert(std::make_pair(To, To));
124 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000125 void AddPromotedOperand(SDValue From, SDValue To) {
Dan Gohman55d19662008-07-07 17:46:23 +0000126 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127 assert(isNew && "Got into the map somehow?");
Evan Chengcf576fd2008-11-24 07:09:49 +0000128 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 // If someone requests legalization of the new node, return itself.
130 LegalizedNodes.insert(std::make_pair(To, To));
131 }
Mon P Wanga5a239f2008-11-06 05:31:54 +0000132 void AddWidenedOperand(SDValue From, SDValue To) {
Mon P Wang1448aad2008-10-30 08:01:45 +0000133 bool isNew = WidenNodes.insert(std::make_pair(From, To)).second;
134 assert(isNew && "Got into the map somehow?");
Evan Chengcf576fd2008-11-24 07:09:49 +0000135 isNew = isNew;
Mon P Wang1448aad2008-10-30 08:01:45 +0000136 // If someone requests legalization of the new node, return itself.
137 LegalizedNodes.insert(std::make_pair(To, To));
138 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139
140public:
Bill Wendling123374a2009-02-24 02:35:30 +0000141 explicit SelectionDAGLegalize(SelectionDAG &DAG, bool TypesNeedLegalizing,
Bill Wendling5ed22ac2009-04-29 23:29:43 +0000142 CodeGenOpt::Level ol);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143
144 /// getTypeAction - Return how we should legalize values of this type, either
145 /// it is already legal or we need to expand it into multiple registers of
146 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands92c43912008-06-06 12:08:01 +0000147 LegalizeAction getTypeAction(MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
149 }
150
151 /// isTypeLegal - Return true if this type is legal on this target.
152 ///
Duncan Sands92c43912008-06-06 12:08:01 +0000153 bool isTypeLegal(MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154 return getTypeAction(VT) == Legal;
155 }
156
157 void LegalizeDAG();
158
159private:
160 /// HandleOp - Legalize, Promote, or Expand the specified operand as
161 /// appropriate for its type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000162 void HandleOp(SDValue Op);
Scott Michel91099d62009-02-17 22:15:04 +0000163
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 /// LegalizeOp - We know that the specified value has a legal type.
165 /// Recursively ensure that the operands have legal types, then return the
166 /// result.
Dan Gohman8181bd12008-07-27 21:46:04 +0000167 SDValue LegalizeOp(SDValue O);
Scott Michel91099d62009-02-17 22:15:04 +0000168
Dan Gohman6d05cac2007-10-11 23:57:53 +0000169 /// UnrollVectorOp - We know that the given vector has a legal type, however
170 /// the operation it performs is not legal and is an operation that we have
171 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
172 /// operating on each element individually.
Dan Gohman8181bd12008-07-27 21:46:04 +0000173 SDValue UnrollVectorOp(SDValue O);
Scott Michel91099d62009-02-17 22:15:04 +0000174
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000175 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
176 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
177 /// is necessary to spill the vector being inserted into to memory, perform
178 /// the insert there, and then read the result back.
Dan Gohman8181bd12008-07-27 21:46:04 +0000179 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Dale Johannesen352c47e2009-02-02 20:41:04 +0000180 SDValue Idx, DebugLoc dl);
Dan Gohman6d05cac2007-10-11 23:57:53 +0000181
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 /// PromoteOp - Given an operation that produces a value in an invalid type,
183 /// promote it to compute the value into a larger type. The produced value
184 /// will have the correct bits for the low portion of the register, but no
185 /// guarantee is made about the top bits: it may be zero, sign-extended, or
186 /// garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +0000187 SDValue PromoteOp(SDValue O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188
Dan Gohman8181bd12008-07-27 21:46:04 +0000189 /// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
Dan Gohman4fc03742008-10-01 15:07:49 +0000191 /// the LegalizedNodes map is filled in for any results that are not expanded,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192 /// the ExpandedNodes map is filled in for any results that are expanded, and
193 /// the Lo/Hi values are returned. This applies to integer types and Vector
194 /// types.
Dan Gohman8181bd12008-07-27 21:46:04 +0000195 void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196
Scott Michel91099d62009-02-17 22:15:04 +0000197 /// WidenVectorOp - Widen a vector operation to a wider type given by WidenVT
Mon P Wanga5a239f2008-11-06 05:31:54 +0000198 /// (e.g., v3i32 to v4i32). The produced value will have the correct value
199 /// for the existing elements but no guarantee is made about the new elements
200 /// at the end of the vector: it may be zero, ones, or garbage. This is useful
201 /// when we have an instruction operating on an illegal vector type and we
202 /// want to widen it to do the computation on a legal wider vector type.
Mon P Wang1448aad2008-10-30 08:01:45 +0000203 SDValue WidenVectorOp(SDValue Op, MVT WidenVT);
204
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205 /// SplitVectorOp - Given an operand of vector type, break it down into
206 /// two smaller values.
Dan Gohman8181bd12008-07-27 21:46:04 +0000207 void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi);
Scott Michel91099d62009-02-17 22:15:04 +0000208
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209 /// ScalarizeVectorOp - Given an operand of single-element vector type
210 /// (e.g. v1f32), convert it into the equivalent operation that returns a
211 /// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +0000212 SDValue ScalarizeVectorOp(SDValue O);
Scott Michel91099d62009-02-17 22:15:04 +0000213
Mon P Wanga5a239f2008-11-06 05:31:54 +0000214 /// Useful 16 element vector type that is used to pass operands for widening.
Scott Michel91099d62009-02-17 22:15:04 +0000215 typedef SmallVector<SDValue, 16> SDValueVector;
216
Mon P Wang1448aad2008-10-30 08:01:45 +0000217 /// LoadWidenVectorOp - Load a vector for a wider type. Returns true if
218 /// the LdChain contains a single load and false if it contains a token
219 /// factor for multiple loads. It takes
220 /// Result: location to return the result
221 /// LdChain: location to return the load chain
222 /// Op: load operation to widen
223 /// NVT: widen vector result type we want for the load
Scott Michel91099d62009-02-17 22:15:04 +0000224 bool LoadWidenVectorOp(SDValue& Result, SDValue& LdChain,
Mon P Wang1448aad2008-10-30 08:01:45 +0000225 SDValue Op, MVT NVT);
Scott Michel91099d62009-02-17 22:15:04 +0000226
Mon P Wang1448aad2008-10-30 08:01:45 +0000227 /// Helper genWidenVectorLoads - Helper function to generate a set of
228 /// loads to load a vector with a resulting wider type. It takes
229 /// LdChain: list of chains for the load we have generated
230 /// Chain: incoming chain for the ld vector
231 /// BasePtr: base pointer to load from
232 /// SV: memory disambiguation source value
233 /// SVOffset: memory disambiugation offset
234 /// Alignment: alignment of the memory
235 /// isVolatile: volatile load
Scott Michel91099d62009-02-17 22:15:04 +0000236 /// LdWidth: width of memory that we want to load
Mon P Wang1448aad2008-10-30 08:01:45 +0000237 /// ResType: the wider result result type for the resulting loaded vector
238 SDValue genWidenVectorLoads(SDValueVector& LdChain, SDValue Chain,
239 SDValue BasePtr, const Value *SV,
240 int SVOffset, unsigned Alignment,
241 bool isVolatile, unsigned LdWidth,
Dale Johannesend8fd5342009-02-02 22:49:46 +0000242 MVT ResType, DebugLoc dl);
Scott Michel91099d62009-02-17 22:15:04 +0000243
Mon P Wang1448aad2008-10-30 08:01:45 +0000244 /// StoreWidenVectorOp - Stores a widen vector into non widen memory
245 /// location. It takes
246 /// ST: store node that we want to replace
247 /// Chain: incoming store chain
248 /// BasePtr: base address of where we want to store into
Scott Michel91099d62009-02-17 22:15:04 +0000249 SDValue StoreWidenVectorOp(StoreSDNode *ST, SDValue Chain,
Mon P Wang1448aad2008-10-30 08:01:45 +0000250 SDValue BasePtr);
Scott Michel91099d62009-02-17 22:15:04 +0000251
Mon P Wang1448aad2008-10-30 08:01:45 +0000252 /// Helper genWidenVectorStores - Helper function to generate a set of
253 /// stores to store a widen vector into non widen memory
254 // It takes
255 // StChain: list of chains for the stores we have generated
256 // Chain: incoming chain for the ld vector
257 // BasePtr: base pointer to load from
258 // SV: memory disambiguation source value
259 // SVOffset: memory disambiugation offset
260 // Alignment: alignment of the memory
261 // isVolatile: volatile lod
Scott Michel91099d62009-02-17 22:15:04 +0000262 // ValOp: value to store
263 // StWidth: width of memory that we want to store
Mon P Wang1448aad2008-10-30 08:01:45 +0000264 void genWidenVectorStores(SDValueVector& StChain, SDValue Chain,
265 SDValue BasePtr, const Value *SV,
266 int SVOffset, unsigned Alignment,
267 bool isVolatile, SDValue ValOp,
Dale Johannesend8fd5342009-02-02 22:49:46 +0000268 unsigned StWidth, DebugLoc dl);
Scott Michel91099d62009-02-17 22:15:04 +0000269
Nate Begemane8f61cb2009-04-29 05:20:52 +0000270 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
271 /// performs the same shuffe in terms of order or result bytes, but on a type
272 /// whose vector element type is narrower than the original shuffle type.
273 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
274 SDValue ShuffleWithNarrowerEltType(MVT NVT, MVT VT, DebugLoc dl,
275 SDValue N1, SDValue N2,
276 SmallVectorImpl<int> &Mask) const;
Scott Michel91099d62009-02-17 22:15:04 +0000277
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
279 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
280
Dale Johannesen352c47e2009-02-02 20:41:04 +0000281 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC,
282 DebugLoc dl);
283 void LegalizeSetCCCondCode(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
284 DebugLoc dl);
285 void LegalizeSetCC(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
286 DebugLoc dl) {
287 LegalizeSetCCOperands(LHS, RHS, CC, dl);
288 LegalizeSetCCCondCode(VT, LHS, RHS, CC, dl);
Evan Cheng71343822008-10-15 02:05:31 +0000289 }
Scott Michel91099d62009-02-17 22:15:04 +0000290
Dan Gohman8181bd12008-07-27 21:46:04 +0000291 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
292 SDValue &Hi);
Dale Johannesen9972b632009-02-02 19:03:57 +0000293 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000294
Dale Johannesen82b5b722009-02-02 22:12:50 +0000295 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT, DebugLoc dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000296 SDValue ExpandBUILD_VECTOR(SDNode *Node);
297 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Scott Michel91099d62009-02-17 22:15:04 +0000298 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy,
Dale Johannesen9972b632009-02-02 19:03:57 +0000299 SDValue Op, DebugLoc dl);
300 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT,
301 DebugLoc dl);
302 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned,
303 DebugLoc dl);
304 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned,
305 DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306
Dale Johannesen82b5b722009-02-02 22:12:50 +0000307 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
308 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000309 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +0000310 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000311 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +0000312 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000313
Dan Gohman8181bd12008-07-27 21:46:04 +0000314 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
315 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316};
317}
318
Nate Begemane8f61cb2009-04-29 05:20:52 +0000319/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
320/// performs the same shuffe in terms of order or result bytes, but on a type
321/// whose vector element type is narrower than the original shuffle type.
Nate Begeman543d2142009-04-27 18:41:29 +0000322/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Nate Begemane8f61cb2009-04-29 05:20:52 +0000323SDValue
324SelectionDAGLegalize::ShuffleWithNarrowerEltType(MVT NVT, MVT VT, DebugLoc dl,
325 SDValue N1, SDValue N2,
Nate Begeman543d2142009-04-27 18:41:29 +0000326 SmallVectorImpl<int> &Mask) const {
327 MVT EltVT = NVT.getVectorElementType();
Nate Begemane8f61cb2009-04-29 05:20:52 +0000328 unsigned NumMaskElts = VT.getVectorNumElements();
329 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman543d2142009-04-27 18:41:29 +0000330 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000331
Nate Begeman543d2142009-04-27 18:41:29 +0000332 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
333
334 if (NumEltsGrowth == 1)
335 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
336
337 SmallVector<int, 8> NewMask;
Nate Begemane8f61cb2009-04-29 05:20:52 +0000338 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman543d2142009-04-27 18:41:29 +0000339 int Idx = Mask[i];
340 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
341 if (Idx < 0)
342 NewMask.push_back(-1);
343 else
344 NewMask.push_back(Idx * NumEltsGrowth + j);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000345 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346 }
Nate Begemane8f61cb2009-04-29 05:20:52 +0000347 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman543d2142009-04-27 18:41:29 +0000348 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
349 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000350}
351
Bill Wendling123374a2009-02-24 02:35:30 +0000352SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag,
Bill Wendling5ed22ac2009-04-29 23:29:43 +0000353 bool types, CodeGenOpt::Level ol)
Bill Wendling58ed5d22009-04-29 00:15:41 +0000354 : TLI(dag.getTargetLoweringInfo()), DAG(dag), OptLevel(ol),
355 TypesNeedLegalizing(types), ValueTypeActions(TLI.getValueTypeActions()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000356 assert(MVT::LAST_VALUETYPE <= 32 &&
357 "Too many value types for ValueTypeActions to hold!");
358}
359
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360void SelectionDAGLegalize::LegalizeDAG() {
361 LastCALLSEQ_END = DAG.getEntryNode();
362 IsLegalizingCall = false;
Mon P Wang7cba3942009-02-04 19:38:14 +0000363 IsLegalizingCallArgs = false;
364
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365 // The legalize process is inherently a bottom-up recursive process (users
366 // legalize their uses before themselves). Given infinite stack space, we
367 // could just start legalizing on the root and traverse the whole graph. In
368 // practice however, this causes us to run out of stack space on large basic
369 // blocks. To avoid this problem, compute an ordering of the nodes where each
370 // node is only legalized after all of its operands are legalized.
Dan Gohman2d2a7a32008-09-30 18:30:35 +0000371 DAG.AssignTopologicalOrder();
372 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
373 E = prior(DAG.allnodes_end()); I != next(E); ++I)
374 HandleOp(SDValue(I, 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375
376 // Finally, it's possible the root changed. Get the new root.
Dan Gohman8181bd12008-07-27 21:46:04 +0000377 SDValue OldRoot = DAG.getRoot();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000378 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
379 DAG.setRoot(LegalizedNodes[OldRoot]);
380
381 ExpandedNodes.clear();
382 LegalizedNodes.clear();
383 PromotedNodes.clear();
384 SplitNodes.clear();
385 ScalarizedNodes.clear();
Mon P Wang1448aad2008-10-30 08:01:45 +0000386 WidenNodes.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000387
388 // Remove dead nodes now.
389 DAG.RemoveDeadNodes();
390}
391
392
393/// FindCallEndFromCallStart - Given a chained node that is part of a call
394/// sequence, find the CALLSEQ_END node that terminates the call sequence.
395static SDNode *FindCallEndFromCallStart(SDNode *Node) {
396 if (Node->getOpcode() == ISD::CALLSEQ_END)
397 return Node;
398 if (Node->use_empty())
399 return 0; // No CallSeqEnd
Scott Michel91099d62009-02-17 22:15:04 +0000400
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000401 // The chain is usually at the end.
Dan Gohman8181bd12008-07-27 21:46:04 +0000402 SDValue TheChain(Node, Node->getNumValues()-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403 if (TheChain.getValueType() != MVT::Other) {
404 // Sometimes it's at the beginning.
Dan Gohman8181bd12008-07-27 21:46:04 +0000405 TheChain = SDValue(Node, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000406 if (TheChain.getValueType() != MVT::Other) {
407 // Otherwise, hunt for it.
408 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
409 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000410 TheChain = SDValue(Node, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411 break;
412 }
Scott Michel91099d62009-02-17 22:15:04 +0000413
414 // Otherwise, we walked into a node without a chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000415 if (TheChain.getValueType() != MVT::Other)
416 return 0;
417 }
418 }
Scott Michel91099d62009-02-17 22:15:04 +0000419
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000420 for (SDNode::use_iterator UI = Node->use_begin(),
421 E = Node->use_end(); UI != E; ++UI) {
Scott Michel91099d62009-02-17 22:15:04 +0000422
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423 // Make sure to only follow users of our token chain.
Dan Gohman0c97f1d2008-07-27 20:43:25 +0000424 SDNode *User = *UI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000425 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
426 if (User->getOperand(i) == TheChain)
427 if (SDNode *Result = FindCallEndFromCallStart(User))
428 return Result;
429 }
430 return 0;
431}
432
Scott Michel91099d62009-02-17 22:15:04 +0000433/// FindCallStartFromCallEnd - Given a chained node that is part of a call
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000434/// sequence, find the CALLSEQ_START node that initiates the call sequence.
435static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
436 assert(Node && "Didn't find callseq_start for a call??");
437 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Scott Michel91099d62009-02-17 22:15:04 +0000438
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439 assert(Node->getOperand(0).getValueType() == MVT::Other &&
440 "Node doesn't have a token chain argument!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000441 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000442}
443
444/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
Scott Michel91099d62009-02-17 22:15:04 +0000445/// see if any uses can reach Dest. If no dest operands can get to dest,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000446/// legalize them, legalize ourself, and return false, otherwise, return true.
447///
448/// Keep track of the nodes we fine that actually do lead to Dest in
449/// NodesLeadingTo. This avoids retraversing them exponential number of times.
450///
451bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
452 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
453 if (N == Dest) return true; // N certainly leads to Dest :)
Scott Michel91099d62009-02-17 22:15:04 +0000454
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000455 // If we've already processed this node and it does lead to Dest, there is no
456 // need to reprocess it.
457 if (NodesLeadingTo.count(N)) return true;
Scott Michel91099d62009-02-17 22:15:04 +0000458
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000459 // If the first result of this node has been already legalized, then it cannot
460 // reach N.
461 switch (getTypeAction(N->getValueType(0))) {
Scott Michel91099d62009-02-17 22:15:04 +0000462 case Legal:
Dan Gohman8181bd12008-07-27 21:46:04 +0000463 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000464 break;
465 case Promote:
Dan Gohman8181bd12008-07-27 21:46:04 +0000466 if (PromotedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 break;
468 case Expand:
Dan Gohman8181bd12008-07-27 21:46:04 +0000469 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000470 break;
471 }
Scott Michel91099d62009-02-17 22:15:04 +0000472
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000473 // Okay, this node has not already been legalized. Check and legalize all
474 // operands. If none lead to Dest, then we can legalize this node.
475 bool OperandsLeadToDest = false;
476 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
477 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greif1c80d112008-08-28 21:40:38 +0000478 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479
480 if (OperandsLeadToDest) {
481 NodesLeadingTo.insert(N);
482 return true;
483 }
484
485 // Okay, this node looks safe, legalize it and return false.
Dan Gohman8181bd12008-07-27 21:46:04 +0000486 HandleOp(SDValue(N, 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487 return false;
488}
489
Mon P Wang1448aad2008-10-30 08:01:45 +0000490/// HandleOp - Legalize, Promote, Widen, or Expand the specified operand as
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000491/// appropriate for its type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000492void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +0000493 MVT VT = Op.getValueType();
Duncan Sandse016a2e2008-12-14 09:43:15 +0000494 // If the type legalizer was run then we should never see any illegal result
495 // types here except for target constants (the type legalizer does not touch
Mon P Wang26342922008-12-18 20:03:17 +0000496 // those) or for build vector used as a mask for a vector shuffle.
Duncan Sandse016a2e2008-12-14 09:43:15 +0000497 assert((TypesNeedLegalizing || getTypeAction(VT) == Legal ||
Duncan Sandsa52554e2009-04-27 19:33:03 +0000498 IsLegalizingCallArgs || Op.getOpcode() == ISD::TargetConstant) &&
Duncan Sandse016a2e2008-12-14 09:43:15 +0000499 "Illegal type introduced after type legalization?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000500 switch (getTypeAction(VT)) {
501 default: assert(0 && "Bad type action!");
502 case Legal: (void)LegalizeOp(Op); break;
Mon P Wang1448aad2008-10-30 08:01:45 +0000503 case Promote:
504 if (!VT.isVector()) {
505 (void)PromoteOp(Op);
506 break;
507 }
508 else {
509 // See if we can widen otherwise use Expand to either scalarize or split
510 MVT WidenVT = TLI.getWidenVectorType(VT);
511 if (WidenVT != MVT::Other) {
512 (void) WidenVectorOp(Op, WidenVT);
513 break;
514 }
515 // else fall thru to expand since we can't widen the vector
516 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +0000518 if (!VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519 // If this is an illegal scalar, expand it into its two component
520 // pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +0000521 SDValue X, Y;
Chris Lattnerdad577b2007-08-25 01:00:22 +0000522 if (Op.getOpcode() == ISD::TargetConstant)
523 break; // Allow illegal target nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 ExpandOp(Op, X, Y);
Duncan Sands92c43912008-06-06 12:08:01 +0000525 } else if (VT.getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526 // If this is an illegal single element vector, convert it to a
527 // scalar operation.
528 (void)ScalarizeVectorOp(Op);
529 } else {
Mon P Wang1448aad2008-10-30 08:01:45 +0000530 // This is an illegal multiple element vector.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000531 // Split it in half and legalize both parts.
Dan Gohman8181bd12008-07-27 21:46:04 +0000532 SDValue X, Y;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000533 SplitVectorOp(Op, X, Y);
534 }
535 break;
536 }
537}
538
539/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
540/// a load from the constant pool.
Dan Gohman8181bd12008-07-27 21:46:04 +0000541static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohman0275b132009-01-15 16:43:02 +0000542 SelectionDAG &DAG, const TargetLowering &TLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543 bool Extend = false;
Dale Johannesenea996922009-02-04 20:06:27 +0000544 DebugLoc dl = CFP->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000545
546 // If a FP immediate is precise when represented as a float and if the
547 // target can do an extending load from float to double, we put it into
548 // the constant pool as a float, even if it's is statically typed as a
Chris Lattnere718cc52008-03-05 06:46:58 +0000549 // double. This shrinks FP constants and canonicalizes them for targets where
550 // an FP extending load is the same cost as a normal load (such as on the x87
551 // fp stack or PPC FP unit).
Duncan Sands92c43912008-06-06 12:08:01 +0000552 MVT VT = CFP->getValueType(0);
Dan Gohmanc1f3a072008-09-12 18:08:03 +0000553 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000554 if (!UseCP) {
Chris Lattner50ce8342009-03-08 01:47:41 +0000555 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen49cc7ce2008-10-09 18:53:47 +0000556 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Cheng354be062008-03-04 08:05:30 +0000557 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558 }
559
Duncan Sands92c43912008-06-06 12:08:01 +0000560 MVT OrigVT = VT;
561 MVT SVT = VT;
Evan Cheng354be062008-03-04 08:05:30 +0000562 while (SVT != MVT::f32) {
Duncan Sands92c43912008-06-06 12:08:01 +0000563 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Cheng354be062008-03-04 08:05:30 +0000564 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
565 // Only do this if the target has a native EXTLOAD instruction from
566 // smaller type.
Evan Cheng08c171a2008-10-14 21:26:46 +0000567 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattnere718cc52008-03-05 06:46:58 +0000568 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands92c43912008-06-06 12:08:01 +0000569 const Type *SType = SVT.getTypeForMVT();
Evan Cheng354be062008-03-04 08:05:30 +0000570 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
571 VT = SVT;
572 Extend = true;
573 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000574 }
575
Dan Gohman8181bd12008-07-27 21:46:04 +0000576 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +0000577 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Cheng354be062008-03-04 08:05:30 +0000578 if (Extend)
Dale Johannesenea996922009-02-04 20:06:27 +0000579 return DAG.getExtLoad(ISD::EXTLOAD, dl,
Dale Johannesen3c4fb222009-02-04 02:34:38 +0000580 OrigVT, DAG.getEntryNode(),
Dan Gohmanfb020b62008-02-07 18:41:25 +0000581 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman04637d12008-09-16 22:05:41 +0000582 0, VT, false, Alignment);
Dale Johannesenea996922009-02-04 20:06:27 +0000583 return DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +0000584 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585}
586
587
588/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
589/// operations.
590static
Dan Gohman8181bd12008-07-27 21:46:04 +0000591SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Dan Gohman0275b132009-01-15 16:43:02 +0000592 SelectionDAG &DAG,
593 const TargetLowering &TLI) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000594 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +0000595 MVT VT = Node->getValueType(0);
596 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000597 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
598 "fcopysign expansion only supported for f32 and f64");
Duncan Sands92c43912008-06-06 12:08:01 +0000599 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000600
601 // First get the sign bit of second operand.
Dan Gohman8181bd12008-07-27 21:46:04 +0000602 SDValue Mask1 = (SrcVT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000603 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
604 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000605 Mask1 = DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, Mask1);
Scott Michel91099d62009-02-17 22:15:04 +0000606 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT,
Dale Johannesen352c47e2009-02-02 20:41:04 +0000607 Node->getOperand(1));
608 SignBit = DAG.getNode(ISD::AND, dl, SrcNVT, SignBit, Mask1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000609 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands92c43912008-06-06 12:08:01 +0000610 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000611 if (SizeDiff > 0) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000612 SignBit = DAG.getNode(ISD::SRL, dl, SrcNVT, SignBit,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000614 SignBit = DAG.getNode(ISD::TRUNCATE, dl, NVT, SignBit);
Chris Lattnere6fa1452008-07-10 23:46:13 +0000615 } else if (SizeDiff < 0) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000616 SignBit = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, SignBit);
617 SignBit = DAG.getNode(ISD::SHL, dl, NVT, SignBit,
Chris Lattnere6fa1452008-07-10 23:46:13 +0000618 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
619 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000620
621 // Clear the sign bit of first operand.
Dan Gohman8181bd12008-07-27 21:46:04 +0000622 SDValue Mask2 = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000623 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
624 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000625 Mask2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask2);
626 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
627 Result = DAG.getNode(ISD::AND, dl, NVT, Result, Mask2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000628
629 // Or the value with the sign bit.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000630 Result = DAG.getNode(ISD::OR, dl, NVT, Result, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000631 return Result;
632}
633
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000634/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
635static
Dan Gohman8181bd12008-07-27 21:46:04 +0000636SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
Dan Gohman0275b132009-01-15 16:43:02 +0000637 const TargetLowering &TLI) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000638 SDValue Chain = ST->getChain();
639 SDValue Ptr = ST->getBasePtr();
640 SDValue Val = ST->getValue();
Duncan Sands92c43912008-06-06 12:08:01 +0000641 MVT VT = Val.getValueType();
Dale Johannesen08275382007-09-08 19:29:23 +0000642 int Alignment = ST->getAlignment();
643 int SVOffset = ST->getSrcValueOffset();
Dale Johannesen352c47e2009-02-02 20:41:04 +0000644 DebugLoc dl = ST->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +0000645 if (ST->getMemoryVT().isFloatingPoint() ||
646 ST->getMemoryVT().isVector()) {
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000647 MVT intVT = MVT::getIntegerVT(VT.getSizeInBits());
648 if (TLI.isTypeLegal(intVT)) {
649 // Expand to a bitconvert of the value to the integer type of the
650 // same size, then a (misaligned) int store.
651 // FIXME: Does not handle truncating floating point stores!
Dale Johannesen352c47e2009-02-02 20:41:04 +0000652 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, intVT, Val);
653 return DAG.getStore(Chain, dl, Result, Ptr, ST->getSrcValue(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000654 SVOffset, ST->isVolatile(), Alignment);
655 } else {
656 // Do a (aligned) store to a stack slot, then copy from the stack slot
657 // to the final destination using (unaligned) integer loads and stores.
658 MVT StoredVT = ST->getMemoryVT();
659 MVT RegVT =
660 TLI.getRegisterType(MVT::getIntegerVT(StoredVT.getSizeInBits()));
661 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
662 unsigned RegBytes = RegVT.getSizeInBits() / 8;
663 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
Dale Johannesen08275382007-09-08 19:29:23 +0000664
Duncan Sands734f49b2008-12-13 07:18:38 +0000665 // Make sure the stack slot is also aligned for the register type.
666 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
667
668 // Perform the original store, only redirected to the stack slot.
Scott Michel91099d62009-02-17 22:15:04 +0000669 SDValue Store = DAG.getTruncStore(Chain, dl,
Bob Wilson2e958a42009-04-10 18:48:47 +0000670 Val, StackPtr, NULL, 0, StoredVT);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000671 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
672 SmallVector<SDValue, 8> Stores;
673 unsigned Offset = 0;
674
675 // Do all but one copies using the full register width.
676 for (unsigned i = 1; i < NumRegs; i++) {
677 // Load one integer register's worth from the stack slot.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000678 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, NULL, 0);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000679 // Store it to the final location. Remember the store.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000680 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000681 ST->getSrcValue(), SVOffset + Offset,
682 ST->isVolatile(),
683 MinAlign(ST->getAlignment(), Offset)));
684 // Increment the pointers.
685 Offset += RegBytes;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000686 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000687 Increment);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000688 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000689 }
690
Duncan Sands734f49b2008-12-13 07:18:38 +0000691 // The last store may be partial. Do a truncating store. On big-endian
692 // machines this requires an extending load from the stack slot to ensure
693 // that the bits are in the right place.
694 MVT MemVT = MVT::getIntegerVT(8 * (StoredBytes - Offset));
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000695
Duncan Sands734f49b2008-12-13 07:18:38 +0000696 // Load from the stack slot.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000697 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
Duncan Sands734f49b2008-12-13 07:18:38 +0000698 NULL, 0, MemVT);
699
Dale Johannesen352c47e2009-02-02 20:41:04 +0000700 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000701 ST->getSrcValue(), SVOffset + Offset,
Duncan Sands734f49b2008-12-13 07:18:38 +0000702 MemVT, ST->isVolatile(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000703 MinAlign(ST->getAlignment(), Offset)));
704 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000705 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000706 Stores.size());
707 }
Dale Johannesen08275382007-09-08 19:29:23 +0000708 }
Duncan Sands92c43912008-06-06 12:08:01 +0000709 assert(ST->getMemoryVT().isInteger() &&
710 !ST->getMemoryVT().isVector() &&
Dale Johannesen08275382007-09-08 19:29:23 +0000711 "Unaligned store of unknown type.");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000712 // Get the half-size VT
Duncan Sands92c43912008-06-06 12:08:01 +0000713 MVT NewStoredVT =
714 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
715 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000716 int IncrementSize = NumBits / 8;
717
718 // Divide the stored value in two parts.
Dan Gohman8181bd12008-07-27 21:46:04 +0000719 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
720 SDValue Lo = Val;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000721 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000722
723 // Store the two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000724 SDValue Store1, Store2;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000725 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000726 ST->getSrcValue(), SVOffset, NewStoredVT,
727 ST->isVolatile(), Alignment);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000728 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000729 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsa3691432007-10-28 12:59:45 +0000730 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000731 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000732 ST->getSrcValue(), SVOffset + IncrementSize,
733 NewStoredVT, ST->isVolatile(), Alignment);
734
Dale Johannesen352c47e2009-02-02 20:41:04 +0000735 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000736}
737
738/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
739static
Dan Gohman8181bd12008-07-27 21:46:04 +0000740SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
Dan Gohmana0c429e2009-01-15 16:58:17 +0000741 const TargetLowering &TLI) {
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000742 int SVOffset = LD->getSrcValueOffset();
Dan Gohman8181bd12008-07-27 21:46:04 +0000743 SDValue Chain = LD->getChain();
744 SDValue Ptr = LD->getBasePtr();
Duncan Sands92c43912008-06-06 12:08:01 +0000745 MVT VT = LD->getValueType(0);
746 MVT LoadedVT = LD->getMemoryVT();
Dale Johannesen352c47e2009-02-02 20:41:04 +0000747 DebugLoc dl = LD->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +0000748 if (VT.isFloatingPoint() || VT.isVector()) {
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000749 MVT intVT = MVT::getIntegerVT(LoadedVT.getSizeInBits());
750 if (TLI.isTypeLegal(intVT)) {
751 // Expand to a (misaligned) integer load of the same size,
752 // then bitconvert to floating point or vector.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000753 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000754 SVOffset, LD->isVolatile(),
Dale Johannesen08275382007-09-08 19:29:23 +0000755 LD->getAlignment());
Dale Johannesen352c47e2009-02-02 20:41:04 +0000756 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, LoadedVT, newLoad);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000757 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen352c47e2009-02-02 20:41:04 +0000758 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen08275382007-09-08 19:29:23 +0000759
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000760 SDValue Ops[] = { Result, Chain };
Dale Johannesen352c47e2009-02-02 20:41:04 +0000761 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000762 } else {
763 // Copy the value to a (aligned) stack slot using (unaligned) integer
764 // loads and stores, then do a (aligned) load from the stack slot.
765 MVT RegVT = TLI.getRegisterType(intVT);
766 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
767 unsigned RegBytes = RegVT.getSizeInBits() / 8;
768 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
769
Duncan Sands734f49b2008-12-13 07:18:38 +0000770 // Make sure the stack slot is also aligned for the register type.
771 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
772
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000773 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
774 SmallVector<SDValue, 8> Stores;
775 SDValue StackPtr = StackBase;
776 unsigned Offset = 0;
777
778 // Do all but one copies using the full register width.
779 for (unsigned i = 1; i < NumRegs; i++) {
780 // Load one integer register's worth from the original location.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000781 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000782 SVOffset + Offset, LD->isVolatile(),
783 MinAlign(LD->getAlignment(), Offset));
784 // Follow the load with a store to the stack slot. Remember the store.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000785 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000786 NULL, 0));
787 // Increment the pointers.
788 Offset += RegBytes;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000789 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
790 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000791 Increment);
792 }
793
794 // The last copy may be partial. Do an extending load.
Duncan Sands734f49b2008-12-13 07:18:38 +0000795 MVT MemVT = MVT::getIntegerVT(8 * (LoadedBytes - Offset));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000796 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000797 LD->getSrcValue(), SVOffset + Offset,
Duncan Sands734f49b2008-12-13 07:18:38 +0000798 MemVT, LD->isVolatile(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000799 MinAlign(LD->getAlignment(), Offset));
800 // Follow the load with a store to the stack slot. Remember the store.
Duncan Sands734f49b2008-12-13 07:18:38 +0000801 // On big-endian machines this requires a truncating store to ensure
802 // that the bits end up in the right place.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000803 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sands734f49b2008-12-13 07:18:38 +0000804 NULL, 0, MemVT));
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000805
806 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000807 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000808 Stores.size());
809
810 // Finally, perform the original load only redirected to the stack slot.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000811 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000812 NULL, 0, LoadedVT);
813
814 // Callers expect a MERGE_VALUES node.
815 SDValue Ops[] = { Load, TF };
Dale Johannesen352c47e2009-02-02 20:41:04 +0000816 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000817 }
Dale Johannesen08275382007-09-08 19:29:23 +0000818 }
Duncan Sands92c43912008-06-06 12:08:01 +0000819 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000820 "Unaligned load of unsupported type.");
821
Dale Johannesendc0ee192008-02-27 22:36:00 +0000822 // Compute the new VT that is half the size of the old one. This is an
823 // integer MVT.
Duncan Sands92c43912008-06-06 12:08:01 +0000824 unsigned NumBits = LoadedVT.getSizeInBits();
825 MVT NewLoadedVT;
826 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000827 NumBits >>= 1;
Scott Michel91099d62009-02-17 22:15:04 +0000828
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000829 unsigned Alignment = LD->getAlignment();
830 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000831 ISD::LoadExtType HiExtType = LD->getExtensionType();
832
833 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
834 if (HiExtType == ISD::NON_EXTLOAD)
835 HiExtType = ISD::ZEXTLOAD;
836
837 // Load the value in two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000838 SDValue Lo, Hi;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000839 if (TLI.isLittleEndian()) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000840 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000841 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000842 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000843 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000844 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000845 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsa3691432007-10-28 12:59:45 +0000846 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000847 } else {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000848 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Bob Wilson2e958a42009-04-10 18:48:47 +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 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, 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 }
856
857 // aggregate the two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000858 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
Dale Johannesen352c47e2009-02-02 20:41:04 +0000859 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
860 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000861
Dale Johannesen352c47e2009-02-02 20:41:04 +0000862 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000863 Hi.getValue(1));
864
Dan Gohman8181bd12008-07-27 21:46:04 +0000865 SDValue Ops[] = { Result, TF };
Dale Johannesen352c47e2009-02-02 20:41:04 +0000866 return DAG.getMergeValues(Ops, 2, dl);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000867}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000868
Dan Gohman6d05cac2007-10-11 23:57:53 +0000869/// UnrollVectorOp - We know that the given vector has a legal type, however
870/// the operation it performs is not legal and is an operation that we have
871/// no way of lowering. "Unroll" the vector, splitting out the scalars and
872/// operating on each element individually.
Dan Gohman8181bd12008-07-27 21:46:04 +0000873SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +0000874 MVT VT = Op.getValueType();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000875 assert(isTypeLegal(VT) &&
876 "Caller should expand or promote operands that are not legal!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000877 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman6d05cac2007-10-11 23:57:53 +0000878 "Can't unroll a vector with multiple results!");
Duncan Sands92c43912008-06-06 12:08:01 +0000879 unsigned NE = VT.getVectorNumElements();
880 MVT EltVT = VT.getVectorElementType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +0000881 DebugLoc dl = Op.getDebugLoc();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000882
Dan Gohman8181bd12008-07-27 21:46:04 +0000883 SmallVector<SDValue, 8> Scalars;
884 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman6d05cac2007-10-11 23:57:53 +0000885 for (unsigned i = 0; i != NE; ++i) {
886 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000887 SDValue Operand = Op.getOperand(j);
Duncan Sands92c43912008-06-06 12:08:01 +0000888 MVT OperandVT = Operand.getValueType();
889 if (OperandVT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +0000890 // A vector operand; extract a single element.
Duncan Sands92c43912008-06-06 12:08:01 +0000891 MVT OperandEltVT = OperandVT.getVectorElementType();
Dale Johannesen352c47e2009-02-02 20:41:04 +0000892 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dan Gohman6d05cac2007-10-11 23:57:53 +0000893 OperandEltVT,
894 Operand,
895 DAG.getConstant(i, MVT::i32));
896 } else {
897 // A scalar operand; just use it as is.
898 Operands[j] = Operand;
899 }
900 }
Mon P Wang9901e732008-12-09 05:46:39 +0000901
902 switch (Op.getOpcode()) {
903 default:
Dale Johannesen352c47e2009-02-02 20:41:04 +0000904 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT,
Mon P Wang9901e732008-12-09 05:46:39 +0000905 &Operands[0], Operands.size()));
906 break;
907 case ISD::SHL:
908 case ISD::SRA:
909 case ISD::SRL:
Duncan Sands7d9e3612009-01-31 15:50:11 +0000910 case ISD::ROTL:
911 case ISD::ROTR:
Dale Johannesen352c47e2009-02-02 20:41:04 +0000912 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, Operands[0],
Duncan Sands7d9e3612009-01-31 15:50:11 +0000913 DAG.getShiftAmountOperand(Operands[1])));
Mon P Wang9901e732008-12-09 05:46:39 +0000914 break;
915 }
Dan Gohman6d05cac2007-10-11 23:57:53 +0000916 }
917
Evan Cheng907a2d22009-02-25 22:49:59 +0000918 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Scalars[0], Scalars.size());
Dan Gohman6d05cac2007-10-11 23:57:53 +0000919}
920
Duncan Sands37a3f472008-01-10 10:28:30 +0000921/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands92c43912008-06-06 12:08:01 +0000922static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands37a3f472008-01-10 10:28:30 +0000923 RTLIB::Libcall Call_F32,
924 RTLIB::Libcall Call_F64,
925 RTLIB::Libcall Call_F80,
926 RTLIB::Libcall Call_PPCF128) {
927 return
928 VT == MVT::f32 ? Call_F32 :
929 VT == MVT::f64 ? Call_F64 :
930 VT == MVT::f80 ? Call_F80 :
931 VT == MVT::ppcf128 ? Call_PPCF128 :
932 RTLIB::UNKNOWN_LIBCALL;
933}
934
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000935/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
936/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
937/// is necessary to spill the vector being inserted into to memory, perform
938/// the insert there, and then read the result back.
Dan Gohman8181bd12008-07-27 21:46:04 +0000939SDValue SelectionDAGLegalize::
Dale Johannesen352c47e2009-02-02 20:41:04 +0000940PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
941 DebugLoc dl) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000942 SDValue Tmp1 = Vec;
943 SDValue Tmp2 = Val;
944 SDValue Tmp3 = Idx;
Scott Michel91099d62009-02-17 22:15:04 +0000945
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000946 // If the target doesn't support this, we have to spill the input vector
947 // to a temporary stack slot, update the element, then reload it. This is
948 // badness. We could also load the value into a vector register (either
949 // with a "move to register" or "extload into register" instruction, then
950 // permute it into place, if the idx is a constant and if the idx is
951 // supported by the target.
Duncan Sands92c43912008-06-06 12:08:01 +0000952 MVT VT = Tmp1.getValueType();
953 MVT EltVT = VT.getVectorElementType();
954 MVT IdxVT = Tmp3.getValueType();
955 MVT PtrVT = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +0000956 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000957
Gabor Greif1c80d112008-08-28 21:40:38 +0000958 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000959
960 // Store the vector.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000961 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Mon P Wang1448aad2008-10-30 08:01:45 +0000962 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000963
964 // Truncate or zero extend offset to target pointer type.
Duncan Sandsec142ee2008-06-08 20:54:56 +0000965 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000966 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000967 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +0000968 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000969 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
970 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000971 // Store the scalar value.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000972 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2,
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000973 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000974 // Load the updated vector.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000975 return DAG.getLoad(VT, dl, Ch, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000976 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000977}
978
Mon P Wang9901e732008-12-09 05:46:39 +0000979
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000980/// LegalizeOp - We know that the specified value has a legal type, and
981/// that its operands are legal. Now ensure that the operation itself
982/// is legal, recursively ensuring that the operands' operations remain
983/// legal.
Dan Gohman8181bd12008-07-27 21:46:04 +0000984SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattnerdad577b2007-08-25 01:00:22 +0000985 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
986 return Op;
Scott Michel91099d62009-02-17 22:15:04 +0000987
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000988 assert(isTypeLegal(Op.getValueType()) &&
989 "Caller should expand or promote operands that are not legal!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000990 SDNode *Node = Op.getNode();
Dale Johannesenca6237b2009-01-30 23:10:59 +0000991 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000992
993 // If this operation defines any values that cannot be represented in a
994 // register on this target, make sure to expand or promote them.
995 if (Node->getNumValues() > 1) {
996 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
997 if (getTypeAction(Node->getValueType(i)) != Legal) {
998 HandleOp(Op.getValue(i));
999 assert(LegalizedNodes.count(Op) &&
1000 "Handling didn't add legal operands!");
1001 return LegalizedNodes[Op];
1002 }
1003 }
1004
1005 // Note that LegalizeOp may be reentered even from single-use nodes, which
1006 // means that we always must cache transformed nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00001007 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008 if (I != LegalizedNodes.end()) return I->second;
1009
Dan Gohman8181bd12008-07-27 21:46:04 +00001010 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
1011 SDValue Result = Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001012 bool isCustom = false;
Scott Michel91099d62009-02-17 22:15:04 +00001013
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001014 switch (Node->getOpcode()) {
1015 case ISD::FrameIndex:
1016 case ISD::EntryToken:
1017 case ISD::Register:
1018 case ISD::BasicBlock:
1019 case ISD::TargetFrameIndex:
1020 case ISD::TargetJumpTable:
1021 case ISD::TargetConstant:
1022 case ISD::TargetConstantFP:
1023 case ISD::TargetConstantPool:
1024 case ISD::TargetGlobalAddress:
1025 case ISD::TargetGlobalTLSAddress:
Bill Wendlingfef06052008-09-16 21:48:12 +00001026 case ISD::TargetExternalSymbol:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001027 case ISD::VALUETYPE:
1028 case ISD::SRCVALUE:
Dan Gohman12a9c082008-02-06 22:27:42 +00001029 case ISD::MEMOPERAND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001030 case ISD::CONDCODE:
Duncan Sandsc93fae32008-03-21 09:14:45 +00001031 case ISD::ARG_FLAGS:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001032 // Primitives must all be legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +00001033 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001034 "This must be legal!");
1035 break;
1036 default:
1037 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
1038 // If this is a target node, legalize it by legalizing the operands then
1039 // passing it through.
Dan Gohman8181bd12008-07-27 21:46:04 +00001040 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001041 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1042 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1043
1044 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
1045
1046 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1047 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00001048 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001049 }
1050 // Otherwise this is an unhandled builtin node. splat.
1051#ifndef NDEBUG
1052 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
1053#endif
1054 assert(0 && "Do not know how to legalize this operator!");
1055 abort();
1056 case ISD::GLOBAL_OFFSET_TABLE:
1057 case ISD::GlobalAddress:
1058 case ISD::GlobalTLSAddress:
Bill Wendlingfef06052008-09-16 21:48:12 +00001059 case ISD::ExternalSymbol:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001060 case ISD::ConstantPool:
1061 case ISD::JumpTable: // Nothing to do.
1062 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1063 default: assert(0 && "This action is not supported yet!");
1064 case TargetLowering::Custom:
1065 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001066 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001067 // FALLTHROUGH if the target doesn't want to lower this op after all.
1068 case TargetLowering::Legal:
1069 break;
1070 }
1071 break;
1072 case ISD::FRAMEADDR:
1073 case ISD::RETURNADDR:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001074 // The only option for these nodes is to custom lower them. If the target
1075 // does not custom lower them, then return zero.
1076 Tmp1 = TLI.LowerOperation(Op, DAG);
Scott Michel91099d62009-02-17 22:15:04 +00001077 if (Tmp1.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001078 Result = Tmp1;
1079 else
1080 Result = DAG.getConstant(0, TLI.getPointerTy());
1081 break;
Anton Korobeynikove3d7f932007-08-29 23:18:48 +00001082 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands92c43912008-06-06 12:08:01 +00001083 MVT VT = Node->getValueType(0);
Anton Korobeynikov09386bd2007-08-29 19:28:29 +00001084 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1085 default: assert(0 && "This action is not supported yet!");
1086 case TargetLowering::Custom:
1087 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001088 if (Result.getNode()) break;
Anton Korobeynikov09386bd2007-08-29 19:28:29 +00001089 // Fall Thru
1090 case TargetLowering::Legal:
1091 Result = DAG.getConstant(0, VT);
1092 break;
1093 }
Anton Korobeynikove3d7f932007-08-29 23:18:48 +00001094 }
Anton Korobeynikov09386bd2007-08-29 19:28:29 +00001095 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001096 case ISD::EXCEPTIONADDR: {
1097 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00001098 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001099 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1100 default: assert(0 && "This action is not supported yet!");
1101 case TargetLowering::Expand: {
1102 unsigned Reg = TLI.getExceptionAddressRegister();
Dale Johannesen564036c2009-02-04 00:13:36 +00001103 Result = DAG.getCopyFromReg(Tmp1, dl, Reg, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001104 }
1105 break;
1106 case TargetLowering::Custom:
1107 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001108 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001109 // Fall Thru
1110 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001111 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001112 Result = DAG.getMergeValues(Ops, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001113 break;
1114 }
1115 }
1116 }
Gabor Greif1c80d112008-08-28 21:40:38 +00001117 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001118
Gabor Greif1c80d112008-08-28 21:40:38 +00001119 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001120 "Cannot return more than two values!");
1121
1122 // Since we produced two values, make sure to remember that we
1123 // legalized both of them.
1124 Tmp1 = LegalizeOp(Result);
1125 Tmp2 = LegalizeOp(Result.getValue(1));
1126 AddLegalizedOperand(Op.getValue(0), Tmp1);
1127 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001128 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001129 case ISD::EHSELECTION: {
1130 Tmp1 = LegalizeOp(Node->getOperand(0));
1131 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00001132 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001133 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1134 default: assert(0 && "This action is not supported yet!");
1135 case TargetLowering::Expand: {
1136 unsigned Reg = TLI.getExceptionSelectorRegister();
Dale Johannesen564036c2009-02-04 00:13:36 +00001137 Result = DAG.getCopyFromReg(Tmp2, dl, Reg, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001138 }
1139 break;
1140 case TargetLowering::Custom:
1141 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001142 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001143 // Fall Thru
1144 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001145 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001146 Result = DAG.getMergeValues(Ops, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001147 break;
1148 }
1149 }
1150 }
Gabor Greif1c80d112008-08-28 21:40:38 +00001151 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001152
Gabor Greif1c80d112008-08-28 21:40:38 +00001153 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001154 "Cannot return more than two values!");
1155
1156 // Since we produced two values, make sure to remember that we
1157 // legalized both of them.
1158 Tmp1 = LegalizeOp(Result);
1159 Tmp2 = LegalizeOp(Result.getValue(1));
1160 AddLegalizedOperand(Op.getValue(0), Tmp1);
1161 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001162 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001163 case ISD::EH_RETURN: {
Duncan Sands92c43912008-06-06 12:08:01 +00001164 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001165 // The only "good" option for this node is to custom lower it.
1166 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1167 default: assert(0 && "This action is not supported at all!");
1168 case TargetLowering::Custom:
1169 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001170 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001171 // Fall Thru
1172 case TargetLowering::Legal:
1173 // Target does not know, how to lower this, lower to noop
1174 Result = LegalizeOp(Node->getOperand(0));
1175 break;
1176 }
1177 }
1178 break;
1179 case ISD::AssertSext:
1180 case ISD::AssertZext:
1181 Tmp1 = LegalizeOp(Node->getOperand(0));
1182 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1183 break;
1184 case ISD::MERGE_VALUES:
1185 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif46bf5472008-08-26 22:36:50 +00001186 Result = Node->getOperand(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001187 break;
1188 case ISD::CopyFromReg:
1189 Tmp1 = LegalizeOp(Node->getOperand(0));
1190 Result = Op.getValue(0);
1191 if (Node->getNumValues() == 2) {
1192 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1193 } else {
1194 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
1195 if (Node->getNumOperands() == 3) {
1196 Tmp2 = LegalizeOp(Node->getOperand(2));
1197 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1198 } else {
1199 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1200 }
1201 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1202 }
1203 // Since CopyFromReg produces two values, make sure to remember that we
1204 // legalized both of them.
1205 AddLegalizedOperand(Op.getValue(0), Result);
1206 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001207 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001208 case ISD::UNDEF: {
Duncan Sands92c43912008-06-06 12:08:01 +00001209 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001210 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
1211 default: assert(0 && "This action is not supported yet!");
1212 case TargetLowering::Expand:
Duncan Sands92c43912008-06-06 12:08:01 +00001213 if (VT.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001214 Result = DAG.getConstant(0, VT);
Duncan Sands92c43912008-06-06 12:08:01 +00001215 else if (VT.isFloatingPoint())
1216 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesen20b76352007-09-26 17:26:49 +00001217 VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001218 else
1219 assert(0 && "Unknown value type!");
1220 break;
1221 case TargetLowering::Legal:
1222 break;
1223 }
1224 break;
1225 }
Scott Michel91099d62009-02-17 22:15:04 +00001226
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001227 case ISD::INTRINSIC_W_CHAIN:
1228 case ISD::INTRINSIC_WO_CHAIN:
1229 case ISD::INTRINSIC_VOID: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001230 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001231 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1232 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1233 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michel91099d62009-02-17 22:15:04 +00001234
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001235 // Allow the target to custom lower its intrinsics if it wants to.
Scott Michel91099d62009-02-17 22:15:04 +00001236 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001237 TargetLowering::Custom) {
1238 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001239 if (Tmp3.getNode()) Result = Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001240 }
1241
Gabor Greif1c80d112008-08-28 21:40:38 +00001242 if (Result.getNode()->getNumValues() == 1) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001243
1244 // Must have return value and chain result.
Gabor Greif1c80d112008-08-28 21:40:38 +00001245 assert(Result.getNode()->getNumValues() == 2 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001246 "Cannot return more than two values!");
1247
Scott Michel91099d62009-02-17 22:15:04 +00001248 // Since loads produce two values, make sure to remember that we
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001249 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001250 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1251 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001252 return Result.getValue(Op.getResNo());
Scott Michel91099d62009-02-17 22:15:04 +00001253 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001254
Dan Gohman472d12c2008-06-30 20:59:49 +00001255 case ISD::DBG_STOPPOINT:
1256 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001257 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
Scott Michel91099d62009-02-17 22:15:04 +00001258
Dan Gohman472d12c2008-06-30 20:59:49 +00001259 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001260 case TargetLowering::Promote:
1261 default: assert(0 && "This action is not supported yet!");
Bill Wendlingb0940162009-02-13 02:16:35 +00001262 case TargetLowering::Expand: {
1263 DwarfWriter *DW = DAG.getDwarfWriter();
1264 bool useDEBUG_LOC = TLI.isOperationLegalOrCustom(ISD::DEBUG_LOC,
1265 MVT::Other);
1266 bool useLABEL = TLI.isOperationLegalOrCustom(ISD::DBG_LABEL, MVT::Other);
Scott Michel91099d62009-02-17 22:15:04 +00001267
Bill Wendlingb0940162009-02-13 02:16:35 +00001268 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
1269 GlobalVariable *CU_GV = cast<GlobalVariable>(DSP->getCompileUnit());
1270 if (DW && (useDEBUG_LOC || useLABEL) && !CU_GV->isDeclaration()) {
1271 DICompileUnit CU(cast<GlobalVariable>(DSP->getCompileUnit()));
Scott Michel91099d62009-02-17 22:15:04 +00001272
Bill Wendlingb0940162009-02-13 02:16:35 +00001273 unsigned Line = DSP->getLine();
1274 unsigned Col = DSP->getColumn();
Bill Wendlinge3f43e52009-02-17 01:04:54 +00001275
Bill Wendling5ed22ac2009-04-29 23:29:43 +00001276 if (OptLevel == CodeGenOpt::None) {
Bill Wendlinge3f43e52009-02-17 01:04:54 +00001277 // A bit self-referential to have DebugLoc on Debug_Loc nodes, but it
1278 // won't hurt anything.
1279 if (useDEBUG_LOC) {
1280 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Bill Wendlingb0940162009-02-13 02:16:35 +00001281 DAG.getConstant(Col, MVT::i32),
Argiris Kirtzidis5b02f4c2009-04-30 23:22:31 +00001282 DAG.getSrcValue(CU.getGV()) };
Bill Wendlinge3f43e52009-02-17 01:04:54 +00001283 Result = DAG.getNode(ISD::DEBUG_LOC, dl, MVT::Other, Ops, 4);
1284 } else {
Argiris Kirtzidis5b02f4c2009-04-30 23:22:31 +00001285 unsigned ID = DW->RecordSourceLine(Line, Col, CU);
Bill Wendlinge3f43e52009-02-17 01:04:54 +00001286 Result = DAG.getLabel(ISD::DBG_LABEL, dl, Tmp1, ID);
1287 }
Bill Wendlingb0940162009-02-13 02:16:35 +00001288 } else {
Bill Wendlinge3f43e52009-02-17 01:04:54 +00001289 Result = Tmp1; // chain
Bill Wendlingb0940162009-02-13 02:16:35 +00001290 }
1291 } else {
1292 Result = Tmp1; // chain
1293 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001294 break;
Bill Wendlingb0940162009-02-13 02:16:35 +00001295 }
Sanjiv Guptaec7cef42009-04-02 18:03:10 +00001296 case TargetLowering::Custom:
1297 Result = TLI.LowerOperation(Op, DAG);
Bob Wilson2e958a42009-04-10 18:48:47 +00001298 if (Result.getNode())
Sanjiv Guptaec7cef42009-04-02 18:03:10 +00001299 break;
Evan Chengd6f57682008-07-08 20:06:39 +00001300 case TargetLowering::Legal: {
1301 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1302 if (Action == Legal && Tmp1 == Node->getOperand(0))
1303 break;
1304
Dan Gohman8181bd12008-07-27 21:46:04 +00001305 SmallVector<SDValue, 8> Ops;
Evan Chengd6f57682008-07-08 20:06:39 +00001306 Ops.push_back(Tmp1);
1307 if (Action == Legal) {
1308 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1309 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1310 } else {
1311 // Otherwise promote them.
1312 Ops.push_back(PromoteOp(Node->getOperand(1)));
1313 Ops.push_back(PromoteOp(Node->getOperand(2)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001314 }
Evan Chengd6f57682008-07-08 20:06:39 +00001315 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1316 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1317 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001318 break;
1319 }
Evan Chengd6f57682008-07-08 20:06:39 +00001320 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001321 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001322
1323 case ISD::DECLARE:
1324 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1325 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1326 default: assert(0 && "This action is not supported yet!");
1327 case TargetLowering::Legal:
1328 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1329 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1330 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1331 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1332 break;
Chris Lattner203cd052008-02-28 05:53:40 +00001333 case TargetLowering::Expand:
1334 Result = LegalizeOp(Node->getOperand(0));
1335 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001336 }
Scott Michel91099d62009-02-17 22:15:04 +00001337 break;
1338
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001339 case ISD::DEBUG_LOC:
1340 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
1341 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
1342 default: assert(0 && "This action is not supported yet!");
Evan Chengd6f57682008-07-08 20:06:39 +00001343 case TargetLowering::Legal: {
1344 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001345 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Chengd6f57682008-07-08 20:06:39 +00001346 if (Action == Legal && Tmp1 == Node->getOperand(0))
1347 break;
1348 if (Action == Legal) {
1349 Tmp2 = Node->getOperand(1);
1350 Tmp3 = Node->getOperand(2);
1351 Tmp4 = Node->getOperand(3);
1352 } else {
1353 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1354 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1355 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1356 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001357 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1358 break;
1359 }
Evan Chengd6f57682008-07-08 20:06:39 +00001360 }
Scott Michel91099d62009-02-17 22:15:04 +00001361 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001362
Dan Gohmanfa607c92008-07-01 00:05:16 +00001363 case ISD::DBG_LABEL:
1364 case ISD::EH_LABEL:
1365 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1366 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001367 default: assert(0 && "This action is not supported yet!");
1368 case TargetLowering::Legal:
1369 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohmanfa607c92008-07-01 00:05:16 +00001370 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001371 break;
1372 case TargetLowering::Expand:
1373 Result = LegalizeOp(Node->getOperand(0));
1374 break;
1375 }
1376 break;
1377
Evan Chengd1d68072008-03-08 00:58:38 +00001378 case ISD::PREFETCH:
1379 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1380 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1381 default: assert(0 && "This action is not supported yet!");
1382 case TargetLowering::Legal:
1383 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1384 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1385 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1386 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1387 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1388 break;
1389 case TargetLowering::Expand:
1390 // It's a noop.
1391 Result = LegalizeOp(Node->getOperand(0));
1392 break;
1393 }
1394 break;
1395
Andrew Lenharth785610d2008-02-16 01:24:58 +00001396 case ISD::MEMBARRIER: {
1397 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001398 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1399 default: assert(0 && "This action is not supported yet!");
1400 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001401 SDValue Ops[6];
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001402 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sands3ee041a2008-02-27 08:53:44 +00001403 for (int x = 1; x < 6; ++x) {
1404 Ops[x] = Node->getOperand(x);
1405 if (!isTypeLegal(Ops[x].getValueType()))
1406 Ops[x] = PromoteOp(Ops[x]);
1407 }
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001408 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1409 break;
1410 }
1411 case TargetLowering::Expand:
1412 //There is no libgcc call for this op
1413 Result = Node->getOperand(0); // Noop
1414 break;
1415 }
Andrew Lenharth785610d2008-02-16 01:24:58 +00001416 break;
1417 }
1418
Dan Gohmanbebba8d2008-12-23 21:37:04 +00001419 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001420 unsigned int num_operands = 4;
1421 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001422 SDValue Ops[4];
Mon P Wang078a62d2008-05-05 19:05:59 +00001423 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001424 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang078a62d2008-05-05 19:05:59 +00001425 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Scott Michel91099d62009-02-17 22:15:04 +00001426
Mon P Wang078a62d2008-05-05 19:05:59 +00001427 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1428 default: assert(0 && "This action is not supported yet!");
1429 case TargetLowering::Custom:
1430 Result = TLI.LowerOperation(Result, DAG);
1431 break;
1432 case TargetLowering::Legal:
1433 break;
1434 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001435 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1436 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001437 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001438 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00001439 case ISD::ATOMIC_LOAD_ADD:
1440 case ISD::ATOMIC_LOAD_SUB:
1441 case ISD::ATOMIC_LOAD_AND:
1442 case ISD::ATOMIC_LOAD_OR:
1443 case ISD::ATOMIC_LOAD_XOR:
1444 case ISD::ATOMIC_LOAD_NAND:
1445 case ISD::ATOMIC_LOAD_MIN:
1446 case ISD::ATOMIC_LOAD_MAX:
1447 case ISD::ATOMIC_LOAD_UMIN:
1448 case ISD::ATOMIC_LOAD_UMAX:
1449 case ISD::ATOMIC_SWAP: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001450 unsigned int num_operands = 3;
1451 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001452 SDValue Ops[3];
Mon P Wang078a62d2008-05-05 19:05:59 +00001453 for (unsigned int x = 0; x < num_operands; ++x)
1454 Ops[x] = LegalizeOp(Node->getOperand(x));
1455 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sandsac496a12008-07-04 11:47:58 +00001456
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001457 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001458 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001459 case TargetLowering::Custom:
1460 Result = TLI.LowerOperation(Result, DAG);
1461 break;
1462 case TargetLowering::Legal:
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001463 break;
1464 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001465 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1466 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001467 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001468 }
Scott Michelf2e2b702007-08-08 23:23:31 +00001469 case ISD::Constant: {
1470 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1471 unsigned opAction =
1472 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1473
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001474 // We know we don't need to expand constants here, constants only have one
1475 // value and we check that it is fine above.
1476
Scott Michelf2e2b702007-08-08 23:23:31 +00001477 if (opAction == TargetLowering::Custom) {
1478 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001479 if (Tmp1.getNode())
Scott Michelf2e2b702007-08-08 23:23:31 +00001480 Result = Tmp1;
1481 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001482 break;
Scott Michelf2e2b702007-08-08 23:23:31 +00001483 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001484 case ISD::ConstantFP: {
1485 // Spill FP immediates to the constant pool if the target cannot directly
1486 // codegen them. Targets often have some immediate values that can be
1487 // efficiently generated into an FP register without a load. We explicitly
1488 // leave these constants as ConstantFP nodes for the target to deal with.
1489 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1490
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001491 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1492 default: assert(0 && "This action is not supported yet!");
Nate Begemane2ba64f2008-02-14 08:57:00 +00001493 case TargetLowering::Legal:
1494 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001495 case TargetLowering::Custom:
1496 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001497 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001498 Result = Tmp3;
1499 break;
1500 }
1501 // FALLTHROUGH
Nate Begemane2ba64f2008-02-14 08:57:00 +00001502 case TargetLowering::Expand: {
1503 // Check to see if this FP immediate is already legal.
1504 bool isLegal = false;
1505 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1506 E = TLI.legal_fpimm_end(); I != E; ++I) {
1507 if (CFP->isExactlyValue(*I)) {
1508 isLegal = true;
1509 break;
1510 }
1511 }
1512 // If this is a legal constant, turn it into a TargetConstantFP node.
1513 if (isLegal)
1514 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001515 Result = ExpandConstantFP(CFP, true, DAG, TLI);
1516 }
Nate Begemane2ba64f2008-02-14 08:57:00 +00001517 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001518 break;
1519 }
1520 case ISD::TokenFactor:
1521 if (Node->getNumOperands() == 2) {
1522 Tmp1 = LegalizeOp(Node->getOperand(0));
1523 Tmp2 = LegalizeOp(Node->getOperand(1));
1524 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1525 } else if (Node->getNumOperands() == 3) {
1526 Tmp1 = LegalizeOp(Node->getOperand(0));
1527 Tmp2 = LegalizeOp(Node->getOperand(1));
1528 Tmp3 = LegalizeOp(Node->getOperand(2));
1529 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1530 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00001531 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001532 // Legalize the operands.
1533 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1534 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1535 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1536 }
1537 break;
Scott Michel91099d62009-02-17 22:15:04 +00001538
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001539 case ISD::FORMAL_ARGUMENTS:
1540 case ISD::CALL:
1541 // The only option for this is to custom lower it.
1542 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001543 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesenac246272008-03-05 19:14:03 +00001544 // A call within a calling sequence must be legalized to something
1545 // other than the normal CALLSEQ_END. Violating this gets Legalize
1546 // into an infinite loop.
1547 assert ((!IsLegalizingCall ||
1548 Node->getOpcode() != ISD::CALL ||
Gabor Greif1c80d112008-08-28 21:40:38 +00001549 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesenac246272008-03-05 19:14:03 +00001550 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling22f8deb2007-11-13 00:44:25 +00001551
1552 // The number of incoming and outgoing values should match; unless the final
1553 // outgoing value is a flag.
Gabor Greif1c80d112008-08-28 21:40:38 +00001554 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1555 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1556 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling22f8deb2007-11-13 00:44:25 +00001557 MVT::Flag)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001558 "Lowering call/formal_arguments produced unexpected # results!");
Scott Michel91099d62009-02-17 22:15:04 +00001559
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001560 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
1561 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greif1c80d112008-08-28 21:40:38 +00001562 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1563 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling22f8deb2007-11-13 00:44:25 +00001564 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001565 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00001566 if (Op.getResNo() == i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001567 Tmp2 = Tmp1;
Dan Gohman8181bd12008-07-27 21:46:04 +00001568 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001569 }
1570 return Tmp2;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001571 case ISD::BUILD_VECTOR:
1572 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
1573 default: assert(0 && "This action is not supported yet!");
1574 case TargetLowering::Custom:
1575 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001576 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001577 Result = Tmp3;
1578 break;
1579 }
1580 // FALLTHROUGH
1581 case TargetLowering::Expand:
Gabor Greif1c80d112008-08-28 21:40:38 +00001582 Result = ExpandBUILD_VECTOR(Result.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001583 break;
1584 }
1585 break;
1586 case ISD::INSERT_VECTOR_ELT:
1587 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001588 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001589
1590 // The type of the value to insert may not be legal, even though the vector
1591 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1592 // here.
1593 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1594 default: assert(0 && "Cannot expand insert element operand");
1595 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1596 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang1448aad2008-10-30 08:01:45 +00001597 case Expand:
1598 // FIXME: An alternative would be to check to see if the target is not
Scott Michel91099d62009-02-17 22:15:04 +00001599 // going to custom lower this operation, we could bitcast to half elt
Mon P Wang1448aad2008-10-30 08:01:45 +00001600 // width and perform two inserts at that width, if that is legal.
1601 Tmp2 = Node->getOperand(1);
1602 break;
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001603 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001604 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michel91099d62009-02-17 22:15:04 +00001605
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001606 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1607 Node->getValueType(0))) {
1608 default: assert(0 && "This action is not supported yet!");
1609 case TargetLowering::Legal:
1610 break;
1611 case TargetLowering::Custom:
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001612 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001613 if (Tmp4.getNode()) {
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001614 Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001615 break;
1616 }
1617 // FALLTHROUGH
Mon P Wang1448aad2008-10-30 08:01:45 +00001618 case TargetLowering::Promote:
1619 // Fall thru for vector case
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001620 case TargetLowering::Expand: {
1621 // If the insert index is a constant, codegen this as a scalar_to_vector,
1622 // then a shuffle that inserts it into the right position in the vector.
1623 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001624 // SCALAR_TO_VECTOR requires that the type of the value being inserted
Duncan Sands6a3a01e2009-04-18 20:16:54 +00001625 // match the element type of the vector being created, except for
1626 // integers in which case the inserted value can be over width.
1627 MVT EltVT = Op.getValueType().getVectorElementType();
1628 if (Tmp2.getValueType() == EltVT ||
1629 (EltVT.isInteger() && Tmp2.getValueType().bitsGE(EltVT))) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001630 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Bob Wilson2e958a42009-04-10 18:48:47 +00001631 Tmp1.getValueType(), Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00001632
Duncan Sands92c43912008-06-06 12:08:01 +00001633 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001634 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1635 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1636 // elt 0 of the RHS.
Nate Begeman543d2142009-04-27 18:41:29 +00001637 SmallVector<int, 8> ShufOps;
1638 for (unsigned i = 0; i != NumElts; ++i)
1639 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
1640
1641 Result = DAG.getVectorShuffle(Tmp1.getValueType(), dl, Tmp1, ScVec,
1642 &ShufOps[0]);
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001643 Result = LegalizeOp(Result);
1644 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001645 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001646 }
Dale Johannesen352c47e2009-02-02 20:41:04 +00001647 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001648 break;
1649 }
1650 }
1651 break;
1652 case ISD::SCALAR_TO_VECTOR:
1653 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1654 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1655 break;
1656 }
Scott Michel91099d62009-02-17 22:15:04 +00001657
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001658 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1659 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1660 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1661 Node->getValueType(0))) {
1662 default: assert(0 && "This action is not supported yet!");
1663 case TargetLowering::Legal:
1664 break;
1665 case TargetLowering::Custom:
1666 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001667 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001668 Result = Tmp3;
1669 break;
1670 }
1671 // FALLTHROUGH
1672 case TargetLowering::Expand:
1673 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1674 break;
1675 }
1676 break;
Nate Begeman543d2142009-04-27 18:41:29 +00001677 case ISD::VECTOR_SHUFFLE: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001678 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1679 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
Nate Begeman543d2142009-04-27 18:41:29 +00001680 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1681 MVT VT = Result.getValueType();
1682
Nate Begemane8f61cb2009-04-29 05:20:52 +00001683 // Copy the Mask to a local SmallVector for use with isShuffleMaskLegal.
Nate Begeman543d2142009-04-27 18:41:29 +00001684 SmallVector<int, 8> Mask;
1685 cast<ShuffleVectorSDNode>(Result)->getMask(Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001686
1687 // Allow targets to custom lower the SHUFFLEs they support.
Nate Begeman543d2142009-04-27 18:41:29 +00001688 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001689 default: assert(0 && "Unknown operation action!");
1690 case TargetLowering::Legal:
Nate Begeman543d2142009-04-27 18:41:29 +00001691 assert(TLI.isShuffleMaskLegal(Mask, VT) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001692 "vector shuffle should not be created if not legal!");
1693 break;
1694 case TargetLowering::Custom:
1695 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001696 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001697 Result = Tmp3;
1698 break;
1699 }
1700 // FALLTHROUGH
1701 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00001702 MVT EltVT = VT.getVectorElementType();
Nate Begemane8f61cb2009-04-29 05:20:52 +00001703 unsigned NumElems = VT.getVectorNumElements();
Bob Wilson2e958a42009-04-10 18:48:47 +00001704 SmallVector<SDValue, 8> Ops;
Nate Begemane8f61cb2009-04-29 05:20:52 +00001705 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman543d2142009-04-27 18:41:29 +00001706 if (Mask[i] < 0) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00001707 Ops.push_back(DAG.getUNDEF(EltVT));
Nate Begeman543d2142009-04-27 18:41:29 +00001708 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001709 }
Nate Begemane8f61cb2009-04-29 05:20:52 +00001710 unsigned Idx = Mask[i];
Nate Begeman543d2142009-04-27 18:41:29 +00001711 if (Idx < NumElems)
1712 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp1,
1713 DAG.getIntPtrConstant(Idx)));
1714 else
1715 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp2,
1716 DAG.getIntPtrConstant(Idx - NumElems)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001717 }
Evan Cheng907a2d22009-02-25 22:49:59 +00001718 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001719 break;
1720 }
1721 case TargetLowering::Promote: {
1722 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00001723 MVT OVT = Node->getValueType(0);
1724 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001725
1726 // Cast the two input vectors.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001727 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
1728 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00001729
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001730 // Convert the shuffle mask to the right # elements.
Nate Begemane8f61cb2009-04-29 05:20:52 +00001731 Result = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001732 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001733 break;
1734 }
1735 }
1736 break;
Nate Begeman543d2142009-04-27 18:41:29 +00001737 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001738 case ISD::EXTRACT_VECTOR_ELT:
1739 Tmp1 = Node->getOperand(0);
1740 Tmp2 = LegalizeOp(Node->getOperand(1));
1741 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1742 Result = ExpandEXTRACT_VECTOR_ELT(Result);
1743 break;
1744
Scott Michel91099d62009-02-17 22:15:04 +00001745 case ISD::EXTRACT_SUBVECTOR:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001746 Tmp1 = Node->getOperand(0);
1747 Tmp2 = LegalizeOp(Node->getOperand(1));
1748 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1749 Result = ExpandEXTRACT_SUBVECTOR(Result);
1750 break;
Scott Michel91099d62009-02-17 22:15:04 +00001751
Mon P Wang1448aad2008-10-30 08:01:45 +00001752 case ISD::CONCAT_VECTORS: {
Bob Wilson7bc6b7a2009-05-01 17:55:32 +00001753 // Legalize the operands.
Mon P Wang1448aad2008-10-30 08:01:45 +00001754 SmallVector<SDValue, 8> Ops;
Bob Wilson7bc6b7a2009-05-01 17:55:32 +00001755 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1756 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1757 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1758
1759 switch (TLI.getOperationAction(ISD::CONCAT_VECTORS,
1760 Node->getValueType(0))) {
1761 default: assert(0 && "Unknown operation action!");
1762 case TargetLowering::Legal:
1763 break;
1764 case TargetLowering::Custom:
1765 Tmp3 = TLI.LowerOperation(Result, DAG);
1766 if (Tmp3.getNode()) {
1767 Result = Tmp3;
1768 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00001769 }
Bob Wilson7bc6b7a2009-05-01 17:55:32 +00001770 // FALLTHROUGH
1771 case TargetLowering::Expand: {
1772 // Use extract/insert/build vector for now. We might try to be
1773 // more clever later.
1774 MVT PtrVT = TLI.getPointerTy();
1775 SmallVector<SDValue, 8> Ops;
1776 unsigned NumOperands = Node->getNumOperands();
1777 for (unsigned i=0; i < NumOperands; ++i) {
1778 SDValue SubOp = Node->getOperand(i);
1779 MVT VVT = SubOp.getNode()->getValueType(0);
1780 MVT EltVT = VVT.getVectorElementType();
1781 unsigned NumSubElem = VVT.getVectorNumElements();
1782 for (unsigned j=0; j < NumSubElem; ++j) {
1783 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
1784 DAG.getConstant(j, PtrVT)));
1785 }
1786 }
1787 return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, dl,
1788 Node->getValueType(0),
1789 &Ops[0], Ops.size()));
Mon P Wang1448aad2008-10-30 08:01:45 +00001790 }
Bob Wilson7bc6b7a2009-05-01 17:55:32 +00001791 }
1792 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00001793 }
1794
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001795 case ISD::CALLSEQ_START: {
1796 SDNode *CallEnd = FindCallEndFromCallStart(Node);
Scott Michel91099d62009-02-17 22:15:04 +00001797
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001798 // Recursively Legalize all of the inputs of the call end that do not lead
1799 // to this call start. This ensures that any libcalls that need be inserted
1800 // are inserted *before* the CALLSEQ_START.
Mon P Wang7cba3942009-02-04 19:38:14 +00001801 IsLegalizingCallArgs = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001802 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
1803 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greif1c80d112008-08-28 21:40:38 +00001804 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001805 NodesLeadingTo);
1806 }
Mon P Wang7cba3942009-02-04 19:38:14 +00001807 IsLegalizingCallArgs = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001808
1809 // Now that we legalized all of the inputs (which may have inserted
1810 // libcalls) create the new CALLSEQ_START node.
1811 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1812
1813 // Merge in the last call, to ensure that this call start after the last
1814 // call ended.
1815 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Scott Michel91099d62009-02-17 22:15:04 +00001816 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001817 Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001818 Tmp1 = LegalizeOp(Tmp1);
1819 }
Scott Michel91099d62009-02-17 22:15:04 +00001820
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001821 // Do not try to legalize the target-specific arguments (#1+).
1822 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001823 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001824 Ops[0] = Tmp1;
1825 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1826 }
Scott Michel91099d62009-02-17 22:15:04 +00001827
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001828 // Remember that the CALLSEQ_START is legalized.
1829 AddLegalizedOperand(Op.getValue(0), Result);
1830 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1831 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Scott Michel91099d62009-02-17 22:15:04 +00001832
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001833 // Now that the callseq_start and all of the non-call nodes above this call
Scott Michel91099d62009-02-17 22:15:04 +00001834 // sequence have been legalized, legalize the call itself. During this
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001835 // process, no libcalls can/will be inserted, guaranteeing that no calls
1836 // can overlap.
1837 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001838 // Note that we are selecting this call!
Dan Gohman8181bd12008-07-27 21:46:04 +00001839 LastCALLSEQ_END = SDValue(CallEnd, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001840 IsLegalizingCall = true;
Scott Michel91099d62009-02-17 22:15:04 +00001841
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001842 // Legalize the call, starting from the CALLSEQ_END.
1843 LegalizeOp(LastCALLSEQ_END);
1844 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1845 return Result;
1846 }
1847 case ISD::CALLSEQ_END:
1848 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1849 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greif1c80d112008-08-28 21:40:38 +00001850 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001851 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1852 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001853 assert(I != LegalizedNodes.end() &&
1854 "Legalizing the call start should have legalized this node!");
1855 return I->second;
1856 }
Scott Michel91099d62009-02-17 22:15:04 +00001857
1858 // Otherwise, the call start has been legalized and everything is going
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001859 // according to plan. Just legalize ourselves normally here.
1860 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1861 // Do not try to legalize the target-specific arguments (#1+), except for
1862 // an optional flag input.
1863 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1864 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001865 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001866 Ops[0] = Tmp1;
1867 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1868 }
1869 } else {
1870 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1871 if (Tmp1 != Node->getOperand(0) ||
1872 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001873 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001874 Ops[0] = Tmp1;
1875 Ops.back() = Tmp2;
1876 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1877 }
1878 }
1879 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
1880 // This finishes up call legalization.
1881 IsLegalizingCall = false;
Scott Michel91099d62009-02-17 22:15:04 +00001882
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001883 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00001884 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001885 if (Node->getNumValues() == 2)
Dan Gohman8181bd12008-07-27 21:46:04 +00001886 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001887 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001888 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands92c43912008-06-06 12:08:01 +00001889 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001890 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1891 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1892 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
1893 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1894
1895 Tmp1 = Result.getValue(0);
1896 Tmp2 = Result.getValue(1);
Evan Chenga448bc42007-08-16 23:50:06 +00001897 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001898 default: assert(0 && "This action is not supported yet!");
1899 case TargetLowering::Expand: {
1900 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1901 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1902 " not tell us which reg is the stack pointer!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001903 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling22f8deb2007-11-13 00:44:25 +00001904
1905 // Chain the dynamic stack allocation so that it doesn't modify the stack
1906 // pointer when other instructions are using the stack.
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001907 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling22f8deb2007-11-13 00:44:25 +00001908
Dan Gohman8181bd12008-07-27 21:46:04 +00001909 SDValue Size = Tmp2.getOperand(1);
Dale Johannesen564036c2009-02-04 00:13:36 +00001910 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
Evan Chenga448bc42007-08-16 23:50:06 +00001911 Chain = SP.getValue(1);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001912 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Chenga448bc42007-08-16 23:50:06 +00001913 unsigned StackAlign =
1914 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1915 if (Align > StackAlign)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001916 SP = DAG.getNode(ISD::AND, dl, VT, SP,
Evan Cheng51ce0382007-08-17 18:02:22 +00001917 DAG.getConstant(-(uint64_t)Align, VT));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001918 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Dale Johannesen564036c2009-02-04 00:13:36 +00001919 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
Bill Wendling22f8deb2007-11-13 00:44:25 +00001920
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001921 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001922 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling22f8deb2007-11-13 00:44:25 +00001923
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001924 Tmp1 = LegalizeOp(Tmp1);
1925 Tmp2 = LegalizeOp(Tmp2);
1926 break;
1927 }
1928 case TargetLowering::Custom:
1929 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001930 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001931 Tmp1 = LegalizeOp(Tmp3);
1932 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1933 }
1934 break;
1935 case TargetLowering::Legal:
1936 break;
1937 }
1938 // Since this op produce two values, make sure to remember that we
1939 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001940 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1941 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001942 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001943 }
1944 case ISD::INLINEASM: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001945 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001946 bool Changed = false;
1947 // Legalize all of the operands of the inline asm, in case they are nodes
1948 // that need to be expanded or something. Note we skip the asm string and
1949 // all of the TargetConstant flags.
Dan Gohman8181bd12008-07-27 21:46:04 +00001950 SDValue Op = LegalizeOp(Ops[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001951 Changed = Op != Ops[0];
1952 Ops[0] = Op;
1953
1954 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1955 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Evan Cheng92167402009-03-20 18:03:34 +00001956 unsigned NumVals = InlineAsm::
1957 getNumOperandRegisters(cast<ConstantSDNode>(Ops[i])->getZExtValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001958 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001959 SDValue Op = LegalizeOp(Ops[i]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001960 if (Op != Ops[i]) {
1961 Changed = true;
1962 Ops[i] = Op;
1963 }
1964 }
1965 }
1966
1967 if (HasInFlag) {
1968 Op = LegalizeOp(Ops.back());
1969 Changed |= Op != Ops.back();
1970 Ops.back() = Op;
1971 }
Scott Michel91099d62009-02-17 22:15:04 +00001972
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001973 if (Changed)
1974 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michel91099d62009-02-17 22:15:04 +00001975
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001976 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman8181bd12008-07-27 21:46:04 +00001977 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1978 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001979 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001980 }
1981 case ISD::BR:
1982 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1983 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001984 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001985 Tmp1 = LegalizeOp(Tmp1);
1986 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00001987
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001988 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1989 break;
1990 case ISD::BRIND:
1991 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1992 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001993 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001994 Tmp1 = LegalizeOp(Tmp1);
1995 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00001996
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001997 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1998 default: assert(0 && "Indirect target must be legal type (pointer)!");
1999 case Legal:
2000 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2001 break;
2002 }
2003 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2004 break;
2005 case ISD::BR_JT:
2006 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2007 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002008 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002009 Tmp1 = LegalizeOp(Tmp1);
2010 LastCALLSEQ_END = DAG.getEntryNode();
2011
2012 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
2013 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2014
Scott Michel91099d62009-02-17 22:15:04 +00002015 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002016 default: assert(0 && "This action is not supported yet!");
2017 case TargetLowering::Legal: break;
2018 case TargetLowering::Custom:
2019 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002020 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002021 break;
2022 case TargetLowering::Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002023 SDValue Chain = Result.getOperand(0);
2024 SDValue Table = Result.getOperand(1);
2025 SDValue Index = Result.getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002026
Duncan Sands92c43912008-06-06 12:08:01 +00002027 MVT PTy = TLI.getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002028 MachineFunction &MF = DAG.getMachineFunction();
2029 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Scott Michel91099d62009-02-17 22:15:04 +00002030 Index= DAG.getNode(ISD::MUL, dl, PTy,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002031 Index, DAG.getConstant(EntrySize, PTy));
2032 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002033
Duncan Sands12ddc802008-12-12 08:13:38 +00002034 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002035 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Duncan Sands12ddc802008-12-12 08:13:38 +00002036 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Cheng6fb06762007-11-09 01:32:10 +00002037 Addr = LD;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002038 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2039 // For PIC, the sequence is:
2040 // BRIND(load(Jumptable + index) + RelocBase)
Evan Cheng6fb06762007-11-09 01:32:10 +00002041 // RelocBase can be JumpTable, GOT or some sort of global base.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002042 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
Evan Cheng6fb06762007-11-09 01:32:10 +00002043 TLI.getPICJumpTableRelocBase(Table, DAG));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002044 }
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002045 Result = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002046 }
2047 }
2048 break;
2049 case ISD::BRCOND:
2050 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2051 // Ensure that libcalls are emitted before a return.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002052 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002053 Tmp1 = LegalizeOp(Tmp1);
2054 LastCALLSEQ_END = DAG.getEntryNode();
2055
2056 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2057 case Expand: assert(0 && "It's impossible to expand bools");
2058 case Legal:
2059 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2060 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00002061 case Promote: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002062 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Scott Michel91099d62009-02-17 22:15:04 +00002063
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002064 // The top bits of the promoted condition are not necessarily zero, ensure
2065 // that the value is properly zero extended.
Dan Gohman07961cd2008-02-25 21:11:39 +00002066 unsigned BitWidth = Tmp2.getValueSizeInBits();
Scott Michel91099d62009-02-17 22:15:04 +00002067 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman07961cd2008-02-25 21:11:39 +00002068 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002069 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, MVT::i1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002070 break;
2071 }
Dan Gohman07961cd2008-02-25 21:11:39 +00002072 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002073
2074 // Basic block destination (Op#2) is always legal.
2075 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michel91099d62009-02-17 22:15:04 +00002076
2077 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002078 default: assert(0 && "This action is not supported yet!");
2079 case TargetLowering::Legal: break;
2080 case TargetLowering::Custom:
2081 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002082 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002083 break;
2084 case TargetLowering::Expand:
2085 // Expand brcond's setcc into its constituent parts and create a BR_CC
2086 // Node.
2087 if (Tmp2.getOpcode() == ISD::SETCC) {
Scott Michel91099d62009-02-17 22:15:04 +00002088 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002089 Tmp1, Tmp2.getOperand(2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002090 Tmp2.getOperand(0), Tmp2.getOperand(1),
2091 Node->getOperand(2));
2092 } else {
Scott Michel91099d62009-02-17 22:15:04 +00002093 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002094 DAG.getCondCode(ISD::SETNE), Tmp2,
2095 DAG.getConstant(0, Tmp2.getValueType()),
2096 Node->getOperand(2));
2097 }
2098 break;
2099 }
2100 break;
2101 case ISD::BR_CC:
2102 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2103 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002104 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002105 Tmp1 = LegalizeOp(Tmp1);
Scott Michel91099d62009-02-17 22:15:04 +00002106 Tmp2 = Node->getOperand(2); // LHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002107 Tmp3 = Node->getOperand(3); // RHS
2108 Tmp4 = Node->getOperand(1); // CC
2109
Scott Michel91099d62009-02-17 22:15:04 +00002110 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
Dale Johannesen352c47e2009-02-02 20:41:04 +00002111 Tmp2, Tmp3, Tmp4, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002112 LastCALLSEQ_END = DAG.getEntryNode();
2113
Evan Cheng71343822008-10-15 02:05:31 +00002114 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002115 // the LHS is a legal SETCC itself. In this case, we need to compare
2116 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00002117 if (Tmp3.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002118 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2119 Tmp4 = DAG.getCondCode(ISD::SETNE);
2120 }
Scott Michel91099d62009-02-17 22:15:04 +00002121
2122 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002123 Node->getOperand(4));
Scott Michel91099d62009-02-17 22:15:04 +00002124
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002125 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2126 default: assert(0 && "Unexpected action for BR_CC!");
2127 case TargetLowering::Legal: break;
2128 case TargetLowering::Custom:
2129 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002130 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002131 break;
2132 }
2133 break;
2134 case ISD::LOAD: {
2135 LoadSDNode *LD = cast<LoadSDNode>(Node);
2136 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2137 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
2138
2139 ISD::LoadExtType ExtType = LD->getExtensionType();
2140 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands92c43912008-06-06 12:08:01 +00002141 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002142 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2143 Tmp3 = Result.getValue(0);
2144 Tmp4 = Result.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00002145
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002146 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2147 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002148 case TargetLowering::Legal:
2149 // If this is an unaligned load and the target doesn't support it,
2150 // expand it.
2151 if (!TLI.allowsUnalignedMemoryAccesses()) {
2152 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002153 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002154 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00002155 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002156 TLI);
2157 Tmp3 = Result.getOperand(0);
2158 Tmp4 = Result.getOperand(1);
Dale Johannesen08275382007-09-08 19:29:23 +00002159 Tmp3 = LegalizeOp(Tmp3);
2160 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002161 }
2162 }
2163 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002164 case TargetLowering::Custom:
2165 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002166 if (Tmp1.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002167 Tmp3 = LegalizeOp(Tmp1);
2168 Tmp4 = LegalizeOp(Tmp1.getValue(1));
2169 }
2170 break;
2171 case TargetLowering::Promote: {
2172 // Only promote a load of vector type to another.
Duncan Sands92c43912008-06-06 12:08:01 +00002173 assert(VT.isVector() && "Cannot promote this load!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002174 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002175 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002176
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002177 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002178 LD->getSrcValueOffset(),
2179 LD->isVolatile(), LD->getAlignment());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00002180 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002181 Tmp4 = LegalizeOp(Tmp1.getValue(1));
2182 break;
2183 }
2184 }
Scott Michel91099d62009-02-17 22:15:04 +00002185 // Since loads produce two values, make sure to remember that we
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002186 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002187 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2188 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif46bf5472008-08-26 22:36:50 +00002189 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002190 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00002191 MVT SrcVT = LD->getMemoryVT();
2192 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sands082524c2008-01-23 20:39:46 +00002193 int SVOffset = LD->getSrcValueOffset();
2194 unsigned Alignment = LD->getAlignment();
2195 bool isVolatile = LD->isVolatile();
2196
Duncan Sands92c43912008-06-06 12:08:01 +00002197 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sands082524c2008-01-23 20:39:46 +00002198 // Some targets pretend to have an i1 loading operation, and actually
2199 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2200 // bits are guaranteed to be zero; it helps the optimizers understand
2201 // that these bits are zero. It is also useful for EXTLOAD, since it
2202 // tells the optimizers that those bits are undefined. It would be
2203 // nice to have an effective generic way of getting these benefits...
2204 // Until such a way is found, don't insist on promoting i1 here.
2205 (SrcVT != MVT::i1 ||
Evan Cheng08c171a2008-10-14 21:26:46 +00002206 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sands082524c2008-01-23 20:39:46 +00002207 // Promote to a byte-sized load if not loading an integral number of
2208 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands92c43912008-06-06 12:08:01 +00002209 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2210 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002211 SDValue Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00002212
2213 // The extra bits are guaranteed to be zero, since we stored them that
2214 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2215
2216 ISD::LoadExtType NewExtType =
2217 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2218
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002219 Result = DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Duncan Sands082524c2008-01-23 20:39:46 +00002220 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2221 NVT, isVolatile, Alignment);
2222
2223 Ch = Result.getValue(1); // The chain.
2224
2225 if (ExtType == ISD::SEXTLOAD)
2226 // Having the top bits zero doesn't help when sign extending.
Scott Michel91099d62009-02-17 22:15:04 +00002227 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002228 Result.getValueType(),
Duncan Sands082524c2008-01-23 20:39:46 +00002229 Result, DAG.getValueType(SrcVT));
2230 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2231 // All the top bits are guaranteed to be zero - inform the optimizers.
Scott Michel91099d62009-02-17 22:15:04 +00002232 Result = DAG.getNode(ISD::AssertZext, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002233 Result.getValueType(), Result,
Duncan Sands082524c2008-01-23 20:39:46 +00002234 DAG.getValueType(SrcVT));
2235
2236 Tmp1 = LegalizeOp(Result);
2237 Tmp2 = LegalizeOp(Ch);
2238 } else if (SrcWidth & (SrcWidth - 1)) {
2239 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands92c43912008-06-06 12:08:01 +00002240 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sands082524c2008-01-23 20:39:46 +00002241 "Unsupported extload!");
2242 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2243 assert(RoundWidth < SrcWidth);
2244 unsigned ExtraWidth = SrcWidth - RoundWidth;
2245 assert(ExtraWidth < RoundWidth);
2246 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2247 "Load size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002248 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2249 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002250 SDValue Lo, Hi, Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00002251 unsigned IncrementSize;
2252
2253 if (TLI.isLittleEndian()) {
2254 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2255 // Load the bottom RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002256 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2257 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002258 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2259 Alignment);
2260
2261 // Load the remaining ExtraWidth bits.
2262 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002263 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002264 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002265 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002266 LD->getSrcValue(), SVOffset + IncrementSize,
2267 ExtraVT, isVolatile,
2268 MinAlign(Alignment, IncrementSize));
2269
2270 // Build a factor node to remember that this load is independent of the
2271 // other one.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002272 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sands082524c2008-01-23 20:39:46 +00002273 Hi.getValue(1));
2274
2275 // Move the top bits to the right place.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002276 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sands082524c2008-01-23 20:39:46 +00002277 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2278
2279 // Join the hi and lo parts.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002280 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002281 } else {
Duncan Sands082524c2008-01-23 20:39:46 +00002282 // Big endian - avoid unaligned loads.
2283 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2284 // Load the top RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002285 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002286 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2287 Alignment);
2288
2289 // Load the remaining ExtraWidth bits.
2290 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002291 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002292 DAG.getIntPtrConstant(IncrementSize));
Scott Michel91099d62009-02-17 22:15:04 +00002293 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002294 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002295 LD->getSrcValue(), SVOffset + IncrementSize,
2296 ExtraVT, isVolatile,
2297 MinAlign(Alignment, IncrementSize));
2298
2299 // Build a factor node to remember that this load is independent of the
2300 // other one.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002301 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sands082524c2008-01-23 20:39:46 +00002302 Hi.getValue(1));
2303
2304 // Move the top bits to the right place.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002305 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sands082524c2008-01-23 20:39:46 +00002306 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2307
2308 // Join the hi and lo parts.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002309 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sands082524c2008-01-23 20:39:46 +00002310 }
2311
2312 Tmp1 = LegalizeOp(Result);
2313 Tmp2 = LegalizeOp(Ch);
2314 } else {
Evan Cheng08c171a2008-10-14 21:26:46 +00002315 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sands082524c2008-01-23 20:39:46 +00002316 default: assert(0 && "This action is not supported yet!");
2317 case TargetLowering::Custom:
2318 isCustom = true;
2319 // FALLTHROUGH
2320 case TargetLowering::Legal:
2321 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2322 Tmp1 = Result.getValue(0);
2323 Tmp2 = Result.getValue(1);
2324
2325 if (isCustom) {
2326 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002327 if (Tmp3.getNode()) {
Duncan Sands082524c2008-01-23 20:39:46 +00002328 Tmp1 = LegalizeOp(Tmp3);
2329 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2330 }
2331 } else {
2332 // If this is an unaligned load and the target doesn't support it,
2333 // expand it.
2334 if (!TLI.allowsUnalignedMemoryAccesses()) {
2335 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002336 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sands082524c2008-01-23 20:39:46 +00002337 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00002338 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sands082524c2008-01-23 20:39:46 +00002339 TLI);
2340 Tmp1 = Result.getOperand(0);
2341 Tmp2 = Result.getOperand(1);
2342 Tmp1 = LegalizeOp(Tmp1);
2343 Tmp2 = LegalizeOp(Tmp2);
2344 }
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002345 }
2346 }
Duncan Sands082524c2008-01-23 20:39:46 +00002347 break;
2348 case TargetLowering::Expand:
2349 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2350 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002351 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sands082524c2008-01-23 20:39:46 +00002352 LD->getSrcValueOffset(),
2353 LD->isVolatile(), LD->getAlignment());
Scott Michel91099d62009-02-17 22:15:04 +00002354 Result = DAG.getNode(ISD::FP_EXTEND, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002355 Node->getValueType(0), Load);
Duncan Sands082524c2008-01-23 20:39:46 +00002356 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2357 Tmp2 = LegalizeOp(Load.getValue(1));
2358 break;
2359 }
2360 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2361 // Turn the unsupported load into an EXTLOAD followed by an explicit
2362 // zero/sign extend inreg.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002363 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Duncan Sands082524c2008-01-23 20:39:46 +00002364 Tmp1, Tmp2, LD->getSrcValue(),
2365 LD->getSrcValueOffset(), SrcVT,
2366 LD->isVolatile(), LD->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +00002367 SDValue ValRes;
Duncan Sands082524c2008-01-23 20:39:46 +00002368 if (ExtType == ISD::SEXTLOAD)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002369 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2370 Result.getValueType(),
Duncan Sands082524c2008-01-23 20:39:46 +00002371 Result, DAG.getValueType(SrcVT));
2372 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002373 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
Duncan Sands082524c2008-01-23 20:39:46 +00002374 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2375 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002376 break;
2377 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002378 }
Duncan Sands082524c2008-01-23 20:39:46 +00002379
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002380 // Since loads produce two values, make sure to remember that we legalized
2381 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002382 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2383 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002384 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002385 }
2386 }
2387 case ISD::EXTRACT_ELEMENT: {
Duncan Sands92c43912008-06-06 12:08:01 +00002388 MVT OpTy = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002389 switch (getTypeAction(OpTy)) {
2390 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
2391 case Legal:
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002392 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002393 // 1 -> Hi
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002394 Result = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Duncan Sands92c43912008-06-06 12:08:01 +00002395 DAG.getConstant(OpTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002396 TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002397 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002398 } else {
2399 // 0 -> Lo
Scott Michel91099d62009-02-17 22:15:04 +00002400 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002401 Node->getOperand(0));
2402 }
2403 break;
2404 case Expand:
2405 // Get both the low and high parts.
2406 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002407 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002408 Result = Tmp2; // 1 -> Hi
2409 else
2410 Result = Tmp1; // 0 -> Lo
2411 break;
2412 }
2413 break;
2414 }
2415
2416 case ISD::CopyToReg:
2417 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2418
2419 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
2420 "Register type must be legal!");
2421 // Legalize the incoming value (must be a legal type).
2422 Tmp2 = LegalizeOp(Node->getOperand(2));
2423 if (Node->getNumValues() == 1) {
2424 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
2425 } else {
2426 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
2427 if (Node->getNumOperands() == 4) {
2428 Tmp3 = LegalizeOp(Node->getOperand(3));
2429 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2430 Tmp3);
2431 } else {
2432 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
2433 }
Scott Michel91099d62009-02-17 22:15:04 +00002434
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002435 // Since this produces two values, make sure to remember that we legalized
2436 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002437 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2438 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002439 return Result;
2440 }
2441 break;
2442
2443 case ISD::RET:
2444 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2445
2446 // Ensure that libcalls are emitted before a return.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002447 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002448 Tmp1 = LegalizeOp(Tmp1);
2449 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00002450
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002451 switch (Node->getNumOperands()) {
2452 case 3: // ret val
2453 Tmp2 = Node->getOperand(1);
2454 Tmp3 = Node->getOperand(2); // Signness
2455 switch (getTypeAction(Tmp2.getValueType())) {
2456 case Legal:
2457 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
2458 break;
2459 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +00002460 if (!Tmp2.getValueType().isVector()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002461 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002462 ExpandOp(Tmp2, Lo, Hi);
2463
2464 // Big endian systems want the hi reg first.
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002465 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002466 std::swap(Lo, Hi);
Scott Michel91099d62009-02-17 22:15:04 +00002467
Gabor Greif1c80d112008-08-28 21:40:38 +00002468 if (Hi.getNode())
Scott Michel91099d62009-02-17 22:15:04 +00002469 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilson2e958a42009-04-10 18:48:47 +00002470 Tmp1, Lo, Tmp3, Hi, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002471 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002472 Result = DAG.getNode(ISD::RET, dl, MVT::Other, Tmp1, Lo, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002473 Result = LegalizeOp(Result);
2474 } else {
Gabor Greif1c80d112008-08-28 21:40:38 +00002475 SDNode *InVal = Tmp2.getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002476 int InIx = Tmp2.getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002477 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2478 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michel91099d62009-02-17 22:15:04 +00002479
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002480 // Figure out if there is a simple type corresponding to this Vector
2481 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002482 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002483 if (TLI.isTypeLegal(TVT)) {
2484 // Turn this into a return of the vector type.
2485 Tmp2 = LegalizeOp(Tmp2);
2486 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2487 } else if (NumElems == 1) {
2488 // Turn this into a return of the scalar type.
2489 Tmp2 = ScalarizeVectorOp(Tmp2);
2490 Tmp2 = LegalizeOp(Tmp2);
2491 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michel91099d62009-02-17 22:15:04 +00002492
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002493 // FIXME: Returns of gcc generic vectors smaller than a legal type
2494 // should be returned in integer registers!
Scott Michel91099d62009-02-17 22:15:04 +00002495
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002496 // The scalarized value type may not be legal, e.g. it might require
2497 // promotion or expansion. Relegalize the return.
2498 Result = LegalizeOp(Result);
2499 } else {
2500 // FIXME: Returns of gcc generic vectors larger than a legal vector
2501 // type should be returned by reference!
Dan Gohman8181bd12008-07-27 21:46:04 +00002502 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002503 SplitVectorOp(Tmp2, Lo, Hi);
Scott Michel91099d62009-02-17 22:15:04 +00002504 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilson2e958a42009-04-10 18:48:47 +00002505 Tmp1, Lo, Tmp3, Hi, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002506 Result = LegalizeOp(Result);
2507 }
2508 }
2509 break;
2510 case Promote:
2511 Tmp2 = PromoteOp(Node->getOperand(1));
2512 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2513 Result = LegalizeOp(Result);
2514 break;
2515 }
2516 break;
2517 case 1: // ret void
2518 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2519 break;
2520 default: { // ret <values>
Dan Gohman8181bd12008-07-27 21:46:04 +00002521 SmallVector<SDValue, 8> NewValues;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002522 NewValues.push_back(Tmp1);
2523 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
2524 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2525 case Legal:
2526 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
2527 NewValues.push_back(Node->getOperand(i+1));
2528 break;
2529 case Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002530 SDValue Lo, Hi;
Duncan Sands92c43912008-06-06 12:08:01 +00002531 assert(!Node->getOperand(i).getValueType().isExtended() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002532 "FIXME: TODO: implement returning non-legal vector types!");
2533 ExpandOp(Node->getOperand(i), Lo, Hi);
2534 NewValues.push_back(Lo);
2535 NewValues.push_back(Node->getOperand(i+1));
Gabor Greif1c80d112008-08-28 21:40:38 +00002536 if (Hi.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002537 NewValues.push_back(Hi);
2538 NewValues.push_back(Node->getOperand(i+1));
2539 }
2540 break;
2541 }
2542 case Promote:
2543 assert(0 && "Can't promote multiple return value yet!");
2544 }
Scott Michel91099d62009-02-17 22:15:04 +00002545
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002546 if (NewValues.size() == Node->getNumOperands())
2547 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
2548 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002549 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002550 &NewValues[0], NewValues.size());
2551 break;
2552 }
2553 }
2554
2555 if (Result.getOpcode() == ISD::RET) {
2556 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2557 default: assert(0 && "This action is not supported yet!");
2558 case TargetLowering::Legal: break;
2559 case TargetLowering::Custom:
2560 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002561 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002562 break;
2563 }
2564 }
2565 break;
2566 case ISD::STORE: {
2567 StoreSDNode *ST = cast<StoreSDNode>(Node);
2568 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2569 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
2570 int SVOffset = ST->getSrcValueOffset();
2571 unsigned Alignment = ST->getAlignment();
2572 bool isVolatile = ST->isVolatile();
2573
2574 if (!ST->isTruncatingStore()) {
2575 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2576 // FIXME: We shouldn't do this for TargetConstantFP's.
2577 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2578 // to phase ordering between legalized code and the dag combiner. This
2579 // probably means that we need to integrate dag combiner and legalizer
2580 // together.
Dale Johannesen2fc20782007-09-14 22:26:36 +00002581 // We generally can't do this one for long doubles.
Chris Lattnere8671c52007-10-13 06:35:54 +00002582 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Scott Michel91099d62009-02-17 22:15:04 +00002583 if (CFP->getValueType(0) == MVT::f32 &&
Chris Lattner19f229a2007-10-15 05:46:06 +00002584 getTypeAction(MVT::i32) == Legal) {
Dan Gohman39509762008-03-11 00:11:06 +00002585 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002586 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen1616e902007-09-11 18:32:33 +00002587 MVT::i32);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002588 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dale Johannesen2fc20782007-09-14 22:26:36 +00002589 SVOffset, isVolatile, Alignment);
2590 break;
2591 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002592 // If this target supports 64-bit registers, do a single 64-bit store.
2593 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002594 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman39509762008-03-11 00:11:06 +00002595 zextOrTrunc(64), MVT::i64);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002596 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner19f229a2007-10-15 05:46:06 +00002597 SVOffset, isVolatile, Alignment);
2598 break;
Duncan Sands2418bec2008-06-13 19:07:40 +00002599 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002600 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2601 // stores. If the target supports neither 32- nor 64-bits, this
2602 // xform is certainly not worth it.
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002603 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman8181bd12008-07-27 21:46:04 +00002604 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2605 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002606 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner19f229a2007-10-15 05:46:06 +00002607
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002608 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Chris Lattner19f229a2007-10-15 05:46:06 +00002609 SVOffset, isVolatile, Alignment);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002610 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002611 DAG.getIntPtrConstant(4));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002612 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsa3691432007-10-28 12:59:45 +00002613 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner19f229a2007-10-15 05:46:06 +00002614
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002615 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Chris Lattner19f229a2007-10-15 05:46:06 +00002616 break;
2617 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002618 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002619 }
Scott Michel91099d62009-02-17 22:15:04 +00002620
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002621 switch (getTypeAction(ST->getMemoryVT())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002622 case Legal: {
2623 Tmp3 = LegalizeOp(ST->getValue());
Scott Michel91099d62009-02-17 22:15:04 +00002624 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002625 ST->getOffset());
2626
Duncan Sands92c43912008-06-06 12:08:01 +00002627 MVT VT = Tmp3.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002628 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2629 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002630 case TargetLowering::Legal:
2631 // If this is an unaligned store and the target doesn't support it,
2632 // expand it.
2633 if (!TLI.allowsUnalignedMemoryAccesses()) {
2634 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002635 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002636 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002637 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002638 TLI);
2639 }
2640 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002641 case TargetLowering::Custom:
2642 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002643 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002644 break;
2645 case TargetLowering::Promote:
Duncan Sands92c43912008-06-06 12:08:01 +00002646 assert(VT.isVector() && "Unknown legal promote case!");
Scott Michel91099d62009-02-17 22:15:04 +00002647 Tmp3 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002648 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002649 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002650 ST->getSrcValue(), SVOffset, isVolatile,
2651 Alignment);
2652 break;
2653 }
2654 break;
2655 }
2656 case Promote:
Mon P Wang1448aad2008-10-30 08:01:45 +00002657 if (!ST->getMemoryVT().isVector()) {
2658 // Truncate the value and store the result.
2659 Tmp3 = PromoteOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002660 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Mon P Wang1448aad2008-10-30 08:01:45 +00002661 SVOffset, ST->getMemoryVT(),
2662 isVolatile, Alignment);
2663 break;
2664 }
2665 // Fall thru to expand for vector
2666 case Expand: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002667 unsigned IncrementSize = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002668 SDValue Lo, Hi;
Scott Michel91099d62009-02-17 22:15:04 +00002669
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002670 // If this is a vector type, then we have to calculate the increment as
2671 // the product of the element size in bytes, and the number of elements
2672 // in the high half of the vector.
Duncan Sands92c43912008-06-06 12:08:01 +00002673 if (ST->getValue().getValueType().isVector()) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002674 SDNode *InVal = ST->getValue().getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002675 int InIx = ST->getValue().getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002676 MVT InVT = InVal->getValueType(InIx);
2677 unsigned NumElems = InVT.getVectorNumElements();
2678 MVT EVT = InVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002679
2680 // Figure out if there is a simple type corresponding to this Vector
2681 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002682 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002683 if (TLI.isTypeLegal(TVT)) {
2684 // Turn this into a normal store of the vector type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002685 Tmp3 = LegalizeOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002686 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002687 SVOffset, isVolatile, Alignment);
2688 Result = LegalizeOp(Result);
2689 break;
2690 } else if (NumElems == 1) {
2691 // Turn this into a normal store of the scalar type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002692 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002693 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002694 SVOffset, isVolatile, Alignment);
2695 // The scalarized value type may not be legal, e.g. it might require
2696 // promotion or expansion. Relegalize the scalar store.
2697 Result = LegalizeOp(Result);
2698 break;
2699 } else {
Mon P Wang1448aad2008-10-30 08:01:45 +00002700 // Check if we have widen this node with another value
2701 std::map<SDValue, SDValue>::iterator I =
2702 WidenNodes.find(ST->getValue());
2703 if (I != WidenNodes.end()) {
2704 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2705 break;
2706 }
2707 else {
2708 SplitVectorOp(ST->getValue(), Lo, Hi);
2709 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2710 EVT.getSizeInBits()/8;
2711 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002712 }
2713 } else {
Dan Gohmane9f633d2008-02-15 18:11:59 +00002714 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greif1c80d112008-08-28 21:40:38 +00002715 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002716
Richard Pennington73ae9e42008-09-25 16:15:10 +00002717 if (Hi.getNode() && TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002718 std::swap(Lo, Hi);
2719 }
2720
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002721 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002722 SVOffset, isVolatile, Alignment);
2723
Gabor Greif1c80d112008-08-28 21:40:38 +00002724 if (Hi.getNode() == NULL) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002725 // Must be int <-> float one-to-one expansion.
2726 Result = Lo;
2727 break;
2728 }
2729
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002730 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002731 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002732 assert(isTypeLegal(Tmp2.getValueType()) &&
2733 "Pointers must be legal!");
2734 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00002735 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002736 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002737 SVOffset, isVolatile, Alignment);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002738 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002739 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00002740 } // case Expand
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002741 }
2742 } else {
Chris Lattner3bc08502008-01-17 19:59:44 +00002743 switch (getTypeAction(ST->getValue().getValueType())) {
2744 case Legal:
2745 Tmp3 = LegalizeOp(ST->getValue());
2746 break;
2747 case Promote:
Mon P Wang1448aad2008-10-30 08:01:45 +00002748 if (!ST->getValue().getValueType().isVector()) {
2749 // We can promote the value, the truncstore will still take care of it.
2750 Tmp3 = PromoteOp(ST->getValue());
2751 break;
2752 }
2753 // Vector case falls through to expand
Chris Lattner3bc08502008-01-17 19:59:44 +00002754 case Expand:
2755 // Just store the low part. This may become a non-trunc store, so make
2756 // sure to use getTruncStore, not UpdateNodeOperands below.
2757 ExpandOp(ST->getValue(), Tmp3, Tmp4);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002758 return DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner3bc08502008-01-17 19:59:44 +00002759 SVOffset, MVT::i8, isVolatile, Alignment);
2760 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002761
Duncan Sands92c43912008-06-06 12:08:01 +00002762 MVT StVT = ST->getMemoryVT();
2763 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands40676662008-01-22 07:17:34 +00002764
Duncan Sands92c43912008-06-06 12:08:01 +00002765 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands40676662008-01-22 07:17:34 +00002766 // Promote to a byte-sized store with upper bits zero if not
2767 // storing an integral number of bytes. For example, promote
2768 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands92c43912008-06-06 12:08:01 +00002769 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002770 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
2771 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002772 SVOffset, NVT, isVolatile, Alignment);
2773 } else if (StWidth & (StWidth - 1)) {
2774 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands92c43912008-06-06 12:08:01 +00002775 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands40676662008-01-22 07:17:34 +00002776 "Unsupported truncstore!");
2777 unsigned RoundWidth = 1 << Log2_32(StWidth);
2778 assert(RoundWidth < StWidth);
2779 unsigned ExtraWidth = StWidth - RoundWidth;
2780 assert(ExtraWidth < RoundWidth);
2781 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2782 "Store size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002783 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2784 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002785 SDValue Lo, Hi;
Duncan Sands40676662008-01-22 07:17:34 +00002786 unsigned IncrementSize;
2787
2788 if (TLI.isLittleEndian()) {
2789 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2790 // Store the bottom RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002791 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002792 SVOffset, RoundVT,
2793 isVolatile, Alignment);
2794
2795 // Store the remaining ExtraWidth bits.
2796 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002797 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands40676662008-01-22 07:17:34 +00002798 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002799 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands40676662008-01-22 07:17:34 +00002800 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002801 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002802 SVOffset + IncrementSize, ExtraVT, isVolatile,
2803 MinAlign(Alignment, IncrementSize));
2804 } else {
2805 // Big endian - avoid unaligned stores.
2806 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2807 // Store the top RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002808 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands40676662008-01-22 07:17:34 +00002809 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002810 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
2811 SVOffset, RoundVT, isVolatile, Alignment);
Duncan Sands40676662008-01-22 07:17:34 +00002812
2813 // Store the remaining ExtraWidth bits.
2814 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002815 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands40676662008-01-22 07:17:34 +00002816 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002817 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002818 SVOffset + IncrementSize, ExtraVT, isVolatile,
2819 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002820 }
Duncan Sands40676662008-01-22 07:17:34 +00002821
2822 // The order of the stores doesn't matter.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002823 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Duncan Sands40676662008-01-22 07:17:34 +00002824 } else {
2825 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2826 Tmp2 != ST->getBasePtr())
2827 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2828 ST->getOffset());
2829
2830 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2831 default: assert(0 && "This action is not supported yet!");
2832 case TargetLowering::Legal:
2833 // If this is an unaligned store and the target doesn't support it,
2834 // expand it.
2835 if (!TLI.allowsUnalignedMemoryAccesses()) {
2836 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002837 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands40676662008-01-22 07:17:34 +00002838 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002839 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands40676662008-01-22 07:17:34 +00002840 TLI);
2841 }
2842 break;
2843 case TargetLowering::Custom:
2844 Result = TLI.LowerOperation(Result, DAG);
2845 break;
2846 case Expand:
2847 // TRUNCSTORE:i16 i32 -> STORE i16
2848 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002849 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
2850 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
2851 SVOffset, isVolatile, Alignment);
Duncan Sands40676662008-01-22 07:17:34 +00002852 break;
2853 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002854 }
2855 }
2856 break;
2857 }
2858 case ISD::PCMARKER:
2859 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2860 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
2861 break;
2862 case ISD::STACKSAVE:
2863 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2864 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2865 Tmp1 = Result.getValue(0);
2866 Tmp2 = Result.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00002867
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002868 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2869 default: assert(0 && "This action is not supported yet!");
2870 case TargetLowering::Legal: break;
2871 case TargetLowering::Custom:
2872 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002873 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002874 Tmp1 = LegalizeOp(Tmp3);
2875 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2876 }
2877 break;
2878 case TargetLowering::Expand:
Scott Michel91099d62009-02-17 22:15:04 +00002879 // Expand to CopyFromReg if the target set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002880 // StackPointerRegisterToSaveRestore.
2881 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesen564036c2009-02-04 00:13:36 +00002882 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), dl, SP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002883 Node->getValueType(0));
2884 Tmp2 = Tmp1.getValue(1);
2885 } else {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00002886 Tmp1 = DAG.getUNDEF(Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002887 Tmp2 = Node->getOperand(0);
2888 }
2889 break;
2890 }
2891
2892 // Since stacksave produce two values, make sure to remember that we
2893 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002894 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2895 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002896 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002897
2898 case ISD::STACKRESTORE:
2899 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2900 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2901 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00002902
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002903 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2904 default: assert(0 && "This action is not supported yet!");
2905 case TargetLowering::Legal: break;
2906 case TargetLowering::Custom:
2907 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002908 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002909 break;
2910 case TargetLowering::Expand:
Scott Michel91099d62009-02-17 22:15:04 +00002911 // Expand to CopyToReg if the target set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002912 // StackPointerRegisterToSaveRestore.
2913 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesen564036c2009-02-04 00:13:36 +00002914 Result = DAG.getCopyToReg(Tmp1, dl, SP, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002915 } else {
2916 Result = Tmp1;
2917 }
2918 break;
2919 }
2920 break;
2921
2922 case ISD::READCYCLECOUNTER:
2923 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
2924 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2925 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2926 Node->getValueType(0))) {
2927 default: assert(0 && "This action is not supported yet!");
2928 case TargetLowering::Legal:
2929 Tmp1 = Result.getValue(0);
2930 Tmp2 = Result.getValue(1);
2931 break;
2932 case TargetLowering::Custom:
2933 Result = TLI.LowerOperation(Result, DAG);
2934 Tmp1 = LegalizeOp(Result.getValue(0));
2935 Tmp2 = LegalizeOp(Result.getValue(1));
2936 break;
2937 }
2938
2939 // Since rdcc produce two values, make sure to remember that we legalized
2940 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002941 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2942 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002943 return Result;
2944
2945 case ISD::SELECT:
2946 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2947 case Expand: assert(0 && "It's impossible to expand bools");
2948 case Legal:
2949 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2950 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00002951 case Promote: {
Mon P Wang1448aad2008-10-30 08:01:45 +00002952 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002953 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
2954 // Make sure the condition is either zero or one.
Dan Gohman07961cd2008-02-25 21:11:39 +00002955 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002956 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman07961cd2008-02-25 21:11:39 +00002957 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002958 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, MVT::i1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002959 break;
2960 }
Dan Gohman07961cd2008-02-25 21:11:39 +00002961 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002962 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
2963 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
2964
2965 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michel91099d62009-02-17 22:15:04 +00002966
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002967 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
2968 default: assert(0 && "This action is not supported yet!");
2969 case TargetLowering::Legal: break;
2970 case TargetLowering::Custom: {
2971 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002972 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002973 break;
2974 }
2975 case TargetLowering::Expand:
2976 if (Tmp1.getOpcode() == ISD::SETCC) {
Scott Michel91099d62009-02-17 22:15:04 +00002977 Result = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002978 Tmp2, Tmp3,
2979 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2980 } else {
Scott Michel91099d62009-02-17 22:15:04 +00002981 Result = DAG.getSelectCC(dl, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002982 DAG.getConstant(0, Tmp1.getValueType()),
2983 Tmp2, Tmp3, ISD::SETNE);
2984 }
2985 break;
2986 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00002987 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002988 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2989 unsigned ExtOp, TruncOp;
Duncan Sands92c43912008-06-06 12:08:01 +00002990 if (Tmp2.getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002991 ExtOp = ISD::BIT_CONVERT;
2992 TruncOp = ISD::BIT_CONVERT;
Duncan Sands92c43912008-06-06 12:08:01 +00002993 } else if (Tmp2.getValueType().isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002994 ExtOp = ISD::ANY_EXTEND;
2995 TruncOp = ISD::TRUNCATE;
2996 } else {
2997 ExtOp = ISD::FP_EXTEND;
2998 TruncOp = ISD::FP_ROUND;
2999 }
3000 // Promote each of the values to the new type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003001 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Tmp2);
3002 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003003 // Perform the larger operation, then round down.
Bob Wilson2e958a42009-04-10 18:48:47 +00003004 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
Chris Lattner5872a362008-01-17 07:00:52 +00003005 if (TruncOp != ISD::FP_ROUND)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003006 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result);
Chris Lattner5872a362008-01-17 07:00:52 +00003007 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003008 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result,
Chris Lattner5872a362008-01-17 07:00:52 +00003009 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003010 break;
3011 }
3012 }
3013 break;
3014 case ISD::SELECT_CC: {
3015 Tmp1 = Node->getOperand(0); // LHS
3016 Tmp2 = Node->getOperand(1); // RHS
3017 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
3018 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman8181bd12008-07-27 21:46:04 +00003019 SDValue CC = Node->getOperand(4);
Scott Michel91099d62009-02-17 22:15:04 +00003020
3021 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
Dale Johannesen352c47e2009-02-02 20:41:04 +00003022 Tmp1, Tmp2, CC, dl);
Scott Michel91099d62009-02-17 22:15:04 +00003023
Evan Cheng71343822008-10-15 02:05:31 +00003024 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003025 // the LHS is a legal SETCC itself. In this case, we need to compare
3026 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00003027 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003028 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3029 CC = DAG.getCondCode(ISD::SETNE);
3030 }
3031 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3032
3033 // Everything is legal, see if we should expand this op or something.
3034 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3035 default: assert(0 && "This action is not supported yet!");
3036 case TargetLowering::Legal: break;
3037 case TargetLowering::Custom:
3038 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003039 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003040 break;
3041 }
3042 break;
3043 }
3044 case ISD::SETCC:
3045 Tmp1 = Node->getOperand(0);
3046 Tmp2 = Node->getOperand(1);
3047 Tmp3 = Node->getOperand(2);
Dale Johannesen352c47e2009-02-02 20:41:04 +00003048 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Scott Michel91099d62009-02-17 22:15:04 +00003049
3050 // If we had to Expand the SetCC operands into a SELECT node, then it may
3051 // not always be possible to return a true LHS & RHS. In this case, just
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003052 // return the value we legalized, returned in the LHS
Gabor Greif1c80d112008-08-28 21:40:38 +00003053 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003054 Result = Tmp1;
3055 break;
3056 }
3057
3058 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
3059 default: assert(0 && "Cannot handle this action for SETCC yet!");
3060 case TargetLowering::Custom:
3061 isCustom = true;
3062 // FALLTHROUGH.
3063 case TargetLowering::Legal:
3064 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3065 if (isCustom) {
3066 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003067 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003068 }
3069 break;
3070 case TargetLowering::Promote: {
3071 // First step, figure out the appropriate operation to use.
3072 // Allow SETCC to not be supported for all legal data types
3073 // Mostly this targets FP
Duncan Sands92c43912008-06-06 12:08:01 +00003074 MVT NewInTy = Node->getOperand(0).getValueType();
3075 MVT OldVT = NewInTy; OldVT = OldVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003076
3077 // Scan for the appropriate larger type to use.
3078 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00003079 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003080
Duncan Sands92c43912008-06-06 12:08:01 +00003081 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003082 "Fell off of the edge of the integer world");
Duncan Sands92c43912008-06-06 12:08:01 +00003083 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003084 "Fell off of the edge of the floating point world");
Scott Michel91099d62009-02-17 22:15:04 +00003085
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003086 // If the target supports SETCC of this type, use it.
Dan Gohman52c51aa2009-01-28 17:46:25 +00003087 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003088 break;
3089 }
Duncan Sands92c43912008-06-06 12:08:01 +00003090 if (NewInTy.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003091 assert(0 && "Cannot promote Legal Integer SETCC yet");
3092 else {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003093 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
3094 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003095 }
3096 Tmp1 = LegalizeOp(Tmp1);
3097 Tmp2 = LegalizeOp(Tmp2);
3098 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3099 Result = LegalizeOp(Result);
3100 break;
3101 }
3102 case TargetLowering::Expand:
3103 // Expand a setcc node into a select_cc of the same condition, lhs, and
3104 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands92c43912008-06-06 12:08:01 +00003105 MVT VT = Node->getValueType(0);
Scott Michel91099d62009-02-17 22:15:04 +00003106 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003107 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
3108 Tmp3);
3109 break;
3110 }
3111 break;
Nate Begeman9a1ce152008-05-12 19:40:03 +00003112 case ISD::VSETCC: {
3113 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3114 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman8181bd12008-07-27 21:46:04 +00003115 SDValue CC = Node->getOperand(2);
Scott Michel91099d62009-02-17 22:15:04 +00003116
Nate Begeman9a1ce152008-05-12 19:40:03 +00003117 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3118
3119 // Everything is legal, see if we should expand this op or something.
3120 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3121 default: assert(0 && "This action is not supported yet!");
3122 case TargetLowering::Legal: break;
3123 case TargetLowering::Custom:
3124 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003125 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9a1ce152008-05-12 19:40:03 +00003126 break;
Mon P Wangec428ad2008-12-13 08:15:14 +00003127 case TargetLowering::Expand: {
3128 // Unroll into a nasty set of scalar code for now.
3129 MVT VT = Node->getValueType(0);
3130 unsigned NumElems = VT.getVectorNumElements();
3131 MVT EltVT = VT.getVectorElementType();
3132 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3133 SmallVector<SDValue, 8> Ops(NumElems);
3134 for (unsigned i = 0; i < NumElems; ++i) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003135 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT,
Mon P Wangec428ad2008-12-13 08:15:14 +00003136 Tmp1, DAG.getIntPtrConstant(i));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003137 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
3138 In1, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3139 TmpEltVT, Tmp2,
3140 DAG.getIntPtrConstant(i)),
Mon P Wang77bc9cd2008-12-17 08:49:47 +00003141 CC);
Bob Wilson2e958a42009-04-10 18:48:47 +00003142 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i],
3143 DAG.getConstant(APInt::getAllOnesValue
3144 (EltVT.getSizeInBits()), EltVT),
3145 DAG.getConstant(0, EltVT));
Mon P Wangec428ad2008-12-13 08:15:14 +00003146 }
Evan Cheng907a2d22009-02-25 22:49:59 +00003147 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
Mon P Wangec428ad2008-12-13 08:15:14 +00003148 break;
3149 }
Nate Begeman9a1ce152008-05-12 19:40:03 +00003150 }
3151 break;
3152 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003153
3154 case ISD::SHL_PARTS:
3155 case ISD::SRA_PARTS:
3156 case ISD::SRL_PARTS: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003157 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003158 bool Changed = false;
Duncan Sands7d9e3612009-01-31 15:50:11 +00003159 unsigned N = Node->getNumOperands();
3160 for (unsigned i = 0; i + 1 < N; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003161 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3162 Changed |= Ops.back() != Node->getOperand(i);
3163 }
Duncan Sands7d9e3612009-01-31 15:50:11 +00003164 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3165 Changed |= Ops.back() != Node->getOperand(N-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003166 if (Changed)
3167 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
3168
3169 switch (TLI.getOperationAction(Node->getOpcode(),
3170 Node->getValueType(0))) {
3171 default: assert(0 && "This action is not supported yet!");
3172 case TargetLowering::Legal: break;
3173 case TargetLowering::Custom:
3174 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003175 if (Tmp1.getNode()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003176 SDValue Tmp2, RetVal(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003177 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
3178 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman8181bd12008-07-27 21:46:04 +00003179 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00003180 if (i == Op.getResNo())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003181 RetVal = Tmp2;
3182 }
Gabor Greif1c80d112008-08-28 21:40:38 +00003183 assert(RetVal.getNode() && "Illegal result number");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003184 return RetVal;
3185 }
3186 break;
3187 }
3188
3189 // Since these produce multiple values, make sure to remember that we
3190 // legalized all of them.
3191 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman8181bd12008-07-27 21:46:04 +00003192 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00003193 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003194 }
3195
3196 // Binary operators
3197 case ISD::ADD:
3198 case ISD::SUB:
3199 case ISD::MUL:
3200 case ISD::MULHS:
3201 case ISD::MULHU:
3202 case ISD::UDIV:
3203 case ISD::SDIV:
3204 case ISD::AND:
3205 case ISD::OR:
3206 case ISD::XOR:
3207 case ISD::SHL:
3208 case ISD::SRL:
3209 case ISD::SRA:
3210 case ISD::FADD:
3211 case ISD::FSUB:
3212 case ISD::FMUL:
3213 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00003214 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003215 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands7d9e3612009-01-31 15:50:11 +00003216 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begemanbb1ce942008-07-29 15:49:41 +00003217
3218 if ((Node->getOpcode() == ISD::SHL ||
3219 Node->getOpcode() == ISD::SRL ||
3220 Node->getOpcode() == ISD::SRA) &&
Duncan Sands7d9e3612009-01-31 15:50:11 +00003221 !Node->getValueType(0).isVector())
3222 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3223
3224 switch (getTypeAction(Tmp2.getValueType())) {
3225 case Expand: assert(0 && "Not possible");
3226 case Legal:
3227 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3228 break;
3229 case Promote:
3230 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3231 break;
Mon P Wangec428ad2008-12-13 08:15:14 +00003232 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00003233
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003234 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00003235
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003236 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3237 default: assert(0 && "BinOp legalize operation not supported");
3238 case TargetLowering::Legal: break;
3239 case TargetLowering::Custom:
3240 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003241 if (Tmp1.getNode()) {
Nate Begemanbb1ce942008-07-29 15:49:41 +00003242 Result = Tmp1;
3243 break;
Nate Begeman7569e762008-07-29 19:07:27 +00003244 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00003245 // Fall through if the custom lower can't deal with the operation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003246 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00003247 MVT VT = Op.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00003248
Dan Gohman5a199552007-10-08 18:33:35 +00003249 // See if multiply or divide can be lowered using two-result operations.
3250 SDVTList VTs = DAG.getVTList(VT, VT);
3251 if (Node->getOpcode() == ISD::MUL) {
3252 // We just need the low half of the multiply; try both the signed
3253 // and unsigned forms. If the target supports both SMUL_LOHI and
3254 // UMUL_LOHI, form a preference by checking which forms of plain
3255 // MULH it supports.
Dan Gohman52c51aa2009-01-28 17:46:25 +00003256 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3257 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3258 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3259 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman5a199552007-10-08 18:33:35 +00003260 unsigned OpToUse = 0;
3261 if (HasSMUL_LOHI && !HasMULHS) {
3262 OpToUse = ISD::SMUL_LOHI;
3263 } else if (HasUMUL_LOHI && !HasMULHU) {
3264 OpToUse = ISD::UMUL_LOHI;
3265 } else if (HasSMUL_LOHI) {
3266 OpToUse = ISD::SMUL_LOHI;
3267 } else if (HasUMUL_LOHI) {
3268 OpToUse = ISD::UMUL_LOHI;
3269 }
3270 if (OpToUse) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003271 Result = SDValue(DAG.getNode(OpToUse, dl, VTs, Tmp1, Tmp2).getNode(),
3272 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003273 break;
3274 }
3275 }
3276 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003277 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Scott Michel91099d62009-02-17 22:15:04 +00003278 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003279 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003280 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003281 break;
3282 }
Scott Michel91099d62009-02-17 22:15:04 +00003283 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003284 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003285 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl,
3286 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003287 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003288 break;
3289 }
3290 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003291 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michel91099d62009-02-17 22:15:04 +00003292 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003293 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003294 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003295 break;
3296 }
3297 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003298 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003299 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3300 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003301 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003302 break;
3303 }
Mon P Wang26342922008-12-18 20:03:17 +00003304
Dan Gohman6d05cac2007-10-11 23:57:53 +00003305 // Check to see if we have a libcall for this operator.
3306 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3307 bool isSigned = false;
3308 switch (Node->getOpcode()) {
3309 case ISD::UDIV:
3310 case ISD::SDIV:
Anton Korobeynikov38da80d2009-05-03 13:18:16 +00003311 isSigned = Node->getOpcode() == ISD::SDIV;
3312 if (VT == MVT::i16)
3313 LC = (isSigned ? RTLIB::SDIV_I16 : RTLIB::UDIV_I16);
3314 else if (VT == MVT::i32)
3315 LC = (isSigned ? RTLIB::SDIV_I32 : RTLIB::UDIV_I32);
3316 else if (VT == MVT::i64)
3317 LC = (isSigned ? RTLIB::SDIV_I64 : RTLIB::UDIV_I64);
3318 else if (VT == MVT::i128)
3319 LC = (isSigned ? RTLIB::SDIV_I128 : RTLIB::UDIV_I128);
3320 break;
Chris Lattner48188652008-10-04 21:27:46 +00003321 case ISD::MUL:
Anton Korobeynikov55e02492009-05-03 13:13:51 +00003322 if (VT == MVT::i16)
3323 LC = RTLIB::MUL_I16;
Anton Korobeynikov38da80d2009-05-03 13:18:16 +00003324 else if (VT == MVT::i32)
Chris Lattner48188652008-10-04 21:27:46 +00003325 LC = RTLIB::MUL_I32;
sampoa0d77372009-01-24 22:12:48 +00003326 else if (VT == MVT::i64)
Scott Michel81215042008-12-29 03:21:37 +00003327 LC = RTLIB::MUL_I64;
Anton Korobeynikov55e02492009-05-03 13:13:51 +00003328 else if (VT == MVT::i128)
3329 LC = RTLIB::MUL_I128;
Chris Lattner48188652008-10-04 21:27:46 +00003330 break;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003331 case ISD::FPOW:
Duncan Sands37a3f472008-01-10 10:28:30 +00003332 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3333 RTLIB::POW_PPCF128);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003334 break;
Scott Michel8c67fa42009-01-21 04:58:48 +00003335 case ISD::FDIV:
3336 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3337 RTLIB::DIV_PPCF128);
3338 break;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003339 default: break;
3340 }
3341 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003342 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003343 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003344 break;
3345 }
Scott Michel91099d62009-02-17 22:15:04 +00003346
Duncan Sands92c43912008-06-06 12:08:01 +00003347 assert(Node->getValueType(0).isVector() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003348 "Cannot expand this binary operator!");
3349 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman6d05cac2007-10-11 23:57:53 +00003350 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003351 break;
3352 }
3353 case TargetLowering::Promote: {
3354 switch (Node->getOpcode()) {
3355 default: assert(0 && "Do not know how to promote this BinOp!");
3356 case ISD::AND:
3357 case ISD::OR:
3358 case ISD::XOR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003359 MVT OVT = Node->getValueType(0);
3360 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3361 assert(OVT.isVector() && "Cannot promote this BinOp!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003362 // Bit convert each of the values to the new type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003363 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
3364 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
3365 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003366 // Bit convert the result back the original type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003367 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003368 break;
3369 }
3370 }
3371 }
3372 }
3373 break;
Scott Michel91099d62009-02-17 22:15:04 +00003374
Dan Gohman475cd732007-10-05 14:17:22 +00003375 case ISD::SMUL_LOHI:
3376 case ISD::UMUL_LOHI:
3377 case ISD::SDIVREM:
3378 case ISD::UDIVREM:
3379 // These nodes will only be produced by target-specific lowering, so
3380 // they shouldn't be here if they aren't legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +00003381 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohman475cd732007-10-05 14:17:22 +00003382 "This must be legal!");
Dan Gohman5a199552007-10-08 18:33:35 +00003383
3384 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3385 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3386 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman475cd732007-10-05 14:17:22 +00003387 break;
3388
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003389 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3390 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3391 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3392 case Expand: assert(0 && "Not possible");
3393 case Legal:
3394 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3395 break;
3396 case Promote:
3397 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3398 break;
3399 }
Scott Michel91099d62009-02-17 22:15:04 +00003400
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003401 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00003402
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003403 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3404 default: assert(0 && "Operation not supported");
3405 case TargetLowering::Custom:
3406 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003407 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003408 break;
3409 case TargetLowering::Legal: break;
3410 case TargetLowering::Expand: {
3411 // If this target supports fabs/fneg natively and select is cheap,
3412 // do this efficiently.
3413 if (!TLI.isSelectExpensive() &&
3414 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3415 TargetLowering::Legal &&
3416 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
3417 TargetLowering::Legal) {
3418 // Get the sign bit of the RHS.
Duncan Sands92c43912008-06-06 12:08:01 +00003419 MVT IVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003420 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003421 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, IVT, Tmp2);
3422 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(IVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003423 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3424 // Get the absolute value of the result.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003425 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003426 // Select between the nabs and abs value based on the sign bit of
3427 // the input.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003428 Result = DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
Scott Michel91099d62009-02-17 22:15:04 +00003429 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003430 AbsVal),
3431 AbsVal);
3432 Result = LegalizeOp(Result);
3433 break;
3434 }
Scott Michel91099d62009-02-17 22:15:04 +00003435
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003436 // Otherwise, do bitwise ops!
Duncan Sands92c43912008-06-06 12:08:01 +00003437 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003438 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3439 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003440 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003441 Result = LegalizeOp(Result);
3442 break;
3443 }
3444 }
3445 break;
Scott Michel91099d62009-02-17 22:15:04 +00003446
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003447 case ISD::ADDC:
3448 case ISD::SUBC:
3449 Tmp1 = LegalizeOp(Node->getOperand(0));
3450 Tmp2 = LegalizeOp(Node->getOperand(1));
3451 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003452 Tmp3 = Result.getValue(0);
3453 Tmp4 = Result.getValue(1);
3454
3455 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3456 default: assert(0 && "This action is not supported yet!");
3457 case TargetLowering::Legal:
3458 break;
3459 case TargetLowering::Custom:
3460 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3461 if (Tmp1.getNode() != NULL) {
Sanjiv Guptad57f2e12008-11-27 05:58:04 +00003462 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003463 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3464 }
3465 break;
3466 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003467 // Since this produces two values, make sure to remember that we legalized
3468 // both of them.
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003469 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3470 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3471 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003472
3473 case ISD::ADDE:
3474 case ISD::SUBE:
3475 Tmp1 = LegalizeOp(Node->getOperand(0));
3476 Tmp2 = LegalizeOp(Node->getOperand(1));
3477 Tmp3 = LegalizeOp(Node->getOperand(2));
3478 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003479 Tmp3 = Result.getValue(0);
3480 Tmp4 = Result.getValue(1);
3481
3482 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3483 default: assert(0 && "This action is not supported yet!");
3484 case TargetLowering::Legal:
3485 break;
3486 case TargetLowering::Custom:
3487 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3488 if (Tmp1.getNode() != NULL) {
Sanjiv Guptad57f2e12008-11-27 05:58:04 +00003489 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003490 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3491 }
3492 break;
3493 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003494 // Since this produces two values, make sure to remember that we legalized
3495 // both of them.
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003496 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3497 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3498 return Op.getResNo() ? Tmp4 : Tmp3;
Scott Michel91099d62009-02-17 22:15:04 +00003499
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003500 case ISD::BUILD_PAIR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003501 MVT PairTy = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003502 // TODO: handle the case where the Lo and Hi operands are not of legal type
3503 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3504 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3505 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
3506 case TargetLowering::Promote:
3507 case TargetLowering::Custom:
3508 assert(0 && "Cannot promote/custom this yet!");
3509 case TargetLowering::Legal:
3510 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003511 Result = DAG.getNode(ISD::BUILD_PAIR, dl, PairTy, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003512 break;
3513 case TargetLowering::Expand:
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003514 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Tmp1);
3515 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Tmp2);
3516 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003517 DAG.getConstant(PairTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003518 TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003519 Result = DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003520 break;
3521 }
3522 break;
3523 }
3524
3525 case ISD::UREM:
3526 case ISD::SREM:
3527 case ISD::FREM:
3528 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3529 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3530
3531 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3532 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3533 case TargetLowering::Custom:
3534 isCustom = true;
3535 // FALLTHROUGH
3536 case TargetLowering::Legal:
3537 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3538 if (isCustom) {
3539 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003540 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003541 }
3542 break;
Dan Gohman5a199552007-10-08 18:33:35 +00003543 case TargetLowering::Expand: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003544 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
3545 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands92c43912008-06-06 12:08:01 +00003546 MVT VT = Node->getValueType(0);
Scott Michel91099d62009-02-17 22:15:04 +00003547
Dan Gohman5a199552007-10-08 18:33:35 +00003548 // See if remainder can be lowered using two-result operations.
3549 SDVTList VTs = DAG.getVTList(VT, VT);
3550 if (Node->getOpcode() == ISD::SREM &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003551 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michel91099d62009-02-17 22:15:04 +00003552 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003553 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003554 break;
3555 }
3556 if (Node->getOpcode() == ISD::UREM &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003557 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003558 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3559 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003560 break;
3561 }
3562
Duncan Sands92c43912008-06-06 12:08:01 +00003563 if (VT.isInteger()) {
Dan Gohman5a199552007-10-08 18:33:35 +00003564 if (TLI.getOperationAction(DivOpc, VT) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003565 TargetLowering::Legal) {
3566 // X % Y -> X-X/Y*Y
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003567 Result = DAG.getNode(DivOpc, dl, VT, Tmp1, Tmp2);
3568 Result = DAG.getNode(ISD::MUL, dl, VT, Result, Tmp2);
3569 Result = DAG.getNode(ISD::SUB, dl, VT, Tmp1, Result);
Duncan Sands92c43912008-06-06 12:08:01 +00003570 } else if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003571 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003572 } else {
Dan Gohman5a199552007-10-08 18:33:35 +00003573 assert(VT == MVT::i32 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003574 "Cannot expand this binary operator!");
3575 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3576 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman8181bd12008-07-27 21:46:04 +00003577 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003578 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003579 }
Dan Gohman59b4b102007-11-06 22:11:54 +00003580 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00003581 assert(VT.isFloatingPoint() &&
Dan Gohman59b4b102007-11-06 22:11:54 +00003582 "remainder op must have integer or floating-point type");
Duncan Sands92c43912008-06-06 12:08:01 +00003583 if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003584 Result = LegalizeOp(UnrollVectorOp(Op));
3585 } else {
3586 // Floating point mod -> fmod libcall.
Duncan Sands37a3f472008-01-10 10:28:30 +00003587 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3588 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003589 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003590 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003591 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003592 }
3593 break;
3594 }
Dan Gohman5a199552007-10-08 18:33:35 +00003595 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003596 break;
3597 case ISD::VAARG: {
3598 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3599 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3600
Duncan Sands92c43912008-06-06 12:08:01 +00003601 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003602 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3603 default: assert(0 && "This action is not supported yet!");
3604 case TargetLowering::Custom:
3605 isCustom = true;
3606 // FALLTHROUGH
3607 case TargetLowering::Legal:
3608 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3609 Result = Result.getValue(0);
3610 Tmp1 = Result.getValue(1);
3611
3612 if (isCustom) {
3613 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003614 if (Tmp2.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003615 Result = LegalizeOp(Tmp2);
3616 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3617 }
3618 }
3619 break;
3620 case TargetLowering::Expand: {
Dan Gohman12a9c082008-02-06 22:27:42 +00003621 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003622 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003623 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003624 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sandsd68f13b2009-01-12 20:38:59 +00003625 DAG.getConstant(TLI.getTargetData()->
3626 getTypePaddedSize(VT.getTypeForMVT()),
3627 TLI.getPointerTy()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003628 // Store the incremented VAList to the legalized pointer
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003629 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003630 // Load the actual argument out of the pointer VAList
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003631 Result = DAG.getLoad(VT, dl, Tmp3, VAList, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003632 Tmp1 = LegalizeOp(Result.getValue(1));
3633 Result = LegalizeOp(Result);
3634 break;
3635 }
3636 }
Scott Michel91099d62009-02-17 22:15:04 +00003637 // Since VAARG produces two values, make sure to remember that we
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003638 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003639 AddLegalizedOperand(SDValue(Node, 0), Result);
3640 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00003641 return Op.getResNo() ? Tmp1 : Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003642 }
Scott Michel91099d62009-02-17 22:15:04 +00003643
3644 case ISD::VACOPY:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003645 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3646 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3647 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3648
3649 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3650 default: assert(0 && "This action is not supported yet!");
3651 case TargetLowering::Custom:
3652 isCustom = true;
3653 // FALLTHROUGH
3654 case TargetLowering::Legal:
3655 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3656 Node->getOperand(3), Node->getOperand(4));
3657 if (isCustom) {
3658 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003659 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003660 }
3661 break;
3662 case TargetLowering::Expand:
3663 // This defaults to loading a pointer from the input and storing it to the
3664 // output, returning the chain.
Dan Gohman12a9c082008-02-06 22:27:42 +00003665 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3666 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003667 Tmp4 = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp3, VS, 0);
3668 Result = DAG.getStore(Tmp4.getValue(1), dl, Tmp4, Tmp2, VD, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003669 break;
3670 }
3671 break;
3672
Scott Michel91099d62009-02-17 22:15:04 +00003673 case ISD::VAEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003674 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3675 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3676
3677 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3678 default: assert(0 && "This action is not supported yet!");
3679 case TargetLowering::Custom:
3680 isCustom = true;
3681 // FALLTHROUGH
3682 case TargetLowering::Legal:
3683 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3684 if (isCustom) {
3685 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003686 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003687 }
3688 break;
3689 case TargetLowering::Expand:
3690 Result = Tmp1; // Default to a no-op, return the chain
3691 break;
3692 }
3693 break;
Scott Michel91099d62009-02-17 22:15:04 +00003694
3695 case ISD::VASTART:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003696 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3697 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3698
3699 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michel91099d62009-02-17 22:15:04 +00003700
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003701 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3702 default: assert(0 && "This action is not supported yet!");
3703 case TargetLowering::Legal: break;
3704 case TargetLowering::Custom:
3705 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003706 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003707 break;
3708 }
3709 break;
Scott Michel91099d62009-02-17 22:15:04 +00003710
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003711 case ISD::ROTL:
3712 case ISD::ROTR:
3713 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands7d9e3612009-01-31 15:50:11 +00003714 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003715 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3716 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3717 default:
3718 assert(0 && "ROTL/ROTR legalize operation not supported");
3719 break;
3720 case TargetLowering::Legal:
3721 break;
3722 case TargetLowering::Custom:
3723 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003724 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003725 break;
3726 case TargetLowering::Promote:
3727 assert(0 && "Do not know how to promote ROTL/ROTR");
3728 break;
3729 case TargetLowering::Expand:
3730 assert(0 && "Do not know how to expand ROTL/ROTR");
3731 break;
3732 }
3733 break;
Scott Michel91099d62009-02-17 22:15:04 +00003734
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003735 case ISD::BSWAP:
3736 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3737 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3738 case TargetLowering::Custom:
3739 assert(0 && "Cannot custom legalize this yet!");
3740 case TargetLowering::Legal:
3741 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3742 break;
3743 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003744 MVT OVT = Tmp1.getValueType();
3745 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3746 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003747
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003748 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
3749 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3750 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003751 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3752 break;
3753 }
3754 case TargetLowering::Expand:
Dale Johannesen82b5b722009-02-02 22:12:50 +00003755 Result = ExpandBSWAP(Tmp1, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003756 break;
3757 }
3758 break;
Scott Michel91099d62009-02-17 22:15:04 +00003759
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003760 case ISD::CTPOP:
3761 case ISD::CTTZ:
3762 case ISD::CTLZ:
3763 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3764 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel48b63e62007-07-30 21:00:31 +00003765 case TargetLowering::Custom:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003766 case TargetLowering::Legal:
3767 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel48b63e62007-07-30 21:00:31 +00003768 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michelbc62b412007-08-02 02:22:46 +00003769 TargetLowering::Custom) {
3770 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003771 if (Tmp1.getNode()) {
Scott Michelbc62b412007-08-02 02:22:46 +00003772 Result = Tmp1;
3773 }
Scott Michel48b63e62007-07-30 21:00:31 +00003774 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003775 break;
3776 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003777 MVT OVT = Tmp1.getValueType();
3778 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003779
3780 // Zero extend the argument.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003781 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003782 // Perform the larger operation, then subtract if needed.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003783 Tmp1 = DAG.getNode(Node->getOpcode(), dl, Node->getValueType(0), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003784 switch (Node->getOpcode()) {
3785 case ISD::CTPOP:
3786 Result = Tmp1;
3787 break;
3788 case ISD::CTTZ:
3789 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003790 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
3791 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003792 ISD::SETEQ);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003793 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003794 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003795 break;
3796 case ISD::CTLZ:
3797 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003798 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00003799 DAG.getConstant(NVT.getSizeInBits() -
3800 OVT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003801 break;
3802 }
3803 break;
3804 }
3805 case TargetLowering::Expand:
Dale Johannesen82b5b722009-02-02 22:12:50 +00003806 Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003807 break;
3808 }
3809 break;
3810
3811 // Unary operators
3812 case ISD::FABS:
3813 case ISD::FNEG:
3814 case ISD::FSQRT:
3815 case ISD::FSIN:
3816 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003817 case ISD::FLOG:
3818 case ISD::FLOG2:
3819 case ISD::FLOG10:
3820 case ISD::FEXP:
3821 case ISD::FEXP2:
Dan Gohmanc8b20e22008-08-21 17:55:02 +00003822 case ISD::FTRUNC:
3823 case ISD::FFLOOR:
3824 case ISD::FCEIL:
3825 case ISD::FRINT:
3826 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003827 Tmp1 = LegalizeOp(Node->getOperand(0));
3828 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3829 case TargetLowering::Promote:
3830 case TargetLowering::Custom:
3831 isCustom = true;
3832 // FALLTHROUGH
3833 case TargetLowering::Legal:
3834 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3835 if (isCustom) {
3836 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003837 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003838 }
3839 break;
3840 case TargetLowering::Expand:
3841 switch (Node->getOpcode()) {
3842 default: assert(0 && "Unreachable!");
3843 case ISD::FNEG:
3844 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3845 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003846 Result = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp2, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003847 break;
3848 case ISD::FABS: {
3849 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands92c43912008-06-06 12:08:01 +00003850 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003851 Tmp2 = DAG.getConstantFP(0.0, VT);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003852 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00003853 Tmp1, Tmp2, ISD::SETUGT);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003854 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3855 Result = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003856 break;
3857 }
Evan Cheng1fac6952008-09-09 23:35:53 +00003858 case ISD::FSQRT:
3859 case ISD::FSIN:
Scott Michel91099d62009-02-17 22:15:04 +00003860 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003861 case ISD::FLOG:
3862 case ISD::FLOG2:
3863 case ISD::FLOG10:
3864 case ISD::FEXP:
3865 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00003866 case ISD::FTRUNC:
3867 case ISD::FFLOOR:
3868 case ISD::FCEIL:
3869 case ISD::FRINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00003870 case ISD::FNEARBYINT: {
Duncan Sands92c43912008-06-06 12:08:01 +00003871 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003872
3873 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003874 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003875 Result = LegalizeOp(UnrollVectorOp(Op));
3876 break;
3877 }
3878
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003879 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3880 switch(Node->getOpcode()) {
3881 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00003882 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3883 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003884 break;
3885 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00003886 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3887 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003888 break;
3889 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00003890 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3891 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003892 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00003893 case ISD::FLOG:
3894 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3895 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3896 break;
3897 case ISD::FLOG2:
3898 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3899 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3900 break;
3901 case ISD::FLOG10:
3902 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3903 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3904 break;
3905 case ISD::FEXP:
3906 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3907 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3908 break;
3909 case ISD::FEXP2:
3910 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3911 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3912 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00003913 case ISD::FTRUNC:
3914 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3915 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3916 break;
3917 case ISD::FFLOOR:
3918 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3919 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3920 break;
3921 case ISD::FCEIL:
3922 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3923 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3924 break;
3925 case ISD::FRINT:
3926 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3927 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3928 break;
3929 case ISD::FNEARBYINT:
3930 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3931 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3932 break;
Evan Cheng1fac6952008-09-09 23:35:53 +00003933 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003934 default: assert(0 && "Unreachable!");
3935 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003936 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003937 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003938 break;
3939 }
3940 }
3941 break;
3942 }
3943 break;
3944 case ISD::FPOWI: {
Duncan Sands92c43912008-06-06 12:08:01 +00003945 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003946
3947 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003948 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003949 Result = LegalizeOp(UnrollVectorOp(Op));
3950 break;
3951 }
3952
3953 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands37a3f472008-01-10 10:28:30 +00003954 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3955 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003956 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003957 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003958 break;
3959 }
3960 case ISD::BIT_CONVERT:
3961 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003962 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00003963 Node->getValueType(0), dl);
Duncan Sands92c43912008-06-06 12:08:01 +00003964 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003965 // The input has to be a vector type, we have to either scalarize it, pack
3966 // it, or convert it based on whether the input vector type is legal.
Gabor Greif1c80d112008-08-28 21:40:38 +00003967 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00003968 int InIx = Node->getOperand(0).getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00003969 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3970 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michel91099d62009-02-17 22:15:04 +00003971
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003972 // Figure out if there is a simple type corresponding to this Vector
3973 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00003974 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003975 if (TLI.isTypeLegal(TVT)) {
3976 // Turn this into a bit convert of the vector input.
Nate Begemanb44aad72009-04-29 22:47:44 +00003977 Tmp1 = LegalizeOp(Node->getOperand(0));
3978 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003979 break;
3980 } else if (NumElems == 1) {
3981 // Turn this into a bit convert of the scalar input.
Scott Michel91099d62009-02-17 22:15:04 +00003982 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003983 ScalarizeVectorOp(Node->getOperand(0)));
3984 break;
3985 } else {
3986 // FIXME: UNIMP! Store then reload
3987 assert(0 && "Cast from unsupported vector type not implemented yet!");
3988 }
3989 } else {
3990 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3991 Node->getOperand(0).getValueType())) {
3992 default: assert(0 && "Unknown operation action!");
3993 case TargetLowering::Expand:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003994 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00003995 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003996 break;
3997 case TargetLowering::Legal:
3998 Tmp1 = LegalizeOp(Node->getOperand(0));
3999 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4000 break;
4001 }
4002 }
4003 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004004 case ISD::CONVERT_RNDSAT: {
4005 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4006 switch (CvtCode) {
4007 default: assert(0 && "Unknown cvt code!");
4008 case ISD::CVT_SF:
4009 case ISD::CVT_UF:
Mon P Wang73d31542008-11-10 20:54:11 +00004010 case ISD::CVT_FF:
Mon P Wang2fc3f9e2008-12-09 07:27:39 +00004011 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004012 case ISD::CVT_FS:
4013 case ISD::CVT_FU:
4014 case ISD::CVT_SS:
4015 case ISD::CVT_SU:
4016 case ISD::CVT_US:
4017 case ISD::CVT_UU: {
4018 SDValue DTyOp = Node->getOperand(1);
4019 SDValue STyOp = Node->getOperand(2);
4020 SDValue RndOp = Node->getOperand(3);
4021 SDValue SatOp = Node->getOperand(4);
4022 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4023 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4024 case Legal:
4025 Tmp1 = LegalizeOp(Node->getOperand(0));
4026 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
4027 RndOp, SatOp);
4028 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4029 TargetLowering::Custom) {
4030 Tmp1 = TLI.LowerOperation(Result, DAG);
4031 if (Tmp1.getNode()) Result = Tmp1;
4032 }
4033 break;
4034 case Promote:
4035 Result = PromoteOp(Node->getOperand(0));
4036 // For FP, make Op1 a i32
Scott Michel91099d62009-02-17 22:15:04 +00004037
Dale Johannesen564036c2009-02-04 00:13:36 +00004038 Result = DAG.getConvertRndSat(Op.getValueType(), dl, Result,
Mon P Wang73d31542008-11-10 20:54:11 +00004039 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4040 break;
4041 }
4042 break;
4043 }
4044 } // end switch CvtCode
4045 break;
4046 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004047 // Conversion operators. The source and destination have different types.
4048 case ISD::SINT_TO_FP:
4049 case ISD::UINT_TO_FP: {
4050 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman29c3cef2008-08-14 20:04:46 +00004051 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesen9972b632009-02-02 19:03:57 +00004052 Node->getValueType(0), Node->getOperand(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004053 break;
4054 }
4055 case ISD::TRUNCATE:
4056 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4057 case Legal:
4058 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michele9b8a402008-12-02 19:55:08 +00004059 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4060 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4061 case TargetLowering::Custom:
Mon P Wang72fe5462008-12-11 00:44:22 +00004062 isCustom = true;
4063 // FALLTHROUGH
Scott Michele9b8a402008-12-02 19:55:08 +00004064 case TargetLowering::Legal:
Mon P Wang72fe5462008-12-11 00:44:22 +00004065 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4066 if (isCustom) {
4067 Tmp1 = TLI.LowerOperation(Result, DAG);
4068 if (Tmp1.getNode()) Result = Tmp1;
4069 }
4070 break;
Mon P Wang83edba52008-12-12 01:25:51 +00004071 case TargetLowering::Expand:
4072 assert(Result.getValueType().isVector() && "must be vector type");
4073 // Unroll the truncate. We should do better.
4074 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerbfc55ee2008-12-02 12:12:25 +00004075 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004076 break;
4077 case Expand:
4078 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4079
4080 // Since the result is legal, we should just be able to truncate the low
4081 // part of the source.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004082 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004083 break;
4084 case Promote:
4085 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004086 Result = DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004087 break;
4088 }
4089 break;
4090
4091 case ISD::FP_TO_SINT:
4092 case ISD::FP_TO_UINT:
4093 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4094 case Legal:
4095 Tmp1 = LegalizeOp(Node->getOperand(0));
4096
4097 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4098 default: assert(0 && "Unknown operation action!");
4099 case TargetLowering::Custom:
4100 isCustom = true;
4101 // FALLTHROUGH
4102 case TargetLowering::Legal:
4103 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4104 if (isCustom) {
4105 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004106 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004107 }
4108 break;
4109 case TargetLowering::Promote:
4110 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Scott Michel91099d62009-02-17 22:15:04 +00004111 Node->getOpcode() == ISD::FP_TO_SINT,
Dale Johannesen9972b632009-02-02 19:03:57 +00004112 dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004113 break;
4114 case TargetLowering::Expand:
4115 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004116 SDValue True, False;
Duncan Sands92c43912008-06-06 12:08:01 +00004117 MVT VT = Node->getOperand(0).getValueType();
4118 MVT NVT = Node->getValueType(0);
Dale Johannesen958b08b2007-09-19 23:55:34 +00004119 const uint64_t zero[] = {0, 0};
Duncan Sands92c43912008-06-06 12:08:01 +00004120 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4121 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohman88ae8c52008-02-29 01:44:25 +00004122 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen958b08b2007-09-19 23:55:34 +00004123 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel91099d62009-02-17 22:15:04 +00004124 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
Dale Johannesen9972b632009-02-02 19:03:57 +00004125 Node->getOperand(0),
Duncan Sands4a361272009-01-01 15:52:00 +00004126 Tmp2, ISD::SETLT);
Dale Johannesen9972b632009-02-02 19:03:57 +00004127 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4128 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
Scott Michel91099d62009-02-17 22:15:04 +00004129 DAG.getNode(ISD::FSUB, dl, VT,
Dale Johannesen9972b632009-02-02 19:03:57 +00004130 Node->getOperand(0), Tmp2));
4131 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohman88ae8c52008-02-29 01:44:25 +00004132 DAG.getConstant(x, NVT));
Dale Johannesen9972b632009-02-02 19:03:57 +00004133 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004134 break;
4135 } else {
4136 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4137 }
4138 break;
4139 }
4140 break;
4141 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00004142 MVT VT = Op.getValueType();
4143 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesend3b6af32007-10-11 23:32:15 +00004144 // Convert ppcf128 to i32
Dale Johannesen3d8578b2007-10-10 01:01:31 +00004145 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner5872a362008-01-17 07:00:52 +00004146 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Scott Michel91099d62009-02-17 22:15:04 +00004147 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner5872a362008-01-17 07:00:52 +00004148 Node->getOperand(0), DAG.getValueType(MVT::f64));
Scott Michel91099d62009-02-17 22:15:04 +00004149 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner5872a362008-01-17 07:00:52 +00004150 DAG.getIntPtrConstant(1));
Dale Johannesen9972b632009-02-02 19:03:57 +00004151 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner5872a362008-01-17 07:00:52 +00004152 } else {
Dale Johannesend3b6af32007-10-11 23:32:15 +00004153 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4154 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4155 Tmp2 = DAG.getConstantFP(apf, OVT);
4156 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4157 // FIXME: generated code sucks.
Scott Michel91099d62009-02-17 22:15:04 +00004158 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
Dale Johannesen9972b632009-02-02 19:03:57 +00004159 Tmp2,
4160 DAG.getNode(ISD::ADD, dl, MVT::i32,
4161 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4162 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesend3b6af32007-10-11 23:32:15 +00004163 Node->getOperand(0), Tmp2)),
4164 DAG.getConstant(0x80000000, MVT::i32)),
Scott Michel91099d62009-02-17 22:15:04 +00004165 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesend3b6af32007-10-11 23:32:15 +00004166 Node->getOperand(0)),
4167 DAG.getCondCode(ISD::SETGE));
4168 }
Dale Johannesen3d8578b2007-10-10 01:01:31 +00004169 break;
4170 }
Dan Gohmanec51f642008-03-10 23:03:31 +00004171 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsf68dffb2008-07-17 02:36:29 +00004172 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4173 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4174 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman8181bd12008-07-27 21:46:04 +00004175 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00004176 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004177 break;
4178 }
4179 case Promote:
4180 Tmp1 = PromoteOp(Node->getOperand(0));
4181 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4182 Result = LegalizeOp(Result);
4183 break;
4184 }
4185 break;
4186
Chris Lattner56ecde32008-01-16 06:57:07 +00004187 case ISD::FP_EXTEND: {
Duncan Sands92c43912008-06-06 12:08:01 +00004188 MVT DstVT = Op.getValueType();
4189 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00004190 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4191 // The only other way we can lower this is to turn it into a STORE,
4192 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen82b5b722009-02-02 22:12:50 +00004193 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl);
Chris Lattner5872a362008-01-17 07:00:52 +00004194 break;
Chris Lattner56ecde32008-01-16 06:57:07 +00004195 }
4196 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4197 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4198 case Legal:
4199 Tmp1 = LegalizeOp(Node->getOperand(0));
4200 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4201 break;
4202 case Promote:
4203 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004204 Result = DAG.getNode(ISD::FP_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattner56ecde32008-01-16 06:57:07 +00004205 break;
4206 }
4207 break;
Chris Lattner5872a362008-01-17 07:00:52 +00004208 }
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00004209 case ISD::FP_ROUND: {
Duncan Sands92c43912008-06-06 12:08:01 +00004210 MVT DstVT = Op.getValueType();
4211 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00004212 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4213 if (SrcVT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004214 SDValue Lo;
Dale Johannesena0d36082008-01-20 01:18:38 +00004215 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner5872a362008-01-17 07:00:52 +00004216 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesena0d36082008-01-20 01:18:38 +00004217 if (DstVT!=MVT::f64)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004218 Result = DAG.getNode(ISD::FP_ROUND, dl,
4219 DstVT, Result, Op.getOperand(1));
Chris Lattner5872a362008-01-17 07:00:52 +00004220 break;
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00004221 }
Chris Lattner5872a362008-01-17 07:00:52 +00004222 // The only other way we can lower this is to turn it into a STORE,
4223 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen82b5b722009-02-02 22:12:50 +00004224 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl);
Chris Lattner5872a362008-01-17 07:00:52 +00004225 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004226 }
Chris Lattner56ecde32008-01-16 06:57:07 +00004227 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4228 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4229 case Legal:
4230 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner5872a362008-01-17 07:00:52 +00004231 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00004232 break;
4233 case Promote:
4234 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004235 Result = DAG.getNode(ISD::FP_ROUND, dl, Op.getValueType(), Tmp1,
Chris Lattner5872a362008-01-17 07:00:52 +00004236 Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00004237 break;
4238 }
4239 break;
Chris Lattner5872a362008-01-17 07:00:52 +00004240 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004241 case ISD::ANY_EXTEND:
4242 case ISD::ZERO_EXTEND:
4243 case ISD::SIGN_EXTEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004244 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4245 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4246 case Legal:
4247 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michelac54d002008-04-30 00:26:38 +00004248 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michelac7091c2008-02-15 23:05:48 +00004249 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4250 TargetLowering::Custom) {
Scott Michelac54d002008-04-30 00:26:38 +00004251 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004252 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelac7091c2008-02-15 23:05:48 +00004253 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004254 break;
4255 case Promote:
4256 switch (Node->getOpcode()) {
4257 case ISD::ANY_EXTEND:
4258 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004259 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004260 break;
4261 case ISD::ZERO_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.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004265 Node->getOperand(0).getValueType());
4266 break;
4267 case ISD::SIGN_EXTEND:
4268 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004269 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4270 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004271 Result,
4272 DAG.getValueType(Node->getOperand(0).getValueType()));
4273 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004274 }
4275 }
4276 break;
4277 case ISD::FP_ROUND_INREG:
4278 case ISD::SIGN_EXTEND_INREG: {
4279 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004280 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004281
4282 // If this operation is not supported, convert it to a shl/shr or load/store
4283 // pair.
4284 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4285 default: assert(0 && "This action not supported for this op yet!");
4286 case TargetLowering::Legal:
4287 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
4288 break;
4289 case TargetLowering::Expand:
4290 // If this is an integer extend and shifts are supported, do that.
4291 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
4292 // NOTE: we could fall back on load/store here too for targets without
4293 // SAR. However, it is doubtful that any exist.
Duncan Sands92c43912008-06-06 12:08:01 +00004294 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4295 ExtraVT.getSizeInBits();
Dan Gohman8181bd12008-07-27 21:46:04 +00004296 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004297 Result = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004298 Node->getOperand(0), ShiftCst);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004299 Result = DAG.getNode(ISD::SRA, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004300 Result, ShiftCst);
4301 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
4302 // The only way we can lower this is to turn it into a TRUNCSTORE,
4303 // EXTLOAD pair, targetting a temporary location (a stack slot).
4304
4305 // NOTE: there is a choice here between constantly creating new stack
4306 // slots and always reusing the same one. We currently always create
4307 // new ones, as reuse may inhibit scheduling.
Scott Michel91099d62009-02-17 22:15:04 +00004308 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00004309 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004310 } else {
4311 assert(0 && "Unknown op");
4312 }
4313 break;
4314 }
4315 break;
4316 }
Duncan Sands38947cd2007-07-27 12:58:54 +00004317 case ISD::TRAMPOLINE: {
Dan Gohman8181bd12008-07-27 21:46:04 +00004318 SDValue Ops[6];
Duncan Sands38947cd2007-07-27 12:58:54 +00004319 for (unsigned i = 0; i != 6; ++i)
4320 Ops[i] = LegalizeOp(Node->getOperand(i));
4321 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4322 // The only option for this node is to custom lower it.
4323 Result = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004324 assert(Result.getNode() && "Should always custom lower!");
Duncan Sands7407a9f2007-09-11 14:10:23 +00004325
4326 // Since trampoline produces two values, make sure to remember that we
4327 // legalized both of them.
4328 Tmp1 = LegalizeOp(Result.getValue(1));
4329 Result = LegalizeOp(Result);
Dan Gohman8181bd12008-07-27 21:46:04 +00004330 AddLegalizedOperand(SDValue(Node, 0), Result);
4331 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00004332 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands38947cd2007-07-27 12:58:54 +00004333 }
Dan Gohmane8e4a412008-05-14 00:43:10 +00004334 case ISD::FLT_ROUNDS_: {
Duncan Sands92c43912008-06-06 12:08:01 +00004335 MVT VT = Node->getValueType(0);
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004336 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4337 default: assert(0 && "This action not supported for this op yet!");
4338 case TargetLowering::Custom:
4339 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004340 if (Result.getNode()) break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004341 // Fall Thru
4342 case TargetLowering::Legal:
4343 // If this operation is not supported, lower it to constant 1
4344 Result = DAG.getConstant(1, VT);
4345 break;
4346 }
Dan Gohmane09dc8c2008-05-12 16:07:15 +00004347 break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004348 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00004349 case ISD::TRAP: {
Duncan Sands92c43912008-06-06 12:08:01 +00004350 MVT VT = Node->getValueType(0);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004351 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4352 default: assert(0 && "This action not supported for this op yet!");
Chris Lattnere99bbb72008-01-15 21:58:08 +00004353 case TargetLowering::Legal:
4354 Tmp1 = LegalizeOp(Node->getOperand(0));
4355 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4356 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004357 case TargetLowering::Custom:
4358 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004359 if (Result.getNode()) break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004360 // Fall Thru
Chris Lattnere99bbb72008-01-15 21:58:08 +00004361 case TargetLowering::Expand:
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004362 // If this operation is not supported, lower it to 'abort()' call
Chris Lattnere99bbb72008-01-15 21:58:08 +00004363 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004364 TargetLowering::ArgListTy Args;
Bob Wilson2e958a42009-04-10 18:48:47 +00004365 std::pair<SDValue, SDValue> CallResult =
Duncan Sandsead972e2008-02-14 17:28:50 +00004366 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen67cc9b62008-09-26 19:31:26 +00004367 false, false, false, false, CallingConv::C, false,
Bill Wendlingfef06052008-09-16 21:48:12 +00004368 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesenca6237b2009-01-30 23:10:59 +00004369 Args, DAG, dl);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004370 Result = CallResult.second;
4371 break;
4372 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00004373 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004374 }
Bill Wendling913dcf32008-11-22 00:22:52 +00004375
Bill Wendling7e04be62008-12-09 22:08:41 +00004376 case ISD::SADDO:
4377 case ISD::SSUBO: {
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004378 MVT VT = Node->getValueType(0);
4379 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4380 default: assert(0 && "This action not supported for this op yet!");
4381 case TargetLowering::Custom:
4382 Result = TLI.LowerOperation(Op, DAG);
4383 if (Result.getNode()) break;
4384 // FALLTHROUGH
4385 case TargetLowering::Legal: {
4386 SDValue LHS = LegalizeOp(Node->getOperand(0));
4387 SDValue RHS = LegalizeOp(Node->getOperand(1));
4388
Scott Michel91099d62009-02-17 22:15:04 +00004389 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004390 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling7e04be62008-12-09 22:08:41 +00004391 LHS, RHS);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004392 MVT OType = Node->getValueType(1);
4393
Bill Wendlingc65e6e42008-11-25 08:19:22 +00004394 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004395
Bill Wendlingcf4de122008-11-25 19:40:17 +00004396 // LHSSign -> LHS >= 0
4397 // RHSSign -> RHS >= 0
4398 // SumSign -> Sum >= 0
4399 //
Bill Wendling7e04be62008-12-09 22:08:41 +00004400 // Add:
Bill Wendlingcf4de122008-11-25 19:40:17 +00004401 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling7e04be62008-12-09 22:08:41 +00004402 // Sub:
4403 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendlingcf4de122008-11-25 19:40:17 +00004404 //
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004405 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
4406 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
Scott Michel91099d62009-02-17 22:15:04 +00004407 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
4408 Node->getOpcode() == ISD::SADDO ?
Bill Wendling7e04be62008-12-09 22:08:41 +00004409 ISD::SETEQ : ISD::SETNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004410
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004411 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
4412 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004413
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004414 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004415
4416 MVT ValueVTs[] = { LHS.getValueType(), OType };
4417 SDValue Ops[] = { Sum, Cmp };
4418
Scott Michel91099d62009-02-17 22:15:04 +00004419 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004420 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sands42d7bb82008-12-01 11:41:29 +00004421 &Ops[0], 2);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004422 SDNode *RNode = Result.getNode();
Dan Gohman3209ac32009-04-15 20:06:30 +00004423 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004424 break;
4425 }
4426 }
4427
4428 break;
4429 }
Bill Wendling7e04be62008-12-09 22:08:41 +00004430 case ISD::UADDO:
4431 case ISD::USUBO: {
Bill Wendling4c134df2008-11-24 19:21:46 +00004432 MVT VT = Node->getValueType(0);
4433 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4434 default: assert(0 && "This action not supported for this op yet!");
4435 case TargetLowering::Custom:
4436 Result = TLI.LowerOperation(Op, DAG);
4437 if (Result.getNode()) break;
4438 // FALLTHROUGH
4439 case TargetLowering::Legal: {
4440 SDValue LHS = LegalizeOp(Node->getOperand(0));
4441 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling913dcf32008-11-22 00:22:52 +00004442
Bill Wendling7e04be62008-12-09 22:08:41 +00004443 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004444 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling7e04be62008-12-09 22:08:41 +00004445 LHS, RHS);
Bill Wendling4c134df2008-11-24 19:21:46 +00004446 MVT OType = Node->getValueType(1);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004447 SDValue Cmp = DAG.getSetCC(dl, OType, Sum, LHS,
Scott Michel91099d62009-02-17 22:15:04 +00004448 Node->getOpcode () == ISD::UADDO ?
Bill Wendling7e04be62008-12-09 22:08:41 +00004449 ISD::SETULT : ISD::SETUGT);
Bill Wendling913dcf32008-11-22 00:22:52 +00004450
Bill Wendling4c134df2008-11-24 19:21:46 +00004451 MVT ValueVTs[] = { LHS.getValueType(), OType };
4452 SDValue Ops[] = { Sum, Cmp };
Bill Wendling913dcf32008-11-22 00:22:52 +00004453
Scott Michel91099d62009-02-17 22:15:04 +00004454 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004455 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sands42d7bb82008-12-01 11:41:29 +00004456 &Ops[0], 2);
Bill Wendling4c134df2008-11-24 19:21:46 +00004457 SDNode *RNode = Result.getNode();
Dan Gohman3209ac32009-04-15 20:06:30 +00004458 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendling4c134df2008-11-24 19:21:46 +00004459 break;
4460 }
4461 }
4462
Bill Wendling913dcf32008-11-22 00:22:52 +00004463 break;
4464 }
Bill Wendling7e04be62008-12-09 22:08:41 +00004465 case ISD::SMULO:
4466 case ISD::UMULO: {
4467 MVT VT = Node->getValueType(0);
4468 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4469 default: assert(0 && "This action is not supported at all!");
4470 case TargetLowering::Custom:
4471 Result = TLI.LowerOperation(Op, DAG);
4472 if (Result.getNode()) break;
4473 // Fall Thru
4474 case TargetLowering::Legal:
4475 // FIXME: According to Hacker's Delight, this can be implemented in
4476 // target independent lowering, but it would be inefficient, since it
Bill Wendling35f1a9d2008-12-10 02:01:32 +00004477 // requires a division + a branch.
Scott Michel91099d62009-02-17 22:15:04 +00004478 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
Bill Wendling7e04be62008-12-09 22:08:41 +00004479 break;
4480 }
4481 break;
4482 }
4483
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004484 }
Scott Michel91099d62009-02-17 22:15:04 +00004485
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004486 assert(Result.getValueType() == Op.getValueType() &&
4487 "Bad legalization!");
Scott Michel91099d62009-02-17 22:15:04 +00004488
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004489 // Make sure that the generated code is itself legal.
4490 if (Result != Op)
4491 Result = LegalizeOp(Result);
4492
4493 // Note that LegalizeOp may be reentered even from single-use nodes, which
4494 // means that we always must cache transformed nodes.
4495 AddLegalizedOperand(Op, Result);
4496 return Result;
4497}
4498
4499/// PromoteOp - Given an operation that produces a value in an invalid type,
4500/// promote it to compute the value into a larger type. The produced value will
4501/// have the correct bits for the low portion of the register, but no guarantee
4502/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +00004503SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00004504 MVT VT = Op.getValueType();
4505 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004506 assert(getTypeAction(VT) == Promote &&
4507 "Caller should expand or legalize operands that are not promotable!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004508 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004509 "Cannot promote to smaller type!");
4510
Dan Gohman8181bd12008-07-27 21:46:04 +00004511 SDValue Tmp1, Tmp2, Tmp3;
4512 SDValue Result;
Gabor Greif1c80d112008-08-28 21:40:38 +00004513 SDNode *Node = Op.getNode();
Dale Johannesen82b5b722009-02-02 22:12:50 +00004514 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004515
Dan Gohman8181bd12008-07-27 21:46:04 +00004516 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004517 if (I != PromotedNodes.end()) return I->second;
4518
4519 switch (Node->getOpcode()) {
4520 case ISD::CopyFromReg:
4521 assert(0 && "CopyFromReg must be legal!");
4522 default:
4523#ifndef NDEBUG
4524 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
4525#endif
4526 assert(0 && "Do not know how to promote this operator!");
4527 abort();
4528 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004529 Result = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004530 break;
4531 case ISD::Constant:
4532 if (VT != MVT::i1)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004533 Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004534 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00004535 Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004536 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4537 break;
4538 case ISD::ConstantFP:
Dale Johannesen82b5b722009-02-02 22:12:50 +00004539 Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004540 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4541 break;
4542
Duncan Sands4a361272009-01-01 15:52:00 +00004543 case ISD::SETCC: {
4544 MVT VT0 = Node->getOperand(0).getValueType();
4545 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004546 && "SetCC type is not legal??");
Dale Johannesen82b5b722009-02-02 22:12:50 +00004547 Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0),
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004548 Node->getOperand(0), Node->getOperand(1),
4549 Node->getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004550 break;
Duncan Sands4a361272009-01-01 15:52:00 +00004551 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004552 case ISD::TRUNCATE:
4553 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4554 case Legal:
4555 Result = LegalizeOp(Node->getOperand(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00004556 assert(Result.getValueType().bitsGE(NVT) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004557 "This truncation doesn't make sense!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004558 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dale Johannesen82b5b722009-02-02 22:12:50 +00004559 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004560 break;
4561 case Promote:
4562 // The truncation is not required, because we don't guarantee anything
4563 // about high bits anyway.
4564 Result = PromoteOp(Node->getOperand(0));
4565 break;
4566 case Expand:
4567 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4568 // Truncate the low part of the expanded value to the result type
Dale Johannesen82b5b722009-02-02 22:12:50 +00004569 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004570 }
4571 break;
4572 case ISD::SIGN_EXTEND:
4573 case ISD::ZERO_EXTEND:
4574 case ISD::ANY_EXTEND:
4575 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4576 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4577 case Legal:
4578 // Input is legal? Just do extend all the way to the larger type.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004579 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004580 break;
4581 case Promote:
4582 // Promote the reg if it's smaller.
4583 Result = PromoteOp(Node->getOperand(0));
4584 // The high bits are not guaranteed to be anything. Insert an extend.
4585 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004586 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004587 DAG.getValueType(Node->getOperand(0).getValueType()));
4588 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004589 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004590 Node->getOperand(0).getValueType());
4591 break;
4592 }
4593 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004594 case ISD::CONVERT_RNDSAT: {
4595 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4596 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4597 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4598 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4599 "can only promote integers");
Dale Johannesen564036c2009-02-04 00:13:36 +00004600 Result = DAG.getConvertRndSat(NVT, dl, Node->getOperand(0),
Mon P Wang73d31542008-11-10 20:54:11 +00004601 Node->getOperand(1), Node->getOperand(2),
4602 Node->getOperand(3), Node->getOperand(4),
4603 CvtCode);
4604 break;
4605
4606 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004607 case ISD::BIT_CONVERT:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004608 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00004609 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004610 Result = PromoteOp(Result);
4611 break;
Scott Michel91099d62009-02-17 22:15:04 +00004612
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004613 case ISD::FP_EXTEND:
4614 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4615 case ISD::FP_ROUND:
4616 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4617 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4618 case Promote: assert(0 && "Unreachable with 2 FP types!");
4619 case Legal:
Chris Lattner5872a362008-01-17 07:00:52 +00004620 if (Node->getConstantOperandVal(1) == 0) {
4621 // Input is legal? Do an FP_ROUND_INREG.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004622 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0),
Chris Lattner5872a362008-01-17 07:00:52 +00004623 DAG.getValueType(VT));
4624 } else {
4625 // Just remove the truncate, it isn't affecting the value.
Scott Michel91099d62009-02-17 22:15:04 +00004626 Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0),
Chris Lattner5872a362008-01-17 07:00:52 +00004627 Node->getOperand(1));
4628 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004629 break;
4630 }
4631 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004632 case ISD::SINT_TO_FP:
4633 case ISD::UINT_TO_FP:
4634 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4635 case Legal:
4636 // No extra round required here.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004637 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004638 break;
4639
4640 case Promote:
4641 Result = PromoteOp(Node->getOperand(0));
4642 if (Node->getOpcode() == ISD::SINT_TO_FP)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004643 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004644 Result,
4645 DAG.getValueType(Node->getOperand(0).getValueType()));
4646 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00004647 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004648 Node->getOperand(0).getValueType());
4649 // No extra round required here.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004650 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004651 break;
4652 case Expand:
4653 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00004654 Node->getOperand(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004655 // Round if we cannot tolerate excess precision.
4656 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004657 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004658 DAG.getValueType(VT));
4659 break;
4660 }
4661 break;
4662
4663 case ISD::SIGN_EXTEND_INREG:
4664 Result = PromoteOp(Node->getOperand(0));
Scott Michel91099d62009-02-17 22:15:04 +00004665 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004666 Node->getOperand(1));
4667 break;
4668 case ISD::FP_TO_SINT:
4669 case ISD::FP_TO_UINT:
4670 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4671 case Legal:
4672 case Expand:
4673 Tmp1 = Node->getOperand(0);
4674 break;
4675 case Promote:
4676 // The input result is prerounded, so we don't have to do anything
4677 // special.
4678 Tmp1 = PromoteOp(Node->getOperand(0));
4679 break;
4680 }
4681 // If we're promoting a UINT to a larger size, check to see if the new node
4682 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4683 // we can use that instead. This allows us to generate better code for
4684 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4685 // legal, such as PowerPC.
Scott Michel91099d62009-02-17 22:15:04 +00004686 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00004687 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4688 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004689 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Dale Johannesen82b5b722009-02-02 22:12:50 +00004690 Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004691 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00004692 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004693 }
4694 break;
4695
4696 case ISD::FABS:
4697 case ISD::FNEG:
4698 Tmp1 = PromoteOp(Node->getOperand(0));
4699 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004700 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004701 // NOTE: we do not have to do any extra rounding here for
4702 // NoExcessFPPrecision, because we know the input will have the appropriate
4703 // precision, and these operations don't modify precision at all.
4704 break;
4705
Dale Johannesen92b33082008-09-04 00:47:13 +00004706 case ISD::FLOG:
4707 case ISD::FLOG2:
4708 case ISD::FLOG10:
4709 case ISD::FEXP:
4710 case ISD::FEXP2:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004711 case ISD::FSQRT:
4712 case ISD::FSIN:
4713 case ISD::FCOS:
Dan Gohmanb2158232008-08-21 18:38:14 +00004714 case ISD::FTRUNC:
4715 case ISD::FFLOOR:
4716 case ISD::FCEIL:
4717 case ISD::FRINT:
4718 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004719 Tmp1 = PromoteOp(Node->getOperand(0));
4720 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004721 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004722 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004723 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004724 DAG.getValueType(VT));
4725 break;
4726
Evan Cheng1fac6952008-09-09 23:35:53 +00004727 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004728 case ISD::FPOWI: {
Evan Cheng1fac6952008-09-09 23:35:53 +00004729 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004730 // directly as well, which may be better.
4731 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng1fac6952008-09-09 23:35:53 +00004732 Tmp2 = Node->getOperand(1);
4733 if (Node->getOpcode() == ISD::FPOW)
4734 Tmp2 = PromoteOp(Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004735 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004736 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004737 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004738 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004739 DAG.getValueType(VT));
4740 break;
4741 }
Scott Michel91099d62009-02-17 22:15:04 +00004742
Dan Gohmanbebba8d2008-12-23 21:37:04 +00004743 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004744 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004745 Tmp2 = PromoteOp(Node->getOperand(2));
4746 Tmp3 = PromoteOp(Node->getOperand(3));
Scott Michel91099d62009-02-17 22:15:04 +00004747 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
4748 AtomNode->getChain(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004749 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004750 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004751 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004752 // Remember that we legalized the chain.
4753 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4754 break;
4755 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00004756 case ISD::ATOMIC_LOAD_ADD:
4757 case ISD::ATOMIC_LOAD_SUB:
4758 case ISD::ATOMIC_LOAD_AND:
4759 case ISD::ATOMIC_LOAD_OR:
4760 case ISD::ATOMIC_LOAD_XOR:
4761 case ISD::ATOMIC_LOAD_NAND:
4762 case ISD::ATOMIC_LOAD_MIN:
4763 case ISD::ATOMIC_LOAD_MAX:
4764 case ISD::ATOMIC_LOAD_UMIN:
4765 case ISD::ATOMIC_LOAD_UMAX:
4766 case ISD::ATOMIC_SWAP: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004767 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004768 Tmp2 = PromoteOp(Node->getOperand(2));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004769 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Scott Michel91099d62009-02-17 22:15:04 +00004770 AtomNode->getChain(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004771 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004772 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004773 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004774 // Remember that we legalized the chain.
4775 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4776 break;
4777 }
4778
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004779 case ISD::AND:
4780 case ISD::OR:
4781 case ISD::XOR:
4782 case ISD::ADD:
4783 case ISD::SUB:
4784 case ISD::MUL:
4785 // The input may have strange things in the top bits of the registers, but
4786 // these operations don't care. They may have weird bits going out, but
4787 // that too is okay if they are integer operations.
4788 Tmp1 = PromoteOp(Node->getOperand(0));
4789 Tmp2 = PromoteOp(Node->getOperand(1));
4790 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004791 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004792 break;
4793 case ISD::FADD:
4794 case ISD::FSUB:
4795 case ISD::FMUL:
4796 Tmp1 = PromoteOp(Node->getOperand(0));
4797 Tmp2 = PromoteOp(Node->getOperand(1));
4798 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004799 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00004800
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004801 // Floating point operations will give excess precision that we may not be
4802 // able to tolerate. If we DO allow excess precision, just leave it,
4803 // otherwise excise it.
4804 // FIXME: Why would we need to round FP ops more than integer ones?
4805 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
4806 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004807 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004808 DAG.getValueType(VT));
4809 break;
4810
4811 case ISD::SDIV:
4812 case ISD::SREM:
4813 // These operators require that their input be sign extended.
4814 Tmp1 = PromoteOp(Node->getOperand(0));
4815 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004816 if (NVT.isInteger()) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00004817 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004818 DAG.getValueType(VT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004819 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004820 DAG.getValueType(VT));
4821 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00004822 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004823
4824 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands92c43912008-06-06 12:08:01 +00004825 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004826 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004827 DAG.getValueType(VT));
4828 break;
4829 case ISD::FDIV:
4830 case ISD::FREM:
4831 case ISD::FCOPYSIGN:
4832 // These operators require that their input be fp extended.
4833 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004834 case Expand: assert(0 && "not implemented");
4835 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4836 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004837 }
4838 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004839 case Expand: assert(0 && "not implemented");
4840 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4841 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004842 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00004843 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00004844
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004845 // Perform FP_ROUND: this is probably overly pessimistic.
4846 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004847 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004848 DAG.getValueType(VT));
4849 break;
4850
4851 case ISD::UDIV:
4852 case ISD::UREM:
4853 // These operators require that their input be zero extended.
4854 Tmp1 = PromoteOp(Node->getOperand(0));
4855 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004856 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dale Johannesen82b5b722009-02-02 22:12:50 +00004857 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4858 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
4859 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004860 break;
4861
4862 case ISD::SHL:
4863 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004864 Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004865 break;
4866 case ISD::SRA:
4867 // The input value must be properly sign extended.
4868 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004869 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004870 DAG.getValueType(VT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004871 Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004872 break;
4873 case ISD::SRL:
4874 // The input value must be properly zero extended.
4875 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004876 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4877 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004878 break;
4879
4880 case ISD::VAARG:
4881 Tmp1 = Node->getOperand(0); // Get the chain.
4882 Tmp2 = Node->getOperand(1); // Get the pointer.
4883 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
Dale Johannesen564036c2009-02-04 00:13:36 +00004884 Tmp3 = DAG.getVAArg(VT, dl, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sandsac496a12008-07-04 11:47:58 +00004885 Result = TLI.LowerOperation(Tmp3, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004886 } else {
Dan Gohman12a9c082008-02-06 22:27:42 +00004887 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesen564036c2009-02-04 00:13:36 +00004888 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004889 // Increment the pointer, VAList, to the next vaarg
Scott Michel91099d62009-02-17 22:15:04 +00004890 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sands92c43912008-06-06 12:08:01 +00004891 DAG.getConstant(VT.getSizeInBits()/8,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004892 TLI.getPointerTy()));
4893 // Store the incremented VAList to the legalized pointer
Dale Johannesen82b5b722009-02-02 22:12:50 +00004894 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004895 // Load the actual argument out of the pointer VAList
Dale Johannesen82b5b722009-02-02 22:12:50 +00004896 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004897 }
4898 // Remember that we legalized the chain.
4899 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4900 break;
4901
4902 case ISD::LOAD: {
4903 LoadSDNode *LD = cast<LoadSDNode>(Node);
4904 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4905 ? ISD::EXTLOAD : LD->getExtensionType();
Dale Johannesen82b5b722009-02-02 22:12:50 +00004906 Result = DAG.getExtLoad(ExtType, dl, NVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004907 LD->getChain(), LD->getBasePtr(),
4908 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004909 LD->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004910 LD->isVolatile(),
4911 LD->getAlignment());
4912 // Remember that we legalized the chain.
4913 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4914 break;
4915 }
Scott Michel67224b22008-06-02 22:18:03 +00004916 case ISD::SELECT: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004917 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4918 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel67224b22008-06-02 22:18:03 +00004919
Duncan Sands92c43912008-06-06 12:08:01 +00004920 MVT VT2 = Tmp2.getValueType();
Scott Michel67224b22008-06-02 22:18:03 +00004921 assert(VT2 == Tmp3.getValueType()
Scott Michel7b54de02008-06-03 19:13:20 +00004922 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4923 // Ensure that the resulting node is at least the same size as the operands'
4924 // value types, because we cannot assume that TLI.getSetCCValueType() is
4925 // constant.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004926 Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004927 break;
Scott Michel67224b22008-06-02 22:18:03 +00004928 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004929 case ISD::SELECT_CC:
4930 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4931 Tmp3 = PromoteOp(Node->getOperand(3)); // False
Dale Johannesen82b5b722009-02-02 22:12:50 +00004932 Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004933 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
4934 break;
4935 case ISD::BSWAP:
4936 Tmp1 = Node->getOperand(0);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004937 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
4938 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4939 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004940 DAG.getConstant(NVT.getSizeInBits() -
4941 VT.getSizeInBits(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004942 TLI.getShiftAmountTy()));
4943 break;
4944 case ISD::CTPOP:
4945 case ISD::CTTZ:
4946 case ISD::CTLZ:
4947 // Zero extend the argument
Dale Johannesen82b5b722009-02-02 22:12:50 +00004948 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004949 // Perform the larger operation, then subtract if needed.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004950 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004951 switch(Node->getOpcode()) {
4952 case ISD::CTPOP:
4953 Result = Tmp1;
4954 break;
4955 case ISD::CTTZ:
4956 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004957 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004958 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004959 ISD::SETEQ);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004960 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00004961 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004962 break;
4963 case ISD::CTLZ:
4964 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00004965 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004966 DAG.getConstant(NVT.getSizeInBits() -
4967 VT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004968 break;
4969 }
4970 break;
4971 case ISD::EXTRACT_SUBVECTOR:
4972 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
4973 break;
4974 case ISD::EXTRACT_VECTOR_ELT:
4975 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4976 break;
4977 }
4978
Gabor Greif1c80d112008-08-28 21:40:38 +00004979 assert(Result.getNode() && "Didn't set a result!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004980
4981 // Make sure the result is itself legal.
4982 Result = LegalizeOp(Result);
Scott Michel91099d62009-02-17 22:15:04 +00004983
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004984 // Remember that we promoted this!
4985 AddPromotedOperand(Op, Result);
4986 return Result;
4987}
4988
4989/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4990/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4991/// based on the vector type. The return type of this matches the element type
4992/// of the vector, which may not be legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00004993SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004994 // We know that operand #0 is the Vec vector. If the index is a constant
4995 // or if the invec is a supported hardware type, we can use it. Otherwise,
4996 // lower to a store then an indexed load.
Dan Gohman8181bd12008-07-27 21:46:04 +00004997 SDValue Vec = Op.getOperand(0);
4998 SDValue Idx = Op.getOperand(1);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004999 DebugLoc dl = Op.getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00005000
Duncan Sands92c43912008-06-06 12:08:01 +00005001 MVT TVT = Vec.getValueType();
5002 unsigned NumElems = TVT.getVectorNumElements();
Scott Michel91099d62009-02-17 22:15:04 +00005003
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005004 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
5005 default: assert(0 && "This action is not supported yet!");
5006 case TargetLowering::Custom: {
5007 Vec = LegalizeOp(Vec);
5008 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005009 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005010 if (Tmp3.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005011 return Tmp3;
5012 break;
5013 }
5014 case TargetLowering::Legal:
5015 if (isTypeLegal(TVT)) {
5016 Vec = LegalizeOp(Vec);
5017 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lambcc021a02007-07-26 03:33:13 +00005018 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005019 }
5020 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00005021 case TargetLowering::Promote:
5022 assert(TVT.isVector() && "not vector type");
5023 // fall thru to expand since vectors are by default are promote
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005024 case TargetLowering::Expand:
5025 break;
5026 }
5027
5028 if (NumElems == 1) {
5029 // This must be an access of the only element. Return it.
5030 Op = ScalarizeVectorOp(Vec);
5031 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman2b10fde2008-01-29 02:24:00 +00005032 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005033 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005034 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005035 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005036 if (CIdx->getZExtValue() < NumLoElts) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005037 Vec = Lo;
5038 } else {
5039 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005040 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005041 Idx.getValueType());
5042 }
Scott Michel91099d62009-02-17 22:15:04 +00005043
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005044 // It's now an extract from the appropriate high or low part. Recurse.
5045 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
5046 Op = ExpandEXTRACT_VECTOR_ELT(Op);
5047 } else {
5048 // Store the value to a temporary stack slot, then LOAD the scalar
5049 // element back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00005050 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dale Johannesen352c47e2009-02-02 20:41:04 +00005051 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005052
5053 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +00005054 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dale Johannesen352c47e2009-02-02 20:41:04 +00005055 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005056 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005057
Duncan Sandsec142ee2008-06-08 20:54:56 +00005058 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Dale Johannesen352c47e2009-02-02 20:41:04 +00005059 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005060 else
Dale Johannesen352c47e2009-02-02 20:41:04 +00005061 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005062
Dale Johannesen352c47e2009-02-02 20:41:04 +00005063 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005064
Dale Johannesen352c47e2009-02-02 20:41:04 +00005065 Op = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005066 }
5067 return Op;
5068}
5069
5070/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
5071/// we assume the operation can be split if it is not already legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00005072SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005073 // We know that operand #0 is the Vec vector. For now we assume the index
5074 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman8181bd12008-07-27 21:46:04 +00005075 SDValue Vec = Op.getOperand(0);
5076 SDValue Idx = LegalizeOp(Op.getOperand(1));
Scott Michel91099d62009-02-17 22:15:04 +00005077
Duncan Sands92c43912008-06-06 12:08:01 +00005078 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Scott Michel91099d62009-02-17 22:15:04 +00005079
Duncan Sands92c43912008-06-06 12:08:01 +00005080 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005081 // This must be an access of the desired vector length. Return it.
5082 return Vec;
5083 }
5084
5085 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005086 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005087 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005088 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005089 Vec = Lo;
5090 } else {
5091 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005092 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5093 Idx.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005094 }
Scott Michel91099d62009-02-17 22:15:04 +00005095
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005096 // It's now an extract from the appropriate high or low part. Recurse.
5097 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
5098 return ExpandEXTRACT_SUBVECTOR(Op);
5099}
5100
5101/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5102/// with condition CC on the current target. This usually involves legalizing
5103/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5104/// there may be no choice but to create a new SetCC node to represent the
5105/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman8181bd12008-07-27 21:46:04 +00005106/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5107void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5108 SDValue &RHS,
Dale Johannesen352c47e2009-02-02 20:41:04 +00005109 SDValue &CC,
5110 DebugLoc dl) {
Scott Michel91099d62009-02-17 22:15:04 +00005111 SDValue Tmp1, Tmp2, Tmp3, Result;
5112
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005113 switch (getTypeAction(LHS.getValueType())) {
5114 case Legal:
5115 Tmp1 = LegalizeOp(LHS); // LHS
5116 Tmp2 = LegalizeOp(RHS); // RHS
5117 break;
5118 case Promote:
5119 Tmp1 = PromoteOp(LHS); // LHS
5120 Tmp2 = PromoteOp(RHS); // RHS
5121
5122 // If this is an FP compare, the operands have already been extended.
Duncan Sands92c43912008-06-06 12:08:01 +00005123 if (LHS.getValueType().isInteger()) {
5124 MVT VT = LHS.getValueType();
5125 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005126
5127 // Otherwise, we have to insert explicit sign or zero extends. Note
5128 // that we could insert sign extends for ALL conditions, but zero extend
5129 // is cheaper on many machines (an AND instead of two shifts), so prefer
5130 // it.
5131 switch (cast<CondCodeSDNode>(CC)->get()) {
5132 default: assert(0 && "Unknown integer comparison!");
5133 case ISD::SETEQ:
5134 case ISD::SETNE:
5135 case ISD::SETUGE:
5136 case ISD::SETUGT:
5137 case ISD::SETULE:
5138 case ISD::SETULT:
5139 // ALL of these operations will work if we either sign or zero extend
5140 // the operands (including the unsigned comparisons!). Zero extend is
5141 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005142 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5143 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005144 break;
5145 case ISD::SETGE:
5146 case ISD::SETGT:
5147 case ISD::SETLT:
5148 case ISD::SETLE:
Dale Johannesen352c47e2009-02-02 20:41:04 +00005149 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005150 DAG.getValueType(VT));
Dale Johannesen352c47e2009-02-02 20:41:04 +00005151 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005152 DAG.getValueType(VT));
Evan Chengd901b662008-10-13 18:46:18 +00005153 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5154 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005155 break;
5156 }
5157 }
5158 break;
5159 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00005160 MVT VT = LHS.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005161 if (VT == MVT::f32 || VT == MVT::f64) {
5162 // Expand into one or more soft-fp libcall(s).
Evan Cheng24108632008-07-01 21:35:46 +00005163 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005164 switch (cast<CondCodeSDNode>(CC)->get()) {
5165 case ISD::SETEQ:
5166 case ISD::SETOEQ:
5167 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
5168 break;
5169 case ISD::SETNE:
5170 case ISD::SETUNE:
5171 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
5172 break;
5173 case ISD::SETGE:
5174 case ISD::SETOGE:
5175 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
5176 break;
5177 case ISD::SETLT:
5178 case ISD::SETOLT:
5179 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5180 break;
5181 case ISD::SETLE:
5182 case ISD::SETOLE:
5183 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
5184 break;
5185 case ISD::SETGT:
5186 case ISD::SETOGT:
5187 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
5188 break;
5189 case ISD::SETUO:
5190 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5191 break;
5192 case ISD::SETO:
5193 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
5194 break;
5195 default:
5196 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5197 switch (cast<CondCodeSDNode>(CC)->get()) {
5198 case ISD::SETONE:
5199 // SETONE = SETOLT | SETOGT
5200 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5201 // Fallthrough
5202 case ISD::SETUGT:
5203 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
5204 break;
5205 case ISD::SETUGE:
5206 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
5207 break;
5208 case ISD::SETULT:
5209 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5210 break;
5211 case ISD::SETULE:
5212 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
5213 break;
5214 case ISD::SETUEQ:
5215 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
5216 break;
5217 default: assert(0 && "Unsupported FP setcc!");
5218 }
5219 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00005220
Dan Gohman8181bd12008-07-27 21:46:04 +00005221 SDValue Dummy;
5222 SDValue Ops[2] = { LHS, RHS };
Dale Johannesen352c47e2009-02-02 20:41:04 +00005223 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005224 false /*sign irrelevant*/, Dummy);
5225 Tmp2 = DAG.getConstant(0, MVT::i32);
5226 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
5227 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesen352c47e2009-02-02 20:41:04 +00005228 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005229 TLI.getSetCCResultType(Tmp1.getValueType()),
5230 Tmp1, Tmp2, CC);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005231 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005232 false /*sign irrelevant*/, Dummy);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005233 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005234 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5235 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesen352c47e2009-02-02 20:41:04 +00005236 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman8181bd12008-07-27 21:46:04 +00005237 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005238 }
Evan Cheng18a1ab12008-07-07 07:18:09 +00005239 LHS = LegalizeOp(Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005240 RHS = Tmp2;
5241 return;
5242 }
5243
Dan Gohman8181bd12008-07-27 21:46:04 +00005244 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005245 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen472d15d2007-10-06 01:24:11 +00005246 ExpandOp(RHS, RHSLo, RHSHi);
5247 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5248
5249 if (VT==MVT::ppcf128) {
5250 // FIXME: This generated code sucks. We want to generate
Dale Johannesen26317b62008-09-12 00:30:56 +00005251 // FCMPU crN, hi1, hi2
Dale Johannesen472d15d2007-10-06 01:24:11 +00005252 // BNE crN, L:
Dale Johannesen26317b62008-09-12 00:30:56 +00005253 // FCMPU crN, lo1, lo2
Dale Johannesen472d15d2007-10-06 01:24:11 +00005254 // The following can be improved, but not that much.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005255 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005256 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005257 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005258 LHSLo, RHSLo, CCCode);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005259 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5260 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005261 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005262 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005263 LHSHi, RHSHi, CCCode);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005264 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5265 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman8181bd12008-07-27 21:46:04 +00005266 Tmp2 = SDValue();
Dale Johannesen472d15d2007-10-06 01:24:11 +00005267 break;
5268 }
5269
5270 switch (CCCode) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005271 case ISD::SETEQ:
5272 case ISD::SETNE:
5273 if (RHSLo == RHSHi)
5274 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5275 if (RHSCST->isAllOnesValue()) {
5276 // Comparison to -1.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005277 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005278 Tmp2 = RHSLo;
5279 break;
5280 }
5281
Dale Johannesen352c47e2009-02-02 20:41:04 +00005282 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5283 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5284 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005285 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5286 break;
5287 default:
5288 // If this is a comparison of the sign bit, just look at the top part.
5289 // X > -1, x < 0
5290 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
Scott Michel91099d62009-02-17 22:15:04 +00005291 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman9d24dc72008-03-13 22:13:53 +00005292 CST->isNullValue()) || // X < 0
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005293 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5294 CST->isAllOnesValue())) { // X > -1
5295 Tmp1 = LHSHi;
5296 Tmp2 = RHSHi;
5297 break;
5298 }
5299
5300 // FIXME: This generated code sucks.
5301 ISD::CondCode LowCC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005302 switch (CCCode) {
5303 default: assert(0 && "Unknown integer setcc!");
5304 case ISD::SETLT:
5305 case ISD::SETULT: LowCC = ISD::SETULT; break;
5306 case ISD::SETGT:
5307 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5308 case ISD::SETLE:
5309 case ISD::SETULE: LowCC = ISD::SETULE; break;
5310 case ISD::SETGE:
5311 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5312 }
5313
5314 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5315 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5316 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5317
5318 // NOTE: on targets without efficient SELECT of bools, we can always use
5319 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
5320 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands4a361272009-01-01 15:52:00 +00005321 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
Dale Johannesen38496eb2009-02-03 00:47:48 +00005322 LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00005323 if (!Tmp1.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005324 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005325 LHSLo, RHSLo, LowCC);
5326 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
Dale Johannesen38496eb2009-02-03 00:47:48 +00005327 LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00005328 if (!Tmp2.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005329 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005330 TLI.getSetCCResultType(LHSHi.getValueType()),
Bob Wilson2e958a42009-04-10 18:48:47 +00005331 LHSHi, RHSHi, CC);
Scott Michel91099d62009-02-17 22:15:04 +00005332
Gabor Greif1c80d112008-08-28 21:40:38 +00005333 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5334 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman9d24dc72008-03-13 22:13:53 +00005335 if ((Tmp1C && Tmp1C->isNullValue()) ||
5336 (Tmp2C && Tmp2C->isNullValue() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005337 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5338 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman9d24dc72008-03-13 22:13:53 +00005339 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005340 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5341 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5342 // low part is known false, returns high part.
5343 // For LE / GE, if high part is known false, ignore the low part.
5344 // For LT / GT, if high part is known true, ignore the low part.
5345 Tmp1 = Tmp2;
Dan Gohman8181bd12008-07-27 21:46:04 +00005346 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005347 } else {
Duncan Sands4a361272009-01-01 15:52:00 +00005348 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5349 LHSHi, RHSHi, ISD::SETEQ, false,
Dale Johannesen38496eb2009-02-03 00:47:48 +00005350 DagCombineInfo, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00005351 if (!Result.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005352 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005353 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005354 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005355 Result, Tmp1, Tmp2));
5356 Tmp1 = Result;
Dan Gohman8181bd12008-07-27 21:46:04 +00005357 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005358 }
5359 }
5360 }
5361 }
5362 LHS = Tmp1;
5363 RHS = Tmp2;
5364}
5365
Evan Cheng71343822008-10-15 02:05:31 +00005366/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5367/// condition code CC on the current target. This routine assumes LHS and rHS
5368/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5369/// illegal condition code into AND / OR of multiple SETCC values.
5370void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5371 SDValue &LHS, SDValue &RHS,
Dale Johannesen352c47e2009-02-02 20:41:04 +00005372 SDValue &CC,
5373 DebugLoc dl) {
Evan Cheng71343822008-10-15 02:05:31 +00005374 MVT OpVT = LHS.getValueType();
5375 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5376 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5377 default: assert(0 && "Unknown condition code action!");
5378 case TargetLowering::Legal:
5379 // Nothing to do.
5380 break;
5381 case TargetLowering::Expand: {
5382 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5383 unsigned Opc = 0;
5384 switch (CCCode) {
5385 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohman2b5b9ca2008-10-21 03:12:54 +00005386 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5387 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5388 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5389 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5390 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5391 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5392 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5393 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5394 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5395 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5396 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5397 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng71343822008-10-15 02:05:31 +00005398 // FIXME: Implement more expansions.
5399 }
5400
Dale Johannesen352c47e2009-02-02 20:41:04 +00005401 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5402 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5403 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng71343822008-10-15 02:05:31 +00005404 RHS = SDValue();
5405 CC = SDValue();
5406 break;
5407 }
5408 }
5409}
5410
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005411/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5412/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5413/// a load from the stack slot to DestVT, extending it if needed.
5414/// The resultant code need not be legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00005415SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5416 MVT SlotVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005417 MVT DestVT,
5418 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005419 // Create the stack frame object.
Bob Wilson2e958a42009-04-10 18:48:47 +00005420 unsigned SrcAlign =
5421 TLI.getTargetData()->getPrefTypeAlignment(SrcOp.getValueType().
5422 getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00005423 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michel91099d62009-02-17 22:15:04 +00005424
Dan Gohman20e37962008-02-11 18:58:42 +00005425 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00005426 int SPFI = StackPtrFI->getIndex();
Dan Gohman8a8251a2009-01-29 21:02:43 +00005427 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5428
Duncan Sands92c43912008-06-06 12:08:01 +00005429 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5430 unsigned SlotSize = SlotVT.getSizeInBits();
5431 unsigned DestSize = DestVT.getSizeInBits();
Bob Wilson2e958a42009-04-10 18:48:47 +00005432 unsigned DestAlign =
5433 TLI.getTargetData()->getPrefTypeAlignment(DestVT.getTypeForMVT());
Scott Michel91099d62009-02-17 22:15:04 +00005434
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005435 // Emit a store to the stack slot. Use a truncstore if the input value is
5436 // later than DestVT.
Dan Gohman8181bd12008-07-27 21:46:04 +00005437 SDValue Store;
Scott Michel91099d62009-02-17 22:15:04 +00005438
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005439 if (SrcSize > SlotSize)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005440 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman8a8251a2009-01-29 21:02:43 +00005441 SV, 0, SlotVT, false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005442 else {
5443 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen82b5b722009-02-02 22:12:50 +00005444 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman8a8251a2009-01-29 21:02:43 +00005445 SV, 0, false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005446 }
Scott Michel91099d62009-02-17 22:15:04 +00005447
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005448 // Result is a load from the stack slot.
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005449 if (SlotSize == DestSize)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005450 return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign);
Scott Michel91099d62009-02-17 22:15:04 +00005451
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005452 assert(SlotSize < DestSize && "Unknown extension!");
Dale Johannesen82b5b722009-02-02 22:12:50 +00005453 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang55854cc2008-07-05 20:40:31 +00005454 false, DestAlign);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005455}
5456
Dan Gohman8181bd12008-07-27 21:46:04 +00005457SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005458 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005459 // Create a vector sized/aligned stack slot, store the value to element #0,
5460 // then load the whole vector back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00005461 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman12a9c082008-02-06 22:27:42 +00005462
Dan Gohman20e37962008-02-11 18:58:42 +00005463 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00005464 int SPFI = StackPtrFI->getIndex();
5465
Duncan Sands6a3a01e2009-04-18 20:16:54 +00005466 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
5467 StackPtr,
5468 PseudoSourceValue::getFixedStack(SPFI), 0,
5469 Node->getValueType(0).getVectorElementType());
Dale Johannesen82b5b722009-02-02 22:12:50 +00005470 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005471 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005472}
5473
5474
5475/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
5476/// support the operation, but do support the resultant vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00005477SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson27b41332009-04-13 20:20:30 +00005478 unsigned NumElems = Node->getNumOperands();
5479 SDValue SplatValue = Node->getOperand(0);
5480 DebugLoc dl = Node->getDebugLoc();
5481 MVT VT = Node->getValueType(0);
5482 MVT OpVT = SplatValue.getValueType();
5483 MVT EltVT = VT.getVectorElementType();
Scott Michel91099d62009-02-17 22:15:04 +00005484
5485 // If the only non-undef value is the low element, turn this into a
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005486 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005487 bool isOnlyLowElement = true;
Scott Michel91099d62009-02-17 22:15:04 +00005488
Dan Gohman8181bd12008-07-27 21:46:04 +00005489 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerd8cee732008-03-09 00:29:42 +00005490 // and use a bitmask instead of a list of elements.
Nate Begeman543d2142009-04-27 18:41:29 +00005491 // FIXME: this doesn't treat <0, u, 0, u> for example, as a splat.
Dan Gohman8181bd12008-07-27 21:46:04 +00005492 std::map<SDValue, std::vector<unsigned> > Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005493 Values[SplatValue].push_back(0);
5494 bool isConstant = true;
5495 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5496 SplatValue.getOpcode() != ISD::UNDEF)
5497 isConstant = false;
Scott Michel91099d62009-02-17 22:15:04 +00005498
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005499 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005500 SDValue V = Node->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005501 Values[V].push_back(i);
5502 if (V.getOpcode() != ISD::UNDEF)
5503 isOnlyLowElement = false;
5504 if (SplatValue != V)
Bob Wilson2e958a42009-04-10 18:48:47 +00005505 SplatValue = SDValue(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005506
5507 // If this isn't a constant element or an undef, we can't use a constant
5508 // pool load.
5509 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5510 V.getOpcode() != ISD::UNDEF)
5511 isConstant = false;
5512 }
Scott Michel91099d62009-02-17 22:15:04 +00005513
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005514 if (isOnlyLowElement) {
5515 // If the low element is an undef too, then this whole things is an undef.
5516 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
Bob Wilson27b41332009-04-13 20:20:30 +00005517 return DAG.getUNDEF(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005518 // Otherwise, turn this into a scalar_to_vector node.
Bob Wilson27b41332009-04-13 20:20:30 +00005519 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005520 }
Scott Michel91099d62009-02-17 22:15:04 +00005521
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005522 // If all elements are constants, create a load from the constant pool.
5523 if (isConstant) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005524 std::vector<Constant*> CV;
5525 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00005526 if (ConstantFPSDNode *V =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005527 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00005528 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michel91099d62009-02-17 22:15:04 +00005529 } else if (ConstantSDNode *V =
Bob Wilson2e958a42009-04-10 18:48:47 +00005530 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00005531 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005532 } else {
5533 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Bob Wilson27b41332009-04-13 20:20:30 +00005534 const Type *OpNTy = OpVT.getTypeForMVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005535 CV.push_back(UndefValue::get(OpNTy));
5536 }
5537 }
5538 Constant *CP = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005539 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +00005540 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen82b5b722009-02-02 22:12:50 +00005541 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00005542 PseudoSourceValue::getConstantPool(), 0,
5543 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005544 }
Scott Michel91099d62009-02-17 22:15:04 +00005545
Gabor Greif1c80d112008-08-28 21:40:38 +00005546 if (SplatValue.getNode()) { // Splat of one value?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005547 // Build the shuffle constant vector: <0, 0, 0, 0>
Nate Begeman543d2142009-04-27 18:41:29 +00005548 SmallVector<int, 8> ZeroVec(NumElems, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005549
5550 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Nate Begeman543d2142009-04-27 18:41:29 +00005551 if (TLI.isShuffleMaskLegal(ZeroVec, Node->getValueType(0))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005552 // Get the splatted value into the low element of a vector register.
Scott Michel91099d62009-02-17 22:15:04 +00005553 SDValue LowValVec =
Bob Wilson27b41332009-04-13 20:20:30 +00005554 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, SplatValue);
Scott Michel91099d62009-02-17 22:15:04 +00005555
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005556 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Nate Begeman543d2142009-04-27 18:41:29 +00005557 return DAG.getVectorShuffle(VT, dl, LowValVec, DAG.getUNDEF(VT),
5558 &ZeroVec[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005559 }
5560 }
Scott Michel91099d62009-02-17 22:15:04 +00005561
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005562 // 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;
Scott Michel91099d62009-02-17 22:15:04 +00005573
Bob Wilson2e958a42009-04-10 18:48:47 +00005574 // If Val1 is an undef, make sure it ends up as Val2, to ensure that our
Chris Lattnerd8cee732008-03-09 00:29:42 +00005575 // vector shuffle has the undef vector on the RHS.
5576 if (Val1.getOpcode() == ISD::UNDEF)
5577 std::swap(Val1, Val2);
Scott Michel91099d62009-02-17 22:15:04 +00005578
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005579 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Nate Begeman543d2142009-04-27 18:41:29 +00005580 SmallVector<int, 8> ShuffleMask(NumElems, -1);
Chris Lattnerd8cee732008-03-09 00:29:42 +00005581
5582 // Set elements of the shuffle mask for Val1.
5583 std::vector<unsigned> &Val1Elts = Values[Val1];
5584 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00005585 ShuffleMask[Val1Elts[i]] = 0;
Chris Lattnerd8cee732008-03-09 00:29:42 +00005586
5587 // Set elements of the shuffle mask for Val2.
5588 std::vector<unsigned> &Val2Elts = Values[Val2];
5589 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5590 if (Val2.getOpcode() != ISD::UNDEF)
Nate Begeman543d2142009-04-27 18:41:29 +00005591 ShuffleMask[Val2Elts[i]] = NumElems;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005592
Chris Lattnerd8cee732008-03-09 00:29:42 +00005593 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Bob Wilson27b41332009-04-13 20:20:30 +00005594 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR, VT) &&
Nate Begeman543d2142009-04-27 18:41:29 +00005595 TLI.isShuffleMaskLegal(ShuffleMask, VT)) {
Bob Wilson27b41332009-04-13 20:20:30 +00005596 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val1);
5597 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val2);
Nate Begeman543d2142009-04-27 18:41:29 +00005598 return DAG.getVectorShuffle(VT, dl, Val1, Val2, &ShuffleMask[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005599 }
5600 }
Scott Michel91099d62009-02-17 22:15:04 +00005601
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005602 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5603 // aligned object on the stack, store each element into it, then load
5604 // the result as a vector.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005605 // Create the stack frame object.
Dan Gohman8181bd12008-07-27 21:46:04 +00005606 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman8a8251a2009-01-29 21:02:43 +00005607 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5608 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5609
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005610 // Emit a store of each element to the stack slot.
Dan Gohman8181bd12008-07-27 21:46:04 +00005611 SmallVector<SDValue, 8> Stores;
Bob Wilson27b41332009-04-13 20:20:30 +00005612 unsigned TypeByteSize = OpVT.getSizeInBits() / 8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005613 // Store (in the right endianness) the elements to memory.
5614 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5615 // Ignore undef elements.
5616 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michel91099d62009-02-17 22:15:04 +00005617
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005618 unsigned Offset = TypeByteSize*i;
Scott Michel91099d62009-02-17 22:15:04 +00005619
Dan Gohman8181bd12008-07-27 21:46:04 +00005620 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dale Johannesen82b5b722009-02-02 22:12:50 +00005621 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
Scott Michel91099d62009-02-17 22:15:04 +00005622
Dale Johannesen82b5b722009-02-02 22:12:50 +00005623 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i),
5624 Idx, SV, Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005625 }
Scott Michel91099d62009-02-17 22:15:04 +00005626
Dan Gohman8181bd12008-07-27 21:46:04 +00005627 SDValue StoreChain;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005628 if (!Stores.empty()) // Not all undef elements?
Dale Johannesen82b5b722009-02-02 22:12:50 +00005629 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005630 &Stores[0], Stores.size());
5631 else
5632 StoreChain = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00005633
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005634 // Result is a load from the stack slot.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005635 return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005636}
5637
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005638void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman8181bd12008-07-27 21:46:04 +00005639 SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005640 SDValue &Lo, SDValue &Hi,
5641 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005642 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00005643 SDValue LHSL, LHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005644 ExpandOp(Op, LHSL, LHSH);
5645
Dan Gohman8181bd12008-07-27 21:46:04 +00005646 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands92c43912008-06-06 12:08:01 +00005647 MVT VT = LHSL.getValueType();
Dan Gohmanee036282009-04-09 23:54:40 +00005648 Lo = DAG.getNode(NodeOp, dl, DAG.getVTList(VT, VT), Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005649 Hi = Lo.getValue(1);
5650}
5651
5652
5653/// ExpandShift - Try to find a clever way to expand this shift operation out to
5654/// smaller elements. If we can't find a way that is more efficient than a
5655/// libcall on this target, return false. Otherwise, return true with the
5656/// low-parts expanded into Lo and Hi.
Bob Wilson2e958a42009-04-10 18:48:47 +00005657bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005658 SDValue &Lo, SDValue &Hi,
5659 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005660 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5661 "This is not a shift!");
5662
Duncan Sands92c43912008-06-06 12:08:01 +00005663 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman8181bd12008-07-27 21:46:04 +00005664 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands92c43912008-06-06 12:08:01 +00005665 MVT ShTy = ShAmt.getValueType();
5666 unsigned ShBits = ShTy.getSizeInBits();
5667 unsigned VTBits = Op.getValueType().getSizeInBits();
5668 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005669
Chris Lattner8c931452007-10-14 20:35:12 +00005670 // Handle the case when Amt is an immediate.
Gabor Greif1c80d112008-08-28 21:40:38 +00005671 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005672 unsigned Cst = CN->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005673 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005674 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005675 ExpandOp(Op, InL, InH);
5676 switch(Opc) {
5677 case ISD::SHL:
5678 if (Cst > VTBits) {
5679 Lo = DAG.getConstant(0, NVT);
5680 Hi = DAG.getConstant(0, NVT);
5681 } else if (Cst > NVTBits) {
5682 Lo = DAG.getConstant(0, NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00005683 Hi = DAG.getNode(ISD::SHL, dl,
Bob Wilson2e958a42009-04-10 18:48:47 +00005684 NVT, InL, DAG.getConstant(Cst-NVTBits, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005685 } else if (Cst == NVTBits) {
5686 Lo = DAG.getConstant(0, NVT);
5687 Hi = InL;
5688 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005689 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy));
5690 Hi = DAG.getNode(ISD::OR, dl, NVT,
5691 DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)),
Scott Michel91099d62009-02-17 22:15:04 +00005692 DAG.getNode(ISD::SRL, dl, NVT, InL,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005693 DAG.getConstant(NVTBits-Cst, ShTy)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005694 }
5695 return true;
5696 case ISD::SRL:
5697 if (Cst > VTBits) {
5698 Lo = DAG.getConstant(0, NVT);
5699 Hi = DAG.getConstant(0, NVT);
5700 } else if (Cst > NVTBits) {
Scott Michel91099d62009-02-17 22:15:04 +00005701 Lo = DAG.getNode(ISD::SRL, dl, NVT,
Bob Wilson2e958a42009-04-10 18:48:47 +00005702 InH, DAG.getConstant(Cst-NVTBits, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005703 Hi = DAG.getConstant(0, NVT);
5704 } else if (Cst == NVTBits) {
5705 Lo = InH;
5706 Hi = DAG.getConstant(0, NVT);
5707 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005708 Lo = DAG.getNode(ISD::OR, dl, NVT,
5709 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michel91099d62009-02-17 22:15:04 +00005710 DAG.getNode(ISD::SHL, dl, NVT, InH,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005711 DAG.getConstant(NVTBits-Cst, ShTy)));
5712 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005713 }
5714 return true;
5715 case ISD::SRA:
5716 if (Cst > VTBits) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005717 Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005718 DAG.getConstant(NVTBits-1, ShTy));
5719 } else if (Cst > NVTBits) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005720 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005721 DAG.getConstant(Cst-NVTBits, ShTy));
Dale Johannesen82b5b722009-02-02 22:12:50 +00005722 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005723 DAG.getConstant(NVTBits-1, ShTy));
5724 } else if (Cst == NVTBits) {
5725 Lo = InH;
Dale Johannesen82b5b722009-02-02 22:12:50 +00005726 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005727 DAG.getConstant(NVTBits-1, ShTy));
5728 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005729 Lo = DAG.getNode(ISD::OR, dl, NVT,
5730 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michel91099d62009-02-17 22:15:04 +00005731 DAG.getNode(ISD::SHL, dl,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005732 NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5733 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005734 }
5735 return true;
5736 }
5737 }
Scott Michel91099d62009-02-17 22:15:04 +00005738
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005739 // Okay, the shift amount isn't constant. However, if we can tell that it is
5740 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohmanece0a882008-02-20 16:57:27 +00005741 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5742 APInt KnownZero, KnownOne;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005743 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Scott Michel91099d62009-02-17 22:15:04 +00005744
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005745 // If we know that if any of the high bits of the shift amount are one, then
5746 // we can do this as a couple of simple shifts.
Dan Gohmanece0a882008-02-20 16:57:27 +00005747 if (KnownOne.intersects(Mask)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005748 // Mask out the high bit, which we know is set.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005749 Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt,
Dan Gohmanece0a882008-02-20 16:57:27 +00005750 DAG.getConstant(~Mask, Amt.getValueType()));
Scott Michel91099d62009-02-17 22:15:04 +00005751
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005752 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005753 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005754 ExpandOp(Op, InL, InH);
5755 switch(Opc) {
5756 case ISD::SHL:
5757 Lo = DAG.getConstant(0, NVT); // Low part is zero.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005758 Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005759 return true;
5760 case ISD::SRL:
5761 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005762 Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005763 return true;
5764 case ISD::SRA:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005765 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005766 DAG.getConstant(NVTBits-1, Amt.getValueType()));
Dale Johannesen82b5b722009-02-02 22:12:50 +00005767 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005768 return true;
5769 }
5770 }
Scott Michel91099d62009-02-17 22:15:04 +00005771
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005772 // If we know that the high bits of the shift amount are all zero, then we can
5773 // do this as a couple of simple shifts.
5774 if ((KnownZero & Mask) == Mask) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005775 // Compute 32-amt.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005776 SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005777 DAG.getConstant(NVTBits, Amt.getValueType()),
5778 Amt);
Scott Michel91099d62009-02-17 22:15:04 +00005779
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005780 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005781 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005782 ExpandOp(Op, InL, InH);
5783 switch(Opc) {
5784 case ISD::SHL:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005785 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
5786 Hi = DAG.getNode(ISD::OR, dl, NVT,
5787 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
5788 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005789 return true;
5790 case ISD::SRL:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005791 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
5792 Lo = DAG.getNode(ISD::OR, dl, NVT,
5793 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5794 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005795 return true;
5796 case ISD::SRA:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005797 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
5798 Lo = DAG.getNode(ISD::OR, dl, NVT,
5799 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5800 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005801 return true;
5802 }
5803 }
Scott Michel91099d62009-02-17 22:15:04 +00005804
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005805 return false;
5806}
5807
5808
5809// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5810// does not fit into a register, return the lo part and set the hi part to the
5811// by-reg argument. If it does fit into a single register, return the result
5812// and leave the Hi part unset.
Dan Gohman8181bd12008-07-27 21:46:04 +00005813SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5814 bool isSigned, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005815 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
Scott Michel91099d62009-02-17 22:15:04 +00005816 // The input chain to this libcall is the entry node of the function.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005817 // Legalizing the call will automatically add the previous call to the
5818 // dependence.
Dan Gohman8181bd12008-07-27 21:46:04 +00005819 SDValue InChain = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00005820
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005821 TargetLowering::ArgListTy Args;
5822 TargetLowering::ArgListEntry Entry;
5823 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands92c43912008-06-06 12:08:01 +00005824 MVT ArgVT = Node->getOperand(i).getValueType();
5825 const Type *ArgTy = ArgVT.getTypeForMVT();
Scott Michel91099d62009-02-17 22:15:04 +00005826 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005827 Entry.isSExt = isSigned;
Duncan Sandsead972e2008-02-14 17:28:50 +00005828 Entry.isZExt = !isSigned;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005829 Args.push_back(Entry);
5830 }
Bill Wendlingfef06052008-09-16 21:48:12 +00005831 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang1448aad2008-10-30 08:01:45 +00005832 TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005833
5834 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands92c43912008-06-06 12:08:01 +00005835 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Bob Wilson2e958a42009-04-10 18:48:47 +00005836 std::pair<SDValue, SDValue> CallInfo =
Dale Johannesen67cc9b62008-09-26 19:31:26 +00005837 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesenca6237b2009-01-30 23:10:59 +00005838 CallingConv::C, false, Callee, Args, DAG,
5839 Node->getDebugLoc());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005840
5841 // Legalize the call sequence, starting with the chain. This will advance
5842 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5843 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5844 LegalizeOp(CallInfo.second);
Dan Gohman8181bd12008-07-27 21:46:04 +00005845 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005846 switch (getTypeAction(CallInfo.first.getValueType())) {
5847 default: assert(0 && "Unknown thing");
5848 case Legal:
5849 Result = CallInfo.first;
5850 break;
5851 case Expand:
5852 ExpandOp(CallInfo.first, Result, Hi);
5853 break;
5854 }
5855 return Result;
5856}
5857
Dan Gohman29c3cef2008-08-14 20:04:46 +00005858/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5859///
5860SDValue SelectionDAGLegalize::
Dale Johannesen9972b632009-02-02 19:03:57 +00005861LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5862 DebugLoc dl) {
Dan Gohman29c3cef2008-08-14 20:04:46 +00005863 bool isCustom = false;
5864 SDValue Tmp1;
5865 switch (getTypeAction(Op.getValueType())) {
5866 case Legal:
5867 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5868 Op.getValueType())) {
5869 default: assert(0 && "Unknown operation action!");
5870 case TargetLowering::Custom:
5871 isCustom = true;
5872 // FALLTHROUGH
5873 case TargetLowering::Legal:
5874 Tmp1 = LegalizeOp(Op);
Gabor Greif1c80d112008-08-28 21:40:38 +00005875 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005876 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5877 else
Dale Johannesen9972b632009-02-02 19:03:57 +00005878 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman29c3cef2008-08-14 20:04:46 +00005879 DestTy, Tmp1);
5880 if (isCustom) {
5881 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005882 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman29c3cef2008-08-14 20:04:46 +00005883 }
5884 break;
5885 case TargetLowering::Expand:
Dale Johannesen9972b632009-02-02 19:03:57 +00005886 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005887 break;
5888 case TargetLowering::Promote:
Dale Johannesen9972b632009-02-02 19:03:57 +00005889 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005890 break;
5891 }
5892 break;
5893 case Expand:
Dale Johannesen9972b632009-02-02 19:03:57 +00005894 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman29c3cef2008-08-14 20:04:46 +00005895 break;
5896 case Promote:
5897 Tmp1 = PromoteOp(Op);
5898 if (isSigned) {
Dale Johannesen9972b632009-02-02 19:03:57 +00005899 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Bob Wilson2e958a42009-04-10 18:48:47 +00005900 Tmp1, DAG.getValueType(Op.getValueType()));
Dan Gohman29c3cef2008-08-14 20:04:46 +00005901 } else {
Bob Wilson2e958a42009-04-10 18:48:47 +00005902 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, Op.getValueType());
Dan Gohman29c3cef2008-08-14 20:04:46 +00005903 }
Gabor Greif1c80d112008-08-28 21:40:38 +00005904 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005905 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5906 else
Dale Johannesen9972b632009-02-02 19:03:57 +00005907 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman29c3cef2008-08-14 20:04:46 +00005908 DestTy, Tmp1);
5909 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5910 break;
5911 }
5912 return Result;
5913}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005914
5915/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5916///
Dan Gohman8181bd12008-07-27 21:46:04 +00005917SDValue SelectionDAGLegalize::
Dale Johannesen9972b632009-02-02 19:03:57 +00005918ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00005919 MVT SourceVT = Source.getValueType();
Dan Gohman8b232ff2008-03-11 01:59:03 +00005920 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005921
Dan Gohman29c3cef2008-08-14 20:04:46 +00005922 // Expand unsupported int-to-fp vector casts by unrolling them.
5923 if (DestTy.isVector()) {
5924 if (!ExpandSource)
5925 return LegalizeOp(UnrollVectorOp(Source));
5926 MVT DestEltTy = DestTy.getVectorElementType();
5927 if (DestTy.getVectorNumElements() == 1) {
5928 SDValue Scalar = ScalarizeVectorOp(Source);
5929 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesen9972b632009-02-02 19:03:57 +00005930 DestEltTy, Scalar, dl);
Evan Cheng907a2d22009-02-25 22:49:59 +00005931 return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005932 }
5933 SDValue Lo, Hi;
5934 SplitVectorOp(Source, Lo, Hi);
5935 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5936 DestTy.getVectorNumElements() / 2);
Scott Michel91099d62009-02-17 22:15:04 +00005937 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesen9972b632009-02-02 19:03:57 +00005938 Lo, dl);
Scott Michel91099d62009-02-17 22:15:04 +00005939 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesen9972b632009-02-02 19:03:57 +00005940 Hi, dl);
5941 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengd901b662008-10-13 18:46:18 +00005942 HiResult));
Dan Gohman29c3cef2008-08-14 20:04:46 +00005943 }
5944
Evan Chengf99a7752008-04-01 02:18:22 +00005945 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5946 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohmana193dba2008-03-05 02:07:31 +00005947 // The integer value loaded will be incorrectly if the 'sign bit' of the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005948 // incoming integer is set. To handle this, we dynamically test to see if
5949 // it is set, and, if so, add a fudge factor.
Dan Gohman8181bd12008-07-27 21:46:04 +00005950 SDValue Hi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005951 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005952 SDValue Lo;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005953 ExpandOp(Source, Lo, Hi);
Dale Johannesen9972b632009-02-02 19:03:57 +00005954 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman8b232ff2008-03-11 01:59:03 +00005955 } else {
5956 // The comparison for the sign bit will use the entire operand.
5957 Hi = Source;
5958 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005959
Dale Johannesen96db7962008-11-04 20:52:49 +00005960 // Check to see if the target has a custom way to lower this. If so, use
5961 // it. (Note we've already expanded the operand in this case.)
Dale Johannesena359b8b2008-10-21 20:50:01 +00005962 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
5963 default: assert(0 && "This action not implemented for this operation!");
5964 case TargetLowering::Legal:
5965 case TargetLowering::Expand:
5966 break; // This case is handled below.
5967 case TargetLowering::Custom: {
Dale Johannesen24dd9a52009-02-07 00:55:49 +00005968 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, dl, DestTy,
Bob Wilson2e958a42009-04-10 18:48:47 +00005969 Source), DAG);
Dale Johannesena359b8b2008-10-21 20:50:01 +00005970 if (NV.getNode())
5971 return LegalizeOp(NV);
5972 break; // The target decided this was legal after all
5973 }
5974 }
5975
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005976 // If this is unsigned, and not supported, first perform the conversion to
5977 // signed, then adjust the result if the sign bit is set.
Dale Johannesen9972b632009-02-02 19:03:57 +00005978 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005979
Scott Michel91099d62009-02-17 22:15:04 +00005980 SDValue SignSet = DAG.getSetCC(dl,
Dale Johannesen9972b632009-02-02 19:03:57 +00005981 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005982 Hi, DAG.getConstant(0, Hi.getValueType()),
5983 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00005984 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesen9972b632009-02-02 19:03:57 +00005985 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005986 SignSet, Four, Zero);
5987 uint64_t FF = 0x5f800000ULL;
5988 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattner50ce8342009-03-08 01:47:41 +00005989 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005990
Dan Gohman8181bd12008-07-27 21:46:04 +00005991 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +00005992 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen9972b632009-02-02 19:03:57 +00005993 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00005994 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00005995 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005996 if (DestTy == MVT::f32)
Dale Johannesen9972b632009-02-02 19:03:57 +00005997 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00005998 PseudoSourceValue::getConstantPool(), 0,
5999 false, Alignment);
Duncan Sandsec142ee2008-06-08 20:54:56 +00006000 else if (DestTy.bitsGT(MVT::f32))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006001 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen9972b632009-02-02 19:03:57 +00006002 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman12a9c082008-02-06 22:27:42 +00006003 CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00006004 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00006005 MVT::f32, false, Alignment);
Scott Michel91099d62009-02-17 22:15:04 +00006006 else
Dale Johannesen2fc20782007-09-14 22:26:36 +00006007 assert(0 && "Unexpected conversion");
6008
Duncan Sands92c43912008-06-06 12:08:01 +00006009 MVT SCVT = SignedConv.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006010 if (SCVT != DestTy) {
6011 // Destination type needs to be expanded as well. The FADD now we are
6012 // constructing will be expanded into a libcall.
Duncan Sands92c43912008-06-06 12:08:01 +00006013 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
6014 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesen9972b632009-02-02 19:03:57 +00006015 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006016 SignedConv, SignedConv.getValue(1));
6017 }
Dale Johannesen9972b632009-02-02 19:03:57 +00006018 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006019 }
Dale Johannesen9972b632009-02-02 19:03:57 +00006020 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006021 }
6022
6023 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmanc98645c2008-03-05 01:08:17 +00006024 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006025 default: assert(0 && "This action not implemented for this operation!");
6026 case TargetLowering::Legal:
6027 case TargetLowering::Expand:
6028 break; // This case is handled below.
6029 case TargetLowering::Custom: {
Dale Johannesen9972b632009-02-02 19:03:57 +00006030 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Bob Wilson2e958a42009-04-10 18:48:47 +00006031 Source), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006032 if (NV.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006033 return LegalizeOp(NV);
6034 break; // The target decided this was legal after all
6035 }
6036 }
6037
6038 // Expand the source, then glue it back together for the call. We must expand
6039 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman8b232ff2008-03-11 01:59:03 +00006040 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006041 SDValue SrcLo, SrcHi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00006042 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesen9972b632009-02-02 19:03:57 +00006043 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman8b232ff2008-03-11 01:59:03 +00006044 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006045
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006046 RTLIB::Libcall LC = isSigned ?
6047 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6048 RTLIB::getUINTTOFP(SourceVT, DestTy);
6049 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6050
Dale Johannesen9972b632009-02-02 19:03:57 +00006051 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman8181bd12008-07-27 21:46:04 +00006052 SDValue HiPart;
Gabor Greif1c80d112008-08-28 21:40:38 +00006053 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6054 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesen9972b632009-02-02 19:03:57 +00006055 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmanec51f642008-03-10 23:03:31 +00006056 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006057}
6058
6059/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6060/// INT_TO_FP operation of the specified operand when the target requests that
6061/// we expand it. At this point, we know that the result and operand types are
6062/// legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00006063SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6064 SDValue Op0,
Dale Johannesen9972b632009-02-02 19:03:57 +00006065 MVT DestVT,
6066 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006067 if (Op0.getValueType() == MVT::i32) {
6068 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michel91099d62009-02-17 22:15:04 +00006069
Chris Lattner0aeb1d02008-01-16 07:03:22 +00006070 // Get the stack frame index of a 8 byte buffer.
Dan Gohman8181bd12008-07-27 21:46:04 +00006071 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michel91099d62009-02-17 22:15:04 +00006072
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006073 // word offset constant for Hi/Lo address computation
Dan Gohman8181bd12008-07-27 21:46:04 +00006074 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006075 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman8181bd12008-07-27 21:46:04 +00006076 SDValue Hi = StackSlot;
Scott Michel91099d62009-02-17 22:15:04 +00006077 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilson2e958a42009-04-10 18:48:47 +00006078 TLI.getPointerTy(), StackSlot, WordOff);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006079 if (TLI.isLittleEndian())
6080 std::swap(Hi, Lo);
Scott Michel91099d62009-02-17 22:15:04 +00006081
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006082 // if signed map to unsigned space
Dan Gohman8181bd12008-07-27 21:46:04 +00006083 SDValue Op0Mapped;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006084 if (isSigned) {
6085 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman8181bd12008-07-27 21:46:04 +00006086 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesen9972b632009-02-02 19:03:57 +00006087 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006088 } else {
6089 Op0Mapped = Op0;
6090 }
6091 // store the lo of the constructed double - based on integer input
Dale Johannesen9972b632009-02-02 19:03:57 +00006092 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilson2e958a42009-04-10 18:48:47 +00006093 Op0Mapped, Lo, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006094 // initial hi portion of constructed double
Dan Gohman8181bd12008-07-27 21:46:04 +00006095 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006096 // store the hi of the constructed double - biased exponent
Dale Johannesen9972b632009-02-02 19:03:57 +00006097 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006098 // load the constructed double
Dale Johannesen9972b632009-02-02 19:03:57 +00006099 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006100 // FP constant to bias correct the final result
Dan Gohman8181bd12008-07-27 21:46:04 +00006101 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilson2e958a42009-04-10 18:48:47 +00006102 BitsToDouble(0x4330000080000000ULL) :
6103 BitsToDouble(0x4330000000000000ULL),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006104 MVT::f64);
6105 // subtract the bias
Dale Johannesen9972b632009-02-02 19:03:57 +00006106 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006107 // final result
Dan Gohman8181bd12008-07-27 21:46:04 +00006108 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006109 // handle final rounding
6110 if (DestVT == MVT::f64) {
6111 // do nothing
6112 Result = Sub;
Duncan Sandsec142ee2008-06-08 20:54:56 +00006113 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesen9972b632009-02-02 19:03:57 +00006114 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner5872a362008-01-17 07:00:52 +00006115 DAG.getIntPtrConstant(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00006116 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen9972b632009-02-02 19:03:57 +00006117 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006118 }
6119 return Result;
6120 }
6121 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesen9972b632009-02-02 19:03:57 +00006122 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006123
Dale Johannesen9972b632009-02-02 19:03:57 +00006124 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00006125 Op0, DAG.getConstant(0, Op0.getValueType()),
6126 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00006127 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesen9972b632009-02-02 19:03:57 +00006128 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006129 SignSet, Four, Zero);
6130
6131 // If the sign bit of the integer is set, the large number will be treated
6132 // as a negative number. To counteract this, the dynamic code adds an
6133 // offset depending on the data type.
6134 uint64_t FF;
Duncan Sands92c43912008-06-06 12:08:01 +00006135 switch (Op0.getValueType().getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006136 default: assert(0 && "Unsupported integer type!");
6137 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6138 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6139 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6140 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6141 }
6142 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattner50ce8342009-03-08 01:47:41 +00006143 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006144
Dan Gohman8181bd12008-07-27 21:46:04 +00006145 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +00006146 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen9972b632009-02-02 19:03:57 +00006147 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00006148 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00006149 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006150 if (DestVT == MVT::f32)
Dale Johannesen9972b632009-02-02 19:03:57 +00006151 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00006152 PseudoSourceValue::getConstantPool(), 0,
6153 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006154 else {
Dan Gohman12a9c082008-02-06 22:27:42 +00006155 FudgeInReg =
Dale Johannesen9972b632009-02-02 19:03:57 +00006156 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman12a9c082008-02-06 22:27:42 +00006157 DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00006158 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00006159 MVT::f32, false, Alignment));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006160 }
6161
Dale Johannesen9972b632009-02-02 19:03:57 +00006162 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006163}
6164
6165/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6166/// *INT_TO_FP operation of the specified operand when the target requests that
6167/// we promote it. At this point, we know that the result and operand types are
6168/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6169/// operation that takes a larger input.
Dan Gohman8181bd12008-07-27 21:46:04 +00006170SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6171 MVT DestVT,
Dale Johannesen9972b632009-02-02 19:03:57 +00006172 bool isSigned,
6173 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006174 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00006175 MVT NewInTy = LegalOp.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006176
6177 unsigned OpToUse = 0;
6178
6179 // Scan for the appropriate larger type to use.
6180 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00006181 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6182 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006183
6184 // If the target supports SINT_TO_FP of this type, use it.
6185 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6186 default: break;
6187 case TargetLowering::Legal:
6188 if (!TLI.isTypeLegal(NewInTy))
6189 break; // Can't use this datatype.
6190 // FALL THROUGH.
6191 case TargetLowering::Custom:
6192 OpToUse = ISD::SINT_TO_FP;
6193 break;
6194 }
6195 if (OpToUse) break;
6196 if (isSigned) continue;
6197
6198 // If the target supports UINT_TO_FP of this type, use it.
6199 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6200 default: break;
6201 case TargetLowering::Legal:
6202 if (!TLI.isTypeLegal(NewInTy))
6203 break; // Can't use this datatype.
6204 // FALL THROUGH.
6205 case TargetLowering::Custom:
6206 OpToUse = ISD::UINT_TO_FP;
6207 break;
6208 }
6209 if (OpToUse) break;
6210
6211 // Otherwise, try a larger type.
6212 }
6213
6214 // Okay, we found the operation and type to use. Zero extend our input to the
6215 // desired type then run the operation on it.
Dale Johannesen9972b632009-02-02 19:03:57 +00006216 return DAG.getNode(OpToUse, dl, DestVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006217 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesen9972b632009-02-02 19:03:57 +00006218 dl, NewInTy, LegalOp));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006219}
6220
6221/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6222/// FP_TO_*INT operation of the specified operand when the target requests that
6223/// we promote it. At this point, we know that the result and operand types are
6224/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6225/// operation that returns a larger result.
Dan Gohman8181bd12008-07-27 21:46:04 +00006226SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6227 MVT DestVT,
Dale Johannesen9972b632009-02-02 19:03:57 +00006228 bool isSigned,
6229 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006230 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00006231 MVT NewOutTy = DestVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006232
6233 unsigned OpToUse = 0;
6234
6235 // Scan for the appropriate larger type to use.
6236 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00006237 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6238 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006239
6240 // If the target supports FP_TO_SINT returning this type, use it.
6241 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6242 default: break;
6243 case TargetLowering::Legal:
6244 if (!TLI.isTypeLegal(NewOutTy))
6245 break; // Can't use this datatype.
6246 // FALL THROUGH.
6247 case TargetLowering::Custom:
6248 OpToUse = ISD::FP_TO_SINT;
6249 break;
6250 }
6251 if (OpToUse) break;
6252
6253 // If the target supports FP_TO_UINT of this type, use it.
6254 switch (TLI.getOperationAction(ISD::FP_TO_UINT, 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_UINT;
6262 break;
6263 }
6264 if (OpToUse) break;
6265
6266 // Otherwise, try a larger type.
6267 }
6268
Scott Michel91099d62009-02-17 22:15:04 +00006269
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006270 // Okay, we found the operation and type to use.
Dale Johannesen9972b632009-02-02 19:03:57 +00006271 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sandsac496a12008-07-04 11:47:58 +00006272
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006273 // If the operation produces an invalid type, it must be custom lowered. Use
6274 // the target lowering hooks to expand it. Just keep the low part of the
6275 // expanded operation, we know that we're truncating anyway.
6276 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands7d9834b2008-12-01 11:39:25 +00006277 SmallVector<SDValue, 2> Results;
6278 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6279 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6280 Operation = Results[0];
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006281 }
Duncan Sandsac496a12008-07-04 11:47:58 +00006282
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006283 // Truncate the result of the extended FP_TO_*INT operation to the desired
6284 // size.
Dale Johannesen9972b632009-02-02 19:03:57 +00006285 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006286}
6287
6288/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6289///
Dale Johannesen82b5b722009-02-02 22:12:50 +00006290SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00006291 MVT VT = Op.getValueType();
6292 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00006293 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands92c43912008-06-06 12:08:01 +00006294 switch (VT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006295 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6296 case MVT::i16:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006297 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6298 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6299 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006300 case MVT::i32:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006301 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6302 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6303 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6304 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6305 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6306 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6307 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6308 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6309 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006310 case MVT::i64:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006311 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
6312 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
6313 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6314 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6315 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6316 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6317 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
6318 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
6319 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6320 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6321 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6322 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6323 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6324 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6325 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
6326 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
6327 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6328 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6329 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
6330 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
6331 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006332 }
6333}
6334
6335/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6336///
Scott Michel91099d62009-02-17 22:15:04 +00006337SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen82b5b722009-02-02 22:12:50 +00006338 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006339 switch (Opc) {
6340 default: assert(0 && "Cannot expand this yet!");
6341 case ISD::CTPOP: {
6342 static const uint64_t mask[6] = {
6343 0x5555555555555555ULL, 0x3333333333333333ULL,
6344 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6345 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6346 };
Duncan Sands92c43912008-06-06 12:08:01 +00006347 MVT VT = Op.getValueType();
6348 MVT ShVT = TLI.getShiftAmountTy();
6349 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006350 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6351 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sands505ba942009-02-01 18:06:53 +00006352 unsigned EltSize = VT.isVector() ?
6353 VT.getVectorElementType().getSizeInBits() : len;
6354 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman8181bd12008-07-27 21:46:04 +00006355 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michel91099d62009-02-17 22:15:04 +00006356 Op = DAG.getNode(ISD::ADD, dl, VT,
Dale Johannesen18ae8af2009-02-06 21:55:48 +00006357 DAG.getNode(ISD::AND, dl, VT, Op, Tmp2),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006358 DAG.getNode(ISD::AND, dl, VT,
6359 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3),
6360 Tmp2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006361 }
6362 return Op;
6363 }
6364 case ISD::CTLZ: {
6365 // for now, we do this:
6366 // x = x | (x >> 1);
6367 // x = x | (x >> 2);
6368 // ...
6369 // x = x | (x >>16);
6370 // x = x | (x >>32); // for 64-bit input
6371 // return popcount(~x);
6372 //
6373 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00006374 MVT VT = Op.getValueType();
6375 MVT ShVT = TLI.getShiftAmountTy();
6376 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006377 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006378 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michel91099d62009-02-17 22:15:04 +00006379 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesen18ae8af2009-02-06 21:55:48 +00006380 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006381 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00006382 Op = DAG.getNOT(dl, Op, VT);
6383 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006384 }
6385 case ISD::CTTZ: {
6386 // for now, we use: { return popcount(~x & (x - 1)); }
6387 // unless the target has ctlz but not ctpop, in which case we use:
6388 // { return 32 - nlz(~x & (x-1)); }
6389 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00006390 MVT VT = Op.getValueType();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006391 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
6392 DAG.getNOT(dl, Op, VT),
6393 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendlingfcfb47d2009-01-30 23:03:19 +00006394 DAG.getConstant(1, VT)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006395 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohman52c51aa2009-01-28 17:46:25 +00006396 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6397 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00006398 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands92c43912008-06-06 12:08:01 +00006399 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006400 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
6401 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006402 }
6403 }
6404}
6405
Dan Gohman8181bd12008-07-27 21:46:04 +00006406/// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006407/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman4fc03742008-10-01 15:07:49 +00006408/// LegalizedNodes map is filled in for any results that are not expanded, the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006409/// ExpandedNodes map is filled in for any results that are expanded, and the
6410/// Lo/Hi values are returned.
Dan Gohman8181bd12008-07-27 21:46:04 +00006411void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands92c43912008-06-06 12:08:01 +00006412 MVT VT = Op.getValueType();
6413 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greif1c80d112008-08-28 21:40:38 +00006414 SDNode *Node = Op.getNode();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006415 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006416 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00006417 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands92c43912008-06-06 12:08:01 +00006418 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006419
6420 // See if we already expanded it.
Dan Gohman8181bd12008-07-27 21:46:04 +00006421 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006422 = ExpandedNodes.find(Op);
6423 if (I != ExpandedNodes.end()) {
6424 Lo = I->second.first;
6425 Hi = I->second.second;
6426 return;
6427 }
6428
6429 switch (Node->getOpcode()) {
6430 case ISD::CopyFromReg:
6431 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006432 case ISD::FP_ROUND_INREG:
Scott Michel91099d62009-02-17 22:15:04 +00006433 if (VT == MVT::ppcf128 &&
6434 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006435 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006436 SDValue SrcLo, SrcHi, Src;
Dale Johannesend3b6af32007-10-11 23:32:15 +00006437 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006438 Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi);
Bob Wilson2e958a42009-04-10 18:48:47 +00006439 SDValue Result =
6440 TLI.LowerOperation(DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src,
6441 Op.getOperand(1)), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006442 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6443 Lo = Result.getNode()->getOperand(0);
6444 Hi = Result.getNode()->getOperand(1);
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006445 break;
6446 }
6447 // fall through
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006448 default:
6449#ifndef NDEBUG
6450 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
6451#endif
6452 assert(0 && "Do not know how to expand this operator!");
6453 abort();
Dan Gohman550c8462008-02-27 01:52:30 +00006454 case ISD::EXTRACT_ELEMENT:
6455 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006456 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman550c8462008-02-27 01:52:30 +00006457 return ExpandOp(Hi, Lo, Hi);
Dan Gohman7e7aa2c2008-02-27 19:44:57 +00006458 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen2ff963d2007-10-31 00:32:36 +00006459 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen2ff963d2007-10-31 00:32:36 +00006460 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6461 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6462 return ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006463 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00006464 Lo = DAG.getUNDEF(NVT);
6465 Hi = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006466 break;
6467 case ISD::Constant: {
Duncan Sands92c43912008-06-06 12:08:01 +00006468 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman97f1f8e2008-03-03 22:20:46 +00006469 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6470 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6471 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006472 break;
6473 }
6474 case ISD::ConstantFP: {
6475 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesen2aef5692007-10-11 18:07:22 +00006476 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00006477 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesen2aef5692007-10-11 18:07:22 +00006478 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6479 MVT::f64);
Scott Michel91099d62009-02-17 22:15:04 +00006480 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
Dale Johannesen2aef5692007-10-11 18:07:22 +00006481 MVT::f64);
6482 break;
6483 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006484 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
6485 if (getTypeAction(Lo.getValueType()) == Expand)
6486 ExpandOp(Lo, Lo, Hi);
6487 break;
6488 }
6489 case ISD::BUILD_PAIR:
6490 // Return the operands.
6491 Lo = Node->getOperand(0);
6492 Hi = Node->getOperand(1);
6493 break;
Scott Michel91099d62009-02-17 22:15:04 +00006494
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006495 case ISD::MERGE_VALUES:
Chris Lattner1b66f822007-11-24 19:12:15 +00006496 if (Node->getNumValues() == 1) {
6497 ExpandOp(Op.getOperand(0), Lo, Hi);
6498 break;
6499 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006500 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif46bf5472008-08-26 22:36:50 +00006501 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006502 Op.getValue(1).getValueType() == MVT::Other &&
6503 "unhandled MERGE_VALUES");
6504 ExpandOp(Op.getOperand(0), Lo, Hi);
6505 // Remember that we legalized the chain.
6506 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6507 break;
Scott Michel91099d62009-02-17 22:15:04 +00006508
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006509 case ISD::SIGN_EXTEND_INREG:
6510 ExpandOp(Node->getOperand(0), Lo, Hi);
6511 // sext_inreg the low part if needed.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006512 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1));
Scott Michel91099d62009-02-17 22:15:04 +00006513
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006514 // The high part gets the sign extension from the lo-part. This handles
6515 // things like sextinreg V:i64 from i8.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006516 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Duncan Sands92c43912008-06-06 12:08:01 +00006517 DAG.getConstant(NVT.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006518 TLI.getShiftAmountTy()));
6519 break;
6520
6521 case ISD::BSWAP: {
6522 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006523 SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi);
6524 Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006525 Lo = TempLo;
6526 break;
6527 }
Scott Michel91099d62009-02-17 22:15:04 +00006528
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006529 case ISD::CTPOP:
6530 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006531 Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6532 DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
6533 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006534 Hi = DAG.getConstant(0, NVT);
6535 break;
6536
6537 case ISD::CTLZ: {
6538 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
6539 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006540 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006541 SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
6542 SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ,
6543 BitsC, ISD::SETNE);
6544 SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
6545 LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006546
Dale Johannesen82b5b722009-02-02 22:12:50 +00006547 Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006548 Hi = DAG.getConstant(0, NVT);
6549 break;
6550 }
6551
6552 case ISD::CTTZ: {
6553 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
6554 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006555 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006556 SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
6557 SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ,
6558 BitsC, ISD::SETNE);
6559 SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
6560 HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006561
Dale Johannesen82b5b722009-02-02 22:12:50 +00006562 Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006563 Hi = DAG.getConstant(0, NVT);
6564 break;
6565 }
6566
6567 case ISD::VAARG: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006568 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6569 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dale Johannesen564036c2009-02-04 00:13:36 +00006570 Lo = DAG.getVAArg(NVT, dl, Ch, Ptr, Node->getOperand(2));
6571 Hi = DAG.getVAArg(NVT, dl, Lo.getValue(1), Ptr, Node->getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006572
6573 // Remember that we legalized the chain.
6574 Hi = LegalizeOp(Hi);
6575 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006576 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006577 std::swap(Lo, Hi);
6578 break;
6579 }
Scott Michel91099d62009-02-17 22:15:04 +00006580
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006581 case ISD::LOAD: {
6582 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00006583 SDValue Ch = LD->getChain(); // Legalize the chain.
6584 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006585 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman29c3cef2008-08-14 20:04:46 +00006586 const Value *SV = LD->getSrcValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006587 int SVOffset = LD->getSrcValueOffset();
6588 unsigned Alignment = LD->getAlignment();
6589 bool isVolatile = LD->isVolatile();
6590
6591 if (ExtType == ISD::NON_EXTLOAD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006592 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006593 isVolatile, Alignment);
6594 if (VT == MVT::f32 || VT == MVT::f64) {
6595 // f32->i32 or f64->i64 one to one expansion.
6596 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006597 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006598 // Recursively expand the new load.
6599 if (getTypeAction(NVT) == Expand)
6600 ExpandOp(Lo, Lo, Hi);
6601 break;
6602 }
6603
6604 // Increment the pointer to the other half.
Duncan Sands92c43912008-06-06 12:08:01 +00006605 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dale Johannesen82b5b722009-02-02 22:12:50 +00006606 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00006607 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006608 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00006609 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006610 Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006611 isVolatile, Alignment);
6612
6613 // Build a factor node to remember that this load is independent of the
6614 // other one.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006615 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilson2e958a42009-04-10 18:48:47 +00006616 Hi.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006617
6618 // Remember that we legalized the chain.
6619 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006620 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006621 std::swap(Lo, Hi);
6622 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00006623 MVT EVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006624
Dale Johannesen2550e3a2007-10-19 20:29:00 +00006625 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6626 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006627 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dale Johannesen82b5b722009-02-02 22:12:50 +00006628 SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV,
Bob Wilson2e958a42009-04-10 18:48:47 +00006629 SVOffset, isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006630 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006631 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dale Johannesen82b5b722009-02-02 22:12:50 +00006632 ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006633 break;
6634 }
Scott Michel91099d62009-02-17 22:15:04 +00006635
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006636 if (EVT == NVT)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006637 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006638 SVOffset, isVolatile, Alignment);
6639 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00006640 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006641 SVOffset, EVT, isVolatile,
6642 Alignment);
Scott Michel91099d62009-02-17 22:15:04 +00006643
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006644 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006645 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006646
6647 if (ExtType == ISD::SEXTLOAD) {
6648 // The high part is obtained by SRA'ing all but one of the bits of the
6649 // lo part.
Duncan Sands92c43912008-06-06 12:08:01 +00006650 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006651 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006652 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6653 } else if (ExtType == ISD::ZEXTLOAD) {
6654 // The high part is just a zero.
6655 Hi = DAG.getConstant(0, NVT);
6656 } else /* if (ExtType == ISD::EXTLOAD) */ {
6657 // The high part is undefined.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00006658 Hi = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006659 }
6660 }
6661 break;
6662 }
6663 case ISD::AND:
6664 case ISD::OR:
6665 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +00006666 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006667 ExpandOp(Node->getOperand(0), LL, LH);
6668 ExpandOp(Node->getOperand(1), RL, RH);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006669 Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL);
6670 Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006671 break;
6672 }
6673 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006674 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006675 ExpandOp(Node->getOperand(1), LL, LH);
6676 ExpandOp(Node->getOperand(2), RL, RH);
6677 if (getTypeAction(NVT) == Expand)
6678 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006679 Lo = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LL, RL);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006680 if (VT != MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006681 Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006682 break;
6683 }
6684 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006685 SDValue TL, TH, FL, FH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006686 ExpandOp(Node->getOperand(2), TL, TH);
6687 ExpandOp(Node->getOperand(3), FL, FH);
6688 if (getTypeAction(NVT) == Expand)
6689 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006690 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006691 Node->getOperand(1), TL, FL, Node->getOperand(4));
6692 if (VT != MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006693 Hi = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006694 Node->getOperand(1), TH, FH, Node->getOperand(4));
6695 break;
6696 }
6697 case ISD::ANY_EXTEND:
6698 // The low part is any extension of the input (which degenerates to a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006699 Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006700 // The high part is undefined.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00006701 Hi = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006702 break;
6703 case ISD::SIGN_EXTEND: {
6704 // The low part is just a sign extension of the input (which degenerates to
6705 // a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006706 Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006707
6708 // The high part is obtained by SRA'ing all but one of the bits of the lo
6709 // part.
Duncan Sands92c43912008-06-06 12:08:01 +00006710 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006711 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006712 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6713 break;
6714 }
6715 case ISD::ZERO_EXTEND:
6716 // The low part is just a zero extension of the input (which degenerates to
6717 // a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006718 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006719
6720 // The high part is just a zero.
6721 Hi = DAG.getConstant(0, NVT);
6722 break;
Scott Michel91099d62009-02-17 22:15:04 +00006723
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006724 case ISD::TRUNCATE: {
6725 // The input value must be larger than this value. Expand *it*.
Dan Gohman8181bd12008-07-27 21:46:04 +00006726 SDValue NewLo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006727 ExpandOp(Node->getOperand(0), NewLo, Hi);
Scott Michel91099d62009-02-17 22:15:04 +00006728
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006729 // The low part is now either the right size, or it is closer. If not the
6730 // right size, make an illegal truncate so we recursively expand it.
6731 if (NewLo.getValueType() != Node->getValueType(0))
Dale Johannesen82b5b722009-02-02 22:12:50 +00006732 NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006733 ExpandOp(NewLo, Lo, Hi);
6734 break;
6735 }
Scott Michel91099d62009-02-17 22:15:04 +00006736
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006737 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006738 SDValue Tmp;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006739 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6740 // If the target wants to, allow it to lower this itself.
6741 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6742 case Expand: assert(0 && "cannot expand FP!");
6743 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6744 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6745 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00006746 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006747 }
6748
6749 // f32 / f64 must be expanded to i32 / i64.
6750 if (VT == MVT::f32 || VT == MVT::f64) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006751 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006752 if (getTypeAction(NVT) == Expand)
6753 ExpandOp(Lo, Lo, Hi);
6754 break;
6755 }
6756
6757 // If source operand will be expanded to the same type as VT, i.e.
6758 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands92c43912008-06-06 12:08:01 +00006759 MVT VT0 = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006760 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6761 ExpandOp(Node->getOperand(0), Lo, Hi);
6762 break;
6763 }
6764
6765 // Turn this into a load/store pair by default.
Gabor Greif1c80d112008-08-28 21:40:38 +00006766 if (Tmp.getNode() == 0)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006767 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl);
Scott Michel91099d62009-02-17 22:15:04 +00006768
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006769 ExpandOp(Tmp, Lo, Hi);
6770 break;
6771 }
6772
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006773 case ISD::READCYCLECOUNTER: {
Scott Michel91099d62009-02-17 22:15:04 +00006774 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006775 TargetLowering::Custom &&
6776 "Must custom expand ReadCycleCounter");
Dan Gohman8181bd12008-07-27 21:46:04 +00006777 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006778 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006779 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006780 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006781 LegalizeOp(Tmp.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006782 break;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006783 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006784
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006785 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen44eb5372008-10-03 19:41:08 +00006786 // This operation does not need a loop.
6787 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6788 assert(Tmp.getNode() && "Node must be custom expanded!");
6789 ExpandOp(Tmp.getValue(0), Lo, Hi);
6790 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6791 LegalizeOp(Tmp.getValue(1)));
6792 break;
6793 }
6794
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006795 case ISD::ATOMIC_LOAD_ADD:
6796 case ISD::ATOMIC_LOAD_SUB:
6797 case ISD::ATOMIC_LOAD_AND:
6798 case ISD::ATOMIC_LOAD_OR:
6799 case ISD::ATOMIC_LOAD_XOR:
6800 case ISD::ATOMIC_LOAD_NAND:
6801 case ISD::ATOMIC_SWAP: {
Dale Johannesen44eb5372008-10-03 19:41:08 +00006802 // These operations require a loop to be generated. We can't do that yet,
6803 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesenf160d802008-10-02 18:53:47 +00006804 SDValue In2Lo, In2Hi, In2;
6805 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006806 In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi);
Dale Johannesen44eb5372008-10-03 19:41:08 +00006807 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
Scott Michel91099d62009-02-17 22:15:04 +00006808 SDValue Replace =
Dale Johannesen82b5b722009-02-02 22:12:50 +00006809 DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(),
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006810 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen44eb5372008-10-03 19:41:08 +00006811 Anode->getSrcValue(), Anode->getAlignment());
6812 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesenf160d802008-10-02 18:53:47 +00006813 ExpandOp(Result.getValue(0), Lo, Hi);
6814 // Remember that we legalized the chain.
Bob Wilson2e958a42009-04-10 18:48:47 +00006815 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Result.getValue(1)));
Andrew Lenharth81580822008-03-05 01:15:49 +00006816 break;
6817 }
6818
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006819 // These operators cannot be expanded directly, emit them as calls to
6820 // library functions.
6821 case ISD::FP_TO_SINT: {
6822 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006823 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006824 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6825 case Expand: assert(0 && "cannot expand FP!");
6826 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6827 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6828 }
6829
Dale Johannesen82b5b722009-02-02 22:12:50 +00006830 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006831
6832 // Now that the custom expander is done, expand the result, which is still
6833 // VT.
Gabor Greif1c80d112008-08-28 21:40:38 +00006834 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006835 ExpandOp(Op, Lo, Hi);
6836 break;
6837 }
6838 }
6839
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006840 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6841 VT);
6842 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6843 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006844 break;
6845 }
6846
6847 case ISD::FP_TO_UINT: {
6848 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006849 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006850 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6851 case Expand: assert(0 && "cannot expand FP!");
6852 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6853 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6854 }
Scott Michel91099d62009-02-17 22:15:04 +00006855
Dale Johannesen82b5b722009-02-02 22:12:50 +00006856 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006857
6858 // Now that the custom expander is done, expand the result.
Gabor Greif1c80d112008-08-28 21:40:38 +00006859 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006860 ExpandOp(Op, Lo, Hi);
6861 break;
6862 }
6863 }
6864
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006865 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6866 VT);
6867 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6868 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006869 break;
6870 }
6871
6872 case ISD::SHL: {
6873 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006874 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006875 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006876 SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006877 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006878 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006879 // Now that the custom expander is done, expand the result, which is
6880 // still VT.
6881 ExpandOp(Op, Lo, Hi);
6882 break;
6883 }
6884 }
Scott Michel91099d62009-02-17 22:15:04 +00006885
6886 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006887 // this X << 1 as X+X.
6888 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman52c51aa2009-01-28 17:46:25 +00006889 if (ShAmt->getAPIntValue() == 1 &&
Scott Michel91099d62009-02-17 22:15:04 +00006890 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00006891 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006892 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006893 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6894 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6895 LoOps[1] = LoOps[0];
Dale Johannesen82b5b722009-02-02 22:12:50 +00006896 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006897
6898 HiOps[1] = HiOps[0];
6899 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006900 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006901 break;
6902 }
6903 }
Scott Michel91099d62009-02-17 22:15:04 +00006904
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006905 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006906 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006907 break;
6908
6909 // If this target supports SHL_PARTS, use it.
6910 TargetLowering::LegalizeAction Action =
6911 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6912 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6913 Action == TargetLowering::Custom) {
Scott Michel91099d62009-02-17 22:15:04 +00006914 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006915 ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006916 break;
6917 }
6918
6919 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006920 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006921 break;
6922 }
6923
6924 case ISD::SRA: {
6925 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006926 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006927 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dale Johannesen18ae8af2009-02-06 21:55:48 +00006928 SDValue Op = DAG.getNode(ISD::SRA, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006929 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006930 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006931 // Now that the custom expander is done, expand the result, which is
6932 // still VT.
6933 ExpandOp(Op, Lo, Hi);
6934 break;
6935 }
6936 }
Scott Michel91099d62009-02-17 22:15:04 +00006937
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006938 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006939 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006940 break;
6941
6942 // If this target supports SRA_PARTS, use it.
6943 TargetLowering::LegalizeAction Action =
6944 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6945 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6946 Action == TargetLowering::Custom) {
Scott Michel91099d62009-02-17 22:15:04 +00006947 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006948 ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006949 break;
6950 }
6951
6952 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006953 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006954 break;
6955 }
6956
6957 case ISD::SRL: {
6958 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006959 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006960 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006961 SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006962 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006963 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006964 // Now that the custom expander is done, expand the result, which is
6965 // still VT.
6966 ExpandOp(Op, Lo, Hi);
6967 break;
6968 }
6969 }
6970
6971 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006972 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006973 break;
6974
6975 // If this target supports SRL_PARTS, use it.
6976 TargetLowering::LegalizeAction Action =
6977 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6978 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6979 Action == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006980 ExpandShiftParts(ISD::SRL_PARTS,
6981 Node->getOperand(0), ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006982 break;
6983 }
6984
6985 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006986 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006987 break;
6988 }
6989
6990 case ISD::ADD:
6991 case ISD::SUB: {
6992 // If the target wants to custom expand this, let them.
6993 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6994 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006995 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006996 if (Result.getNode()) {
Duncan Sands4c3885b2008-06-22 09:42:16 +00006997 ExpandOp(Result, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006998 break;
6999 }
7000 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007001 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007002 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007003 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7004 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman8181bd12008-07-27 21:46:04 +00007005 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007006 LoOps[0] = LHSL;
7007 LoOps[1] = RHSL;
7008 HiOps[0] = LHSH;
7009 HiOps[1] = RHSH;
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007010
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007011 //cascaded check to see if any smaller size has a a carry flag.
7012 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
7013 bool hasCarry = false;
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007014 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
7015 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohman52c51aa2009-01-28 17:46:25 +00007016 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007017 hasCarry = true;
7018 break;
7019 }
7020 }
7021
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007022 if(hasCarry) {
Evan Cheng2bdd3d92008-12-12 18:49:09 +00007023 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007024 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007025 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007026 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007027 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007028 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007029 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007030 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007031 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007032 }
7033 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007034 } else {
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::ADD, dl, NVT, LoOps, 2);
7037 Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
7038 SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007039 Lo, LoOps[0], ISD::SETULT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007040 SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
Scott Michel91099d62009-02-17 22:15:04 +00007041 DAG.getConstant(1, NVT),
Andrew Lenharth5e814462008-10-07 14:15:42 +00007042 DAG.getConstant(0, NVT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00007043 SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007044 Lo, LoOps[1], ISD::SETULT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007045 SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
Scott Michel91099d62009-02-17 22:15:04 +00007046 DAG.getConstant(1, NVT),
Andrew Lenharth5e814462008-10-07 14:15:42 +00007047 Carry1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007048 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007049 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007050 Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
7051 Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
7052 SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT);
7053 SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
Scott Michel91099d62009-02-17 22:15:04 +00007054 DAG.getConstant(1, NVT),
Andrew Lenharth5e814462008-10-07 14:15:42 +00007055 DAG.getConstant(0, NVT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00007056 Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007057 }
7058 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007059 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007060 }
Scott Michel91099d62009-02-17 22:15:04 +00007061
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007062 case ISD::ADDC:
7063 case ISD::SUBC: {
7064 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007065 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007066 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7067 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7068 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00007069 SDValue LoOps[2] = { LHSL, RHSL };
7070 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michel91099d62009-02-17 22:15:04 +00007071
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007072 if (Node->getOpcode() == ISD::ADDC) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007073 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007074 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007075 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007076 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007077 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007078 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007079 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007080 }
7081 // Remember that we legalized the flag.
7082 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7083 break;
7084 }
7085 case ISD::ADDE:
7086 case ISD::SUBE: {
7087 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007088 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007089 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7090 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7091 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00007092 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7093 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michel91099d62009-02-17 22:15:04 +00007094
Dale Johannesen82b5b722009-02-02 22:12:50 +00007095 Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007096 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007097 Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3);
Scott Michel91099d62009-02-17 22:15:04 +00007098
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007099 // Remember that we legalized the flag.
7100 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7101 break;
7102 }
7103 case ISD::MUL: {
7104 // If the target wants to custom expand this, let them.
7105 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007106 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00007107 if (New.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007108 ExpandOp(New, Lo, Hi);
7109 break;
7110 }
7111 }
Scott Michel91099d62009-02-17 22:15:04 +00007112
Dan Gohman52c51aa2009-01-28 17:46:25 +00007113 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7114 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7115 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7116 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman5a199552007-10-08 18:33:35 +00007117 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007118 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007119 ExpandOp(Node->getOperand(0), LL, LH);
7120 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman07961cd2008-02-25 21:11:39 +00007121 unsigned OuterBitSize = Op.getValueSizeInBits();
7122 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman5a199552007-10-08 18:33:35 +00007123 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7124 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman2594d942008-03-10 20:42:19 +00007125 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7126 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7127 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman5a199552007-10-08 18:33:35 +00007128 // The inputs are both zero-extended.
7129 if (HasUMUL_LOHI) {
7130 // We can emit a umul_lohi.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007131 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00007132 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00007133 break;
7134 }
7135 if (HasMULHU) {
7136 // We can emit a mulhu+mul.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007137 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7138 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
Dan Gohman5a199552007-10-08 18:33:35 +00007139 break;
7140 }
Dan Gohman5a199552007-10-08 18:33:35 +00007141 }
Dan Gohman07961cd2008-02-25 21:11:39 +00007142 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman5a199552007-10-08 18:33:35 +00007143 // The input values are both sign-extended.
7144 if (HasSMUL_LOHI) {
7145 // We can emit a smul_lohi.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007146 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00007147 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00007148 break;
7149 }
7150 if (HasMULHS) {
7151 // We can emit a mulhs+mul.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007152 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7153 Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
Dan Gohman5a199552007-10-08 18:33:35 +00007154 break;
7155 }
7156 }
7157 if (HasUMUL_LOHI) {
7158 // Lo,Hi = umul LHS, RHS.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007159 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
Dan Gohman5a199552007-10-08 18:33:35 +00007160 DAG.getVTList(NVT, NVT), LL, RL);
7161 Lo = UMulLOHI;
7162 Hi = UMulLOHI.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007163 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7164 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7165 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7166 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007167 break;
7168 }
Dale Johannesen612c88b2007-10-24 22:26:08 +00007169 if (HasMULHU) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007170 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7171 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
7172 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7173 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7174 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7175 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dale Johannesen612c88b2007-10-24 22:26:08 +00007176 break;
7177 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007178 }
7179
Dan Gohman5a199552007-10-08 18:33:35 +00007180 // If nothing else, we can make a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007181 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007182 break;
7183 }
7184 case ISD::SDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007185 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007186 break;
7187 case ISD::UDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007188 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007189 break;
7190 case ISD::SREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007191 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007192 break;
7193 case ISD::UREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007194 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007195 break;
7196
7197 case ISD::FADD:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007198 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7199 RTLIB::ADD_F64,
7200 RTLIB::ADD_F80,
7201 RTLIB::ADD_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007202 Node, false, Hi);
7203 break;
7204 case ISD::FSUB:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007205 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7206 RTLIB::SUB_F64,
7207 RTLIB::SUB_F80,
7208 RTLIB::SUB_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007209 Node, false, Hi);
7210 break;
7211 case ISD::FMUL:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007212 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7213 RTLIB::MUL_F64,
7214 RTLIB::MUL_F80,
7215 RTLIB::MUL_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007216 Node, false, Hi);
7217 break;
7218 case ISD::FDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007219 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7220 RTLIB::DIV_F64,
7221 RTLIB::DIV_F80,
7222 RTLIB::DIV_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007223 Node, false, Hi);
7224 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007225 case ISD::FP_EXTEND: {
Dale Johannesen4c14d512007-10-12 01:37:08 +00007226 if (VT == MVT::ppcf128) {
7227 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7228 Node->getOperand(0).getValueType()==MVT::f64);
7229 const uint64_t zero = 0;
7230 if (Node->getOperand(0).getValueType()==MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00007231 Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0));
Dale Johannesen4c14d512007-10-12 01:37:08 +00007232 else
7233 Hi = Node->getOperand(0);
7234 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7235 break;
7236 }
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007237 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7238 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7239 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007240 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007241 }
7242 case ISD::FP_ROUND: {
7243 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7244 VT);
7245 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7246 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007247 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007248 }
Evan Cheng5316b392008-09-09 23:02:14 +00007249 case ISD::FSQRT:
7250 case ISD::FSIN:
Scott Michel91099d62009-02-17 22:15:04 +00007251 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007252 case ISD::FLOG:
7253 case ISD::FLOG2:
7254 case ISD::FLOG10:
7255 case ISD::FEXP:
7256 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00007257 case ISD::FTRUNC:
7258 case ISD::FFLOOR:
7259 case ISD::FCEIL:
7260 case ISD::FRINT:
7261 case ISD::FNEARBYINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00007262 case ISD::FPOW:
7263 case ISD::FPOWI: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007264 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
7265 switch(Node->getOpcode()) {
7266 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00007267 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7268 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007269 break;
7270 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00007271 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7272 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007273 break;
7274 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00007275 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7276 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007277 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00007278 case ISD::FLOG:
7279 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7280 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7281 break;
7282 case ISD::FLOG2:
7283 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7284 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7285 break;
7286 case ISD::FLOG10:
7287 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7288 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7289 break;
7290 case ISD::FEXP:
7291 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7292 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7293 break;
7294 case ISD::FEXP2:
7295 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7296 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7297 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00007298 case ISD::FTRUNC:
7299 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7300 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7301 break;
7302 case ISD::FFLOOR:
7303 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7304 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7305 break;
7306 case ISD::FCEIL:
7307 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7308 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7309 break;
7310 case ISD::FRINT:
7311 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7312 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7313 break;
7314 case ISD::FNEARBYINT:
7315 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7316 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7317 break;
Evan Cheng5316b392008-09-09 23:02:14 +00007318 case ISD::FPOW:
7319 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7320 RTLIB::POW_PPCF128);
7321 break;
7322 case ISD::FPOWI:
7323 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7324 RTLIB::POWI_PPCF128);
7325 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007326 default: assert(0 && "Unreachable!");
7327 }
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007328 Lo = ExpandLibCall(LC, Node, false, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007329 break;
7330 }
7331 case ISD::FABS: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00007332 if (VT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007333 SDValue Tmp;
Dale Johannesen5707ef82007-10-12 19:02:17 +00007334 ExpandOp(Node->getOperand(0), Lo, Tmp);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007335 Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp);
Dale Johannesen5707ef82007-10-12 19:02:17 +00007336 // lo = hi==fabs(hi) ? lo : -lo;
Dale Johannesen82b5b722009-02-02 22:12:50 +00007337 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp,
Bob Wilson2e958a42009-04-10 18:48:47 +00007338 Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo),
7339 DAG.getCondCode(ISD::SETEQ));
Dale Johannesen5707ef82007-10-12 19:02:17 +00007340 break;
7341 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007342 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007343 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7344 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007345 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7346 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7347 Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007348 if (getTypeAction(NVT) == Expand)
7349 ExpandOp(Lo, Lo, Hi);
7350 break;
7351 }
7352 case ISD::FNEG: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00007353 if (VT == MVT::ppcf128) {
7354 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007355 Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo);
7356 Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi);
Dale Johannesen5707ef82007-10-12 19:02:17 +00007357 break;
7358 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007359 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007360 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7361 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007362 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7363 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7364 Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007365 if (getTypeAction(NVT) == Expand)
7366 ExpandOp(Lo, Lo, Hi);
7367 break;
7368 }
7369 case ISD::FCOPYSIGN: {
7370 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7371 if (getTypeAction(NVT) == Expand)
7372 ExpandOp(Lo, Lo, Hi);
7373 break;
7374 }
7375 case ISD::SINT_TO_FP:
7376 case ISD::UINT_TO_FP: {
7377 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands92c43912008-06-06 12:08:01 +00007378 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesen6a779c82008-03-18 17:28:38 +00007379
7380 // Promote the operand if needed. Do this before checking for
7381 // ppcf128 so conversions of i16 and i8 work.
7382 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007383 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesen6a779c82008-03-18 17:28:38 +00007384 Tmp = isSigned
Dale Johannesen82b5b722009-02-02 22:12:50 +00007385 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp,
Dale Johannesen6a779c82008-03-18 17:28:38 +00007386 DAG.getValueType(SrcVT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00007387 : DAG.getZeroExtendInReg(Tmp, dl, SrcVT);
Gabor Greif1c80d112008-08-28 21:40:38 +00007388 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesen6a779c82008-03-18 17:28:38 +00007389 SrcVT = Node->getOperand(0).getValueType();
7390 }
7391
Dan Gohmanec51f642008-03-10 23:03:31 +00007392 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohman84d00962008-02-25 21:39:34 +00007393 static const uint64_t zero = 0;
Dale Johannesen4c14d512007-10-12 01:37:08 +00007394 if (isSigned) {
Scott Michel91099d62009-02-17 22:15:04 +00007395 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesen4c14d512007-10-12 01:37:08 +00007396 Node->getOperand(0)));
7397 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7398 } else {
Dan Gohman84d00962008-02-25 21:39:34 +00007399 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Scott Michel91099d62009-02-17 22:15:04 +00007400 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesen4c14d512007-10-12 01:37:08 +00007401 Node->getOperand(0)));
7402 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007403 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007404 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen82b5b722009-02-02 22:12:50 +00007405 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl,
7406 MVT::ppcf128, Node->getOperand(0),
Scott Michel91099d62009-02-17 22:15:04 +00007407 DAG.getConstant(0, MVT::i32),
Dale Johannesen82b5b722009-02-02 22:12:50 +00007408 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilson2e958a42009-04-10 18:48:47 +00007409 DAG.getConstantFP
7410 (APFloat(APInt(128, 2, TwoE32)),
7411 MVT::ppcf128)),
Dale Johannesen4c14d512007-10-12 01:37:08 +00007412 Hi,
7413 DAG.getCondCode(ISD::SETLT)),
7414 Lo, Hi);
7415 }
7416 break;
7417 }
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007418 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7419 // si64->ppcf128 done by libcall, below
Dan Gohman84d00962008-02-25 21:39:34 +00007420 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen82b5b722009-02-02 22:12:50 +00007421 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128,
7422 Node->getOperand(0)), Lo, Hi);
7423 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007424 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
Dale Johannesen82b5b722009-02-02 22:12:50 +00007425 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128,
7426 Node->getOperand(0),
Scott Michel91099d62009-02-17 22:15:04 +00007427 DAG.getConstant(0, MVT::i64),
Dale Johannesen82b5b722009-02-02 22:12:50 +00007428 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilson2e958a42009-04-10 18:48:47 +00007429 DAG.getConstantFP
7430 (APFloat(APInt(128, 2, TwoE64)),
7431 MVT::ppcf128)),
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007432 Hi,
7433 DAG.getCondCode(ISD::SETLT)),
7434 Lo, Hi);
7435 break;
7436 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007437
Dan Gohmanec51f642008-03-10 23:03:31 +00007438 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00007439 Node->getOperand(0), dl);
Evan Chenga8740032008-04-01 01:50:16 +00007440 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng4a2f6df2008-04-01 01:51:26 +00007441 // float to i32 etc. can be 'expanded' to a single node.
Evan Chenga8740032008-04-01 01:50:16 +00007442 ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007443 break;
7444 }
7445 }
7446
7447 // Make sure the resultant values have been legalized themselves, unless this
7448 // is a type that requires multi-step expansion.
7449 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7450 Lo = LegalizeOp(Lo);
Gabor Greif1c80d112008-08-28 21:40:38 +00007451 if (Hi.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007452 // Don't legalize the high part if it is expanded to a single node.
7453 Hi = LegalizeOp(Hi);
7454 }
7455
7456 // Remember in a map if the values will be reused later.
Dan Gohman55d19662008-07-07 17:46:23 +00007457 bool isNew =
7458 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007459 assert(isNew && "Value already expanded?!?");
Evan Chengcf576fd2008-11-24 07:09:49 +00007460 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007461}
7462
7463/// SplitVectorOp - Given an operand of vector type, break it down into
7464/// two smaller values, still of vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00007465void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7466 SDValue &Hi) {
Duncan Sands92c43912008-06-06 12:08:01 +00007467 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greif1c80d112008-08-28 21:40:38 +00007468 SDNode *Node = Op.getNode();
Dale Johannesen352c47e2009-02-02 20:41:04 +00007469 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00007470 unsigned NumElements = Op.getValueType().getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007471 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman4a365ad2007-11-15 21:15:26 +00007472
Duncan Sands92c43912008-06-06 12:08:01 +00007473 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman4a365ad2007-11-15 21:15:26 +00007474
7475 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7476 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7477
Duncan Sands92c43912008-06-06 12:08:01 +00007478 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7479 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman4a365ad2007-11-15 21:15:26 +00007480
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007481 // See if we already split it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007482 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007483 = SplitNodes.find(Op);
7484 if (I != SplitNodes.end()) {
7485 Lo = I->second.first;
7486 Hi = I->second.second;
7487 return;
7488 }
Scott Michel91099d62009-02-17 22:15:04 +00007489
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007490 switch (Node->getOpcode()) {
Scott Michel91099d62009-02-17 22:15:04 +00007491 default:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007492#ifndef NDEBUG
7493 Node->dump(&DAG);
7494#endif
7495 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattner3dec33a2007-11-19 20:21:32 +00007496 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007497 Lo = DAG.getUNDEF(NewVT_Lo);
7498 Hi = DAG.getUNDEF(NewVT_Hi);
Chris Lattner3dec33a2007-11-19 20:21:32 +00007499 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007500 case ISD::BUILD_PAIR:
7501 Lo = Node->getOperand(0);
7502 Hi = Node->getOperand(1);
7503 break;
Dan Gohmanb3228dc2007-09-28 23:53:40 +00007504 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007505 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7506 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007507 unsigned Index = Idx->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007508 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007509 if (Index < NewNumElts_Lo)
Dale Johannesend8fd5342009-02-02 22:49:46 +00007510 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Lo, Lo, ScalarOp,
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007511 DAG.getIntPtrConstant(Index));
7512 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00007513 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Hi, Hi, ScalarOp,
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007514 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7515 break;
7516 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007517 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Bob Wilson2e958a42009-04-10 18:48:47 +00007518 Node->getOperand(1),
7519 Node->getOperand(2), dl);
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007520 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohmanb3228dc2007-09-28 23:53:40 +00007521 break;
7522 }
Chris Lattner587c46d2007-11-19 21:16:54 +00007523 case ISD::VECTOR_SHUFFLE: {
7524 // Build the low part.
Dan Gohman8181bd12008-07-27 21:46:04 +00007525 SDValue Mask = Node->getOperand(2);
7526 SmallVector<SDValue, 8> Ops;
Duncan Sands92c43912008-06-06 12:08:01 +00007527 MVT PtrVT = TLI.getPointerTy();
Scott Michel91099d62009-02-17 22:15:04 +00007528
7529 // Insert all of the elements from the input that are needed. We use
Chris Lattner587c46d2007-11-19 21:16:54 +00007530 // buildvector of extractelement here because the input vectors will have
7531 // to be legalized, so this makes the code simpler.
7532 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007533 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007534 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007535 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007536 continue;
7537 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007538 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007539 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00007540 if (Idx >= NumElements) {
7541 InVec = Node->getOperand(1);
7542 Idx -= NumElements;
7543 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00007544 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner587c46d2007-11-19 21:16:54 +00007545 DAG.getConstant(Idx, PtrVT)));
7546 }
Evan Cheng907a2d22009-02-25 22:49:59 +00007547 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &Ops[0], Ops.size());
Chris Lattner587c46d2007-11-19 21:16:54 +00007548 Ops.clear();
Scott Michel91099d62009-02-17 22:15:04 +00007549
Chris Lattner587c46d2007-11-19 21:16:54 +00007550 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007551 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007552 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007553 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007554 continue;
7555 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007556 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007557 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00007558 if (Idx >= NumElements) {
7559 InVec = Node->getOperand(1);
7560 Idx -= NumElements;
7561 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00007562 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner587c46d2007-11-19 21:16:54 +00007563 DAG.getConstant(Idx, PtrVT)));
7564 }
Evan Cheng907a2d22009-02-25 22:49:59 +00007565 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner587c46d2007-11-19 21:16:54 +00007566 break;
7567 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007568 case ISD::BUILD_VECTOR: {
Scott Michel91099d62009-02-17 22:15:04 +00007569 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Bob Wilson2e958a42009-04-10 18:48:47 +00007570 Node->op_begin()+NewNumElts_Lo);
Evan Cheng907a2d22009-02-25 22:49:59 +00007571 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007572
Scott Michel91099d62009-02-17 22:15:04 +00007573 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Bob Wilson2e958a42009-04-10 18:48:47 +00007574 Node->op_end());
Evan Cheng907a2d22009-02-25 22:49:59 +00007575 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007576 break;
7577 }
7578 case ISD::CONCAT_VECTORS: {
Nate Begeman4a365ad2007-11-15 21:15:26 +00007579 // FIXME: Handle non-power-of-two vectors?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007580 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7581 if (NewNumSubvectors == 1) {
7582 Lo = Node->getOperand(0);
7583 Hi = Node->getOperand(1);
7584 } else {
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007585 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7586 Node->op_begin()+NewNumSubvectors);
Scott Michel91099d62009-02-17 22:15:04 +00007587 Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Lo,
Dale Johannesend8fd5342009-02-02 22:49:46 +00007588 &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007589
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007590 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Bob Wilson2e958a42009-04-10 18:48:47 +00007591 Node->op_end());
Scott Michel91099d62009-02-17 22:15:04 +00007592 Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Hi,
Dale Johannesend8fd5342009-02-02 22:49:46 +00007593 &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007594 }
7595 break;
7596 }
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007597 case ISD::EXTRACT_SUBVECTOR: {
7598 SDValue Vec = Op.getOperand(0);
7599 SDValue Idx = Op.getOperand(1);
7600 MVT IdxVT = Idx.getValueType();
7601
Dale Johannesend8fd5342009-02-02 22:49:46 +00007602 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Lo, Vec, Idx);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007603 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7604 if (CIdx) {
Scott Michel91099d62009-02-17 22:15:04 +00007605 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec,
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007606 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7607 IdxVT));
7608 } else {
Dale Johannesend8fd5342009-02-02 22:49:46 +00007609 Idx = DAG.getNode(ISD::ADD, dl, IdxVT, Idx,
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007610 DAG.getConstant(NewNumElts_Lo, IdxVT));
Dale Johannesend8fd5342009-02-02 22:49:46 +00007611 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec, Idx);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007612 }
7613 break;
7614 }
Dan Gohmand5d4c872007-10-17 14:48:28 +00007615 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007616 SDValue Cond = Node->getOperand(0);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007617
Dan Gohman8181bd12008-07-27 21:46:04 +00007618 SDValue LL, LH, RL, RH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00007619 SplitVectorOp(Node->getOperand(1), LL, LH);
7620 SplitVectorOp(Node->getOperand(2), RL, RH);
7621
Duncan Sands92c43912008-06-06 12:08:01 +00007622 if (Cond.getValueType().isVector()) {
Dan Gohmand5d4c872007-10-17 14:48:28 +00007623 // Handle a vector merge.
Dan Gohman8181bd12008-07-27 21:46:04 +00007624 SDValue CL, CH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00007625 SplitVectorOp(Cond, CL, CH);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007626 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, CL, LL, RL);
7627 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, CH, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007628 } else {
7629 // Handle a simple select with vector operands.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007630 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, Cond, LL, RL);
7631 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, Cond, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007632 }
7633 break;
7634 }
Chris Lattnerc7471452008-06-30 02:43:01 +00007635 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007636 SDValue CondLHS = Node->getOperand(0);
7637 SDValue CondRHS = Node->getOperand(1);
7638 SDValue CondCode = Node->getOperand(4);
Scott Michel91099d62009-02-17 22:15:04 +00007639
Dan Gohman8181bd12008-07-27 21:46:04 +00007640 SDValue LL, LH, RL, RH;
Chris Lattnerc7471452008-06-30 02:43:01 +00007641 SplitVectorOp(Node->getOperand(2), LL, LH);
7642 SplitVectorOp(Node->getOperand(3), RL, RH);
Scott Michel91099d62009-02-17 22:15:04 +00007643
Chris Lattnerc7471452008-06-30 02:43:01 +00007644 // Handle a simple select with vector operands.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007645 Lo = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Lo, CondLHS, CondRHS,
Chris Lattnerc7471452008-06-30 02:43:01 +00007646 LL, RL, CondCode);
Scott Michel91099d62009-02-17 22:15:04 +00007647 Hi = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Hi, CondLHS, CondRHS,
Chris Lattnerc7471452008-06-30 02:43:01 +00007648 LH, RH, CondCode);
7649 break;
7650 }
Nate Begeman9a1ce152008-05-12 19:40:03 +00007651 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007652 SDValue LL, LH, RL, RH;
Nate Begeman9a1ce152008-05-12 19:40:03 +00007653 SplitVectorOp(Node->getOperand(0), LL, LH);
7654 SplitVectorOp(Node->getOperand(1), RL, RH);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007655 Lo = DAG.getNode(ISD::VSETCC, dl, NewVT_Lo, LL, RL, Node->getOperand(2));
7656 Hi = DAG.getNode(ISD::VSETCC, dl, NewVT_Hi, LH, RH, Node->getOperand(2));
Nate Begeman9a1ce152008-05-12 19:40:03 +00007657 break;
7658 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007659 case ISD::ADD:
7660 case ISD::SUB:
7661 case ISD::MUL:
7662 case ISD::FADD:
7663 case ISD::FSUB:
7664 case ISD::FMUL:
7665 case ISD::SDIV:
7666 case ISD::UDIV:
7667 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007668 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007669 case ISD::AND:
7670 case ISD::OR:
Dan Gohman9e1b7ee2007-11-19 15:15:03 +00007671 case ISD::XOR:
7672 case ISD::UREM:
7673 case ISD::SREM:
Mon P Wang26342922008-12-18 20:03:17 +00007674 case ISD::FREM:
7675 case ISD::SHL:
7676 case ISD::SRA:
7677 case ISD::SRL: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007678 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007679 SplitVectorOp(Node->getOperand(0), LL, LH);
7680 SplitVectorOp(Node->getOperand(1), RL, RH);
Scott Michel91099d62009-02-17 22:15:04 +00007681
Dale Johannesend8fd5342009-02-02 22:49:46 +00007682 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, LL, RL);
7683 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007684 break;
7685 }
Dan Gohman29c3cef2008-08-14 20:04:46 +00007686 case ISD::FP_ROUND:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007687 case ISD::FPOWI: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007688 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007689 SplitVectorOp(Node->getOperand(0), L, H);
7690
Dale Johannesend8fd5342009-02-02 22:49:46 +00007691 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L, Node->getOperand(1));
7692 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H, Node->getOperand(1));
Dan Gohman6d05cac2007-10-11 23:57:53 +00007693 break;
7694 }
7695 case ISD::CTTZ:
7696 case ISD::CTLZ:
7697 case ISD::CTPOP:
7698 case ISD::FNEG:
7699 case ISD::FABS:
7700 case ISD::FSQRT:
7701 case ISD::FSIN:
Nate Begeman78246ca2007-11-17 03:58:34 +00007702 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007703 case ISD::FLOG:
7704 case ISD::FLOG2:
7705 case ISD::FLOG10:
7706 case ISD::FEXP:
7707 case ISD::FEXP2:
Nate Begeman78246ca2007-11-17 03:58:34 +00007708 case ISD::FP_TO_SINT:
7709 case ISD::FP_TO_UINT:
7710 case ISD::SINT_TO_FP:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007711 case ISD::UINT_TO_FP:
7712 case ISD::TRUNCATE:
7713 case ISD::ANY_EXTEND:
7714 case ISD::SIGN_EXTEND:
7715 case ISD::ZERO_EXTEND:
7716 case ISD::FP_EXTEND: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007717 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007718 SplitVectorOp(Node->getOperand(0), L, H);
7719
Dale Johannesend8fd5342009-02-02 22:49:46 +00007720 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L);
7721 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H);
Dan Gohman6d05cac2007-10-11 23:57:53 +00007722 break;
7723 }
Mon P Wang73d31542008-11-10 20:54:11 +00007724 case ISD::CONVERT_RNDSAT: {
7725 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7726 SDValue L, H;
7727 SplitVectorOp(Node->getOperand(0), L, H);
Bob Wilson2e958a42009-04-10 18:48:47 +00007728 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7729 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7730 SDValue STyOpL = DAG.getValueType(L.getValueType());
7731 SDValue STyOpH = DAG.getValueType(H.getValueType());
Mon P Wang73d31542008-11-10 20:54:11 +00007732
7733 SDValue RndOp = Node->getOperand(3);
7734 SDValue SatOp = Node->getOperand(4);
7735
Dale Johannesen564036c2009-02-04 00:13:36 +00007736 Lo = DAG.getConvertRndSat(NewVT_Lo, dl, L, DTyOpL, STyOpL,
Mon P Wang73d31542008-11-10 20:54:11 +00007737 RndOp, SatOp, CvtCode);
Dale Johannesen564036c2009-02-04 00:13:36 +00007738 Hi = DAG.getConvertRndSat(NewVT_Hi, dl, H, DTyOpH, STyOpH,
Mon P Wang73d31542008-11-10 20:54:11 +00007739 RndOp, SatOp, CvtCode);
7740 break;
7741 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007742 case ISD::LOAD: {
7743 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007744 SDValue Ch = LD->getChain();
7745 SDValue Ptr = LD->getBasePtr();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007746 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007747 const Value *SV = LD->getSrcValue();
7748 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007749 MVT MemoryVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007750 unsigned Alignment = LD->getAlignment();
7751 bool isVolatile = LD->isVolatile();
7752
Dan Gohman29c3cef2008-08-14 20:04:46 +00007753 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007754 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Dan Gohman29c3cef2008-08-14 20:04:46 +00007755
7756 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7757 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7758 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7759
Dale Johannesend8fd5342009-02-02 22:49:46 +00007760 Lo = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007761 NewVT_Lo, Ch, Ptr, Offset,
7762 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7763 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dale Johannesend8fd5342009-02-02 22:49:46 +00007764 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00007765 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007766 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00007767 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007768 Hi = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007769 NewVT_Hi, Ch, Ptr, Offset,
7770 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Scott Michel91099d62009-02-17 22:15:04 +00007771
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007772 // Build a factor node to remember that this load is independent of the
7773 // other one.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007774 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilson2e958a42009-04-10 18:48:47 +00007775 Hi.getValue(1));
Scott Michel91099d62009-02-17 22:15:04 +00007776
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007777 // Remember that we legalized the chain.
7778 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
7779 break;
7780 }
7781 case ISD::BIT_CONVERT: {
7782 // We know the result is a vector. The input may be either a vector or a
7783 // scalar value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007784 SDValue InOp = Node->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007785 if (!InOp.getValueType().isVector() ||
7786 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007787 // The input is a scalar or single-element vector.
7788 // Lower to a store/load so that it can be split.
7789 // FIXME: this could be improved probably.
Bob Wilson2e958a42009-04-10 18:48:47 +00007790 unsigned LdAlign = TLI.getTargetData()->
7791 getPrefTypeAlignment(Op.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00007792 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greif1c80d112008-08-28 21:40:38 +00007793 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007794
Dale Johannesend8fd5342009-02-02 22:49:46 +00007795 SDValue St = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilson2e958a42009-04-10 18:48:47 +00007796 InOp, Ptr,
7797 PseudoSourceValue::getFixedStack(FI), 0);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007798 InOp = DAG.getLoad(Op.getValueType(), dl, St, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007799 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007800 }
7801 // Split the vector and convert each of the pieces now.
7802 SplitVectorOp(InOp, Lo, Hi);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007803 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Lo, Lo);
7804 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Hi, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007805 break;
7806 }
7807 }
Scott Michel91099d62009-02-17 22:15:04 +00007808
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007809 // Remember in a map if the values will be reused later.
Scott Michel91099d62009-02-17 22:15:04 +00007810 bool isNew =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007811 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
7812 assert(isNew && "Value already split?!?");
Evan Chengcf576fd2008-11-24 07:09:49 +00007813 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007814}
7815
7816
7817/// ScalarizeVectorOp - Given an operand of single-element vector type
7818/// (e.g. v1f32), convert it into the equivalent operation that returns a
7819/// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007820SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00007821 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greif1c80d112008-08-28 21:40:38 +00007822 SDNode *Node = Op.getNode();
Dale Johannesend8fd5342009-02-02 22:49:46 +00007823 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00007824 MVT NewVT = Op.getValueType().getVectorElementType();
7825 assert(Op.getValueType().getVectorNumElements() == 1);
Scott Michel91099d62009-02-17 22:15:04 +00007826
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007827 // See if we already scalarized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007828 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007829 if (I != ScalarizedNodes.end()) return I->second;
Scott Michel91099d62009-02-17 22:15:04 +00007830
Dan Gohman8181bd12008-07-27 21:46:04 +00007831 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007832 switch (Node->getOpcode()) {
Scott Michel91099d62009-02-17 22:15:04 +00007833 default:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007834#ifndef NDEBUG
7835 Node->dump(&DAG); cerr << "\n";
7836#endif
7837 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7838 case ISD::ADD:
7839 case ISD::FADD:
7840 case ISD::SUB:
7841 case ISD::FSUB:
7842 case ISD::MUL:
7843 case ISD::FMUL:
7844 case ISD::SDIV:
7845 case ISD::UDIV:
7846 case ISD::FDIV:
7847 case ISD::SREM:
7848 case ISD::UREM:
7849 case ISD::FREM:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007850 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007851 case ISD::AND:
7852 case ISD::OR:
7853 case ISD::XOR:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007854 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michel91099d62009-02-17 22:15:04 +00007855 NewVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007856 ScalarizeVectorOp(Node->getOperand(0)),
7857 ScalarizeVectorOp(Node->getOperand(1)));
7858 break;
7859 case ISD::FNEG:
7860 case ISD::FABS:
7861 case ISD::FSQRT:
7862 case ISD::FSIN:
7863 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007864 case ISD::FLOG:
7865 case ISD::FLOG2:
7866 case ISD::FLOG10:
7867 case ISD::FEXP:
7868 case ISD::FEXP2:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007869 case ISD::FP_TO_SINT:
7870 case ISD::FP_TO_UINT:
7871 case ISD::SINT_TO_FP:
7872 case ISD::UINT_TO_FP:
7873 case ISD::SIGN_EXTEND:
7874 case ISD::ZERO_EXTEND:
7875 case ISD::ANY_EXTEND:
7876 case ISD::TRUNCATE:
7877 case ISD::FP_EXTEND:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007878 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michel91099d62009-02-17 22:15:04 +00007879 NewVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007880 ScalarizeVectorOp(Node->getOperand(0)));
7881 break;
Mon P Wang73d31542008-11-10 20:54:11 +00007882 case ISD::CONVERT_RNDSAT: {
7883 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
Dale Johannesen564036c2009-02-04 00:13:36 +00007884 Result = DAG.getConvertRndSat(NewVT, dl, Op0,
Mon P Wang73d31542008-11-10 20:54:11 +00007885 DAG.getValueType(NewVT),
7886 DAG.getValueType(Op0.getValueType()),
7887 Node->getOperand(3),
7888 Node->getOperand(4),
7889 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7890 break;
7891 }
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007892 case ISD::FPOWI:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007893 case ISD::FP_ROUND:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007894 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michel91099d62009-02-17 22:15:04 +00007895 NewVT,
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007896 ScalarizeVectorOp(Node->getOperand(0)),
7897 Node->getOperand(1));
7898 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007899 case ISD::LOAD: {
7900 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007901 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7902 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman29c3cef2008-08-14 20:04:46 +00007903 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007904 const Value *SV = LD->getSrcValue();
7905 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007906 MVT MemoryVT = LD->getMemoryVT();
7907 unsigned Alignment = LD->getAlignment();
7908 bool isVolatile = LD->isVolatile();
7909
7910 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007911 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Scott Michel91099d62009-02-17 22:15:04 +00007912
Dale Johannesend8fd5342009-02-02 22:49:46 +00007913 Result = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007914 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7915 MemoryVT.getVectorElementType(),
7916 isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007917
7918 // Remember that we legalized the chain.
7919 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7920 break;
7921 }
7922 case ISD::BUILD_VECTOR:
7923 Result = Node->getOperand(0);
7924 break;
7925 case ISD::INSERT_VECTOR_ELT:
7926 // Returning the inserted scalar element.
7927 Result = Node->getOperand(1);
7928 break;
7929 case ISD::CONCAT_VECTORS:
7930 assert(Node->getOperand(0).getValueType() == NewVT &&
7931 "Concat of non-legal vectors not yet supported!");
7932 Result = Node->getOperand(0);
7933 break;
7934 case ISD::VECTOR_SHUFFLE: {
7935 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007936 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007937 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007938 Result = ScalarizeVectorOp(Node->getOperand(1));
7939 else
7940 Result = ScalarizeVectorOp(Node->getOperand(0));
7941 break;
7942 }
7943 case ISD::EXTRACT_SUBVECTOR:
Scott Michel91099d62009-02-17 22:15:04 +00007944 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT,
Dale Johannesend8fd5342009-02-02 22:49:46 +00007945 Node->getOperand(0), Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007946 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007947 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007948 SDValue Op0 = Op.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007949 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng2cc16e72008-05-16 17:19:05 +00007950 Op0 = ScalarizeVectorOp(Op0);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007951 Result = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007952 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007953 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007954 case ISD::SELECT:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007955 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Op.getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007956 ScalarizeVectorOp(Op.getOperand(1)),
7957 ScalarizeVectorOp(Op.getOperand(2)));
7958 break;
Chris Lattnerc7471452008-06-30 02:43:01 +00007959 case ISD::SELECT_CC:
Scott Michel91099d62009-02-17 22:15:04 +00007960 Result = DAG.getNode(ISD::SELECT_CC, dl, NewVT, Node->getOperand(0),
Chris Lattnerc7471452008-06-30 02:43:01 +00007961 Node->getOperand(1),
7962 ScalarizeVectorOp(Op.getOperand(2)),
7963 ScalarizeVectorOp(Op.getOperand(3)),
7964 Node->getOperand(4));
7965 break;
Nate Begeman78ca4f92008-05-12 23:09:43 +00007966 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007967 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7968 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Dale Johannesend8fd5342009-02-02 22:49:46 +00007969 Result = DAG.getNode(ISD::SETCC, dl,
7970 TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00007971 Op0, Op1, Op.getOperand(2));
Dale Johannesend8fd5342009-02-02 22:49:46 +00007972 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Result,
Nate Begeman78ca4f92008-05-12 23:09:43 +00007973 DAG.getConstant(-1ULL, NewVT),
7974 DAG.getConstant(0ULL, NewVT));
7975 break;
7976 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007977 }
7978
7979 if (TLI.isTypeLegal(NewVT))
7980 Result = LegalizeOp(Result);
7981 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7982 assert(isNew && "Value already scalarized?");
Evan Chengcf576fd2008-11-24 07:09:49 +00007983 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007984 return Result;
7985}
7986
7987
Mon P Wang1448aad2008-10-30 08:01:45 +00007988SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
7989 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
7990 if (I != WidenNodes.end()) return I->second;
Scott Michel91099d62009-02-17 22:15:04 +00007991
Mon P Wang1448aad2008-10-30 08:01:45 +00007992 MVT VT = Op.getValueType();
7993 assert(VT.isVector() && "Cannot widen non-vector type!");
7994
7995 SDValue Result;
7996 SDNode *Node = Op.getNode();
Dale Johannesend8fd5342009-02-02 22:49:46 +00007997 DebugLoc dl = Node->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00007998 MVT EVT = VT.getVectorElementType();
7999
8000 unsigned NumElts = VT.getVectorNumElements();
8001 unsigned NewNumElts = WidenVT.getVectorNumElements();
8002 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
8003 assert(NewNumElts < 17);
8004
8005 // When widen is called, it is assumed that it is more efficient to use a
8006 // wide type. The default action is to widen to operation to a wider legal
8007 // vector type and then do the operation if it is legal by calling LegalizeOp
8008 // again. If there is no vector equivalent, we will unroll the operation, do
8009 // it, and rebuild the vector. If most of the operations are vectorizible to
8010 // the legal type, the resulting code will be more efficient. If this is not
8011 // the case, the resulting code will preform badly as we end up generating
8012 // code to pack/unpack the results. It is the function that calls widen
Mon P Wanga5a239f2008-11-06 05:31:54 +00008013 // that is responsible for seeing this doesn't happen.
Mon P Wang1448aad2008-10-30 08:01:45 +00008014 switch (Node->getOpcode()) {
Scott Michel91099d62009-02-17 22:15:04 +00008015 default:
Mon P Wang1448aad2008-10-30 08:01:45 +00008016#ifndef NDEBUG
8017 Node->dump(&DAG);
8018#endif
8019 assert(0 && "Unexpected operation in WidenVectorOp!");
8020 break;
8021 case ISD::CopyFromReg:
Mon P Wang257e1c72008-11-15 06:05:52 +00008022 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang1448aad2008-10-30 08:01:45 +00008023 case ISD::Constant:
8024 case ISD::ConstantFP:
8025 // To build a vector of these elements, clients should call BuildVector
8026 // and with each element instead of creating a node with a vector type
8027 assert(0 && "Unexpected operation in WidenVectorOp!");
8028 case ISD::VAARG:
8029 // Variable Arguments with vector types doesn't make any sense to me
8030 assert(0 && "Unexpected operation in WidenVectorOp!");
8031 break;
Mon P Wang257e1c72008-11-15 06:05:52 +00008032 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008033 Result = DAG.getUNDEF(WidenVT);
Mon P Wang257e1c72008-11-15 06:05:52 +00008034 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00008035 case ISD::BUILD_VECTOR: {
8036 // Build a vector with undefined for the new nodes
8037 SDValueVector NewOps(Node->op_begin(), Node->op_end());
8038 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008039 NewOps.push_back(DAG.getUNDEF(EVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008040 }
Evan Cheng907a2d22009-02-25 22:49:59 +00008041 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT,
8042 &NewOps[0], NewOps.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008043 break;
8044 }
8045 case ISD::INSERT_VECTOR_ELT: {
8046 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008047 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, WidenVT, Tmp1,
Mon P Wang1448aad2008-10-30 08:01:45 +00008048 Node->getOperand(1), Node->getOperand(2));
8049 break;
8050 }
8051 case ISD::VECTOR_SHUFFLE: {
8052 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8053 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
Nate Begeman543d2142009-04-27 18:41:29 +00008054 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Node);
8055 SmallVector<int, 8> NewMask;
Mon P Wang1448aad2008-10-30 08:01:45 +00008056 for (unsigned i = 0; i < NumElts; ++i) {
Nate Begeman543d2142009-04-27 18:41:29 +00008057 int Idx = SVOp->getMaskElt(i);
8058 if (Idx < (int)NumElts)
8059 NewMask.push_back(Idx);
8060 else
8061 NewMask.push_back(Idx + NewNumElts - NumElts);
Mon P Wang1448aad2008-10-30 08:01:45 +00008062 }
Nate Begeman543d2142009-04-27 18:41:29 +00008063 for (unsigned i = NumElts; i < NewNumElts; ++i)
8064 NewMask.push_back(-1);
8065
8066 Result = DAG.getVectorShuffle(WidenVT, dl, Tmp1, Tmp2, &NewMask[0]);
Mon P Wang1448aad2008-10-30 08:01:45 +00008067 break;
8068 }
8069 case ISD::LOAD: {
8070 // If the load widen returns true, we can use a single load for the
8071 // vector. Otherwise, it is returning a token factor for multiple
8072 // loads.
8073 SDValue TFOp;
8074 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8075 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8076 else
8077 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8078 break;
8079 }
8080
8081 case ISD::BIT_CONVERT: {
8082 SDValue Tmp1 = Node->getOperand(0);
8083 // Converts between two different types so we need to determine
8084 // the correct widen type for the input operand.
Mon P Wang26342922008-12-18 20:03:17 +00008085 MVT InVT = Tmp1.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00008086 unsigned WidenSize = WidenVT.getSizeInBits();
Mon P Wang26342922008-12-18 20:03:17 +00008087 if (InVT.isVector()) {
8088 MVT InEltVT = InVT.getVectorElementType();
8089 unsigned InEltSize = InEltVT.getSizeInBits();
8090 assert(WidenSize % InEltSize == 0 &&
8091 "can not widen bit convert that are not multiple of element type");
8092 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8093 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8094 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
Dale Johannesend8fd5342009-02-02 22:49:46 +00008095 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Tmp1);
Mon P Wang26342922008-12-18 20:03:17 +00008096 } else {
8097 // If the result size is a multiple of the input size, widen the input
8098 // and then convert.
8099 unsigned InSize = InVT.getSizeInBits();
8100 assert(WidenSize % InSize == 0 &&
8101 "can not widen bit convert that are not multiple of element type");
8102 unsigned NewNumElts = WidenSize / InSize;
8103 SmallVector<SDValue, 16> Ops(NewNumElts);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008104 SDValue UndefVal = DAG.getUNDEF(InVT);
Mon P Wang26342922008-12-18 20:03:17 +00008105 Ops[0] = Tmp1;
8106 for (unsigned i = 1; i < NewNumElts; ++i)
8107 Ops[i] = UndefVal;
Mon P Wang1448aad2008-10-30 08:01:45 +00008108
Mon P Wang26342922008-12-18 20:03:17 +00008109 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
Evan Cheng907a2d22009-02-25 22:49:59 +00008110 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, NewInVT, &Ops[0], NewNumElts);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008111 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Result);
Mon P Wang1448aad2008-10-30 08:01:45 +00008112 }
8113 break;
8114 }
8115
8116 case ISD::SINT_TO_FP:
8117 case ISD::UINT_TO_FP:
8118 case ISD::FP_TO_SINT:
Mon P Wang26342922008-12-18 20:03:17 +00008119 case ISD::FP_TO_UINT:
8120 case ISD::FP_ROUND: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008121 SDValue Tmp1 = Node->getOperand(0);
8122 // Converts between two different types so we need to determine
8123 // the correct widen type for the input operand.
8124 MVT TVT = Tmp1.getValueType();
8125 assert(TVT.isVector() && "can not widen non vector type");
8126 MVT TEVT = TVT.getVectorElementType();
8127 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8128 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8129 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008130 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang1448aad2008-10-30 08:01:45 +00008131 break;
8132 }
8133
8134 case ISD::FP_EXTEND:
8135 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8136 case ISD::TRUNCATE:
8137 case ISD::SIGN_EXTEND:
8138 case ISD::ZERO_EXTEND:
8139 case ISD::ANY_EXTEND:
Mon P Wang1448aad2008-10-30 08:01:45 +00008140 case ISD::SIGN_EXTEND_INREG:
8141 case ISD::FABS:
8142 case ISD::FNEG:
8143 case ISD::FSQRT:
8144 case ISD::FSIN:
Mon P Wang257e1c72008-11-15 06:05:52 +00008145 case ISD::FCOS:
8146 case ISD::CTPOP:
8147 case ISD::CTTZ:
8148 case ISD::CTLZ: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008149 // Unary op widening
Mon P Wang26342922008-12-18 20:03:17 +00008150 SDValue Tmp1;
Mon P Wang1448aad2008-10-30 08:01:45 +00008151 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8152 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008153 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang1448aad2008-10-30 08:01:45 +00008154 break;
8155 }
Mon P Wang73d31542008-11-10 20:54:11 +00008156 case ISD::CONVERT_RNDSAT: {
8157 SDValue RndOp = Node->getOperand(3);
8158 SDValue SatOp = Node->getOperand(4);
Mon P Wang73d31542008-11-10 20:54:11 +00008159 SDValue SrcOp = Node->getOperand(0);
8160
8161 // Converts between two different types so we need to determine
8162 // the correct widen type for the input operand.
8163 MVT SVT = SrcOp.getValueType();
8164 assert(SVT.isVector() && "can not widen non vector type");
8165 MVT SEVT = SVT.getVectorElementType();
8166 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8167
8168 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8169 assert(SrcOp.getValueType() == WidenVT);
8170 SDValue DTyOp = DAG.getValueType(WidenVT);
8171 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8172 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8173
Dale Johannesen564036c2009-02-04 00:13:36 +00008174 Result = DAG.getConvertRndSat(WidenVT, dl, SrcOp, DTyOp, STyOp,
Mon P Wang73d31542008-11-10 20:54:11 +00008175 RndOp, SatOp, CvtCode);
Mon P Wang73d31542008-11-10 20:54:11 +00008176 break;
8177 }
Mon P Wang1448aad2008-10-30 08:01:45 +00008178 case ISD::FPOW:
Scott Michel91099d62009-02-17 22:15:04 +00008179 case ISD::FPOWI:
Mon P Wang1448aad2008-10-30 08:01:45 +00008180 case ISD::ADD:
8181 case ISD::SUB:
8182 case ISD::MUL:
8183 case ISD::MULHS:
8184 case ISD::MULHU:
8185 case ISD::AND:
8186 case ISD::OR:
8187 case ISD::XOR:
8188 case ISD::FADD:
8189 case ISD::FSUB:
8190 case ISD::FMUL:
8191 case ISD::SDIV:
8192 case ISD::SREM:
8193 case ISD::FDIV:
8194 case ISD::FREM:
8195 case ISD::FCOPYSIGN:
8196 case ISD::UDIV:
8197 case ISD::UREM:
8198 case ISD::BSWAP: {
8199 // Binary op widening
Mon P Wang1448aad2008-10-30 08:01:45 +00008200 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8201 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8202 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008203 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2);
Mon P Wang1448aad2008-10-30 08:01:45 +00008204 break;
8205 }
8206
8207 case ISD::SHL:
8208 case ISD::SRA:
8209 case ISD::SRL: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008210 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8211 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangd5638262008-12-02 07:35:08 +00008212 SDValue ShOp = Node->getOperand(1);
8213 MVT ShVT = ShOp.getValueType();
8214 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8215 WidenVT.getVectorNumElements());
8216 ShOp = WidenVectorOp(ShOp, NewShVT);
8217 assert(ShOp.getValueType() == NewShVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008218 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, ShOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008219 break;
8220 }
Mon P Wangd5638262008-12-02 07:35:08 +00008221
Mon P Wang1448aad2008-10-30 08:01:45 +00008222 case ISD::EXTRACT_VECTOR_ELT: {
8223 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8224 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008225 Result = DAG.getNode(Node->getOpcode(), dl, EVT, Tmp1, Node->getOperand(1));
Mon P Wang1448aad2008-10-30 08:01:45 +00008226 break;
8227 }
8228 case ISD::CONCAT_VECTORS: {
8229 // We concurrently support only widen on a multiple of the incoming vector.
8230 // We could widen on a multiple of the incoming operand if necessary.
8231 unsigned NumConcat = NewNumElts / NumElts;
8232 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008233 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang1448aad2008-10-30 08:01:45 +00008234 SmallVector<SDValue, 8> MOps;
8235 MOps.push_back(Op);
8236 for (unsigned i = 1; i != NumConcat; ++i) {
8237 MOps.push_back(UndefVal);
8238 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00008239 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang1448aad2008-10-30 08:01:45 +00008240 &MOps[0], MOps.size()));
8241 break;
8242 }
8243 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang257e1c72008-11-15 06:05:52 +00008244 SDValue Tmp1 = Node->getOperand(0);
8245 SDValue Idx = Node->getOperand(1);
8246 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8247 if (CIdx && CIdx->getZExtValue() == 0) {
8248 // Since we are access the start of the vector, the incoming
8249 // vector type might be the proper.
8250 MVT Tmp1VT = Tmp1.getValueType();
8251 if (Tmp1VT == WidenVT)
8252 return Tmp1;
8253 else {
8254 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8255 if (Tmp1VTNumElts < NewNumElts)
8256 Result = WidenVectorOp(Tmp1, WidenVT);
8257 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00008258 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, Tmp1, Idx);
Mon P Wang257e1c72008-11-15 06:05:52 +00008259 }
8260 } else if (NewNumElts % NumElts == 0) {
8261 // Widen the extracted subvector.
8262 unsigned NumConcat = NewNumElts / NumElts;
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008263 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang257e1c72008-11-15 06:05:52 +00008264 SmallVector<SDValue, 8> MOps;
8265 MOps.push_back(Op);
8266 for (unsigned i = 1; i != NumConcat; ++i) {
8267 MOps.push_back(UndefVal);
8268 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00008269 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang257e1c72008-11-15 06:05:52 +00008270 &MOps[0], MOps.size()));
8271 } else {
8272 assert(0 && "can not widen extract subvector");
8273 // This could be implemented using insert and build vector but I would
8274 // like to see when this happens.
8275 }
Mon P Wang1448aad2008-10-30 08:01:45 +00008276 break;
8277 }
8278
8279 case ISD::SELECT: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008280 // Determine new condition widen type and widen
8281 SDValue Cond1 = Node->getOperand(0);
8282 MVT CondVT = Cond1.getValueType();
8283 assert(CondVT.isVector() && "can not widen non vector type");
8284 MVT CondEVT = CondVT.getVectorElementType();
8285 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8286 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8287 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8288
8289 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8290 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8291 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008292 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang1448aad2008-10-30 08:01:45 +00008293 break;
8294 }
Scott Michel91099d62009-02-17 22:15:04 +00008295
Mon P Wang1448aad2008-10-30 08:01:45 +00008296 case ISD::SELECT_CC: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008297 // Determine new condition widen type and widen
8298 SDValue Cond1 = Node->getOperand(0);
8299 SDValue Cond2 = Node->getOperand(1);
8300 MVT CondVT = Cond1.getValueType();
8301 assert(CondVT.isVector() && "can not widen non vector type");
8302 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8303 MVT CondEVT = CondVT.getVectorElementType();
8304 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8305 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8306 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8307 assert(Cond1.getValueType() == CondWidenVT &&
8308 Cond2.getValueType() == CondWidenVT && "condition not widen");
8309
8310 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8311 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8312 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8313 "operands not widen");
Dale Johannesend8fd5342009-02-02 22:49:46 +00008314 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Cond2, Tmp1,
Mon P Wang1448aad2008-10-30 08:01:45 +00008315 Tmp2, Node->getOperand(4));
Mon P Wang1448aad2008-10-30 08:01:45 +00008316 break;
Mon P Wang42ac14e2008-10-30 18:21:52 +00008317 }
8318 case ISD::VSETCC: {
8319 // Determine widen for the operand
8320 SDValue Tmp1 = Node->getOperand(0);
8321 MVT TmpVT = Tmp1.getValueType();
8322 assert(TmpVT.isVector() && "can not widen non vector type");
8323 MVT TmpEVT = TmpVT.getVectorElementType();
8324 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8325 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8326 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008327 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2,
Mon P Wang42ac14e2008-10-30 18:21:52 +00008328 Node->getOperand(2));
Mon P Wang1448aad2008-10-30 08:01:45 +00008329 break;
8330 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00008331 case ISD::ATOMIC_CMP_SWAP:
8332 case ISD::ATOMIC_LOAD_ADD:
8333 case ISD::ATOMIC_LOAD_SUB:
8334 case ISD::ATOMIC_LOAD_AND:
8335 case ISD::ATOMIC_LOAD_OR:
8336 case ISD::ATOMIC_LOAD_XOR:
8337 case ISD::ATOMIC_LOAD_NAND:
8338 case ISD::ATOMIC_LOAD_MIN:
8339 case ISD::ATOMIC_LOAD_MAX:
8340 case ISD::ATOMIC_LOAD_UMIN:
8341 case ISD::ATOMIC_LOAD_UMAX:
8342 case ISD::ATOMIC_SWAP: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008343 // For now, we assume that using vectors for these operations don't make
8344 // much sense so we just split it. We return an empty result
8345 SDValue X, Y;
8346 SplitVectorOp(Op, X, Y);
8347 return Result;
8348 break;
8349 }
8350
8351 } // end switch (Node->getOpcode())
8352
Scott Michel91099d62009-02-17 22:15:04 +00008353 assert(Result.getNode() && "Didn't set a result!");
Mon P Wang1448aad2008-10-30 08:01:45 +00008354 if (Result != Op)
8355 Result = LegalizeOp(Result);
8356
Mon P Wanga5a239f2008-11-06 05:31:54 +00008357 AddWidenedOperand(Op, Result);
Mon P Wang1448aad2008-10-30 08:01:45 +00008358 return Result;
8359}
8360
8361// Utility function to find a legal vector type and its associated element
8362// type from a preferred width and whose vector type must be the same size
8363// as the VVT.
8364// TLI: Target lowering used to determine legal types
8365// Width: Preferred width of element type
8366// VVT: Vector value type whose size we must match.
8367// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0275b132009-01-15 16:43:02 +00008368static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang1448aad2008-10-30 08:01:45 +00008369 MVT& EVT, MVT& VecEVT) {
8370 // We start with the preferred width, make it a power of 2 and see if
8371 // we can find a vector type of that width. If not, we reduce it by
8372 // another power of 2. If we have widen the type, a vector of bytes should
8373 // always be legal.
8374 assert(TLI.isTypeLegal(VVT));
8375 unsigned EWidth = Width + 1;
8376 do {
8377 assert(EWidth > 0);
8378 EWidth = (1 << Log2_32(EWidth-1));
8379 EVT = MVT::getIntegerVT(EWidth);
8380 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8381 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8382 } while (!TLI.isTypeLegal(VecEVT) ||
8383 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8384}
8385
8386SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8387 SDValue Chain,
8388 SDValue BasePtr,
8389 const Value *SV,
8390 int SVOffset,
8391 unsigned Alignment,
8392 bool isVolatile,
8393 unsigned LdWidth,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008394 MVT ResType,
8395 DebugLoc dl) {
Mon P Wang1448aad2008-10-30 08:01:45 +00008396 // We assume that we have good rules to handle loading power of two loads so
8397 // we break down the operations to power of 2 loads. The strategy is to
8398 // load the largest power of 2 that we can easily transform to a legal vector
8399 // and then insert into that vector, and the cast the result into the legal
8400 // vector that we want. This avoids unnecessary stack converts.
8401 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8402 // the load is nonvolatile, we an use a wider load for the value.
8403 // Find a vector length we can load a large chunk
8404 MVT EVT, VecEVT;
8405 unsigned EVTWidth;
8406 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8407 EVTWidth = EVT.getSizeInBits();
8408
Dale Johannesend8fd5342009-02-02 22:49:46 +00008409 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV, SVOffset,
Bob Wilson2e958a42009-04-10 18:48:47 +00008410 isVolatile, Alignment);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008411 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecEVT, LdOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008412 LdChain.push_back(LdOp.getValue(1));
Scott Michel91099d62009-02-17 22:15:04 +00008413
Mon P Wang1448aad2008-10-30 08:01:45 +00008414 // Check if we can load the element with one instruction
8415 if (LdWidth == EVTWidth) {
Dale Johannesend8fd5342009-02-02 22:49:46 +00008416 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008417 }
8418
8419 // The vector element order is endianness dependent.
8420 unsigned Idx = 1;
8421 LdWidth -= EVTWidth;
8422 unsigned Offset = 0;
Scott Michel91099d62009-02-17 22:15:04 +00008423
Mon P Wang1448aad2008-10-30 08:01:45 +00008424 while (LdWidth > 0) {
8425 unsigned Increment = EVTWidth / 8;
8426 Offset += Increment;
Dale Johannesend8fd5342009-02-02 22:49:46 +00008427 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang1448aad2008-10-30 08:01:45 +00008428 DAG.getIntPtrConstant(Increment));
8429
8430 if (LdWidth < EVTWidth) {
8431 // Our current type we are using is too large, use a smaller size by
8432 // using a smaller power of 2
8433 unsigned oEVTWidth = EVTWidth;
8434 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8435 EVTWidth = EVT.getSizeInBits();
8436 // Readjust position and vector position based on new load type
Mon P Wang257e1c72008-11-15 06:05:52 +00008437 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008438 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008439 }
Scott Michel91099d62009-02-17 22:15:04 +00008440
Dale Johannesend8fd5342009-02-02 22:49:46 +00008441 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV,
Bob Wilson2e958a42009-04-10 18:48:47 +00008442 SVOffset+Offset, isVolatile,
8443 MinAlign(Alignment, Offset));
Mon P Wang1448aad2008-10-30 08:01:45 +00008444 LdChain.push_back(LdOp.getValue(1));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008445 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecEVT, VecOp, LdOp,
Mon P Wang1448aad2008-10-30 08:01:45 +00008446 DAG.getIntPtrConstant(Idx++));
Scott Michel91099d62009-02-17 22:15:04 +00008447
Mon P Wang1448aad2008-10-30 08:01:45 +00008448 LdWidth -= EVTWidth;
8449 }
8450
Dale Johannesend8fd5342009-02-02 22:49:46 +00008451 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008452}
8453
8454bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8455 SDValue& TFOp,
8456 SDValue Op,
8457 MVT NVT) {
8458 // TODO: Add support for ConcatVec and the ability to load many vector
8459 // types (e.g., v4i8). This will not work when a vector register
8460 // to memory mapping is strange (e.g., vector elements are not
8461 // stored in some sequential order).
8462
Scott Michel91099d62009-02-17 22:15:04 +00008463 // It must be true that the widen vector type is bigger than where
Mon P Wang1448aad2008-10-30 08:01:45 +00008464 // we need to load from.
8465 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8466 MVT LdVT = LD->getMemoryVT();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008467 DebugLoc dl = LD->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008468 assert(LdVT.isVector() && NVT.isVector());
8469 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
Scott Michel91099d62009-02-17 22:15:04 +00008470
Mon P Wang1448aad2008-10-30 08:01:45 +00008471 // Load information
8472 SDValue Chain = LD->getChain();
8473 SDValue BasePtr = LD->getBasePtr();
8474 int SVOffset = LD->getSrcValueOffset();
8475 unsigned Alignment = LD->getAlignment();
8476 bool isVolatile = LD->isVolatile();
8477 const Value *SV = LD->getSrcValue();
8478 unsigned int LdWidth = LdVT.getSizeInBits();
Scott Michel91099d62009-02-17 22:15:04 +00008479
Mon P Wang1448aad2008-10-30 08:01:45 +00008480 // Load value as a large register
8481 SDValueVector LdChain;
8482 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008483 Alignment, isVolatile, LdWidth, NVT, dl);
Mon P Wang1448aad2008-10-30 08:01:45 +00008484
8485 if (LdChain.size() == 1) {
8486 TFOp = LdChain[0];
8487 return true;
8488 }
8489 else {
Scott Michel91099d62009-02-17 22:15:04 +00008490 TFOp=DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008491 &LdChain[0], LdChain.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008492 return false;
8493 }
8494}
8495
8496
8497void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8498 SDValue Chain,
8499 SDValue BasePtr,
8500 const Value *SV,
8501 int SVOffset,
8502 unsigned Alignment,
8503 bool isVolatile,
Mon P Wang257e1c72008-11-15 06:05:52 +00008504 SDValue ValOp,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008505 unsigned StWidth,
8506 DebugLoc dl) {
Mon P Wang1448aad2008-10-30 08:01:45 +00008507 // Breaks the stores into a series of power of 2 width stores. For any
8508 // width, we convert the vector to the vector of element size that we
8509 // want to store. This avoids requiring a stack convert.
Scott Michel91099d62009-02-17 22:15:04 +00008510
Mon P Wang1448aad2008-10-30 08:01:45 +00008511 // Find a width of the element type we can store with
8512 MVT VVT = ValOp.getValueType();
8513 MVT EVT, VecEVT;
8514 unsigned EVTWidth;
8515 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8516 EVTWidth = EVT.getSizeInBits();
8517
Dale Johannesend8fd5342009-02-02 22:49:46 +00008518 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, ValOp);
8519 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang927daf52008-11-06 22:52:21 +00008520 DAG.getIntPtrConstant(0));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008521 SDValue StOp = DAG.getStore(Chain, dl, EOp, BasePtr, SV, SVOffset,
Bob Wilson2e958a42009-04-10 18:48:47 +00008522 isVolatile, Alignment);
Mon P Wang1448aad2008-10-30 08:01:45 +00008523 StChain.push_back(StOp);
8524
8525 // Check if we are done
8526 if (StWidth == EVTWidth) {
8527 return;
8528 }
Scott Michel91099d62009-02-17 22:15:04 +00008529
Mon P Wang1448aad2008-10-30 08:01:45 +00008530 unsigned Idx = 1;
8531 StWidth -= EVTWidth;
8532 unsigned Offset = 0;
Scott Michel91099d62009-02-17 22:15:04 +00008533
Mon P Wang1448aad2008-10-30 08:01:45 +00008534 while (StWidth > 0) {
8535 unsigned Increment = EVTWidth / 8;
8536 Offset += Increment;
Dale Johannesend8fd5342009-02-02 22:49:46 +00008537 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang1448aad2008-10-30 08:01:45 +00008538 DAG.getIntPtrConstant(Increment));
Scott Michel91099d62009-02-17 22:15:04 +00008539
Mon P Wang1448aad2008-10-30 08:01:45 +00008540 if (StWidth < EVTWidth) {
8541 // Our current type we are using is too large, use a smaller size by
8542 // using a smaller power of 2
8543 unsigned oEVTWidth = EVTWidth;
8544 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8545 EVTWidth = EVT.getSizeInBits();
8546 // Readjust position and vector position based on new load type
Mon P Wang257e1c72008-11-15 06:05:52 +00008547 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008548 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008549 }
Scott Michel91099d62009-02-17 22:15:04 +00008550
Dale Johannesend8fd5342009-02-02 22:49:46 +00008551 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang257e1c72008-11-15 06:05:52 +00008552 DAG.getIntPtrConstant(Idx++));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008553 StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr, SV,
Mon P Wang1448aad2008-10-30 08:01:45 +00008554 SVOffset + Offset, isVolatile,
8555 MinAlign(Alignment, Offset)));
8556 StWidth -= EVTWidth;
8557 }
8558}
8559
8560
8561SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
Bob Wilson2e958a42009-04-10 18:48:47 +00008562 SDValue Chain,
8563 SDValue BasePtr) {
Mon P Wang1448aad2008-10-30 08:01:45 +00008564 // TODO: It might be cleaner if we can use SplitVector and have more legal
8565 // vector types that can be stored into memory (e.g., v4xi8 can
8566 // be stored as a word). This will not work when a vector register
8567 // to memory mapping is strange (e.g., vector elements are not
8568 // stored in some sequential order).
Scott Michel91099d62009-02-17 22:15:04 +00008569
Mon P Wang1448aad2008-10-30 08:01:45 +00008570 MVT StVT = ST->getMemoryVT();
8571 SDValue ValOp = ST->getValue();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008572 DebugLoc dl = ST->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008573
8574 // Check if we have widen this node with another value
8575 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8576 if (I != WidenNodes.end())
8577 ValOp = I->second;
Scott Michel91099d62009-02-17 22:15:04 +00008578
Mon P Wang1448aad2008-10-30 08:01:45 +00008579 MVT VVT = ValOp.getValueType();
8580
8581 // It must be true that we the widen vector type is bigger than where
8582 // we need to store.
8583 assert(StVT.isVector() && VVT.isVector());
Dan Gohman783a32c2009-01-28 03:10:52 +00008584 assert(StVT.bitsLT(VVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008585 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8586
8587 // Store value
8588 SDValueVector StChain;
8589 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8590 ST->getSrcValueOffset(), ST->getAlignment(),
Dale Johannesend8fd5342009-02-02 22:49:46 +00008591 ST->isVolatile(), ValOp, StVT.getSizeInBits(), dl);
Mon P Wang1448aad2008-10-30 08:01:45 +00008592 if (StChain.size() == 1)
8593 return StChain[0];
Scott Michel91099d62009-02-17 22:15:04 +00008594 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00008595 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8596 &StChain[0], StChain.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008597}
8598
8599
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008600// SelectionDAG::Legalize - This is the entry point for the file.
8601//
Bill Wendling5ed22ac2009-04-29 23:29:43 +00008602void SelectionDAG::Legalize(bool TypesNeedLegalizing,
8603 CodeGenOpt::Level OptLevel) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008604 /// run - This is the main entry point to this class.
8605 ///
Bill Wendling58ed5d22009-04-29 00:15:41 +00008606 SelectionDAGLegalize(*this, TypesNeedLegalizing, OptLevel).LegalizeDAG();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008607}
8608