blob: 888eeda2652eec9afd2a3bf8794c911e530d2d0c [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
15#include "llvm/CodeGen/MachineFunction.h"
16#include "llvm/CodeGen/MachineFrameInfo.h"
17#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner1b989192007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Devang Patelfcf1c752009-01-13 00:35:13 +000019#include "llvm/CodeGen/DwarfWriter.h"
20#include "llvm/Analysis/DebugInfo.h"
Dan Gohman12a9c082008-02-06 22:27:42 +000021#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Chenga448bc42007-08-16 23:50:06 +000022#include "llvm/Target/TargetFrameInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023#include "llvm/Target/TargetLowering.h"
24#include "llvm/Target/TargetData.h"
25#include "llvm/Target/TargetMachine.h"
26#include "llvm/Target/TargetOptions.h"
Dan Gohmane8b391e2008-04-12 04:36:06 +000027#include "llvm/Target/TargetSubtarget.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/CallingConv.h"
29#include "llvm/Constants.h"
30#include "llvm/DerivedTypes.h"
Bill Wendlinge3f43e52009-02-17 01:04:54 +000031#include "llvm/Function.h"
Devang Patelfcf1c752009-01-13 00:35:13 +000032#include "llvm/GlobalVariable.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033#include "llvm/Support/CommandLine.h"
34#include "llvm/Support/Compiler.h"
Duncan Sandsa3691432007-10-28 12:59:45 +000035#include "llvm/Support/MathExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036#include "llvm/ADT/DenseMap.h"
37#include "llvm/ADT/SmallVector.h"
38#include "llvm/ADT/SmallPtrSet.h"
39#include <map>
40using namespace llvm;
41
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042//===----------------------------------------------------------------------===//
43/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
44/// hacks on it until the target machine can handle it. This involves
45/// eliminating value sizes the machine cannot handle (promoting small sizes to
46/// large sizes or splitting up large values into small values) as well as
47/// eliminating operations the machine cannot handle.
48///
49/// This code also does a small amount of optimization and recognition of idioms
50/// as part of its processing. For example, if a target does not support a
51/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
52/// will attempt merge setcc and brc instructions into brcc's.
53///
54namespace {
55class VISIBILITY_HIDDEN SelectionDAGLegalize {
56 TargetLowering &TLI;
57 SelectionDAG &DAG;
Duncan Sandse016a2e2008-12-14 09:43:15 +000058 bool TypesNeedLegalizing;
Bill Wendling123374a2009-02-24 02:35:30 +000059 bool Fast;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060
61 // Libcall insertion helpers.
Scott Michel91099d62009-02-17 22:15:04 +000062
Dan Gohmanf17a25c2007-07-18 16:29:46 +000063 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
64 /// legalized. We use this to ensure that calls are properly serialized
65 /// against each other, including inserted libcalls.
Dan Gohman8181bd12008-07-27 21:46:04 +000066 SDValue LastCALLSEQ_END;
Scott Michel91099d62009-02-17 22:15:04 +000067
Dan Gohmanf17a25c2007-07-18 16:29:46 +000068 /// IsLegalizingCall - This member is used *only* for purposes of providing
Scott Michel91099d62009-02-17 22:15:04 +000069 /// helpful assertions that a libcall isn't created while another call is
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070 /// being legalized (which could lead to non-serialized call sequences).
71 bool IsLegalizingCall;
Scott Michel91099d62009-02-17 22:15:04 +000072
Mon P Wang7cba3942009-02-04 19:38:14 +000073 /// IsLegalizingCallArguments - This member is used only for the purpose
74 /// of providing assert to check for LegalizeTypes because legalizing an
75 /// operation might introduce call nodes that might need type legalization.
76 bool IsLegalizingCallArgs;
77
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078 enum LegalizeAction {
79 Legal, // The target natively supports this operation.
80 Promote, // This operation should be executed in a larger type.
81 Expand // Try to expand this to other ops, otherwise use a libcall.
82 };
Scott Michel91099d62009-02-17 22:15:04 +000083
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084 /// ValueTypeActions - This is a bitvector that contains two bits for each
85 /// value type, where the two bits correspond to the LegalizeAction enum.
86 /// This can be queried with "getTypeAction(VT)".
87 TargetLowering::ValueTypeActionImpl ValueTypeActions;
88
89 /// LegalizedNodes - For nodes that are of legal width, and that have more
90 /// than one use, this map indicates what regularized operand to use. This
91 /// allows us to avoid legalizing the same thing more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000092 DenseMap<SDValue, SDValue> LegalizedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093
94 /// PromotedNodes - For nodes that are below legal width, and that have more
95 /// than one use, this map indicates what promoted value to use. This allows
96 /// us to avoid promoting the same thing more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000097 DenseMap<SDValue, SDValue> PromotedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000098
99 /// ExpandedNodes - For nodes that need to be expanded this map indicates
Mon P Wang1448aad2008-10-30 08:01:45 +0000100 /// which operands are the expanded version of the input. This allows
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000101 /// us to avoid expanding the same node more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +0000102 DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000103
104 /// SplitNodes - For vector nodes that need to be split, this map indicates
Mon P Wang1448aad2008-10-30 08:01:45 +0000105 /// which operands are the split version of the input. This allows us
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106 /// to avoid splitting the same node more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +0000107 std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes;
Scott Michel91099d62009-02-17 22:15:04 +0000108
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109 /// ScalarizedNodes - For nodes that need to be converted from vector types to
110 /// scalar types, this contains the mapping of ones we have already
111 /// processed to the result.
Dan Gohman8181bd12008-07-27 21:46:04 +0000112 std::map<SDValue, SDValue> ScalarizedNodes;
Scott Michel91099d62009-02-17 22:15:04 +0000113
Mon P Wanga5a239f2008-11-06 05:31:54 +0000114 /// WidenNodes - For nodes that need to be widened from one vector type to
115 /// another, this contains the mapping of those that we have already widen.
116 /// This allows us to avoid widening more than once.
Mon P Wang1448aad2008-10-30 08:01:45 +0000117 std::map<SDValue, SDValue> WidenNodes;
118
Dan Gohman8181bd12008-07-27 21:46:04 +0000119 void AddLegalizedOperand(SDValue From, SDValue To) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 LegalizedNodes.insert(std::make_pair(From, To));
121 // If someone requests legalization of the new node, return itself.
122 if (From != To)
123 LegalizedNodes.insert(std::make_pair(To, To));
124 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000125 void AddPromotedOperand(SDValue From, SDValue To) {
Dan Gohman55d19662008-07-07 17:46:23 +0000126 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127 assert(isNew && "Got into the map somehow?");
Evan Chengcf576fd2008-11-24 07:09:49 +0000128 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 // If someone requests legalization of the new node, return itself.
130 LegalizedNodes.insert(std::make_pair(To, To));
131 }
Mon P Wanga5a239f2008-11-06 05:31:54 +0000132 void AddWidenedOperand(SDValue From, SDValue To) {
Mon P Wang1448aad2008-10-30 08:01:45 +0000133 bool isNew = WidenNodes.insert(std::make_pair(From, To)).second;
134 assert(isNew && "Got into the map somehow?");
Evan Chengcf576fd2008-11-24 07:09:49 +0000135 isNew = isNew;
Mon P Wang1448aad2008-10-30 08:01:45 +0000136 // If someone requests legalization of the new node, return itself.
137 LegalizedNodes.insert(std::make_pair(To, To));
138 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139
140public:
Bill Wendling123374a2009-02-24 02:35:30 +0000141 explicit SelectionDAGLegalize(SelectionDAG &DAG, bool TypesNeedLegalizing,
142 bool fast);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143
144 /// getTypeAction - Return how we should legalize values of this type, either
145 /// it is already legal or we need to expand it into multiple registers of
146 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands92c43912008-06-06 12:08:01 +0000147 LegalizeAction getTypeAction(MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
149 }
150
151 /// isTypeLegal - Return true if this type is legal on this target.
152 ///
Duncan Sands92c43912008-06-06 12:08:01 +0000153 bool isTypeLegal(MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154 return getTypeAction(VT) == Legal;
155 }
156
157 void LegalizeDAG();
158
159private:
160 /// HandleOp - Legalize, Promote, or Expand the specified operand as
161 /// appropriate for its type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000162 void HandleOp(SDValue Op);
Scott Michel91099d62009-02-17 22:15:04 +0000163
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 /// LegalizeOp - We know that the specified value has a legal type.
165 /// Recursively ensure that the operands have legal types, then return the
166 /// result.
Dan Gohman8181bd12008-07-27 21:46:04 +0000167 SDValue LegalizeOp(SDValue O);
Scott Michel91099d62009-02-17 22:15:04 +0000168
Dan Gohman6d05cac2007-10-11 23:57:53 +0000169 /// UnrollVectorOp - We know that the given vector has a legal type, however
170 /// the operation it performs is not legal and is an operation that we have
171 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
172 /// operating on each element individually.
Dan Gohman8181bd12008-07-27 21:46:04 +0000173 SDValue UnrollVectorOp(SDValue O);
Scott Michel91099d62009-02-17 22:15:04 +0000174
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000175 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
176 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
177 /// is necessary to spill the vector being inserted into to memory, perform
178 /// the insert there, and then read the result back.
Dan Gohman8181bd12008-07-27 21:46:04 +0000179 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Dale Johannesen352c47e2009-02-02 20:41:04 +0000180 SDValue Idx, DebugLoc dl);
Dan Gohman6d05cac2007-10-11 23:57:53 +0000181
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 /// PromoteOp - Given an operation that produces a value in an invalid type,
183 /// promote it to compute the value into a larger type. The produced value
184 /// will have the correct bits for the low portion of the register, but no
185 /// guarantee is made about the top bits: it may be zero, sign-extended, or
186 /// garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +0000187 SDValue PromoteOp(SDValue O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188
Dan Gohman8181bd12008-07-27 21:46:04 +0000189 /// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
Dan Gohman4fc03742008-10-01 15:07:49 +0000191 /// the LegalizedNodes map is filled in for any results that are not expanded,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192 /// the ExpandedNodes map is filled in for any results that are expanded, and
193 /// the Lo/Hi values are returned. This applies to integer types and Vector
194 /// types.
Dan Gohman8181bd12008-07-27 21:46:04 +0000195 void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196
Scott Michel91099d62009-02-17 22:15:04 +0000197 /// WidenVectorOp - Widen a vector operation to a wider type given by WidenVT
Mon P Wanga5a239f2008-11-06 05:31:54 +0000198 /// (e.g., v3i32 to v4i32). The produced value will have the correct value
199 /// for the existing elements but no guarantee is made about the new elements
200 /// at the end of the vector: it may be zero, ones, or garbage. This is useful
201 /// when we have an instruction operating on an illegal vector type and we
202 /// want to widen it to do the computation on a legal wider vector type.
Mon P Wang1448aad2008-10-30 08:01:45 +0000203 SDValue WidenVectorOp(SDValue Op, MVT WidenVT);
204
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205 /// SplitVectorOp - Given an operand of vector type, break it down into
206 /// two smaller values.
Dan Gohman8181bd12008-07-27 21:46:04 +0000207 void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi);
Scott Michel91099d62009-02-17 22:15:04 +0000208
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209 /// ScalarizeVectorOp - Given an operand of single-element vector type
210 /// (e.g. v1f32), convert it into the equivalent operation that returns a
211 /// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +0000212 SDValue ScalarizeVectorOp(SDValue O);
Scott Michel91099d62009-02-17 22:15:04 +0000213
Mon P Wanga5a239f2008-11-06 05:31:54 +0000214 /// Useful 16 element vector type that is used to pass operands for widening.
Scott Michel91099d62009-02-17 22:15:04 +0000215 typedef SmallVector<SDValue, 16> SDValueVector;
216
Mon P Wang1448aad2008-10-30 08:01:45 +0000217 /// LoadWidenVectorOp - Load a vector for a wider type. Returns true if
218 /// the LdChain contains a single load and false if it contains a token
219 /// factor for multiple loads. It takes
220 /// Result: location to return the result
221 /// LdChain: location to return the load chain
222 /// Op: load operation to widen
223 /// NVT: widen vector result type we want for the load
Scott Michel91099d62009-02-17 22:15:04 +0000224 bool LoadWidenVectorOp(SDValue& Result, SDValue& LdChain,
Mon P Wang1448aad2008-10-30 08:01:45 +0000225 SDValue Op, MVT NVT);
Scott Michel91099d62009-02-17 22:15:04 +0000226
Mon P Wang1448aad2008-10-30 08:01:45 +0000227 /// Helper genWidenVectorLoads - Helper function to generate a set of
228 /// loads to load a vector with a resulting wider type. It takes
229 /// LdChain: list of chains for the load we have generated
230 /// Chain: incoming chain for the ld vector
231 /// BasePtr: base pointer to load from
232 /// SV: memory disambiguation source value
233 /// SVOffset: memory disambiugation offset
234 /// Alignment: alignment of the memory
235 /// isVolatile: volatile load
Scott Michel91099d62009-02-17 22:15:04 +0000236 /// LdWidth: width of memory that we want to load
Mon P Wang1448aad2008-10-30 08:01:45 +0000237 /// ResType: the wider result result type for the resulting loaded vector
238 SDValue genWidenVectorLoads(SDValueVector& LdChain, SDValue Chain,
239 SDValue BasePtr, const Value *SV,
240 int SVOffset, unsigned Alignment,
241 bool isVolatile, unsigned LdWidth,
Dale Johannesend8fd5342009-02-02 22:49:46 +0000242 MVT ResType, DebugLoc dl);
Scott Michel91099d62009-02-17 22:15:04 +0000243
Mon P Wang1448aad2008-10-30 08:01:45 +0000244 /// StoreWidenVectorOp - Stores a widen vector into non widen memory
245 /// location. It takes
246 /// ST: store node that we want to replace
247 /// Chain: incoming store chain
248 /// BasePtr: base address of where we want to store into
Scott Michel91099d62009-02-17 22:15:04 +0000249 SDValue StoreWidenVectorOp(StoreSDNode *ST, SDValue Chain,
Mon P Wang1448aad2008-10-30 08:01:45 +0000250 SDValue BasePtr);
Scott Michel91099d62009-02-17 22:15:04 +0000251
Mon P Wang1448aad2008-10-30 08:01:45 +0000252 /// Helper genWidenVectorStores - Helper function to generate a set of
253 /// stores to store a widen vector into non widen memory
254 // It takes
255 // StChain: list of chains for the stores we have generated
256 // Chain: incoming chain for the ld vector
257 // BasePtr: base pointer to load from
258 // SV: memory disambiguation source value
259 // SVOffset: memory disambiugation offset
260 // Alignment: alignment of the memory
261 // isVolatile: volatile lod
Scott Michel91099d62009-02-17 22:15:04 +0000262 // ValOp: value to store
263 // StWidth: width of memory that we want to store
Mon P Wang1448aad2008-10-30 08:01:45 +0000264 void genWidenVectorStores(SDValueVector& StChain, SDValue Chain,
265 SDValue BasePtr, const Value *SV,
266 int SVOffset, unsigned Alignment,
267 bool isVolatile, SDValue ValOp,
Dale Johannesend8fd5342009-02-02 22:49:46 +0000268 unsigned StWidth, DebugLoc dl);
Scott Michel91099d62009-02-17 22:15:04 +0000269
Duncan Sandsd3ace282008-07-21 10:20:31 +0000270 /// isShuffleLegal - Return non-null if a vector shuffle is legal with the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000271 /// specified mask and type. Targets can specify exactly which masks they
272 /// support and the code generator is tasked with not creating illegal masks.
273 ///
274 /// Note that this will also return true for shuffles that are promoted to a
275 /// different type.
276 ///
277 /// If this is a legal shuffle, this method returns the (possibly promoted)
278 /// build_vector Mask. If it's not a legal shuffle, it returns null.
Dan Gohman8181bd12008-07-27 21:46:04 +0000279 SDNode *isShuffleLegal(MVT VT, SDValue Mask) const;
Scott Michel91099d62009-02-17 22:15:04 +0000280
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000281 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
282 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
283
Dale Johannesen352c47e2009-02-02 20:41:04 +0000284 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC,
285 DebugLoc dl);
286 void LegalizeSetCCCondCode(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
287 DebugLoc dl);
288 void LegalizeSetCC(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
289 DebugLoc dl) {
290 LegalizeSetCCOperands(LHS, RHS, CC, dl);
291 LegalizeSetCCCondCode(VT, LHS, RHS, CC, dl);
Evan Cheng71343822008-10-15 02:05:31 +0000292 }
Scott Michel91099d62009-02-17 22:15:04 +0000293
Dan Gohman8181bd12008-07-27 21:46:04 +0000294 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
295 SDValue &Hi);
Dale Johannesen9972b632009-02-02 19:03:57 +0000296 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000297
Dale Johannesen82b5b722009-02-02 22:12:50 +0000298 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT, DebugLoc dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000299 SDValue ExpandBUILD_VECTOR(SDNode *Node);
300 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Scott Michel91099d62009-02-17 22:15:04 +0000301 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy,
Dale Johannesen9972b632009-02-02 19:03:57 +0000302 SDValue Op, DebugLoc dl);
303 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT,
304 DebugLoc dl);
305 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned,
306 DebugLoc dl);
307 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned,
308 DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309
Dale Johannesen82b5b722009-02-02 22:12:50 +0000310 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
311 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000312 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +0000313 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohman8181bd12008-07-27 21:46:04 +0000314 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +0000315 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316
Dan Gohman8181bd12008-07-27 21:46:04 +0000317 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
318 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000319};
320}
321
322/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
323/// specified mask and type. Targets can specify exactly which masks they
324/// support and the code generator is tasked with not creating illegal masks.
325///
326/// Note that this will also return true for shuffles that are promoted to a
327/// different type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000328SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDValue Mask) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000329 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
330 default: return 0;
331 case TargetLowering::Legal:
332 case TargetLowering::Custom:
333 break;
334 case TargetLowering::Promote: {
335 // If this is promoted to a different type, convert the shuffle mask and
336 // ask if it is legal in the promoted type!
Duncan Sands92c43912008-06-06 12:08:01 +0000337 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Duncan Sandsd3ace282008-07-21 10:20:31 +0000338 MVT EltVT = NVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339
340 // If we changed # elements, change the shuffle mask.
341 unsigned NumEltsGrowth =
Duncan Sands92c43912008-06-06 12:08:01 +0000342 NVT.getVectorNumElements() / VT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000343 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
344 if (NumEltsGrowth > 1) {
345 // Renumber the elements.
Dan Gohman8181bd12008-07-27 21:46:04 +0000346 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000347 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000348 SDValue InOp = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000349 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
350 if (InOp.getOpcode() == ISD::UNDEF)
Dale Johannesen9bfc0172009-02-06 23:05:02 +0000351 Ops.push_back(DAG.getUNDEF(EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 else {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000353 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getZExtValue();
Duncan Sandsd3ace282008-07-21 10:20:31 +0000354 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355 }
356 }
357 }
Evan Cheng907a2d22009-02-25 22:49:59 +0000358 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getDebugLoc(),
359 NVT, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360 }
361 VT = NVT;
362 break;
363 }
364 }
Gabor Greif1c80d112008-08-28 21:40:38 +0000365 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.getNode() : 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366}
367
Bill Wendling123374a2009-02-24 02:35:30 +0000368SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag,
369 bool types, bool fast)
Duncan Sandse016a2e2008-12-14 09:43:15 +0000370 : TLI(dag.getTargetLoweringInfo()), DAG(dag), TypesNeedLegalizing(types),
Bill Wendling123374a2009-02-24 02:35:30 +0000371 Fast(fast), ValueTypeActions(TLI.getValueTypeActions()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000372 assert(MVT::LAST_VALUETYPE <= 32 &&
373 "Too many value types for ValueTypeActions to hold!");
374}
375
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000376void SelectionDAGLegalize::LegalizeDAG() {
377 LastCALLSEQ_END = DAG.getEntryNode();
378 IsLegalizingCall = false;
Mon P Wang7cba3942009-02-04 19:38:14 +0000379 IsLegalizingCallArgs = false;
380
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381 // The legalize process is inherently a bottom-up recursive process (users
382 // legalize their uses before themselves). Given infinite stack space, we
383 // could just start legalizing on the root and traverse the whole graph. In
384 // practice however, this causes us to run out of stack space on large basic
385 // blocks. To avoid this problem, compute an ordering of the nodes where each
386 // node is only legalized after all of its operands are legalized.
Dan Gohman2d2a7a32008-09-30 18:30:35 +0000387 DAG.AssignTopologicalOrder();
388 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
389 E = prior(DAG.allnodes_end()); I != next(E); ++I)
390 HandleOp(SDValue(I, 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000391
392 // Finally, it's possible the root changed. Get the new root.
Dan Gohman8181bd12008-07-27 21:46:04 +0000393 SDValue OldRoot = DAG.getRoot();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
395 DAG.setRoot(LegalizedNodes[OldRoot]);
396
397 ExpandedNodes.clear();
398 LegalizedNodes.clear();
399 PromotedNodes.clear();
400 SplitNodes.clear();
401 ScalarizedNodes.clear();
Mon P Wang1448aad2008-10-30 08:01:45 +0000402 WidenNodes.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403
404 // Remove dead nodes now.
405 DAG.RemoveDeadNodes();
406}
407
408
409/// FindCallEndFromCallStart - Given a chained node that is part of a call
410/// sequence, find the CALLSEQ_END node that terminates the call sequence.
411static SDNode *FindCallEndFromCallStart(SDNode *Node) {
412 if (Node->getOpcode() == ISD::CALLSEQ_END)
413 return Node;
414 if (Node->use_empty())
415 return 0; // No CallSeqEnd
Scott Michel91099d62009-02-17 22:15:04 +0000416
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417 // The chain is usually at the end.
Dan Gohman8181bd12008-07-27 21:46:04 +0000418 SDValue TheChain(Node, Node->getNumValues()-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419 if (TheChain.getValueType() != MVT::Other) {
420 // Sometimes it's at the beginning.
Dan Gohman8181bd12008-07-27 21:46:04 +0000421 TheChain = SDValue(Node, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000422 if (TheChain.getValueType() != MVT::Other) {
423 // Otherwise, hunt for it.
424 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
425 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000426 TheChain = SDValue(Node, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000427 break;
428 }
Scott Michel91099d62009-02-17 22:15:04 +0000429
430 // Otherwise, we walked into a node without a chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000431 if (TheChain.getValueType() != MVT::Other)
432 return 0;
433 }
434 }
Scott Michel91099d62009-02-17 22:15:04 +0000435
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000436 for (SDNode::use_iterator UI = Node->use_begin(),
437 E = Node->use_end(); UI != E; ++UI) {
Scott Michel91099d62009-02-17 22:15:04 +0000438
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439 // Make sure to only follow users of our token chain.
Dan Gohman0c97f1d2008-07-27 20:43:25 +0000440 SDNode *User = *UI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000441 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
442 if (User->getOperand(i) == TheChain)
443 if (SDNode *Result = FindCallEndFromCallStart(User))
444 return Result;
445 }
446 return 0;
447}
448
Scott Michel91099d62009-02-17 22:15:04 +0000449/// FindCallStartFromCallEnd - Given a chained node that is part of a call
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450/// sequence, find the CALLSEQ_START node that initiates the call sequence.
451static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
452 assert(Node && "Didn't find callseq_start for a call??");
453 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Scott Michel91099d62009-02-17 22:15:04 +0000454
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000455 assert(Node->getOperand(0).getValueType() == MVT::Other &&
456 "Node doesn't have a token chain argument!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000457 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000458}
459
460/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
Scott Michel91099d62009-02-17 22:15:04 +0000461/// see if any uses can reach Dest. If no dest operands can get to dest,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000462/// legalize them, legalize ourself, and return false, otherwise, return true.
463///
464/// Keep track of the nodes we fine that actually do lead to Dest in
465/// NodesLeadingTo. This avoids retraversing them exponential number of times.
466///
467bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
468 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
469 if (N == Dest) return true; // N certainly leads to Dest :)
Scott Michel91099d62009-02-17 22:15:04 +0000470
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000471 // If we've already processed this node and it does lead to Dest, there is no
472 // need to reprocess it.
473 if (NodesLeadingTo.count(N)) return true;
Scott Michel91099d62009-02-17 22:15:04 +0000474
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 // If the first result of this node has been already legalized, then it cannot
476 // reach N.
477 switch (getTypeAction(N->getValueType(0))) {
Scott Michel91099d62009-02-17 22:15:04 +0000478 case Legal:
Dan Gohman8181bd12008-07-27 21:46:04 +0000479 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480 break;
481 case Promote:
Dan Gohman8181bd12008-07-27 21:46:04 +0000482 if (PromotedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000483 break;
484 case Expand:
Dan Gohman8181bd12008-07-27 21:46:04 +0000485 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486 break;
487 }
Scott Michel91099d62009-02-17 22:15:04 +0000488
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 // Okay, this node has not already been legalized. Check and legalize all
490 // operands. If none lead to Dest, then we can legalize this node.
491 bool OperandsLeadToDest = false;
492 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
493 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greif1c80d112008-08-28 21:40:38 +0000494 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000495
496 if (OperandsLeadToDest) {
497 NodesLeadingTo.insert(N);
498 return true;
499 }
500
501 // Okay, this node looks safe, legalize it and return false.
Dan Gohman8181bd12008-07-27 21:46:04 +0000502 HandleOp(SDValue(N, 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503 return false;
504}
505
Mon P Wang1448aad2008-10-30 08:01:45 +0000506/// HandleOp - Legalize, Promote, Widen, or Expand the specified operand as
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507/// appropriate for its type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000508void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +0000509 MVT VT = Op.getValueType();
Duncan Sandse016a2e2008-12-14 09:43:15 +0000510 // If the type legalizer was run then we should never see any illegal result
511 // types here except for target constants (the type legalizer does not touch
Mon P Wang26342922008-12-18 20:03:17 +0000512 // those) or for build vector used as a mask for a vector shuffle.
513 // FIXME: We can removed the BUILD_VECTOR case when we fix PR2957.
Duncan Sandse016a2e2008-12-14 09:43:15 +0000514 assert((TypesNeedLegalizing || getTypeAction(VT) == Legal ||
Mon P Wang7cba3942009-02-04 19:38:14 +0000515 IsLegalizingCallArgs || Op.getOpcode() == ISD::TargetConstant ||
Mon P Wang26342922008-12-18 20:03:17 +0000516 Op.getOpcode() == ISD::BUILD_VECTOR) &&
Duncan Sandse016a2e2008-12-14 09:43:15 +0000517 "Illegal type introduced after type legalization?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518 switch (getTypeAction(VT)) {
519 default: assert(0 && "Bad type action!");
520 case Legal: (void)LegalizeOp(Op); break;
Mon P Wang1448aad2008-10-30 08:01:45 +0000521 case Promote:
522 if (!VT.isVector()) {
523 (void)PromoteOp(Op);
524 break;
525 }
526 else {
527 // See if we can widen otherwise use Expand to either scalarize or split
528 MVT WidenVT = TLI.getWidenVectorType(VT);
529 if (WidenVT != MVT::Other) {
530 (void) WidenVectorOp(Op, WidenVT);
531 break;
532 }
533 // else fall thru to expand since we can't widen the vector
534 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +0000536 if (!VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000537 // If this is an illegal scalar, expand it into its two component
538 // pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +0000539 SDValue X, Y;
Chris Lattnerdad577b2007-08-25 01:00:22 +0000540 if (Op.getOpcode() == ISD::TargetConstant)
541 break; // Allow illegal target nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000542 ExpandOp(Op, X, Y);
Duncan Sands92c43912008-06-06 12:08:01 +0000543 } else if (VT.getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000544 // If this is an illegal single element vector, convert it to a
545 // scalar operation.
546 (void)ScalarizeVectorOp(Op);
547 } else {
Mon P Wang1448aad2008-10-30 08:01:45 +0000548 // This is an illegal multiple element vector.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000549 // Split it in half and legalize both parts.
Dan Gohman8181bd12008-07-27 21:46:04 +0000550 SDValue X, Y;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000551 SplitVectorOp(Op, X, Y);
552 }
553 break;
554 }
555}
556
557/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
558/// a load from the constant pool.
Dan Gohman8181bd12008-07-27 21:46:04 +0000559static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohman0275b132009-01-15 16:43:02 +0000560 SelectionDAG &DAG, const TargetLowering &TLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561 bool Extend = false;
Dale Johannesenea996922009-02-04 20:06:27 +0000562 DebugLoc dl = CFP->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000563
564 // If a FP immediate is precise when represented as a float and if the
565 // target can do an extending load from float to double, we put it into
566 // the constant pool as a float, even if it's is statically typed as a
Chris Lattnere718cc52008-03-05 06:46:58 +0000567 // double. This shrinks FP constants and canonicalizes them for targets where
568 // an FP extending load is the same cost as a normal load (such as on the x87
569 // fp stack or PPC FP unit).
Duncan Sands92c43912008-06-06 12:08:01 +0000570 MVT VT = CFP->getValueType(0);
Dan Gohmanc1f3a072008-09-12 18:08:03 +0000571 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572 if (!UseCP) {
Chris Lattner50ce8342009-03-08 01:47:41 +0000573 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen49cc7ce2008-10-09 18:53:47 +0000574 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Cheng354be062008-03-04 08:05:30 +0000575 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000576 }
577
Duncan Sands92c43912008-06-06 12:08:01 +0000578 MVT OrigVT = VT;
579 MVT SVT = VT;
Evan Cheng354be062008-03-04 08:05:30 +0000580 while (SVT != MVT::f32) {
Duncan Sands92c43912008-06-06 12:08:01 +0000581 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Cheng354be062008-03-04 08:05:30 +0000582 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
583 // Only do this if the target has a native EXTLOAD instruction from
584 // smaller type.
Evan Cheng08c171a2008-10-14 21:26:46 +0000585 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattnere718cc52008-03-05 06:46:58 +0000586 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands92c43912008-06-06 12:08:01 +0000587 const Type *SType = SVT.getTypeForMVT();
Evan Cheng354be062008-03-04 08:05:30 +0000588 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
589 VT = SVT;
590 Extend = true;
591 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000592 }
593
Dan Gohman8181bd12008-07-27 21:46:04 +0000594 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +0000595 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Cheng354be062008-03-04 08:05:30 +0000596 if (Extend)
Dale Johannesenea996922009-02-04 20:06:27 +0000597 return DAG.getExtLoad(ISD::EXTLOAD, dl,
Dale Johannesen3c4fb222009-02-04 02:34:38 +0000598 OrigVT, DAG.getEntryNode(),
Dan Gohmanfb020b62008-02-07 18:41:25 +0000599 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman04637d12008-09-16 22:05:41 +0000600 0, VT, false, Alignment);
Dale Johannesenea996922009-02-04 20:06:27 +0000601 return DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +0000602 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000603}
604
605
606/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
607/// operations.
608static
Dan Gohman8181bd12008-07-27 21:46:04 +0000609SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Dan Gohman0275b132009-01-15 16:43:02 +0000610 SelectionDAG &DAG,
611 const TargetLowering &TLI) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000612 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +0000613 MVT VT = Node->getValueType(0);
614 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000615 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
616 "fcopysign expansion only supported for f32 and f64");
Duncan Sands92c43912008-06-06 12:08:01 +0000617 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618
619 // First get the sign bit of second operand.
Dan Gohman8181bd12008-07-27 21:46:04 +0000620 SDValue Mask1 = (SrcVT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000621 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
622 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000623 Mask1 = DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, Mask1);
Scott Michel91099d62009-02-17 22:15:04 +0000624 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT,
Dale Johannesen352c47e2009-02-02 20:41:04 +0000625 Node->getOperand(1));
626 SignBit = DAG.getNode(ISD::AND, dl, SrcNVT, SignBit, Mask1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000627 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands92c43912008-06-06 12:08:01 +0000628 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000629 if (SizeDiff > 0) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000630 SignBit = DAG.getNode(ISD::SRL, dl, SrcNVT, SignBit,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000631 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000632 SignBit = DAG.getNode(ISD::TRUNCATE, dl, NVT, SignBit);
Chris Lattnere6fa1452008-07-10 23:46:13 +0000633 } else if (SizeDiff < 0) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000634 SignBit = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, SignBit);
635 SignBit = DAG.getNode(ISD::SHL, dl, NVT, SignBit,
Chris Lattnere6fa1452008-07-10 23:46:13 +0000636 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
637 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000638
639 // Clear the sign bit of first operand.
Dan Gohman8181bd12008-07-27 21:46:04 +0000640 SDValue Mask2 = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
642 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000643 Mask2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask2);
644 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
645 Result = DAG.getNode(ISD::AND, dl, NVT, Result, Mask2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000646
647 // Or the value with the sign bit.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000648 Result = DAG.getNode(ISD::OR, dl, NVT, Result, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000649 return Result;
650}
651
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000652/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
653static
Dan Gohman8181bd12008-07-27 21:46:04 +0000654SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
Dan Gohman0275b132009-01-15 16:43:02 +0000655 const TargetLowering &TLI) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000656 SDValue Chain = ST->getChain();
657 SDValue Ptr = ST->getBasePtr();
658 SDValue Val = ST->getValue();
Duncan Sands92c43912008-06-06 12:08:01 +0000659 MVT VT = Val.getValueType();
Dale Johannesen08275382007-09-08 19:29:23 +0000660 int Alignment = ST->getAlignment();
661 int SVOffset = ST->getSrcValueOffset();
Dale Johannesen352c47e2009-02-02 20:41:04 +0000662 DebugLoc dl = ST->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +0000663 if (ST->getMemoryVT().isFloatingPoint() ||
664 ST->getMemoryVT().isVector()) {
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000665 MVT intVT = MVT::getIntegerVT(VT.getSizeInBits());
666 if (TLI.isTypeLegal(intVT)) {
667 // Expand to a bitconvert of the value to the integer type of the
668 // same size, then a (misaligned) int store.
669 // FIXME: Does not handle truncating floating point stores!
Dale Johannesen352c47e2009-02-02 20:41:04 +0000670 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, intVT, Val);
671 return DAG.getStore(Chain, dl, Result, Ptr, ST->getSrcValue(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000672 SVOffset, ST->isVolatile(), Alignment);
673 } else {
674 // Do a (aligned) store to a stack slot, then copy from the stack slot
675 // to the final destination using (unaligned) integer loads and stores.
676 MVT StoredVT = ST->getMemoryVT();
677 MVT RegVT =
678 TLI.getRegisterType(MVT::getIntegerVT(StoredVT.getSizeInBits()));
679 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
680 unsigned RegBytes = RegVT.getSizeInBits() / 8;
681 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
Dale Johannesen08275382007-09-08 19:29:23 +0000682
Duncan Sands734f49b2008-12-13 07:18:38 +0000683 // Make sure the stack slot is also aligned for the register type.
684 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
685
686 // Perform the original store, only redirected to the stack slot.
Scott Michel91099d62009-02-17 22:15:04 +0000687 SDValue Store = DAG.getTruncStore(Chain, dl,
Dale Johannesen352c47e2009-02-02 20:41:04 +0000688 Val, StackPtr, NULL, 0,StoredVT);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000689 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
690 SmallVector<SDValue, 8> Stores;
691 unsigned Offset = 0;
692
693 // Do all but one copies using the full register width.
694 for (unsigned i = 1; i < NumRegs; i++) {
695 // Load one integer register's worth from the stack slot.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000696 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, NULL, 0);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000697 // Store it to the final location. Remember the store.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000698 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000699 ST->getSrcValue(), SVOffset + Offset,
700 ST->isVolatile(),
701 MinAlign(ST->getAlignment(), Offset)));
702 // Increment the pointers.
703 Offset += RegBytes;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000704 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000705 Increment);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000706 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000707 }
708
Duncan Sands734f49b2008-12-13 07:18:38 +0000709 // The last store may be partial. Do a truncating store. On big-endian
710 // machines this requires an extending load from the stack slot to ensure
711 // that the bits are in the right place.
712 MVT MemVT = MVT::getIntegerVT(8 * (StoredBytes - Offset));
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000713
Duncan Sands734f49b2008-12-13 07:18:38 +0000714 // Load from the stack slot.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000715 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
Duncan Sands734f49b2008-12-13 07:18:38 +0000716 NULL, 0, MemVT);
717
Dale Johannesen352c47e2009-02-02 20:41:04 +0000718 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000719 ST->getSrcValue(), SVOffset + Offset,
Duncan Sands734f49b2008-12-13 07:18:38 +0000720 MemVT, ST->isVolatile(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000721 MinAlign(ST->getAlignment(), Offset)));
722 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000723 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000724 Stores.size());
725 }
Dale Johannesen08275382007-09-08 19:29:23 +0000726 }
Duncan Sands92c43912008-06-06 12:08:01 +0000727 assert(ST->getMemoryVT().isInteger() &&
728 !ST->getMemoryVT().isVector() &&
Dale Johannesen08275382007-09-08 19:29:23 +0000729 "Unaligned store of unknown type.");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000730 // Get the half-size VT
Duncan Sands92c43912008-06-06 12:08:01 +0000731 MVT NewStoredVT =
732 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
733 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000734 int IncrementSize = NumBits / 8;
735
736 // Divide the stored value in two parts.
Dan Gohman8181bd12008-07-27 21:46:04 +0000737 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
738 SDValue Lo = Val;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000739 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000740
741 // Store the two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000742 SDValue Store1, Store2;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000743 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000744 ST->getSrcValue(), SVOffset, NewStoredVT,
745 ST->isVolatile(), Alignment);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000746 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000747 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsa3691432007-10-28 12:59:45 +0000748 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000749 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000750 ST->getSrcValue(), SVOffset + IncrementSize,
751 NewStoredVT, ST->isVolatile(), Alignment);
752
Dale Johannesen352c47e2009-02-02 20:41:04 +0000753 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000754}
755
756/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
757static
Dan Gohman8181bd12008-07-27 21:46:04 +0000758SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
Dan Gohmana0c429e2009-01-15 16:58:17 +0000759 const TargetLowering &TLI) {
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000760 int SVOffset = LD->getSrcValueOffset();
Dan Gohman8181bd12008-07-27 21:46:04 +0000761 SDValue Chain = LD->getChain();
762 SDValue Ptr = LD->getBasePtr();
Duncan Sands92c43912008-06-06 12:08:01 +0000763 MVT VT = LD->getValueType(0);
764 MVT LoadedVT = LD->getMemoryVT();
Dale Johannesen352c47e2009-02-02 20:41:04 +0000765 DebugLoc dl = LD->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +0000766 if (VT.isFloatingPoint() || VT.isVector()) {
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000767 MVT intVT = MVT::getIntegerVT(LoadedVT.getSizeInBits());
768 if (TLI.isTypeLegal(intVT)) {
769 // Expand to a (misaligned) integer load of the same size,
770 // then bitconvert to floating point or vector.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000771 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000772 SVOffset, LD->isVolatile(),
Dale Johannesen08275382007-09-08 19:29:23 +0000773 LD->getAlignment());
Dale Johannesen352c47e2009-02-02 20:41:04 +0000774 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, LoadedVT, newLoad);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000775 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen352c47e2009-02-02 20:41:04 +0000776 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen08275382007-09-08 19:29:23 +0000777
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000778 SDValue Ops[] = { Result, Chain };
Dale Johannesen352c47e2009-02-02 20:41:04 +0000779 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000780 } else {
781 // Copy the value to a (aligned) stack slot using (unaligned) integer
782 // loads and stores, then do a (aligned) load from the stack slot.
783 MVT RegVT = TLI.getRegisterType(intVT);
784 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
785 unsigned RegBytes = RegVT.getSizeInBits() / 8;
786 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
787
Duncan Sands734f49b2008-12-13 07:18:38 +0000788 // Make sure the stack slot is also aligned for the register type.
789 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
790
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000791 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
792 SmallVector<SDValue, 8> Stores;
793 SDValue StackPtr = StackBase;
794 unsigned Offset = 0;
795
796 // Do all but one copies using the full register width.
797 for (unsigned i = 1; i < NumRegs; i++) {
798 // Load one integer register's worth from the original location.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000799 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000800 SVOffset + Offset, LD->isVolatile(),
801 MinAlign(LD->getAlignment(), Offset));
802 // Follow the load with a store to the stack slot. Remember the store.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000803 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000804 NULL, 0));
805 // Increment the pointers.
806 Offset += RegBytes;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000807 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
808 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000809 Increment);
810 }
811
812 // The last copy may be partial. Do an extending load.
Duncan Sands734f49b2008-12-13 07:18:38 +0000813 MVT MemVT = MVT::getIntegerVT(8 * (LoadedBytes - Offset));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000814 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000815 LD->getSrcValue(), SVOffset + Offset,
Duncan Sands734f49b2008-12-13 07:18:38 +0000816 MemVT, LD->isVolatile(),
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000817 MinAlign(LD->getAlignment(), Offset));
818 // Follow the load with a store to the stack slot. Remember the store.
Duncan Sands734f49b2008-12-13 07:18:38 +0000819 // On big-endian machines this requires a truncating store to ensure
820 // that the bits end up in the right place.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000821 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sands734f49b2008-12-13 07:18:38 +0000822 NULL, 0, MemVT));
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000823
824 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000825 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000826 Stores.size());
827
828 // Finally, perform the original load only redirected to the stack slot.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000829 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000830 NULL, 0, LoadedVT);
831
832 // Callers expect a MERGE_VALUES node.
833 SDValue Ops[] = { Load, TF };
Dale Johannesen352c47e2009-02-02 20:41:04 +0000834 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb7ae4592008-12-12 21:47:02 +0000835 }
Dale Johannesen08275382007-09-08 19:29:23 +0000836 }
Duncan Sands92c43912008-06-06 12:08:01 +0000837 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000838 "Unaligned load of unsupported type.");
839
Dale Johannesendc0ee192008-02-27 22:36:00 +0000840 // Compute the new VT that is half the size of the old one. This is an
841 // integer MVT.
Duncan Sands92c43912008-06-06 12:08:01 +0000842 unsigned NumBits = LoadedVT.getSizeInBits();
843 MVT NewLoadedVT;
844 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000845 NumBits >>= 1;
Scott Michel91099d62009-02-17 22:15:04 +0000846
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000847 unsigned Alignment = LD->getAlignment();
848 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000849 ISD::LoadExtType HiExtType = LD->getExtensionType();
850
851 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
852 if (HiExtType == ISD::NON_EXTLOAD)
853 HiExtType = ISD::ZEXTLOAD;
854
855 // Load the value in two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000856 SDValue Lo, Hi;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000857 if (TLI.isLittleEndian()) {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000858 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000859 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesen352c47e2009-02-02 20:41:04 +0000860 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000861 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000862 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000863 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsa3691432007-10-28 12:59:45 +0000864 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000865 } else {
Dale Johannesen352c47e2009-02-02 20:41:04 +0000866 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
867 SVOffset, NewLoadedVT,LD->isVolatile(), Alignment);
868 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000869 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesen352c47e2009-02-02 20:41:04 +0000870 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000871 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsa3691432007-10-28 12:59:45 +0000872 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000873 }
874
875 // aggregate the two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000876 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
Dale Johannesen352c47e2009-02-02 20:41:04 +0000877 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
878 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000879
Dale Johannesen352c47e2009-02-02 20:41:04 +0000880 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000881 Hi.getValue(1));
882
Dan Gohman8181bd12008-07-27 21:46:04 +0000883 SDValue Ops[] = { Result, TF };
Dale Johannesen352c47e2009-02-02 20:41:04 +0000884 return DAG.getMergeValues(Ops, 2, dl);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000885}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000886
Dan Gohman6d05cac2007-10-11 23:57:53 +0000887/// UnrollVectorOp - We know that the given vector has a legal type, however
888/// the operation it performs is not legal and is an operation that we have
889/// no way of lowering. "Unroll" the vector, splitting out the scalars and
890/// operating on each element individually.
Dan Gohman8181bd12008-07-27 21:46:04 +0000891SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +0000892 MVT VT = Op.getValueType();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000893 assert(isTypeLegal(VT) &&
894 "Caller should expand or promote operands that are not legal!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000895 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman6d05cac2007-10-11 23:57:53 +0000896 "Can't unroll a vector with multiple results!");
Duncan Sands92c43912008-06-06 12:08:01 +0000897 unsigned NE = VT.getVectorNumElements();
898 MVT EltVT = VT.getVectorElementType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +0000899 DebugLoc dl = Op.getDebugLoc();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000900
Dan Gohman8181bd12008-07-27 21:46:04 +0000901 SmallVector<SDValue, 8> Scalars;
902 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman6d05cac2007-10-11 23:57:53 +0000903 for (unsigned i = 0; i != NE; ++i) {
904 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000905 SDValue Operand = Op.getOperand(j);
Duncan Sands92c43912008-06-06 12:08:01 +0000906 MVT OperandVT = Operand.getValueType();
907 if (OperandVT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +0000908 // A vector operand; extract a single element.
Duncan Sands92c43912008-06-06 12:08:01 +0000909 MVT OperandEltVT = OperandVT.getVectorElementType();
Dale Johannesen352c47e2009-02-02 20:41:04 +0000910 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dan Gohman6d05cac2007-10-11 23:57:53 +0000911 OperandEltVT,
912 Operand,
913 DAG.getConstant(i, MVT::i32));
914 } else {
915 // A scalar operand; just use it as is.
916 Operands[j] = Operand;
917 }
918 }
Mon P Wang9901e732008-12-09 05:46:39 +0000919
920 switch (Op.getOpcode()) {
921 default:
Dale Johannesen352c47e2009-02-02 20:41:04 +0000922 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT,
Mon P Wang9901e732008-12-09 05:46:39 +0000923 &Operands[0], Operands.size()));
924 break;
925 case ISD::SHL:
926 case ISD::SRA:
927 case ISD::SRL:
Duncan Sands7d9e3612009-01-31 15:50:11 +0000928 case ISD::ROTL:
929 case ISD::ROTR:
Dale Johannesen352c47e2009-02-02 20:41:04 +0000930 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, Operands[0],
Duncan Sands7d9e3612009-01-31 15:50:11 +0000931 DAG.getShiftAmountOperand(Operands[1])));
Mon P Wang9901e732008-12-09 05:46:39 +0000932 break;
933 }
Dan Gohman6d05cac2007-10-11 23:57:53 +0000934 }
935
Evan Cheng907a2d22009-02-25 22:49:59 +0000936 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Scalars[0], Scalars.size());
Dan Gohman6d05cac2007-10-11 23:57:53 +0000937}
938
Duncan Sands37a3f472008-01-10 10:28:30 +0000939/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands92c43912008-06-06 12:08:01 +0000940static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands37a3f472008-01-10 10:28:30 +0000941 RTLIB::Libcall Call_F32,
942 RTLIB::Libcall Call_F64,
943 RTLIB::Libcall Call_F80,
944 RTLIB::Libcall Call_PPCF128) {
945 return
946 VT == MVT::f32 ? Call_F32 :
947 VT == MVT::f64 ? Call_F64 :
948 VT == MVT::f80 ? Call_F80 :
949 VT == MVT::ppcf128 ? Call_PPCF128 :
950 RTLIB::UNKNOWN_LIBCALL;
951}
952
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000953/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
954/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
955/// is necessary to spill the vector being inserted into to memory, perform
956/// the insert there, and then read the result back.
Dan Gohman8181bd12008-07-27 21:46:04 +0000957SDValue SelectionDAGLegalize::
Dale Johannesen352c47e2009-02-02 20:41:04 +0000958PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
959 DebugLoc dl) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000960 SDValue Tmp1 = Vec;
961 SDValue Tmp2 = Val;
962 SDValue Tmp3 = Idx;
Scott Michel91099d62009-02-17 22:15:04 +0000963
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000964 // If the target doesn't support this, we have to spill the input vector
965 // to a temporary stack slot, update the element, then reload it. This is
966 // badness. We could also load the value into a vector register (either
967 // with a "move to register" or "extload into register" instruction, then
968 // permute it into place, if the idx is a constant and if the idx is
969 // supported by the target.
Duncan Sands92c43912008-06-06 12:08:01 +0000970 MVT VT = Tmp1.getValueType();
971 MVT EltVT = VT.getVectorElementType();
972 MVT IdxVT = Tmp3.getValueType();
973 MVT PtrVT = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +0000974 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000975
Gabor Greif1c80d112008-08-28 21:40:38 +0000976 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000977
978 // Store the vector.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000979 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Mon P Wang1448aad2008-10-30 08:01:45 +0000980 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000981
982 // Truncate or zero extend offset to target pointer type.
Duncan Sandsec142ee2008-06-08 20:54:56 +0000983 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000984 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000985 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +0000986 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesen352c47e2009-02-02 20:41:04 +0000987 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
988 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000989 // Store the scalar value.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000990 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2,
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000991 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000992 // Load the updated vector.
Dale Johannesen352c47e2009-02-02 20:41:04 +0000993 return DAG.getLoad(VT, dl, Ch, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000994 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000995}
996
Mon P Wang9901e732008-12-09 05:46:39 +0000997
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000998/// LegalizeOp - We know that the specified value has a legal type, and
999/// that its operands are legal. Now ensure that the operation itself
1000/// is legal, recursively ensuring that the operands' operations remain
1001/// legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00001002SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattnerdad577b2007-08-25 01:00:22 +00001003 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1004 return Op;
Scott Michel91099d62009-02-17 22:15:04 +00001005
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001006 assert(isTypeLegal(Op.getValueType()) &&
1007 "Caller should expand or promote operands that are not legal!");
Gabor Greif1c80d112008-08-28 21:40:38 +00001008 SDNode *Node = Op.getNode();
Dale Johannesenca6237b2009-01-30 23:10:59 +00001009 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001010
1011 // If this operation defines any values that cannot be represented in a
1012 // register on this target, make sure to expand or promote them.
1013 if (Node->getNumValues() > 1) {
1014 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1015 if (getTypeAction(Node->getValueType(i)) != Legal) {
1016 HandleOp(Op.getValue(i));
1017 assert(LegalizedNodes.count(Op) &&
1018 "Handling didn't add legal operands!");
1019 return LegalizedNodes[Op];
1020 }
1021 }
1022
1023 // Note that LegalizeOp may be reentered even from single-use nodes, which
1024 // means that we always must cache transformed nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00001025 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001026 if (I != LegalizedNodes.end()) return I->second;
1027
Dan Gohman8181bd12008-07-27 21:46:04 +00001028 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
1029 SDValue Result = Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001030 bool isCustom = false;
Scott Michel91099d62009-02-17 22:15:04 +00001031
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001032 switch (Node->getOpcode()) {
1033 case ISD::FrameIndex:
1034 case ISD::EntryToken:
1035 case ISD::Register:
1036 case ISD::BasicBlock:
1037 case ISD::TargetFrameIndex:
1038 case ISD::TargetJumpTable:
1039 case ISD::TargetConstant:
1040 case ISD::TargetConstantFP:
1041 case ISD::TargetConstantPool:
1042 case ISD::TargetGlobalAddress:
1043 case ISD::TargetGlobalTLSAddress:
Bill Wendlingfef06052008-09-16 21:48:12 +00001044 case ISD::TargetExternalSymbol:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001045 case ISD::VALUETYPE:
1046 case ISD::SRCVALUE:
Dan Gohman12a9c082008-02-06 22:27:42 +00001047 case ISD::MEMOPERAND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001048 case ISD::CONDCODE:
Duncan Sandsc93fae32008-03-21 09:14:45 +00001049 case ISD::ARG_FLAGS:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001050 // Primitives must all be legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +00001051 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052 "This must be legal!");
1053 break;
1054 default:
1055 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
1056 // If this is a target node, legalize it by legalizing the operands then
1057 // passing it through.
Dan Gohman8181bd12008-07-27 21:46:04 +00001058 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001059 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1060 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1061
1062 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
1063
1064 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1065 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00001066 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001067 }
1068 // Otherwise this is an unhandled builtin node. splat.
1069#ifndef NDEBUG
1070 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
1071#endif
1072 assert(0 && "Do not know how to legalize this operator!");
1073 abort();
1074 case ISD::GLOBAL_OFFSET_TABLE:
1075 case ISD::GlobalAddress:
1076 case ISD::GlobalTLSAddress:
Bill Wendlingfef06052008-09-16 21:48:12 +00001077 case ISD::ExternalSymbol:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001078 case ISD::ConstantPool:
1079 case ISD::JumpTable: // Nothing to do.
1080 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1081 default: assert(0 && "This action is not supported yet!");
1082 case TargetLowering::Custom:
1083 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001084 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085 // FALLTHROUGH if the target doesn't want to lower this op after all.
1086 case TargetLowering::Legal:
1087 break;
1088 }
1089 break;
1090 case ISD::FRAMEADDR:
1091 case ISD::RETURNADDR:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001092 // The only option for these nodes is to custom lower them. If the target
1093 // does not custom lower them, then return zero.
1094 Tmp1 = TLI.LowerOperation(Op, DAG);
Scott Michel91099d62009-02-17 22:15:04 +00001095 if (Tmp1.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001096 Result = Tmp1;
1097 else
1098 Result = DAG.getConstant(0, TLI.getPointerTy());
1099 break;
Anton Korobeynikove3d7f932007-08-29 23:18:48 +00001100 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands92c43912008-06-06 12:08:01 +00001101 MVT VT = Node->getValueType(0);
Anton Korobeynikov09386bd2007-08-29 19:28:29 +00001102 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1103 default: assert(0 && "This action is not supported yet!");
1104 case TargetLowering::Custom:
1105 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001106 if (Result.getNode()) break;
Anton Korobeynikov09386bd2007-08-29 19:28:29 +00001107 // Fall Thru
1108 case TargetLowering::Legal:
1109 Result = DAG.getConstant(0, VT);
1110 break;
1111 }
Anton Korobeynikove3d7f932007-08-29 23:18:48 +00001112 }
Anton Korobeynikov09386bd2007-08-29 19:28:29 +00001113 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001114 case ISD::EXCEPTIONADDR: {
1115 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00001116 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001117 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1118 default: assert(0 && "This action is not supported yet!");
1119 case TargetLowering::Expand: {
1120 unsigned Reg = TLI.getExceptionAddressRegister();
Dale Johannesen564036c2009-02-04 00:13:36 +00001121 Result = DAG.getCopyFromReg(Tmp1, dl, Reg, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001122 }
1123 break;
1124 case TargetLowering::Custom:
1125 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001126 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001127 // Fall Thru
1128 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001129 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001130 Result = DAG.getMergeValues(Ops, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001131 break;
1132 }
1133 }
1134 }
Gabor Greif1c80d112008-08-28 21:40:38 +00001135 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001136
Gabor Greif1c80d112008-08-28 21:40:38 +00001137 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001138 "Cannot return more than two values!");
1139
1140 // Since we produced two values, make sure to remember that we
1141 // legalized both of them.
1142 Tmp1 = LegalizeOp(Result);
1143 Tmp2 = LegalizeOp(Result.getValue(1));
1144 AddLegalizedOperand(Op.getValue(0), Tmp1);
1145 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001146 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001147 case ISD::EHSELECTION: {
1148 Tmp1 = LegalizeOp(Node->getOperand(0));
1149 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00001150 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001151 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1152 default: assert(0 && "This action is not supported yet!");
1153 case TargetLowering::Expand: {
1154 unsigned Reg = TLI.getExceptionSelectorRegister();
Dale Johannesen564036c2009-02-04 00:13:36 +00001155 Result = DAG.getCopyFromReg(Tmp2, dl, Reg, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156 }
1157 break;
1158 case TargetLowering::Custom:
1159 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001160 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001161 // Fall Thru
1162 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001163 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001164 Result = DAG.getMergeValues(Ops, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001165 break;
1166 }
1167 }
1168 }
Gabor Greif1c80d112008-08-28 21:40:38 +00001169 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001170
Gabor Greif1c80d112008-08-28 21:40:38 +00001171 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +00001172 "Cannot return more than two values!");
1173
1174 // Since we produced two values, make sure to remember that we
1175 // legalized both of them.
1176 Tmp1 = LegalizeOp(Result);
1177 Tmp2 = LegalizeOp(Result.getValue(1));
1178 AddLegalizedOperand(Op.getValue(0), Tmp1);
1179 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001180 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001181 case ISD::EH_RETURN: {
Duncan Sands92c43912008-06-06 12:08:01 +00001182 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001183 // The only "good" option for this node is to custom lower it.
1184 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1185 default: assert(0 && "This action is not supported at all!");
1186 case TargetLowering::Custom:
1187 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001188 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001189 // Fall Thru
1190 case TargetLowering::Legal:
1191 // Target does not know, how to lower this, lower to noop
1192 Result = LegalizeOp(Node->getOperand(0));
1193 break;
1194 }
1195 }
1196 break;
1197 case ISD::AssertSext:
1198 case ISD::AssertZext:
1199 Tmp1 = LegalizeOp(Node->getOperand(0));
1200 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1201 break;
1202 case ISD::MERGE_VALUES:
1203 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif46bf5472008-08-26 22:36:50 +00001204 Result = Node->getOperand(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001205 break;
1206 case ISD::CopyFromReg:
1207 Tmp1 = LegalizeOp(Node->getOperand(0));
1208 Result = Op.getValue(0);
1209 if (Node->getNumValues() == 2) {
1210 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1211 } else {
1212 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
1213 if (Node->getNumOperands() == 3) {
1214 Tmp2 = LegalizeOp(Node->getOperand(2));
1215 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1216 } else {
1217 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1218 }
1219 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1220 }
1221 // Since CopyFromReg produces two values, make sure to remember that we
1222 // legalized both of them.
1223 AddLegalizedOperand(Op.getValue(0), Result);
1224 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001225 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001226 case ISD::UNDEF: {
Duncan Sands92c43912008-06-06 12:08:01 +00001227 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001228 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
1229 default: assert(0 && "This action is not supported yet!");
1230 case TargetLowering::Expand:
Duncan Sands92c43912008-06-06 12:08:01 +00001231 if (VT.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001232 Result = DAG.getConstant(0, VT);
Duncan Sands92c43912008-06-06 12:08:01 +00001233 else if (VT.isFloatingPoint())
1234 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesen20b76352007-09-26 17:26:49 +00001235 VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001236 else
1237 assert(0 && "Unknown value type!");
1238 break;
1239 case TargetLowering::Legal:
1240 break;
1241 }
1242 break;
1243 }
Scott Michel91099d62009-02-17 22:15:04 +00001244
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001245 case ISD::INTRINSIC_W_CHAIN:
1246 case ISD::INTRINSIC_WO_CHAIN:
1247 case ISD::INTRINSIC_VOID: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001248 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001249 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1250 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1251 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michel91099d62009-02-17 22:15:04 +00001252
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001253 // Allow the target to custom lower its intrinsics if it wants to.
Scott Michel91099d62009-02-17 22:15:04 +00001254 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001255 TargetLowering::Custom) {
1256 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001257 if (Tmp3.getNode()) Result = Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001258 }
1259
Gabor Greif1c80d112008-08-28 21:40:38 +00001260 if (Result.getNode()->getNumValues() == 1) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001261
1262 // Must have return value and chain result.
Gabor Greif1c80d112008-08-28 21:40:38 +00001263 assert(Result.getNode()->getNumValues() == 2 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001264 "Cannot return more than two values!");
1265
Scott Michel91099d62009-02-17 22:15:04 +00001266 // Since loads produce two values, make sure to remember that we
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001267 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001268 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1269 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001270 return Result.getValue(Op.getResNo());
Scott Michel91099d62009-02-17 22:15:04 +00001271 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001272
Dan Gohman472d12c2008-06-30 20:59:49 +00001273 case ISD::DBG_STOPPOINT:
1274 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001275 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
Scott Michel91099d62009-02-17 22:15:04 +00001276
Dan Gohman472d12c2008-06-30 20:59:49 +00001277 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001278 case TargetLowering::Promote:
1279 default: assert(0 && "This action is not supported yet!");
Bill Wendlingb0940162009-02-13 02:16:35 +00001280 case TargetLowering::Expand: {
1281 DwarfWriter *DW = DAG.getDwarfWriter();
1282 bool useDEBUG_LOC = TLI.isOperationLegalOrCustom(ISD::DEBUG_LOC,
1283 MVT::Other);
1284 bool useLABEL = TLI.isOperationLegalOrCustom(ISD::DBG_LABEL, MVT::Other);
Scott Michel91099d62009-02-17 22:15:04 +00001285
Bill Wendlingb0940162009-02-13 02:16:35 +00001286 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
1287 GlobalVariable *CU_GV = cast<GlobalVariable>(DSP->getCompileUnit());
1288 if (DW && (useDEBUG_LOC || useLABEL) && !CU_GV->isDeclaration()) {
1289 DICompileUnit CU(cast<GlobalVariable>(DSP->getCompileUnit()));
Bill Wendlingf3f16e82009-03-13 04:39:26 +00001290 std::string Dir, FN;
1291 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
1292 CU.getFilename(FN));
Scott Michel91099d62009-02-17 22:15:04 +00001293
Bill Wendlingb0940162009-02-13 02:16:35 +00001294 unsigned Line = DSP->getLine();
1295 unsigned Col = DSP->getColumn();
Bill Wendlinge3f43e52009-02-17 01:04:54 +00001296
Bill Wendling123374a2009-02-24 02:35:30 +00001297 if (Fast) {
Bill Wendlinge3f43e52009-02-17 01:04:54 +00001298 // A bit self-referential to have DebugLoc on Debug_Loc nodes, but it
1299 // won't hurt anything.
1300 if (useDEBUG_LOC) {
1301 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Bill Wendlingb0940162009-02-13 02:16:35 +00001302 DAG.getConstant(Col, MVT::i32),
1303 DAG.getConstant(SrcFile, MVT::i32) };
Bill Wendlinge3f43e52009-02-17 01:04:54 +00001304 Result = DAG.getNode(ISD::DEBUG_LOC, dl, MVT::Other, Ops, 4);
1305 } else {
1306 unsigned ID = DW->RecordSourceLine(Line, Col, SrcFile);
1307 Result = DAG.getLabel(ISD::DBG_LABEL, dl, Tmp1, ID);
1308 }
Bill Wendlingb0940162009-02-13 02:16:35 +00001309 } else {
Bill Wendlinge3f43e52009-02-17 01:04:54 +00001310 Result = Tmp1; // chain
Bill Wendlingb0940162009-02-13 02:16:35 +00001311 }
1312 } else {
1313 Result = Tmp1; // chain
1314 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001315 break;
Bill Wendlingb0940162009-02-13 02:16:35 +00001316 }
Evan Chengd6f57682008-07-08 20:06:39 +00001317 case TargetLowering::Legal: {
1318 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1319 if (Action == Legal && Tmp1 == Node->getOperand(0))
1320 break;
1321
Dan Gohman8181bd12008-07-27 21:46:04 +00001322 SmallVector<SDValue, 8> Ops;
Evan Chengd6f57682008-07-08 20:06:39 +00001323 Ops.push_back(Tmp1);
1324 if (Action == Legal) {
1325 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1326 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1327 } else {
1328 // Otherwise promote them.
1329 Ops.push_back(PromoteOp(Node->getOperand(1)));
1330 Ops.push_back(PromoteOp(Node->getOperand(2)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001331 }
Evan Chengd6f57682008-07-08 20:06:39 +00001332 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1333 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1334 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001335 break;
1336 }
Evan Chengd6f57682008-07-08 20:06:39 +00001337 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001338 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001339
1340 case ISD::DECLARE:
1341 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1342 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1343 default: assert(0 && "This action is not supported yet!");
1344 case TargetLowering::Legal:
1345 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1346 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1347 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1348 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1349 break;
Chris Lattner203cd052008-02-28 05:53:40 +00001350 case TargetLowering::Expand:
1351 Result = LegalizeOp(Node->getOperand(0));
1352 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001353 }
Scott Michel91099d62009-02-17 22:15:04 +00001354 break;
1355
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001356 case ISD::DEBUG_LOC:
1357 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
1358 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
1359 default: assert(0 && "This action is not supported yet!");
Evan Chengd6f57682008-07-08 20:06:39 +00001360 case TargetLowering::Legal: {
1361 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001362 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Chengd6f57682008-07-08 20:06:39 +00001363 if (Action == Legal && Tmp1 == Node->getOperand(0))
1364 break;
1365 if (Action == Legal) {
1366 Tmp2 = Node->getOperand(1);
1367 Tmp3 = Node->getOperand(2);
1368 Tmp4 = Node->getOperand(3);
1369 } else {
1370 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1371 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1372 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1373 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001374 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1375 break;
1376 }
Evan Chengd6f57682008-07-08 20:06:39 +00001377 }
Scott Michel91099d62009-02-17 22:15:04 +00001378 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001379
Dan Gohmanfa607c92008-07-01 00:05:16 +00001380 case ISD::DBG_LABEL:
1381 case ISD::EH_LABEL:
1382 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1383 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001384 default: assert(0 && "This action is not supported yet!");
1385 case TargetLowering::Legal:
1386 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohmanfa607c92008-07-01 00:05:16 +00001387 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001388 break;
1389 case TargetLowering::Expand:
1390 Result = LegalizeOp(Node->getOperand(0));
1391 break;
1392 }
1393 break;
1394
Evan Chengd1d68072008-03-08 00:58:38 +00001395 case ISD::PREFETCH:
1396 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1397 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1398 default: assert(0 && "This action is not supported yet!");
1399 case TargetLowering::Legal:
1400 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1401 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1402 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1403 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1404 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1405 break;
1406 case TargetLowering::Expand:
1407 // It's a noop.
1408 Result = LegalizeOp(Node->getOperand(0));
1409 break;
1410 }
1411 break;
1412
Andrew Lenharth785610d2008-02-16 01:24:58 +00001413 case ISD::MEMBARRIER: {
1414 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001415 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1416 default: assert(0 && "This action is not supported yet!");
1417 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001418 SDValue Ops[6];
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001419 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sands3ee041a2008-02-27 08:53:44 +00001420 for (int x = 1; x < 6; ++x) {
1421 Ops[x] = Node->getOperand(x);
1422 if (!isTypeLegal(Ops[x].getValueType()))
1423 Ops[x] = PromoteOp(Ops[x]);
1424 }
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001425 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1426 break;
1427 }
1428 case TargetLowering::Expand:
1429 //There is no libgcc call for this op
1430 Result = Node->getOperand(0); // Noop
1431 break;
1432 }
Andrew Lenharth785610d2008-02-16 01:24:58 +00001433 break;
1434 }
1435
Dan Gohmanbebba8d2008-12-23 21:37:04 +00001436 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001437 unsigned int num_operands = 4;
1438 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001439 SDValue Ops[4];
Mon P Wang078a62d2008-05-05 19:05:59 +00001440 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001441 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang078a62d2008-05-05 19:05:59 +00001442 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Scott Michel91099d62009-02-17 22:15:04 +00001443
Mon P Wang078a62d2008-05-05 19:05:59 +00001444 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1445 default: assert(0 && "This action is not supported yet!");
1446 case TargetLowering::Custom:
1447 Result = TLI.LowerOperation(Result, DAG);
1448 break;
1449 case TargetLowering::Legal:
1450 break;
1451 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001452 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1453 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001454 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001455 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00001456 case ISD::ATOMIC_LOAD_ADD:
1457 case ISD::ATOMIC_LOAD_SUB:
1458 case ISD::ATOMIC_LOAD_AND:
1459 case ISD::ATOMIC_LOAD_OR:
1460 case ISD::ATOMIC_LOAD_XOR:
1461 case ISD::ATOMIC_LOAD_NAND:
1462 case ISD::ATOMIC_LOAD_MIN:
1463 case ISD::ATOMIC_LOAD_MAX:
1464 case ISD::ATOMIC_LOAD_UMIN:
1465 case ISD::ATOMIC_LOAD_UMAX:
1466 case ISD::ATOMIC_SWAP: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001467 unsigned int num_operands = 3;
1468 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001469 SDValue Ops[3];
Mon P Wang078a62d2008-05-05 19:05:59 +00001470 for (unsigned int x = 0; x < num_operands; ++x)
1471 Ops[x] = LegalizeOp(Node->getOperand(x));
1472 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sandsac496a12008-07-04 11:47:58 +00001473
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001474 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001475 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001476 case TargetLowering::Custom:
1477 Result = TLI.LowerOperation(Result, DAG);
1478 break;
1479 case TargetLowering::Legal:
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001480 break;
1481 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001482 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1483 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001484 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001485 }
Scott Michelf2e2b702007-08-08 23:23:31 +00001486 case ISD::Constant: {
1487 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1488 unsigned opAction =
1489 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1490
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001491 // We know we don't need to expand constants here, constants only have one
1492 // value and we check that it is fine above.
1493
Scott Michelf2e2b702007-08-08 23:23:31 +00001494 if (opAction == TargetLowering::Custom) {
1495 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001496 if (Tmp1.getNode())
Scott Michelf2e2b702007-08-08 23:23:31 +00001497 Result = Tmp1;
1498 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001499 break;
Scott Michelf2e2b702007-08-08 23:23:31 +00001500 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001501 case ISD::ConstantFP: {
1502 // Spill FP immediates to the constant pool if the target cannot directly
1503 // codegen them. Targets often have some immediate values that can be
1504 // efficiently generated into an FP register without a load. We explicitly
1505 // leave these constants as ConstantFP nodes for the target to deal with.
1506 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1507
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001508 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1509 default: assert(0 && "This action is not supported yet!");
Nate Begemane2ba64f2008-02-14 08:57:00 +00001510 case TargetLowering::Legal:
1511 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001512 case TargetLowering::Custom:
1513 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001514 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001515 Result = Tmp3;
1516 break;
1517 }
1518 // FALLTHROUGH
Nate Begemane2ba64f2008-02-14 08:57:00 +00001519 case TargetLowering::Expand: {
1520 // Check to see if this FP immediate is already legal.
1521 bool isLegal = false;
1522 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1523 E = TLI.legal_fpimm_end(); I != E; ++I) {
1524 if (CFP->isExactlyValue(*I)) {
1525 isLegal = true;
1526 break;
1527 }
1528 }
1529 // If this is a legal constant, turn it into a TargetConstantFP node.
1530 if (isLegal)
1531 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001532 Result = ExpandConstantFP(CFP, true, DAG, TLI);
1533 }
Nate Begemane2ba64f2008-02-14 08:57:00 +00001534 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001535 break;
1536 }
1537 case ISD::TokenFactor:
1538 if (Node->getNumOperands() == 2) {
1539 Tmp1 = LegalizeOp(Node->getOperand(0));
1540 Tmp2 = LegalizeOp(Node->getOperand(1));
1541 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1542 } else if (Node->getNumOperands() == 3) {
1543 Tmp1 = LegalizeOp(Node->getOperand(0));
1544 Tmp2 = LegalizeOp(Node->getOperand(1));
1545 Tmp3 = LegalizeOp(Node->getOperand(2));
1546 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1547 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00001548 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001549 // Legalize the operands.
1550 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1551 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1552 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1553 }
1554 break;
Scott Michel91099d62009-02-17 22:15:04 +00001555
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001556 case ISD::FORMAL_ARGUMENTS:
1557 case ISD::CALL:
1558 // The only option for this is to custom lower it.
1559 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001560 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesenac246272008-03-05 19:14:03 +00001561 // A call within a calling sequence must be legalized to something
1562 // other than the normal CALLSEQ_END. Violating this gets Legalize
1563 // into an infinite loop.
1564 assert ((!IsLegalizingCall ||
1565 Node->getOpcode() != ISD::CALL ||
Gabor Greif1c80d112008-08-28 21:40:38 +00001566 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesenac246272008-03-05 19:14:03 +00001567 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling22f8deb2007-11-13 00:44:25 +00001568
1569 // The number of incoming and outgoing values should match; unless the final
1570 // outgoing value is a flag.
Gabor Greif1c80d112008-08-28 21:40:38 +00001571 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1572 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1573 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling22f8deb2007-11-13 00:44:25 +00001574 MVT::Flag)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001575 "Lowering call/formal_arguments produced unexpected # results!");
Scott Michel91099d62009-02-17 22:15:04 +00001576
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001577 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
1578 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greif1c80d112008-08-28 21:40:38 +00001579 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1580 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling22f8deb2007-11-13 00:44:25 +00001581 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001582 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00001583 if (Op.getResNo() == i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001584 Tmp2 = Tmp1;
Dan Gohman8181bd12008-07-27 21:46:04 +00001585 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001586 }
1587 return Tmp2;
Christopher Lambb768c2e2007-07-26 07:34:40 +00001588 case ISD::EXTRACT_SUBREG: {
1589 Tmp1 = LegalizeOp(Node->getOperand(0));
1590 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1591 assert(idx && "Operand must be a constant");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001592 Tmp2 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lambb768c2e2007-07-26 07:34:40 +00001593 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1594 }
1595 break;
1596 case ISD::INSERT_SUBREG: {
1597 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel91099d62009-02-17 22:15:04 +00001598 Tmp2 = LegalizeOp(Node->getOperand(1));
Christopher Lambb768c2e2007-07-26 07:34:40 +00001599 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1600 assert(idx && "Operand must be a constant");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001601 Tmp3 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lambb768c2e2007-07-26 07:34:40 +00001602 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1603 }
Scott Michel91099d62009-02-17 22:15:04 +00001604 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001605 case ISD::BUILD_VECTOR:
1606 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
1607 default: assert(0 && "This action is not supported yet!");
1608 case TargetLowering::Custom:
1609 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001610 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001611 Result = Tmp3;
1612 break;
1613 }
1614 // FALLTHROUGH
1615 case TargetLowering::Expand:
Gabor Greif1c80d112008-08-28 21:40:38 +00001616 Result = ExpandBUILD_VECTOR(Result.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001617 break;
1618 }
1619 break;
1620 case ISD::INSERT_VECTOR_ELT:
1621 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001622 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001623
1624 // The type of the value to insert may not be legal, even though the vector
1625 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1626 // here.
1627 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1628 default: assert(0 && "Cannot expand insert element operand");
1629 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1630 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang1448aad2008-10-30 08:01:45 +00001631 case Expand:
1632 // FIXME: An alternative would be to check to see if the target is not
Scott Michel91099d62009-02-17 22:15:04 +00001633 // going to custom lower this operation, we could bitcast to half elt
Mon P Wang1448aad2008-10-30 08:01:45 +00001634 // width and perform two inserts at that width, if that is legal.
1635 Tmp2 = Node->getOperand(1);
1636 break;
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001637 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001638 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michel91099d62009-02-17 22:15:04 +00001639
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001640 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1641 Node->getValueType(0))) {
1642 default: assert(0 && "This action is not supported yet!");
1643 case TargetLowering::Legal:
1644 break;
1645 case TargetLowering::Custom:
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001646 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001647 if (Tmp4.getNode()) {
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001648 Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001649 break;
1650 }
1651 // FALLTHROUGH
Mon P Wang1448aad2008-10-30 08:01:45 +00001652 case TargetLowering::Promote:
1653 // Fall thru for vector case
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001654 case TargetLowering::Expand: {
1655 // If the insert index is a constant, codegen this as a scalar_to_vector,
1656 // then a shuffle that inserts it into the right position in the vector.
1657 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001658 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1659 // match the element type of the vector being created.
Scott Michel91099d62009-02-17 22:15:04 +00001660 if (Tmp2.getValueType() ==
Duncan Sands92c43912008-06-06 12:08:01 +00001661 Op.getValueType().getVectorElementType()) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001662 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001663 Tmp1.getValueType(), Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00001664
Duncan Sands92c43912008-06-06 12:08:01 +00001665 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1666 MVT ShufMaskVT =
1667 MVT::getIntVectorWithNumElements(NumElts);
1668 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Scott Michel91099d62009-02-17 22:15:04 +00001669
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001670 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1671 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1672 // elt 0 of the RHS.
Dan Gohman8181bd12008-07-27 21:46:04 +00001673 SmallVector<SDValue, 8> ShufOps;
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001674 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001675 if (i != InsertPos->getZExtValue())
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001676 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1677 else
1678 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1679 }
Evan Cheng907a2d22009-02-25 22:49:59 +00001680 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, ShufMaskVT,
1681 &ShufOps[0], ShufOps.size());
Scott Michel91099d62009-02-17 22:15:04 +00001682
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001683 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Tmp1.getValueType(),
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001684 Tmp1, ScVec, ShufMask);
1685 Result = LegalizeOp(Result);
1686 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001687 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001688 }
Dale Johannesen352c47e2009-02-02 20:41:04 +00001689 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001690 break;
1691 }
1692 }
1693 break;
1694 case ISD::SCALAR_TO_VECTOR:
1695 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1696 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1697 break;
1698 }
Scott Michel91099d62009-02-17 22:15:04 +00001699
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001700 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1701 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1702 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1703 Node->getValueType(0))) {
1704 default: assert(0 && "This action is not supported yet!");
1705 case TargetLowering::Legal:
1706 break;
1707 case TargetLowering::Custom:
1708 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001709 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001710 Result = Tmp3;
1711 break;
1712 }
1713 // FALLTHROUGH
1714 case TargetLowering::Expand:
1715 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1716 break;
1717 }
1718 break;
1719 case ISD::VECTOR_SHUFFLE:
1720 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1721 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1722 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1723
1724 // Allow targets to custom lower the SHUFFLEs they support.
1725 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1726 default: assert(0 && "Unknown operation action!");
1727 case TargetLowering::Legal:
1728 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1729 "vector shuffle should not be created if not legal!");
1730 break;
1731 case TargetLowering::Custom:
1732 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001733 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001734 Result = Tmp3;
1735 break;
1736 }
1737 // FALLTHROUGH
1738 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00001739 MVT VT = Node->getValueType(0);
1740 MVT EltVT = VT.getVectorElementType();
1741 MVT PtrVT = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00001742 SDValue Mask = Node->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001743 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00001744 SmallVector<SDValue,8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001745 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001746 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001747 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00001748 Ops.push_back(DAG.getUNDEF(EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001749 } else {
1750 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001751 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001752 if (Idx < NumElems)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001753 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001754 DAG.getConstant(Idx, PtrVT)));
1755 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001756 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001757 DAG.getConstant(Idx - NumElems, PtrVT)));
1758 }
1759 }
Evan Cheng907a2d22009-02-25 22:49:59 +00001760 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001761 break;
1762 }
1763 case TargetLowering::Promote: {
1764 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00001765 MVT OVT = Node->getValueType(0);
1766 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001767
1768 // Cast the two input vectors.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001769 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
1770 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00001771
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001772 // Convert the shuffle mask to the right # elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00001773 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greif1c80d112008-08-28 21:40:38 +00001774 assert(Tmp3.getNode() && "Shuffle not legal?");
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001775 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, NVT, Tmp1, Tmp2, Tmp3);
1776 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001777 break;
1778 }
1779 }
1780 break;
Scott Michel91099d62009-02-17 22:15:04 +00001781
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001782 case ISD::EXTRACT_VECTOR_ELT:
1783 Tmp1 = Node->getOperand(0);
1784 Tmp2 = LegalizeOp(Node->getOperand(1));
1785 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1786 Result = ExpandEXTRACT_VECTOR_ELT(Result);
1787 break;
1788
Scott Michel91099d62009-02-17 22:15:04 +00001789 case ISD::EXTRACT_SUBVECTOR:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001790 Tmp1 = Node->getOperand(0);
1791 Tmp2 = LegalizeOp(Node->getOperand(1));
1792 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1793 Result = ExpandEXTRACT_SUBVECTOR(Result);
1794 break;
Scott Michel91099d62009-02-17 22:15:04 +00001795
Mon P Wang1448aad2008-10-30 08:01:45 +00001796 case ISD::CONCAT_VECTORS: {
1797 // Use extract/insert/build vector for now. We might try to be
1798 // more clever later.
1799 MVT PtrVT = TLI.getPointerTy();
1800 SmallVector<SDValue, 8> Ops;
1801 unsigned NumOperands = Node->getNumOperands();
1802 for (unsigned i=0; i < NumOperands; ++i) {
1803 SDValue SubOp = Node->getOperand(i);
1804 MVT VVT = SubOp.getNode()->getValueType(0);
1805 MVT EltVT = VVT.getVectorElementType();
1806 unsigned NumSubElem = VVT.getVectorNumElements();
1807 for (unsigned j=0; j < NumSubElem; ++j) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001808 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
Mon P Wang1448aad2008-10-30 08:01:45 +00001809 DAG.getConstant(j, PtrVT)));
1810 }
1811 }
Evan Cheng907a2d22009-02-25 22:49:59 +00001812 return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
1813 &Ops[0], Ops.size()));
Mon P Wang1448aad2008-10-30 08:01:45 +00001814 }
1815
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001816 case ISD::CALLSEQ_START: {
1817 SDNode *CallEnd = FindCallEndFromCallStart(Node);
Scott Michel91099d62009-02-17 22:15:04 +00001818
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001819 // Recursively Legalize all of the inputs of the call end that do not lead
1820 // to this call start. This ensures that any libcalls that need be inserted
1821 // are inserted *before* the CALLSEQ_START.
Mon P Wang7cba3942009-02-04 19:38:14 +00001822 IsLegalizingCallArgs = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001823 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
1824 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greif1c80d112008-08-28 21:40:38 +00001825 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001826 NodesLeadingTo);
1827 }
Mon P Wang7cba3942009-02-04 19:38:14 +00001828 IsLegalizingCallArgs = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001829
1830 // Now that we legalized all of the inputs (which may have inserted
1831 // libcalls) create the new CALLSEQ_START node.
1832 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1833
1834 // Merge in the last call, to ensure that this call start after the last
1835 // call ended.
1836 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Scott Michel91099d62009-02-17 22:15:04 +00001837 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001838 Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001839 Tmp1 = LegalizeOp(Tmp1);
1840 }
Scott Michel91099d62009-02-17 22:15:04 +00001841
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001842 // Do not try to legalize the target-specific arguments (#1+).
1843 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001844 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001845 Ops[0] = Tmp1;
1846 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1847 }
Scott Michel91099d62009-02-17 22:15:04 +00001848
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001849 // Remember that the CALLSEQ_START is legalized.
1850 AddLegalizedOperand(Op.getValue(0), Result);
1851 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1852 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Scott Michel91099d62009-02-17 22:15:04 +00001853
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001854 // Now that the callseq_start and all of the non-call nodes above this call
Scott Michel91099d62009-02-17 22:15:04 +00001855 // sequence have been legalized, legalize the call itself. During this
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001856 // process, no libcalls can/will be inserted, guaranteeing that no calls
1857 // can overlap.
1858 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001859 // Note that we are selecting this call!
Dan Gohman8181bd12008-07-27 21:46:04 +00001860 LastCALLSEQ_END = SDValue(CallEnd, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001861 IsLegalizingCall = true;
Scott Michel91099d62009-02-17 22:15:04 +00001862
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001863 // Legalize the call, starting from the CALLSEQ_END.
1864 LegalizeOp(LastCALLSEQ_END);
1865 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1866 return Result;
1867 }
1868 case ISD::CALLSEQ_END:
1869 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1870 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greif1c80d112008-08-28 21:40:38 +00001871 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001872 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1873 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001874 assert(I != LegalizedNodes.end() &&
1875 "Legalizing the call start should have legalized this node!");
1876 return I->second;
1877 }
Scott Michel91099d62009-02-17 22:15:04 +00001878
1879 // Otherwise, the call start has been legalized and everything is going
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001880 // according to plan. Just legalize ourselves normally here.
1881 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1882 // Do not try to legalize the target-specific arguments (#1+), except for
1883 // an optional flag input.
1884 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1885 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001886 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001887 Ops[0] = Tmp1;
1888 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1889 }
1890 } else {
1891 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1892 if (Tmp1 != Node->getOperand(0) ||
1893 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001894 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001895 Ops[0] = Tmp1;
1896 Ops.back() = Tmp2;
1897 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1898 }
1899 }
1900 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
1901 // This finishes up call legalization.
1902 IsLegalizingCall = false;
Scott Michel91099d62009-02-17 22:15:04 +00001903
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001904 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00001905 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001906 if (Node->getNumValues() == 2)
Dan Gohman8181bd12008-07-27 21:46:04 +00001907 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001908 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001909 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands92c43912008-06-06 12:08:01 +00001910 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001911 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1912 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1913 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
1914 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1915
1916 Tmp1 = Result.getValue(0);
1917 Tmp2 = Result.getValue(1);
Evan Chenga448bc42007-08-16 23:50:06 +00001918 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001919 default: assert(0 && "This action is not supported yet!");
1920 case TargetLowering::Expand: {
1921 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1922 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1923 " not tell us which reg is the stack pointer!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001924 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling22f8deb2007-11-13 00:44:25 +00001925
1926 // Chain the dynamic stack allocation so that it doesn't modify the stack
1927 // pointer when other instructions are using the stack.
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001928 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling22f8deb2007-11-13 00:44:25 +00001929
Dan Gohman8181bd12008-07-27 21:46:04 +00001930 SDValue Size = Tmp2.getOperand(1);
Dale Johannesen564036c2009-02-04 00:13:36 +00001931 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
Evan Chenga448bc42007-08-16 23:50:06 +00001932 Chain = SP.getValue(1);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001933 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Chenga448bc42007-08-16 23:50:06 +00001934 unsigned StackAlign =
1935 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1936 if (Align > StackAlign)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001937 SP = DAG.getNode(ISD::AND, dl, VT, SP,
Evan Cheng51ce0382007-08-17 18:02:22 +00001938 DAG.getConstant(-(uint64_t)Align, VT));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001939 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Dale Johannesen564036c2009-02-04 00:13:36 +00001940 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
Bill Wendling22f8deb2007-11-13 00:44:25 +00001941
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001942 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001943 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling22f8deb2007-11-13 00:44:25 +00001944
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001945 Tmp1 = LegalizeOp(Tmp1);
1946 Tmp2 = LegalizeOp(Tmp2);
1947 break;
1948 }
1949 case TargetLowering::Custom:
1950 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001951 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001952 Tmp1 = LegalizeOp(Tmp3);
1953 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1954 }
1955 break;
1956 case TargetLowering::Legal:
1957 break;
1958 }
1959 // Since this op produce two values, make sure to remember that we
1960 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001961 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1962 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001963 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001964 }
1965 case ISD::INLINEASM: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001966 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001967 bool Changed = false;
1968 // Legalize all of the operands of the inline asm, in case they are nodes
1969 // that need to be expanded or something. Note we skip the asm string and
1970 // all of the TargetConstant flags.
Dan Gohman8181bd12008-07-27 21:46:04 +00001971 SDValue Op = LegalizeOp(Ops[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001972 Changed = Op != Ops[0];
1973 Ops[0] = Op;
1974
1975 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1976 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Evan Cheng92167402009-03-20 18:03:34 +00001977 unsigned NumVals = InlineAsm::
1978 getNumOperandRegisters(cast<ConstantSDNode>(Ops[i])->getZExtValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001979 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001980 SDValue Op = LegalizeOp(Ops[i]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001981 if (Op != Ops[i]) {
1982 Changed = true;
1983 Ops[i] = Op;
1984 }
1985 }
1986 }
1987
1988 if (HasInFlag) {
1989 Op = LegalizeOp(Ops.back());
1990 Changed |= Op != Ops.back();
1991 Ops.back() = Op;
1992 }
Scott Michel91099d62009-02-17 22:15:04 +00001993
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001994 if (Changed)
1995 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michel91099d62009-02-17 22:15:04 +00001996
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001997 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman8181bd12008-07-27 21:46:04 +00001998 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1999 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00002000 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002001 }
2002 case ISD::BR:
2003 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2004 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002005 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002006 Tmp1 = LegalizeOp(Tmp1);
2007 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00002008
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002009 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
2010 break;
2011 case ISD::BRIND:
2012 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2013 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002014 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002015 Tmp1 = LegalizeOp(Tmp1);
2016 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00002017
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002018 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2019 default: assert(0 && "Indirect target must be legal type (pointer)!");
2020 case Legal:
2021 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2022 break;
2023 }
2024 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2025 break;
2026 case ISD::BR_JT:
2027 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2028 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002029 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002030 Tmp1 = LegalizeOp(Tmp1);
2031 LastCALLSEQ_END = DAG.getEntryNode();
2032
2033 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
2034 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2035
Scott Michel91099d62009-02-17 22:15:04 +00002036 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002037 default: assert(0 && "This action is not supported yet!");
2038 case TargetLowering::Legal: break;
2039 case TargetLowering::Custom:
2040 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002041 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002042 break;
2043 case TargetLowering::Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002044 SDValue Chain = Result.getOperand(0);
2045 SDValue Table = Result.getOperand(1);
2046 SDValue Index = Result.getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002047
Duncan Sands92c43912008-06-06 12:08:01 +00002048 MVT PTy = TLI.getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002049 MachineFunction &MF = DAG.getMachineFunction();
2050 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Scott Michel91099d62009-02-17 22:15:04 +00002051 Index= DAG.getNode(ISD::MUL, dl, PTy,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002052 Index, DAG.getConstant(EntrySize, PTy));
2053 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002054
Duncan Sands12ddc802008-12-12 08:13:38 +00002055 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002056 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Duncan Sands12ddc802008-12-12 08:13:38 +00002057 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Cheng6fb06762007-11-09 01:32:10 +00002058 Addr = LD;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002059 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2060 // For PIC, the sequence is:
2061 // BRIND(load(Jumptable + index) + RelocBase)
Evan Cheng6fb06762007-11-09 01:32:10 +00002062 // RelocBase can be JumpTable, GOT or some sort of global base.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002063 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
Evan Cheng6fb06762007-11-09 01:32:10 +00002064 TLI.getPICJumpTableRelocBase(Table, DAG));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002065 }
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002066 Result = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002067 }
2068 }
2069 break;
2070 case ISD::BRCOND:
2071 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2072 // Ensure that libcalls are emitted before a return.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002073 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002074 Tmp1 = LegalizeOp(Tmp1);
2075 LastCALLSEQ_END = DAG.getEntryNode();
2076
2077 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2078 case Expand: assert(0 && "It's impossible to expand bools");
2079 case Legal:
2080 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2081 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00002082 case Promote: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002083 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Scott Michel91099d62009-02-17 22:15:04 +00002084
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002085 // The top bits of the promoted condition are not necessarily zero, ensure
2086 // that the value is properly zero extended.
Dan Gohman07961cd2008-02-25 21:11:39 +00002087 unsigned BitWidth = Tmp2.getValueSizeInBits();
Scott Michel91099d62009-02-17 22:15:04 +00002088 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman07961cd2008-02-25 21:11:39 +00002089 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002090 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, MVT::i1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002091 break;
2092 }
Dan Gohman07961cd2008-02-25 21:11:39 +00002093 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002094
2095 // Basic block destination (Op#2) is always legal.
2096 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michel91099d62009-02-17 22:15:04 +00002097
2098 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002099 default: assert(0 && "This action is not supported yet!");
2100 case TargetLowering::Legal: break;
2101 case TargetLowering::Custom:
2102 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002103 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002104 break;
2105 case TargetLowering::Expand:
2106 // Expand brcond's setcc into its constituent parts and create a BR_CC
2107 // Node.
2108 if (Tmp2.getOpcode() == ISD::SETCC) {
Scott Michel91099d62009-02-17 22:15:04 +00002109 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002110 Tmp1, Tmp2.getOperand(2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002111 Tmp2.getOperand(0), Tmp2.getOperand(1),
2112 Node->getOperand(2));
2113 } else {
Scott Michel91099d62009-02-17 22:15:04 +00002114 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002115 DAG.getCondCode(ISD::SETNE), Tmp2,
2116 DAG.getConstant(0, Tmp2.getValueType()),
2117 Node->getOperand(2));
2118 }
2119 break;
2120 }
2121 break;
2122 case ISD::BR_CC:
2123 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2124 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002125 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002126 Tmp1 = LegalizeOp(Tmp1);
Scott Michel91099d62009-02-17 22:15:04 +00002127 Tmp2 = Node->getOperand(2); // LHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002128 Tmp3 = Node->getOperand(3); // RHS
2129 Tmp4 = Node->getOperand(1); // CC
2130
Scott Michel91099d62009-02-17 22:15:04 +00002131 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
Dale Johannesen352c47e2009-02-02 20:41:04 +00002132 Tmp2, Tmp3, Tmp4, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002133 LastCALLSEQ_END = DAG.getEntryNode();
2134
Evan Cheng71343822008-10-15 02:05:31 +00002135 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002136 // the LHS is a legal SETCC itself. In this case, we need to compare
2137 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00002138 if (Tmp3.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002139 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2140 Tmp4 = DAG.getCondCode(ISD::SETNE);
2141 }
Scott Michel91099d62009-02-17 22:15:04 +00002142
2143 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002144 Node->getOperand(4));
Scott Michel91099d62009-02-17 22:15:04 +00002145
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002146 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2147 default: assert(0 && "Unexpected action for BR_CC!");
2148 case TargetLowering::Legal: break;
2149 case TargetLowering::Custom:
2150 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002151 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002152 break;
2153 }
2154 break;
2155 case ISD::LOAD: {
2156 LoadSDNode *LD = cast<LoadSDNode>(Node);
2157 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2158 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
2159
2160 ISD::LoadExtType ExtType = LD->getExtensionType();
2161 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands92c43912008-06-06 12:08:01 +00002162 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002163 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2164 Tmp3 = Result.getValue(0);
2165 Tmp4 = Result.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00002166
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002167 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2168 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002169 case TargetLowering::Legal:
2170 // If this is an unaligned load and the target doesn't support it,
2171 // expand it.
2172 if (!TLI.allowsUnalignedMemoryAccesses()) {
2173 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002174 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002175 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00002176 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002177 TLI);
2178 Tmp3 = Result.getOperand(0);
2179 Tmp4 = Result.getOperand(1);
Dale Johannesen08275382007-09-08 19:29:23 +00002180 Tmp3 = LegalizeOp(Tmp3);
2181 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002182 }
2183 }
2184 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002185 case TargetLowering::Custom:
2186 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002187 if (Tmp1.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002188 Tmp3 = LegalizeOp(Tmp1);
2189 Tmp4 = LegalizeOp(Tmp1.getValue(1));
2190 }
2191 break;
2192 case TargetLowering::Promote: {
2193 // Only promote a load of vector type to another.
Duncan Sands92c43912008-06-06 12:08:01 +00002194 assert(VT.isVector() && "Cannot promote this load!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002195 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002196 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002197
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002198 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002199 LD->getSrcValueOffset(),
2200 LD->isVolatile(), LD->getAlignment());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00002201 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002202 Tmp4 = LegalizeOp(Tmp1.getValue(1));
2203 break;
2204 }
2205 }
Scott Michel91099d62009-02-17 22:15:04 +00002206 // Since loads produce two values, make sure to remember that we
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002207 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002208 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2209 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif46bf5472008-08-26 22:36:50 +00002210 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002211 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00002212 MVT SrcVT = LD->getMemoryVT();
2213 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sands082524c2008-01-23 20:39:46 +00002214 int SVOffset = LD->getSrcValueOffset();
2215 unsigned Alignment = LD->getAlignment();
2216 bool isVolatile = LD->isVolatile();
2217
Duncan Sands92c43912008-06-06 12:08:01 +00002218 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sands082524c2008-01-23 20:39:46 +00002219 // Some targets pretend to have an i1 loading operation, and actually
2220 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2221 // bits are guaranteed to be zero; it helps the optimizers understand
2222 // that these bits are zero. It is also useful for EXTLOAD, since it
2223 // tells the optimizers that those bits are undefined. It would be
2224 // nice to have an effective generic way of getting these benefits...
2225 // Until such a way is found, don't insist on promoting i1 here.
2226 (SrcVT != MVT::i1 ||
Evan Cheng08c171a2008-10-14 21:26:46 +00002227 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sands082524c2008-01-23 20:39:46 +00002228 // Promote to a byte-sized load if not loading an integral number of
2229 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands92c43912008-06-06 12:08:01 +00002230 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2231 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002232 SDValue Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00002233
2234 // The extra bits are guaranteed to be zero, since we stored them that
2235 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2236
2237 ISD::LoadExtType NewExtType =
2238 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2239
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002240 Result = DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Duncan Sands082524c2008-01-23 20:39:46 +00002241 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2242 NVT, isVolatile, Alignment);
2243
2244 Ch = Result.getValue(1); // The chain.
2245
2246 if (ExtType == ISD::SEXTLOAD)
2247 // Having the top bits zero doesn't help when sign extending.
Scott Michel91099d62009-02-17 22:15:04 +00002248 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002249 Result.getValueType(),
Duncan Sands082524c2008-01-23 20:39:46 +00002250 Result, DAG.getValueType(SrcVT));
2251 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2252 // All the top bits are guaranteed to be zero - inform the optimizers.
Scott Michel91099d62009-02-17 22:15:04 +00002253 Result = DAG.getNode(ISD::AssertZext, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002254 Result.getValueType(), Result,
Duncan Sands082524c2008-01-23 20:39:46 +00002255 DAG.getValueType(SrcVT));
2256
2257 Tmp1 = LegalizeOp(Result);
2258 Tmp2 = LegalizeOp(Ch);
2259 } else if (SrcWidth & (SrcWidth - 1)) {
2260 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands92c43912008-06-06 12:08:01 +00002261 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sands082524c2008-01-23 20:39:46 +00002262 "Unsupported extload!");
2263 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2264 assert(RoundWidth < SrcWidth);
2265 unsigned ExtraWidth = SrcWidth - RoundWidth;
2266 assert(ExtraWidth < RoundWidth);
2267 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2268 "Load size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002269 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2270 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002271 SDValue Lo, Hi, Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00002272 unsigned IncrementSize;
2273
2274 if (TLI.isLittleEndian()) {
2275 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2276 // Load the bottom RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002277 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2278 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002279 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2280 Alignment);
2281
2282 // Load the remaining ExtraWidth bits.
2283 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002284 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002285 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002286 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002287 LD->getSrcValue(), SVOffset + IncrementSize,
2288 ExtraVT, isVolatile,
2289 MinAlign(Alignment, IncrementSize));
2290
2291 // Build a factor node to remember that this load is independent of the
2292 // other one.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002293 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sands082524c2008-01-23 20:39:46 +00002294 Hi.getValue(1));
2295
2296 // Move the top bits to the right place.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002297 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sands082524c2008-01-23 20:39:46 +00002298 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2299
2300 // Join the hi and lo parts.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002301 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002302 } else {
Duncan Sands082524c2008-01-23 20:39:46 +00002303 // Big endian - avoid unaligned loads.
2304 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2305 // Load the top RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002306 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002307 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2308 Alignment);
2309
2310 // Load the remaining ExtraWidth bits.
2311 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002312 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002313 DAG.getIntPtrConstant(IncrementSize));
Scott Michel91099d62009-02-17 22:15:04 +00002314 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002315 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002316 LD->getSrcValue(), SVOffset + IncrementSize,
2317 ExtraVT, isVolatile,
2318 MinAlign(Alignment, IncrementSize));
2319
2320 // Build a factor node to remember that this load is independent of the
2321 // other one.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002322 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sands082524c2008-01-23 20:39:46 +00002323 Hi.getValue(1));
2324
2325 // Move the top bits to the right place.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002326 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sands082524c2008-01-23 20:39:46 +00002327 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2328
2329 // Join the hi and lo parts.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002330 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sands082524c2008-01-23 20:39:46 +00002331 }
2332
2333 Tmp1 = LegalizeOp(Result);
2334 Tmp2 = LegalizeOp(Ch);
2335 } else {
Evan Cheng08c171a2008-10-14 21:26:46 +00002336 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sands082524c2008-01-23 20:39:46 +00002337 default: assert(0 && "This action is not supported yet!");
2338 case TargetLowering::Custom:
2339 isCustom = true;
2340 // FALLTHROUGH
2341 case TargetLowering::Legal:
2342 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2343 Tmp1 = Result.getValue(0);
2344 Tmp2 = Result.getValue(1);
2345
2346 if (isCustom) {
2347 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002348 if (Tmp3.getNode()) {
Duncan Sands082524c2008-01-23 20:39:46 +00002349 Tmp1 = LegalizeOp(Tmp3);
2350 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2351 }
2352 } else {
2353 // If this is an unaligned load and the target doesn't support it,
2354 // expand it.
2355 if (!TLI.allowsUnalignedMemoryAccesses()) {
2356 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002357 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sands082524c2008-01-23 20:39:46 +00002358 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00002359 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sands082524c2008-01-23 20:39:46 +00002360 TLI);
2361 Tmp1 = Result.getOperand(0);
2362 Tmp2 = Result.getOperand(1);
2363 Tmp1 = LegalizeOp(Tmp1);
2364 Tmp2 = LegalizeOp(Tmp2);
2365 }
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002366 }
2367 }
Duncan Sands082524c2008-01-23 20:39:46 +00002368 break;
2369 case TargetLowering::Expand:
2370 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2371 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002372 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sands082524c2008-01-23 20:39:46 +00002373 LD->getSrcValueOffset(),
2374 LD->isVolatile(), LD->getAlignment());
Scott Michel91099d62009-02-17 22:15:04 +00002375 Result = DAG.getNode(ISD::FP_EXTEND, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002376 Node->getValueType(0), Load);
Duncan Sands082524c2008-01-23 20:39:46 +00002377 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2378 Tmp2 = LegalizeOp(Load.getValue(1));
2379 break;
2380 }
2381 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2382 // Turn the unsupported load into an EXTLOAD followed by an explicit
2383 // zero/sign extend inreg.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002384 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Duncan Sands082524c2008-01-23 20:39:46 +00002385 Tmp1, Tmp2, LD->getSrcValue(),
2386 LD->getSrcValueOffset(), SrcVT,
2387 LD->isVolatile(), LD->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +00002388 SDValue ValRes;
Duncan Sands082524c2008-01-23 20:39:46 +00002389 if (ExtType == ISD::SEXTLOAD)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002390 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2391 Result.getValueType(),
Duncan Sands082524c2008-01-23 20:39:46 +00002392 Result, DAG.getValueType(SrcVT));
2393 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002394 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
Duncan Sands082524c2008-01-23 20:39:46 +00002395 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2396 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002397 break;
2398 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002399 }
Duncan Sands082524c2008-01-23 20:39:46 +00002400
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002401 // Since loads produce two values, make sure to remember that we legalized
2402 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002403 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2404 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002405 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002406 }
2407 }
2408 case ISD::EXTRACT_ELEMENT: {
Duncan Sands92c43912008-06-06 12:08:01 +00002409 MVT OpTy = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002410 switch (getTypeAction(OpTy)) {
2411 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
2412 case Legal:
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002413 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002414 // 1 -> Hi
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002415 Result = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Duncan Sands92c43912008-06-06 12:08:01 +00002416 DAG.getConstant(OpTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002417 TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002418 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002419 } else {
2420 // 0 -> Lo
Scott Michel91099d62009-02-17 22:15:04 +00002421 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002422 Node->getOperand(0));
2423 }
2424 break;
2425 case Expand:
2426 // Get both the low and high parts.
2427 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002428 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002429 Result = Tmp2; // 1 -> Hi
2430 else
2431 Result = Tmp1; // 0 -> Lo
2432 break;
2433 }
2434 break;
2435 }
2436
2437 case ISD::CopyToReg:
2438 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2439
2440 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
2441 "Register type must be legal!");
2442 // Legalize the incoming value (must be a legal type).
2443 Tmp2 = LegalizeOp(Node->getOperand(2));
2444 if (Node->getNumValues() == 1) {
2445 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
2446 } else {
2447 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
2448 if (Node->getNumOperands() == 4) {
2449 Tmp3 = LegalizeOp(Node->getOperand(3));
2450 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2451 Tmp3);
2452 } else {
2453 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
2454 }
Scott Michel91099d62009-02-17 22:15:04 +00002455
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002456 // Since this produces two values, make sure to remember that we legalized
2457 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002458 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2459 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002460 return Result;
2461 }
2462 break;
2463
2464 case ISD::RET:
2465 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2466
2467 // Ensure that libcalls are emitted before a return.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002468 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002469 Tmp1 = LegalizeOp(Tmp1);
2470 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00002471
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002472 switch (Node->getNumOperands()) {
2473 case 3: // ret val
2474 Tmp2 = Node->getOperand(1);
2475 Tmp3 = Node->getOperand(2); // Signness
2476 switch (getTypeAction(Tmp2.getValueType())) {
2477 case Legal:
2478 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
2479 break;
2480 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +00002481 if (!Tmp2.getValueType().isVector()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002482 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002483 ExpandOp(Tmp2, Lo, Hi);
2484
2485 // Big endian systems want the hi reg first.
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002486 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002487 std::swap(Lo, Hi);
Scott Michel91099d62009-02-17 22:15:04 +00002488
Gabor Greif1c80d112008-08-28 21:40:38 +00002489 if (Hi.getNode())
Scott Michel91099d62009-02-17 22:15:04 +00002490 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002491 Tmp1, Lo, Tmp3, Hi,Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002492 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002493 Result = DAG.getNode(ISD::RET, dl, MVT::Other, Tmp1, Lo, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002494 Result = LegalizeOp(Result);
2495 } else {
Gabor Greif1c80d112008-08-28 21:40:38 +00002496 SDNode *InVal = Tmp2.getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002497 int InIx = Tmp2.getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002498 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2499 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michel91099d62009-02-17 22:15:04 +00002500
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002501 // Figure out if there is a simple type corresponding to this Vector
2502 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002503 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002504 if (TLI.isTypeLegal(TVT)) {
2505 // Turn this into a return of the vector type.
2506 Tmp2 = LegalizeOp(Tmp2);
2507 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2508 } else if (NumElems == 1) {
2509 // Turn this into a return of the scalar type.
2510 Tmp2 = ScalarizeVectorOp(Tmp2);
2511 Tmp2 = LegalizeOp(Tmp2);
2512 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michel91099d62009-02-17 22:15:04 +00002513
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002514 // FIXME: Returns of gcc generic vectors smaller than a legal type
2515 // should be returned in integer registers!
Scott Michel91099d62009-02-17 22:15:04 +00002516
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002517 // The scalarized value type may not be legal, e.g. it might require
2518 // promotion or expansion. Relegalize the return.
2519 Result = LegalizeOp(Result);
2520 } else {
2521 // FIXME: Returns of gcc generic vectors larger than a legal vector
2522 // type should be returned by reference!
Dan Gohman8181bd12008-07-27 21:46:04 +00002523 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002524 SplitVectorOp(Tmp2, Lo, Hi);
Scott Michel91099d62009-02-17 22:15:04 +00002525 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002526 Tmp1, Lo, Tmp3, Hi,Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002527 Result = LegalizeOp(Result);
2528 }
2529 }
2530 break;
2531 case Promote:
2532 Tmp2 = PromoteOp(Node->getOperand(1));
2533 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2534 Result = LegalizeOp(Result);
2535 break;
2536 }
2537 break;
2538 case 1: // ret void
2539 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2540 break;
2541 default: { // ret <values>
Dan Gohman8181bd12008-07-27 21:46:04 +00002542 SmallVector<SDValue, 8> NewValues;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002543 NewValues.push_back(Tmp1);
2544 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
2545 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2546 case Legal:
2547 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
2548 NewValues.push_back(Node->getOperand(i+1));
2549 break;
2550 case Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002551 SDValue Lo, Hi;
Duncan Sands92c43912008-06-06 12:08:01 +00002552 assert(!Node->getOperand(i).getValueType().isExtended() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002553 "FIXME: TODO: implement returning non-legal vector types!");
2554 ExpandOp(Node->getOperand(i), Lo, Hi);
2555 NewValues.push_back(Lo);
2556 NewValues.push_back(Node->getOperand(i+1));
Gabor Greif1c80d112008-08-28 21:40:38 +00002557 if (Hi.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002558 NewValues.push_back(Hi);
2559 NewValues.push_back(Node->getOperand(i+1));
2560 }
2561 break;
2562 }
2563 case Promote:
2564 assert(0 && "Can't promote multiple return value yet!");
2565 }
Scott Michel91099d62009-02-17 22:15:04 +00002566
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002567 if (NewValues.size() == Node->getNumOperands())
2568 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
2569 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002570 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002571 &NewValues[0], NewValues.size());
2572 break;
2573 }
2574 }
2575
2576 if (Result.getOpcode() == ISD::RET) {
2577 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2578 default: assert(0 && "This action is not supported yet!");
2579 case TargetLowering::Legal: break;
2580 case TargetLowering::Custom:
2581 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002582 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002583 break;
2584 }
2585 }
2586 break;
2587 case ISD::STORE: {
2588 StoreSDNode *ST = cast<StoreSDNode>(Node);
2589 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2590 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
2591 int SVOffset = ST->getSrcValueOffset();
2592 unsigned Alignment = ST->getAlignment();
2593 bool isVolatile = ST->isVolatile();
2594
2595 if (!ST->isTruncatingStore()) {
2596 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2597 // FIXME: We shouldn't do this for TargetConstantFP's.
2598 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2599 // to phase ordering between legalized code and the dag combiner. This
2600 // probably means that we need to integrate dag combiner and legalizer
2601 // together.
Dale Johannesen2fc20782007-09-14 22:26:36 +00002602 // We generally can't do this one for long doubles.
Chris Lattnere8671c52007-10-13 06:35:54 +00002603 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Scott Michel91099d62009-02-17 22:15:04 +00002604 if (CFP->getValueType(0) == MVT::f32 &&
Chris Lattner19f229a2007-10-15 05:46:06 +00002605 getTypeAction(MVT::i32) == Legal) {
Dan Gohman39509762008-03-11 00:11:06 +00002606 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002607 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen1616e902007-09-11 18:32:33 +00002608 MVT::i32);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002609 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dale Johannesen2fc20782007-09-14 22:26:36 +00002610 SVOffset, isVolatile, Alignment);
2611 break;
2612 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002613 // If this target supports 64-bit registers, do a single 64-bit store.
2614 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002615 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman39509762008-03-11 00:11:06 +00002616 zextOrTrunc(64), MVT::i64);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002617 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner19f229a2007-10-15 05:46:06 +00002618 SVOffset, isVolatile, Alignment);
2619 break;
Duncan Sands2418bec2008-06-13 19:07:40 +00002620 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002621 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2622 // stores. If the target supports neither 32- nor 64-bits, this
2623 // xform is certainly not worth it.
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002624 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman8181bd12008-07-27 21:46:04 +00002625 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2626 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002627 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner19f229a2007-10-15 05:46:06 +00002628
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002629 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Chris Lattner19f229a2007-10-15 05:46:06 +00002630 SVOffset, isVolatile, Alignment);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002631 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002632 DAG.getIntPtrConstant(4));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002633 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsa3691432007-10-28 12:59:45 +00002634 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner19f229a2007-10-15 05:46:06 +00002635
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002636 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Chris Lattner19f229a2007-10-15 05:46:06 +00002637 break;
2638 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002639 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002640 }
Scott Michel91099d62009-02-17 22:15:04 +00002641
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002642 switch (getTypeAction(ST->getMemoryVT())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002643 case Legal: {
2644 Tmp3 = LegalizeOp(ST->getValue());
Scott Michel91099d62009-02-17 22:15:04 +00002645 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002646 ST->getOffset());
2647
Duncan Sands92c43912008-06-06 12:08:01 +00002648 MVT VT = Tmp3.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002649 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2650 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002651 case TargetLowering::Legal:
2652 // If this is an unaligned store and the target doesn't support it,
2653 // expand it.
2654 if (!TLI.allowsUnalignedMemoryAccesses()) {
2655 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002656 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002657 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002658 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002659 TLI);
2660 }
2661 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002662 case TargetLowering::Custom:
2663 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002664 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002665 break;
2666 case TargetLowering::Promote:
Duncan Sands92c43912008-06-06 12:08:01 +00002667 assert(VT.isVector() && "Unknown legal promote case!");
Scott Michel91099d62009-02-17 22:15:04 +00002668 Tmp3 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002669 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002670 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002671 ST->getSrcValue(), SVOffset, isVolatile,
2672 Alignment);
2673 break;
2674 }
2675 break;
2676 }
2677 case Promote:
Mon P Wang1448aad2008-10-30 08:01:45 +00002678 if (!ST->getMemoryVT().isVector()) {
2679 // Truncate the value and store the result.
2680 Tmp3 = PromoteOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002681 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Mon P Wang1448aad2008-10-30 08:01:45 +00002682 SVOffset, ST->getMemoryVT(),
2683 isVolatile, Alignment);
2684 break;
2685 }
2686 // Fall thru to expand for vector
2687 case Expand: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002688 unsigned IncrementSize = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002689 SDValue Lo, Hi;
Scott Michel91099d62009-02-17 22:15:04 +00002690
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002691 // If this is a vector type, then we have to calculate the increment as
2692 // the product of the element size in bytes, and the number of elements
2693 // in the high half of the vector.
Duncan Sands92c43912008-06-06 12:08:01 +00002694 if (ST->getValue().getValueType().isVector()) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002695 SDNode *InVal = ST->getValue().getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002696 int InIx = ST->getValue().getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002697 MVT InVT = InVal->getValueType(InIx);
2698 unsigned NumElems = InVT.getVectorNumElements();
2699 MVT EVT = InVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002700
2701 // Figure out if there is a simple type corresponding to this Vector
2702 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002703 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002704 if (TLI.isTypeLegal(TVT)) {
2705 // Turn this into a normal store of the vector type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002706 Tmp3 = LegalizeOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002707 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002708 SVOffset, isVolatile, Alignment);
2709 Result = LegalizeOp(Result);
2710 break;
2711 } else if (NumElems == 1) {
2712 // Turn this into a normal store of the scalar type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002713 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002714 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002715 SVOffset, isVolatile, Alignment);
2716 // The scalarized value type may not be legal, e.g. it might require
2717 // promotion or expansion. Relegalize the scalar store.
2718 Result = LegalizeOp(Result);
2719 break;
2720 } else {
Mon P Wang1448aad2008-10-30 08:01:45 +00002721 // Check if we have widen this node with another value
2722 std::map<SDValue, SDValue>::iterator I =
2723 WidenNodes.find(ST->getValue());
2724 if (I != WidenNodes.end()) {
2725 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2726 break;
2727 }
2728 else {
2729 SplitVectorOp(ST->getValue(), Lo, Hi);
2730 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2731 EVT.getSizeInBits()/8;
2732 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002733 }
2734 } else {
Dan Gohmane9f633d2008-02-15 18:11:59 +00002735 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greif1c80d112008-08-28 21:40:38 +00002736 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002737
Richard Pennington73ae9e42008-09-25 16:15:10 +00002738 if (Hi.getNode() && TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002739 std::swap(Lo, Hi);
2740 }
2741
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002742 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002743 SVOffset, isVolatile, Alignment);
2744
Gabor Greif1c80d112008-08-28 21:40:38 +00002745 if (Hi.getNode() == NULL) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002746 // Must be int <-> float one-to-one expansion.
2747 Result = Lo;
2748 break;
2749 }
2750
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002751 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002752 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002753 assert(isTypeLegal(Tmp2.getValueType()) &&
2754 "Pointers must be legal!");
2755 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00002756 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002757 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002758 SVOffset, isVolatile, Alignment);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002759 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002760 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00002761 } // case Expand
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002762 }
2763 } else {
Chris Lattner3bc08502008-01-17 19:59:44 +00002764 switch (getTypeAction(ST->getValue().getValueType())) {
2765 case Legal:
2766 Tmp3 = LegalizeOp(ST->getValue());
2767 break;
2768 case Promote:
Mon P Wang1448aad2008-10-30 08:01:45 +00002769 if (!ST->getValue().getValueType().isVector()) {
2770 // We can promote the value, the truncstore will still take care of it.
2771 Tmp3 = PromoteOp(ST->getValue());
2772 break;
2773 }
2774 // Vector case falls through to expand
Chris Lattner3bc08502008-01-17 19:59:44 +00002775 case Expand:
2776 // Just store the low part. This may become a non-trunc store, so make
2777 // sure to use getTruncStore, not UpdateNodeOperands below.
2778 ExpandOp(ST->getValue(), Tmp3, Tmp4);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002779 return DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner3bc08502008-01-17 19:59:44 +00002780 SVOffset, MVT::i8, isVolatile, Alignment);
2781 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002782
Duncan Sands92c43912008-06-06 12:08:01 +00002783 MVT StVT = ST->getMemoryVT();
2784 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands40676662008-01-22 07:17:34 +00002785
Duncan Sands92c43912008-06-06 12:08:01 +00002786 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands40676662008-01-22 07:17:34 +00002787 // Promote to a byte-sized store with upper bits zero if not
2788 // storing an integral number of bytes. For example, promote
2789 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands92c43912008-06-06 12:08:01 +00002790 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002791 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
2792 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002793 SVOffset, NVT, isVolatile, Alignment);
2794 } else if (StWidth & (StWidth - 1)) {
2795 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands92c43912008-06-06 12:08:01 +00002796 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands40676662008-01-22 07:17:34 +00002797 "Unsupported truncstore!");
2798 unsigned RoundWidth = 1 << Log2_32(StWidth);
2799 assert(RoundWidth < StWidth);
2800 unsigned ExtraWidth = StWidth - RoundWidth;
2801 assert(ExtraWidth < RoundWidth);
2802 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2803 "Store size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002804 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2805 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002806 SDValue Lo, Hi;
Duncan Sands40676662008-01-22 07:17:34 +00002807 unsigned IncrementSize;
2808
2809 if (TLI.isLittleEndian()) {
2810 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2811 // Store the bottom RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002812 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002813 SVOffset, RoundVT,
2814 isVolatile, Alignment);
2815
2816 // Store the remaining ExtraWidth bits.
2817 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002818 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands40676662008-01-22 07:17:34 +00002819 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002820 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands40676662008-01-22 07:17:34 +00002821 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002822 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002823 SVOffset + IncrementSize, ExtraVT, isVolatile,
2824 MinAlign(Alignment, IncrementSize));
2825 } else {
2826 // Big endian - avoid unaligned stores.
2827 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2828 // Store the top RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002829 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands40676662008-01-22 07:17:34 +00002830 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002831 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
2832 SVOffset, RoundVT, isVolatile, Alignment);
Duncan Sands40676662008-01-22 07:17:34 +00002833
2834 // Store the remaining ExtraWidth bits.
2835 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002836 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands40676662008-01-22 07:17:34 +00002837 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002838 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002839 SVOffset + IncrementSize, ExtraVT, isVolatile,
2840 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002841 }
Duncan Sands40676662008-01-22 07:17:34 +00002842
2843 // The order of the stores doesn't matter.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002844 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Duncan Sands40676662008-01-22 07:17:34 +00002845 } else {
2846 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2847 Tmp2 != ST->getBasePtr())
2848 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2849 ST->getOffset());
2850
2851 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2852 default: assert(0 && "This action is not supported yet!");
2853 case TargetLowering::Legal:
2854 // If this is an unaligned store and the target doesn't support it,
2855 // expand it.
2856 if (!TLI.allowsUnalignedMemoryAccesses()) {
2857 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002858 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands40676662008-01-22 07:17:34 +00002859 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002860 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands40676662008-01-22 07:17:34 +00002861 TLI);
2862 }
2863 break;
2864 case TargetLowering::Custom:
2865 Result = TLI.LowerOperation(Result, DAG);
2866 break;
2867 case Expand:
2868 // TRUNCSTORE:i16 i32 -> STORE i16
2869 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002870 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
2871 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
2872 SVOffset, isVolatile, Alignment);
Duncan Sands40676662008-01-22 07:17:34 +00002873 break;
2874 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002875 }
2876 }
2877 break;
2878 }
2879 case ISD::PCMARKER:
2880 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2881 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
2882 break;
2883 case ISD::STACKSAVE:
2884 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2885 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2886 Tmp1 = Result.getValue(0);
2887 Tmp2 = Result.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00002888
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002889 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2890 default: assert(0 && "This action is not supported yet!");
2891 case TargetLowering::Legal: break;
2892 case TargetLowering::Custom:
2893 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002894 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002895 Tmp1 = LegalizeOp(Tmp3);
2896 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2897 }
2898 break;
2899 case TargetLowering::Expand:
Scott Michel91099d62009-02-17 22:15:04 +00002900 // Expand to CopyFromReg if the target set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002901 // StackPointerRegisterToSaveRestore.
2902 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesen564036c2009-02-04 00:13:36 +00002903 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), dl, SP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002904 Node->getValueType(0));
2905 Tmp2 = Tmp1.getValue(1);
2906 } else {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00002907 Tmp1 = DAG.getUNDEF(Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002908 Tmp2 = Node->getOperand(0);
2909 }
2910 break;
2911 }
2912
2913 // Since stacksave produce two values, make sure to remember that we
2914 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002915 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2916 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002917 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002918
2919 case ISD::STACKRESTORE:
2920 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2921 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2922 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00002923
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002924 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2925 default: assert(0 && "This action is not supported yet!");
2926 case TargetLowering::Legal: break;
2927 case TargetLowering::Custom:
2928 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002929 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002930 break;
2931 case TargetLowering::Expand:
Scott Michel91099d62009-02-17 22:15:04 +00002932 // Expand to CopyToReg if the target set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002933 // StackPointerRegisterToSaveRestore.
2934 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesen564036c2009-02-04 00:13:36 +00002935 Result = DAG.getCopyToReg(Tmp1, dl, SP, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002936 } else {
2937 Result = Tmp1;
2938 }
2939 break;
2940 }
2941 break;
2942
2943 case ISD::READCYCLECOUNTER:
2944 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
2945 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2946 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2947 Node->getValueType(0))) {
2948 default: assert(0 && "This action is not supported yet!");
2949 case TargetLowering::Legal:
2950 Tmp1 = Result.getValue(0);
2951 Tmp2 = Result.getValue(1);
2952 break;
2953 case TargetLowering::Custom:
2954 Result = TLI.LowerOperation(Result, DAG);
2955 Tmp1 = LegalizeOp(Result.getValue(0));
2956 Tmp2 = LegalizeOp(Result.getValue(1));
2957 break;
2958 }
2959
2960 // Since rdcc produce two values, make sure to remember that we legalized
2961 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002962 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2963 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002964 return Result;
2965
2966 case ISD::SELECT:
2967 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2968 case Expand: assert(0 && "It's impossible to expand bools");
2969 case Legal:
2970 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2971 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00002972 case Promote: {
Mon P Wang1448aad2008-10-30 08:01:45 +00002973 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002974 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
2975 // Make sure the condition is either zero or one.
Dan Gohman07961cd2008-02-25 21:11:39 +00002976 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002977 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman07961cd2008-02-25 21:11:39 +00002978 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002979 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, MVT::i1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002980 break;
2981 }
Dan Gohman07961cd2008-02-25 21:11:39 +00002982 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002983 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
2984 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
2985
2986 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michel91099d62009-02-17 22:15:04 +00002987
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002988 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
2989 default: assert(0 && "This action is not supported yet!");
2990 case TargetLowering::Legal: break;
2991 case TargetLowering::Custom: {
2992 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002993 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002994 break;
2995 }
2996 case TargetLowering::Expand:
2997 if (Tmp1.getOpcode() == ISD::SETCC) {
Scott Michel91099d62009-02-17 22:15:04 +00002998 Result = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002999 Tmp2, Tmp3,
3000 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
3001 } else {
Scott Michel91099d62009-02-17 22:15:04 +00003002 Result = DAG.getSelectCC(dl, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003003 DAG.getConstant(0, Tmp1.getValueType()),
3004 Tmp2, Tmp3, ISD::SETNE);
3005 }
3006 break;
3007 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003008 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003009 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
3010 unsigned ExtOp, TruncOp;
Duncan Sands92c43912008-06-06 12:08:01 +00003011 if (Tmp2.getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003012 ExtOp = ISD::BIT_CONVERT;
3013 TruncOp = ISD::BIT_CONVERT;
Duncan Sands92c43912008-06-06 12:08:01 +00003014 } else if (Tmp2.getValueType().isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003015 ExtOp = ISD::ANY_EXTEND;
3016 TruncOp = ISD::TRUNCATE;
3017 } else {
3018 ExtOp = ISD::FP_EXTEND;
3019 TruncOp = ISD::FP_ROUND;
3020 }
3021 // Promote each of the values to the new type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003022 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Tmp2);
3023 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003024 // Perform the larger operation, then round down.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003025 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner5872a362008-01-17 07:00:52 +00003026 if (TruncOp != ISD::FP_ROUND)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003027 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result);
Chris Lattner5872a362008-01-17 07:00:52 +00003028 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003029 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result,
Chris Lattner5872a362008-01-17 07:00:52 +00003030 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003031 break;
3032 }
3033 }
3034 break;
3035 case ISD::SELECT_CC: {
3036 Tmp1 = Node->getOperand(0); // LHS
3037 Tmp2 = Node->getOperand(1); // RHS
3038 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
3039 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman8181bd12008-07-27 21:46:04 +00003040 SDValue CC = Node->getOperand(4);
Scott Michel91099d62009-02-17 22:15:04 +00003041
3042 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
Dale Johannesen352c47e2009-02-02 20:41:04 +00003043 Tmp1, Tmp2, CC, dl);
Scott Michel91099d62009-02-17 22:15:04 +00003044
Evan Cheng71343822008-10-15 02:05:31 +00003045 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003046 // the LHS is a legal SETCC itself. In this case, we need to compare
3047 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00003048 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003049 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3050 CC = DAG.getCondCode(ISD::SETNE);
3051 }
3052 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3053
3054 // Everything is legal, see if we should expand this op or something.
3055 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3056 default: assert(0 && "This action is not supported yet!");
3057 case TargetLowering::Legal: break;
3058 case TargetLowering::Custom:
3059 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003060 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003061 break;
3062 }
3063 break;
3064 }
3065 case ISD::SETCC:
3066 Tmp1 = Node->getOperand(0);
3067 Tmp2 = Node->getOperand(1);
3068 Tmp3 = Node->getOperand(2);
Dale Johannesen352c47e2009-02-02 20:41:04 +00003069 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Scott Michel91099d62009-02-17 22:15:04 +00003070
3071 // If we had to Expand the SetCC operands into a SELECT node, then it may
3072 // not always be possible to return a true LHS & RHS. In this case, just
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003073 // return the value we legalized, returned in the LHS
Gabor Greif1c80d112008-08-28 21:40:38 +00003074 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003075 Result = Tmp1;
3076 break;
3077 }
3078
3079 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
3080 default: assert(0 && "Cannot handle this action for SETCC yet!");
3081 case TargetLowering::Custom:
3082 isCustom = true;
3083 // FALLTHROUGH.
3084 case TargetLowering::Legal:
3085 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3086 if (isCustom) {
3087 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003088 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003089 }
3090 break;
3091 case TargetLowering::Promote: {
3092 // First step, figure out the appropriate operation to use.
3093 // Allow SETCC to not be supported for all legal data types
3094 // Mostly this targets FP
Duncan Sands92c43912008-06-06 12:08:01 +00003095 MVT NewInTy = Node->getOperand(0).getValueType();
3096 MVT OldVT = NewInTy; OldVT = OldVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003097
3098 // Scan for the appropriate larger type to use.
3099 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00003100 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003101
Duncan Sands92c43912008-06-06 12:08:01 +00003102 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003103 "Fell off of the edge of the integer world");
Duncan Sands92c43912008-06-06 12:08:01 +00003104 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003105 "Fell off of the edge of the floating point world");
Scott Michel91099d62009-02-17 22:15:04 +00003106
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003107 // If the target supports SETCC of this type, use it.
Dan Gohman52c51aa2009-01-28 17:46:25 +00003108 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003109 break;
3110 }
Duncan Sands92c43912008-06-06 12:08:01 +00003111 if (NewInTy.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003112 assert(0 && "Cannot promote Legal Integer SETCC yet");
3113 else {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003114 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
3115 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003116 }
3117 Tmp1 = LegalizeOp(Tmp1);
3118 Tmp2 = LegalizeOp(Tmp2);
3119 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3120 Result = LegalizeOp(Result);
3121 break;
3122 }
3123 case TargetLowering::Expand:
3124 // Expand a setcc node into a select_cc of the same condition, lhs, and
3125 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands92c43912008-06-06 12:08:01 +00003126 MVT VT = Node->getValueType(0);
Scott Michel91099d62009-02-17 22:15:04 +00003127 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003128 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
3129 Tmp3);
3130 break;
3131 }
3132 break;
Nate Begeman9a1ce152008-05-12 19:40:03 +00003133 case ISD::VSETCC: {
3134 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3135 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman8181bd12008-07-27 21:46:04 +00003136 SDValue CC = Node->getOperand(2);
Scott Michel91099d62009-02-17 22:15:04 +00003137
Nate Begeman9a1ce152008-05-12 19:40:03 +00003138 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3139
3140 // Everything is legal, see if we should expand this op or something.
3141 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3142 default: assert(0 && "This action is not supported yet!");
3143 case TargetLowering::Legal: break;
3144 case TargetLowering::Custom:
3145 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003146 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9a1ce152008-05-12 19:40:03 +00003147 break;
Mon P Wangec428ad2008-12-13 08:15:14 +00003148 case TargetLowering::Expand: {
3149 // Unroll into a nasty set of scalar code for now.
3150 MVT VT = Node->getValueType(0);
3151 unsigned NumElems = VT.getVectorNumElements();
3152 MVT EltVT = VT.getVectorElementType();
3153 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3154 SmallVector<SDValue, 8> Ops(NumElems);
3155 for (unsigned i = 0; i < NumElems; ++i) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003156 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT,
Mon P Wangec428ad2008-12-13 08:15:14 +00003157 Tmp1, DAG.getIntPtrConstant(i));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003158 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
3159 In1, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3160 TmpEltVT, Tmp2,
3161 DAG.getIntPtrConstant(i)),
Mon P Wang77bc9cd2008-12-17 08:49:47 +00003162 CC);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003163 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i], DAG.getConstant(
Duncan Sands505ba942009-02-01 18:06:53 +00003164 APInt::getAllOnesValue(EltVT.getSizeInBits()),
3165 EltVT), DAG.getConstant(0, EltVT));
Mon P Wangec428ad2008-12-13 08:15:14 +00003166 }
Evan Cheng907a2d22009-02-25 22:49:59 +00003167 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
Mon P Wangec428ad2008-12-13 08:15:14 +00003168 break;
3169 }
Nate Begeman9a1ce152008-05-12 19:40:03 +00003170 }
3171 break;
3172 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003173
3174 case ISD::SHL_PARTS:
3175 case ISD::SRA_PARTS:
3176 case ISD::SRL_PARTS: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003177 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003178 bool Changed = false;
Duncan Sands7d9e3612009-01-31 15:50:11 +00003179 unsigned N = Node->getNumOperands();
3180 for (unsigned i = 0; i + 1 < N; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003181 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3182 Changed |= Ops.back() != Node->getOperand(i);
3183 }
Duncan Sands7d9e3612009-01-31 15:50:11 +00003184 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3185 Changed |= Ops.back() != Node->getOperand(N-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003186 if (Changed)
3187 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
3188
3189 switch (TLI.getOperationAction(Node->getOpcode(),
3190 Node->getValueType(0))) {
3191 default: assert(0 && "This action is not supported yet!");
3192 case TargetLowering::Legal: break;
3193 case TargetLowering::Custom:
3194 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003195 if (Tmp1.getNode()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003196 SDValue Tmp2, RetVal(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003197 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
3198 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman8181bd12008-07-27 21:46:04 +00003199 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00003200 if (i == Op.getResNo())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003201 RetVal = Tmp2;
3202 }
Gabor Greif1c80d112008-08-28 21:40:38 +00003203 assert(RetVal.getNode() && "Illegal result number");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003204 return RetVal;
3205 }
3206 break;
3207 }
3208
3209 // Since these produce multiple values, make sure to remember that we
3210 // legalized all of them.
3211 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman8181bd12008-07-27 21:46:04 +00003212 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00003213 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003214 }
3215
3216 // Binary operators
3217 case ISD::ADD:
3218 case ISD::SUB:
3219 case ISD::MUL:
3220 case ISD::MULHS:
3221 case ISD::MULHU:
3222 case ISD::UDIV:
3223 case ISD::SDIV:
3224 case ISD::AND:
3225 case ISD::OR:
3226 case ISD::XOR:
3227 case ISD::SHL:
3228 case ISD::SRL:
3229 case ISD::SRA:
3230 case ISD::FADD:
3231 case ISD::FSUB:
3232 case ISD::FMUL:
3233 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00003234 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003235 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands7d9e3612009-01-31 15:50:11 +00003236 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begemanbb1ce942008-07-29 15:49:41 +00003237
3238 if ((Node->getOpcode() == ISD::SHL ||
3239 Node->getOpcode() == ISD::SRL ||
3240 Node->getOpcode() == ISD::SRA) &&
Duncan Sands7d9e3612009-01-31 15:50:11 +00003241 !Node->getValueType(0).isVector())
3242 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3243
3244 switch (getTypeAction(Tmp2.getValueType())) {
3245 case Expand: assert(0 && "Not possible");
3246 case Legal:
3247 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3248 break;
3249 case Promote:
3250 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3251 break;
Mon P Wangec428ad2008-12-13 08:15:14 +00003252 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00003253
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003254 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00003255
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003256 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3257 default: assert(0 && "BinOp legalize operation not supported");
3258 case TargetLowering::Legal: break;
3259 case TargetLowering::Custom:
3260 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003261 if (Tmp1.getNode()) {
Nate Begemanbb1ce942008-07-29 15:49:41 +00003262 Result = Tmp1;
3263 break;
Nate Begeman7569e762008-07-29 19:07:27 +00003264 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00003265 // Fall through if the custom lower can't deal with the operation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003266 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00003267 MVT VT = Op.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00003268
Dan Gohman5a199552007-10-08 18:33:35 +00003269 // See if multiply or divide can be lowered using two-result operations.
3270 SDVTList VTs = DAG.getVTList(VT, VT);
3271 if (Node->getOpcode() == ISD::MUL) {
3272 // We just need the low half of the multiply; try both the signed
3273 // and unsigned forms. If the target supports both SMUL_LOHI and
3274 // UMUL_LOHI, form a preference by checking which forms of plain
3275 // MULH it supports.
Dan Gohman52c51aa2009-01-28 17:46:25 +00003276 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3277 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3278 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3279 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman5a199552007-10-08 18:33:35 +00003280 unsigned OpToUse = 0;
3281 if (HasSMUL_LOHI && !HasMULHS) {
3282 OpToUse = ISD::SMUL_LOHI;
3283 } else if (HasUMUL_LOHI && !HasMULHU) {
3284 OpToUse = ISD::UMUL_LOHI;
3285 } else if (HasSMUL_LOHI) {
3286 OpToUse = ISD::SMUL_LOHI;
3287 } else if (HasUMUL_LOHI) {
3288 OpToUse = ISD::UMUL_LOHI;
3289 }
3290 if (OpToUse) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003291 Result = SDValue(DAG.getNode(OpToUse, dl, VTs, Tmp1, Tmp2).getNode(),
3292 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003293 break;
3294 }
3295 }
3296 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003297 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Scott Michel91099d62009-02-17 22:15:04 +00003298 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003299 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003300 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003301 break;
3302 }
Scott Michel91099d62009-02-17 22:15:04 +00003303 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003304 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003305 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl,
3306 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003307 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003308 break;
3309 }
3310 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003311 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michel91099d62009-02-17 22:15:04 +00003312 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003313 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003314 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003315 break;
3316 }
3317 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003318 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003319 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3320 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003321 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003322 break;
3323 }
Mon P Wang26342922008-12-18 20:03:17 +00003324
Dan Gohman6d05cac2007-10-11 23:57:53 +00003325 // Check to see if we have a libcall for this operator.
3326 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3327 bool isSigned = false;
3328 switch (Node->getOpcode()) {
3329 case ISD::UDIV:
3330 case ISD::SDIV:
3331 if (VT == MVT::i32) {
3332 LC = Node->getOpcode() == ISD::UDIV
Mon P Wang1448aad2008-10-30 08:01:45 +00003333 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003334 isSigned = Node->getOpcode() == ISD::SDIV;
3335 }
3336 break;
Chris Lattner48188652008-10-04 21:27:46 +00003337 case ISD::MUL:
3338 if (VT == MVT::i32)
3339 LC = RTLIB::MUL_I32;
sampoa0d77372009-01-24 22:12:48 +00003340 else if (VT == MVT::i64)
Scott Michel81215042008-12-29 03:21:37 +00003341 LC = RTLIB::MUL_I64;
Chris Lattner48188652008-10-04 21:27:46 +00003342 break;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003343 case ISD::FPOW:
Duncan Sands37a3f472008-01-10 10:28:30 +00003344 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3345 RTLIB::POW_PPCF128);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003346 break;
Scott Michel8c67fa42009-01-21 04:58:48 +00003347 case ISD::FDIV:
3348 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3349 RTLIB::DIV_PPCF128);
3350 break;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003351 default: break;
3352 }
3353 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003354 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003355 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003356 break;
3357 }
Scott Michel91099d62009-02-17 22:15:04 +00003358
Duncan Sands92c43912008-06-06 12:08:01 +00003359 assert(Node->getValueType(0).isVector() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003360 "Cannot expand this binary operator!");
3361 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman6d05cac2007-10-11 23:57:53 +00003362 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003363 break;
3364 }
3365 case TargetLowering::Promote: {
3366 switch (Node->getOpcode()) {
3367 default: assert(0 && "Do not know how to promote this BinOp!");
3368 case ISD::AND:
3369 case ISD::OR:
3370 case ISD::XOR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003371 MVT OVT = Node->getValueType(0);
3372 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3373 assert(OVT.isVector() && "Cannot promote this BinOp!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003374 // Bit convert each of the values to the new type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003375 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
3376 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
3377 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003378 // Bit convert the result back the original type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003379 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003380 break;
3381 }
3382 }
3383 }
3384 }
3385 break;
Scott Michel91099d62009-02-17 22:15:04 +00003386
Dan Gohman475cd732007-10-05 14:17:22 +00003387 case ISD::SMUL_LOHI:
3388 case ISD::UMUL_LOHI:
3389 case ISD::SDIVREM:
3390 case ISD::UDIVREM:
3391 // These nodes will only be produced by target-specific lowering, so
3392 // they shouldn't be here if they aren't legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +00003393 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohman475cd732007-10-05 14:17:22 +00003394 "This must be legal!");
Dan Gohman5a199552007-10-08 18:33:35 +00003395
3396 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3397 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3398 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman475cd732007-10-05 14:17:22 +00003399 break;
3400
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003401 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3402 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3403 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3404 case Expand: assert(0 && "Not possible");
3405 case Legal:
3406 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3407 break;
3408 case Promote:
3409 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3410 break;
3411 }
Scott Michel91099d62009-02-17 22:15:04 +00003412
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003413 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00003414
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003415 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3416 default: assert(0 && "Operation not supported");
3417 case TargetLowering::Custom:
3418 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003419 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003420 break;
3421 case TargetLowering::Legal: break;
3422 case TargetLowering::Expand: {
3423 // If this target supports fabs/fneg natively and select is cheap,
3424 // do this efficiently.
3425 if (!TLI.isSelectExpensive() &&
3426 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3427 TargetLowering::Legal &&
3428 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
3429 TargetLowering::Legal) {
3430 // Get the sign bit of the RHS.
Duncan Sands92c43912008-06-06 12:08:01 +00003431 MVT IVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003432 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003433 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, IVT, Tmp2);
3434 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(IVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003435 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3436 // Get the absolute value of the result.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003437 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003438 // Select between the nabs and abs value based on the sign bit of
3439 // the input.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003440 Result = DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
Scott Michel91099d62009-02-17 22:15:04 +00003441 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003442 AbsVal),
3443 AbsVal);
3444 Result = LegalizeOp(Result);
3445 break;
3446 }
Scott Michel91099d62009-02-17 22:15:04 +00003447
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003448 // Otherwise, do bitwise ops!
Duncan Sands92c43912008-06-06 12:08:01 +00003449 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003450 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3451 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003452 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003453 Result = LegalizeOp(Result);
3454 break;
3455 }
3456 }
3457 break;
Scott Michel91099d62009-02-17 22:15:04 +00003458
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003459 case ISD::ADDC:
3460 case ISD::SUBC:
3461 Tmp1 = LegalizeOp(Node->getOperand(0));
3462 Tmp2 = LegalizeOp(Node->getOperand(1));
3463 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003464 Tmp3 = Result.getValue(0);
3465 Tmp4 = Result.getValue(1);
3466
3467 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3468 default: assert(0 && "This action is not supported yet!");
3469 case TargetLowering::Legal:
3470 break;
3471 case TargetLowering::Custom:
3472 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3473 if (Tmp1.getNode() != NULL) {
Sanjiv Guptad57f2e12008-11-27 05:58:04 +00003474 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003475 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3476 }
3477 break;
3478 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003479 // Since this produces two values, make sure to remember that we legalized
3480 // both of them.
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003481 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3482 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3483 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003484
3485 case ISD::ADDE:
3486 case ISD::SUBE:
3487 Tmp1 = LegalizeOp(Node->getOperand(0));
3488 Tmp2 = LegalizeOp(Node->getOperand(1));
3489 Tmp3 = LegalizeOp(Node->getOperand(2));
3490 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003491 Tmp3 = Result.getValue(0);
3492 Tmp4 = Result.getValue(1);
3493
3494 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3495 default: assert(0 && "This action is not supported yet!");
3496 case TargetLowering::Legal:
3497 break;
3498 case TargetLowering::Custom:
3499 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3500 if (Tmp1.getNode() != NULL) {
Sanjiv Guptad57f2e12008-11-27 05:58:04 +00003501 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003502 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3503 }
3504 break;
3505 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003506 // Since this produces two values, make sure to remember that we legalized
3507 // both of them.
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003508 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3509 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3510 return Op.getResNo() ? Tmp4 : Tmp3;
Scott Michel91099d62009-02-17 22:15:04 +00003511
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003512 case ISD::BUILD_PAIR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003513 MVT PairTy = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003514 // TODO: handle the case where the Lo and Hi operands are not of legal type
3515 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3516 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3517 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
3518 case TargetLowering::Promote:
3519 case TargetLowering::Custom:
3520 assert(0 && "Cannot promote/custom this yet!");
3521 case TargetLowering::Legal:
3522 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003523 Result = DAG.getNode(ISD::BUILD_PAIR, dl, PairTy, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003524 break;
3525 case TargetLowering::Expand:
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003526 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Tmp1);
3527 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Tmp2);
3528 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003529 DAG.getConstant(PairTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003530 TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003531 Result = DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003532 break;
3533 }
3534 break;
3535 }
3536
3537 case ISD::UREM:
3538 case ISD::SREM:
3539 case ISD::FREM:
3540 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3541 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3542
3543 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3544 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3545 case TargetLowering::Custom:
3546 isCustom = true;
3547 // FALLTHROUGH
3548 case TargetLowering::Legal:
3549 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3550 if (isCustom) {
3551 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003552 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003553 }
3554 break;
Dan Gohman5a199552007-10-08 18:33:35 +00003555 case TargetLowering::Expand: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003556 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
3557 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands92c43912008-06-06 12:08:01 +00003558 MVT VT = Node->getValueType(0);
Scott Michel91099d62009-02-17 22:15:04 +00003559
Dan Gohman5a199552007-10-08 18:33:35 +00003560 // See if remainder can be lowered using two-result operations.
3561 SDVTList VTs = DAG.getVTList(VT, VT);
3562 if (Node->getOpcode() == ISD::SREM &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003563 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michel91099d62009-02-17 22:15:04 +00003564 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003565 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003566 break;
3567 }
3568 if (Node->getOpcode() == ISD::UREM &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003569 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003570 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3571 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003572 break;
3573 }
3574
Duncan Sands92c43912008-06-06 12:08:01 +00003575 if (VT.isInteger()) {
Dan Gohman5a199552007-10-08 18:33:35 +00003576 if (TLI.getOperationAction(DivOpc, VT) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003577 TargetLowering::Legal) {
3578 // X % Y -> X-X/Y*Y
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003579 Result = DAG.getNode(DivOpc, dl, VT, Tmp1, Tmp2);
3580 Result = DAG.getNode(ISD::MUL, dl, VT, Result, Tmp2);
3581 Result = DAG.getNode(ISD::SUB, dl, VT, Tmp1, Result);
Duncan Sands92c43912008-06-06 12:08:01 +00003582 } else if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003583 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003584 } else {
Dan Gohman5a199552007-10-08 18:33:35 +00003585 assert(VT == MVT::i32 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003586 "Cannot expand this binary operator!");
3587 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3588 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman8181bd12008-07-27 21:46:04 +00003589 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003590 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003591 }
Dan Gohman59b4b102007-11-06 22:11:54 +00003592 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00003593 assert(VT.isFloatingPoint() &&
Dan Gohman59b4b102007-11-06 22:11:54 +00003594 "remainder op must have integer or floating-point type");
Duncan Sands92c43912008-06-06 12:08:01 +00003595 if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003596 Result = LegalizeOp(UnrollVectorOp(Op));
3597 } else {
3598 // Floating point mod -> fmod libcall.
Duncan Sands37a3f472008-01-10 10:28:30 +00003599 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3600 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003601 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003602 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003603 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003604 }
3605 break;
3606 }
Dan Gohman5a199552007-10-08 18:33:35 +00003607 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003608 break;
3609 case ISD::VAARG: {
3610 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3611 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3612
Duncan Sands92c43912008-06-06 12:08:01 +00003613 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003614 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3615 default: assert(0 && "This action is not supported yet!");
3616 case TargetLowering::Custom:
3617 isCustom = true;
3618 // FALLTHROUGH
3619 case TargetLowering::Legal:
3620 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3621 Result = Result.getValue(0);
3622 Tmp1 = Result.getValue(1);
3623
3624 if (isCustom) {
3625 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003626 if (Tmp2.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003627 Result = LegalizeOp(Tmp2);
3628 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3629 }
3630 }
3631 break;
3632 case TargetLowering::Expand: {
Dan Gohman12a9c082008-02-06 22:27:42 +00003633 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003634 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003635 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003636 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sandsd68f13b2009-01-12 20:38:59 +00003637 DAG.getConstant(TLI.getTargetData()->
3638 getTypePaddedSize(VT.getTypeForMVT()),
3639 TLI.getPointerTy()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003640 // Store the incremented VAList to the legalized pointer
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003641 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003642 // Load the actual argument out of the pointer VAList
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003643 Result = DAG.getLoad(VT, dl, Tmp3, VAList, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003644 Tmp1 = LegalizeOp(Result.getValue(1));
3645 Result = LegalizeOp(Result);
3646 break;
3647 }
3648 }
Scott Michel91099d62009-02-17 22:15:04 +00003649 // Since VAARG produces two values, make sure to remember that we
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003650 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003651 AddLegalizedOperand(SDValue(Node, 0), Result);
3652 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00003653 return Op.getResNo() ? Tmp1 : Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003654 }
Scott Michel91099d62009-02-17 22:15:04 +00003655
3656 case ISD::VACOPY:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003657 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3658 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3659 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3660
3661 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3662 default: assert(0 && "This action is not supported yet!");
3663 case TargetLowering::Custom:
3664 isCustom = true;
3665 // FALLTHROUGH
3666 case TargetLowering::Legal:
3667 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3668 Node->getOperand(3), Node->getOperand(4));
3669 if (isCustom) {
3670 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003671 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003672 }
3673 break;
3674 case TargetLowering::Expand:
3675 // This defaults to loading a pointer from the input and storing it to the
3676 // output, returning the chain.
Dan Gohman12a9c082008-02-06 22:27:42 +00003677 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3678 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003679 Tmp4 = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp3, VS, 0);
3680 Result = DAG.getStore(Tmp4.getValue(1), dl, Tmp4, Tmp2, VD, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003681 break;
3682 }
3683 break;
3684
Scott Michel91099d62009-02-17 22:15:04 +00003685 case ISD::VAEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003686 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3687 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3688
3689 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3690 default: assert(0 && "This action is not supported yet!");
3691 case TargetLowering::Custom:
3692 isCustom = true;
3693 // FALLTHROUGH
3694 case TargetLowering::Legal:
3695 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3696 if (isCustom) {
3697 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003698 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003699 }
3700 break;
3701 case TargetLowering::Expand:
3702 Result = Tmp1; // Default to a no-op, return the chain
3703 break;
3704 }
3705 break;
Scott Michel91099d62009-02-17 22:15:04 +00003706
3707 case ISD::VASTART:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003708 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3709 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3710
3711 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michel91099d62009-02-17 22:15:04 +00003712
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003713 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3714 default: assert(0 && "This action is not supported yet!");
3715 case TargetLowering::Legal: break;
3716 case TargetLowering::Custom:
3717 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003718 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003719 break;
3720 }
3721 break;
Scott Michel91099d62009-02-17 22:15:04 +00003722
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003723 case ISD::ROTL:
3724 case ISD::ROTR:
3725 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands7d9e3612009-01-31 15:50:11 +00003726 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003727 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3728 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3729 default:
3730 assert(0 && "ROTL/ROTR legalize operation not supported");
3731 break;
3732 case TargetLowering::Legal:
3733 break;
3734 case TargetLowering::Custom:
3735 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003736 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003737 break;
3738 case TargetLowering::Promote:
3739 assert(0 && "Do not know how to promote ROTL/ROTR");
3740 break;
3741 case TargetLowering::Expand:
3742 assert(0 && "Do not know how to expand ROTL/ROTR");
3743 break;
3744 }
3745 break;
Scott Michel91099d62009-02-17 22:15:04 +00003746
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003747 case ISD::BSWAP:
3748 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3749 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3750 case TargetLowering::Custom:
3751 assert(0 && "Cannot custom legalize this yet!");
3752 case TargetLowering::Legal:
3753 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3754 break;
3755 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003756 MVT OVT = Tmp1.getValueType();
3757 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3758 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003759
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003760 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
3761 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3762 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003763 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3764 break;
3765 }
3766 case TargetLowering::Expand:
Dale Johannesen82b5b722009-02-02 22:12:50 +00003767 Result = ExpandBSWAP(Tmp1, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003768 break;
3769 }
3770 break;
Scott Michel91099d62009-02-17 22:15:04 +00003771
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003772 case ISD::CTPOP:
3773 case ISD::CTTZ:
3774 case ISD::CTLZ:
3775 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3776 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel48b63e62007-07-30 21:00:31 +00003777 case TargetLowering::Custom:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003778 case TargetLowering::Legal:
3779 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel48b63e62007-07-30 21:00:31 +00003780 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michelbc62b412007-08-02 02:22:46 +00003781 TargetLowering::Custom) {
3782 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003783 if (Tmp1.getNode()) {
Scott Michelbc62b412007-08-02 02:22:46 +00003784 Result = Tmp1;
3785 }
Scott Michel48b63e62007-07-30 21:00:31 +00003786 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003787 break;
3788 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003789 MVT OVT = Tmp1.getValueType();
3790 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003791
3792 // Zero extend the argument.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003793 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003794 // Perform the larger operation, then subtract if needed.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003795 Tmp1 = DAG.getNode(Node->getOpcode(), dl, Node->getValueType(0), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003796 switch (Node->getOpcode()) {
3797 case ISD::CTPOP:
3798 Result = Tmp1;
3799 break;
3800 case ISD::CTTZ:
3801 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003802 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
3803 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003804 ISD::SETEQ);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003805 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003806 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003807 break;
3808 case ISD::CTLZ:
3809 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003810 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00003811 DAG.getConstant(NVT.getSizeInBits() -
3812 OVT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003813 break;
3814 }
3815 break;
3816 }
3817 case TargetLowering::Expand:
Dale Johannesen82b5b722009-02-02 22:12:50 +00003818 Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003819 break;
3820 }
3821 break;
3822
3823 // Unary operators
3824 case ISD::FABS:
3825 case ISD::FNEG:
3826 case ISD::FSQRT:
3827 case ISD::FSIN:
3828 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003829 case ISD::FLOG:
3830 case ISD::FLOG2:
3831 case ISD::FLOG10:
3832 case ISD::FEXP:
3833 case ISD::FEXP2:
Dan Gohmanc8b20e22008-08-21 17:55:02 +00003834 case ISD::FTRUNC:
3835 case ISD::FFLOOR:
3836 case ISD::FCEIL:
3837 case ISD::FRINT:
3838 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003839 Tmp1 = LegalizeOp(Node->getOperand(0));
3840 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3841 case TargetLowering::Promote:
3842 case TargetLowering::Custom:
3843 isCustom = true;
3844 // FALLTHROUGH
3845 case TargetLowering::Legal:
3846 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3847 if (isCustom) {
3848 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003849 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003850 }
3851 break;
3852 case TargetLowering::Expand:
3853 switch (Node->getOpcode()) {
3854 default: assert(0 && "Unreachable!");
3855 case ISD::FNEG:
3856 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3857 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003858 Result = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp2, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003859 break;
3860 case ISD::FABS: {
3861 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands92c43912008-06-06 12:08:01 +00003862 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003863 Tmp2 = DAG.getConstantFP(0.0, VT);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003864 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00003865 Tmp1, Tmp2, ISD::SETUGT);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003866 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3867 Result = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003868 break;
3869 }
Evan Cheng1fac6952008-09-09 23:35:53 +00003870 case ISD::FSQRT:
3871 case ISD::FSIN:
Scott Michel91099d62009-02-17 22:15:04 +00003872 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003873 case ISD::FLOG:
3874 case ISD::FLOG2:
3875 case ISD::FLOG10:
3876 case ISD::FEXP:
3877 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00003878 case ISD::FTRUNC:
3879 case ISD::FFLOOR:
3880 case ISD::FCEIL:
3881 case ISD::FRINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00003882 case ISD::FNEARBYINT: {
Duncan Sands92c43912008-06-06 12:08:01 +00003883 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003884
3885 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003886 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003887 Result = LegalizeOp(UnrollVectorOp(Op));
3888 break;
3889 }
3890
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003891 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3892 switch(Node->getOpcode()) {
3893 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00003894 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3895 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003896 break;
3897 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00003898 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3899 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003900 break;
3901 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00003902 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3903 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003904 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00003905 case ISD::FLOG:
3906 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3907 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3908 break;
3909 case ISD::FLOG2:
3910 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3911 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3912 break;
3913 case ISD::FLOG10:
3914 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3915 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3916 break;
3917 case ISD::FEXP:
3918 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3919 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3920 break;
3921 case ISD::FEXP2:
3922 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3923 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3924 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00003925 case ISD::FTRUNC:
3926 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3927 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3928 break;
3929 case ISD::FFLOOR:
3930 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3931 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3932 break;
3933 case ISD::FCEIL:
3934 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3935 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3936 break;
3937 case ISD::FRINT:
3938 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3939 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3940 break;
3941 case ISD::FNEARBYINT:
3942 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3943 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3944 break;
Evan Cheng1fac6952008-09-09 23:35:53 +00003945 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003946 default: assert(0 && "Unreachable!");
3947 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003948 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003949 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003950 break;
3951 }
3952 }
3953 break;
3954 }
3955 break;
3956 case ISD::FPOWI: {
Duncan Sands92c43912008-06-06 12:08:01 +00003957 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003958
3959 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003960 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003961 Result = LegalizeOp(UnrollVectorOp(Op));
3962 break;
3963 }
3964
3965 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands37a3f472008-01-10 10:28:30 +00003966 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3967 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003968 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003969 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003970 break;
3971 }
3972 case ISD::BIT_CONVERT:
3973 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003974 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00003975 Node->getValueType(0), dl);
Duncan Sands92c43912008-06-06 12:08:01 +00003976 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003977 // The input has to be a vector type, we have to either scalarize it, pack
3978 // it, or convert it based on whether the input vector type is legal.
Gabor Greif1c80d112008-08-28 21:40:38 +00003979 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00003980 int InIx = Node->getOperand(0).getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00003981 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3982 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michel91099d62009-02-17 22:15:04 +00003983
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003984 // Figure out if there is a simple type corresponding to this Vector
3985 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00003986 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003987 if (TLI.isTypeLegal(TVT)) {
3988 // Turn this into a bit convert of the vector input.
Scott Michel91099d62009-02-17 22:15:04 +00003989 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003990 LegalizeOp(Node->getOperand(0)));
3991 break;
3992 } else if (NumElems == 1) {
3993 // Turn this into a bit convert of the scalar input.
Scott Michel91099d62009-02-17 22:15:04 +00003994 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003995 ScalarizeVectorOp(Node->getOperand(0)));
3996 break;
3997 } else {
3998 // FIXME: UNIMP! Store then reload
3999 assert(0 && "Cast from unsupported vector type not implemented yet!");
4000 }
4001 } else {
4002 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
4003 Node->getOperand(0).getValueType())) {
4004 default: assert(0 && "Unknown operation action!");
4005 case TargetLowering::Expand:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004006 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00004007 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004008 break;
4009 case TargetLowering::Legal:
4010 Tmp1 = LegalizeOp(Node->getOperand(0));
4011 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4012 break;
4013 }
4014 }
4015 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004016 case ISD::CONVERT_RNDSAT: {
4017 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4018 switch (CvtCode) {
4019 default: assert(0 && "Unknown cvt code!");
4020 case ISD::CVT_SF:
4021 case ISD::CVT_UF:
Mon P Wang73d31542008-11-10 20:54:11 +00004022 case ISD::CVT_FF:
Mon P Wang2fc3f9e2008-12-09 07:27:39 +00004023 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004024 case ISD::CVT_FS:
4025 case ISD::CVT_FU:
4026 case ISD::CVT_SS:
4027 case ISD::CVT_SU:
4028 case ISD::CVT_US:
4029 case ISD::CVT_UU: {
4030 SDValue DTyOp = Node->getOperand(1);
4031 SDValue STyOp = Node->getOperand(2);
4032 SDValue RndOp = Node->getOperand(3);
4033 SDValue SatOp = Node->getOperand(4);
4034 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4035 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4036 case Legal:
4037 Tmp1 = LegalizeOp(Node->getOperand(0));
4038 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
4039 RndOp, SatOp);
4040 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4041 TargetLowering::Custom) {
4042 Tmp1 = TLI.LowerOperation(Result, DAG);
4043 if (Tmp1.getNode()) Result = Tmp1;
4044 }
4045 break;
4046 case Promote:
4047 Result = PromoteOp(Node->getOperand(0));
4048 // For FP, make Op1 a i32
Scott Michel91099d62009-02-17 22:15:04 +00004049
Dale Johannesen564036c2009-02-04 00:13:36 +00004050 Result = DAG.getConvertRndSat(Op.getValueType(), dl, Result,
Mon P Wang73d31542008-11-10 20:54:11 +00004051 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4052 break;
4053 }
4054 break;
4055 }
4056 } // end switch CvtCode
4057 break;
4058 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004059 // Conversion operators. The source and destination have different types.
4060 case ISD::SINT_TO_FP:
4061 case ISD::UINT_TO_FP: {
4062 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman29c3cef2008-08-14 20:04:46 +00004063 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesen9972b632009-02-02 19:03:57 +00004064 Node->getValueType(0), Node->getOperand(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004065 break;
4066 }
4067 case ISD::TRUNCATE:
4068 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4069 case Legal:
4070 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michele9b8a402008-12-02 19:55:08 +00004071 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4072 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4073 case TargetLowering::Custom:
Mon P Wang72fe5462008-12-11 00:44:22 +00004074 isCustom = true;
4075 // FALLTHROUGH
Scott Michele9b8a402008-12-02 19:55:08 +00004076 case TargetLowering::Legal:
Mon P Wang72fe5462008-12-11 00:44:22 +00004077 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4078 if (isCustom) {
4079 Tmp1 = TLI.LowerOperation(Result, DAG);
4080 if (Tmp1.getNode()) Result = Tmp1;
4081 }
4082 break;
Mon P Wang83edba52008-12-12 01:25:51 +00004083 case TargetLowering::Expand:
4084 assert(Result.getValueType().isVector() && "must be vector type");
4085 // Unroll the truncate. We should do better.
4086 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerbfc55ee2008-12-02 12:12:25 +00004087 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004088 break;
4089 case Expand:
4090 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4091
4092 // Since the result is legal, we should just be able to truncate the low
4093 // part of the source.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004094 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004095 break;
4096 case Promote:
4097 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004098 Result = DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004099 break;
4100 }
4101 break;
4102
4103 case ISD::FP_TO_SINT:
4104 case ISD::FP_TO_UINT:
4105 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4106 case Legal:
4107 Tmp1 = LegalizeOp(Node->getOperand(0));
4108
4109 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4110 default: assert(0 && "Unknown operation action!");
4111 case TargetLowering::Custom:
4112 isCustom = true;
4113 // FALLTHROUGH
4114 case TargetLowering::Legal:
4115 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4116 if (isCustom) {
4117 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004118 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004119 }
4120 break;
4121 case TargetLowering::Promote:
4122 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Scott Michel91099d62009-02-17 22:15:04 +00004123 Node->getOpcode() == ISD::FP_TO_SINT,
Dale Johannesen9972b632009-02-02 19:03:57 +00004124 dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004125 break;
4126 case TargetLowering::Expand:
4127 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004128 SDValue True, False;
Duncan Sands92c43912008-06-06 12:08:01 +00004129 MVT VT = Node->getOperand(0).getValueType();
4130 MVT NVT = Node->getValueType(0);
Dale Johannesen958b08b2007-09-19 23:55:34 +00004131 const uint64_t zero[] = {0, 0};
Duncan Sands92c43912008-06-06 12:08:01 +00004132 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4133 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohman88ae8c52008-02-29 01:44:25 +00004134 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen958b08b2007-09-19 23:55:34 +00004135 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel91099d62009-02-17 22:15:04 +00004136 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
Dale Johannesen9972b632009-02-02 19:03:57 +00004137 Node->getOperand(0),
Duncan Sands4a361272009-01-01 15:52:00 +00004138 Tmp2, ISD::SETLT);
Dale Johannesen9972b632009-02-02 19:03:57 +00004139 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4140 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
Scott Michel91099d62009-02-17 22:15:04 +00004141 DAG.getNode(ISD::FSUB, dl, VT,
Dale Johannesen9972b632009-02-02 19:03:57 +00004142 Node->getOperand(0), Tmp2));
4143 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohman88ae8c52008-02-29 01:44:25 +00004144 DAG.getConstant(x, NVT));
Dale Johannesen9972b632009-02-02 19:03:57 +00004145 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004146 break;
4147 } else {
4148 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4149 }
4150 break;
4151 }
4152 break;
4153 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00004154 MVT VT = Op.getValueType();
4155 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesend3b6af32007-10-11 23:32:15 +00004156 // Convert ppcf128 to i32
Dale Johannesen3d8578b2007-10-10 01:01:31 +00004157 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner5872a362008-01-17 07:00:52 +00004158 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Scott Michel91099d62009-02-17 22:15:04 +00004159 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner5872a362008-01-17 07:00:52 +00004160 Node->getOperand(0), DAG.getValueType(MVT::f64));
Scott Michel91099d62009-02-17 22:15:04 +00004161 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner5872a362008-01-17 07:00:52 +00004162 DAG.getIntPtrConstant(1));
Dale Johannesen9972b632009-02-02 19:03:57 +00004163 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner5872a362008-01-17 07:00:52 +00004164 } else {
Dale Johannesend3b6af32007-10-11 23:32:15 +00004165 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4166 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4167 Tmp2 = DAG.getConstantFP(apf, OVT);
4168 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4169 // FIXME: generated code sucks.
Scott Michel91099d62009-02-17 22:15:04 +00004170 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
Dale Johannesen9972b632009-02-02 19:03:57 +00004171 Tmp2,
4172 DAG.getNode(ISD::ADD, dl, MVT::i32,
4173 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4174 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesend3b6af32007-10-11 23:32:15 +00004175 Node->getOperand(0), Tmp2)),
4176 DAG.getConstant(0x80000000, MVT::i32)),
Scott Michel91099d62009-02-17 22:15:04 +00004177 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesend3b6af32007-10-11 23:32:15 +00004178 Node->getOperand(0)),
4179 DAG.getCondCode(ISD::SETGE));
4180 }
Dale Johannesen3d8578b2007-10-10 01:01:31 +00004181 break;
4182 }
Dan Gohmanec51f642008-03-10 23:03:31 +00004183 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsf68dffb2008-07-17 02:36:29 +00004184 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4185 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4186 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman8181bd12008-07-27 21:46:04 +00004187 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00004188 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004189 break;
4190 }
4191 case Promote:
4192 Tmp1 = PromoteOp(Node->getOperand(0));
4193 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4194 Result = LegalizeOp(Result);
4195 break;
4196 }
4197 break;
4198
Chris Lattner56ecde32008-01-16 06:57:07 +00004199 case ISD::FP_EXTEND: {
Duncan Sands92c43912008-06-06 12:08:01 +00004200 MVT DstVT = Op.getValueType();
4201 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00004202 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4203 // The only other way we can lower this is to turn it into a STORE,
4204 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen82b5b722009-02-02 22:12:50 +00004205 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl);
Chris Lattner5872a362008-01-17 07:00:52 +00004206 break;
Chris Lattner56ecde32008-01-16 06:57:07 +00004207 }
4208 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4209 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4210 case Legal:
4211 Tmp1 = LegalizeOp(Node->getOperand(0));
4212 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4213 break;
4214 case Promote:
4215 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004216 Result = DAG.getNode(ISD::FP_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattner56ecde32008-01-16 06:57:07 +00004217 break;
4218 }
4219 break;
Chris Lattner5872a362008-01-17 07:00:52 +00004220 }
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00004221 case ISD::FP_ROUND: {
Duncan Sands92c43912008-06-06 12:08:01 +00004222 MVT DstVT = Op.getValueType();
4223 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00004224 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4225 if (SrcVT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004226 SDValue Lo;
Dale Johannesena0d36082008-01-20 01:18:38 +00004227 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner5872a362008-01-17 07:00:52 +00004228 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesena0d36082008-01-20 01:18:38 +00004229 if (DstVT!=MVT::f64)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004230 Result = DAG.getNode(ISD::FP_ROUND, dl,
4231 DstVT, Result, Op.getOperand(1));
Chris Lattner5872a362008-01-17 07:00:52 +00004232 break;
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00004233 }
Chris Lattner5872a362008-01-17 07:00:52 +00004234 // The only other way we can lower this is to turn it into a STORE,
4235 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen82b5b722009-02-02 22:12:50 +00004236 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl);
Chris Lattner5872a362008-01-17 07:00:52 +00004237 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004238 }
Chris Lattner56ecde32008-01-16 06:57:07 +00004239 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4240 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4241 case Legal:
4242 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner5872a362008-01-17 07:00:52 +00004243 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00004244 break;
4245 case Promote:
4246 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004247 Result = DAG.getNode(ISD::FP_ROUND, dl, Op.getValueType(), Tmp1,
Chris Lattner5872a362008-01-17 07:00:52 +00004248 Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00004249 break;
4250 }
4251 break;
Chris Lattner5872a362008-01-17 07:00:52 +00004252 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004253 case ISD::ANY_EXTEND:
4254 case ISD::ZERO_EXTEND:
4255 case ISD::SIGN_EXTEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004256 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4257 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4258 case Legal:
4259 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michelac54d002008-04-30 00:26:38 +00004260 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michelac7091c2008-02-15 23:05:48 +00004261 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4262 TargetLowering::Custom) {
Scott Michelac54d002008-04-30 00:26:38 +00004263 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004264 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelac7091c2008-02-15 23:05:48 +00004265 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004266 break;
4267 case Promote:
4268 switch (Node->getOpcode()) {
4269 case ISD::ANY_EXTEND:
4270 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004271 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004272 break;
4273 case ISD::ZERO_EXTEND:
4274 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004275 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4276 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004277 Node->getOperand(0).getValueType());
4278 break;
4279 case ISD::SIGN_EXTEND:
4280 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004281 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4282 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004283 Result,
4284 DAG.getValueType(Node->getOperand(0).getValueType()));
4285 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004286 }
4287 }
4288 break;
4289 case ISD::FP_ROUND_INREG:
4290 case ISD::SIGN_EXTEND_INREG: {
4291 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004292 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004293
4294 // If this operation is not supported, convert it to a shl/shr or load/store
4295 // pair.
4296 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4297 default: assert(0 && "This action not supported for this op yet!");
4298 case TargetLowering::Legal:
4299 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
4300 break;
4301 case TargetLowering::Expand:
4302 // If this is an integer extend and shifts are supported, do that.
4303 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
4304 // NOTE: we could fall back on load/store here too for targets without
4305 // SAR. However, it is doubtful that any exist.
Duncan Sands92c43912008-06-06 12:08:01 +00004306 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4307 ExtraVT.getSizeInBits();
Dan Gohman8181bd12008-07-27 21:46:04 +00004308 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004309 Result = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004310 Node->getOperand(0), ShiftCst);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004311 Result = DAG.getNode(ISD::SRA, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004312 Result, ShiftCst);
4313 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
4314 // The only way we can lower this is to turn it into a TRUNCSTORE,
4315 // EXTLOAD pair, targetting a temporary location (a stack slot).
4316
4317 // NOTE: there is a choice here between constantly creating new stack
4318 // slots and always reusing the same one. We currently always create
4319 // new ones, as reuse may inhibit scheduling.
Scott Michel91099d62009-02-17 22:15:04 +00004320 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00004321 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004322 } else {
4323 assert(0 && "Unknown op");
4324 }
4325 break;
4326 }
4327 break;
4328 }
Duncan Sands38947cd2007-07-27 12:58:54 +00004329 case ISD::TRAMPOLINE: {
Dan Gohman8181bd12008-07-27 21:46:04 +00004330 SDValue Ops[6];
Duncan Sands38947cd2007-07-27 12:58:54 +00004331 for (unsigned i = 0; i != 6; ++i)
4332 Ops[i] = LegalizeOp(Node->getOperand(i));
4333 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4334 // The only option for this node is to custom lower it.
4335 Result = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004336 assert(Result.getNode() && "Should always custom lower!");
Duncan Sands7407a9f2007-09-11 14:10:23 +00004337
4338 // Since trampoline produces two values, make sure to remember that we
4339 // legalized both of them.
4340 Tmp1 = LegalizeOp(Result.getValue(1));
4341 Result = LegalizeOp(Result);
Dan Gohman8181bd12008-07-27 21:46:04 +00004342 AddLegalizedOperand(SDValue(Node, 0), Result);
4343 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00004344 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands38947cd2007-07-27 12:58:54 +00004345 }
Dan Gohmane8e4a412008-05-14 00:43:10 +00004346 case ISD::FLT_ROUNDS_: {
Duncan Sands92c43912008-06-06 12:08:01 +00004347 MVT VT = Node->getValueType(0);
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004348 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4349 default: assert(0 && "This action not supported for this op yet!");
4350 case TargetLowering::Custom:
4351 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004352 if (Result.getNode()) break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004353 // Fall Thru
4354 case TargetLowering::Legal:
4355 // If this operation is not supported, lower it to constant 1
4356 Result = DAG.getConstant(1, VT);
4357 break;
4358 }
Dan Gohmane09dc8c2008-05-12 16:07:15 +00004359 break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004360 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00004361 case ISD::TRAP: {
Duncan Sands92c43912008-06-06 12:08:01 +00004362 MVT VT = Node->getValueType(0);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004363 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4364 default: assert(0 && "This action not supported for this op yet!");
Chris Lattnere99bbb72008-01-15 21:58:08 +00004365 case TargetLowering::Legal:
4366 Tmp1 = LegalizeOp(Node->getOperand(0));
4367 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4368 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004369 case TargetLowering::Custom:
4370 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004371 if (Result.getNode()) break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004372 // Fall Thru
Chris Lattnere99bbb72008-01-15 21:58:08 +00004373 case TargetLowering::Expand:
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004374 // If this operation is not supported, lower it to 'abort()' call
Chris Lattnere99bbb72008-01-15 21:58:08 +00004375 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004376 TargetLowering::ArgListTy Args;
Dan Gohman8181bd12008-07-27 21:46:04 +00004377 std::pair<SDValue,SDValue> CallResult =
Duncan Sandsead972e2008-02-14 17:28:50 +00004378 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen67cc9b62008-09-26 19:31:26 +00004379 false, false, false, false, CallingConv::C, false,
Bill Wendlingfef06052008-09-16 21:48:12 +00004380 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesenca6237b2009-01-30 23:10:59 +00004381 Args, DAG, dl);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004382 Result = CallResult.second;
4383 break;
4384 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00004385 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004386 }
Bill Wendling913dcf32008-11-22 00:22:52 +00004387
Bill Wendling7e04be62008-12-09 22:08:41 +00004388 case ISD::SADDO:
4389 case ISD::SSUBO: {
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004390 MVT VT = Node->getValueType(0);
4391 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4392 default: assert(0 && "This action not supported for this op yet!");
4393 case TargetLowering::Custom:
4394 Result = TLI.LowerOperation(Op, DAG);
4395 if (Result.getNode()) break;
4396 // FALLTHROUGH
4397 case TargetLowering::Legal: {
4398 SDValue LHS = LegalizeOp(Node->getOperand(0));
4399 SDValue RHS = LegalizeOp(Node->getOperand(1));
4400
Scott Michel91099d62009-02-17 22:15:04 +00004401 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004402 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling7e04be62008-12-09 22:08:41 +00004403 LHS, RHS);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004404 MVT OType = Node->getValueType(1);
4405
Bill Wendlingc65e6e42008-11-25 08:19:22 +00004406 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004407
Bill Wendlingcf4de122008-11-25 19:40:17 +00004408 // LHSSign -> LHS >= 0
4409 // RHSSign -> RHS >= 0
4410 // SumSign -> Sum >= 0
4411 //
Bill Wendling7e04be62008-12-09 22:08:41 +00004412 // Add:
Bill Wendlingcf4de122008-11-25 19:40:17 +00004413 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling7e04be62008-12-09 22:08:41 +00004414 // Sub:
4415 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendlingcf4de122008-11-25 19:40:17 +00004416 //
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004417 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
4418 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
Scott Michel91099d62009-02-17 22:15:04 +00004419 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
4420 Node->getOpcode() == ISD::SADDO ?
Bill Wendling7e04be62008-12-09 22:08:41 +00004421 ISD::SETEQ : ISD::SETNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004422
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004423 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
4424 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004425
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004426 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004427
4428 MVT ValueVTs[] = { LHS.getValueType(), OType };
4429 SDValue Ops[] = { Sum, Cmp };
4430
Scott Michel91099d62009-02-17 22:15:04 +00004431 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004432 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sands42d7bb82008-12-01 11:41:29 +00004433 &Ops[0], 2);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004434 SDNode *RNode = Result.getNode();
4435 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4436 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4437 break;
4438 }
4439 }
4440
4441 break;
4442 }
Bill Wendling7e04be62008-12-09 22:08:41 +00004443 case ISD::UADDO:
4444 case ISD::USUBO: {
Bill Wendling4c134df2008-11-24 19:21:46 +00004445 MVT VT = Node->getValueType(0);
4446 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4447 default: assert(0 && "This action not supported for this op yet!");
4448 case TargetLowering::Custom:
4449 Result = TLI.LowerOperation(Op, DAG);
4450 if (Result.getNode()) break;
4451 // FALLTHROUGH
4452 case TargetLowering::Legal: {
4453 SDValue LHS = LegalizeOp(Node->getOperand(0));
4454 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling913dcf32008-11-22 00:22:52 +00004455
Bill Wendling7e04be62008-12-09 22:08:41 +00004456 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004457 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling7e04be62008-12-09 22:08:41 +00004458 LHS, RHS);
Bill Wendling4c134df2008-11-24 19:21:46 +00004459 MVT OType = Node->getValueType(1);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004460 SDValue Cmp = DAG.getSetCC(dl, OType, Sum, LHS,
Scott Michel91099d62009-02-17 22:15:04 +00004461 Node->getOpcode () == ISD::UADDO ?
Bill Wendling7e04be62008-12-09 22:08:41 +00004462 ISD::SETULT : ISD::SETUGT);
Bill Wendling913dcf32008-11-22 00:22:52 +00004463
Bill Wendling4c134df2008-11-24 19:21:46 +00004464 MVT ValueVTs[] = { LHS.getValueType(), OType };
4465 SDValue Ops[] = { Sum, Cmp };
Bill Wendling913dcf32008-11-22 00:22:52 +00004466
Scott Michel91099d62009-02-17 22:15:04 +00004467 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004468 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sands42d7bb82008-12-01 11:41:29 +00004469 &Ops[0], 2);
Bill Wendling4c134df2008-11-24 19:21:46 +00004470 SDNode *RNode = Result.getNode();
4471 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4472 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4473 break;
4474 }
4475 }
4476
Bill Wendling913dcf32008-11-22 00:22:52 +00004477 break;
4478 }
Bill Wendling7e04be62008-12-09 22:08:41 +00004479 case ISD::SMULO:
4480 case ISD::UMULO: {
4481 MVT VT = Node->getValueType(0);
4482 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4483 default: assert(0 && "This action is not supported at all!");
4484 case TargetLowering::Custom:
4485 Result = TLI.LowerOperation(Op, DAG);
4486 if (Result.getNode()) break;
4487 // Fall Thru
4488 case TargetLowering::Legal:
4489 // FIXME: According to Hacker's Delight, this can be implemented in
4490 // target independent lowering, but it would be inefficient, since it
Bill Wendling35f1a9d2008-12-10 02:01:32 +00004491 // requires a division + a branch.
Scott Michel91099d62009-02-17 22:15:04 +00004492 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
Bill Wendling7e04be62008-12-09 22:08:41 +00004493 break;
4494 }
4495 break;
4496 }
4497
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004498 }
Scott Michel91099d62009-02-17 22:15:04 +00004499
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004500 assert(Result.getValueType() == Op.getValueType() &&
4501 "Bad legalization!");
Scott Michel91099d62009-02-17 22:15:04 +00004502
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004503 // Make sure that the generated code is itself legal.
4504 if (Result != Op)
4505 Result = LegalizeOp(Result);
4506
4507 // Note that LegalizeOp may be reentered even from single-use nodes, which
4508 // means that we always must cache transformed nodes.
4509 AddLegalizedOperand(Op, Result);
4510 return Result;
4511}
4512
4513/// PromoteOp - Given an operation that produces a value in an invalid type,
4514/// promote it to compute the value into a larger type. The produced value will
4515/// have the correct bits for the low portion of the register, but no guarantee
4516/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +00004517SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00004518 MVT VT = Op.getValueType();
4519 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004520 assert(getTypeAction(VT) == Promote &&
4521 "Caller should expand or legalize operands that are not promotable!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004522 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004523 "Cannot promote to smaller type!");
4524
Dan Gohman8181bd12008-07-27 21:46:04 +00004525 SDValue Tmp1, Tmp2, Tmp3;
4526 SDValue Result;
Gabor Greif1c80d112008-08-28 21:40:38 +00004527 SDNode *Node = Op.getNode();
Dale Johannesen82b5b722009-02-02 22:12:50 +00004528 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004529
Dan Gohman8181bd12008-07-27 21:46:04 +00004530 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004531 if (I != PromotedNodes.end()) return I->second;
4532
4533 switch (Node->getOpcode()) {
4534 case ISD::CopyFromReg:
4535 assert(0 && "CopyFromReg must be legal!");
4536 default:
4537#ifndef NDEBUG
4538 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
4539#endif
4540 assert(0 && "Do not know how to promote this operator!");
4541 abort();
4542 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004543 Result = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004544 break;
4545 case ISD::Constant:
4546 if (VT != MVT::i1)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004547 Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004548 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00004549 Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004550 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4551 break;
4552 case ISD::ConstantFP:
Dale Johannesen82b5b722009-02-02 22:12:50 +00004553 Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004554 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4555 break;
4556
Duncan Sands4a361272009-01-01 15:52:00 +00004557 case ISD::SETCC: {
4558 MVT VT0 = Node->getOperand(0).getValueType();
4559 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004560 && "SetCC type is not legal??");
Dale Johannesen82b5b722009-02-02 22:12:50 +00004561 Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0),
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004562 Node->getOperand(0), Node->getOperand(1),
4563 Node->getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004564 break;
Duncan Sands4a361272009-01-01 15:52:00 +00004565 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004566 case ISD::TRUNCATE:
4567 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4568 case Legal:
4569 Result = LegalizeOp(Node->getOperand(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00004570 assert(Result.getValueType().bitsGE(NVT) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004571 "This truncation doesn't make sense!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004572 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dale Johannesen82b5b722009-02-02 22:12:50 +00004573 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004574 break;
4575 case Promote:
4576 // The truncation is not required, because we don't guarantee anything
4577 // about high bits anyway.
4578 Result = PromoteOp(Node->getOperand(0));
4579 break;
4580 case Expand:
4581 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4582 // Truncate the low part of the expanded value to the result type
Dale Johannesen82b5b722009-02-02 22:12:50 +00004583 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004584 }
4585 break;
4586 case ISD::SIGN_EXTEND:
4587 case ISD::ZERO_EXTEND:
4588 case ISD::ANY_EXTEND:
4589 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4590 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4591 case Legal:
4592 // Input is legal? Just do extend all the way to the larger type.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004593 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004594 break;
4595 case Promote:
4596 // Promote the reg if it's smaller.
4597 Result = PromoteOp(Node->getOperand(0));
4598 // The high bits are not guaranteed to be anything. Insert an extend.
4599 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004600 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004601 DAG.getValueType(Node->getOperand(0).getValueType()));
4602 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004603 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004604 Node->getOperand(0).getValueType());
4605 break;
4606 }
4607 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004608 case ISD::CONVERT_RNDSAT: {
4609 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4610 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4611 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4612 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4613 "can only promote integers");
Dale Johannesen564036c2009-02-04 00:13:36 +00004614 Result = DAG.getConvertRndSat(NVT, dl, Node->getOperand(0),
Mon P Wang73d31542008-11-10 20:54:11 +00004615 Node->getOperand(1), Node->getOperand(2),
4616 Node->getOperand(3), Node->getOperand(4),
4617 CvtCode);
4618 break;
4619
4620 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004621 case ISD::BIT_CONVERT:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004622 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00004623 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004624 Result = PromoteOp(Result);
4625 break;
Scott Michel91099d62009-02-17 22:15:04 +00004626
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004627 case ISD::FP_EXTEND:
4628 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4629 case ISD::FP_ROUND:
4630 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4631 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4632 case Promote: assert(0 && "Unreachable with 2 FP types!");
4633 case Legal:
Chris Lattner5872a362008-01-17 07:00:52 +00004634 if (Node->getConstantOperandVal(1) == 0) {
4635 // Input is legal? Do an FP_ROUND_INREG.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004636 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0),
Chris Lattner5872a362008-01-17 07:00:52 +00004637 DAG.getValueType(VT));
4638 } else {
4639 // Just remove the truncate, it isn't affecting the value.
Scott Michel91099d62009-02-17 22:15:04 +00004640 Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0),
Chris Lattner5872a362008-01-17 07:00:52 +00004641 Node->getOperand(1));
4642 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004643 break;
4644 }
4645 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004646 case ISD::SINT_TO_FP:
4647 case ISD::UINT_TO_FP:
4648 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4649 case Legal:
4650 // No extra round required here.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004651 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004652 break;
4653
4654 case Promote:
4655 Result = PromoteOp(Node->getOperand(0));
4656 if (Node->getOpcode() == ISD::SINT_TO_FP)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004657 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004658 Result,
4659 DAG.getValueType(Node->getOperand(0).getValueType()));
4660 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00004661 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004662 Node->getOperand(0).getValueType());
4663 // No extra round required here.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004664 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004665 break;
4666 case Expand:
4667 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00004668 Node->getOperand(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004669 // Round if we cannot tolerate excess precision.
4670 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004671 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004672 DAG.getValueType(VT));
4673 break;
4674 }
4675 break;
4676
4677 case ISD::SIGN_EXTEND_INREG:
4678 Result = PromoteOp(Node->getOperand(0));
Scott Michel91099d62009-02-17 22:15:04 +00004679 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004680 Node->getOperand(1));
4681 break;
4682 case ISD::FP_TO_SINT:
4683 case ISD::FP_TO_UINT:
4684 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4685 case Legal:
4686 case Expand:
4687 Tmp1 = Node->getOperand(0);
4688 break;
4689 case Promote:
4690 // The input result is prerounded, so we don't have to do anything
4691 // special.
4692 Tmp1 = PromoteOp(Node->getOperand(0));
4693 break;
4694 }
4695 // If we're promoting a UINT to a larger size, check to see if the new node
4696 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4697 // we can use that instead. This allows us to generate better code for
4698 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4699 // legal, such as PowerPC.
Scott Michel91099d62009-02-17 22:15:04 +00004700 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00004701 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4702 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004703 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Dale Johannesen82b5b722009-02-02 22:12:50 +00004704 Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004705 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00004706 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004707 }
4708 break;
4709
4710 case ISD::FABS:
4711 case ISD::FNEG:
4712 Tmp1 = PromoteOp(Node->getOperand(0));
4713 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004714 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004715 // NOTE: we do not have to do any extra rounding here for
4716 // NoExcessFPPrecision, because we know the input will have the appropriate
4717 // precision, and these operations don't modify precision at all.
4718 break;
4719
Dale Johannesen92b33082008-09-04 00:47:13 +00004720 case ISD::FLOG:
4721 case ISD::FLOG2:
4722 case ISD::FLOG10:
4723 case ISD::FEXP:
4724 case ISD::FEXP2:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004725 case ISD::FSQRT:
4726 case ISD::FSIN:
4727 case ISD::FCOS:
Dan Gohmanb2158232008-08-21 18:38:14 +00004728 case ISD::FTRUNC:
4729 case ISD::FFLOOR:
4730 case ISD::FCEIL:
4731 case ISD::FRINT:
4732 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004733 Tmp1 = PromoteOp(Node->getOperand(0));
4734 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004735 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004736 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004737 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004738 DAG.getValueType(VT));
4739 break;
4740
Evan Cheng1fac6952008-09-09 23:35:53 +00004741 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004742 case ISD::FPOWI: {
Evan Cheng1fac6952008-09-09 23:35:53 +00004743 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004744 // directly as well, which may be better.
4745 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng1fac6952008-09-09 23:35:53 +00004746 Tmp2 = Node->getOperand(1);
4747 if (Node->getOpcode() == ISD::FPOW)
4748 Tmp2 = PromoteOp(Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004749 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004750 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004751 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004752 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004753 DAG.getValueType(VT));
4754 break;
4755 }
Scott Michel91099d62009-02-17 22:15:04 +00004756
Dan Gohmanbebba8d2008-12-23 21:37:04 +00004757 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004758 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004759 Tmp2 = PromoteOp(Node->getOperand(2));
4760 Tmp3 = PromoteOp(Node->getOperand(3));
Scott Michel91099d62009-02-17 22:15:04 +00004761 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
4762 AtomNode->getChain(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004763 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004764 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004765 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004766 // Remember that we legalized the chain.
4767 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4768 break;
4769 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00004770 case ISD::ATOMIC_LOAD_ADD:
4771 case ISD::ATOMIC_LOAD_SUB:
4772 case ISD::ATOMIC_LOAD_AND:
4773 case ISD::ATOMIC_LOAD_OR:
4774 case ISD::ATOMIC_LOAD_XOR:
4775 case ISD::ATOMIC_LOAD_NAND:
4776 case ISD::ATOMIC_LOAD_MIN:
4777 case ISD::ATOMIC_LOAD_MAX:
4778 case ISD::ATOMIC_LOAD_UMIN:
4779 case ISD::ATOMIC_LOAD_UMAX:
4780 case ISD::ATOMIC_SWAP: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004781 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004782 Tmp2 = PromoteOp(Node->getOperand(2));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004783 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Scott Michel91099d62009-02-17 22:15:04 +00004784 AtomNode->getChain(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004785 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004786 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004787 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004788 // Remember that we legalized the chain.
4789 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4790 break;
4791 }
4792
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004793 case ISD::AND:
4794 case ISD::OR:
4795 case ISD::XOR:
4796 case ISD::ADD:
4797 case ISD::SUB:
4798 case ISD::MUL:
4799 // The input may have strange things in the top bits of the registers, but
4800 // these operations don't care. They may have weird bits going out, but
4801 // that too is okay if they are integer operations.
4802 Tmp1 = PromoteOp(Node->getOperand(0));
4803 Tmp2 = PromoteOp(Node->getOperand(1));
4804 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004805 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004806 break;
4807 case ISD::FADD:
4808 case ISD::FSUB:
4809 case ISD::FMUL:
4810 Tmp1 = PromoteOp(Node->getOperand(0));
4811 Tmp2 = PromoteOp(Node->getOperand(1));
4812 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004813 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00004814
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004815 // Floating point operations will give excess precision that we may not be
4816 // able to tolerate. If we DO allow excess precision, just leave it,
4817 // otherwise excise it.
4818 // FIXME: Why would we need to round FP ops more than integer ones?
4819 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
4820 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004821 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004822 DAG.getValueType(VT));
4823 break;
4824
4825 case ISD::SDIV:
4826 case ISD::SREM:
4827 // These operators require that their input be sign extended.
4828 Tmp1 = PromoteOp(Node->getOperand(0));
4829 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004830 if (NVT.isInteger()) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00004831 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004832 DAG.getValueType(VT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004833 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004834 DAG.getValueType(VT));
4835 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00004836 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004837
4838 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands92c43912008-06-06 12:08:01 +00004839 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004840 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004841 DAG.getValueType(VT));
4842 break;
4843 case ISD::FDIV:
4844 case ISD::FREM:
4845 case ISD::FCOPYSIGN:
4846 // These operators require that their input be fp extended.
4847 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004848 case Expand: assert(0 && "not implemented");
4849 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4850 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004851 }
4852 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004853 case Expand: assert(0 && "not implemented");
4854 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4855 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004856 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00004857 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00004858
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004859 // Perform FP_ROUND: this is probably overly pessimistic.
4860 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004861 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004862 DAG.getValueType(VT));
4863 break;
4864
4865 case ISD::UDIV:
4866 case ISD::UREM:
4867 // These operators require that their input be zero extended.
4868 Tmp1 = PromoteOp(Node->getOperand(0));
4869 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004870 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dale Johannesen82b5b722009-02-02 22:12:50 +00004871 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4872 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
4873 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004874 break;
4875
4876 case ISD::SHL:
4877 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004878 Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004879 break;
4880 case ISD::SRA:
4881 // The input value must be properly sign extended.
4882 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004883 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004884 DAG.getValueType(VT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004885 Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004886 break;
4887 case ISD::SRL:
4888 // The input value must be properly zero extended.
4889 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004890 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4891 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004892 break;
4893
4894 case ISD::VAARG:
4895 Tmp1 = Node->getOperand(0); // Get the chain.
4896 Tmp2 = Node->getOperand(1); // Get the pointer.
4897 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
Dale Johannesen564036c2009-02-04 00:13:36 +00004898 Tmp3 = DAG.getVAArg(VT, dl, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sandsac496a12008-07-04 11:47:58 +00004899 Result = TLI.LowerOperation(Tmp3, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004900 } else {
Dan Gohman12a9c082008-02-06 22:27:42 +00004901 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesen564036c2009-02-04 00:13:36 +00004902 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004903 // Increment the pointer, VAList, to the next vaarg
Scott Michel91099d62009-02-17 22:15:04 +00004904 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sands92c43912008-06-06 12:08:01 +00004905 DAG.getConstant(VT.getSizeInBits()/8,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004906 TLI.getPointerTy()));
4907 // Store the incremented VAList to the legalized pointer
Dale Johannesen82b5b722009-02-02 22:12:50 +00004908 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004909 // Load the actual argument out of the pointer VAList
Dale Johannesen82b5b722009-02-02 22:12:50 +00004910 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004911 }
4912 // Remember that we legalized the chain.
4913 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4914 break;
4915
4916 case ISD::LOAD: {
4917 LoadSDNode *LD = cast<LoadSDNode>(Node);
4918 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4919 ? ISD::EXTLOAD : LD->getExtensionType();
Dale Johannesen82b5b722009-02-02 22:12:50 +00004920 Result = DAG.getExtLoad(ExtType, dl, NVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004921 LD->getChain(), LD->getBasePtr(),
4922 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004923 LD->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004924 LD->isVolatile(),
4925 LD->getAlignment());
4926 // Remember that we legalized the chain.
4927 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4928 break;
4929 }
Scott Michel67224b22008-06-02 22:18:03 +00004930 case ISD::SELECT: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004931 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4932 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel67224b22008-06-02 22:18:03 +00004933
Duncan Sands92c43912008-06-06 12:08:01 +00004934 MVT VT2 = Tmp2.getValueType();
Scott Michel67224b22008-06-02 22:18:03 +00004935 assert(VT2 == Tmp3.getValueType()
Scott Michel7b54de02008-06-03 19:13:20 +00004936 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4937 // Ensure that the resulting node is at least the same size as the operands'
4938 // value types, because we cannot assume that TLI.getSetCCValueType() is
4939 // constant.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004940 Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004941 break;
Scott Michel67224b22008-06-02 22:18:03 +00004942 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004943 case ISD::SELECT_CC:
4944 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4945 Tmp3 = PromoteOp(Node->getOperand(3)); // False
Dale Johannesen82b5b722009-02-02 22:12:50 +00004946 Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004947 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
4948 break;
4949 case ISD::BSWAP:
4950 Tmp1 = Node->getOperand(0);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004951 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
4952 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4953 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004954 DAG.getConstant(NVT.getSizeInBits() -
4955 VT.getSizeInBits(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004956 TLI.getShiftAmountTy()));
4957 break;
4958 case ISD::CTPOP:
4959 case ISD::CTTZ:
4960 case ISD::CTLZ:
4961 // Zero extend the argument
Dale Johannesen82b5b722009-02-02 22:12:50 +00004962 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004963 // Perform the larger operation, then subtract if needed.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004964 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004965 switch(Node->getOpcode()) {
4966 case ISD::CTPOP:
4967 Result = Tmp1;
4968 break;
4969 case ISD::CTTZ:
4970 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004971 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004972 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004973 ISD::SETEQ);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004974 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00004975 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004976 break;
4977 case ISD::CTLZ:
4978 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00004979 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004980 DAG.getConstant(NVT.getSizeInBits() -
4981 VT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004982 break;
4983 }
4984 break;
4985 case ISD::EXTRACT_SUBVECTOR:
4986 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
4987 break;
4988 case ISD::EXTRACT_VECTOR_ELT:
4989 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4990 break;
4991 }
4992
Gabor Greif1c80d112008-08-28 21:40:38 +00004993 assert(Result.getNode() && "Didn't set a result!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004994
4995 // Make sure the result is itself legal.
4996 Result = LegalizeOp(Result);
Scott Michel91099d62009-02-17 22:15:04 +00004997
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004998 // Remember that we promoted this!
4999 AddPromotedOperand(Op, Result);
5000 return Result;
5001}
5002
5003/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
5004/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
5005/// based on the vector type. The return type of this matches the element type
5006/// of the vector, which may not be legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00005007SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005008 // We know that operand #0 is the Vec vector. If the index is a constant
5009 // or if the invec is a supported hardware type, we can use it. Otherwise,
5010 // lower to a store then an indexed load.
Dan Gohman8181bd12008-07-27 21:46:04 +00005011 SDValue Vec = Op.getOperand(0);
5012 SDValue Idx = Op.getOperand(1);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005013 DebugLoc dl = Op.getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00005014
Duncan Sands92c43912008-06-06 12:08:01 +00005015 MVT TVT = Vec.getValueType();
5016 unsigned NumElems = TVT.getVectorNumElements();
Scott Michel91099d62009-02-17 22:15:04 +00005017
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005018 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
5019 default: assert(0 && "This action is not supported yet!");
5020 case TargetLowering::Custom: {
5021 Vec = LegalizeOp(Vec);
5022 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005023 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005024 if (Tmp3.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005025 return Tmp3;
5026 break;
5027 }
5028 case TargetLowering::Legal:
5029 if (isTypeLegal(TVT)) {
5030 Vec = LegalizeOp(Vec);
5031 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lambcc021a02007-07-26 03:33:13 +00005032 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005033 }
5034 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00005035 case TargetLowering::Promote:
5036 assert(TVT.isVector() && "not vector type");
5037 // fall thru to expand since vectors are by default are promote
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005038 case TargetLowering::Expand:
5039 break;
5040 }
5041
5042 if (NumElems == 1) {
5043 // This must be an access of the only element. Return it.
5044 Op = ScalarizeVectorOp(Vec);
5045 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman2b10fde2008-01-29 02:24:00 +00005046 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005047 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005048 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005049 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005050 if (CIdx->getZExtValue() < NumLoElts) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005051 Vec = Lo;
5052 } else {
5053 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005054 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005055 Idx.getValueType());
5056 }
Scott Michel91099d62009-02-17 22:15:04 +00005057
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005058 // It's now an extract from the appropriate high or low part. Recurse.
5059 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
5060 Op = ExpandEXTRACT_VECTOR_ELT(Op);
5061 } else {
5062 // Store the value to a temporary stack slot, then LOAD the scalar
5063 // element back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00005064 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dale Johannesen352c47e2009-02-02 20:41:04 +00005065 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005066
5067 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +00005068 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dale Johannesen352c47e2009-02-02 20:41:04 +00005069 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005070 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005071
Duncan Sandsec142ee2008-06-08 20:54:56 +00005072 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Dale Johannesen352c47e2009-02-02 20:41:04 +00005073 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005074 else
Dale Johannesen352c47e2009-02-02 20:41:04 +00005075 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005076
Dale Johannesen352c47e2009-02-02 20:41:04 +00005077 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005078
Dale Johannesen352c47e2009-02-02 20:41:04 +00005079 Op = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005080 }
5081 return Op;
5082}
5083
5084/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
5085/// we assume the operation can be split if it is not already legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00005086SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005087 // We know that operand #0 is the Vec vector. For now we assume the index
5088 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman8181bd12008-07-27 21:46:04 +00005089 SDValue Vec = Op.getOperand(0);
5090 SDValue Idx = LegalizeOp(Op.getOperand(1));
Scott Michel91099d62009-02-17 22:15:04 +00005091
Duncan Sands92c43912008-06-06 12:08:01 +00005092 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Scott Michel91099d62009-02-17 22:15:04 +00005093
Duncan Sands92c43912008-06-06 12:08:01 +00005094 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005095 // This must be an access of the desired vector length. Return it.
5096 return Vec;
5097 }
5098
5099 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005100 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005101 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005102 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005103 Vec = Lo;
5104 } else {
5105 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005106 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5107 Idx.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005108 }
Scott Michel91099d62009-02-17 22:15:04 +00005109
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005110 // It's now an extract from the appropriate high or low part. Recurse.
5111 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
5112 return ExpandEXTRACT_SUBVECTOR(Op);
5113}
5114
5115/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5116/// with condition CC on the current target. This usually involves legalizing
5117/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5118/// there may be no choice but to create a new SetCC node to represent the
5119/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman8181bd12008-07-27 21:46:04 +00005120/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5121void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5122 SDValue &RHS,
Dale Johannesen352c47e2009-02-02 20:41:04 +00005123 SDValue &CC,
5124 DebugLoc dl) {
Scott Michel91099d62009-02-17 22:15:04 +00005125 SDValue Tmp1, Tmp2, Tmp3, Result;
5126
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005127 switch (getTypeAction(LHS.getValueType())) {
5128 case Legal:
5129 Tmp1 = LegalizeOp(LHS); // LHS
5130 Tmp2 = LegalizeOp(RHS); // RHS
5131 break;
5132 case Promote:
5133 Tmp1 = PromoteOp(LHS); // LHS
5134 Tmp2 = PromoteOp(RHS); // RHS
5135
5136 // If this is an FP compare, the operands have already been extended.
Duncan Sands92c43912008-06-06 12:08:01 +00005137 if (LHS.getValueType().isInteger()) {
5138 MVT VT = LHS.getValueType();
5139 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005140
5141 // Otherwise, we have to insert explicit sign or zero extends. Note
5142 // that we could insert sign extends for ALL conditions, but zero extend
5143 // is cheaper on many machines (an AND instead of two shifts), so prefer
5144 // it.
5145 switch (cast<CondCodeSDNode>(CC)->get()) {
5146 default: assert(0 && "Unknown integer comparison!");
5147 case ISD::SETEQ:
5148 case ISD::SETNE:
5149 case ISD::SETUGE:
5150 case ISD::SETUGT:
5151 case ISD::SETULE:
5152 case ISD::SETULT:
5153 // ALL of these operations will work if we either sign or zero extend
5154 // the operands (including the unsigned comparisons!). Zero extend is
5155 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005156 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5157 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005158 break;
5159 case ISD::SETGE:
5160 case ISD::SETGT:
5161 case ISD::SETLT:
5162 case ISD::SETLE:
Dale Johannesen352c47e2009-02-02 20:41:04 +00005163 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005164 DAG.getValueType(VT));
Dale Johannesen352c47e2009-02-02 20:41:04 +00005165 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005166 DAG.getValueType(VT));
Evan Chengd901b662008-10-13 18:46:18 +00005167 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5168 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005169 break;
5170 }
5171 }
5172 break;
5173 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00005174 MVT VT = LHS.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005175 if (VT == MVT::f32 || VT == MVT::f64) {
5176 // Expand into one or more soft-fp libcall(s).
Evan Cheng24108632008-07-01 21:35:46 +00005177 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005178 switch (cast<CondCodeSDNode>(CC)->get()) {
5179 case ISD::SETEQ:
5180 case ISD::SETOEQ:
5181 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
5182 break;
5183 case ISD::SETNE:
5184 case ISD::SETUNE:
5185 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
5186 break;
5187 case ISD::SETGE:
5188 case ISD::SETOGE:
5189 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
5190 break;
5191 case ISD::SETLT:
5192 case ISD::SETOLT:
5193 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5194 break;
5195 case ISD::SETLE:
5196 case ISD::SETOLE:
5197 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
5198 break;
5199 case ISD::SETGT:
5200 case ISD::SETOGT:
5201 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
5202 break;
5203 case ISD::SETUO:
5204 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5205 break;
5206 case ISD::SETO:
5207 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
5208 break;
5209 default:
5210 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5211 switch (cast<CondCodeSDNode>(CC)->get()) {
5212 case ISD::SETONE:
5213 // SETONE = SETOLT | SETOGT
5214 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5215 // Fallthrough
5216 case ISD::SETUGT:
5217 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
5218 break;
5219 case ISD::SETUGE:
5220 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
5221 break;
5222 case ISD::SETULT:
5223 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5224 break;
5225 case ISD::SETULE:
5226 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
5227 break;
5228 case ISD::SETUEQ:
5229 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
5230 break;
5231 default: assert(0 && "Unsupported FP setcc!");
5232 }
5233 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00005234
Dan Gohman8181bd12008-07-27 21:46:04 +00005235 SDValue Dummy;
5236 SDValue Ops[2] = { LHS, RHS };
Dale Johannesen352c47e2009-02-02 20:41:04 +00005237 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005238 false /*sign irrelevant*/, Dummy);
5239 Tmp2 = DAG.getConstant(0, MVT::i32);
5240 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
5241 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesen352c47e2009-02-02 20:41:04 +00005242 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005243 TLI.getSetCCResultType(Tmp1.getValueType()),
5244 Tmp1, Tmp2, CC);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005245 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005246 false /*sign irrelevant*/, Dummy);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005247 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005248 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5249 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesen352c47e2009-02-02 20:41:04 +00005250 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman8181bd12008-07-27 21:46:04 +00005251 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005252 }
Evan Cheng18a1ab12008-07-07 07:18:09 +00005253 LHS = LegalizeOp(Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005254 RHS = Tmp2;
5255 return;
5256 }
5257
Dan Gohman8181bd12008-07-27 21:46:04 +00005258 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005259 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen472d15d2007-10-06 01:24:11 +00005260 ExpandOp(RHS, RHSLo, RHSHi);
5261 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5262
5263 if (VT==MVT::ppcf128) {
5264 // FIXME: This generated code sucks. We want to generate
Dale Johannesen26317b62008-09-12 00:30:56 +00005265 // FCMPU crN, hi1, hi2
Dale Johannesen472d15d2007-10-06 01:24:11 +00005266 // BNE crN, L:
Dale Johannesen26317b62008-09-12 00:30:56 +00005267 // FCMPU crN, lo1, lo2
Dale Johannesen472d15d2007-10-06 01:24:11 +00005268 // The following can be improved, but not that much.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005269 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005270 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005271 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005272 LHSLo, RHSLo, CCCode);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005273 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5274 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005275 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005276 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005277 LHSHi, RHSHi, CCCode);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005278 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5279 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman8181bd12008-07-27 21:46:04 +00005280 Tmp2 = SDValue();
Dale Johannesen472d15d2007-10-06 01:24:11 +00005281 break;
5282 }
5283
5284 switch (CCCode) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005285 case ISD::SETEQ:
5286 case ISD::SETNE:
5287 if (RHSLo == RHSHi)
5288 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5289 if (RHSCST->isAllOnesValue()) {
5290 // Comparison to -1.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005291 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005292 Tmp2 = RHSLo;
5293 break;
5294 }
5295
Dale Johannesen352c47e2009-02-02 20:41:04 +00005296 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5297 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5298 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005299 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5300 break;
5301 default:
5302 // If this is a comparison of the sign bit, just look at the top part.
5303 // X > -1, x < 0
5304 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
Scott Michel91099d62009-02-17 22:15:04 +00005305 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman9d24dc72008-03-13 22:13:53 +00005306 CST->isNullValue()) || // X < 0
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005307 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5308 CST->isAllOnesValue())) { // X > -1
5309 Tmp1 = LHSHi;
5310 Tmp2 = RHSHi;
5311 break;
5312 }
5313
5314 // FIXME: This generated code sucks.
5315 ISD::CondCode LowCC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005316 switch (CCCode) {
5317 default: assert(0 && "Unknown integer setcc!");
5318 case ISD::SETLT:
5319 case ISD::SETULT: LowCC = ISD::SETULT; break;
5320 case ISD::SETGT:
5321 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5322 case ISD::SETLE:
5323 case ISD::SETULE: LowCC = ISD::SETULE; break;
5324 case ISD::SETGE:
5325 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5326 }
5327
5328 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5329 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5330 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5331
5332 // NOTE: on targets without efficient SELECT of bools, we can always use
5333 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
5334 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands4a361272009-01-01 15:52:00 +00005335 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
Dale Johannesen38496eb2009-02-03 00:47:48 +00005336 LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00005337 if (!Tmp1.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005338 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005339 LHSLo, RHSLo, LowCC);
5340 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
Dale Johannesen38496eb2009-02-03 00:47:48 +00005341 LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00005342 if (!Tmp2.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005343 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005344 TLI.getSetCCResultType(LHSHi.getValueType()),
5345 LHSHi, RHSHi,CC);
Scott Michel91099d62009-02-17 22:15:04 +00005346
Gabor Greif1c80d112008-08-28 21:40:38 +00005347 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5348 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman9d24dc72008-03-13 22:13:53 +00005349 if ((Tmp1C && Tmp1C->isNullValue()) ||
5350 (Tmp2C && Tmp2C->isNullValue() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005351 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5352 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman9d24dc72008-03-13 22:13:53 +00005353 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005354 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5355 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5356 // low part is known false, returns high part.
5357 // For LE / GE, if high part is known false, ignore the low part.
5358 // For LT / GT, if high part is known true, ignore the low part.
5359 Tmp1 = Tmp2;
Dan Gohman8181bd12008-07-27 21:46:04 +00005360 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005361 } else {
Duncan Sands4a361272009-01-01 15:52:00 +00005362 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5363 LHSHi, RHSHi, ISD::SETEQ, false,
Dale Johannesen38496eb2009-02-03 00:47:48 +00005364 DagCombineInfo, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00005365 if (!Result.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005366 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005367 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005368 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005369 Result, Tmp1, Tmp2));
5370 Tmp1 = Result;
Dan Gohman8181bd12008-07-27 21:46:04 +00005371 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005372 }
5373 }
5374 }
5375 }
5376 LHS = Tmp1;
5377 RHS = Tmp2;
5378}
5379
Evan Cheng71343822008-10-15 02:05:31 +00005380/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5381/// condition code CC on the current target. This routine assumes LHS and rHS
5382/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5383/// illegal condition code into AND / OR of multiple SETCC values.
5384void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5385 SDValue &LHS, SDValue &RHS,
Dale Johannesen352c47e2009-02-02 20:41:04 +00005386 SDValue &CC,
5387 DebugLoc dl) {
Evan Cheng71343822008-10-15 02:05:31 +00005388 MVT OpVT = LHS.getValueType();
5389 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5390 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5391 default: assert(0 && "Unknown condition code action!");
5392 case TargetLowering::Legal:
5393 // Nothing to do.
5394 break;
5395 case TargetLowering::Expand: {
5396 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5397 unsigned Opc = 0;
5398 switch (CCCode) {
5399 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohman2b5b9ca2008-10-21 03:12:54 +00005400 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5401 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5402 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5403 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5404 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5405 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5406 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5407 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5408 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5409 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5410 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5411 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng71343822008-10-15 02:05:31 +00005412 // FIXME: Implement more expansions.
5413 }
5414
Dale Johannesen352c47e2009-02-02 20:41:04 +00005415 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5416 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5417 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng71343822008-10-15 02:05:31 +00005418 RHS = SDValue();
5419 CC = SDValue();
5420 break;
5421 }
5422 }
5423}
5424
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005425/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5426/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5427/// a load from the stack slot to DestVT, extending it if needed.
5428/// The resultant code need not be legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00005429SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5430 MVT SlotVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005431 MVT DestVT,
5432 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005433 // Create the stack frame object.
Mon P Wang55854cc2008-07-05 20:40:31 +00005434 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
5435 SrcOp.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00005436 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michel91099d62009-02-17 22:15:04 +00005437
Dan Gohman20e37962008-02-11 18:58:42 +00005438 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00005439 int SPFI = StackPtrFI->getIndex();
Dan Gohman8a8251a2009-01-29 21:02:43 +00005440 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5441
Duncan Sands92c43912008-06-06 12:08:01 +00005442 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5443 unsigned SlotSize = SlotVT.getSizeInBits();
5444 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang55854cc2008-07-05 20:40:31 +00005445 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
5446 DestVT.getTypeForMVT());
Scott Michel91099d62009-02-17 22:15:04 +00005447
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005448 // Emit a store to the stack slot. Use a truncstore if the input value is
5449 // later than DestVT.
Dan Gohman8181bd12008-07-27 21:46:04 +00005450 SDValue Store;
Scott Michel91099d62009-02-17 22:15:04 +00005451
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005452 if (SrcSize > SlotSize)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005453 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman8a8251a2009-01-29 21:02:43 +00005454 SV, 0, SlotVT, false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005455 else {
5456 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen82b5b722009-02-02 22:12:50 +00005457 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman8a8251a2009-01-29 21:02:43 +00005458 SV, 0, false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005459 }
Scott Michel91099d62009-02-17 22:15:04 +00005460
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005461 // Result is a load from the stack slot.
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005462 if (SlotSize == DestSize)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005463 return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign);
Scott Michel91099d62009-02-17 22:15:04 +00005464
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005465 assert(SlotSize < DestSize && "Unknown extension!");
Dale Johannesen82b5b722009-02-02 22:12:50 +00005466 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang55854cc2008-07-05 20:40:31 +00005467 false, DestAlign);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005468}
5469
Dan Gohman8181bd12008-07-27 21:46:04 +00005470SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005471 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005472 // Create a vector sized/aligned stack slot, store the value to element #0,
5473 // then load the whole vector back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00005474 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman12a9c082008-02-06 22:27:42 +00005475
Dan Gohman20e37962008-02-11 18:58:42 +00005476 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00005477 int SPFI = StackPtrFI->getIndex();
5478
Scott Michel91099d62009-02-17 22:15:04 +00005479 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00005480 StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005481 PseudoSourceValue::getFixedStack(SPFI), 0);
Dale Johannesen82b5b722009-02-02 22:12:50 +00005482 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005483 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005484}
5485
5486
5487/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
5488/// support the operation, but do support the resultant vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00005489SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Scott Michel91099d62009-02-17 22:15:04 +00005490
5491 // If the only non-undef value is the low element, turn this into a
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005492 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
5493 unsigned NumElems = Node->getNumOperands();
5494 bool isOnlyLowElement = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00005495 SDValue SplatValue = Node->getOperand(0);
Dale Johannesen82b5b722009-02-02 22:12:50 +00005496 DebugLoc dl = Node->getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00005497
Dan Gohman8181bd12008-07-27 21:46:04 +00005498 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerd8cee732008-03-09 00:29:42 +00005499 // and use a bitmask instead of a list of elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00005500 std::map<SDValue, std::vector<unsigned> > Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005501 Values[SplatValue].push_back(0);
5502 bool isConstant = true;
5503 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5504 SplatValue.getOpcode() != ISD::UNDEF)
5505 isConstant = false;
Scott Michel91099d62009-02-17 22:15:04 +00005506
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005507 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005508 SDValue V = Node->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005509 Values[V].push_back(i);
5510 if (V.getOpcode() != ISD::UNDEF)
5511 isOnlyLowElement = false;
5512 if (SplatValue != V)
Dan Gohman8181bd12008-07-27 21:46:04 +00005513 SplatValue = SDValue(0,0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005514
5515 // If this isn't a constant element or an undef, we can't use a constant
5516 // pool load.
5517 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5518 V.getOpcode() != ISD::UNDEF)
5519 isConstant = false;
5520 }
Scott Michel91099d62009-02-17 22:15:04 +00005521
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005522 if (isOnlyLowElement) {
5523 // If the low element is an undef too, then this whole things is an undef.
5524 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
Dale Johannesen9bfc0172009-02-06 23:05:02 +00005525 return DAG.getUNDEF(Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005526 // Otherwise, turn this into a scalar_to_vector node.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005527 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005528 Node->getOperand(0));
5529 }
Scott Michel91099d62009-02-17 22:15:04 +00005530
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005531 // If all elements are constants, create a load from the constant pool.
5532 if (isConstant) {
Duncan Sands92c43912008-06-06 12:08:01 +00005533 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005534 std::vector<Constant*> CV;
5535 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00005536 if (ConstantFPSDNode *V =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005537 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00005538 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michel91099d62009-02-17 22:15:04 +00005539 } else if (ConstantSDNode *V =
Chris Lattner5e0610f2008-04-20 00:41:09 +00005540 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00005541 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005542 } else {
5543 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Scott Michel91099d62009-02-17 22:15:04 +00005544 const Type *OpNTy =
Duncan Sands92c43912008-06-06 12:08:01 +00005545 Node->getOperand(0).getValueType().getTypeForMVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005546 CV.push_back(UndefValue::get(OpNTy));
5547 }
5548 }
5549 Constant *CP = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005550 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +00005551 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen82b5b722009-02-02 22:12:50 +00005552 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00005553 PseudoSourceValue::getConstantPool(), 0,
5554 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005555 }
Scott Michel91099d62009-02-17 22:15:04 +00005556
Gabor Greif1c80d112008-08-28 21:40:38 +00005557 if (SplatValue.getNode()) { // Splat of one value?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005558 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands92c43912008-06-06 12:08:01 +00005559 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman8181bd12008-07-27 21:46:04 +00005560 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5561 std::vector<SDValue> ZeroVec(NumElems, Zero);
Evan Cheng907a2d22009-02-25 22:49:59 +00005562 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
5563 &ZeroVec[0], ZeroVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005564
5565 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
5566 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
5567 // Get the splatted value into the low element of a vector register.
Scott Michel91099d62009-02-17 22:15:04 +00005568 SDValue LowValVec =
5569 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005570 Node->getValueType(0), SplatValue);
Scott Michel91099d62009-02-17 22:15:04 +00005571
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005572 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Scott Michel91099d62009-02-17 22:15:04 +00005573 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005574 Node->getValueType(0), LowValVec,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00005575 DAG.getUNDEF(Node->getValueType(0)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005576 SplatMask);
5577 }
5578 }
Scott Michel91099d62009-02-17 22:15:04 +00005579
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005580 // If there are only two unique elements, we may be able to turn this into a
5581 // vector shuffle.
5582 if (Values.size() == 2) {
Chris Lattnerd8cee732008-03-09 00:29:42 +00005583 // Get the two values in deterministic order.
Dan Gohman8181bd12008-07-27 21:46:04 +00005584 SDValue Val1 = Node->getOperand(1);
5585 SDValue Val2;
5586 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerd8cee732008-03-09 00:29:42 +00005587 if (MI->first != Val1)
5588 Val2 = MI->first;
5589 else
5590 Val2 = (++MI)->first;
Scott Michel91099d62009-02-17 22:15:04 +00005591
5592 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
Chris Lattnerd8cee732008-03-09 00:29:42 +00005593 // vector shuffle has the undef vector on the RHS.
5594 if (Val1.getOpcode() == ISD::UNDEF)
5595 std::swap(Val1, Val2);
Scott Michel91099d62009-02-17 22:15:04 +00005596
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005597 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands92c43912008-06-06 12:08:01 +00005598 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5599 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00005600 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerd8cee732008-03-09 00:29:42 +00005601
5602 // Set elements of the shuffle mask for Val1.
5603 std::vector<unsigned> &Val1Elts = Values[Val1];
5604 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5605 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5606
5607 // Set elements of the shuffle mask for Val2.
5608 std::vector<unsigned> &Val2Elts = Values[Val2];
5609 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5610 if (Val2.getOpcode() != ISD::UNDEF)
5611 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5612 else
Dale Johannesen9bfc0172009-02-06 23:05:02 +00005613 MaskVec[Val2Elts[i]] = DAG.getUNDEF(MaskEltVT);
Scott Michel91099d62009-02-17 22:15:04 +00005614
Evan Cheng907a2d22009-02-25 22:49:59 +00005615 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
5616 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005617
Chris Lattnerd8cee732008-03-09 00:29:42 +00005618 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Dan Gohman52c51aa2009-01-28 17:46:25 +00005619 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR,
5620 Node->getValueType(0)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005621 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005622 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,Node->getValueType(0), Val1);
5623 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,Node->getValueType(0), Val2);
Dan Gohman8181bd12008-07-27 21:46:04 +00005624 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005625
5626 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005627 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl,Node->getValueType(0), Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005628 }
5629 }
Scott Michel91099d62009-02-17 22:15:04 +00005630
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005631 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5632 // aligned object on the stack, store each element into it, then load
5633 // the result as a vector.
Duncan Sands92c43912008-06-06 12:08:01 +00005634 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005635 // Create the stack frame object.
Dan Gohman8181bd12008-07-27 21:46:04 +00005636 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman8a8251a2009-01-29 21:02:43 +00005637 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5638 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5639
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005640 // Emit a store of each element to the stack slot.
Dan Gohman8181bd12008-07-27 21:46:04 +00005641 SmallVector<SDValue, 8> Stores;
Duncan Sands92c43912008-06-06 12:08:01 +00005642 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005643 // Store (in the right endianness) the elements to memory.
5644 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5645 // Ignore undef elements.
5646 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michel91099d62009-02-17 22:15:04 +00005647
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005648 unsigned Offset = TypeByteSize*i;
Scott Michel91099d62009-02-17 22:15:04 +00005649
Dan Gohman8181bd12008-07-27 21:46:04 +00005650 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dale Johannesen82b5b722009-02-02 22:12:50 +00005651 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
Scott Michel91099d62009-02-17 22:15:04 +00005652
Dale Johannesen82b5b722009-02-02 22:12:50 +00005653 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i),
5654 Idx, SV, Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005655 }
Scott Michel91099d62009-02-17 22:15:04 +00005656
Dan Gohman8181bd12008-07-27 21:46:04 +00005657 SDValue StoreChain;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005658 if (!Stores.empty()) // Not all undef elements?
Dale Johannesen82b5b722009-02-02 22:12:50 +00005659 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005660 &Stores[0], Stores.size());
5661 else
5662 StoreChain = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00005663
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005664 // Result is a load from the stack slot.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005665 return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005666}
5667
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005668void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman8181bd12008-07-27 21:46:04 +00005669 SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005670 SDValue &Lo, SDValue &Hi,
5671 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005672 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00005673 SDValue LHSL, LHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005674 ExpandOp(Op, LHSL, LHSH);
5675
Dan Gohman8181bd12008-07-27 21:46:04 +00005676 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands92c43912008-06-06 12:08:01 +00005677 MVT VT = LHSL.getValueType();
Dale Johannesen82b5b722009-02-02 22:12:50 +00005678 Lo = DAG.getNode(NodeOp, dl, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005679 Hi = Lo.getValue(1);
5680}
5681
5682
5683/// ExpandShift - Try to find a clever way to expand this shift operation out to
5684/// smaller elements. If we can't find a way that is more efficient than a
5685/// libcall on this target, return false. Otherwise, return true with the
5686/// low-parts expanded into Lo and Hi.
Dan Gohman8181bd12008-07-27 21:46:04 +00005687bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005688 SDValue &Lo, SDValue &Hi,
5689 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005690 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5691 "This is not a shift!");
5692
Duncan Sands92c43912008-06-06 12:08:01 +00005693 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman8181bd12008-07-27 21:46:04 +00005694 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands92c43912008-06-06 12:08:01 +00005695 MVT ShTy = ShAmt.getValueType();
5696 unsigned ShBits = ShTy.getSizeInBits();
5697 unsigned VTBits = Op.getValueType().getSizeInBits();
5698 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005699
Chris Lattner8c931452007-10-14 20:35:12 +00005700 // Handle the case when Amt is an immediate.
Gabor Greif1c80d112008-08-28 21:40:38 +00005701 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005702 unsigned Cst = CN->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005703 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005704 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005705 ExpandOp(Op, InL, InH);
5706 switch(Opc) {
5707 case ISD::SHL:
5708 if (Cst > VTBits) {
5709 Lo = DAG.getConstant(0, NVT);
5710 Hi = DAG.getConstant(0, NVT);
5711 } else if (Cst > NVTBits) {
5712 Lo = DAG.getConstant(0, NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00005713 Hi = DAG.getNode(ISD::SHL, dl,
5714 NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005715 } else if (Cst == NVTBits) {
5716 Lo = DAG.getConstant(0, NVT);
5717 Hi = InL;
5718 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005719 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy));
5720 Hi = DAG.getNode(ISD::OR, dl, NVT,
5721 DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)),
Scott Michel91099d62009-02-17 22:15:04 +00005722 DAG.getNode(ISD::SRL, dl, NVT, InL,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005723 DAG.getConstant(NVTBits-Cst, ShTy)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005724 }
5725 return true;
5726 case ISD::SRL:
5727 if (Cst > VTBits) {
5728 Lo = DAG.getConstant(0, NVT);
5729 Hi = DAG.getConstant(0, NVT);
5730 } else if (Cst > NVTBits) {
Scott Michel91099d62009-02-17 22:15:04 +00005731 Lo = DAG.getNode(ISD::SRL, dl, NVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005732 InH, DAG.getConstant(Cst-NVTBits,ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005733 Hi = DAG.getConstant(0, NVT);
5734 } else if (Cst == NVTBits) {
5735 Lo = InH;
5736 Hi = DAG.getConstant(0, NVT);
5737 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005738 Lo = DAG.getNode(ISD::OR, dl, NVT,
5739 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michel91099d62009-02-17 22:15:04 +00005740 DAG.getNode(ISD::SHL, dl, NVT, InH,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005741 DAG.getConstant(NVTBits-Cst, ShTy)));
5742 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005743 }
5744 return true;
5745 case ISD::SRA:
5746 if (Cst > VTBits) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005747 Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005748 DAG.getConstant(NVTBits-1, ShTy));
5749 } else if (Cst > NVTBits) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005750 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005751 DAG.getConstant(Cst-NVTBits, ShTy));
Dale Johannesen82b5b722009-02-02 22:12:50 +00005752 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005753 DAG.getConstant(NVTBits-1, ShTy));
5754 } else if (Cst == NVTBits) {
5755 Lo = InH;
Dale Johannesen82b5b722009-02-02 22:12:50 +00005756 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005757 DAG.getConstant(NVTBits-1, ShTy));
5758 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005759 Lo = DAG.getNode(ISD::OR, dl, NVT,
5760 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michel91099d62009-02-17 22:15:04 +00005761 DAG.getNode(ISD::SHL, dl,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005762 NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5763 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005764 }
5765 return true;
5766 }
5767 }
Scott Michel91099d62009-02-17 22:15:04 +00005768
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005769 // Okay, the shift amount isn't constant. However, if we can tell that it is
5770 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohmanece0a882008-02-20 16:57:27 +00005771 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5772 APInt KnownZero, KnownOne;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005773 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Scott Michel91099d62009-02-17 22:15:04 +00005774
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005775 // If we know that if any of the high bits of the shift amount are one, then
5776 // we can do this as a couple of simple shifts.
Dan Gohmanece0a882008-02-20 16:57:27 +00005777 if (KnownOne.intersects(Mask)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005778 // Mask out the high bit, which we know is set.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005779 Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt,
Dan Gohmanece0a882008-02-20 16:57:27 +00005780 DAG.getConstant(~Mask, Amt.getValueType()));
Scott Michel91099d62009-02-17 22:15:04 +00005781
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005782 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005783 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005784 ExpandOp(Op, InL, InH);
5785 switch(Opc) {
5786 case ISD::SHL:
5787 Lo = DAG.getConstant(0, NVT); // Low part is zero.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005788 Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005789 return true;
5790 case ISD::SRL:
5791 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005792 Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005793 return true;
5794 case ISD::SRA:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005795 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005796 DAG.getConstant(NVTBits-1, Amt.getValueType()));
Dale Johannesen82b5b722009-02-02 22:12:50 +00005797 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005798 return true;
5799 }
5800 }
Scott Michel91099d62009-02-17 22:15:04 +00005801
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005802 // If we know that the high bits of the shift amount are all zero, then we can
5803 // do this as a couple of simple shifts.
5804 if ((KnownZero & Mask) == Mask) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005805 // Compute 32-amt.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005806 SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005807 DAG.getConstant(NVTBits, Amt.getValueType()),
5808 Amt);
Scott Michel91099d62009-02-17 22:15:04 +00005809
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005810 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005811 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005812 ExpandOp(Op, InL, InH);
5813 switch(Opc) {
5814 case ISD::SHL:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005815 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
5816 Hi = DAG.getNode(ISD::OR, dl, NVT,
5817 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
5818 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005819 return true;
5820 case ISD::SRL:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005821 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
5822 Lo = DAG.getNode(ISD::OR, dl, NVT,
5823 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5824 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005825 return true;
5826 case ISD::SRA:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005827 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
5828 Lo = DAG.getNode(ISD::OR, dl, NVT,
5829 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5830 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005831 return true;
5832 }
5833 }
Scott Michel91099d62009-02-17 22:15:04 +00005834
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005835 return false;
5836}
5837
5838
5839// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5840// does not fit into a register, return the lo part and set the hi part to the
5841// by-reg argument. If it does fit into a single register, return the result
5842// and leave the Hi part unset.
Dan Gohman8181bd12008-07-27 21:46:04 +00005843SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5844 bool isSigned, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005845 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
Scott Michel91099d62009-02-17 22:15:04 +00005846 // The input chain to this libcall is the entry node of the function.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005847 // Legalizing the call will automatically add the previous call to the
5848 // dependence.
Dan Gohman8181bd12008-07-27 21:46:04 +00005849 SDValue InChain = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00005850
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005851 TargetLowering::ArgListTy Args;
5852 TargetLowering::ArgListEntry Entry;
5853 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands92c43912008-06-06 12:08:01 +00005854 MVT ArgVT = Node->getOperand(i).getValueType();
5855 const Type *ArgTy = ArgVT.getTypeForMVT();
Scott Michel91099d62009-02-17 22:15:04 +00005856 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005857 Entry.isSExt = isSigned;
Duncan Sandsead972e2008-02-14 17:28:50 +00005858 Entry.isZExt = !isSigned;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005859 Args.push_back(Entry);
5860 }
Bill Wendlingfef06052008-09-16 21:48:12 +00005861 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang1448aad2008-10-30 08:01:45 +00005862 TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005863
5864 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands92c43912008-06-06 12:08:01 +00005865 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman8181bd12008-07-27 21:46:04 +00005866 std::pair<SDValue,SDValue> CallInfo =
Dale Johannesen67cc9b62008-09-26 19:31:26 +00005867 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesenca6237b2009-01-30 23:10:59 +00005868 CallingConv::C, false, Callee, Args, DAG,
5869 Node->getDebugLoc());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005870
5871 // Legalize the call sequence, starting with the chain. This will advance
5872 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5873 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5874 LegalizeOp(CallInfo.second);
Dan Gohman8181bd12008-07-27 21:46:04 +00005875 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005876 switch (getTypeAction(CallInfo.first.getValueType())) {
5877 default: assert(0 && "Unknown thing");
5878 case Legal:
5879 Result = CallInfo.first;
5880 break;
5881 case Expand:
5882 ExpandOp(CallInfo.first, Result, Hi);
5883 break;
5884 }
5885 return Result;
5886}
5887
Dan Gohman29c3cef2008-08-14 20:04:46 +00005888/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5889///
5890SDValue SelectionDAGLegalize::
Dale Johannesen9972b632009-02-02 19:03:57 +00005891LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5892 DebugLoc dl) {
Dan Gohman29c3cef2008-08-14 20:04:46 +00005893 bool isCustom = false;
5894 SDValue Tmp1;
5895 switch (getTypeAction(Op.getValueType())) {
5896 case Legal:
5897 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5898 Op.getValueType())) {
5899 default: assert(0 && "Unknown operation action!");
5900 case TargetLowering::Custom:
5901 isCustom = true;
5902 // FALLTHROUGH
5903 case TargetLowering::Legal:
5904 Tmp1 = LegalizeOp(Op);
Gabor Greif1c80d112008-08-28 21:40:38 +00005905 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005906 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5907 else
Dale Johannesen9972b632009-02-02 19:03:57 +00005908 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman29c3cef2008-08-14 20:04:46 +00005909 DestTy, Tmp1);
5910 if (isCustom) {
5911 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005912 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman29c3cef2008-08-14 20:04:46 +00005913 }
5914 break;
5915 case TargetLowering::Expand:
Dale Johannesen9972b632009-02-02 19:03:57 +00005916 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005917 break;
5918 case TargetLowering::Promote:
Dale Johannesen9972b632009-02-02 19:03:57 +00005919 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005920 break;
5921 }
5922 break;
5923 case Expand:
Dale Johannesen9972b632009-02-02 19:03:57 +00005924 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman29c3cef2008-08-14 20:04:46 +00005925 break;
5926 case Promote:
5927 Tmp1 = PromoteOp(Op);
5928 if (isSigned) {
Dale Johannesen9972b632009-02-02 19:03:57 +00005929 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Dan Gohman29c3cef2008-08-14 20:04:46 +00005930 Tmp1, DAG.getValueType(Op.getValueType()));
5931 } else {
Scott Michel91099d62009-02-17 22:15:04 +00005932 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl,
Dan Gohman29c3cef2008-08-14 20:04:46 +00005933 Op.getValueType());
5934 }
Gabor Greif1c80d112008-08-28 21:40:38 +00005935 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005936 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5937 else
Dale Johannesen9972b632009-02-02 19:03:57 +00005938 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman29c3cef2008-08-14 20:04:46 +00005939 DestTy, Tmp1);
5940 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5941 break;
5942 }
5943 return Result;
5944}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005945
5946/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5947///
Dan Gohman8181bd12008-07-27 21:46:04 +00005948SDValue SelectionDAGLegalize::
Dale Johannesen9972b632009-02-02 19:03:57 +00005949ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00005950 MVT SourceVT = Source.getValueType();
Dan Gohman8b232ff2008-03-11 01:59:03 +00005951 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005952
Dan Gohman29c3cef2008-08-14 20:04:46 +00005953 // Expand unsupported int-to-fp vector casts by unrolling them.
5954 if (DestTy.isVector()) {
5955 if (!ExpandSource)
5956 return LegalizeOp(UnrollVectorOp(Source));
5957 MVT DestEltTy = DestTy.getVectorElementType();
5958 if (DestTy.getVectorNumElements() == 1) {
5959 SDValue Scalar = ScalarizeVectorOp(Source);
5960 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesen9972b632009-02-02 19:03:57 +00005961 DestEltTy, Scalar, dl);
Evan Cheng907a2d22009-02-25 22:49:59 +00005962 return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005963 }
5964 SDValue Lo, Hi;
5965 SplitVectorOp(Source, Lo, Hi);
5966 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5967 DestTy.getVectorNumElements() / 2);
Scott Michel91099d62009-02-17 22:15:04 +00005968 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesen9972b632009-02-02 19:03:57 +00005969 Lo, dl);
Scott Michel91099d62009-02-17 22:15:04 +00005970 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesen9972b632009-02-02 19:03:57 +00005971 Hi, dl);
5972 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengd901b662008-10-13 18:46:18 +00005973 HiResult));
Dan Gohman29c3cef2008-08-14 20:04:46 +00005974 }
5975
Evan Chengf99a7752008-04-01 02:18:22 +00005976 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5977 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohmana193dba2008-03-05 02:07:31 +00005978 // The integer value loaded will be incorrectly if the 'sign bit' of the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005979 // incoming integer is set. To handle this, we dynamically test to see if
5980 // it is set, and, if so, add a fudge factor.
Dan Gohman8181bd12008-07-27 21:46:04 +00005981 SDValue Hi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005982 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005983 SDValue Lo;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005984 ExpandOp(Source, Lo, Hi);
Dale Johannesen9972b632009-02-02 19:03:57 +00005985 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman8b232ff2008-03-11 01:59:03 +00005986 } else {
5987 // The comparison for the sign bit will use the entire operand.
5988 Hi = Source;
5989 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005990
Dale Johannesen96db7962008-11-04 20:52:49 +00005991 // Check to see if the target has a custom way to lower this. If so, use
5992 // it. (Note we've already expanded the operand in this case.)
Dale Johannesena359b8b2008-10-21 20:50:01 +00005993 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
5994 default: assert(0 && "This action not implemented for this operation!");
5995 case TargetLowering::Legal:
5996 case TargetLowering::Expand:
5997 break; // This case is handled below.
5998 case TargetLowering::Custom: {
Dale Johannesen24dd9a52009-02-07 00:55:49 +00005999 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, dl, DestTy,
Dale Johannesena359b8b2008-10-21 20:50:01 +00006000 Source), DAG);
6001 if (NV.getNode())
6002 return LegalizeOp(NV);
6003 break; // The target decided this was legal after all
6004 }
6005 }
6006
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006007 // If this is unsigned, and not supported, first perform the conversion to
6008 // signed, then adjust the result if the sign bit is set.
Dale Johannesen9972b632009-02-02 19:03:57 +00006009 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006010
Scott Michel91099d62009-02-17 22:15:04 +00006011 SDValue SignSet = DAG.getSetCC(dl,
Dale Johannesen9972b632009-02-02 19:03:57 +00006012 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00006013 Hi, DAG.getConstant(0, Hi.getValueType()),
6014 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00006015 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesen9972b632009-02-02 19:03:57 +00006016 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006017 SignSet, Four, Zero);
6018 uint64_t FF = 0x5f800000ULL;
6019 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattner50ce8342009-03-08 01:47:41 +00006020 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006021
Dan Gohman8181bd12008-07-27 21:46:04 +00006022 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +00006023 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen9972b632009-02-02 19:03:57 +00006024 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00006025 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00006026 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006027 if (DestTy == MVT::f32)
Dale Johannesen9972b632009-02-02 19:03:57 +00006028 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00006029 PseudoSourceValue::getConstantPool(), 0,
6030 false, Alignment);
Duncan Sandsec142ee2008-06-08 20:54:56 +00006031 else if (DestTy.bitsGT(MVT::f32))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006032 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen9972b632009-02-02 19:03:57 +00006033 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman12a9c082008-02-06 22:27:42 +00006034 CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00006035 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00006036 MVT::f32, false, Alignment);
Scott Michel91099d62009-02-17 22:15:04 +00006037 else
Dale Johannesen2fc20782007-09-14 22:26:36 +00006038 assert(0 && "Unexpected conversion");
6039
Duncan Sands92c43912008-06-06 12:08:01 +00006040 MVT SCVT = SignedConv.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006041 if (SCVT != DestTy) {
6042 // Destination type needs to be expanded as well. The FADD now we are
6043 // constructing will be expanded into a libcall.
Duncan Sands92c43912008-06-06 12:08:01 +00006044 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
6045 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesen9972b632009-02-02 19:03:57 +00006046 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006047 SignedConv, SignedConv.getValue(1));
6048 }
Dale Johannesen9972b632009-02-02 19:03:57 +00006049 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006050 }
Dale Johannesen9972b632009-02-02 19:03:57 +00006051 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006052 }
6053
6054 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmanc98645c2008-03-05 01:08:17 +00006055 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006056 default: assert(0 && "This action not implemented for this operation!");
6057 case TargetLowering::Legal:
6058 case TargetLowering::Expand:
6059 break; // This case is handled below.
6060 case TargetLowering::Custom: {
Dale Johannesen9972b632009-02-02 19:03:57 +00006061 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006062 Source), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006063 if (NV.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006064 return LegalizeOp(NV);
6065 break; // The target decided this was legal after all
6066 }
6067 }
6068
6069 // Expand the source, then glue it back together for the call. We must expand
6070 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman8b232ff2008-03-11 01:59:03 +00006071 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006072 SDValue SrcLo, SrcHi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00006073 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesen9972b632009-02-02 19:03:57 +00006074 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman8b232ff2008-03-11 01:59:03 +00006075 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006076
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006077 RTLIB::Libcall LC = isSigned ?
6078 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6079 RTLIB::getUINTTOFP(SourceVT, DestTy);
6080 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6081
Dale Johannesen9972b632009-02-02 19:03:57 +00006082 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman8181bd12008-07-27 21:46:04 +00006083 SDValue HiPart;
Gabor Greif1c80d112008-08-28 21:40:38 +00006084 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6085 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesen9972b632009-02-02 19:03:57 +00006086 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmanec51f642008-03-10 23:03:31 +00006087 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006088}
6089
6090/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6091/// INT_TO_FP operation of the specified operand when the target requests that
6092/// we expand it. At this point, we know that the result and operand types are
6093/// legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00006094SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6095 SDValue Op0,
Dale Johannesen9972b632009-02-02 19:03:57 +00006096 MVT DestVT,
6097 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006098 if (Op0.getValueType() == MVT::i32) {
6099 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michel91099d62009-02-17 22:15:04 +00006100
Chris Lattner0aeb1d02008-01-16 07:03:22 +00006101 // Get the stack frame index of a 8 byte buffer.
Dan Gohman8181bd12008-07-27 21:46:04 +00006102 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michel91099d62009-02-17 22:15:04 +00006103
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006104 // word offset constant for Hi/Lo address computation
Dan Gohman8181bd12008-07-27 21:46:04 +00006105 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006106 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman8181bd12008-07-27 21:46:04 +00006107 SDValue Hi = StackSlot;
Scott Michel91099d62009-02-17 22:15:04 +00006108 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Dale Johannesen9972b632009-02-02 19:03:57 +00006109 TLI.getPointerTy(), StackSlot,WordOff);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006110 if (TLI.isLittleEndian())
6111 std::swap(Hi, Lo);
Scott Michel91099d62009-02-17 22:15:04 +00006112
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006113 // if signed map to unsigned space
Dan Gohman8181bd12008-07-27 21:46:04 +00006114 SDValue Op0Mapped;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006115 if (isSigned) {
6116 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman8181bd12008-07-27 21:46:04 +00006117 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesen9972b632009-02-02 19:03:57 +00006118 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006119 } else {
6120 Op0Mapped = Op0;
6121 }
6122 // store the lo of the constructed double - based on integer input
Dale Johannesen9972b632009-02-02 19:03:57 +00006123 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006124 Op0Mapped, Lo, NULL, 0);
6125 // initial hi portion of constructed double
Dan Gohman8181bd12008-07-27 21:46:04 +00006126 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006127 // store the hi of the constructed double - biased exponent
Dale Johannesen9972b632009-02-02 19:03:57 +00006128 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006129 // load the constructed double
Dale Johannesen9972b632009-02-02 19:03:57 +00006130 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006131 // FP constant to bias correct the final result
Dan Gohman8181bd12008-07-27 21:46:04 +00006132 SDValue Bias = DAG.getConstantFP(isSigned ?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006133 BitsToDouble(0x4330000080000000ULL)
6134 : BitsToDouble(0x4330000000000000ULL),
6135 MVT::f64);
6136 // subtract the bias
Dale Johannesen9972b632009-02-02 19:03:57 +00006137 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006138 // final result
Dan Gohman8181bd12008-07-27 21:46:04 +00006139 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006140 // handle final rounding
6141 if (DestVT == MVT::f64) {
6142 // do nothing
6143 Result = Sub;
Duncan Sandsec142ee2008-06-08 20:54:56 +00006144 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesen9972b632009-02-02 19:03:57 +00006145 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner5872a362008-01-17 07:00:52 +00006146 DAG.getIntPtrConstant(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00006147 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen9972b632009-02-02 19:03:57 +00006148 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006149 }
6150 return Result;
6151 }
6152 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesen9972b632009-02-02 19:03:57 +00006153 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006154
Dale Johannesen9972b632009-02-02 19:03:57 +00006155 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00006156 Op0, DAG.getConstant(0, Op0.getValueType()),
6157 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00006158 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesen9972b632009-02-02 19:03:57 +00006159 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006160 SignSet, Four, Zero);
6161
6162 // If the sign bit of the integer is set, the large number will be treated
6163 // as a negative number. To counteract this, the dynamic code adds an
6164 // offset depending on the data type.
6165 uint64_t FF;
Duncan Sands92c43912008-06-06 12:08:01 +00006166 switch (Op0.getValueType().getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006167 default: assert(0 && "Unsupported integer type!");
6168 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6169 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6170 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6171 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6172 }
6173 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattner50ce8342009-03-08 01:47:41 +00006174 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006175
Dan Gohman8181bd12008-07-27 21:46:04 +00006176 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +00006177 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen9972b632009-02-02 19:03:57 +00006178 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00006179 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00006180 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006181 if (DestVT == MVT::f32)
Dale Johannesen9972b632009-02-02 19:03:57 +00006182 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00006183 PseudoSourceValue::getConstantPool(), 0,
6184 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006185 else {
Dan Gohman12a9c082008-02-06 22:27:42 +00006186 FudgeInReg =
Dale Johannesen9972b632009-02-02 19:03:57 +00006187 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman12a9c082008-02-06 22:27:42 +00006188 DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00006189 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00006190 MVT::f32, false, Alignment));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006191 }
6192
Dale Johannesen9972b632009-02-02 19:03:57 +00006193 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006194}
6195
6196/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6197/// *INT_TO_FP operation of the specified operand when the target requests that
6198/// we promote it. At this point, we know that the result and operand types are
6199/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6200/// operation that takes a larger input.
Dan Gohman8181bd12008-07-27 21:46:04 +00006201SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6202 MVT DestVT,
Dale Johannesen9972b632009-02-02 19:03:57 +00006203 bool isSigned,
6204 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006205 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00006206 MVT NewInTy = LegalOp.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006207
6208 unsigned OpToUse = 0;
6209
6210 // Scan for the appropriate larger type to use.
6211 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00006212 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6213 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006214
6215 // If the target supports SINT_TO_FP of this type, use it.
6216 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6217 default: break;
6218 case TargetLowering::Legal:
6219 if (!TLI.isTypeLegal(NewInTy))
6220 break; // Can't use this datatype.
6221 // FALL THROUGH.
6222 case TargetLowering::Custom:
6223 OpToUse = ISD::SINT_TO_FP;
6224 break;
6225 }
6226 if (OpToUse) break;
6227 if (isSigned) continue;
6228
6229 // If the target supports UINT_TO_FP of this type, use it.
6230 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6231 default: break;
6232 case TargetLowering::Legal:
6233 if (!TLI.isTypeLegal(NewInTy))
6234 break; // Can't use this datatype.
6235 // FALL THROUGH.
6236 case TargetLowering::Custom:
6237 OpToUse = ISD::UINT_TO_FP;
6238 break;
6239 }
6240 if (OpToUse) break;
6241
6242 // Otherwise, try a larger type.
6243 }
6244
6245 // Okay, we found the operation and type to use. Zero extend our input to the
6246 // desired type then run the operation on it.
Dale Johannesen9972b632009-02-02 19:03:57 +00006247 return DAG.getNode(OpToUse, dl, DestVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006248 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesen9972b632009-02-02 19:03:57 +00006249 dl, NewInTy, LegalOp));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006250}
6251
6252/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6253/// FP_TO_*INT operation of the specified operand when the target requests that
6254/// we promote it. At this point, we know that the result and operand types are
6255/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6256/// operation that returns a larger result.
Dan Gohman8181bd12008-07-27 21:46:04 +00006257SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6258 MVT DestVT,
Dale Johannesen9972b632009-02-02 19:03:57 +00006259 bool isSigned,
6260 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006261 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00006262 MVT NewOutTy = DestVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006263
6264 unsigned OpToUse = 0;
6265
6266 // Scan for the appropriate larger type to use.
6267 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00006268 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6269 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006270
6271 // If the target supports FP_TO_SINT returning this type, use it.
6272 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6273 default: break;
6274 case TargetLowering::Legal:
6275 if (!TLI.isTypeLegal(NewOutTy))
6276 break; // Can't use this datatype.
6277 // FALL THROUGH.
6278 case TargetLowering::Custom:
6279 OpToUse = ISD::FP_TO_SINT;
6280 break;
6281 }
6282 if (OpToUse) break;
6283
6284 // If the target supports FP_TO_UINT of this type, use it.
6285 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
6286 default: break;
6287 case TargetLowering::Legal:
6288 if (!TLI.isTypeLegal(NewOutTy))
6289 break; // Can't use this datatype.
6290 // FALL THROUGH.
6291 case TargetLowering::Custom:
6292 OpToUse = ISD::FP_TO_UINT;
6293 break;
6294 }
6295 if (OpToUse) break;
6296
6297 // Otherwise, try a larger type.
6298 }
6299
Scott Michel91099d62009-02-17 22:15:04 +00006300
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006301 // Okay, we found the operation and type to use.
Dale Johannesen9972b632009-02-02 19:03:57 +00006302 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sandsac496a12008-07-04 11:47:58 +00006303
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006304 // If the operation produces an invalid type, it must be custom lowered. Use
6305 // the target lowering hooks to expand it. Just keep the low part of the
6306 // expanded operation, we know that we're truncating anyway.
6307 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands7d9834b2008-12-01 11:39:25 +00006308 SmallVector<SDValue, 2> Results;
6309 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6310 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6311 Operation = Results[0];
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006312 }
Duncan Sandsac496a12008-07-04 11:47:58 +00006313
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006314 // Truncate the result of the extended FP_TO_*INT operation to the desired
6315 // size.
Dale Johannesen9972b632009-02-02 19:03:57 +00006316 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006317}
6318
6319/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6320///
Dale Johannesen82b5b722009-02-02 22:12:50 +00006321SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00006322 MVT VT = Op.getValueType();
6323 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00006324 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands92c43912008-06-06 12:08:01 +00006325 switch (VT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006326 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6327 case MVT::i16:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006328 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6329 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6330 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006331 case MVT::i32:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006332 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6333 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6334 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6335 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6336 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6337 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6338 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6339 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6340 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006341 case MVT::i64:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006342 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
6343 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
6344 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6345 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6346 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6347 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6348 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
6349 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
6350 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6351 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6352 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6353 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6354 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6355 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6356 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
6357 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
6358 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6359 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6360 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
6361 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
6362 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006363 }
6364}
6365
6366/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6367///
Scott Michel91099d62009-02-17 22:15:04 +00006368SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen82b5b722009-02-02 22:12:50 +00006369 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006370 switch (Opc) {
6371 default: assert(0 && "Cannot expand this yet!");
6372 case ISD::CTPOP: {
6373 static const uint64_t mask[6] = {
6374 0x5555555555555555ULL, 0x3333333333333333ULL,
6375 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6376 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6377 };
Duncan Sands92c43912008-06-06 12:08:01 +00006378 MVT VT = Op.getValueType();
6379 MVT ShVT = TLI.getShiftAmountTy();
6380 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006381 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6382 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sands505ba942009-02-01 18:06:53 +00006383 unsigned EltSize = VT.isVector() ?
6384 VT.getVectorElementType().getSizeInBits() : len;
6385 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman8181bd12008-07-27 21:46:04 +00006386 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michel91099d62009-02-17 22:15:04 +00006387 Op = DAG.getNode(ISD::ADD, dl, VT,
Dale Johannesen18ae8af2009-02-06 21:55:48 +00006388 DAG.getNode(ISD::AND, dl, VT, Op, Tmp2),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006389 DAG.getNode(ISD::AND, dl, VT,
6390 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3),
6391 Tmp2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006392 }
6393 return Op;
6394 }
6395 case ISD::CTLZ: {
6396 // for now, we do this:
6397 // x = x | (x >> 1);
6398 // x = x | (x >> 2);
6399 // ...
6400 // x = x | (x >>16);
6401 // x = x | (x >>32); // for 64-bit input
6402 // return popcount(~x);
6403 //
6404 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00006405 MVT VT = Op.getValueType();
6406 MVT ShVT = TLI.getShiftAmountTy();
6407 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006408 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006409 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michel91099d62009-02-17 22:15:04 +00006410 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesen18ae8af2009-02-06 21:55:48 +00006411 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006412 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00006413 Op = DAG.getNOT(dl, Op, VT);
6414 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006415 }
6416 case ISD::CTTZ: {
6417 // for now, we use: { return popcount(~x & (x - 1)); }
6418 // unless the target has ctlz but not ctpop, in which case we use:
6419 // { return 32 - nlz(~x & (x-1)); }
6420 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00006421 MVT VT = Op.getValueType();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006422 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
6423 DAG.getNOT(dl, Op, VT),
6424 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendlingfcfb47d2009-01-30 23:03:19 +00006425 DAG.getConstant(1, VT)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006426 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohman52c51aa2009-01-28 17:46:25 +00006427 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6428 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00006429 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands92c43912008-06-06 12:08:01 +00006430 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006431 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
6432 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006433 }
6434 }
6435}
6436
Dan Gohman8181bd12008-07-27 21:46:04 +00006437/// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006438/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman4fc03742008-10-01 15:07:49 +00006439/// LegalizedNodes map is filled in for any results that are not expanded, the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006440/// ExpandedNodes map is filled in for any results that are expanded, and the
6441/// Lo/Hi values are returned.
Dan Gohman8181bd12008-07-27 21:46:04 +00006442void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands92c43912008-06-06 12:08:01 +00006443 MVT VT = Op.getValueType();
6444 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greif1c80d112008-08-28 21:40:38 +00006445 SDNode *Node = Op.getNode();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006446 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006447 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00006448 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands92c43912008-06-06 12:08:01 +00006449 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006450
6451 // See if we already expanded it.
Dan Gohman8181bd12008-07-27 21:46:04 +00006452 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006453 = ExpandedNodes.find(Op);
6454 if (I != ExpandedNodes.end()) {
6455 Lo = I->second.first;
6456 Hi = I->second.second;
6457 return;
6458 }
6459
6460 switch (Node->getOpcode()) {
6461 case ISD::CopyFromReg:
6462 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006463 case ISD::FP_ROUND_INREG:
Scott Michel91099d62009-02-17 22:15:04 +00006464 if (VT == MVT::ppcf128 &&
6465 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006466 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006467 SDValue SrcLo, SrcHi, Src;
Dale Johannesend3b6af32007-10-11 23:32:15 +00006468 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006469 Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006470 SDValue Result = TLI.LowerOperation(
Dale Johannesen82b5b722009-02-02 22:12:50 +00006471 DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src, Op.getOperand(1)), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006472 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6473 Lo = Result.getNode()->getOperand(0);
6474 Hi = Result.getNode()->getOperand(1);
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006475 break;
6476 }
6477 // fall through
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006478 default:
6479#ifndef NDEBUG
6480 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
6481#endif
6482 assert(0 && "Do not know how to expand this operator!");
6483 abort();
Dan Gohman550c8462008-02-27 01:52:30 +00006484 case ISD::EXTRACT_ELEMENT:
6485 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006486 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman550c8462008-02-27 01:52:30 +00006487 return ExpandOp(Hi, Lo, Hi);
Dan Gohman7e7aa2c2008-02-27 19:44:57 +00006488 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen2ff963d2007-10-31 00:32:36 +00006489 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen2ff963d2007-10-31 00:32:36 +00006490 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6491 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6492 return ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006493 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00006494 Lo = DAG.getUNDEF(NVT);
6495 Hi = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006496 break;
6497 case ISD::Constant: {
Duncan Sands92c43912008-06-06 12:08:01 +00006498 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman97f1f8e2008-03-03 22:20:46 +00006499 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6500 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6501 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006502 break;
6503 }
6504 case ISD::ConstantFP: {
6505 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesen2aef5692007-10-11 18:07:22 +00006506 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00006507 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesen2aef5692007-10-11 18:07:22 +00006508 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6509 MVT::f64);
Scott Michel91099d62009-02-17 22:15:04 +00006510 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
Dale Johannesen2aef5692007-10-11 18:07:22 +00006511 MVT::f64);
6512 break;
6513 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006514 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
6515 if (getTypeAction(Lo.getValueType()) == Expand)
6516 ExpandOp(Lo, Lo, Hi);
6517 break;
6518 }
6519 case ISD::BUILD_PAIR:
6520 // Return the operands.
6521 Lo = Node->getOperand(0);
6522 Hi = Node->getOperand(1);
6523 break;
Scott Michel91099d62009-02-17 22:15:04 +00006524
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006525 case ISD::MERGE_VALUES:
Chris Lattner1b66f822007-11-24 19:12:15 +00006526 if (Node->getNumValues() == 1) {
6527 ExpandOp(Op.getOperand(0), Lo, Hi);
6528 break;
6529 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006530 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif46bf5472008-08-26 22:36:50 +00006531 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006532 Op.getValue(1).getValueType() == MVT::Other &&
6533 "unhandled MERGE_VALUES");
6534 ExpandOp(Op.getOperand(0), Lo, Hi);
6535 // Remember that we legalized the chain.
6536 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6537 break;
Scott Michel91099d62009-02-17 22:15:04 +00006538
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006539 case ISD::SIGN_EXTEND_INREG:
6540 ExpandOp(Node->getOperand(0), Lo, Hi);
6541 // sext_inreg the low part if needed.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006542 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1));
Scott Michel91099d62009-02-17 22:15:04 +00006543
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006544 // The high part gets the sign extension from the lo-part. This handles
6545 // things like sextinreg V:i64 from i8.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006546 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Duncan Sands92c43912008-06-06 12:08:01 +00006547 DAG.getConstant(NVT.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006548 TLI.getShiftAmountTy()));
6549 break;
6550
6551 case ISD::BSWAP: {
6552 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006553 SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi);
6554 Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006555 Lo = TempLo;
6556 break;
6557 }
Scott Michel91099d62009-02-17 22:15:04 +00006558
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006559 case ISD::CTPOP:
6560 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006561 Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6562 DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
6563 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006564 Hi = DAG.getConstant(0, NVT);
6565 break;
6566
6567 case ISD::CTLZ: {
6568 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
6569 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006570 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006571 SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
6572 SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ,
6573 BitsC, ISD::SETNE);
6574 SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
6575 LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006576
Dale Johannesen82b5b722009-02-02 22:12:50 +00006577 Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006578 Hi = DAG.getConstant(0, NVT);
6579 break;
6580 }
6581
6582 case ISD::CTTZ: {
6583 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
6584 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006585 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006586 SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
6587 SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ,
6588 BitsC, ISD::SETNE);
6589 SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
6590 HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006591
Dale Johannesen82b5b722009-02-02 22:12:50 +00006592 Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006593 Hi = DAG.getConstant(0, NVT);
6594 break;
6595 }
6596
6597 case ISD::VAARG: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006598 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6599 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dale Johannesen564036c2009-02-04 00:13:36 +00006600 Lo = DAG.getVAArg(NVT, dl, Ch, Ptr, Node->getOperand(2));
6601 Hi = DAG.getVAArg(NVT, dl, Lo.getValue(1), Ptr, Node->getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006602
6603 // Remember that we legalized the chain.
6604 Hi = LegalizeOp(Hi);
6605 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006606 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006607 std::swap(Lo, Hi);
6608 break;
6609 }
Scott Michel91099d62009-02-17 22:15:04 +00006610
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006611 case ISD::LOAD: {
6612 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00006613 SDValue Ch = LD->getChain(); // Legalize the chain.
6614 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006615 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman29c3cef2008-08-14 20:04:46 +00006616 const Value *SV = LD->getSrcValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006617 int SVOffset = LD->getSrcValueOffset();
6618 unsigned Alignment = LD->getAlignment();
6619 bool isVolatile = LD->isVolatile();
6620
6621 if (ExtType == ISD::NON_EXTLOAD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006622 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006623 isVolatile, Alignment);
6624 if (VT == MVT::f32 || VT == MVT::f64) {
6625 // f32->i32 or f64->i64 one to one expansion.
6626 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006627 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006628 // Recursively expand the new load.
6629 if (getTypeAction(NVT) == Expand)
6630 ExpandOp(Lo, Lo, Hi);
6631 break;
6632 }
6633
6634 // Increment the pointer to the other half.
Duncan Sands92c43912008-06-06 12:08:01 +00006635 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dale Johannesen82b5b722009-02-02 22:12:50 +00006636 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00006637 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006638 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00006639 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006640 Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006641 isVolatile, Alignment);
6642
6643 // Build a factor node to remember that this load is independent of the
6644 // other one.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006645 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006646 Hi.getValue(1));
6647
6648 // Remember that we legalized the chain.
6649 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006650 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006651 std::swap(Lo, Hi);
6652 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00006653 MVT EVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006654
Dale Johannesen2550e3a2007-10-19 20:29:00 +00006655 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6656 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006657 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dale Johannesen82b5b722009-02-02 22:12:50 +00006658 SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006659 SVOffset, isVolatile, Alignment);
6660 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006661 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dale Johannesen82b5b722009-02-02 22:12:50 +00006662 ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006663 break;
6664 }
Scott Michel91099d62009-02-17 22:15:04 +00006665
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006666 if (EVT == NVT)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006667 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006668 SVOffset, isVolatile, Alignment);
6669 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00006670 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006671 SVOffset, EVT, isVolatile,
6672 Alignment);
Scott Michel91099d62009-02-17 22:15:04 +00006673
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006674 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006675 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006676
6677 if (ExtType == ISD::SEXTLOAD) {
6678 // The high part is obtained by SRA'ing all but one of the bits of the
6679 // lo part.
Duncan Sands92c43912008-06-06 12:08:01 +00006680 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006681 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006682 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6683 } else if (ExtType == ISD::ZEXTLOAD) {
6684 // The high part is just a zero.
6685 Hi = DAG.getConstant(0, NVT);
6686 } else /* if (ExtType == ISD::EXTLOAD) */ {
6687 // The high part is undefined.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00006688 Hi = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006689 }
6690 }
6691 break;
6692 }
6693 case ISD::AND:
6694 case ISD::OR:
6695 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +00006696 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006697 ExpandOp(Node->getOperand(0), LL, LH);
6698 ExpandOp(Node->getOperand(1), RL, RH);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006699 Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL);
6700 Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006701 break;
6702 }
6703 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006704 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006705 ExpandOp(Node->getOperand(1), LL, LH);
6706 ExpandOp(Node->getOperand(2), RL, RH);
6707 if (getTypeAction(NVT) == Expand)
6708 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006709 Lo = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LL, RL);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006710 if (VT != MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006711 Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006712 break;
6713 }
6714 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006715 SDValue TL, TH, FL, FH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006716 ExpandOp(Node->getOperand(2), TL, TH);
6717 ExpandOp(Node->getOperand(3), FL, FH);
6718 if (getTypeAction(NVT) == Expand)
6719 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006720 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006721 Node->getOperand(1), TL, FL, Node->getOperand(4));
6722 if (VT != MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006723 Hi = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006724 Node->getOperand(1), TH, FH, Node->getOperand(4));
6725 break;
6726 }
6727 case ISD::ANY_EXTEND:
6728 // The low part is any extension of the input (which degenerates to a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006729 Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006730 // The high part is undefined.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00006731 Hi = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006732 break;
6733 case ISD::SIGN_EXTEND: {
6734 // The low part is just a sign extension of the input (which degenerates to
6735 // a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006736 Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006737
6738 // The high part is obtained by SRA'ing all but one of the bits of the lo
6739 // part.
Duncan Sands92c43912008-06-06 12:08:01 +00006740 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006741 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006742 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6743 break;
6744 }
6745 case ISD::ZERO_EXTEND:
6746 // The low part is just a zero extension of the input (which degenerates to
6747 // a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006748 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006749
6750 // The high part is just a zero.
6751 Hi = DAG.getConstant(0, NVT);
6752 break;
Scott Michel91099d62009-02-17 22:15:04 +00006753
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006754 case ISD::TRUNCATE: {
6755 // The input value must be larger than this value. Expand *it*.
Dan Gohman8181bd12008-07-27 21:46:04 +00006756 SDValue NewLo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006757 ExpandOp(Node->getOperand(0), NewLo, Hi);
Scott Michel91099d62009-02-17 22:15:04 +00006758
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006759 // The low part is now either the right size, or it is closer. If not the
6760 // right size, make an illegal truncate so we recursively expand it.
6761 if (NewLo.getValueType() != Node->getValueType(0))
Dale Johannesen82b5b722009-02-02 22:12:50 +00006762 NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006763 ExpandOp(NewLo, Lo, Hi);
6764 break;
6765 }
Scott Michel91099d62009-02-17 22:15:04 +00006766
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006767 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006768 SDValue Tmp;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006769 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6770 // If the target wants to, allow it to lower this itself.
6771 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6772 case Expand: assert(0 && "cannot expand FP!");
6773 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6774 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6775 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00006776 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006777 }
6778
6779 // f32 / f64 must be expanded to i32 / i64.
6780 if (VT == MVT::f32 || VT == MVT::f64) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006781 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006782 if (getTypeAction(NVT) == Expand)
6783 ExpandOp(Lo, Lo, Hi);
6784 break;
6785 }
6786
6787 // If source operand will be expanded to the same type as VT, i.e.
6788 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands92c43912008-06-06 12:08:01 +00006789 MVT VT0 = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006790 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6791 ExpandOp(Node->getOperand(0), Lo, Hi);
6792 break;
6793 }
6794
6795 // Turn this into a load/store pair by default.
Gabor Greif1c80d112008-08-28 21:40:38 +00006796 if (Tmp.getNode() == 0)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006797 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl);
Scott Michel91099d62009-02-17 22:15:04 +00006798
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006799 ExpandOp(Tmp, Lo, Hi);
6800 break;
6801 }
6802
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006803 case ISD::READCYCLECOUNTER: {
Scott Michel91099d62009-02-17 22:15:04 +00006804 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006805 TargetLowering::Custom &&
6806 "Must custom expand ReadCycleCounter");
Dan Gohman8181bd12008-07-27 21:46:04 +00006807 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006808 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006809 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006810 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006811 LegalizeOp(Tmp.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006812 break;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006813 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006814
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006815 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen44eb5372008-10-03 19:41:08 +00006816 // This operation does not need a loop.
6817 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6818 assert(Tmp.getNode() && "Node must be custom expanded!");
6819 ExpandOp(Tmp.getValue(0), Lo, Hi);
6820 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6821 LegalizeOp(Tmp.getValue(1)));
6822 break;
6823 }
6824
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006825 case ISD::ATOMIC_LOAD_ADD:
6826 case ISD::ATOMIC_LOAD_SUB:
6827 case ISD::ATOMIC_LOAD_AND:
6828 case ISD::ATOMIC_LOAD_OR:
6829 case ISD::ATOMIC_LOAD_XOR:
6830 case ISD::ATOMIC_LOAD_NAND:
6831 case ISD::ATOMIC_SWAP: {
Dale Johannesen44eb5372008-10-03 19:41:08 +00006832 // These operations require a loop to be generated. We can't do that yet,
6833 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesenf160d802008-10-02 18:53:47 +00006834 SDValue In2Lo, In2Hi, In2;
6835 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006836 In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi);
Dale Johannesen44eb5372008-10-03 19:41:08 +00006837 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
Scott Michel91099d62009-02-17 22:15:04 +00006838 SDValue Replace =
Dale Johannesen82b5b722009-02-02 22:12:50 +00006839 DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(),
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006840 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen44eb5372008-10-03 19:41:08 +00006841 Anode->getSrcValue(), Anode->getAlignment());
6842 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesenf160d802008-10-02 18:53:47 +00006843 ExpandOp(Result.getValue(0), Lo, Hi);
6844 // Remember that we legalized the chain.
6845 AddLegalizedOperand(SDValue(Node,1), LegalizeOp(Result.getValue(1)));
Andrew Lenharth81580822008-03-05 01:15:49 +00006846 break;
6847 }
6848
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006849 // These operators cannot be expanded directly, emit them as calls to
6850 // library functions.
6851 case ISD::FP_TO_SINT: {
6852 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006853 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006854 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6855 case Expand: assert(0 && "cannot expand FP!");
6856 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6857 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6858 }
6859
Dale Johannesen82b5b722009-02-02 22:12:50 +00006860 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006861
6862 // Now that the custom expander is done, expand the result, which is still
6863 // VT.
Gabor Greif1c80d112008-08-28 21:40:38 +00006864 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006865 ExpandOp(Op, Lo, Hi);
6866 break;
6867 }
6868 }
6869
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006870 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6871 VT);
6872 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6873 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006874 break;
6875 }
6876
6877 case ISD::FP_TO_UINT: {
6878 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006879 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006880 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6881 case Expand: assert(0 && "cannot expand FP!");
6882 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6883 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6884 }
Scott Michel91099d62009-02-17 22:15:04 +00006885
Dale Johannesen82b5b722009-02-02 22:12:50 +00006886 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006887
6888 // Now that the custom expander is done, expand the result.
Gabor Greif1c80d112008-08-28 21:40:38 +00006889 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006890 ExpandOp(Op, Lo, Hi);
6891 break;
6892 }
6893 }
6894
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006895 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6896 VT);
6897 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6898 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006899 break;
6900 }
6901
6902 case ISD::SHL: {
6903 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006904 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006905 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006906 SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006907 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006908 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006909 // Now that the custom expander is done, expand the result, which is
6910 // still VT.
6911 ExpandOp(Op, Lo, Hi);
6912 break;
6913 }
6914 }
Scott Michel91099d62009-02-17 22:15:04 +00006915
6916 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006917 // this X << 1 as X+X.
6918 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman52c51aa2009-01-28 17:46:25 +00006919 if (ShAmt->getAPIntValue() == 1 &&
Scott Michel91099d62009-02-17 22:15:04 +00006920 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00006921 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006922 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006923 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6924 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6925 LoOps[1] = LoOps[0];
Dale Johannesen82b5b722009-02-02 22:12:50 +00006926 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006927
6928 HiOps[1] = HiOps[0];
6929 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006930 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006931 break;
6932 }
6933 }
Scott Michel91099d62009-02-17 22:15:04 +00006934
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006935 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006936 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006937 break;
6938
6939 // If this target supports SHL_PARTS, use it.
6940 TargetLowering::LegalizeAction Action =
6941 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6942 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6943 Action == TargetLowering::Custom) {
Scott Michel91099d62009-02-17 22:15:04 +00006944 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006945 ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006946 break;
6947 }
6948
6949 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006950 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006951 break;
6952 }
6953
6954 case ISD::SRA: {
6955 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006956 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006957 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dale Johannesen18ae8af2009-02-06 21:55:48 +00006958 SDValue Op = DAG.getNode(ISD::SRA, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006959 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006960 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006961 // Now that the custom expander is done, expand the result, which is
6962 // still VT.
6963 ExpandOp(Op, Lo, Hi);
6964 break;
6965 }
6966 }
Scott Michel91099d62009-02-17 22:15:04 +00006967
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006968 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006969 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006970 break;
6971
6972 // If this target supports SRA_PARTS, use it.
6973 TargetLowering::LegalizeAction Action =
6974 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6975 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6976 Action == TargetLowering::Custom) {
Scott Michel91099d62009-02-17 22:15:04 +00006977 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006978 ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006979 break;
6980 }
6981
6982 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006983 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006984 break;
6985 }
6986
6987 case ISD::SRL: {
6988 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006989 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006990 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006991 SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006992 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006993 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006994 // Now that the custom expander is done, expand the result, which is
6995 // still VT.
6996 ExpandOp(Op, Lo, Hi);
6997 break;
6998 }
6999 }
7000
7001 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007002 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007003 break;
7004
7005 // If this target supports SRL_PARTS, use it.
7006 TargetLowering::LegalizeAction Action =
7007 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
7008 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
7009 Action == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007010 ExpandShiftParts(ISD::SRL_PARTS,
7011 Node->getOperand(0), ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007012 break;
7013 }
7014
7015 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007016 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007017 break;
7018 }
7019
7020 case ISD::ADD:
7021 case ISD::SUB: {
7022 // If the target wants to custom expand this, let them.
7023 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
7024 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007025 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00007026 if (Result.getNode()) {
Duncan Sands4c3885b2008-06-22 09:42:16 +00007027 ExpandOp(Result, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007028 break;
7029 }
7030 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007031 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007032 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007033 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7034 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman8181bd12008-07-27 21:46:04 +00007035 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007036 LoOps[0] = LHSL;
7037 LoOps[1] = RHSL;
7038 HiOps[0] = LHSH;
7039 HiOps[1] = RHSH;
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007040
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007041 //cascaded check to see if any smaller size has a a carry flag.
7042 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
7043 bool hasCarry = false;
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007044 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
7045 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohman52c51aa2009-01-28 17:46:25 +00007046 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007047 hasCarry = true;
7048 break;
7049 }
7050 }
7051
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007052 if(hasCarry) {
Evan Cheng2bdd3d92008-12-12 18:49:09 +00007053 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007054 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007055 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007056 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007057 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007058 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007059 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007060 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007061 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007062 }
7063 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007064 } else {
Andrew Lenharth5e814462008-10-07 14:15:42 +00007065 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007066 Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2);
7067 Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
7068 SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007069 Lo, LoOps[0], ISD::SETULT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007070 SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
Scott Michel91099d62009-02-17 22:15:04 +00007071 DAG.getConstant(1, NVT),
Andrew Lenharth5e814462008-10-07 14:15:42 +00007072 DAG.getConstant(0, NVT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00007073 SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007074 Lo, LoOps[1], ISD::SETULT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007075 SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
Scott Michel91099d62009-02-17 22:15:04 +00007076 DAG.getConstant(1, NVT),
Andrew Lenharth5e814462008-10-07 14:15:42 +00007077 Carry1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007078 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007079 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007080 Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
7081 Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
7082 SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT);
7083 SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
Scott Michel91099d62009-02-17 22:15:04 +00007084 DAG.getConstant(1, NVT),
Andrew Lenharth5e814462008-10-07 14:15:42 +00007085 DAG.getConstant(0, NVT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00007086 Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007087 }
7088 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007089 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007090 }
Scott Michel91099d62009-02-17 22:15:04 +00007091
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007092 case ISD::ADDC:
7093 case ISD::SUBC: {
7094 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007095 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007096 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7097 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7098 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00007099 SDValue LoOps[2] = { LHSL, RHSL };
7100 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michel91099d62009-02-17 22:15:04 +00007101
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007102 if (Node->getOpcode() == ISD::ADDC) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007103 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007104 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007105 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007106 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007107 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007108 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007109 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007110 }
7111 // Remember that we legalized the flag.
7112 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7113 break;
7114 }
7115 case ISD::ADDE:
7116 case ISD::SUBE: {
7117 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007118 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007119 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7120 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7121 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00007122 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7123 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michel91099d62009-02-17 22:15:04 +00007124
Dale Johannesen82b5b722009-02-02 22:12:50 +00007125 Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007126 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007127 Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3);
Scott Michel91099d62009-02-17 22:15:04 +00007128
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007129 // Remember that we legalized the flag.
7130 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7131 break;
7132 }
7133 case ISD::MUL: {
7134 // If the target wants to custom expand this, let them.
7135 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007136 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00007137 if (New.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007138 ExpandOp(New, Lo, Hi);
7139 break;
7140 }
7141 }
Scott Michel91099d62009-02-17 22:15:04 +00007142
Dan Gohman52c51aa2009-01-28 17:46:25 +00007143 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7144 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7145 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7146 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman5a199552007-10-08 18:33:35 +00007147 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007148 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007149 ExpandOp(Node->getOperand(0), LL, LH);
7150 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman07961cd2008-02-25 21:11:39 +00007151 unsigned OuterBitSize = Op.getValueSizeInBits();
7152 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman5a199552007-10-08 18:33:35 +00007153 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7154 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman2594d942008-03-10 20:42:19 +00007155 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7156 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7157 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman5a199552007-10-08 18:33:35 +00007158 // The inputs are both zero-extended.
7159 if (HasUMUL_LOHI) {
7160 // We can emit a umul_lohi.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007161 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00007162 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00007163 break;
7164 }
7165 if (HasMULHU) {
7166 // We can emit a mulhu+mul.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007167 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7168 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
Dan Gohman5a199552007-10-08 18:33:35 +00007169 break;
7170 }
Dan Gohman5a199552007-10-08 18:33:35 +00007171 }
Dan Gohman07961cd2008-02-25 21:11:39 +00007172 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman5a199552007-10-08 18:33:35 +00007173 // The input values are both sign-extended.
7174 if (HasSMUL_LOHI) {
7175 // We can emit a smul_lohi.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007176 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00007177 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00007178 break;
7179 }
7180 if (HasMULHS) {
7181 // We can emit a mulhs+mul.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007182 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7183 Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
Dan Gohman5a199552007-10-08 18:33:35 +00007184 break;
7185 }
7186 }
7187 if (HasUMUL_LOHI) {
7188 // Lo,Hi = umul LHS, RHS.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007189 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
Dan Gohman5a199552007-10-08 18:33:35 +00007190 DAG.getVTList(NVT, NVT), LL, RL);
7191 Lo = UMulLOHI;
7192 Hi = UMulLOHI.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007193 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7194 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7195 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7196 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007197 break;
7198 }
Dale Johannesen612c88b2007-10-24 22:26:08 +00007199 if (HasMULHU) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007200 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7201 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
7202 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7203 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7204 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7205 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dale Johannesen612c88b2007-10-24 22:26:08 +00007206 break;
7207 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007208 }
7209
Dan Gohman5a199552007-10-08 18:33:35 +00007210 // If nothing else, we can make a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007211 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007212 break;
7213 }
7214 case ISD::SDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007215 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007216 break;
7217 case ISD::UDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007218 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007219 break;
7220 case ISD::SREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007221 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007222 break;
7223 case ISD::UREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007224 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007225 break;
7226
7227 case ISD::FADD:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007228 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7229 RTLIB::ADD_F64,
7230 RTLIB::ADD_F80,
7231 RTLIB::ADD_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007232 Node, false, Hi);
7233 break;
7234 case ISD::FSUB:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007235 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7236 RTLIB::SUB_F64,
7237 RTLIB::SUB_F80,
7238 RTLIB::SUB_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007239 Node, false, Hi);
7240 break;
7241 case ISD::FMUL:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007242 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7243 RTLIB::MUL_F64,
7244 RTLIB::MUL_F80,
7245 RTLIB::MUL_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007246 Node, false, Hi);
7247 break;
7248 case ISD::FDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007249 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7250 RTLIB::DIV_F64,
7251 RTLIB::DIV_F80,
7252 RTLIB::DIV_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007253 Node, false, Hi);
7254 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007255 case ISD::FP_EXTEND: {
Dale Johannesen4c14d512007-10-12 01:37:08 +00007256 if (VT == MVT::ppcf128) {
7257 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7258 Node->getOperand(0).getValueType()==MVT::f64);
7259 const uint64_t zero = 0;
7260 if (Node->getOperand(0).getValueType()==MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00007261 Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0));
Dale Johannesen4c14d512007-10-12 01:37:08 +00007262 else
7263 Hi = Node->getOperand(0);
7264 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7265 break;
7266 }
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007267 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7268 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7269 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007270 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007271 }
7272 case ISD::FP_ROUND: {
7273 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7274 VT);
7275 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7276 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007277 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007278 }
Evan Cheng5316b392008-09-09 23:02:14 +00007279 case ISD::FSQRT:
7280 case ISD::FSIN:
Scott Michel91099d62009-02-17 22:15:04 +00007281 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007282 case ISD::FLOG:
7283 case ISD::FLOG2:
7284 case ISD::FLOG10:
7285 case ISD::FEXP:
7286 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00007287 case ISD::FTRUNC:
7288 case ISD::FFLOOR:
7289 case ISD::FCEIL:
7290 case ISD::FRINT:
7291 case ISD::FNEARBYINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00007292 case ISD::FPOW:
7293 case ISD::FPOWI: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007294 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
7295 switch(Node->getOpcode()) {
7296 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00007297 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7298 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007299 break;
7300 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00007301 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7302 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007303 break;
7304 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00007305 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7306 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007307 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00007308 case ISD::FLOG:
7309 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7310 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7311 break;
7312 case ISD::FLOG2:
7313 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7314 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7315 break;
7316 case ISD::FLOG10:
7317 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7318 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7319 break;
7320 case ISD::FEXP:
7321 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7322 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7323 break;
7324 case ISD::FEXP2:
7325 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7326 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7327 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00007328 case ISD::FTRUNC:
7329 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7330 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7331 break;
7332 case ISD::FFLOOR:
7333 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7334 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7335 break;
7336 case ISD::FCEIL:
7337 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7338 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7339 break;
7340 case ISD::FRINT:
7341 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7342 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7343 break;
7344 case ISD::FNEARBYINT:
7345 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7346 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7347 break;
Evan Cheng5316b392008-09-09 23:02:14 +00007348 case ISD::FPOW:
7349 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7350 RTLIB::POW_PPCF128);
7351 break;
7352 case ISD::FPOWI:
7353 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7354 RTLIB::POWI_PPCF128);
7355 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007356 default: assert(0 && "Unreachable!");
7357 }
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007358 Lo = ExpandLibCall(LC, Node, false, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007359 break;
7360 }
7361 case ISD::FABS: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00007362 if (VT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007363 SDValue Tmp;
Dale Johannesen5707ef82007-10-12 19:02:17 +00007364 ExpandOp(Node->getOperand(0), Lo, Tmp);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007365 Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp);
Dale Johannesen5707ef82007-10-12 19:02:17 +00007366 // lo = hi==fabs(hi) ? lo : -lo;
Dale Johannesen82b5b722009-02-02 22:12:50 +00007367 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp,
7368 Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo),
Dale Johannesen5707ef82007-10-12 19:02:17 +00007369 DAG.getCondCode(ISD::SETEQ));
7370 break;
7371 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007372 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007373 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7374 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007375 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7376 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7377 Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007378 if (getTypeAction(NVT) == Expand)
7379 ExpandOp(Lo, Lo, Hi);
7380 break;
7381 }
7382 case ISD::FNEG: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00007383 if (VT == MVT::ppcf128) {
7384 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007385 Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo);
7386 Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi);
Dale Johannesen5707ef82007-10-12 19:02:17 +00007387 break;
7388 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007389 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007390 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7391 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007392 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7393 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7394 Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007395 if (getTypeAction(NVT) == Expand)
7396 ExpandOp(Lo, Lo, Hi);
7397 break;
7398 }
7399 case ISD::FCOPYSIGN: {
7400 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7401 if (getTypeAction(NVT) == Expand)
7402 ExpandOp(Lo, Lo, Hi);
7403 break;
7404 }
7405 case ISD::SINT_TO_FP:
7406 case ISD::UINT_TO_FP: {
7407 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands92c43912008-06-06 12:08:01 +00007408 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesen6a779c82008-03-18 17:28:38 +00007409
7410 // Promote the operand if needed. Do this before checking for
7411 // ppcf128 so conversions of i16 and i8 work.
7412 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007413 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesen6a779c82008-03-18 17:28:38 +00007414 Tmp = isSigned
Dale Johannesen82b5b722009-02-02 22:12:50 +00007415 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp,
Dale Johannesen6a779c82008-03-18 17:28:38 +00007416 DAG.getValueType(SrcVT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00007417 : DAG.getZeroExtendInReg(Tmp, dl, SrcVT);
Gabor Greif1c80d112008-08-28 21:40:38 +00007418 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesen6a779c82008-03-18 17:28:38 +00007419 SrcVT = Node->getOperand(0).getValueType();
7420 }
7421
Dan Gohmanec51f642008-03-10 23:03:31 +00007422 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohman84d00962008-02-25 21:39:34 +00007423 static const uint64_t zero = 0;
Dale Johannesen4c14d512007-10-12 01:37:08 +00007424 if (isSigned) {
Scott Michel91099d62009-02-17 22:15:04 +00007425 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesen4c14d512007-10-12 01:37:08 +00007426 Node->getOperand(0)));
7427 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7428 } else {
Dan Gohman84d00962008-02-25 21:39:34 +00007429 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Scott Michel91099d62009-02-17 22:15:04 +00007430 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesen4c14d512007-10-12 01:37:08 +00007431 Node->getOperand(0)));
7432 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007433 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007434 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen82b5b722009-02-02 22:12:50 +00007435 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl,
7436 MVT::ppcf128, Node->getOperand(0),
Scott Michel91099d62009-02-17 22:15:04 +00007437 DAG.getConstant(0, MVT::i32),
Dale Johannesen82b5b722009-02-02 22:12:50 +00007438 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Dale Johannesen4c14d512007-10-12 01:37:08 +00007439 DAG.getConstantFP(
7440 APFloat(APInt(128, 2, TwoE32)),
7441 MVT::ppcf128)),
7442 Hi,
7443 DAG.getCondCode(ISD::SETLT)),
7444 Lo, Hi);
7445 }
7446 break;
7447 }
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007448 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7449 // si64->ppcf128 done by libcall, below
Dan Gohman84d00962008-02-25 21:39:34 +00007450 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen82b5b722009-02-02 22:12:50 +00007451 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128,
7452 Node->getOperand(0)), Lo, Hi);
7453 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007454 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
Dale Johannesen82b5b722009-02-02 22:12:50 +00007455 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128,
7456 Node->getOperand(0),
Scott Michel91099d62009-02-17 22:15:04 +00007457 DAG.getConstant(0, MVT::i64),
Dale Johannesen82b5b722009-02-02 22:12:50 +00007458 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007459 DAG.getConstantFP(
7460 APFloat(APInt(128, 2, TwoE64)),
7461 MVT::ppcf128)),
7462 Hi,
7463 DAG.getCondCode(ISD::SETLT)),
7464 Lo, Hi);
7465 break;
7466 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007467
Dan Gohmanec51f642008-03-10 23:03:31 +00007468 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00007469 Node->getOperand(0), dl);
Evan Chenga8740032008-04-01 01:50:16 +00007470 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng4a2f6df2008-04-01 01:51:26 +00007471 // float to i32 etc. can be 'expanded' to a single node.
Evan Chenga8740032008-04-01 01:50:16 +00007472 ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007473 break;
7474 }
7475 }
7476
7477 // Make sure the resultant values have been legalized themselves, unless this
7478 // is a type that requires multi-step expansion.
7479 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7480 Lo = LegalizeOp(Lo);
Gabor Greif1c80d112008-08-28 21:40:38 +00007481 if (Hi.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007482 // Don't legalize the high part if it is expanded to a single node.
7483 Hi = LegalizeOp(Hi);
7484 }
7485
7486 // Remember in a map if the values will be reused later.
Dan Gohman55d19662008-07-07 17:46:23 +00007487 bool isNew =
7488 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007489 assert(isNew && "Value already expanded?!?");
Evan Chengcf576fd2008-11-24 07:09:49 +00007490 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007491}
7492
7493/// SplitVectorOp - Given an operand of vector type, break it down into
7494/// two smaller values, still of vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00007495void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7496 SDValue &Hi) {
Duncan Sands92c43912008-06-06 12:08:01 +00007497 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greif1c80d112008-08-28 21:40:38 +00007498 SDNode *Node = Op.getNode();
Dale Johannesen352c47e2009-02-02 20:41:04 +00007499 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00007500 unsigned NumElements = Op.getValueType().getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007501 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman4a365ad2007-11-15 21:15:26 +00007502
Duncan Sands92c43912008-06-06 12:08:01 +00007503 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman4a365ad2007-11-15 21:15:26 +00007504
7505 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7506 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7507
Duncan Sands92c43912008-06-06 12:08:01 +00007508 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7509 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman4a365ad2007-11-15 21:15:26 +00007510
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007511 // See if we already split it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007512 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007513 = SplitNodes.find(Op);
7514 if (I != SplitNodes.end()) {
7515 Lo = I->second.first;
7516 Hi = I->second.second;
7517 return;
7518 }
Scott Michel91099d62009-02-17 22:15:04 +00007519
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007520 switch (Node->getOpcode()) {
Scott Michel91099d62009-02-17 22:15:04 +00007521 default:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007522#ifndef NDEBUG
7523 Node->dump(&DAG);
7524#endif
7525 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattner3dec33a2007-11-19 20:21:32 +00007526 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007527 Lo = DAG.getUNDEF(NewVT_Lo);
7528 Hi = DAG.getUNDEF(NewVT_Hi);
Chris Lattner3dec33a2007-11-19 20:21:32 +00007529 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007530 case ISD::BUILD_PAIR:
7531 Lo = Node->getOperand(0);
7532 Hi = Node->getOperand(1);
7533 break;
Dan Gohmanb3228dc2007-09-28 23:53:40 +00007534 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007535 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7536 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007537 unsigned Index = Idx->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007538 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007539 if (Index < NewNumElts_Lo)
Dale Johannesend8fd5342009-02-02 22:49:46 +00007540 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Lo, Lo, ScalarOp,
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007541 DAG.getIntPtrConstant(Index));
7542 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00007543 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Hi, Hi, ScalarOp,
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007544 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7545 break;
7546 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007547 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007548 Node->getOperand(1),
Dale Johannesen352c47e2009-02-02 20:41:04 +00007549 Node->getOperand(2), dl);
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007550 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohmanb3228dc2007-09-28 23:53:40 +00007551 break;
7552 }
Chris Lattner587c46d2007-11-19 21:16:54 +00007553 case ISD::VECTOR_SHUFFLE: {
7554 // Build the low part.
Dan Gohman8181bd12008-07-27 21:46:04 +00007555 SDValue Mask = Node->getOperand(2);
7556 SmallVector<SDValue, 8> Ops;
Duncan Sands92c43912008-06-06 12:08:01 +00007557 MVT PtrVT = TLI.getPointerTy();
Scott Michel91099d62009-02-17 22:15:04 +00007558
7559 // Insert all of the elements from the input that are needed. We use
Chris Lattner587c46d2007-11-19 21:16:54 +00007560 // buildvector of extractelement here because the input vectors will have
7561 // to be legalized, so this makes the code simpler.
7562 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007563 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007564 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007565 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007566 continue;
7567 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007568 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007569 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00007570 if (Idx >= NumElements) {
7571 InVec = Node->getOperand(1);
7572 Idx -= NumElements;
7573 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00007574 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner587c46d2007-11-19 21:16:54 +00007575 DAG.getConstant(Idx, PtrVT)));
7576 }
Evan Cheng907a2d22009-02-25 22:49:59 +00007577 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &Ops[0], Ops.size());
Chris Lattner587c46d2007-11-19 21:16:54 +00007578 Ops.clear();
Scott Michel91099d62009-02-17 22:15:04 +00007579
Chris Lattner587c46d2007-11-19 21:16:54 +00007580 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007581 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007582 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007583 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007584 continue;
7585 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007586 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007587 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00007588 if (Idx >= NumElements) {
7589 InVec = Node->getOperand(1);
7590 Idx -= NumElements;
7591 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00007592 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner587c46d2007-11-19 21:16:54 +00007593 DAG.getConstant(Idx, PtrVT)));
7594 }
Evan Cheng907a2d22009-02-25 22:49:59 +00007595 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner587c46d2007-11-19 21:16:54 +00007596 break;
7597 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007598 case ISD::BUILD_VECTOR: {
Scott Michel91099d62009-02-17 22:15:04 +00007599 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman4a365ad2007-11-15 21:15:26 +00007600 Node->op_begin()+NewNumElts_Lo);
Evan Cheng907a2d22009-02-25 22:49:59 +00007601 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007602
Scott Michel91099d62009-02-17 22:15:04 +00007603 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007604 Node->op_end());
Evan Cheng907a2d22009-02-25 22:49:59 +00007605 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007606 break;
7607 }
7608 case ISD::CONCAT_VECTORS: {
Nate Begeman4a365ad2007-11-15 21:15:26 +00007609 // FIXME: Handle non-power-of-two vectors?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007610 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7611 if (NewNumSubvectors == 1) {
7612 Lo = Node->getOperand(0);
7613 Hi = Node->getOperand(1);
7614 } else {
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007615 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7616 Node->op_begin()+NewNumSubvectors);
Scott Michel91099d62009-02-17 22:15:04 +00007617 Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Lo,
Dale Johannesend8fd5342009-02-02 22:49:46 +00007618 &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007619
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007620 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007621 Node->op_end());
Scott Michel91099d62009-02-17 22:15:04 +00007622 Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Hi,
Dale Johannesend8fd5342009-02-02 22:49:46 +00007623 &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007624 }
7625 break;
7626 }
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007627 case ISD::EXTRACT_SUBVECTOR: {
7628 SDValue Vec = Op.getOperand(0);
7629 SDValue Idx = Op.getOperand(1);
7630 MVT IdxVT = Idx.getValueType();
7631
Dale Johannesend8fd5342009-02-02 22:49:46 +00007632 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Lo, Vec, Idx);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007633 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7634 if (CIdx) {
Scott Michel91099d62009-02-17 22:15:04 +00007635 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec,
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007636 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7637 IdxVT));
7638 } else {
Dale Johannesend8fd5342009-02-02 22:49:46 +00007639 Idx = DAG.getNode(ISD::ADD, dl, IdxVT, Idx,
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007640 DAG.getConstant(NewNumElts_Lo, IdxVT));
Dale Johannesend8fd5342009-02-02 22:49:46 +00007641 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec, Idx);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007642 }
7643 break;
7644 }
Dan Gohmand5d4c872007-10-17 14:48:28 +00007645 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007646 SDValue Cond = Node->getOperand(0);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007647
Dan Gohman8181bd12008-07-27 21:46:04 +00007648 SDValue LL, LH, RL, RH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00007649 SplitVectorOp(Node->getOperand(1), LL, LH);
7650 SplitVectorOp(Node->getOperand(2), RL, RH);
7651
Duncan Sands92c43912008-06-06 12:08:01 +00007652 if (Cond.getValueType().isVector()) {
Dan Gohmand5d4c872007-10-17 14:48:28 +00007653 // Handle a vector merge.
Dan Gohman8181bd12008-07-27 21:46:04 +00007654 SDValue CL, CH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00007655 SplitVectorOp(Cond, CL, CH);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007656 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, CL, LL, RL);
7657 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, CH, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007658 } else {
7659 // Handle a simple select with vector operands.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007660 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, Cond, LL, RL);
7661 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, Cond, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007662 }
7663 break;
7664 }
Chris Lattnerc7471452008-06-30 02:43:01 +00007665 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007666 SDValue CondLHS = Node->getOperand(0);
7667 SDValue CondRHS = Node->getOperand(1);
7668 SDValue CondCode = Node->getOperand(4);
Scott Michel91099d62009-02-17 22:15:04 +00007669
Dan Gohman8181bd12008-07-27 21:46:04 +00007670 SDValue LL, LH, RL, RH;
Chris Lattnerc7471452008-06-30 02:43:01 +00007671 SplitVectorOp(Node->getOperand(2), LL, LH);
7672 SplitVectorOp(Node->getOperand(3), RL, RH);
Scott Michel91099d62009-02-17 22:15:04 +00007673
Chris Lattnerc7471452008-06-30 02:43:01 +00007674 // Handle a simple select with vector operands.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007675 Lo = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Lo, CondLHS, CondRHS,
Chris Lattnerc7471452008-06-30 02:43:01 +00007676 LL, RL, CondCode);
Scott Michel91099d62009-02-17 22:15:04 +00007677 Hi = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Hi, CondLHS, CondRHS,
Chris Lattnerc7471452008-06-30 02:43:01 +00007678 LH, RH, CondCode);
7679 break;
7680 }
Nate Begeman9a1ce152008-05-12 19:40:03 +00007681 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007682 SDValue LL, LH, RL, RH;
Nate Begeman9a1ce152008-05-12 19:40:03 +00007683 SplitVectorOp(Node->getOperand(0), LL, LH);
7684 SplitVectorOp(Node->getOperand(1), RL, RH);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007685 Lo = DAG.getNode(ISD::VSETCC, dl, NewVT_Lo, LL, RL, Node->getOperand(2));
7686 Hi = DAG.getNode(ISD::VSETCC, dl, NewVT_Hi, LH, RH, Node->getOperand(2));
Nate Begeman9a1ce152008-05-12 19:40:03 +00007687 break;
7688 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007689 case ISD::ADD:
7690 case ISD::SUB:
7691 case ISD::MUL:
7692 case ISD::FADD:
7693 case ISD::FSUB:
7694 case ISD::FMUL:
7695 case ISD::SDIV:
7696 case ISD::UDIV:
7697 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007698 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007699 case ISD::AND:
7700 case ISD::OR:
Dan Gohman9e1b7ee2007-11-19 15:15:03 +00007701 case ISD::XOR:
7702 case ISD::UREM:
7703 case ISD::SREM:
Mon P Wang26342922008-12-18 20:03:17 +00007704 case ISD::FREM:
7705 case ISD::SHL:
7706 case ISD::SRA:
7707 case ISD::SRL: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007708 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007709 SplitVectorOp(Node->getOperand(0), LL, LH);
7710 SplitVectorOp(Node->getOperand(1), RL, RH);
Scott Michel91099d62009-02-17 22:15:04 +00007711
Dale Johannesend8fd5342009-02-02 22:49:46 +00007712 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, LL, RL);
7713 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007714 break;
7715 }
Dan Gohman29c3cef2008-08-14 20:04:46 +00007716 case ISD::FP_ROUND:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007717 case ISD::FPOWI: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007718 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007719 SplitVectorOp(Node->getOperand(0), L, H);
7720
Dale Johannesend8fd5342009-02-02 22:49:46 +00007721 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L, Node->getOperand(1));
7722 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H, Node->getOperand(1));
Dan Gohman6d05cac2007-10-11 23:57:53 +00007723 break;
7724 }
7725 case ISD::CTTZ:
7726 case ISD::CTLZ:
7727 case ISD::CTPOP:
7728 case ISD::FNEG:
7729 case ISD::FABS:
7730 case ISD::FSQRT:
7731 case ISD::FSIN:
Nate Begeman78246ca2007-11-17 03:58:34 +00007732 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007733 case ISD::FLOG:
7734 case ISD::FLOG2:
7735 case ISD::FLOG10:
7736 case ISD::FEXP:
7737 case ISD::FEXP2:
Nate Begeman78246ca2007-11-17 03:58:34 +00007738 case ISD::FP_TO_SINT:
7739 case ISD::FP_TO_UINT:
7740 case ISD::SINT_TO_FP:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007741 case ISD::UINT_TO_FP:
7742 case ISD::TRUNCATE:
7743 case ISD::ANY_EXTEND:
7744 case ISD::SIGN_EXTEND:
7745 case ISD::ZERO_EXTEND:
7746 case ISD::FP_EXTEND: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007747 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007748 SplitVectorOp(Node->getOperand(0), L, H);
7749
Dale Johannesend8fd5342009-02-02 22:49:46 +00007750 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L);
7751 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H);
Dan Gohman6d05cac2007-10-11 23:57:53 +00007752 break;
7753 }
Mon P Wang73d31542008-11-10 20:54:11 +00007754 case ISD::CONVERT_RNDSAT: {
7755 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7756 SDValue L, H;
7757 SplitVectorOp(Node->getOperand(0), L, H);
7758 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7759 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7760 SDValue STyOpL = DAG.getValueType(L.getValueType());
7761 SDValue STyOpH = DAG.getValueType(H.getValueType());
7762
7763 SDValue RndOp = Node->getOperand(3);
7764 SDValue SatOp = Node->getOperand(4);
7765
Dale Johannesen564036c2009-02-04 00:13:36 +00007766 Lo = DAG.getConvertRndSat(NewVT_Lo, dl, L, DTyOpL, STyOpL,
Mon P Wang73d31542008-11-10 20:54:11 +00007767 RndOp, SatOp, CvtCode);
Dale Johannesen564036c2009-02-04 00:13:36 +00007768 Hi = DAG.getConvertRndSat(NewVT_Hi, dl, H, DTyOpH, STyOpH,
Mon P Wang73d31542008-11-10 20:54:11 +00007769 RndOp, SatOp, CvtCode);
7770 break;
7771 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007772 case ISD::LOAD: {
7773 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007774 SDValue Ch = LD->getChain();
7775 SDValue Ptr = LD->getBasePtr();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007776 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007777 const Value *SV = LD->getSrcValue();
7778 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007779 MVT MemoryVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007780 unsigned Alignment = LD->getAlignment();
7781 bool isVolatile = LD->isVolatile();
7782
Dan Gohman29c3cef2008-08-14 20:04:46 +00007783 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007784 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Dan Gohman29c3cef2008-08-14 20:04:46 +00007785
7786 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7787 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7788 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7789
Dale Johannesend8fd5342009-02-02 22:49:46 +00007790 Lo = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007791 NewVT_Lo, Ch, Ptr, Offset,
7792 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7793 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dale Johannesend8fd5342009-02-02 22:49:46 +00007794 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00007795 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007796 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00007797 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007798 Hi = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007799 NewVT_Hi, Ch, Ptr, Offset,
7800 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Scott Michel91099d62009-02-17 22:15:04 +00007801
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007802 // Build a factor node to remember that this load is independent of the
7803 // other one.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007804 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007805 Hi.getValue(1));
Scott Michel91099d62009-02-17 22:15:04 +00007806
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007807 // Remember that we legalized the chain.
7808 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
7809 break;
7810 }
7811 case ISD::BIT_CONVERT: {
7812 // We know the result is a vector. The input may be either a vector or a
7813 // scalar value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007814 SDValue InOp = Node->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007815 if (!InOp.getValueType().isVector() ||
7816 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007817 // The input is a scalar or single-element vector.
7818 // Lower to a store/load so that it can be split.
7819 // FIXME: this could be improved probably.
Mon P Wang36b59ac2008-07-15 05:28:34 +00007820 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
7821 Op.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00007822 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greif1c80d112008-08-28 21:40:38 +00007823 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007824
Dale Johannesend8fd5342009-02-02 22:49:46 +00007825 SDValue St = DAG.getStore(DAG.getEntryNode(), dl,
Dan Gohman12a9c082008-02-06 22:27:42 +00007826 InOp, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007827 PseudoSourceValue::getFixedStack(FI), 0);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007828 InOp = DAG.getLoad(Op.getValueType(), dl, St, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007829 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007830 }
7831 // Split the vector and convert each of the pieces now.
7832 SplitVectorOp(InOp, Lo, Hi);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007833 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Lo, Lo);
7834 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Hi, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007835 break;
7836 }
7837 }
Scott Michel91099d62009-02-17 22:15:04 +00007838
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007839 // Remember in a map if the values will be reused later.
Scott Michel91099d62009-02-17 22:15:04 +00007840 bool isNew =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007841 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
7842 assert(isNew && "Value already split?!?");
Evan Chengcf576fd2008-11-24 07:09:49 +00007843 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007844}
7845
7846
7847/// ScalarizeVectorOp - Given an operand of single-element vector type
7848/// (e.g. v1f32), convert it into the equivalent operation that returns a
7849/// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007850SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00007851 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greif1c80d112008-08-28 21:40:38 +00007852 SDNode *Node = Op.getNode();
Dale Johannesend8fd5342009-02-02 22:49:46 +00007853 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00007854 MVT NewVT = Op.getValueType().getVectorElementType();
7855 assert(Op.getValueType().getVectorNumElements() == 1);
Scott Michel91099d62009-02-17 22:15:04 +00007856
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007857 // See if we already scalarized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007858 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007859 if (I != ScalarizedNodes.end()) return I->second;
Scott Michel91099d62009-02-17 22:15:04 +00007860
Dan Gohman8181bd12008-07-27 21:46:04 +00007861 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007862 switch (Node->getOpcode()) {
Scott Michel91099d62009-02-17 22:15:04 +00007863 default:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007864#ifndef NDEBUG
7865 Node->dump(&DAG); cerr << "\n";
7866#endif
7867 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7868 case ISD::ADD:
7869 case ISD::FADD:
7870 case ISD::SUB:
7871 case ISD::FSUB:
7872 case ISD::MUL:
7873 case ISD::FMUL:
7874 case ISD::SDIV:
7875 case ISD::UDIV:
7876 case ISD::FDIV:
7877 case ISD::SREM:
7878 case ISD::UREM:
7879 case ISD::FREM:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007880 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007881 case ISD::AND:
7882 case ISD::OR:
7883 case ISD::XOR:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007884 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michel91099d62009-02-17 22:15:04 +00007885 NewVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007886 ScalarizeVectorOp(Node->getOperand(0)),
7887 ScalarizeVectorOp(Node->getOperand(1)));
7888 break;
7889 case ISD::FNEG:
7890 case ISD::FABS:
7891 case ISD::FSQRT:
7892 case ISD::FSIN:
7893 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007894 case ISD::FLOG:
7895 case ISD::FLOG2:
7896 case ISD::FLOG10:
7897 case ISD::FEXP:
7898 case ISD::FEXP2:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007899 case ISD::FP_TO_SINT:
7900 case ISD::FP_TO_UINT:
7901 case ISD::SINT_TO_FP:
7902 case ISD::UINT_TO_FP:
7903 case ISD::SIGN_EXTEND:
7904 case ISD::ZERO_EXTEND:
7905 case ISD::ANY_EXTEND:
7906 case ISD::TRUNCATE:
7907 case ISD::FP_EXTEND:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007908 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michel91099d62009-02-17 22:15:04 +00007909 NewVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007910 ScalarizeVectorOp(Node->getOperand(0)));
7911 break;
Mon P Wang73d31542008-11-10 20:54:11 +00007912 case ISD::CONVERT_RNDSAT: {
7913 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
Dale Johannesen564036c2009-02-04 00:13:36 +00007914 Result = DAG.getConvertRndSat(NewVT, dl, Op0,
Mon P Wang73d31542008-11-10 20:54:11 +00007915 DAG.getValueType(NewVT),
7916 DAG.getValueType(Op0.getValueType()),
7917 Node->getOperand(3),
7918 Node->getOperand(4),
7919 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7920 break;
7921 }
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007922 case ISD::FPOWI:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007923 case ISD::FP_ROUND:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007924 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michel91099d62009-02-17 22:15:04 +00007925 NewVT,
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007926 ScalarizeVectorOp(Node->getOperand(0)),
7927 Node->getOperand(1));
7928 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007929 case ISD::LOAD: {
7930 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007931 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7932 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman29c3cef2008-08-14 20:04:46 +00007933 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007934 const Value *SV = LD->getSrcValue();
7935 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007936 MVT MemoryVT = LD->getMemoryVT();
7937 unsigned Alignment = LD->getAlignment();
7938 bool isVolatile = LD->isVolatile();
7939
7940 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007941 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Scott Michel91099d62009-02-17 22:15:04 +00007942
Dale Johannesend8fd5342009-02-02 22:49:46 +00007943 Result = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007944 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7945 MemoryVT.getVectorElementType(),
7946 isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007947
7948 // Remember that we legalized the chain.
7949 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7950 break;
7951 }
7952 case ISD::BUILD_VECTOR:
7953 Result = Node->getOperand(0);
7954 break;
7955 case ISD::INSERT_VECTOR_ELT:
7956 // Returning the inserted scalar element.
7957 Result = Node->getOperand(1);
7958 break;
7959 case ISD::CONCAT_VECTORS:
7960 assert(Node->getOperand(0).getValueType() == NewVT &&
7961 "Concat of non-legal vectors not yet supported!");
7962 Result = Node->getOperand(0);
7963 break;
7964 case ISD::VECTOR_SHUFFLE: {
7965 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007966 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007967 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007968 Result = ScalarizeVectorOp(Node->getOperand(1));
7969 else
7970 Result = ScalarizeVectorOp(Node->getOperand(0));
7971 break;
7972 }
7973 case ISD::EXTRACT_SUBVECTOR:
Scott Michel91099d62009-02-17 22:15:04 +00007974 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT,
Dale Johannesend8fd5342009-02-02 22:49:46 +00007975 Node->getOperand(0), Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007976 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007977 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007978 SDValue Op0 = Op.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007979 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng2cc16e72008-05-16 17:19:05 +00007980 Op0 = ScalarizeVectorOp(Op0);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007981 Result = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007982 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007983 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007984 case ISD::SELECT:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007985 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Op.getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007986 ScalarizeVectorOp(Op.getOperand(1)),
7987 ScalarizeVectorOp(Op.getOperand(2)));
7988 break;
Chris Lattnerc7471452008-06-30 02:43:01 +00007989 case ISD::SELECT_CC:
Scott Michel91099d62009-02-17 22:15:04 +00007990 Result = DAG.getNode(ISD::SELECT_CC, dl, NewVT, Node->getOperand(0),
Chris Lattnerc7471452008-06-30 02:43:01 +00007991 Node->getOperand(1),
7992 ScalarizeVectorOp(Op.getOperand(2)),
7993 ScalarizeVectorOp(Op.getOperand(3)),
7994 Node->getOperand(4));
7995 break;
Nate Begeman78ca4f92008-05-12 23:09:43 +00007996 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007997 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7998 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Dale Johannesend8fd5342009-02-02 22:49:46 +00007999 Result = DAG.getNode(ISD::SETCC, dl,
8000 TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00008001 Op0, Op1, Op.getOperand(2));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008002 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Result,
Nate Begeman78ca4f92008-05-12 23:09:43 +00008003 DAG.getConstant(-1ULL, NewVT),
8004 DAG.getConstant(0ULL, NewVT));
8005 break;
8006 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008007 }
8008
8009 if (TLI.isTypeLegal(NewVT))
8010 Result = LegalizeOp(Result);
8011 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
8012 assert(isNew && "Value already scalarized?");
Evan Chengcf576fd2008-11-24 07:09:49 +00008013 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008014 return Result;
8015}
8016
8017
Mon P Wang1448aad2008-10-30 08:01:45 +00008018SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
8019 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
8020 if (I != WidenNodes.end()) return I->second;
Scott Michel91099d62009-02-17 22:15:04 +00008021
Mon P Wang1448aad2008-10-30 08:01:45 +00008022 MVT VT = Op.getValueType();
8023 assert(VT.isVector() && "Cannot widen non-vector type!");
8024
8025 SDValue Result;
8026 SDNode *Node = Op.getNode();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008027 DebugLoc dl = Node->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008028 MVT EVT = VT.getVectorElementType();
8029
8030 unsigned NumElts = VT.getVectorNumElements();
8031 unsigned NewNumElts = WidenVT.getVectorNumElements();
8032 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
8033 assert(NewNumElts < 17);
8034
8035 // When widen is called, it is assumed that it is more efficient to use a
8036 // wide type. The default action is to widen to operation to a wider legal
8037 // vector type and then do the operation if it is legal by calling LegalizeOp
8038 // again. If there is no vector equivalent, we will unroll the operation, do
8039 // it, and rebuild the vector. If most of the operations are vectorizible to
8040 // the legal type, the resulting code will be more efficient. If this is not
8041 // the case, the resulting code will preform badly as we end up generating
8042 // code to pack/unpack the results. It is the function that calls widen
Mon P Wanga5a239f2008-11-06 05:31:54 +00008043 // that is responsible for seeing this doesn't happen.
Mon P Wang1448aad2008-10-30 08:01:45 +00008044 switch (Node->getOpcode()) {
Scott Michel91099d62009-02-17 22:15:04 +00008045 default:
Mon P Wang1448aad2008-10-30 08:01:45 +00008046#ifndef NDEBUG
8047 Node->dump(&DAG);
8048#endif
8049 assert(0 && "Unexpected operation in WidenVectorOp!");
8050 break;
8051 case ISD::CopyFromReg:
Mon P Wang257e1c72008-11-15 06:05:52 +00008052 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang1448aad2008-10-30 08:01:45 +00008053 case ISD::Constant:
8054 case ISD::ConstantFP:
8055 // To build a vector of these elements, clients should call BuildVector
8056 // and with each element instead of creating a node with a vector type
8057 assert(0 && "Unexpected operation in WidenVectorOp!");
8058 case ISD::VAARG:
8059 // Variable Arguments with vector types doesn't make any sense to me
8060 assert(0 && "Unexpected operation in WidenVectorOp!");
8061 break;
Mon P Wang257e1c72008-11-15 06:05:52 +00008062 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008063 Result = DAG.getUNDEF(WidenVT);
Mon P Wang257e1c72008-11-15 06:05:52 +00008064 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00008065 case ISD::BUILD_VECTOR: {
8066 // Build a vector with undefined for the new nodes
8067 SDValueVector NewOps(Node->op_begin(), Node->op_end());
8068 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008069 NewOps.push_back(DAG.getUNDEF(EVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008070 }
Evan Cheng907a2d22009-02-25 22:49:59 +00008071 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT,
8072 &NewOps[0], NewOps.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008073 break;
8074 }
8075 case ISD::INSERT_VECTOR_ELT: {
8076 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008077 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, WidenVT, Tmp1,
Mon P Wang1448aad2008-10-30 08:01:45 +00008078 Node->getOperand(1), Node->getOperand(2));
8079 break;
8080 }
8081 case ISD::VECTOR_SHUFFLE: {
8082 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8083 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8084 // VECTOR_SHUFFLE 3rd operand must be a constant build vector that is
8085 // used as permutation array. We build the vector here instead of widening
8086 // because we don't want to legalize and have it turned to something else.
8087 SDValue PermOp = Node->getOperand(2);
8088 SDValueVector NewOps;
8089 MVT PVT = PermOp.getValueType().getVectorElementType();
8090 for (unsigned i = 0; i < NumElts; ++i) {
8091 if (PermOp.getOperand(i).getOpcode() == ISD::UNDEF) {
8092 NewOps.push_back(PermOp.getOperand(i));
8093 } else {
8094 unsigned Idx =
Mon P Wangec428ad2008-12-13 08:15:14 +00008095 cast<ConstantSDNode>(PermOp.getOperand(i))->getZExtValue();
Mon P Wang1448aad2008-10-30 08:01:45 +00008096 if (Idx < NumElts) {
8097 NewOps.push_back(PermOp.getOperand(i));
8098 }
8099 else {
8100 NewOps.push_back(DAG.getConstant(Idx + NewNumElts - NumElts,
8101 PermOp.getOperand(i).getValueType()));
Scott Michel91099d62009-02-17 22:15:04 +00008102 }
Mon P Wang1448aad2008-10-30 08:01:45 +00008103 }
8104 }
8105 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008106 NewOps.push_back(DAG.getUNDEF(PVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008107 }
Scott Michel91099d62009-02-17 22:15:04 +00008108
Evan Cheng907a2d22009-02-25 22:49:59 +00008109 SDValue Tmp3 = DAG.getNode(ISD::BUILD_VECTOR, dl,
8110 MVT::getVectorVT(PVT, NewOps.size()),
8111 &NewOps[0], NewOps.size());
Scott Michel91099d62009-02-17 22:15:04 +00008112
Dale Johannesend8fd5342009-02-02 22:49:46 +00008113 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, WidenVT, Tmp1, Tmp2, Tmp3);
Mon P Wang1448aad2008-10-30 08:01:45 +00008114 break;
8115 }
8116 case ISD::LOAD: {
8117 // If the load widen returns true, we can use a single load for the
8118 // vector. Otherwise, it is returning a token factor for multiple
8119 // loads.
8120 SDValue TFOp;
8121 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8122 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8123 else
8124 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8125 break;
8126 }
8127
8128 case ISD::BIT_CONVERT: {
8129 SDValue Tmp1 = Node->getOperand(0);
8130 // Converts between two different types so we need to determine
8131 // the correct widen type for the input operand.
Mon P Wang26342922008-12-18 20:03:17 +00008132 MVT InVT = Tmp1.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00008133 unsigned WidenSize = WidenVT.getSizeInBits();
Mon P Wang26342922008-12-18 20:03:17 +00008134 if (InVT.isVector()) {
8135 MVT InEltVT = InVT.getVectorElementType();
8136 unsigned InEltSize = InEltVT.getSizeInBits();
8137 assert(WidenSize % InEltSize == 0 &&
8138 "can not widen bit convert that are not multiple of element type");
8139 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8140 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8141 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
Dale Johannesend8fd5342009-02-02 22:49:46 +00008142 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Tmp1);
Mon P Wang26342922008-12-18 20:03:17 +00008143 } else {
8144 // If the result size is a multiple of the input size, widen the input
8145 // and then convert.
8146 unsigned InSize = InVT.getSizeInBits();
8147 assert(WidenSize % InSize == 0 &&
8148 "can not widen bit convert that are not multiple of element type");
8149 unsigned NewNumElts = WidenSize / InSize;
8150 SmallVector<SDValue, 16> Ops(NewNumElts);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008151 SDValue UndefVal = DAG.getUNDEF(InVT);
Mon P Wang26342922008-12-18 20:03:17 +00008152 Ops[0] = Tmp1;
8153 for (unsigned i = 1; i < NewNumElts; ++i)
8154 Ops[i] = UndefVal;
Mon P Wang1448aad2008-10-30 08:01:45 +00008155
Mon P Wang26342922008-12-18 20:03:17 +00008156 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
Evan Cheng907a2d22009-02-25 22:49:59 +00008157 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, NewInVT, &Ops[0], NewNumElts);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008158 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Result);
Mon P Wang1448aad2008-10-30 08:01:45 +00008159 }
8160 break;
8161 }
8162
8163 case ISD::SINT_TO_FP:
8164 case ISD::UINT_TO_FP:
8165 case ISD::FP_TO_SINT:
Mon P Wang26342922008-12-18 20:03:17 +00008166 case ISD::FP_TO_UINT:
8167 case ISD::FP_ROUND: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008168 SDValue Tmp1 = Node->getOperand(0);
8169 // Converts between two different types so we need to determine
8170 // the correct widen type for the input operand.
8171 MVT TVT = Tmp1.getValueType();
8172 assert(TVT.isVector() && "can not widen non vector type");
8173 MVT TEVT = TVT.getVectorElementType();
8174 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8175 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8176 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008177 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang1448aad2008-10-30 08:01:45 +00008178 break;
8179 }
8180
8181 case ISD::FP_EXTEND:
8182 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8183 case ISD::TRUNCATE:
8184 case ISD::SIGN_EXTEND:
8185 case ISD::ZERO_EXTEND:
8186 case ISD::ANY_EXTEND:
Mon P Wang1448aad2008-10-30 08:01:45 +00008187 case ISD::SIGN_EXTEND_INREG:
8188 case ISD::FABS:
8189 case ISD::FNEG:
8190 case ISD::FSQRT:
8191 case ISD::FSIN:
Mon P Wang257e1c72008-11-15 06:05:52 +00008192 case ISD::FCOS:
8193 case ISD::CTPOP:
8194 case ISD::CTTZ:
8195 case ISD::CTLZ: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008196 // Unary op widening
Mon P Wang26342922008-12-18 20:03:17 +00008197 SDValue Tmp1;
Mon P Wang1448aad2008-10-30 08:01:45 +00008198 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8199 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008200 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang1448aad2008-10-30 08:01:45 +00008201 break;
8202 }
Mon P Wang73d31542008-11-10 20:54:11 +00008203 case ISD::CONVERT_RNDSAT: {
8204 SDValue RndOp = Node->getOperand(3);
8205 SDValue SatOp = Node->getOperand(4);
Mon P Wang73d31542008-11-10 20:54:11 +00008206 SDValue SrcOp = Node->getOperand(0);
8207
8208 // Converts between two different types so we need to determine
8209 // the correct widen type for the input operand.
8210 MVT SVT = SrcOp.getValueType();
8211 assert(SVT.isVector() && "can not widen non vector type");
8212 MVT SEVT = SVT.getVectorElementType();
8213 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8214
8215 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8216 assert(SrcOp.getValueType() == WidenVT);
8217 SDValue DTyOp = DAG.getValueType(WidenVT);
8218 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8219 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8220
Dale Johannesen564036c2009-02-04 00:13:36 +00008221 Result = DAG.getConvertRndSat(WidenVT, dl, SrcOp, DTyOp, STyOp,
Mon P Wang73d31542008-11-10 20:54:11 +00008222 RndOp, SatOp, CvtCode);
Mon P Wang73d31542008-11-10 20:54:11 +00008223 break;
8224 }
Mon P Wang1448aad2008-10-30 08:01:45 +00008225 case ISD::FPOW:
Scott Michel91099d62009-02-17 22:15:04 +00008226 case ISD::FPOWI:
Mon P Wang1448aad2008-10-30 08:01:45 +00008227 case ISD::ADD:
8228 case ISD::SUB:
8229 case ISD::MUL:
8230 case ISD::MULHS:
8231 case ISD::MULHU:
8232 case ISD::AND:
8233 case ISD::OR:
8234 case ISD::XOR:
8235 case ISD::FADD:
8236 case ISD::FSUB:
8237 case ISD::FMUL:
8238 case ISD::SDIV:
8239 case ISD::SREM:
8240 case ISD::FDIV:
8241 case ISD::FREM:
8242 case ISD::FCOPYSIGN:
8243 case ISD::UDIV:
8244 case ISD::UREM:
8245 case ISD::BSWAP: {
8246 // Binary op widening
Mon P Wang1448aad2008-10-30 08:01:45 +00008247 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8248 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8249 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008250 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2);
Mon P Wang1448aad2008-10-30 08:01:45 +00008251 break;
8252 }
8253
8254 case ISD::SHL:
8255 case ISD::SRA:
8256 case ISD::SRL: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008257 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8258 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangd5638262008-12-02 07:35:08 +00008259 SDValue ShOp = Node->getOperand(1);
8260 MVT ShVT = ShOp.getValueType();
8261 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8262 WidenVT.getVectorNumElements());
8263 ShOp = WidenVectorOp(ShOp, NewShVT);
8264 assert(ShOp.getValueType() == NewShVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008265 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, ShOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008266 break;
8267 }
Mon P Wangd5638262008-12-02 07:35:08 +00008268
Mon P Wang1448aad2008-10-30 08:01:45 +00008269 case ISD::EXTRACT_VECTOR_ELT: {
8270 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8271 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008272 Result = DAG.getNode(Node->getOpcode(), dl, EVT, Tmp1, Node->getOperand(1));
Mon P Wang1448aad2008-10-30 08:01:45 +00008273 break;
8274 }
8275 case ISD::CONCAT_VECTORS: {
8276 // We concurrently support only widen on a multiple of the incoming vector.
8277 // We could widen on a multiple of the incoming operand if necessary.
8278 unsigned NumConcat = NewNumElts / NumElts;
8279 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008280 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang1448aad2008-10-30 08:01:45 +00008281 SmallVector<SDValue, 8> MOps;
8282 MOps.push_back(Op);
8283 for (unsigned i = 1; i != NumConcat; ++i) {
8284 MOps.push_back(UndefVal);
8285 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00008286 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang1448aad2008-10-30 08:01:45 +00008287 &MOps[0], MOps.size()));
8288 break;
8289 }
8290 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang257e1c72008-11-15 06:05:52 +00008291 SDValue Tmp1 = Node->getOperand(0);
8292 SDValue Idx = Node->getOperand(1);
8293 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8294 if (CIdx && CIdx->getZExtValue() == 0) {
8295 // Since we are access the start of the vector, the incoming
8296 // vector type might be the proper.
8297 MVT Tmp1VT = Tmp1.getValueType();
8298 if (Tmp1VT == WidenVT)
8299 return Tmp1;
8300 else {
8301 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8302 if (Tmp1VTNumElts < NewNumElts)
8303 Result = WidenVectorOp(Tmp1, WidenVT);
8304 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00008305 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, Tmp1, Idx);
Mon P Wang257e1c72008-11-15 06:05:52 +00008306 }
8307 } else if (NewNumElts % NumElts == 0) {
8308 // Widen the extracted subvector.
8309 unsigned NumConcat = NewNumElts / NumElts;
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008310 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang257e1c72008-11-15 06:05:52 +00008311 SmallVector<SDValue, 8> MOps;
8312 MOps.push_back(Op);
8313 for (unsigned i = 1; i != NumConcat; ++i) {
8314 MOps.push_back(UndefVal);
8315 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00008316 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang257e1c72008-11-15 06:05:52 +00008317 &MOps[0], MOps.size()));
8318 } else {
8319 assert(0 && "can not widen extract subvector");
8320 // This could be implemented using insert and build vector but I would
8321 // like to see when this happens.
8322 }
Mon P Wang1448aad2008-10-30 08:01:45 +00008323 break;
8324 }
8325
8326 case ISD::SELECT: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008327 // Determine new condition widen type and widen
8328 SDValue Cond1 = Node->getOperand(0);
8329 MVT CondVT = Cond1.getValueType();
8330 assert(CondVT.isVector() && "can not widen non vector type");
8331 MVT CondEVT = CondVT.getVectorElementType();
8332 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8333 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8334 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8335
8336 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8337 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8338 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008339 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang1448aad2008-10-30 08:01:45 +00008340 break;
8341 }
Scott Michel91099d62009-02-17 22:15:04 +00008342
Mon P Wang1448aad2008-10-30 08:01:45 +00008343 case ISD::SELECT_CC: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008344 // Determine new condition widen type and widen
8345 SDValue Cond1 = Node->getOperand(0);
8346 SDValue Cond2 = Node->getOperand(1);
8347 MVT CondVT = Cond1.getValueType();
8348 assert(CondVT.isVector() && "can not widen non vector type");
8349 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8350 MVT CondEVT = CondVT.getVectorElementType();
8351 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8352 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8353 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8354 assert(Cond1.getValueType() == CondWidenVT &&
8355 Cond2.getValueType() == CondWidenVT && "condition not widen");
8356
8357 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8358 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8359 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8360 "operands not widen");
Dale Johannesend8fd5342009-02-02 22:49:46 +00008361 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Cond2, Tmp1,
Mon P Wang1448aad2008-10-30 08:01:45 +00008362 Tmp2, Node->getOperand(4));
Mon P Wang1448aad2008-10-30 08:01:45 +00008363 break;
Mon P Wang42ac14e2008-10-30 18:21:52 +00008364 }
8365 case ISD::VSETCC: {
8366 // Determine widen for the operand
8367 SDValue Tmp1 = Node->getOperand(0);
8368 MVT TmpVT = Tmp1.getValueType();
8369 assert(TmpVT.isVector() && "can not widen non vector type");
8370 MVT TmpEVT = TmpVT.getVectorElementType();
8371 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8372 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8373 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008374 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2,
Mon P Wang42ac14e2008-10-30 18:21:52 +00008375 Node->getOperand(2));
Mon P Wang1448aad2008-10-30 08:01:45 +00008376 break;
8377 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00008378 case ISD::ATOMIC_CMP_SWAP:
8379 case ISD::ATOMIC_LOAD_ADD:
8380 case ISD::ATOMIC_LOAD_SUB:
8381 case ISD::ATOMIC_LOAD_AND:
8382 case ISD::ATOMIC_LOAD_OR:
8383 case ISD::ATOMIC_LOAD_XOR:
8384 case ISD::ATOMIC_LOAD_NAND:
8385 case ISD::ATOMIC_LOAD_MIN:
8386 case ISD::ATOMIC_LOAD_MAX:
8387 case ISD::ATOMIC_LOAD_UMIN:
8388 case ISD::ATOMIC_LOAD_UMAX:
8389 case ISD::ATOMIC_SWAP: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008390 // For now, we assume that using vectors for these operations don't make
8391 // much sense so we just split it. We return an empty result
8392 SDValue X, Y;
8393 SplitVectorOp(Op, X, Y);
8394 return Result;
8395 break;
8396 }
8397
8398 } // end switch (Node->getOpcode())
8399
Scott Michel91099d62009-02-17 22:15:04 +00008400 assert(Result.getNode() && "Didn't set a result!");
Mon P Wang1448aad2008-10-30 08:01:45 +00008401 if (Result != Op)
8402 Result = LegalizeOp(Result);
8403
Mon P Wanga5a239f2008-11-06 05:31:54 +00008404 AddWidenedOperand(Op, Result);
Mon P Wang1448aad2008-10-30 08:01:45 +00008405 return Result;
8406}
8407
8408// Utility function to find a legal vector type and its associated element
8409// type from a preferred width and whose vector type must be the same size
8410// as the VVT.
8411// TLI: Target lowering used to determine legal types
8412// Width: Preferred width of element type
8413// VVT: Vector value type whose size we must match.
8414// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0275b132009-01-15 16:43:02 +00008415static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang1448aad2008-10-30 08:01:45 +00008416 MVT& EVT, MVT& VecEVT) {
8417 // We start with the preferred width, make it a power of 2 and see if
8418 // we can find a vector type of that width. If not, we reduce it by
8419 // another power of 2. If we have widen the type, a vector of bytes should
8420 // always be legal.
8421 assert(TLI.isTypeLegal(VVT));
8422 unsigned EWidth = Width + 1;
8423 do {
8424 assert(EWidth > 0);
8425 EWidth = (1 << Log2_32(EWidth-1));
8426 EVT = MVT::getIntegerVT(EWidth);
8427 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8428 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8429 } while (!TLI.isTypeLegal(VecEVT) ||
8430 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8431}
8432
8433SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8434 SDValue Chain,
8435 SDValue BasePtr,
8436 const Value *SV,
8437 int SVOffset,
8438 unsigned Alignment,
8439 bool isVolatile,
8440 unsigned LdWidth,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008441 MVT ResType,
8442 DebugLoc dl) {
Mon P Wang1448aad2008-10-30 08:01:45 +00008443 // We assume that we have good rules to handle loading power of two loads so
8444 // we break down the operations to power of 2 loads. The strategy is to
8445 // load the largest power of 2 that we can easily transform to a legal vector
8446 // and then insert into that vector, and the cast the result into the legal
8447 // vector that we want. This avoids unnecessary stack converts.
8448 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8449 // the load is nonvolatile, we an use a wider load for the value.
8450 // Find a vector length we can load a large chunk
8451 MVT EVT, VecEVT;
8452 unsigned EVTWidth;
8453 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8454 EVTWidth = EVT.getSizeInBits();
8455
Dale Johannesend8fd5342009-02-02 22:49:46 +00008456 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV, SVOffset,
Mon P Wang1448aad2008-10-30 08:01:45 +00008457 isVolatile, Alignment);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008458 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecEVT, LdOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008459 LdChain.push_back(LdOp.getValue(1));
Scott Michel91099d62009-02-17 22:15:04 +00008460
Mon P Wang1448aad2008-10-30 08:01:45 +00008461 // Check if we can load the element with one instruction
8462 if (LdWidth == EVTWidth) {
Dale Johannesend8fd5342009-02-02 22:49:46 +00008463 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008464 }
8465
8466 // The vector element order is endianness dependent.
8467 unsigned Idx = 1;
8468 LdWidth -= EVTWidth;
8469 unsigned Offset = 0;
Scott Michel91099d62009-02-17 22:15:04 +00008470
Mon P Wang1448aad2008-10-30 08:01:45 +00008471 while (LdWidth > 0) {
8472 unsigned Increment = EVTWidth / 8;
8473 Offset += Increment;
Dale Johannesend8fd5342009-02-02 22:49:46 +00008474 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang1448aad2008-10-30 08:01:45 +00008475 DAG.getIntPtrConstant(Increment));
8476
8477 if (LdWidth < EVTWidth) {
8478 // Our current type we are using is too large, use a smaller size by
8479 // using a smaller power of 2
8480 unsigned oEVTWidth = EVTWidth;
8481 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8482 EVTWidth = EVT.getSizeInBits();
8483 // Readjust position and vector position based on new load type
Mon P Wang257e1c72008-11-15 06:05:52 +00008484 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008485 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008486 }
Scott Michel91099d62009-02-17 22:15:04 +00008487
Dale Johannesend8fd5342009-02-02 22:49:46 +00008488 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV,
Mon P Wang1448aad2008-10-30 08:01:45 +00008489 SVOffset+Offset, isVolatile,
8490 MinAlign(Alignment, Offset));
8491 LdChain.push_back(LdOp.getValue(1));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008492 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecEVT, VecOp, LdOp,
Mon P Wang1448aad2008-10-30 08:01:45 +00008493 DAG.getIntPtrConstant(Idx++));
Scott Michel91099d62009-02-17 22:15:04 +00008494
Mon P Wang1448aad2008-10-30 08:01:45 +00008495 LdWidth -= EVTWidth;
8496 }
8497
Dale Johannesend8fd5342009-02-02 22:49:46 +00008498 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008499}
8500
8501bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8502 SDValue& TFOp,
8503 SDValue Op,
8504 MVT NVT) {
8505 // TODO: Add support for ConcatVec and the ability to load many vector
8506 // types (e.g., v4i8). This will not work when a vector register
8507 // to memory mapping is strange (e.g., vector elements are not
8508 // stored in some sequential order).
8509
Scott Michel91099d62009-02-17 22:15:04 +00008510 // It must be true that the widen vector type is bigger than where
Mon P Wang1448aad2008-10-30 08:01:45 +00008511 // we need to load from.
8512 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8513 MVT LdVT = LD->getMemoryVT();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008514 DebugLoc dl = LD->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008515 assert(LdVT.isVector() && NVT.isVector());
8516 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
Scott Michel91099d62009-02-17 22:15:04 +00008517
Mon P Wang1448aad2008-10-30 08:01:45 +00008518 // Load information
8519 SDValue Chain = LD->getChain();
8520 SDValue BasePtr = LD->getBasePtr();
8521 int SVOffset = LD->getSrcValueOffset();
8522 unsigned Alignment = LD->getAlignment();
8523 bool isVolatile = LD->isVolatile();
8524 const Value *SV = LD->getSrcValue();
8525 unsigned int LdWidth = LdVT.getSizeInBits();
Scott Michel91099d62009-02-17 22:15:04 +00008526
Mon P Wang1448aad2008-10-30 08:01:45 +00008527 // Load value as a large register
8528 SDValueVector LdChain;
8529 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008530 Alignment, isVolatile, LdWidth, NVT, dl);
Mon P Wang1448aad2008-10-30 08:01:45 +00008531
8532 if (LdChain.size() == 1) {
8533 TFOp = LdChain[0];
8534 return true;
8535 }
8536 else {
Scott Michel91099d62009-02-17 22:15:04 +00008537 TFOp=DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008538 &LdChain[0], LdChain.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008539 return false;
8540 }
8541}
8542
8543
8544void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8545 SDValue Chain,
8546 SDValue BasePtr,
8547 const Value *SV,
8548 int SVOffset,
8549 unsigned Alignment,
8550 bool isVolatile,
Mon P Wang257e1c72008-11-15 06:05:52 +00008551 SDValue ValOp,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008552 unsigned StWidth,
8553 DebugLoc dl) {
Mon P Wang1448aad2008-10-30 08:01:45 +00008554 // Breaks the stores into a series of power of 2 width stores. For any
8555 // width, we convert the vector to the vector of element size that we
8556 // want to store. This avoids requiring a stack convert.
Scott Michel91099d62009-02-17 22:15:04 +00008557
Mon P Wang1448aad2008-10-30 08:01:45 +00008558 // Find a width of the element type we can store with
8559 MVT VVT = ValOp.getValueType();
8560 MVT EVT, VecEVT;
8561 unsigned EVTWidth;
8562 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8563 EVTWidth = EVT.getSizeInBits();
8564
Dale Johannesend8fd5342009-02-02 22:49:46 +00008565 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, ValOp);
8566 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang927daf52008-11-06 22:52:21 +00008567 DAG.getIntPtrConstant(0));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008568 SDValue StOp = DAG.getStore(Chain, dl, EOp, BasePtr, SV, SVOffset,
Mon P Wang1448aad2008-10-30 08:01:45 +00008569 isVolatile, Alignment);
8570 StChain.push_back(StOp);
8571
8572 // Check if we are done
8573 if (StWidth == EVTWidth) {
8574 return;
8575 }
Scott Michel91099d62009-02-17 22:15:04 +00008576
Mon P Wang1448aad2008-10-30 08:01:45 +00008577 unsigned Idx = 1;
8578 StWidth -= EVTWidth;
8579 unsigned Offset = 0;
Scott Michel91099d62009-02-17 22:15:04 +00008580
Mon P Wang1448aad2008-10-30 08:01:45 +00008581 while (StWidth > 0) {
8582 unsigned Increment = EVTWidth / 8;
8583 Offset += Increment;
Dale Johannesend8fd5342009-02-02 22:49:46 +00008584 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang1448aad2008-10-30 08:01:45 +00008585 DAG.getIntPtrConstant(Increment));
Scott Michel91099d62009-02-17 22:15:04 +00008586
Mon P Wang1448aad2008-10-30 08:01:45 +00008587 if (StWidth < EVTWidth) {
8588 // Our current type we are using is too large, use a smaller size by
8589 // using a smaller power of 2
8590 unsigned oEVTWidth = EVTWidth;
8591 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8592 EVTWidth = EVT.getSizeInBits();
8593 // Readjust position and vector position based on new load type
Mon P Wang257e1c72008-11-15 06:05:52 +00008594 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008595 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008596 }
Scott Michel91099d62009-02-17 22:15:04 +00008597
Dale Johannesend8fd5342009-02-02 22:49:46 +00008598 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang257e1c72008-11-15 06:05:52 +00008599 DAG.getIntPtrConstant(Idx++));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008600 StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr, SV,
Mon P Wang1448aad2008-10-30 08:01:45 +00008601 SVOffset + Offset, isVolatile,
8602 MinAlign(Alignment, Offset)));
8603 StWidth -= EVTWidth;
8604 }
8605}
8606
8607
8608SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
8609 SDValue Chain,
8610 SDValue BasePtr) {
8611 // TODO: It might be cleaner if we can use SplitVector and have more legal
8612 // vector types that can be stored into memory (e.g., v4xi8 can
8613 // be stored as a word). This will not work when a vector register
8614 // to memory mapping is strange (e.g., vector elements are not
8615 // stored in some sequential order).
Scott Michel91099d62009-02-17 22:15:04 +00008616
Mon P Wang1448aad2008-10-30 08:01:45 +00008617 MVT StVT = ST->getMemoryVT();
8618 SDValue ValOp = ST->getValue();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008619 DebugLoc dl = ST->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008620
8621 // Check if we have widen this node with another value
8622 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8623 if (I != WidenNodes.end())
8624 ValOp = I->second;
Scott Michel91099d62009-02-17 22:15:04 +00008625
Mon P Wang1448aad2008-10-30 08:01:45 +00008626 MVT VVT = ValOp.getValueType();
8627
8628 // It must be true that we the widen vector type is bigger than where
8629 // we need to store.
8630 assert(StVT.isVector() && VVT.isVector());
Dan Gohman783a32c2009-01-28 03:10:52 +00008631 assert(StVT.bitsLT(VVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008632 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8633
8634 // Store value
8635 SDValueVector StChain;
8636 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8637 ST->getSrcValueOffset(), ST->getAlignment(),
Dale Johannesend8fd5342009-02-02 22:49:46 +00008638 ST->isVolatile(), ValOp, StVT.getSizeInBits(), dl);
Mon P Wang1448aad2008-10-30 08:01:45 +00008639 if (StChain.size() == 1)
8640 return StChain[0];
Scott Michel91099d62009-02-17 22:15:04 +00008641 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00008642 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8643 &StChain[0], StChain.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008644}
8645
8646
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008647// SelectionDAG::Legalize - This is the entry point for the file.
8648//
Bill Wendling123374a2009-02-24 02:35:30 +00008649void SelectionDAG::Legalize(bool TypesNeedLegalizing, bool Fast) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008650 /// run - This is the main entry point to this class.
8651 ///
Bill Wendling123374a2009-02-24 02:35:30 +00008652 SelectionDAGLegalize(*this, TypesNeedLegalizing, Fast).LegalizeDAG();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008653}
8654