blob: 8d1ea8d3a43350784d227261518228085f532c86 [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 }
Sanjiv Guptaec7cef42009-04-02 18:03:10 +00001317 case TargetLowering::Custom:
1318 Result = TLI.LowerOperation(Op, DAG);
1319 if (Result.getNode())
1320 break;
Evan Chengd6f57682008-07-08 20:06:39 +00001321 case TargetLowering::Legal: {
1322 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1323 if (Action == Legal && Tmp1 == Node->getOperand(0))
1324 break;
1325
Dan Gohman8181bd12008-07-27 21:46:04 +00001326 SmallVector<SDValue, 8> Ops;
Evan Chengd6f57682008-07-08 20:06:39 +00001327 Ops.push_back(Tmp1);
1328 if (Action == Legal) {
1329 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1330 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1331 } else {
1332 // Otherwise promote them.
1333 Ops.push_back(PromoteOp(Node->getOperand(1)));
1334 Ops.push_back(PromoteOp(Node->getOperand(2)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001335 }
Evan Chengd6f57682008-07-08 20:06:39 +00001336 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1337 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1338 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001339 break;
1340 }
Evan Chengd6f57682008-07-08 20:06:39 +00001341 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001342 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001343
1344 case ISD::DECLARE:
1345 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1346 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1347 default: assert(0 && "This action is not supported yet!");
1348 case TargetLowering::Legal:
1349 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1350 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1351 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1352 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1353 break;
Chris Lattner203cd052008-02-28 05:53:40 +00001354 case TargetLowering::Expand:
1355 Result = LegalizeOp(Node->getOperand(0));
1356 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001357 }
Scott Michel91099d62009-02-17 22:15:04 +00001358 break;
1359
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001360 case ISD::DEBUG_LOC:
1361 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
1362 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
1363 default: assert(0 && "This action is not supported yet!");
Evan Chengd6f57682008-07-08 20:06:39 +00001364 case TargetLowering::Legal: {
1365 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001366 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Chengd6f57682008-07-08 20:06:39 +00001367 if (Action == Legal && Tmp1 == Node->getOperand(0))
1368 break;
1369 if (Action == Legal) {
1370 Tmp2 = Node->getOperand(1);
1371 Tmp3 = Node->getOperand(2);
1372 Tmp4 = Node->getOperand(3);
1373 } else {
1374 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1375 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1376 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1377 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001378 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1379 break;
1380 }
Evan Chengd6f57682008-07-08 20:06:39 +00001381 }
Scott Michel91099d62009-02-17 22:15:04 +00001382 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001383
Dan Gohmanfa607c92008-07-01 00:05:16 +00001384 case ISD::DBG_LABEL:
1385 case ISD::EH_LABEL:
1386 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1387 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001388 default: assert(0 && "This action is not supported yet!");
1389 case TargetLowering::Legal:
1390 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohmanfa607c92008-07-01 00:05:16 +00001391 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001392 break;
1393 case TargetLowering::Expand:
1394 Result = LegalizeOp(Node->getOperand(0));
1395 break;
1396 }
1397 break;
1398
Evan Chengd1d68072008-03-08 00:58:38 +00001399 case ISD::PREFETCH:
1400 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1401 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1402 default: assert(0 && "This action is not supported yet!");
1403 case TargetLowering::Legal:
1404 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1405 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1406 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1407 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1408 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1409 break;
1410 case TargetLowering::Expand:
1411 // It's a noop.
1412 Result = LegalizeOp(Node->getOperand(0));
1413 break;
1414 }
1415 break;
1416
Andrew Lenharth785610d2008-02-16 01:24:58 +00001417 case ISD::MEMBARRIER: {
1418 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001419 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1420 default: assert(0 && "This action is not supported yet!");
1421 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001422 SDValue Ops[6];
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001423 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sands3ee041a2008-02-27 08:53:44 +00001424 for (int x = 1; x < 6; ++x) {
1425 Ops[x] = Node->getOperand(x);
1426 if (!isTypeLegal(Ops[x].getValueType()))
1427 Ops[x] = PromoteOp(Ops[x]);
1428 }
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001429 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1430 break;
1431 }
1432 case TargetLowering::Expand:
1433 //There is no libgcc call for this op
1434 Result = Node->getOperand(0); // Noop
1435 break;
1436 }
Andrew Lenharth785610d2008-02-16 01:24:58 +00001437 break;
1438 }
1439
Dan Gohmanbebba8d2008-12-23 21:37:04 +00001440 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001441 unsigned int num_operands = 4;
1442 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001443 SDValue Ops[4];
Mon P Wang078a62d2008-05-05 19:05:59 +00001444 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001445 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang078a62d2008-05-05 19:05:59 +00001446 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Scott Michel91099d62009-02-17 22:15:04 +00001447
Mon P Wang078a62d2008-05-05 19:05:59 +00001448 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1449 default: assert(0 && "This action is not supported yet!");
1450 case TargetLowering::Custom:
1451 Result = TLI.LowerOperation(Result, DAG);
1452 break;
1453 case TargetLowering::Legal:
1454 break;
1455 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001456 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1457 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001458 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001459 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00001460 case ISD::ATOMIC_LOAD_ADD:
1461 case ISD::ATOMIC_LOAD_SUB:
1462 case ISD::ATOMIC_LOAD_AND:
1463 case ISD::ATOMIC_LOAD_OR:
1464 case ISD::ATOMIC_LOAD_XOR:
1465 case ISD::ATOMIC_LOAD_NAND:
1466 case ISD::ATOMIC_LOAD_MIN:
1467 case ISD::ATOMIC_LOAD_MAX:
1468 case ISD::ATOMIC_LOAD_UMIN:
1469 case ISD::ATOMIC_LOAD_UMAX:
1470 case ISD::ATOMIC_SWAP: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001471 unsigned int num_operands = 3;
1472 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001473 SDValue Ops[3];
Mon P Wang078a62d2008-05-05 19:05:59 +00001474 for (unsigned int x = 0; x < num_operands; ++x)
1475 Ops[x] = LegalizeOp(Node->getOperand(x));
1476 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sandsac496a12008-07-04 11:47:58 +00001477
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001478 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001479 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001480 case TargetLowering::Custom:
1481 Result = TLI.LowerOperation(Result, DAG);
1482 break;
1483 case TargetLowering::Legal:
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001484 break;
1485 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001486 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1487 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001488 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001489 }
Scott Michelf2e2b702007-08-08 23:23:31 +00001490 case ISD::Constant: {
1491 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1492 unsigned opAction =
1493 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1494
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001495 // We know we don't need to expand constants here, constants only have one
1496 // value and we check that it is fine above.
1497
Scott Michelf2e2b702007-08-08 23:23:31 +00001498 if (opAction == TargetLowering::Custom) {
1499 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001500 if (Tmp1.getNode())
Scott Michelf2e2b702007-08-08 23:23:31 +00001501 Result = Tmp1;
1502 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001503 break;
Scott Michelf2e2b702007-08-08 23:23:31 +00001504 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001505 case ISD::ConstantFP: {
1506 // Spill FP immediates to the constant pool if the target cannot directly
1507 // codegen them. Targets often have some immediate values that can be
1508 // efficiently generated into an FP register without a load. We explicitly
1509 // leave these constants as ConstantFP nodes for the target to deal with.
1510 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1511
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001512 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1513 default: assert(0 && "This action is not supported yet!");
Nate Begemane2ba64f2008-02-14 08:57:00 +00001514 case TargetLowering::Legal:
1515 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001516 case TargetLowering::Custom:
1517 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001518 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001519 Result = Tmp3;
1520 break;
1521 }
1522 // FALLTHROUGH
Nate Begemane2ba64f2008-02-14 08:57:00 +00001523 case TargetLowering::Expand: {
1524 // Check to see if this FP immediate is already legal.
1525 bool isLegal = false;
1526 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1527 E = TLI.legal_fpimm_end(); I != E; ++I) {
1528 if (CFP->isExactlyValue(*I)) {
1529 isLegal = true;
1530 break;
1531 }
1532 }
1533 // If this is a legal constant, turn it into a TargetConstantFP node.
1534 if (isLegal)
1535 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001536 Result = ExpandConstantFP(CFP, true, DAG, TLI);
1537 }
Nate Begemane2ba64f2008-02-14 08:57:00 +00001538 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001539 break;
1540 }
1541 case ISD::TokenFactor:
1542 if (Node->getNumOperands() == 2) {
1543 Tmp1 = LegalizeOp(Node->getOperand(0));
1544 Tmp2 = LegalizeOp(Node->getOperand(1));
1545 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1546 } else if (Node->getNumOperands() == 3) {
1547 Tmp1 = LegalizeOp(Node->getOperand(0));
1548 Tmp2 = LegalizeOp(Node->getOperand(1));
1549 Tmp3 = LegalizeOp(Node->getOperand(2));
1550 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1551 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00001552 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001553 // Legalize the operands.
1554 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1555 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1556 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1557 }
1558 break;
Scott Michel91099d62009-02-17 22:15:04 +00001559
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001560 case ISD::FORMAL_ARGUMENTS:
1561 case ISD::CALL:
1562 // The only option for this is to custom lower it.
1563 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001564 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesenac246272008-03-05 19:14:03 +00001565 // A call within a calling sequence must be legalized to something
1566 // other than the normal CALLSEQ_END. Violating this gets Legalize
1567 // into an infinite loop.
1568 assert ((!IsLegalizingCall ||
1569 Node->getOpcode() != ISD::CALL ||
Gabor Greif1c80d112008-08-28 21:40:38 +00001570 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesenac246272008-03-05 19:14:03 +00001571 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling22f8deb2007-11-13 00:44:25 +00001572
1573 // The number of incoming and outgoing values should match; unless the final
1574 // outgoing value is a flag.
Gabor Greif1c80d112008-08-28 21:40:38 +00001575 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1576 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1577 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling22f8deb2007-11-13 00:44:25 +00001578 MVT::Flag)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001579 "Lowering call/formal_arguments produced unexpected # results!");
Scott Michel91099d62009-02-17 22:15:04 +00001580
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001581 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
1582 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greif1c80d112008-08-28 21:40:38 +00001583 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1584 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling22f8deb2007-11-13 00:44:25 +00001585 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001586 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00001587 if (Op.getResNo() == i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001588 Tmp2 = Tmp1;
Dan Gohman8181bd12008-07-27 21:46:04 +00001589 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001590 }
1591 return Tmp2;
Christopher Lambb768c2e2007-07-26 07:34:40 +00001592 case ISD::EXTRACT_SUBREG: {
1593 Tmp1 = LegalizeOp(Node->getOperand(0));
1594 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1595 assert(idx && "Operand must be a constant");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001596 Tmp2 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lambb768c2e2007-07-26 07:34:40 +00001597 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1598 }
1599 break;
1600 case ISD::INSERT_SUBREG: {
1601 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel91099d62009-02-17 22:15:04 +00001602 Tmp2 = LegalizeOp(Node->getOperand(1));
Christopher Lambb768c2e2007-07-26 07:34:40 +00001603 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1604 assert(idx && "Operand must be a constant");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001605 Tmp3 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lambb768c2e2007-07-26 07:34:40 +00001606 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1607 }
Scott Michel91099d62009-02-17 22:15:04 +00001608 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001609 case ISD::BUILD_VECTOR:
1610 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
1611 default: assert(0 && "This action is not supported yet!");
1612 case TargetLowering::Custom:
1613 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001614 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001615 Result = Tmp3;
1616 break;
1617 }
1618 // FALLTHROUGH
1619 case TargetLowering::Expand:
Gabor Greif1c80d112008-08-28 21:40:38 +00001620 Result = ExpandBUILD_VECTOR(Result.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001621 break;
1622 }
1623 break;
1624 case ISD::INSERT_VECTOR_ELT:
1625 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001626 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001627
1628 // The type of the value to insert may not be legal, even though the vector
1629 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1630 // here.
1631 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1632 default: assert(0 && "Cannot expand insert element operand");
1633 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1634 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang1448aad2008-10-30 08:01:45 +00001635 case Expand:
1636 // FIXME: An alternative would be to check to see if the target is not
Scott Michel91099d62009-02-17 22:15:04 +00001637 // going to custom lower this operation, we could bitcast to half elt
Mon P Wang1448aad2008-10-30 08:01:45 +00001638 // width and perform two inserts at that width, if that is legal.
1639 Tmp2 = Node->getOperand(1);
1640 break;
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001641 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001642 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michel91099d62009-02-17 22:15:04 +00001643
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001644 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1645 Node->getValueType(0))) {
1646 default: assert(0 && "This action is not supported yet!");
1647 case TargetLowering::Legal:
1648 break;
1649 case TargetLowering::Custom:
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001650 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001651 if (Tmp4.getNode()) {
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001652 Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001653 break;
1654 }
1655 // FALLTHROUGH
Mon P Wang1448aad2008-10-30 08:01:45 +00001656 case TargetLowering::Promote:
1657 // Fall thru for vector case
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001658 case TargetLowering::Expand: {
1659 // If the insert index is a constant, codegen this as a scalar_to_vector,
1660 // then a shuffle that inserts it into the right position in the vector.
1661 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001662 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1663 // match the element type of the vector being created.
Scott Michel91099d62009-02-17 22:15:04 +00001664 if (Tmp2.getValueType() ==
Duncan Sands92c43912008-06-06 12:08:01 +00001665 Op.getValueType().getVectorElementType()) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001666 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001667 Tmp1.getValueType(), Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00001668
Duncan Sands92c43912008-06-06 12:08:01 +00001669 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1670 MVT ShufMaskVT =
1671 MVT::getIntVectorWithNumElements(NumElts);
1672 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Scott Michel91099d62009-02-17 22:15:04 +00001673
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001674 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1675 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1676 // elt 0 of the RHS.
Dan Gohman8181bd12008-07-27 21:46:04 +00001677 SmallVector<SDValue, 8> ShufOps;
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001678 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001679 if (i != InsertPos->getZExtValue())
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001680 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1681 else
1682 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1683 }
Evan Cheng907a2d22009-02-25 22:49:59 +00001684 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, ShufMaskVT,
1685 &ShufOps[0], ShufOps.size());
Scott Michel91099d62009-02-17 22:15:04 +00001686
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001687 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Tmp1.getValueType(),
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001688 Tmp1, ScVec, ShufMask);
1689 Result = LegalizeOp(Result);
1690 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001691 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001692 }
Dale Johannesen352c47e2009-02-02 20:41:04 +00001693 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001694 break;
1695 }
1696 }
1697 break;
1698 case ISD::SCALAR_TO_VECTOR:
1699 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1700 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1701 break;
1702 }
Scott Michel91099d62009-02-17 22:15:04 +00001703
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001704 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1705 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1706 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1707 Node->getValueType(0))) {
1708 default: assert(0 && "This action is not supported yet!");
1709 case TargetLowering::Legal:
1710 break;
1711 case TargetLowering::Custom:
1712 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001713 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001714 Result = Tmp3;
1715 break;
1716 }
1717 // FALLTHROUGH
1718 case TargetLowering::Expand:
1719 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1720 break;
1721 }
1722 break;
1723 case ISD::VECTOR_SHUFFLE:
1724 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1725 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1726 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1727
1728 // Allow targets to custom lower the SHUFFLEs they support.
1729 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1730 default: assert(0 && "Unknown operation action!");
1731 case TargetLowering::Legal:
1732 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1733 "vector shuffle should not be created if not legal!");
1734 break;
1735 case TargetLowering::Custom:
1736 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001737 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001738 Result = Tmp3;
1739 break;
1740 }
1741 // FALLTHROUGH
1742 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00001743 MVT VT = Node->getValueType(0);
1744 MVT EltVT = VT.getVectorElementType();
1745 MVT PtrVT = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00001746 SDValue Mask = Node->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001747 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00001748 SmallVector<SDValue,8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001749 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001750 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001751 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00001752 Ops.push_back(DAG.getUNDEF(EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001753 } else {
1754 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001755 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001756 if (Idx < NumElems)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001757 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001758 DAG.getConstant(Idx, PtrVT)));
1759 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001760 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001761 DAG.getConstant(Idx - NumElems, PtrVT)));
1762 }
1763 }
Evan Cheng907a2d22009-02-25 22:49:59 +00001764 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001765 break;
1766 }
1767 case TargetLowering::Promote: {
1768 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00001769 MVT OVT = Node->getValueType(0);
1770 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001771
1772 // Cast the two input vectors.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001773 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
1774 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00001775
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001776 // Convert the shuffle mask to the right # elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00001777 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greif1c80d112008-08-28 21:40:38 +00001778 assert(Tmp3.getNode() && "Shuffle not legal?");
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001779 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, NVT, Tmp1, Tmp2, Tmp3);
1780 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001781 break;
1782 }
1783 }
1784 break;
Scott Michel91099d62009-02-17 22:15:04 +00001785
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001786 case ISD::EXTRACT_VECTOR_ELT:
1787 Tmp1 = Node->getOperand(0);
1788 Tmp2 = LegalizeOp(Node->getOperand(1));
1789 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1790 Result = ExpandEXTRACT_VECTOR_ELT(Result);
1791 break;
1792
Scott Michel91099d62009-02-17 22:15:04 +00001793 case ISD::EXTRACT_SUBVECTOR:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001794 Tmp1 = Node->getOperand(0);
1795 Tmp2 = LegalizeOp(Node->getOperand(1));
1796 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1797 Result = ExpandEXTRACT_SUBVECTOR(Result);
1798 break;
Scott Michel91099d62009-02-17 22:15:04 +00001799
Mon P Wang1448aad2008-10-30 08:01:45 +00001800 case ISD::CONCAT_VECTORS: {
1801 // Use extract/insert/build vector for now. We might try to be
1802 // more clever later.
1803 MVT PtrVT = TLI.getPointerTy();
1804 SmallVector<SDValue, 8> Ops;
1805 unsigned NumOperands = Node->getNumOperands();
1806 for (unsigned i=0; i < NumOperands; ++i) {
1807 SDValue SubOp = Node->getOperand(i);
1808 MVT VVT = SubOp.getNode()->getValueType(0);
1809 MVT EltVT = VVT.getVectorElementType();
1810 unsigned NumSubElem = VVT.getVectorNumElements();
1811 for (unsigned j=0; j < NumSubElem; ++j) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001812 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
Mon P Wang1448aad2008-10-30 08:01:45 +00001813 DAG.getConstant(j, PtrVT)));
1814 }
1815 }
Evan Cheng907a2d22009-02-25 22:49:59 +00001816 return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
1817 &Ops[0], Ops.size()));
Mon P Wang1448aad2008-10-30 08:01:45 +00001818 }
1819
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001820 case ISD::CALLSEQ_START: {
1821 SDNode *CallEnd = FindCallEndFromCallStart(Node);
Scott Michel91099d62009-02-17 22:15:04 +00001822
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001823 // Recursively Legalize all of the inputs of the call end that do not lead
1824 // to this call start. This ensures that any libcalls that need be inserted
1825 // are inserted *before* the CALLSEQ_START.
Mon P Wang7cba3942009-02-04 19:38:14 +00001826 IsLegalizingCallArgs = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001827 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
1828 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greif1c80d112008-08-28 21:40:38 +00001829 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001830 NodesLeadingTo);
1831 }
Mon P Wang7cba3942009-02-04 19:38:14 +00001832 IsLegalizingCallArgs = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001833
1834 // Now that we legalized all of the inputs (which may have inserted
1835 // libcalls) create the new CALLSEQ_START node.
1836 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1837
1838 // Merge in the last call, to ensure that this call start after the last
1839 // call ended.
1840 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Scott Michel91099d62009-02-17 22:15:04 +00001841 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001842 Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001843 Tmp1 = LegalizeOp(Tmp1);
1844 }
Scott Michel91099d62009-02-17 22:15:04 +00001845
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001846 // Do not try to legalize the target-specific arguments (#1+).
1847 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001848 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001849 Ops[0] = Tmp1;
1850 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1851 }
Scott Michel91099d62009-02-17 22:15:04 +00001852
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001853 // Remember that the CALLSEQ_START is legalized.
1854 AddLegalizedOperand(Op.getValue(0), Result);
1855 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1856 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Scott Michel91099d62009-02-17 22:15:04 +00001857
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001858 // Now that the callseq_start and all of the non-call nodes above this call
Scott Michel91099d62009-02-17 22:15:04 +00001859 // sequence have been legalized, legalize the call itself. During this
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001860 // process, no libcalls can/will be inserted, guaranteeing that no calls
1861 // can overlap.
1862 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001863 // Note that we are selecting this call!
Dan Gohman8181bd12008-07-27 21:46:04 +00001864 LastCALLSEQ_END = SDValue(CallEnd, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001865 IsLegalizingCall = true;
Scott Michel91099d62009-02-17 22:15:04 +00001866
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001867 // Legalize the call, starting from the CALLSEQ_END.
1868 LegalizeOp(LastCALLSEQ_END);
1869 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1870 return Result;
1871 }
1872 case ISD::CALLSEQ_END:
1873 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1874 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greif1c80d112008-08-28 21:40:38 +00001875 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001876 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1877 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001878 assert(I != LegalizedNodes.end() &&
1879 "Legalizing the call start should have legalized this node!");
1880 return I->second;
1881 }
Scott Michel91099d62009-02-17 22:15:04 +00001882
1883 // Otherwise, the call start has been legalized and everything is going
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001884 // according to plan. Just legalize ourselves normally here.
1885 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1886 // Do not try to legalize the target-specific arguments (#1+), except for
1887 // an optional flag input.
1888 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1889 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001890 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001891 Ops[0] = Tmp1;
1892 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1893 }
1894 } else {
1895 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1896 if (Tmp1 != Node->getOperand(0) ||
1897 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001898 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001899 Ops[0] = Tmp1;
1900 Ops.back() = Tmp2;
1901 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1902 }
1903 }
1904 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
1905 // This finishes up call legalization.
1906 IsLegalizingCall = false;
Scott Michel91099d62009-02-17 22:15:04 +00001907
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001908 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00001909 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001910 if (Node->getNumValues() == 2)
Dan Gohman8181bd12008-07-27 21:46:04 +00001911 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001912 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001913 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands92c43912008-06-06 12:08:01 +00001914 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001915 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1916 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1917 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
1918 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1919
1920 Tmp1 = Result.getValue(0);
1921 Tmp2 = Result.getValue(1);
Evan Chenga448bc42007-08-16 23:50:06 +00001922 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001923 default: assert(0 && "This action is not supported yet!");
1924 case TargetLowering::Expand: {
1925 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1926 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1927 " not tell us which reg is the stack pointer!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001928 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling22f8deb2007-11-13 00:44:25 +00001929
1930 // Chain the dynamic stack allocation so that it doesn't modify the stack
1931 // pointer when other instructions are using the stack.
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001932 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling22f8deb2007-11-13 00:44:25 +00001933
Dan Gohman8181bd12008-07-27 21:46:04 +00001934 SDValue Size = Tmp2.getOperand(1);
Dale Johannesen564036c2009-02-04 00:13:36 +00001935 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
Evan Chenga448bc42007-08-16 23:50:06 +00001936 Chain = SP.getValue(1);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001937 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Chenga448bc42007-08-16 23:50:06 +00001938 unsigned StackAlign =
1939 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1940 if (Align > StackAlign)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001941 SP = DAG.getNode(ISD::AND, dl, VT, SP,
Evan Cheng51ce0382007-08-17 18:02:22 +00001942 DAG.getConstant(-(uint64_t)Align, VT));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001943 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Dale Johannesen564036c2009-02-04 00:13:36 +00001944 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
Bill Wendling22f8deb2007-11-13 00:44:25 +00001945
Dale Johannesenbbf56a22009-02-02 23:46:53 +00001946 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001947 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling22f8deb2007-11-13 00:44:25 +00001948
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001949 Tmp1 = LegalizeOp(Tmp1);
1950 Tmp2 = LegalizeOp(Tmp2);
1951 break;
1952 }
1953 case TargetLowering::Custom:
1954 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001955 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001956 Tmp1 = LegalizeOp(Tmp3);
1957 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1958 }
1959 break;
1960 case TargetLowering::Legal:
1961 break;
1962 }
1963 // Since this op produce two values, make sure to remember that we
1964 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001965 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1966 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001967 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001968 }
1969 case ISD::INLINEASM: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001970 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001971 bool Changed = false;
1972 // Legalize all of the operands of the inline asm, in case they are nodes
1973 // that need to be expanded or something. Note we skip the asm string and
1974 // all of the TargetConstant flags.
Dan Gohman8181bd12008-07-27 21:46:04 +00001975 SDValue Op = LegalizeOp(Ops[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001976 Changed = Op != Ops[0];
1977 Ops[0] = Op;
1978
1979 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1980 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Evan Cheng92167402009-03-20 18:03:34 +00001981 unsigned NumVals = InlineAsm::
1982 getNumOperandRegisters(cast<ConstantSDNode>(Ops[i])->getZExtValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001983 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001984 SDValue Op = LegalizeOp(Ops[i]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001985 if (Op != Ops[i]) {
1986 Changed = true;
1987 Ops[i] = Op;
1988 }
1989 }
1990 }
1991
1992 if (HasInFlag) {
1993 Op = LegalizeOp(Ops.back());
1994 Changed |= Op != Ops.back();
1995 Ops.back() = Op;
1996 }
Scott Michel91099d62009-02-17 22:15:04 +00001997
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001998 if (Changed)
1999 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michel91099d62009-02-17 22:15:04 +00002000
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002001 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman8181bd12008-07-27 21:46:04 +00002002 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2003 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00002004 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002005 }
2006 case ISD::BR:
2007 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2008 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002009 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002010 Tmp1 = LegalizeOp(Tmp1);
2011 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00002012
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002013 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
2014 break;
2015 case ISD::BRIND:
2016 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2017 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002018 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002019 Tmp1 = LegalizeOp(Tmp1);
2020 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00002021
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002022 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2023 default: assert(0 && "Indirect target must be legal type (pointer)!");
2024 case Legal:
2025 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2026 break;
2027 }
2028 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2029 break;
2030 case ISD::BR_JT:
2031 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2032 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002033 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002034 Tmp1 = LegalizeOp(Tmp1);
2035 LastCALLSEQ_END = DAG.getEntryNode();
2036
2037 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
2038 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2039
Scott Michel91099d62009-02-17 22:15:04 +00002040 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002041 default: assert(0 && "This action is not supported yet!");
2042 case TargetLowering::Legal: break;
2043 case TargetLowering::Custom:
2044 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002045 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002046 break;
2047 case TargetLowering::Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002048 SDValue Chain = Result.getOperand(0);
2049 SDValue Table = Result.getOperand(1);
2050 SDValue Index = Result.getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002051
Duncan Sands92c43912008-06-06 12:08:01 +00002052 MVT PTy = TLI.getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002053 MachineFunction &MF = DAG.getMachineFunction();
2054 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Scott Michel91099d62009-02-17 22:15:04 +00002055 Index= DAG.getNode(ISD::MUL, dl, PTy,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002056 Index, DAG.getConstant(EntrySize, PTy));
2057 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002058
Duncan Sands12ddc802008-12-12 08:13:38 +00002059 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002060 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Duncan Sands12ddc802008-12-12 08:13:38 +00002061 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Cheng6fb06762007-11-09 01:32:10 +00002062 Addr = LD;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002063 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2064 // For PIC, the sequence is:
2065 // BRIND(load(Jumptable + index) + RelocBase)
Evan Cheng6fb06762007-11-09 01:32:10 +00002066 // RelocBase can be JumpTable, GOT or some sort of global base.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002067 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
Evan Cheng6fb06762007-11-09 01:32:10 +00002068 TLI.getPICJumpTableRelocBase(Table, DAG));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002069 }
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002070 Result = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002071 }
2072 }
2073 break;
2074 case ISD::BRCOND:
2075 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2076 // Ensure that libcalls are emitted before a return.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002077 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002078 Tmp1 = LegalizeOp(Tmp1);
2079 LastCALLSEQ_END = DAG.getEntryNode();
2080
2081 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2082 case Expand: assert(0 && "It's impossible to expand bools");
2083 case Legal:
2084 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2085 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00002086 case Promote: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002087 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Scott Michel91099d62009-02-17 22:15:04 +00002088
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002089 // The top bits of the promoted condition are not necessarily zero, ensure
2090 // that the value is properly zero extended.
Dan Gohman07961cd2008-02-25 21:11:39 +00002091 unsigned BitWidth = Tmp2.getValueSizeInBits();
Scott Michel91099d62009-02-17 22:15:04 +00002092 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman07961cd2008-02-25 21:11:39 +00002093 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002094 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, MVT::i1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002095 break;
2096 }
Dan Gohman07961cd2008-02-25 21:11:39 +00002097 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002098
2099 // Basic block destination (Op#2) is always legal.
2100 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michel91099d62009-02-17 22:15:04 +00002101
2102 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002103 default: assert(0 && "This action is not supported yet!");
2104 case TargetLowering::Legal: break;
2105 case TargetLowering::Custom:
2106 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002107 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002108 break;
2109 case TargetLowering::Expand:
2110 // Expand brcond's setcc into its constituent parts and create a BR_CC
2111 // Node.
2112 if (Tmp2.getOpcode() == ISD::SETCC) {
Scott Michel91099d62009-02-17 22:15:04 +00002113 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002114 Tmp1, Tmp2.getOperand(2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002115 Tmp2.getOperand(0), Tmp2.getOperand(1),
2116 Node->getOperand(2));
2117 } else {
Scott Michel91099d62009-02-17 22:15:04 +00002118 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002119 DAG.getCondCode(ISD::SETNE), Tmp2,
2120 DAG.getConstant(0, Tmp2.getValueType()),
2121 Node->getOperand(2));
2122 }
2123 break;
2124 }
2125 break;
2126 case ISD::BR_CC:
2127 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2128 // Ensure that libcalls are emitted before a branch.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002129 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002130 Tmp1 = LegalizeOp(Tmp1);
Scott Michel91099d62009-02-17 22:15:04 +00002131 Tmp2 = Node->getOperand(2); // LHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002132 Tmp3 = Node->getOperand(3); // RHS
2133 Tmp4 = Node->getOperand(1); // CC
2134
Scott Michel91099d62009-02-17 22:15:04 +00002135 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
Dale Johannesen352c47e2009-02-02 20:41:04 +00002136 Tmp2, Tmp3, Tmp4, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002137 LastCALLSEQ_END = DAG.getEntryNode();
2138
Evan Cheng71343822008-10-15 02:05:31 +00002139 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002140 // the LHS is a legal SETCC itself. In this case, we need to compare
2141 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00002142 if (Tmp3.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002143 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2144 Tmp4 = DAG.getCondCode(ISD::SETNE);
2145 }
Scott Michel91099d62009-02-17 22:15:04 +00002146
2147 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002148 Node->getOperand(4));
Scott Michel91099d62009-02-17 22:15:04 +00002149
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002150 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2151 default: assert(0 && "Unexpected action for BR_CC!");
2152 case TargetLowering::Legal: break;
2153 case TargetLowering::Custom:
2154 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002155 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002156 break;
2157 }
2158 break;
2159 case ISD::LOAD: {
2160 LoadSDNode *LD = cast<LoadSDNode>(Node);
2161 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2162 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
2163
2164 ISD::LoadExtType ExtType = LD->getExtensionType();
2165 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands92c43912008-06-06 12:08:01 +00002166 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002167 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2168 Tmp3 = Result.getValue(0);
2169 Tmp4 = Result.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00002170
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002171 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2172 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002173 case TargetLowering::Legal:
2174 // If this is an unaligned load and the target doesn't support it,
2175 // expand it.
2176 if (!TLI.allowsUnalignedMemoryAccesses()) {
2177 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002178 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002179 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00002180 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002181 TLI);
2182 Tmp3 = Result.getOperand(0);
2183 Tmp4 = Result.getOperand(1);
Dale Johannesen08275382007-09-08 19:29:23 +00002184 Tmp3 = LegalizeOp(Tmp3);
2185 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002186 }
2187 }
2188 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002189 case TargetLowering::Custom:
2190 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002191 if (Tmp1.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002192 Tmp3 = LegalizeOp(Tmp1);
2193 Tmp4 = LegalizeOp(Tmp1.getValue(1));
2194 }
2195 break;
2196 case TargetLowering::Promote: {
2197 // Only promote a load of vector type to another.
Duncan Sands92c43912008-06-06 12:08:01 +00002198 assert(VT.isVector() && "Cannot promote this load!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002199 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002200 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002201
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002202 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002203 LD->getSrcValueOffset(),
2204 LD->isVolatile(), LD->getAlignment());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00002205 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002206 Tmp4 = LegalizeOp(Tmp1.getValue(1));
2207 break;
2208 }
2209 }
Scott Michel91099d62009-02-17 22:15:04 +00002210 // Since loads produce two values, make sure to remember that we
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002211 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002212 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2213 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif46bf5472008-08-26 22:36:50 +00002214 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002215 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00002216 MVT SrcVT = LD->getMemoryVT();
2217 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sands082524c2008-01-23 20:39:46 +00002218 int SVOffset = LD->getSrcValueOffset();
2219 unsigned Alignment = LD->getAlignment();
2220 bool isVolatile = LD->isVolatile();
2221
Duncan Sands92c43912008-06-06 12:08:01 +00002222 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sands082524c2008-01-23 20:39:46 +00002223 // Some targets pretend to have an i1 loading operation, and actually
2224 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2225 // bits are guaranteed to be zero; it helps the optimizers understand
2226 // that these bits are zero. It is also useful for EXTLOAD, since it
2227 // tells the optimizers that those bits are undefined. It would be
2228 // nice to have an effective generic way of getting these benefits...
2229 // Until such a way is found, don't insist on promoting i1 here.
2230 (SrcVT != MVT::i1 ||
Evan Cheng08c171a2008-10-14 21:26:46 +00002231 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sands082524c2008-01-23 20:39:46 +00002232 // Promote to a byte-sized load if not loading an integral number of
2233 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands92c43912008-06-06 12:08:01 +00002234 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2235 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002236 SDValue Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00002237
2238 // The extra bits are guaranteed to be zero, since we stored them that
2239 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2240
2241 ISD::LoadExtType NewExtType =
2242 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2243
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002244 Result = DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Duncan Sands082524c2008-01-23 20:39:46 +00002245 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2246 NVT, isVolatile, Alignment);
2247
2248 Ch = Result.getValue(1); // The chain.
2249
2250 if (ExtType == ISD::SEXTLOAD)
2251 // Having the top bits zero doesn't help when sign extending.
Scott Michel91099d62009-02-17 22:15:04 +00002252 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002253 Result.getValueType(),
Duncan Sands082524c2008-01-23 20:39:46 +00002254 Result, DAG.getValueType(SrcVT));
2255 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2256 // All the top bits are guaranteed to be zero - inform the optimizers.
Scott Michel91099d62009-02-17 22:15:04 +00002257 Result = DAG.getNode(ISD::AssertZext, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002258 Result.getValueType(), Result,
Duncan Sands082524c2008-01-23 20:39:46 +00002259 DAG.getValueType(SrcVT));
2260
2261 Tmp1 = LegalizeOp(Result);
2262 Tmp2 = LegalizeOp(Ch);
2263 } else if (SrcWidth & (SrcWidth - 1)) {
2264 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands92c43912008-06-06 12:08:01 +00002265 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sands082524c2008-01-23 20:39:46 +00002266 "Unsupported extload!");
2267 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2268 assert(RoundWidth < SrcWidth);
2269 unsigned ExtraWidth = SrcWidth - RoundWidth;
2270 assert(ExtraWidth < RoundWidth);
2271 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2272 "Load size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002273 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2274 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002275 SDValue Lo, Hi, Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00002276 unsigned IncrementSize;
2277
2278 if (TLI.isLittleEndian()) {
2279 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2280 // Load the bottom RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002281 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2282 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002283 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2284 Alignment);
2285
2286 // Load the remaining ExtraWidth bits.
2287 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002288 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002289 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002290 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002291 LD->getSrcValue(), SVOffset + IncrementSize,
2292 ExtraVT, isVolatile,
2293 MinAlign(Alignment, IncrementSize));
2294
2295 // Build a factor node to remember that this load is independent of the
2296 // other one.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002297 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sands082524c2008-01-23 20:39:46 +00002298 Hi.getValue(1));
2299
2300 // Move the top bits to the right place.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002301 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sands082524c2008-01-23 20:39:46 +00002302 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2303
2304 // Join the hi and lo parts.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002305 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002306 } else {
Duncan Sands082524c2008-01-23 20:39:46 +00002307 // Big endian - avoid unaligned loads.
2308 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2309 // Load the top RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002310 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002311 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2312 Alignment);
2313
2314 // Load the remaining ExtraWidth bits.
2315 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002316 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002317 DAG.getIntPtrConstant(IncrementSize));
Scott Michel91099d62009-02-17 22:15:04 +00002318 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002319 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sands082524c2008-01-23 20:39:46 +00002320 LD->getSrcValue(), SVOffset + IncrementSize,
2321 ExtraVT, isVolatile,
2322 MinAlign(Alignment, IncrementSize));
2323
2324 // Build a factor node to remember that this load is independent of the
2325 // other one.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002326 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sands082524c2008-01-23 20:39:46 +00002327 Hi.getValue(1));
2328
2329 // Move the top bits to the right place.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002330 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sands082524c2008-01-23 20:39:46 +00002331 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2332
2333 // Join the hi and lo parts.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002334 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sands082524c2008-01-23 20:39:46 +00002335 }
2336
2337 Tmp1 = LegalizeOp(Result);
2338 Tmp2 = LegalizeOp(Ch);
2339 } else {
Evan Cheng08c171a2008-10-14 21:26:46 +00002340 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sands082524c2008-01-23 20:39:46 +00002341 default: assert(0 && "This action is not supported yet!");
2342 case TargetLowering::Custom:
2343 isCustom = true;
2344 // FALLTHROUGH
2345 case TargetLowering::Legal:
2346 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2347 Tmp1 = Result.getValue(0);
2348 Tmp2 = Result.getValue(1);
2349
2350 if (isCustom) {
2351 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002352 if (Tmp3.getNode()) {
Duncan Sands082524c2008-01-23 20:39:46 +00002353 Tmp1 = LegalizeOp(Tmp3);
2354 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2355 }
2356 } else {
2357 // If this is an unaligned load and the target doesn't support it,
2358 // expand it.
2359 if (!TLI.allowsUnalignedMemoryAccesses()) {
2360 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002361 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sands082524c2008-01-23 20:39:46 +00002362 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00002363 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sands082524c2008-01-23 20:39:46 +00002364 TLI);
2365 Tmp1 = Result.getOperand(0);
2366 Tmp2 = Result.getOperand(1);
2367 Tmp1 = LegalizeOp(Tmp1);
2368 Tmp2 = LegalizeOp(Tmp2);
2369 }
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002370 }
2371 }
Duncan Sands082524c2008-01-23 20:39:46 +00002372 break;
2373 case TargetLowering::Expand:
2374 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2375 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002376 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sands082524c2008-01-23 20:39:46 +00002377 LD->getSrcValueOffset(),
2378 LD->isVolatile(), LD->getAlignment());
Scott Michel91099d62009-02-17 22:15:04 +00002379 Result = DAG.getNode(ISD::FP_EXTEND, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002380 Node->getValueType(0), Load);
Duncan Sands082524c2008-01-23 20:39:46 +00002381 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2382 Tmp2 = LegalizeOp(Load.getValue(1));
2383 break;
2384 }
2385 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2386 // Turn the unsupported load into an EXTLOAD followed by an explicit
2387 // zero/sign extend inreg.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002388 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Duncan Sands082524c2008-01-23 20:39:46 +00002389 Tmp1, Tmp2, LD->getSrcValue(),
2390 LD->getSrcValueOffset(), SrcVT,
2391 LD->isVolatile(), LD->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +00002392 SDValue ValRes;
Duncan Sands082524c2008-01-23 20:39:46 +00002393 if (ExtType == ISD::SEXTLOAD)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002394 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2395 Result.getValueType(),
Duncan Sands082524c2008-01-23 20:39:46 +00002396 Result, DAG.getValueType(SrcVT));
2397 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002398 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
Duncan Sands082524c2008-01-23 20:39:46 +00002399 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2400 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002401 break;
2402 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002403 }
Duncan Sands082524c2008-01-23 20:39:46 +00002404
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002405 // Since loads produce two values, make sure to remember that we legalized
2406 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002407 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2408 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002409 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002410 }
2411 }
2412 case ISD::EXTRACT_ELEMENT: {
Duncan Sands92c43912008-06-06 12:08:01 +00002413 MVT OpTy = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002414 switch (getTypeAction(OpTy)) {
2415 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
2416 case Legal:
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002417 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002418 // 1 -> Hi
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002419 Result = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Duncan Sands92c43912008-06-06 12:08:01 +00002420 DAG.getConstant(OpTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002421 TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002422 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002423 } else {
2424 // 0 -> Lo
Scott Michel91099d62009-02-17 22:15:04 +00002425 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002426 Node->getOperand(0));
2427 }
2428 break;
2429 case Expand:
2430 // Get both the low and high parts.
2431 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002432 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002433 Result = Tmp2; // 1 -> Hi
2434 else
2435 Result = Tmp1; // 0 -> Lo
2436 break;
2437 }
2438 break;
2439 }
2440
2441 case ISD::CopyToReg:
2442 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2443
2444 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
2445 "Register type must be legal!");
2446 // Legalize the incoming value (must be a legal type).
2447 Tmp2 = LegalizeOp(Node->getOperand(2));
2448 if (Node->getNumValues() == 1) {
2449 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
2450 } else {
2451 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
2452 if (Node->getNumOperands() == 4) {
2453 Tmp3 = LegalizeOp(Node->getOperand(3));
2454 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2455 Tmp3);
2456 } else {
2457 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
2458 }
Scott Michel91099d62009-02-17 22:15:04 +00002459
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002460 // Since this produces two values, make sure to remember that we legalized
2461 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002462 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2463 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002464 return Result;
2465 }
2466 break;
2467
2468 case ISD::RET:
2469 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2470
2471 // Ensure that libcalls are emitted before a return.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002472 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002473 Tmp1 = LegalizeOp(Tmp1);
2474 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00002475
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002476 switch (Node->getNumOperands()) {
2477 case 3: // ret val
2478 Tmp2 = Node->getOperand(1);
2479 Tmp3 = Node->getOperand(2); // Signness
2480 switch (getTypeAction(Tmp2.getValueType())) {
2481 case Legal:
2482 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
2483 break;
2484 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +00002485 if (!Tmp2.getValueType().isVector()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002486 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002487 ExpandOp(Tmp2, Lo, Hi);
2488
2489 // Big endian systems want the hi reg first.
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002490 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002491 std::swap(Lo, Hi);
Scott Michel91099d62009-02-17 22:15:04 +00002492
Gabor Greif1c80d112008-08-28 21:40:38 +00002493 if (Hi.getNode())
Scott Michel91099d62009-02-17 22:15:04 +00002494 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002495 Tmp1, Lo, Tmp3, Hi,Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002496 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002497 Result = DAG.getNode(ISD::RET, dl, MVT::Other, Tmp1, Lo, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002498 Result = LegalizeOp(Result);
2499 } else {
Gabor Greif1c80d112008-08-28 21:40:38 +00002500 SDNode *InVal = Tmp2.getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002501 int InIx = Tmp2.getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002502 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2503 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michel91099d62009-02-17 22:15:04 +00002504
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002505 // Figure out if there is a simple type corresponding to this Vector
2506 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002507 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002508 if (TLI.isTypeLegal(TVT)) {
2509 // Turn this into a return of the vector type.
2510 Tmp2 = LegalizeOp(Tmp2);
2511 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2512 } else if (NumElems == 1) {
2513 // Turn this into a return of the scalar type.
2514 Tmp2 = ScalarizeVectorOp(Tmp2);
2515 Tmp2 = LegalizeOp(Tmp2);
2516 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michel91099d62009-02-17 22:15:04 +00002517
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002518 // FIXME: Returns of gcc generic vectors smaller than a legal type
2519 // should be returned in integer registers!
Scott Michel91099d62009-02-17 22:15:04 +00002520
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002521 // The scalarized value type may not be legal, e.g. it might require
2522 // promotion or expansion. Relegalize the return.
2523 Result = LegalizeOp(Result);
2524 } else {
2525 // FIXME: Returns of gcc generic vectors larger than a legal vector
2526 // type should be returned by reference!
Dan Gohman8181bd12008-07-27 21:46:04 +00002527 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002528 SplitVectorOp(Tmp2, Lo, Hi);
Scott Michel91099d62009-02-17 22:15:04 +00002529 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002530 Tmp1, Lo, Tmp3, Hi,Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002531 Result = LegalizeOp(Result);
2532 }
2533 }
2534 break;
2535 case Promote:
2536 Tmp2 = PromoteOp(Node->getOperand(1));
2537 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2538 Result = LegalizeOp(Result);
2539 break;
2540 }
2541 break;
2542 case 1: // ret void
2543 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2544 break;
2545 default: { // ret <values>
Dan Gohman8181bd12008-07-27 21:46:04 +00002546 SmallVector<SDValue, 8> NewValues;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002547 NewValues.push_back(Tmp1);
2548 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
2549 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2550 case Legal:
2551 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
2552 NewValues.push_back(Node->getOperand(i+1));
2553 break;
2554 case Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002555 SDValue Lo, Hi;
Duncan Sands92c43912008-06-06 12:08:01 +00002556 assert(!Node->getOperand(i).getValueType().isExtended() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002557 "FIXME: TODO: implement returning non-legal vector types!");
2558 ExpandOp(Node->getOperand(i), Lo, Hi);
2559 NewValues.push_back(Lo);
2560 NewValues.push_back(Node->getOperand(i+1));
Gabor Greif1c80d112008-08-28 21:40:38 +00002561 if (Hi.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002562 NewValues.push_back(Hi);
2563 NewValues.push_back(Node->getOperand(i+1));
2564 }
2565 break;
2566 }
2567 case Promote:
2568 assert(0 && "Can't promote multiple return value yet!");
2569 }
Scott Michel91099d62009-02-17 22:15:04 +00002570
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002571 if (NewValues.size() == Node->getNumOperands())
2572 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
2573 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002574 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002575 &NewValues[0], NewValues.size());
2576 break;
2577 }
2578 }
2579
2580 if (Result.getOpcode() == ISD::RET) {
2581 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2582 default: assert(0 && "This action is not supported yet!");
2583 case TargetLowering::Legal: break;
2584 case TargetLowering::Custom:
2585 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002586 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002587 break;
2588 }
2589 }
2590 break;
2591 case ISD::STORE: {
2592 StoreSDNode *ST = cast<StoreSDNode>(Node);
2593 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2594 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
2595 int SVOffset = ST->getSrcValueOffset();
2596 unsigned Alignment = ST->getAlignment();
2597 bool isVolatile = ST->isVolatile();
2598
2599 if (!ST->isTruncatingStore()) {
2600 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2601 // FIXME: We shouldn't do this for TargetConstantFP's.
2602 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2603 // to phase ordering between legalized code and the dag combiner. This
2604 // probably means that we need to integrate dag combiner and legalizer
2605 // together.
Dale Johannesen2fc20782007-09-14 22:26:36 +00002606 // We generally can't do this one for long doubles.
Chris Lattnere8671c52007-10-13 06:35:54 +00002607 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Scott Michel91099d62009-02-17 22:15:04 +00002608 if (CFP->getValueType(0) == MVT::f32 &&
Chris Lattner19f229a2007-10-15 05:46:06 +00002609 getTypeAction(MVT::i32) == Legal) {
Dan Gohman39509762008-03-11 00:11:06 +00002610 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002611 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen1616e902007-09-11 18:32:33 +00002612 MVT::i32);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002613 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dale Johannesen2fc20782007-09-14 22:26:36 +00002614 SVOffset, isVolatile, Alignment);
2615 break;
2616 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002617 // If this target supports 64-bit registers, do a single 64-bit store.
2618 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002619 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman39509762008-03-11 00:11:06 +00002620 zextOrTrunc(64), MVT::i64);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002621 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner19f229a2007-10-15 05:46:06 +00002622 SVOffset, isVolatile, Alignment);
2623 break;
Duncan Sands2418bec2008-06-13 19:07:40 +00002624 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002625 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2626 // stores. If the target supports neither 32- nor 64-bits, this
2627 // xform is certainly not worth it.
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002628 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman8181bd12008-07-27 21:46:04 +00002629 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2630 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002631 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner19f229a2007-10-15 05:46:06 +00002632
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002633 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Chris Lattner19f229a2007-10-15 05:46:06 +00002634 SVOffset, isVolatile, Alignment);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002635 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002636 DAG.getIntPtrConstant(4));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002637 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsa3691432007-10-28 12:59:45 +00002638 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner19f229a2007-10-15 05:46:06 +00002639
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002640 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Chris Lattner19f229a2007-10-15 05:46:06 +00002641 break;
2642 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002643 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002644 }
Scott Michel91099d62009-02-17 22:15:04 +00002645
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002646 switch (getTypeAction(ST->getMemoryVT())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002647 case Legal: {
2648 Tmp3 = LegalizeOp(ST->getValue());
Scott Michel91099d62009-02-17 22:15:04 +00002649 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002650 ST->getOffset());
2651
Duncan Sands92c43912008-06-06 12:08:01 +00002652 MVT VT = Tmp3.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002653 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2654 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002655 case TargetLowering::Legal:
2656 // If this is an unaligned store and the target doesn't support it,
2657 // expand it.
2658 if (!TLI.allowsUnalignedMemoryAccesses()) {
2659 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002660 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002661 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002662 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002663 TLI);
2664 }
2665 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002666 case TargetLowering::Custom:
2667 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002668 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002669 break;
2670 case TargetLowering::Promote:
Duncan Sands92c43912008-06-06 12:08:01 +00002671 assert(VT.isVector() && "Unknown legal promote case!");
Scott Michel91099d62009-02-17 22:15:04 +00002672 Tmp3 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002673 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002674 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002675 ST->getSrcValue(), SVOffset, isVolatile,
2676 Alignment);
2677 break;
2678 }
2679 break;
2680 }
2681 case Promote:
Mon P Wang1448aad2008-10-30 08:01:45 +00002682 if (!ST->getMemoryVT().isVector()) {
2683 // Truncate the value and store the result.
2684 Tmp3 = PromoteOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002685 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Mon P Wang1448aad2008-10-30 08:01:45 +00002686 SVOffset, ST->getMemoryVT(),
2687 isVolatile, Alignment);
2688 break;
2689 }
2690 // Fall thru to expand for vector
2691 case Expand: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002692 unsigned IncrementSize = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002693 SDValue Lo, Hi;
Scott Michel91099d62009-02-17 22:15:04 +00002694
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002695 // If this is a vector type, then we have to calculate the increment as
2696 // the product of the element size in bytes, and the number of elements
2697 // in the high half of the vector.
Duncan Sands92c43912008-06-06 12:08:01 +00002698 if (ST->getValue().getValueType().isVector()) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002699 SDNode *InVal = ST->getValue().getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002700 int InIx = ST->getValue().getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002701 MVT InVT = InVal->getValueType(InIx);
2702 unsigned NumElems = InVT.getVectorNumElements();
2703 MVT EVT = InVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002704
2705 // Figure out if there is a simple type corresponding to this Vector
2706 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002707 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002708 if (TLI.isTypeLegal(TVT)) {
2709 // Turn this into a normal store of the vector type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002710 Tmp3 = LegalizeOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002711 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002712 SVOffset, isVolatile, Alignment);
2713 Result = LegalizeOp(Result);
2714 break;
2715 } else if (NumElems == 1) {
2716 // Turn this into a normal store of the scalar type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002717 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002718 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002719 SVOffset, isVolatile, Alignment);
2720 // The scalarized value type may not be legal, e.g. it might require
2721 // promotion or expansion. Relegalize the scalar store.
2722 Result = LegalizeOp(Result);
2723 break;
2724 } else {
Mon P Wang1448aad2008-10-30 08:01:45 +00002725 // Check if we have widen this node with another value
2726 std::map<SDValue, SDValue>::iterator I =
2727 WidenNodes.find(ST->getValue());
2728 if (I != WidenNodes.end()) {
2729 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2730 break;
2731 }
2732 else {
2733 SplitVectorOp(ST->getValue(), Lo, Hi);
2734 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2735 EVT.getSizeInBits()/8;
2736 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002737 }
2738 } else {
Dan Gohmane9f633d2008-02-15 18:11:59 +00002739 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greif1c80d112008-08-28 21:40:38 +00002740 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002741
Richard Pennington73ae9e42008-09-25 16:15:10 +00002742 if (Hi.getNode() && TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002743 std::swap(Lo, Hi);
2744 }
2745
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002746 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002747 SVOffset, isVolatile, Alignment);
2748
Gabor Greif1c80d112008-08-28 21:40:38 +00002749 if (Hi.getNode() == NULL) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002750 // Must be int <-> float one-to-one expansion.
2751 Result = Lo;
2752 break;
2753 }
2754
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002755 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002756 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002757 assert(isTypeLegal(Tmp2.getValueType()) &&
2758 "Pointers must be legal!");
2759 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00002760 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002761 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002762 SVOffset, isVolatile, Alignment);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002763 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002764 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00002765 } // case Expand
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002766 }
2767 } else {
Chris Lattner3bc08502008-01-17 19:59:44 +00002768 switch (getTypeAction(ST->getValue().getValueType())) {
2769 case Legal:
2770 Tmp3 = LegalizeOp(ST->getValue());
2771 break;
2772 case Promote:
Mon P Wang1448aad2008-10-30 08:01:45 +00002773 if (!ST->getValue().getValueType().isVector()) {
2774 // We can promote the value, the truncstore will still take care of it.
2775 Tmp3 = PromoteOp(ST->getValue());
2776 break;
2777 }
2778 // Vector case falls through to expand
Chris Lattner3bc08502008-01-17 19:59:44 +00002779 case Expand:
2780 // Just store the low part. This may become a non-trunc store, so make
2781 // sure to use getTruncStore, not UpdateNodeOperands below.
2782 ExpandOp(ST->getValue(), Tmp3, Tmp4);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002783 return DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner3bc08502008-01-17 19:59:44 +00002784 SVOffset, MVT::i8, isVolatile, Alignment);
2785 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002786
Duncan Sands92c43912008-06-06 12:08:01 +00002787 MVT StVT = ST->getMemoryVT();
2788 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands40676662008-01-22 07:17:34 +00002789
Duncan Sands92c43912008-06-06 12:08:01 +00002790 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands40676662008-01-22 07:17:34 +00002791 // Promote to a byte-sized store with upper bits zero if not
2792 // storing an integral number of bytes. For example, promote
2793 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands92c43912008-06-06 12:08:01 +00002794 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002795 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
2796 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002797 SVOffset, NVT, isVolatile, Alignment);
2798 } else if (StWidth & (StWidth - 1)) {
2799 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands92c43912008-06-06 12:08:01 +00002800 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands40676662008-01-22 07:17:34 +00002801 "Unsupported truncstore!");
2802 unsigned RoundWidth = 1 << Log2_32(StWidth);
2803 assert(RoundWidth < StWidth);
2804 unsigned ExtraWidth = StWidth - RoundWidth;
2805 assert(ExtraWidth < RoundWidth);
2806 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2807 "Store size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002808 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2809 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002810 SDValue Lo, Hi;
Duncan Sands40676662008-01-22 07:17:34 +00002811 unsigned IncrementSize;
2812
2813 if (TLI.isLittleEndian()) {
2814 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2815 // Store the bottom RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002816 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002817 SVOffset, RoundVT,
2818 isVolatile, Alignment);
2819
2820 // Store the remaining ExtraWidth bits.
2821 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002822 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands40676662008-01-22 07:17:34 +00002823 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002824 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands40676662008-01-22 07:17:34 +00002825 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002826 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002827 SVOffset + IncrementSize, ExtraVT, isVolatile,
2828 MinAlign(Alignment, IncrementSize));
2829 } else {
2830 // Big endian - avoid unaligned stores.
2831 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2832 // Store the top RoundWidth bits.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002833 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands40676662008-01-22 07:17:34 +00002834 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002835 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
2836 SVOffset, RoundVT, isVolatile, Alignment);
Duncan Sands40676662008-01-22 07:17:34 +00002837
2838 // Store the remaining ExtraWidth bits.
2839 IncrementSize = RoundWidth / 8;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002840 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands40676662008-01-22 07:17:34 +00002841 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002842 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands40676662008-01-22 07:17:34 +00002843 SVOffset + IncrementSize, ExtraVT, isVolatile,
2844 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002845 }
Duncan Sands40676662008-01-22 07:17:34 +00002846
2847 // The order of the stores doesn't matter.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002848 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Duncan Sands40676662008-01-22 07:17:34 +00002849 } else {
2850 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2851 Tmp2 != ST->getBasePtr())
2852 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2853 ST->getOffset());
2854
2855 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2856 default: assert(0 && "This action is not supported yet!");
2857 case TargetLowering::Legal:
2858 // If this is an unaligned store and the target doesn't support it,
2859 // expand it.
2860 if (!TLI.allowsUnalignedMemoryAccesses()) {
2861 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002862 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands40676662008-01-22 07:17:34 +00002863 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002864 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands40676662008-01-22 07:17:34 +00002865 TLI);
2866 }
2867 break;
2868 case TargetLowering::Custom:
2869 Result = TLI.LowerOperation(Result, DAG);
2870 break;
2871 case Expand:
2872 // TRUNCSTORE:i16 i32 -> STORE i16
2873 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002874 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
2875 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
2876 SVOffset, isVolatile, Alignment);
Duncan Sands40676662008-01-22 07:17:34 +00002877 break;
2878 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002879 }
2880 }
2881 break;
2882 }
2883 case ISD::PCMARKER:
2884 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2885 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
2886 break;
2887 case ISD::STACKSAVE:
2888 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2889 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2890 Tmp1 = Result.getValue(0);
2891 Tmp2 = Result.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00002892
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002893 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2894 default: assert(0 && "This action is not supported yet!");
2895 case TargetLowering::Legal: break;
2896 case TargetLowering::Custom:
2897 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002898 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002899 Tmp1 = LegalizeOp(Tmp3);
2900 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2901 }
2902 break;
2903 case TargetLowering::Expand:
Scott Michel91099d62009-02-17 22:15:04 +00002904 // Expand to CopyFromReg if the target set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002905 // StackPointerRegisterToSaveRestore.
2906 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesen564036c2009-02-04 00:13:36 +00002907 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), dl, SP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002908 Node->getValueType(0));
2909 Tmp2 = Tmp1.getValue(1);
2910 } else {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00002911 Tmp1 = DAG.getUNDEF(Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002912 Tmp2 = Node->getOperand(0);
2913 }
2914 break;
2915 }
2916
2917 // Since stacksave produce two values, make sure to remember that we
2918 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002919 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2920 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002921 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002922
2923 case ISD::STACKRESTORE:
2924 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2925 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2926 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00002927
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002928 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2929 default: assert(0 && "This action is not supported yet!");
2930 case TargetLowering::Legal: break;
2931 case TargetLowering::Custom:
2932 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002933 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002934 break;
2935 case TargetLowering::Expand:
Scott Michel91099d62009-02-17 22:15:04 +00002936 // Expand to CopyToReg if the target set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002937 // StackPointerRegisterToSaveRestore.
2938 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesen564036c2009-02-04 00:13:36 +00002939 Result = DAG.getCopyToReg(Tmp1, dl, SP, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002940 } else {
2941 Result = Tmp1;
2942 }
2943 break;
2944 }
2945 break;
2946
2947 case ISD::READCYCLECOUNTER:
2948 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
2949 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2950 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2951 Node->getValueType(0))) {
2952 default: assert(0 && "This action is not supported yet!");
2953 case TargetLowering::Legal:
2954 Tmp1 = Result.getValue(0);
2955 Tmp2 = Result.getValue(1);
2956 break;
2957 case TargetLowering::Custom:
2958 Result = TLI.LowerOperation(Result, DAG);
2959 Tmp1 = LegalizeOp(Result.getValue(0));
2960 Tmp2 = LegalizeOp(Result.getValue(1));
2961 break;
2962 }
2963
2964 // Since rdcc produce two values, make sure to remember that we legalized
2965 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002966 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2967 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002968 return Result;
2969
2970 case ISD::SELECT:
2971 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2972 case Expand: assert(0 && "It's impossible to expand bools");
2973 case Legal:
2974 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2975 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00002976 case Promote: {
Mon P Wang1448aad2008-10-30 08:01:45 +00002977 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002978 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
2979 // Make sure the condition is either zero or one.
Dan Gohman07961cd2008-02-25 21:11:39 +00002980 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002981 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman07961cd2008-02-25 21:11:39 +00002982 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00002983 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, MVT::i1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002984 break;
2985 }
Dan Gohman07961cd2008-02-25 21:11:39 +00002986 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002987 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
2988 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
2989
2990 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michel91099d62009-02-17 22:15:04 +00002991
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002992 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
2993 default: assert(0 && "This action is not supported yet!");
2994 case TargetLowering::Legal: break;
2995 case TargetLowering::Custom: {
2996 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002997 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002998 break;
2999 }
3000 case TargetLowering::Expand:
3001 if (Tmp1.getOpcode() == ISD::SETCC) {
Scott Michel91099d62009-02-17 22:15:04 +00003002 Result = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003003 Tmp2, Tmp3,
3004 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
3005 } else {
Scott Michel91099d62009-02-17 22:15:04 +00003006 Result = DAG.getSelectCC(dl, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003007 DAG.getConstant(0, Tmp1.getValueType()),
3008 Tmp2, Tmp3, ISD::SETNE);
3009 }
3010 break;
3011 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003012 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003013 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
3014 unsigned ExtOp, TruncOp;
Duncan Sands92c43912008-06-06 12:08:01 +00003015 if (Tmp2.getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003016 ExtOp = ISD::BIT_CONVERT;
3017 TruncOp = ISD::BIT_CONVERT;
Duncan Sands92c43912008-06-06 12:08:01 +00003018 } else if (Tmp2.getValueType().isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003019 ExtOp = ISD::ANY_EXTEND;
3020 TruncOp = ISD::TRUNCATE;
3021 } else {
3022 ExtOp = ISD::FP_EXTEND;
3023 TruncOp = ISD::FP_ROUND;
3024 }
3025 // Promote each of the values to the new type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003026 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Tmp2);
3027 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003028 // Perform the larger operation, then round down.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003029 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner5872a362008-01-17 07:00:52 +00003030 if (TruncOp != ISD::FP_ROUND)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003031 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result);
Chris Lattner5872a362008-01-17 07:00:52 +00003032 else
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003033 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result,
Chris Lattner5872a362008-01-17 07:00:52 +00003034 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003035 break;
3036 }
3037 }
3038 break;
3039 case ISD::SELECT_CC: {
3040 Tmp1 = Node->getOperand(0); // LHS
3041 Tmp2 = Node->getOperand(1); // RHS
3042 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
3043 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman8181bd12008-07-27 21:46:04 +00003044 SDValue CC = Node->getOperand(4);
Scott Michel91099d62009-02-17 22:15:04 +00003045
3046 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
Dale Johannesen352c47e2009-02-02 20:41:04 +00003047 Tmp1, Tmp2, CC, dl);
Scott Michel91099d62009-02-17 22:15:04 +00003048
Evan Cheng71343822008-10-15 02:05:31 +00003049 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003050 // the LHS is a legal SETCC itself. In this case, we need to compare
3051 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00003052 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003053 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3054 CC = DAG.getCondCode(ISD::SETNE);
3055 }
3056 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3057
3058 // Everything is legal, see if we should expand this op or something.
3059 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3060 default: assert(0 && "This action is not supported yet!");
3061 case TargetLowering::Legal: break;
3062 case TargetLowering::Custom:
3063 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003064 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003065 break;
3066 }
3067 break;
3068 }
3069 case ISD::SETCC:
3070 Tmp1 = Node->getOperand(0);
3071 Tmp2 = Node->getOperand(1);
3072 Tmp3 = Node->getOperand(2);
Dale Johannesen352c47e2009-02-02 20:41:04 +00003073 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Scott Michel91099d62009-02-17 22:15:04 +00003074
3075 // If we had to Expand the SetCC operands into a SELECT node, then it may
3076 // not always be possible to return a true LHS & RHS. In this case, just
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003077 // return the value we legalized, returned in the LHS
Gabor Greif1c80d112008-08-28 21:40:38 +00003078 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003079 Result = Tmp1;
3080 break;
3081 }
3082
3083 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
3084 default: assert(0 && "Cannot handle this action for SETCC yet!");
3085 case TargetLowering::Custom:
3086 isCustom = true;
3087 // FALLTHROUGH.
3088 case TargetLowering::Legal:
3089 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3090 if (isCustom) {
3091 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003092 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003093 }
3094 break;
3095 case TargetLowering::Promote: {
3096 // First step, figure out the appropriate operation to use.
3097 // Allow SETCC to not be supported for all legal data types
3098 // Mostly this targets FP
Duncan Sands92c43912008-06-06 12:08:01 +00003099 MVT NewInTy = Node->getOperand(0).getValueType();
3100 MVT OldVT = NewInTy; OldVT = OldVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003101
3102 // Scan for the appropriate larger type to use.
3103 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00003104 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003105
Duncan Sands92c43912008-06-06 12:08:01 +00003106 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003107 "Fell off of the edge of the integer world");
Duncan Sands92c43912008-06-06 12:08:01 +00003108 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003109 "Fell off of the edge of the floating point world");
Scott Michel91099d62009-02-17 22:15:04 +00003110
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003111 // If the target supports SETCC of this type, use it.
Dan Gohman52c51aa2009-01-28 17:46:25 +00003112 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003113 break;
3114 }
Duncan Sands92c43912008-06-06 12:08:01 +00003115 if (NewInTy.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003116 assert(0 && "Cannot promote Legal Integer SETCC yet");
3117 else {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003118 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
3119 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003120 }
3121 Tmp1 = LegalizeOp(Tmp1);
3122 Tmp2 = LegalizeOp(Tmp2);
3123 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3124 Result = LegalizeOp(Result);
3125 break;
3126 }
3127 case TargetLowering::Expand:
3128 // Expand a setcc node into a select_cc of the same condition, lhs, and
3129 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands92c43912008-06-06 12:08:01 +00003130 MVT VT = Node->getValueType(0);
Scott Michel91099d62009-02-17 22:15:04 +00003131 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003132 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
3133 Tmp3);
3134 break;
3135 }
3136 break;
Nate Begeman9a1ce152008-05-12 19:40:03 +00003137 case ISD::VSETCC: {
3138 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3139 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman8181bd12008-07-27 21:46:04 +00003140 SDValue CC = Node->getOperand(2);
Scott Michel91099d62009-02-17 22:15:04 +00003141
Nate Begeman9a1ce152008-05-12 19:40:03 +00003142 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3143
3144 // Everything is legal, see if we should expand this op or something.
3145 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3146 default: assert(0 && "This action is not supported yet!");
3147 case TargetLowering::Legal: break;
3148 case TargetLowering::Custom:
3149 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003150 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9a1ce152008-05-12 19:40:03 +00003151 break;
Mon P Wangec428ad2008-12-13 08:15:14 +00003152 case TargetLowering::Expand: {
3153 // Unroll into a nasty set of scalar code for now.
3154 MVT VT = Node->getValueType(0);
3155 unsigned NumElems = VT.getVectorNumElements();
3156 MVT EltVT = VT.getVectorElementType();
3157 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3158 SmallVector<SDValue, 8> Ops(NumElems);
3159 for (unsigned i = 0; i < NumElems; ++i) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003160 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT,
Mon P Wangec428ad2008-12-13 08:15:14 +00003161 Tmp1, DAG.getIntPtrConstant(i));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003162 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
3163 In1, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3164 TmpEltVT, Tmp2,
3165 DAG.getIntPtrConstant(i)),
Mon P Wang77bc9cd2008-12-17 08:49:47 +00003166 CC);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003167 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i], DAG.getConstant(
Duncan Sands505ba942009-02-01 18:06:53 +00003168 APInt::getAllOnesValue(EltVT.getSizeInBits()),
3169 EltVT), DAG.getConstant(0, EltVT));
Mon P Wangec428ad2008-12-13 08:15:14 +00003170 }
Evan Cheng907a2d22009-02-25 22:49:59 +00003171 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
Mon P Wangec428ad2008-12-13 08:15:14 +00003172 break;
3173 }
Nate Begeman9a1ce152008-05-12 19:40:03 +00003174 }
3175 break;
3176 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003177
3178 case ISD::SHL_PARTS:
3179 case ISD::SRA_PARTS:
3180 case ISD::SRL_PARTS: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003181 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003182 bool Changed = false;
Duncan Sands7d9e3612009-01-31 15:50:11 +00003183 unsigned N = Node->getNumOperands();
3184 for (unsigned i = 0; i + 1 < N; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003185 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3186 Changed |= Ops.back() != Node->getOperand(i);
3187 }
Duncan Sands7d9e3612009-01-31 15:50:11 +00003188 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3189 Changed |= Ops.back() != Node->getOperand(N-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003190 if (Changed)
3191 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
3192
3193 switch (TLI.getOperationAction(Node->getOpcode(),
3194 Node->getValueType(0))) {
3195 default: assert(0 && "This action is not supported yet!");
3196 case TargetLowering::Legal: break;
3197 case TargetLowering::Custom:
3198 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003199 if (Tmp1.getNode()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003200 SDValue Tmp2, RetVal(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003201 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
3202 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman8181bd12008-07-27 21:46:04 +00003203 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00003204 if (i == Op.getResNo())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003205 RetVal = Tmp2;
3206 }
Gabor Greif1c80d112008-08-28 21:40:38 +00003207 assert(RetVal.getNode() && "Illegal result number");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003208 return RetVal;
3209 }
3210 break;
3211 }
3212
3213 // Since these produce multiple values, make sure to remember that we
3214 // legalized all of them.
3215 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman8181bd12008-07-27 21:46:04 +00003216 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00003217 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003218 }
3219
3220 // Binary operators
3221 case ISD::ADD:
3222 case ISD::SUB:
3223 case ISD::MUL:
3224 case ISD::MULHS:
3225 case ISD::MULHU:
3226 case ISD::UDIV:
3227 case ISD::SDIV:
3228 case ISD::AND:
3229 case ISD::OR:
3230 case ISD::XOR:
3231 case ISD::SHL:
3232 case ISD::SRL:
3233 case ISD::SRA:
3234 case ISD::FADD:
3235 case ISD::FSUB:
3236 case ISD::FMUL:
3237 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00003238 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003239 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands7d9e3612009-01-31 15:50:11 +00003240 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begemanbb1ce942008-07-29 15:49:41 +00003241
3242 if ((Node->getOpcode() == ISD::SHL ||
3243 Node->getOpcode() == ISD::SRL ||
3244 Node->getOpcode() == ISD::SRA) &&
Duncan Sands7d9e3612009-01-31 15:50:11 +00003245 !Node->getValueType(0).isVector())
3246 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3247
3248 switch (getTypeAction(Tmp2.getValueType())) {
3249 case Expand: assert(0 && "Not possible");
3250 case Legal:
3251 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3252 break;
3253 case Promote:
3254 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3255 break;
Mon P Wangec428ad2008-12-13 08:15:14 +00003256 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00003257
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003258 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00003259
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003260 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3261 default: assert(0 && "BinOp legalize operation not supported");
3262 case TargetLowering::Legal: break;
3263 case TargetLowering::Custom:
3264 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003265 if (Tmp1.getNode()) {
Nate Begemanbb1ce942008-07-29 15:49:41 +00003266 Result = Tmp1;
3267 break;
Nate Begeman7569e762008-07-29 19:07:27 +00003268 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00003269 // Fall through if the custom lower can't deal with the operation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003270 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00003271 MVT VT = Op.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00003272
Dan Gohman5a199552007-10-08 18:33:35 +00003273 // See if multiply or divide can be lowered using two-result operations.
3274 SDVTList VTs = DAG.getVTList(VT, VT);
3275 if (Node->getOpcode() == ISD::MUL) {
3276 // We just need the low half of the multiply; try both the signed
3277 // and unsigned forms. If the target supports both SMUL_LOHI and
3278 // UMUL_LOHI, form a preference by checking which forms of plain
3279 // MULH it supports.
Dan Gohman52c51aa2009-01-28 17:46:25 +00003280 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3281 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3282 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3283 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman5a199552007-10-08 18:33:35 +00003284 unsigned OpToUse = 0;
3285 if (HasSMUL_LOHI && !HasMULHS) {
3286 OpToUse = ISD::SMUL_LOHI;
3287 } else if (HasUMUL_LOHI && !HasMULHU) {
3288 OpToUse = ISD::UMUL_LOHI;
3289 } else if (HasSMUL_LOHI) {
3290 OpToUse = ISD::SMUL_LOHI;
3291 } else if (HasUMUL_LOHI) {
3292 OpToUse = ISD::UMUL_LOHI;
3293 }
3294 if (OpToUse) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003295 Result = SDValue(DAG.getNode(OpToUse, dl, VTs, Tmp1, Tmp2).getNode(),
3296 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003297 break;
3298 }
3299 }
3300 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003301 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Scott Michel91099d62009-02-17 22:15:04 +00003302 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003303 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003304 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003305 break;
3306 }
Scott Michel91099d62009-02-17 22:15:04 +00003307 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003308 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003309 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl,
3310 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003311 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003312 break;
3313 }
3314 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003315 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michel91099d62009-02-17 22:15:04 +00003316 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003317 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003318 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003319 break;
3320 }
3321 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003322 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003323 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3324 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner48188652008-10-04 21:27:46 +00003325 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003326 break;
3327 }
Mon P Wang26342922008-12-18 20:03:17 +00003328
Dan Gohman6d05cac2007-10-11 23:57:53 +00003329 // Check to see if we have a libcall for this operator.
3330 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3331 bool isSigned = false;
3332 switch (Node->getOpcode()) {
3333 case ISD::UDIV:
3334 case ISD::SDIV:
3335 if (VT == MVT::i32) {
3336 LC = Node->getOpcode() == ISD::UDIV
Mon P Wang1448aad2008-10-30 08:01:45 +00003337 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003338 isSigned = Node->getOpcode() == ISD::SDIV;
3339 }
3340 break;
Chris Lattner48188652008-10-04 21:27:46 +00003341 case ISD::MUL:
3342 if (VT == MVT::i32)
3343 LC = RTLIB::MUL_I32;
sampoa0d77372009-01-24 22:12:48 +00003344 else if (VT == MVT::i64)
Scott Michel81215042008-12-29 03:21:37 +00003345 LC = RTLIB::MUL_I64;
Chris Lattner48188652008-10-04 21:27:46 +00003346 break;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003347 case ISD::FPOW:
Duncan Sands37a3f472008-01-10 10:28:30 +00003348 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3349 RTLIB::POW_PPCF128);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003350 break;
Scott Michel8c67fa42009-01-21 04:58:48 +00003351 case ISD::FDIV:
3352 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3353 RTLIB::DIV_PPCF128);
3354 break;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003355 default: break;
3356 }
3357 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003358 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003359 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003360 break;
3361 }
Scott Michel91099d62009-02-17 22:15:04 +00003362
Duncan Sands92c43912008-06-06 12:08:01 +00003363 assert(Node->getValueType(0).isVector() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003364 "Cannot expand this binary operator!");
3365 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman6d05cac2007-10-11 23:57:53 +00003366 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003367 break;
3368 }
3369 case TargetLowering::Promote: {
3370 switch (Node->getOpcode()) {
3371 default: assert(0 && "Do not know how to promote this BinOp!");
3372 case ISD::AND:
3373 case ISD::OR:
3374 case ISD::XOR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003375 MVT OVT = Node->getValueType(0);
3376 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3377 assert(OVT.isVector() && "Cannot promote this BinOp!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003378 // Bit convert each of the values to the new type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003379 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
3380 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
3381 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003382 // Bit convert the result back the original type.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003383 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003384 break;
3385 }
3386 }
3387 }
3388 }
3389 break;
Scott Michel91099d62009-02-17 22:15:04 +00003390
Dan Gohman475cd732007-10-05 14:17:22 +00003391 case ISD::SMUL_LOHI:
3392 case ISD::UMUL_LOHI:
3393 case ISD::SDIVREM:
3394 case ISD::UDIVREM:
3395 // These nodes will only be produced by target-specific lowering, so
3396 // they shouldn't be here if they aren't legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +00003397 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohman475cd732007-10-05 14:17:22 +00003398 "This must be legal!");
Dan Gohman5a199552007-10-08 18:33:35 +00003399
3400 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3401 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3402 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman475cd732007-10-05 14:17:22 +00003403 break;
3404
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003405 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3406 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3407 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3408 case Expand: assert(0 && "Not possible");
3409 case Legal:
3410 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3411 break;
3412 case Promote:
3413 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3414 break;
3415 }
Scott Michel91099d62009-02-17 22:15:04 +00003416
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003417 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00003418
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003419 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3420 default: assert(0 && "Operation not supported");
3421 case TargetLowering::Custom:
3422 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003423 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003424 break;
3425 case TargetLowering::Legal: break;
3426 case TargetLowering::Expand: {
3427 // If this target supports fabs/fneg natively and select is cheap,
3428 // do this efficiently.
3429 if (!TLI.isSelectExpensive() &&
3430 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3431 TargetLowering::Legal &&
3432 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
3433 TargetLowering::Legal) {
3434 // Get the sign bit of the RHS.
Duncan Sands92c43912008-06-06 12:08:01 +00003435 MVT IVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003436 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003437 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, IVT, Tmp2);
3438 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(IVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003439 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3440 // Get the absolute value of the result.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003441 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003442 // Select between the nabs and abs value based on the sign bit of
3443 // the input.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003444 Result = DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
Scott Michel91099d62009-02-17 22:15:04 +00003445 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003446 AbsVal),
3447 AbsVal);
3448 Result = LegalizeOp(Result);
3449 break;
3450 }
Scott Michel91099d62009-02-17 22:15:04 +00003451
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003452 // Otherwise, do bitwise ops!
Duncan Sands92c43912008-06-06 12:08:01 +00003453 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003454 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3455 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003456 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003457 Result = LegalizeOp(Result);
3458 break;
3459 }
3460 }
3461 break;
Scott Michel91099d62009-02-17 22:15:04 +00003462
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003463 case ISD::ADDC:
3464 case ISD::SUBC:
3465 Tmp1 = LegalizeOp(Node->getOperand(0));
3466 Tmp2 = LegalizeOp(Node->getOperand(1));
3467 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003468 Tmp3 = Result.getValue(0);
3469 Tmp4 = Result.getValue(1);
3470
3471 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3472 default: assert(0 && "This action is not supported yet!");
3473 case TargetLowering::Legal:
3474 break;
3475 case TargetLowering::Custom:
3476 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3477 if (Tmp1.getNode() != NULL) {
Sanjiv Guptad57f2e12008-11-27 05:58:04 +00003478 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003479 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3480 }
3481 break;
3482 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003483 // Since this produces two values, make sure to remember that we legalized
3484 // both of them.
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003485 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3486 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3487 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003488
3489 case ISD::ADDE:
3490 case ISD::SUBE:
3491 Tmp1 = LegalizeOp(Node->getOperand(0));
3492 Tmp2 = LegalizeOp(Node->getOperand(1));
3493 Tmp3 = LegalizeOp(Node->getOperand(2));
3494 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003495 Tmp3 = Result.getValue(0);
3496 Tmp4 = Result.getValue(1);
3497
3498 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3499 default: assert(0 && "This action is not supported yet!");
3500 case TargetLowering::Legal:
3501 break;
3502 case TargetLowering::Custom:
3503 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3504 if (Tmp1.getNode() != NULL) {
Sanjiv Guptad57f2e12008-11-27 05:58:04 +00003505 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003506 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3507 }
3508 break;
3509 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003510 // Since this produces two values, make sure to remember that we legalized
3511 // both of them.
Sanjiv Gupta7a61e7f2008-11-26 11:19:00 +00003512 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3513 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3514 return Op.getResNo() ? Tmp4 : Tmp3;
Scott Michel91099d62009-02-17 22:15:04 +00003515
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003516 case ISD::BUILD_PAIR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003517 MVT PairTy = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003518 // TODO: handle the case where the Lo and Hi operands are not of legal type
3519 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3520 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3521 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
3522 case TargetLowering::Promote:
3523 case TargetLowering::Custom:
3524 assert(0 && "Cannot promote/custom this yet!");
3525 case TargetLowering::Legal:
3526 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003527 Result = DAG.getNode(ISD::BUILD_PAIR, dl, PairTy, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003528 break;
3529 case TargetLowering::Expand:
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003530 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Tmp1);
3531 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Tmp2);
3532 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003533 DAG.getConstant(PairTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003534 TLI.getShiftAmountTy()));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003535 Result = DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003536 break;
3537 }
3538 break;
3539 }
3540
3541 case ISD::UREM:
3542 case ISD::SREM:
3543 case ISD::FREM:
3544 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3545 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3546
3547 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3548 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3549 case TargetLowering::Custom:
3550 isCustom = true;
3551 // FALLTHROUGH
3552 case TargetLowering::Legal:
3553 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3554 if (isCustom) {
3555 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003556 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003557 }
3558 break;
Dan Gohman5a199552007-10-08 18:33:35 +00003559 case TargetLowering::Expand: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003560 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
3561 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands92c43912008-06-06 12:08:01 +00003562 MVT VT = Node->getValueType(0);
Scott Michel91099d62009-02-17 22:15:04 +00003563
Dan Gohman5a199552007-10-08 18:33:35 +00003564 // See if remainder can be lowered using two-result operations.
3565 SDVTList VTs = DAG.getVTList(VT, VT);
3566 if (Node->getOpcode() == ISD::SREM &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003567 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michel91099d62009-02-17 22:15:04 +00003568 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003569 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003570 break;
3571 }
3572 if (Node->getOpcode() == ISD::UREM &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00003573 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003574 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3575 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003576 break;
3577 }
3578
Duncan Sands92c43912008-06-06 12:08:01 +00003579 if (VT.isInteger()) {
Dan Gohman5a199552007-10-08 18:33:35 +00003580 if (TLI.getOperationAction(DivOpc, VT) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003581 TargetLowering::Legal) {
3582 // X % Y -> X-X/Y*Y
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003583 Result = DAG.getNode(DivOpc, dl, VT, Tmp1, Tmp2);
3584 Result = DAG.getNode(ISD::MUL, dl, VT, Result, Tmp2);
3585 Result = DAG.getNode(ISD::SUB, dl, VT, Tmp1, Result);
Duncan Sands92c43912008-06-06 12:08:01 +00003586 } else if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003587 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003588 } else {
Dan Gohman5a199552007-10-08 18:33:35 +00003589 assert(VT == MVT::i32 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003590 "Cannot expand this binary operator!");
3591 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3592 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman8181bd12008-07-27 21:46:04 +00003593 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003594 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003595 }
Dan Gohman59b4b102007-11-06 22:11:54 +00003596 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00003597 assert(VT.isFloatingPoint() &&
Dan Gohman59b4b102007-11-06 22:11:54 +00003598 "remainder op must have integer or floating-point type");
Duncan Sands92c43912008-06-06 12:08:01 +00003599 if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003600 Result = LegalizeOp(UnrollVectorOp(Op));
3601 } else {
3602 // Floating point mod -> fmod libcall.
Duncan Sands37a3f472008-01-10 10:28:30 +00003603 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3604 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003605 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003606 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003607 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003608 }
3609 break;
3610 }
Dan Gohman5a199552007-10-08 18:33:35 +00003611 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003612 break;
3613 case ISD::VAARG: {
3614 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3615 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3616
Duncan Sands92c43912008-06-06 12:08:01 +00003617 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003618 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3619 default: assert(0 && "This action is not supported yet!");
3620 case TargetLowering::Custom:
3621 isCustom = true;
3622 // FALLTHROUGH
3623 case TargetLowering::Legal:
3624 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3625 Result = Result.getValue(0);
3626 Tmp1 = Result.getValue(1);
3627
3628 if (isCustom) {
3629 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003630 if (Tmp2.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003631 Result = LegalizeOp(Tmp2);
3632 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3633 }
3634 }
3635 break;
3636 case TargetLowering::Expand: {
Dan Gohman12a9c082008-02-06 22:27:42 +00003637 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003638 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003639 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003640 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sandsd68f13b2009-01-12 20:38:59 +00003641 DAG.getConstant(TLI.getTargetData()->
3642 getTypePaddedSize(VT.getTypeForMVT()),
3643 TLI.getPointerTy()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003644 // Store the incremented VAList to the legalized pointer
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003645 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003646 // Load the actual argument out of the pointer VAList
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003647 Result = DAG.getLoad(VT, dl, Tmp3, VAList, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003648 Tmp1 = LegalizeOp(Result.getValue(1));
3649 Result = LegalizeOp(Result);
3650 break;
3651 }
3652 }
Scott Michel91099d62009-02-17 22:15:04 +00003653 // Since VAARG produces two values, make sure to remember that we
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003654 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003655 AddLegalizedOperand(SDValue(Node, 0), Result);
3656 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00003657 return Op.getResNo() ? Tmp1 : Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003658 }
Scott Michel91099d62009-02-17 22:15:04 +00003659
3660 case ISD::VACOPY:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003661 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3662 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3663 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3664
3665 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3666 default: assert(0 && "This action is not supported yet!");
3667 case TargetLowering::Custom:
3668 isCustom = true;
3669 // FALLTHROUGH
3670 case TargetLowering::Legal:
3671 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3672 Node->getOperand(3), Node->getOperand(4));
3673 if (isCustom) {
3674 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003675 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003676 }
3677 break;
3678 case TargetLowering::Expand:
3679 // This defaults to loading a pointer from the input and storing it to the
3680 // output, returning the chain.
Dan Gohman12a9c082008-02-06 22:27:42 +00003681 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3682 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003683 Tmp4 = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp3, VS, 0);
3684 Result = DAG.getStore(Tmp4.getValue(1), dl, Tmp4, Tmp2, VD, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003685 break;
3686 }
3687 break;
3688
Scott Michel91099d62009-02-17 22:15:04 +00003689 case ISD::VAEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003690 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3691 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3692
3693 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3694 default: assert(0 && "This action is not supported yet!");
3695 case TargetLowering::Custom:
3696 isCustom = true;
3697 // FALLTHROUGH
3698 case TargetLowering::Legal:
3699 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3700 if (isCustom) {
3701 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003702 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003703 }
3704 break;
3705 case TargetLowering::Expand:
3706 Result = Tmp1; // Default to a no-op, return the chain
3707 break;
3708 }
3709 break;
Scott Michel91099d62009-02-17 22:15:04 +00003710
3711 case ISD::VASTART:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003712 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3713 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3714
3715 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michel91099d62009-02-17 22:15:04 +00003716
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003717 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3718 default: assert(0 && "This action is not supported yet!");
3719 case TargetLowering::Legal: break;
3720 case TargetLowering::Custom:
3721 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003722 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003723 break;
3724 }
3725 break;
Scott Michel91099d62009-02-17 22:15:04 +00003726
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003727 case ISD::ROTL:
3728 case ISD::ROTR:
3729 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands7d9e3612009-01-31 15:50:11 +00003730 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003731 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3732 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3733 default:
3734 assert(0 && "ROTL/ROTR legalize operation not supported");
3735 break;
3736 case TargetLowering::Legal:
3737 break;
3738 case TargetLowering::Custom:
3739 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003740 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003741 break;
3742 case TargetLowering::Promote:
3743 assert(0 && "Do not know how to promote ROTL/ROTR");
3744 break;
3745 case TargetLowering::Expand:
3746 assert(0 && "Do not know how to expand ROTL/ROTR");
3747 break;
3748 }
3749 break;
Scott Michel91099d62009-02-17 22:15:04 +00003750
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003751 case ISD::BSWAP:
3752 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3753 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3754 case TargetLowering::Custom:
3755 assert(0 && "Cannot custom legalize this yet!");
3756 case TargetLowering::Legal:
3757 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3758 break;
3759 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003760 MVT OVT = Tmp1.getValueType();
3761 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3762 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003763
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003764 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
3765 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3766 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003767 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3768 break;
3769 }
3770 case TargetLowering::Expand:
Dale Johannesen82b5b722009-02-02 22:12:50 +00003771 Result = ExpandBSWAP(Tmp1, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003772 break;
3773 }
3774 break;
Scott Michel91099d62009-02-17 22:15:04 +00003775
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003776 case ISD::CTPOP:
3777 case ISD::CTTZ:
3778 case ISD::CTLZ:
3779 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3780 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel48b63e62007-07-30 21:00:31 +00003781 case TargetLowering::Custom:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003782 case TargetLowering::Legal:
3783 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel48b63e62007-07-30 21:00:31 +00003784 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michelbc62b412007-08-02 02:22:46 +00003785 TargetLowering::Custom) {
3786 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003787 if (Tmp1.getNode()) {
Scott Michelbc62b412007-08-02 02:22:46 +00003788 Result = Tmp1;
3789 }
Scott Michel48b63e62007-07-30 21:00:31 +00003790 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003791 break;
3792 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003793 MVT OVT = Tmp1.getValueType();
3794 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003795
3796 // Zero extend the argument.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003797 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003798 // Perform the larger operation, then subtract if needed.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003799 Tmp1 = DAG.getNode(Node->getOpcode(), dl, Node->getValueType(0), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003800 switch (Node->getOpcode()) {
3801 case ISD::CTPOP:
3802 Result = Tmp1;
3803 break;
3804 case ISD::CTTZ:
3805 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003806 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
3807 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003808 ISD::SETEQ);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003809 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003810 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003811 break;
3812 case ISD::CTLZ:
3813 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003814 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00003815 DAG.getConstant(NVT.getSizeInBits() -
3816 OVT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003817 break;
3818 }
3819 break;
3820 }
3821 case TargetLowering::Expand:
Dale Johannesen82b5b722009-02-02 22:12:50 +00003822 Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003823 break;
3824 }
3825 break;
3826
3827 // Unary operators
3828 case ISD::FABS:
3829 case ISD::FNEG:
3830 case ISD::FSQRT:
3831 case ISD::FSIN:
3832 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003833 case ISD::FLOG:
3834 case ISD::FLOG2:
3835 case ISD::FLOG10:
3836 case ISD::FEXP:
3837 case ISD::FEXP2:
Dan Gohmanc8b20e22008-08-21 17:55:02 +00003838 case ISD::FTRUNC:
3839 case ISD::FFLOOR:
3840 case ISD::FCEIL:
3841 case ISD::FRINT:
3842 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003843 Tmp1 = LegalizeOp(Node->getOperand(0));
3844 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3845 case TargetLowering::Promote:
3846 case TargetLowering::Custom:
3847 isCustom = true;
3848 // FALLTHROUGH
3849 case TargetLowering::Legal:
3850 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3851 if (isCustom) {
3852 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003853 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003854 }
3855 break;
3856 case TargetLowering::Expand:
3857 switch (Node->getOpcode()) {
3858 default: assert(0 && "Unreachable!");
3859 case ISD::FNEG:
3860 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3861 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003862 Result = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp2, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003863 break;
3864 case ISD::FABS: {
3865 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands92c43912008-06-06 12:08:01 +00003866 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003867 Tmp2 = DAG.getConstantFP(0.0, VT);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003868 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00003869 Tmp1, Tmp2, ISD::SETUGT);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00003870 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3871 Result = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003872 break;
3873 }
Evan Cheng1fac6952008-09-09 23:35:53 +00003874 case ISD::FSQRT:
3875 case ISD::FSIN:
Scott Michel91099d62009-02-17 22:15:04 +00003876 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003877 case ISD::FLOG:
3878 case ISD::FLOG2:
3879 case ISD::FLOG10:
3880 case ISD::FEXP:
3881 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00003882 case ISD::FTRUNC:
3883 case ISD::FFLOOR:
3884 case ISD::FCEIL:
3885 case ISD::FRINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00003886 case ISD::FNEARBYINT: {
Duncan Sands92c43912008-06-06 12:08:01 +00003887 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003888
3889 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003890 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003891 Result = LegalizeOp(UnrollVectorOp(Op));
3892 break;
3893 }
3894
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003895 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3896 switch(Node->getOpcode()) {
3897 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00003898 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3899 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003900 break;
3901 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00003902 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3903 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003904 break;
3905 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00003906 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3907 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003908 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00003909 case ISD::FLOG:
3910 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3911 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3912 break;
3913 case ISD::FLOG2:
3914 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3915 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3916 break;
3917 case ISD::FLOG10:
3918 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3919 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3920 break;
3921 case ISD::FEXP:
3922 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3923 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3924 break;
3925 case ISD::FEXP2:
3926 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3927 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3928 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00003929 case ISD::FTRUNC:
3930 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3931 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3932 break;
3933 case ISD::FFLOOR:
3934 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3935 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3936 break;
3937 case ISD::FCEIL:
3938 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3939 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3940 break;
3941 case ISD::FRINT:
3942 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3943 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3944 break;
3945 case ISD::FNEARBYINT:
3946 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3947 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3948 break;
Evan Cheng1fac6952008-09-09 23:35:53 +00003949 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003950 default: assert(0 && "Unreachable!");
3951 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003952 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003953 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003954 break;
3955 }
3956 }
3957 break;
3958 }
3959 break;
3960 case ISD::FPOWI: {
Duncan Sands92c43912008-06-06 12:08:01 +00003961 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003962
3963 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003964 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003965 Result = LegalizeOp(UnrollVectorOp(Op));
3966 break;
3967 }
3968
3969 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands37a3f472008-01-10 10:28:30 +00003970 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3971 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003972 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003973 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003974 break;
3975 }
3976 case ISD::BIT_CONVERT:
3977 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003978 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00003979 Node->getValueType(0), dl);
Duncan Sands92c43912008-06-06 12:08:01 +00003980 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003981 // The input has to be a vector type, we have to either scalarize it, pack
3982 // it, or convert it based on whether the input vector type is legal.
Gabor Greif1c80d112008-08-28 21:40:38 +00003983 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00003984 int InIx = Node->getOperand(0).getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00003985 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3986 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michel91099d62009-02-17 22:15:04 +00003987
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003988 // Figure out if there is a simple type corresponding to this Vector
3989 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00003990 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003991 if (TLI.isTypeLegal(TVT)) {
3992 // Turn this into a bit convert of the vector input.
Scott Michel91099d62009-02-17 22:15:04 +00003993 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003994 LegalizeOp(Node->getOperand(0)));
3995 break;
3996 } else if (NumElems == 1) {
3997 // Turn this into a bit convert of the scalar input.
Scott Michel91099d62009-02-17 22:15:04 +00003998 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003999 ScalarizeVectorOp(Node->getOperand(0)));
4000 break;
4001 } else {
4002 // FIXME: UNIMP! Store then reload
4003 assert(0 && "Cast from unsupported vector type not implemented yet!");
4004 }
4005 } else {
4006 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
4007 Node->getOperand(0).getValueType())) {
4008 default: assert(0 && "Unknown operation action!");
4009 case TargetLowering::Expand:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004010 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00004011 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004012 break;
4013 case TargetLowering::Legal:
4014 Tmp1 = LegalizeOp(Node->getOperand(0));
4015 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4016 break;
4017 }
4018 }
4019 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004020 case ISD::CONVERT_RNDSAT: {
4021 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4022 switch (CvtCode) {
4023 default: assert(0 && "Unknown cvt code!");
4024 case ISD::CVT_SF:
4025 case ISD::CVT_UF:
Mon P Wang73d31542008-11-10 20:54:11 +00004026 case ISD::CVT_FF:
Mon P Wang2fc3f9e2008-12-09 07:27:39 +00004027 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004028 case ISD::CVT_FS:
4029 case ISD::CVT_FU:
4030 case ISD::CVT_SS:
4031 case ISD::CVT_SU:
4032 case ISD::CVT_US:
4033 case ISD::CVT_UU: {
4034 SDValue DTyOp = Node->getOperand(1);
4035 SDValue STyOp = Node->getOperand(2);
4036 SDValue RndOp = Node->getOperand(3);
4037 SDValue SatOp = Node->getOperand(4);
4038 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4039 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4040 case Legal:
4041 Tmp1 = LegalizeOp(Node->getOperand(0));
4042 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
4043 RndOp, SatOp);
4044 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4045 TargetLowering::Custom) {
4046 Tmp1 = TLI.LowerOperation(Result, DAG);
4047 if (Tmp1.getNode()) Result = Tmp1;
4048 }
4049 break;
4050 case Promote:
4051 Result = PromoteOp(Node->getOperand(0));
4052 // For FP, make Op1 a i32
Scott Michel91099d62009-02-17 22:15:04 +00004053
Dale Johannesen564036c2009-02-04 00:13:36 +00004054 Result = DAG.getConvertRndSat(Op.getValueType(), dl, Result,
Mon P Wang73d31542008-11-10 20:54:11 +00004055 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4056 break;
4057 }
4058 break;
4059 }
4060 } // end switch CvtCode
4061 break;
4062 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004063 // Conversion operators. The source and destination have different types.
4064 case ISD::SINT_TO_FP:
4065 case ISD::UINT_TO_FP: {
4066 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman29c3cef2008-08-14 20:04:46 +00004067 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesen9972b632009-02-02 19:03:57 +00004068 Node->getValueType(0), Node->getOperand(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004069 break;
4070 }
4071 case ISD::TRUNCATE:
4072 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4073 case Legal:
4074 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michele9b8a402008-12-02 19:55:08 +00004075 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4076 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4077 case TargetLowering::Custom:
Mon P Wang72fe5462008-12-11 00:44:22 +00004078 isCustom = true;
4079 // FALLTHROUGH
Scott Michele9b8a402008-12-02 19:55:08 +00004080 case TargetLowering::Legal:
Mon P Wang72fe5462008-12-11 00:44:22 +00004081 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4082 if (isCustom) {
4083 Tmp1 = TLI.LowerOperation(Result, DAG);
4084 if (Tmp1.getNode()) Result = Tmp1;
4085 }
4086 break;
Mon P Wang83edba52008-12-12 01:25:51 +00004087 case TargetLowering::Expand:
4088 assert(Result.getValueType().isVector() && "must be vector type");
4089 // Unroll the truncate. We should do better.
4090 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerbfc55ee2008-12-02 12:12:25 +00004091 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004092 break;
4093 case Expand:
4094 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4095
4096 // Since the result is legal, we should just be able to truncate the low
4097 // part of the source.
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004098 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004099 break;
4100 case Promote:
4101 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004102 Result = DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004103 break;
4104 }
4105 break;
4106
4107 case ISD::FP_TO_SINT:
4108 case ISD::FP_TO_UINT:
4109 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4110 case Legal:
4111 Tmp1 = LegalizeOp(Node->getOperand(0));
4112
4113 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4114 default: assert(0 && "Unknown operation action!");
4115 case TargetLowering::Custom:
4116 isCustom = true;
4117 // FALLTHROUGH
4118 case TargetLowering::Legal:
4119 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4120 if (isCustom) {
4121 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004122 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004123 }
4124 break;
4125 case TargetLowering::Promote:
4126 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Scott Michel91099d62009-02-17 22:15:04 +00004127 Node->getOpcode() == ISD::FP_TO_SINT,
Dale Johannesen9972b632009-02-02 19:03:57 +00004128 dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004129 break;
4130 case TargetLowering::Expand:
4131 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004132 SDValue True, False;
Duncan Sands92c43912008-06-06 12:08:01 +00004133 MVT VT = Node->getOperand(0).getValueType();
4134 MVT NVT = Node->getValueType(0);
Dale Johannesen958b08b2007-09-19 23:55:34 +00004135 const uint64_t zero[] = {0, 0};
Duncan Sands92c43912008-06-06 12:08:01 +00004136 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4137 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohman88ae8c52008-02-29 01:44:25 +00004138 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen958b08b2007-09-19 23:55:34 +00004139 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel91099d62009-02-17 22:15:04 +00004140 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
Dale Johannesen9972b632009-02-02 19:03:57 +00004141 Node->getOperand(0),
Duncan Sands4a361272009-01-01 15:52:00 +00004142 Tmp2, ISD::SETLT);
Dale Johannesen9972b632009-02-02 19:03:57 +00004143 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4144 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
Scott Michel91099d62009-02-17 22:15:04 +00004145 DAG.getNode(ISD::FSUB, dl, VT,
Dale Johannesen9972b632009-02-02 19:03:57 +00004146 Node->getOperand(0), Tmp2));
4147 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohman88ae8c52008-02-29 01:44:25 +00004148 DAG.getConstant(x, NVT));
Dale Johannesen9972b632009-02-02 19:03:57 +00004149 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004150 break;
4151 } else {
4152 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4153 }
4154 break;
4155 }
4156 break;
4157 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00004158 MVT VT = Op.getValueType();
4159 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesend3b6af32007-10-11 23:32:15 +00004160 // Convert ppcf128 to i32
Dale Johannesen3d8578b2007-10-10 01:01:31 +00004161 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner5872a362008-01-17 07:00:52 +00004162 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Scott Michel91099d62009-02-17 22:15:04 +00004163 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner5872a362008-01-17 07:00:52 +00004164 Node->getOperand(0), DAG.getValueType(MVT::f64));
Scott Michel91099d62009-02-17 22:15:04 +00004165 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner5872a362008-01-17 07:00:52 +00004166 DAG.getIntPtrConstant(1));
Dale Johannesen9972b632009-02-02 19:03:57 +00004167 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner5872a362008-01-17 07:00:52 +00004168 } else {
Dale Johannesend3b6af32007-10-11 23:32:15 +00004169 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4170 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4171 Tmp2 = DAG.getConstantFP(apf, OVT);
4172 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4173 // FIXME: generated code sucks.
Scott Michel91099d62009-02-17 22:15:04 +00004174 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
Dale Johannesen9972b632009-02-02 19:03:57 +00004175 Tmp2,
4176 DAG.getNode(ISD::ADD, dl, MVT::i32,
4177 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4178 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesend3b6af32007-10-11 23:32:15 +00004179 Node->getOperand(0), Tmp2)),
4180 DAG.getConstant(0x80000000, MVT::i32)),
Scott Michel91099d62009-02-17 22:15:04 +00004181 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesend3b6af32007-10-11 23:32:15 +00004182 Node->getOperand(0)),
4183 DAG.getCondCode(ISD::SETGE));
4184 }
Dale Johannesen3d8578b2007-10-10 01:01:31 +00004185 break;
4186 }
Dan Gohmanec51f642008-03-10 23:03:31 +00004187 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsf68dffb2008-07-17 02:36:29 +00004188 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4189 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4190 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman8181bd12008-07-27 21:46:04 +00004191 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00004192 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004193 break;
4194 }
4195 case Promote:
4196 Tmp1 = PromoteOp(Node->getOperand(0));
4197 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4198 Result = LegalizeOp(Result);
4199 break;
4200 }
4201 break;
4202
Chris Lattner56ecde32008-01-16 06:57:07 +00004203 case ISD::FP_EXTEND: {
Duncan Sands92c43912008-06-06 12:08:01 +00004204 MVT DstVT = Op.getValueType();
4205 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00004206 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4207 // The only other way we can lower this is to turn it into a STORE,
4208 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen82b5b722009-02-02 22:12:50 +00004209 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl);
Chris Lattner5872a362008-01-17 07:00:52 +00004210 break;
Chris Lattner56ecde32008-01-16 06:57:07 +00004211 }
4212 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4213 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4214 case Legal:
4215 Tmp1 = LegalizeOp(Node->getOperand(0));
4216 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4217 break;
4218 case Promote:
4219 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004220 Result = DAG.getNode(ISD::FP_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattner56ecde32008-01-16 06:57:07 +00004221 break;
4222 }
4223 break;
Chris Lattner5872a362008-01-17 07:00:52 +00004224 }
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00004225 case ISD::FP_ROUND: {
Duncan Sands92c43912008-06-06 12:08:01 +00004226 MVT DstVT = Op.getValueType();
4227 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00004228 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4229 if (SrcVT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004230 SDValue Lo;
Dale Johannesena0d36082008-01-20 01:18:38 +00004231 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner5872a362008-01-17 07:00:52 +00004232 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesena0d36082008-01-20 01:18:38 +00004233 if (DstVT!=MVT::f64)
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004234 Result = DAG.getNode(ISD::FP_ROUND, dl,
4235 DstVT, Result, Op.getOperand(1));
Chris Lattner5872a362008-01-17 07:00:52 +00004236 break;
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00004237 }
Chris Lattner5872a362008-01-17 07:00:52 +00004238 // The only other way we can lower this is to turn it into a STORE,
4239 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen82b5b722009-02-02 22:12:50 +00004240 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl);
Chris Lattner5872a362008-01-17 07:00:52 +00004241 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004242 }
Chris Lattner56ecde32008-01-16 06:57:07 +00004243 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4244 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4245 case Legal:
4246 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner5872a362008-01-17 07:00:52 +00004247 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00004248 break;
4249 case Promote:
4250 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004251 Result = DAG.getNode(ISD::FP_ROUND, dl, Op.getValueType(), Tmp1,
Chris Lattner5872a362008-01-17 07:00:52 +00004252 Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00004253 break;
4254 }
4255 break;
Chris Lattner5872a362008-01-17 07:00:52 +00004256 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004257 case ISD::ANY_EXTEND:
4258 case ISD::ZERO_EXTEND:
4259 case ISD::SIGN_EXTEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004260 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4261 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4262 case Legal:
4263 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michelac54d002008-04-30 00:26:38 +00004264 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michelac7091c2008-02-15 23:05:48 +00004265 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4266 TargetLowering::Custom) {
Scott Michelac54d002008-04-30 00:26:38 +00004267 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004268 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelac7091c2008-02-15 23:05:48 +00004269 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004270 break;
4271 case Promote:
4272 switch (Node->getOpcode()) {
4273 case ISD::ANY_EXTEND:
4274 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004275 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004276 break;
4277 case ISD::ZERO_EXTEND:
4278 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004279 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4280 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004281 Node->getOperand(0).getValueType());
4282 break;
4283 case ISD::SIGN_EXTEND:
4284 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004285 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4286 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004287 Result,
4288 DAG.getValueType(Node->getOperand(0).getValueType()));
4289 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004290 }
4291 }
4292 break;
4293 case ISD::FP_ROUND_INREG:
4294 case ISD::SIGN_EXTEND_INREG: {
4295 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004296 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004297
4298 // If this operation is not supported, convert it to a shl/shr or load/store
4299 // pair.
4300 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4301 default: assert(0 && "This action not supported for this op yet!");
4302 case TargetLowering::Legal:
4303 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
4304 break;
4305 case TargetLowering::Expand:
4306 // If this is an integer extend and shifts are supported, do that.
4307 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
4308 // NOTE: we could fall back on load/store here too for targets without
4309 // SAR. However, it is doubtful that any exist.
Duncan Sands92c43912008-06-06 12:08:01 +00004310 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4311 ExtraVT.getSizeInBits();
Dan Gohman8181bd12008-07-27 21:46:04 +00004312 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004313 Result = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004314 Node->getOperand(0), ShiftCst);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004315 Result = DAG.getNode(ISD::SRA, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004316 Result, ShiftCst);
4317 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
4318 // The only way we can lower this is to turn it into a TRUNCSTORE,
4319 // EXTLOAD pair, targetting a temporary location (a stack slot).
4320
4321 // NOTE: there is a choice here between constantly creating new stack
4322 // slots and always reusing the same one. We currently always create
4323 // new ones, as reuse may inhibit scheduling.
Scott Michel91099d62009-02-17 22:15:04 +00004324 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00004325 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004326 } else {
4327 assert(0 && "Unknown op");
4328 }
4329 break;
4330 }
4331 break;
4332 }
Duncan Sands38947cd2007-07-27 12:58:54 +00004333 case ISD::TRAMPOLINE: {
Dan Gohman8181bd12008-07-27 21:46:04 +00004334 SDValue Ops[6];
Duncan Sands38947cd2007-07-27 12:58:54 +00004335 for (unsigned i = 0; i != 6; ++i)
4336 Ops[i] = LegalizeOp(Node->getOperand(i));
4337 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4338 // The only option for this node is to custom lower it.
4339 Result = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004340 assert(Result.getNode() && "Should always custom lower!");
Duncan Sands7407a9f2007-09-11 14:10:23 +00004341
4342 // Since trampoline produces two values, make sure to remember that we
4343 // legalized both of them.
4344 Tmp1 = LegalizeOp(Result.getValue(1));
4345 Result = LegalizeOp(Result);
Dan Gohman8181bd12008-07-27 21:46:04 +00004346 AddLegalizedOperand(SDValue(Node, 0), Result);
4347 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00004348 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands38947cd2007-07-27 12:58:54 +00004349 }
Dan Gohmane8e4a412008-05-14 00:43:10 +00004350 case ISD::FLT_ROUNDS_: {
Duncan Sands92c43912008-06-06 12:08:01 +00004351 MVT VT = Node->getValueType(0);
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004352 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4353 default: assert(0 && "This action not supported for this op yet!");
4354 case TargetLowering::Custom:
4355 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004356 if (Result.getNode()) break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004357 // Fall Thru
4358 case TargetLowering::Legal:
4359 // If this operation is not supported, lower it to constant 1
4360 Result = DAG.getConstant(1, VT);
4361 break;
4362 }
Dan Gohmane09dc8c2008-05-12 16:07:15 +00004363 break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00004364 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00004365 case ISD::TRAP: {
Duncan Sands92c43912008-06-06 12:08:01 +00004366 MVT VT = Node->getValueType(0);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004367 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4368 default: assert(0 && "This action not supported for this op yet!");
Chris Lattnere99bbb72008-01-15 21:58:08 +00004369 case TargetLowering::Legal:
4370 Tmp1 = LegalizeOp(Node->getOperand(0));
4371 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4372 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004373 case TargetLowering::Custom:
4374 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004375 if (Result.getNode()) break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004376 // Fall Thru
Chris Lattnere99bbb72008-01-15 21:58:08 +00004377 case TargetLowering::Expand:
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004378 // If this operation is not supported, lower it to 'abort()' call
Chris Lattnere99bbb72008-01-15 21:58:08 +00004379 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004380 TargetLowering::ArgListTy Args;
Dan Gohman8181bd12008-07-27 21:46:04 +00004381 std::pair<SDValue,SDValue> CallResult =
Duncan Sandsead972e2008-02-14 17:28:50 +00004382 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen67cc9b62008-09-26 19:31:26 +00004383 false, false, false, false, CallingConv::C, false,
Bill Wendlingfef06052008-09-16 21:48:12 +00004384 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesenca6237b2009-01-30 23:10:59 +00004385 Args, DAG, dl);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004386 Result = CallResult.second;
4387 break;
4388 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00004389 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00004390 }
Bill Wendling913dcf32008-11-22 00:22:52 +00004391
Bill Wendling7e04be62008-12-09 22:08:41 +00004392 case ISD::SADDO:
4393 case ISD::SSUBO: {
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004394 MVT VT = Node->getValueType(0);
4395 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4396 default: assert(0 && "This action not supported for this op yet!");
4397 case TargetLowering::Custom:
4398 Result = TLI.LowerOperation(Op, DAG);
4399 if (Result.getNode()) break;
4400 // FALLTHROUGH
4401 case TargetLowering::Legal: {
4402 SDValue LHS = LegalizeOp(Node->getOperand(0));
4403 SDValue RHS = LegalizeOp(Node->getOperand(1));
4404
Scott Michel91099d62009-02-17 22:15:04 +00004405 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004406 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling7e04be62008-12-09 22:08:41 +00004407 LHS, RHS);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004408 MVT OType = Node->getValueType(1);
4409
Bill Wendlingc65e6e42008-11-25 08:19:22 +00004410 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004411
Bill Wendlingcf4de122008-11-25 19:40:17 +00004412 // LHSSign -> LHS >= 0
4413 // RHSSign -> RHS >= 0
4414 // SumSign -> Sum >= 0
4415 //
Bill Wendling7e04be62008-12-09 22:08:41 +00004416 // Add:
Bill Wendlingcf4de122008-11-25 19:40:17 +00004417 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling7e04be62008-12-09 22:08:41 +00004418 // Sub:
4419 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendlingcf4de122008-11-25 19:40:17 +00004420 //
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004421 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
4422 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
Scott Michel91099d62009-02-17 22:15:04 +00004423 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
4424 Node->getOpcode() == ISD::SADDO ?
Bill Wendling7e04be62008-12-09 22:08:41 +00004425 ISD::SETEQ : ISD::SETNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004426
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004427 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
4428 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004429
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004430 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004431
4432 MVT ValueVTs[] = { LHS.getValueType(), OType };
4433 SDValue Ops[] = { Sum, Cmp };
4434
Scott Michel91099d62009-02-17 22:15:04 +00004435 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004436 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sands42d7bb82008-12-01 11:41:29 +00004437 &Ops[0], 2);
Bill Wendling6c4e3e02008-11-25 08:12:19 +00004438 SDNode *RNode = Result.getNode();
4439 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4440 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4441 break;
4442 }
4443 }
4444
4445 break;
4446 }
Bill Wendling7e04be62008-12-09 22:08:41 +00004447 case ISD::UADDO:
4448 case ISD::USUBO: {
Bill Wendling4c134df2008-11-24 19:21:46 +00004449 MVT VT = Node->getValueType(0);
4450 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4451 default: assert(0 && "This action not supported for this op yet!");
4452 case TargetLowering::Custom:
4453 Result = TLI.LowerOperation(Op, DAG);
4454 if (Result.getNode()) break;
4455 // FALLTHROUGH
4456 case TargetLowering::Legal: {
4457 SDValue LHS = LegalizeOp(Node->getOperand(0));
4458 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling913dcf32008-11-22 00:22:52 +00004459
Bill Wendling7e04be62008-12-09 22:08:41 +00004460 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004461 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling7e04be62008-12-09 22:08:41 +00004462 LHS, RHS);
Bill Wendling4c134df2008-11-24 19:21:46 +00004463 MVT OType = Node->getValueType(1);
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004464 SDValue Cmp = DAG.getSetCC(dl, OType, Sum, LHS,
Scott Michel91099d62009-02-17 22:15:04 +00004465 Node->getOpcode () == ISD::UADDO ?
Bill Wendling7e04be62008-12-09 22:08:41 +00004466 ISD::SETULT : ISD::SETUGT);
Bill Wendling913dcf32008-11-22 00:22:52 +00004467
Bill Wendling4c134df2008-11-24 19:21:46 +00004468 MVT ValueVTs[] = { LHS.getValueType(), OType };
4469 SDValue Ops[] = { Sum, Cmp };
Bill Wendling913dcf32008-11-22 00:22:52 +00004470
Scott Michel91099d62009-02-17 22:15:04 +00004471 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenbbf56a22009-02-02 23:46:53 +00004472 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sands42d7bb82008-12-01 11:41:29 +00004473 &Ops[0], 2);
Bill Wendling4c134df2008-11-24 19:21:46 +00004474 SDNode *RNode = Result.getNode();
4475 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4476 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4477 break;
4478 }
4479 }
4480
Bill Wendling913dcf32008-11-22 00:22:52 +00004481 break;
4482 }
Bill Wendling7e04be62008-12-09 22:08:41 +00004483 case ISD::SMULO:
4484 case ISD::UMULO: {
4485 MVT VT = Node->getValueType(0);
4486 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4487 default: assert(0 && "This action is not supported at all!");
4488 case TargetLowering::Custom:
4489 Result = TLI.LowerOperation(Op, DAG);
4490 if (Result.getNode()) break;
4491 // Fall Thru
4492 case TargetLowering::Legal:
4493 // FIXME: According to Hacker's Delight, this can be implemented in
4494 // target independent lowering, but it would be inefficient, since it
Bill Wendling35f1a9d2008-12-10 02:01:32 +00004495 // requires a division + a branch.
Scott Michel91099d62009-02-17 22:15:04 +00004496 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
Bill Wendling7e04be62008-12-09 22:08:41 +00004497 break;
4498 }
4499 break;
4500 }
4501
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004502 }
Scott Michel91099d62009-02-17 22:15:04 +00004503
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004504 assert(Result.getValueType() == Op.getValueType() &&
4505 "Bad legalization!");
Scott Michel91099d62009-02-17 22:15:04 +00004506
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004507 // Make sure that the generated code is itself legal.
4508 if (Result != Op)
4509 Result = LegalizeOp(Result);
4510
4511 // Note that LegalizeOp may be reentered even from single-use nodes, which
4512 // means that we always must cache transformed nodes.
4513 AddLegalizedOperand(Op, Result);
4514 return Result;
4515}
4516
4517/// PromoteOp - Given an operation that produces a value in an invalid type,
4518/// promote it to compute the value into a larger type. The produced value will
4519/// have the correct bits for the low portion of the register, but no guarantee
4520/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +00004521SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00004522 MVT VT = Op.getValueType();
4523 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004524 assert(getTypeAction(VT) == Promote &&
4525 "Caller should expand or legalize operands that are not promotable!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004526 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004527 "Cannot promote to smaller type!");
4528
Dan Gohman8181bd12008-07-27 21:46:04 +00004529 SDValue Tmp1, Tmp2, Tmp3;
4530 SDValue Result;
Gabor Greif1c80d112008-08-28 21:40:38 +00004531 SDNode *Node = Op.getNode();
Dale Johannesen82b5b722009-02-02 22:12:50 +00004532 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004533
Dan Gohman8181bd12008-07-27 21:46:04 +00004534 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004535 if (I != PromotedNodes.end()) return I->second;
4536
4537 switch (Node->getOpcode()) {
4538 case ISD::CopyFromReg:
4539 assert(0 && "CopyFromReg must be legal!");
4540 default:
4541#ifndef NDEBUG
4542 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
4543#endif
4544 assert(0 && "Do not know how to promote this operator!");
4545 abort();
4546 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004547 Result = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004548 break;
4549 case ISD::Constant:
4550 if (VT != MVT::i1)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004551 Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004552 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00004553 Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004554 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4555 break;
4556 case ISD::ConstantFP:
Dale Johannesen82b5b722009-02-02 22:12:50 +00004557 Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004558 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4559 break;
4560
Duncan Sands4a361272009-01-01 15:52:00 +00004561 case ISD::SETCC: {
4562 MVT VT0 = Node->getOperand(0).getValueType();
4563 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004564 && "SetCC type is not legal??");
Dale Johannesen82b5b722009-02-02 22:12:50 +00004565 Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0),
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004566 Node->getOperand(0), Node->getOperand(1),
4567 Node->getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004568 break;
Duncan Sands4a361272009-01-01 15:52:00 +00004569 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004570 case ISD::TRUNCATE:
4571 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4572 case Legal:
4573 Result = LegalizeOp(Node->getOperand(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00004574 assert(Result.getValueType().bitsGE(NVT) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004575 "This truncation doesn't make sense!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004576 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dale Johannesen82b5b722009-02-02 22:12:50 +00004577 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004578 break;
4579 case Promote:
4580 // The truncation is not required, because we don't guarantee anything
4581 // about high bits anyway.
4582 Result = PromoteOp(Node->getOperand(0));
4583 break;
4584 case Expand:
4585 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4586 // Truncate the low part of the expanded value to the result type
Dale Johannesen82b5b722009-02-02 22:12:50 +00004587 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004588 }
4589 break;
4590 case ISD::SIGN_EXTEND:
4591 case ISD::ZERO_EXTEND:
4592 case ISD::ANY_EXTEND:
4593 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4594 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4595 case Legal:
4596 // Input is legal? Just do extend all the way to the larger type.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004597 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004598 break;
4599 case Promote:
4600 // Promote the reg if it's smaller.
4601 Result = PromoteOp(Node->getOperand(0));
4602 // The high bits are not guaranteed to be anything. Insert an extend.
4603 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004604 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004605 DAG.getValueType(Node->getOperand(0).getValueType()));
4606 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004607 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004608 Node->getOperand(0).getValueType());
4609 break;
4610 }
4611 break;
Mon P Wang73d31542008-11-10 20:54:11 +00004612 case ISD::CONVERT_RNDSAT: {
4613 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4614 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4615 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4616 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4617 "can only promote integers");
Dale Johannesen564036c2009-02-04 00:13:36 +00004618 Result = DAG.getConvertRndSat(NVT, dl, Node->getOperand(0),
Mon P Wang73d31542008-11-10 20:54:11 +00004619 Node->getOperand(1), Node->getOperand(2),
4620 Node->getOperand(3), Node->getOperand(4),
4621 CvtCode);
4622 break;
4623
4624 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004625 case ISD::BIT_CONVERT:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004626 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00004627 Node->getValueType(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004628 Result = PromoteOp(Result);
4629 break;
Scott Michel91099d62009-02-17 22:15:04 +00004630
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004631 case ISD::FP_EXTEND:
4632 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4633 case ISD::FP_ROUND:
4634 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4635 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4636 case Promote: assert(0 && "Unreachable with 2 FP types!");
4637 case Legal:
Chris Lattner5872a362008-01-17 07:00:52 +00004638 if (Node->getConstantOperandVal(1) == 0) {
4639 // Input is legal? Do an FP_ROUND_INREG.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004640 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0),
Chris Lattner5872a362008-01-17 07:00:52 +00004641 DAG.getValueType(VT));
4642 } else {
4643 // Just remove the truncate, it isn't affecting the value.
Scott Michel91099d62009-02-17 22:15:04 +00004644 Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0),
Chris Lattner5872a362008-01-17 07:00:52 +00004645 Node->getOperand(1));
4646 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004647 break;
4648 }
4649 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004650 case ISD::SINT_TO_FP:
4651 case ISD::UINT_TO_FP:
4652 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4653 case Legal:
4654 // No extra round required here.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004655 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004656 break;
4657
4658 case Promote:
4659 Result = PromoteOp(Node->getOperand(0));
4660 if (Node->getOpcode() == ISD::SINT_TO_FP)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004661 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004662 Result,
4663 DAG.getValueType(Node->getOperand(0).getValueType()));
4664 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00004665 Result = DAG.getZeroExtendInReg(Result, dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004666 Node->getOperand(0).getValueType());
4667 // No extra round required here.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004668 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004669 break;
4670 case Expand:
4671 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00004672 Node->getOperand(0), dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004673 // Round if we cannot tolerate excess precision.
4674 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004675 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004676 DAG.getValueType(VT));
4677 break;
4678 }
4679 break;
4680
4681 case ISD::SIGN_EXTEND_INREG:
4682 Result = PromoteOp(Node->getOperand(0));
Scott Michel91099d62009-02-17 22:15:04 +00004683 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004684 Node->getOperand(1));
4685 break;
4686 case ISD::FP_TO_SINT:
4687 case ISD::FP_TO_UINT:
4688 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4689 case Legal:
4690 case Expand:
4691 Tmp1 = Node->getOperand(0);
4692 break;
4693 case Promote:
4694 // The input result is prerounded, so we don't have to do anything
4695 // special.
4696 Tmp1 = PromoteOp(Node->getOperand(0));
4697 break;
4698 }
4699 // If we're promoting a UINT to a larger size, check to see if the new node
4700 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4701 // we can use that instead. This allows us to generate better code for
4702 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4703 // legal, such as PowerPC.
Scott Michel91099d62009-02-17 22:15:04 +00004704 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00004705 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4706 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004707 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Dale Johannesen82b5b722009-02-02 22:12:50 +00004708 Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004709 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00004710 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004711 }
4712 break;
4713
4714 case ISD::FABS:
4715 case ISD::FNEG:
4716 Tmp1 = PromoteOp(Node->getOperand(0));
4717 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004718 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004719 // NOTE: we do not have to do any extra rounding here for
4720 // NoExcessFPPrecision, because we know the input will have the appropriate
4721 // precision, and these operations don't modify precision at all.
4722 break;
4723
Dale Johannesen92b33082008-09-04 00:47:13 +00004724 case ISD::FLOG:
4725 case ISD::FLOG2:
4726 case ISD::FLOG10:
4727 case ISD::FEXP:
4728 case ISD::FEXP2:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004729 case ISD::FSQRT:
4730 case ISD::FSIN:
4731 case ISD::FCOS:
Dan Gohmanb2158232008-08-21 18:38:14 +00004732 case ISD::FTRUNC:
4733 case ISD::FFLOOR:
4734 case ISD::FCEIL:
4735 case ISD::FRINT:
4736 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004737 Tmp1 = PromoteOp(Node->getOperand(0));
4738 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004739 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004740 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004741 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004742 DAG.getValueType(VT));
4743 break;
4744
Evan Cheng1fac6952008-09-09 23:35:53 +00004745 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004746 case ISD::FPOWI: {
Evan Cheng1fac6952008-09-09 23:35:53 +00004747 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004748 // directly as well, which may be better.
4749 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng1fac6952008-09-09 23:35:53 +00004750 Tmp2 = Node->getOperand(1);
4751 if (Node->getOpcode() == ISD::FPOW)
4752 Tmp2 = PromoteOp(Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004753 assert(Tmp1.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004754 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004755 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004756 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004757 DAG.getValueType(VT));
4758 break;
4759 }
Scott Michel91099d62009-02-17 22:15:04 +00004760
Dan Gohmanbebba8d2008-12-23 21:37:04 +00004761 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004762 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004763 Tmp2 = PromoteOp(Node->getOperand(2));
4764 Tmp3 = PromoteOp(Node->getOperand(3));
Scott Michel91099d62009-02-17 22:15:04 +00004765 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
4766 AtomNode->getChain(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004767 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004768 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004769 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004770 // Remember that we legalized the chain.
4771 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4772 break;
4773 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00004774 case ISD::ATOMIC_LOAD_ADD:
4775 case ISD::ATOMIC_LOAD_SUB:
4776 case ISD::ATOMIC_LOAD_AND:
4777 case ISD::ATOMIC_LOAD_OR:
4778 case ISD::ATOMIC_LOAD_XOR:
4779 case ISD::ATOMIC_LOAD_NAND:
4780 case ISD::ATOMIC_LOAD_MIN:
4781 case ISD::ATOMIC_LOAD_MAX:
4782 case ISD::ATOMIC_LOAD_UMIN:
4783 case ISD::ATOMIC_LOAD_UMAX:
4784 case ISD::ATOMIC_SWAP: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004785 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004786 Tmp2 = PromoteOp(Node->getOperand(2));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004787 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Scott Michel91099d62009-02-17 22:15:04 +00004788 AtomNode->getChain(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004789 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004790 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004791 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004792 // Remember that we legalized the chain.
4793 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4794 break;
4795 }
4796
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004797 case ISD::AND:
4798 case ISD::OR:
4799 case ISD::XOR:
4800 case ISD::ADD:
4801 case ISD::SUB:
4802 case ISD::MUL:
4803 // The input may have strange things in the top bits of the registers, but
4804 // these operations don't care. They may have weird bits going out, but
4805 // that too is okay if they are integer operations.
4806 Tmp1 = PromoteOp(Node->getOperand(0));
4807 Tmp2 = PromoteOp(Node->getOperand(1));
4808 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004809 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004810 break;
4811 case ISD::FADD:
4812 case ISD::FSUB:
4813 case ISD::FMUL:
4814 Tmp1 = PromoteOp(Node->getOperand(0));
4815 Tmp2 = PromoteOp(Node->getOperand(1));
4816 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004817 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00004818
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004819 // Floating point operations will give excess precision that we may not be
4820 // able to tolerate. If we DO allow excess precision, just leave it,
4821 // otherwise excise it.
4822 // FIXME: Why would we need to round FP ops more than integer ones?
4823 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
4824 if (NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004825 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004826 DAG.getValueType(VT));
4827 break;
4828
4829 case ISD::SDIV:
4830 case ISD::SREM:
4831 // These operators require that their input be sign extended.
4832 Tmp1 = PromoteOp(Node->getOperand(0));
4833 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004834 if (NVT.isInteger()) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00004835 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004836 DAG.getValueType(VT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004837 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004838 DAG.getValueType(VT));
4839 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00004840 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004841
4842 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands92c43912008-06-06 12:08:01 +00004843 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004844 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004845 DAG.getValueType(VT));
4846 break;
4847 case ISD::FDIV:
4848 case ISD::FREM:
4849 case ISD::FCOPYSIGN:
4850 // These operators require that their input be fp extended.
4851 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004852 case Expand: assert(0 && "not implemented");
4853 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4854 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004855 }
4856 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004857 case Expand: assert(0 && "not implemented");
4858 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4859 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004860 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00004861 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michel91099d62009-02-17 22:15:04 +00004862
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004863 // Perform FP_ROUND: this is probably overly pessimistic.
4864 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004865 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004866 DAG.getValueType(VT));
4867 break;
4868
4869 case ISD::UDIV:
4870 case ISD::UREM:
4871 // These operators require that their input be zero extended.
4872 Tmp1 = PromoteOp(Node->getOperand(0));
4873 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004874 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dale Johannesen82b5b722009-02-02 22:12:50 +00004875 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4876 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
4877 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004878 break;
4879
4880 case ISD::SHL:
4881 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004882 Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004883 break;
4884 case ISD::SRA:
4885 // The input value must be properly sign extended.
4886 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004887 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004888 DAG.getValueType(VT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004889 Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004890 break;
4891 case ISD::SRL:
4892 // The input value must be properly zero extended.
4893 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen82b5b722009-02-02 22:12:50 +00004894 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4895 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004896 break;
4897
4898 case ISD::VAARG:
4899 Tmp1 = Node->getOperand(0); // Get the chain.
4900 Tmp2 = Node->getOperand(1); // Get the pointer.
4901 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
Dale Johannesen564036c2009-02-04 00:13:36 +00004902 Tmp3 = DAG.getVAArg(VT, dl, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sandsac496a12008-07-04 11:47:58 +00004903 Result = TLI.LowerOperation(Tmp3, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004904 } else {
Dan Gohman12a9c082008-02-06 22:27:42 +00004905 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesen564036c2009-02-04 00:13:36 +00004906 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004907 // Increment the pointer, VAList, to the next vaarg
Scott Michel91099d62009-02-17 22:15:04 +00004908 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sands92c43912008-06-06 12:08:01 +00004909 DAG.getConstant(VT.getSizeInBits()/8,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004910 TLI.getPointerTy()));
4911 // Store the incremented VAList to the legalized pointer
Dale Johannesen82b5b722009-02-02 22:12:50 +00004912 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004913 // Load the actual argument out of the pointer VAList
Dale Johannesen82b5b722009-02-02 22:12:50 +00004914 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004915 }
4916 // Remember that we legalized the chain.
4917 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4918 break;
4919
4920 case ISD::LOAD: {
4921 LoadSDNode *LD = cast<LoadSDNode>(Node);
4922 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4923 ? ISD::EXTLOAD : LD->getExtensionType();
Dale Johannesen82b5b722009-02-02 22:12:50 +00004924 Result = DAG.getExtLoad(ExtType, dl, NVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004925 LD->getChain(), LD->getBasePtr(),
4926 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004927 LD->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004928 LD->isVolatile(),
4929 LD->getAlignment());
4930 // Remember that we legalized the chain.
4931 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4932 break;
4933 }
Scott Michel67224b22008-06-02 22:18:03 +00004934 case ISD::SELECT: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004935 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4936 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel67224b22008-06-02 22:18:03 +00004937
Duncan Sands92c43912008-06-06 12:08:01 +00004938 MVT VT2 = Tmp2.getValueType();
Scott Michel67224b22008-06-02 22:18:03 +00004939 assert(VT2 == Tmp3.getValueType()
Scott Michel7b54de02008-06-03 19:13:20 +00004940 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4941 // Ensure that the resulting node is at least the same size as the operands'
4942 // value types, because we cannot assume that TLI.getSetCCValueType() is
4943 // constant.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004944 Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004945 break;
Scott Michel67224b22008-06-02 22:18:03 +00004946 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004947 case ISD::SELECT_CC:
4948 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4949 Tmp3 = PromoteOp(Node->getOperand(3)); // False
Dale Johannesen82b5b722009-02-02 22:12:50 +00004950 Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004951 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
4952 break;
4953 case ISD::BSWAP:
4954 Tmp1 = Node->getOperand(0);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004955 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
4956 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4957 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004958 DAG.getConstant(NVT.getSizeInBits() -
4959 VT.getSizeInBits(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004960 TLI.getShiftAmountTy()));
4961 break;
4962 case ISD::CTPOP:
4963 case ISD::CTTZ:
4964 case ISD::CTLZ:
4965 // Zero extend the argument
Dale Johannesen82b5b722009-02-02 22:12:50 +00004966 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004967 // Perform the larger operation, then subtract if needed.
Dale Johannesen82b5b722009-02-02 22:12:50 +00004968 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004969 switch(Node->getOpcode()) {
4970 case ISD::CTPOP:
4971 Result = Tmp1;
4972 break;
4973 case ISD::CTTZ:
4974 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesen82b5b722009-02-02 22:12:50 +00004975 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004976 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004977 ISD::SETEQ);
Dale Johannesen82b5b722009-02-02 22:12:50 +00004978 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00004979 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004980 break;
4981 case ISD::CTLZ:
4982 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00004983 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004984 DAG.getConstant(NVT.getSizeInBits() -
4985 VT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004986 break;
4987 }
4988 break;
4989 case ISD::EXTRACT_SUBVECTOR:
4990 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
4991 break;
4992 case ISD::EXTRACT_VECTOR_ELT:
4993 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4994 break;
4995 }
4996
Gabor Greif1c80d112008-08-28 21:40:38 +00004997 assert(Result.getNode() && "Didn't set a result!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004998
4999 // Make sure the result is itself legal.
5000 Result = LegalizeOp(Result);
Scott Michel91099d62009-02-17 22:15:04 +00005001
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005002 // Remember that we promoted this!
5003 AddPromotedOperand(Op, Result);
5004 return Result;
5005}
5006
5007/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
5008/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
5009/// based on the vector type. The return type of this matches the element type
5010/// of the vector, which may not be legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00005011SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005012 // We know that operand #0 is the Vec vector. If the index is a constant
5013 // or if the invec is a supported hardware type, we can use it. Otherwise,
5014 // lower to a store then an indexed load.
Dan Gohman8181bd12008-07-27 21:46:04 +00005015 SDValue Vec = Op.getOperand(0);
5016 SDValue Idx = Op.getOperand(1);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005017 DebugLoc dl = Op.getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00005018
Duncan Sands92c43912008-06-06 12:08:01 +00005019 MVT TVT = Vec.getValueType();
5020 unsigned NumElems = TVT.getVectorNumElements();
Scott Michel91099d62009-02-17 22:15:04 +00005021
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005022 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
5023 default: assert(0 && "This action is not supported yet!");
5024 case TargetLowering::Custom: {
5025 Vec = LegalizeOp(Vec);
5026 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005027 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005028 if (Tmp3.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005029 return Tmp3;
5030 break;
5031 }
5032 case TargetLowering::Legal:
5033 if (isTypeLegal(TVT)) {
5034 Vec = LegalizeOp(Vec);
5035 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lambcc021a02007-07-26 03:33:13 +00005036 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005037 }
5038 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00005039 case TargetLowering::Promote:
5040 assert(TVT.isVector() && "not vector type");
5041 // fall thru to expand since vectors are by default are promote
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005042 case TargetLowering::Expand:
5043 break;
5044 }
5045
5046 if (NumElems == 1) {
5047 // This must be an access of the only element. Return it.
5048 Op = ScalarizeVectorOp(Vec);
5049 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman2b10fde2008-01-29 02:24:00 +00005050 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005051 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005052 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005053 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005054 if (CIdx->getZExtValue() < NumLoElts) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005055 Vec = Lo;
5056 } else {
5057 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005058 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005059 Idx.getValueType());
5060 }
Scott Michel91099d62009-02-17 22:15:04 +00005061
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005062 // It's now an extract from the appropriate high or low part. Recurse.
5063 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
5064 Op = ExpandEXTRACT_VECTOR_ELT(Op);
5065 } else {
5066 // Store the value to a temporary stack slot, then LOAD the scalar
5067 // element back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00005068 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dale Johannesen352c47e2009-02-02 20:41:04 +00005069 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005070
5071 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +00005072 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dale Johannesen352c47e2009-02-02 20:41:04 +00005073 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005074 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005075
Duncan Sandsec142ee2008-06-08 20:54:56 +00005076 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Dale Johannesen352c47e2009-02-02 20:41:04 +00005077 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005078 else
Dale Johannesen352c47e2009-02-02 20:41:04 +00005079 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00005080
Dale Johannesen352c47e2009-02-02 20:41:04 +00005081 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005082
Dale Johannesen352c47e2009-02-02 20:41:04 +00005083 Op = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005084 }
5085 return Op;
5086}
5087
5088/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
5089/// we assume the operation can be split if it is not already legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00005090SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005091 // We know that operand #0 is the Vec vector. For now we assume the index
5092 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman8181bd12008-07-27 21:46:04 +00005093 SDValue Vec = Op.getOperand(0);
5094 SDValue Idx = LegalizeOp(Op.getOperand(1));
Scott Michel91099d62009-02-17 22:15:04 +00005095
Duncan Sands92c43912008-06-06 12:08:01 +00005096 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Scott Michel91099d62009-02-17 22:15:04 +00005097
Duncan Sands92c43912008-06-06 12:08:01 +00005098 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005099 // This must be an access of the desired vector length. Return it.
5100 return Vec;
5101 }
5102
5103 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00005104 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005105 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005106 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005107 Vec = Lo;
5108 } else {
5109 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005110 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5111 Idx.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005112 }
Scott Michel91099d62009-02-17 22:15:04 +00005113
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005114 // It's now an extract from the appropriate high or low part. Recurse.
5115 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
5116 return ExpandEXTRACT_SUBVECTOR(Op);
5117}
5118
5119/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5120/// with condition CC on the current target. This usually involves legalizing
5121/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5122/// there may be no choice but to create a new SetCC node to represent the
5123/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman8181bd12008-07-27 21:46:04 +00005124/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5125void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5126 SDValue &RHS,
Dale Johannesen352c47e2009-02-02 20:41:04 +00005127 SDValue &CC,
5128 DebugLoc dl) {
Scott Michel91099d62009-02-17 22:15:04 +00005129 SDValue Tmp1, Tmp2, Tmp3, Result;
5130
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005131 switch (getTypeAction(LHS.getValueType())) {
5132 case Legal:
5133 Tmp1 = LegalizeOp(LHS); // LHS
5134 Tmp2 = LegalizeOp(RHS); // RHS
5135 break;
5136 case Promote:
5137 Tmp1 = PromoteOp(LHS); // LHS
5138 Tmp2 = PromoteOp(RHS); // RHS
5139
5140 // If this is an FP compare, the operands have already been extended.
Duncan Sands92c43912008-06-06 12:08:01 +00005141 if (LHS.getValueType().isInteger()) {
5142 MVT VT = LHS.getValueType();
5143 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005144
5145 // Otherwise, we have to insert explicit sign or zero extends. Note
5146 // that we could insert sign extends for ALL conditions, but zero extend
5147 // is cheaper on many machines (an AND instead of two shifts), so prefer
5148 // it.
5149 switch (cast<CondCodeSDNode>(CC)->get()) {
5150 default: assert(0 && "Unknown integer comparison!");
5151 case ISD::SETEQ:
5152 case ISD::SETNE:
5153 case ISD::SETUGE:
5154 case ISD::SETUGT:
5155 case ISD::SETULE:
5156 case ISD::SETULT:
5157 // ALL of these operations will work if we either sign or zero extend
5158 // the operands (including the unsigned comparisons!). Zero extend is
5159 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005160 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5161 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005162 break;
5163 case ISD::SETGE:
5164 case ISD::SETGT:
5165 case ISD::SETLT:
5166 case ISD::SETLE:
Dale Johannesen352c47e2009-02-02 20:41:04 +00005167 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005168 DAG.getValueType(VT));
Dale Johannesen352c47e2009-02-02 20:41:04 +00005169 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005170 DAG.getValueType(VT));
Evan Chengd901b662008-10-13 18:46:18 +00005171 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5172 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005173 break;
5174 }
5175 }
5176 break;
5177 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00005178 MVT VT = LHS.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005179 if (VT == MVT::f32 || VT == MVT::f64) {
5180 // Expand into one or more soft-fp libcall(s).
Evan Cheng24108632008-07-01 21:35:46 +00005181 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005182 switch (cast<CondCodeSDNode>(CC)->get()) {
5183 case ISD::SETEQ:
5184 case ISD::SETOEQ:
5185 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
5186 break;
5187 case ISD::SETNE:
5188 case ISD::SETUNE:
5189 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
5190 break;
5191 case ISD::SETGE:
5192 case ISD::SETOGE:
5193 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
5194 break;
5195 case ISD::SETLT:
5196 case ISD::SETOLT:
5197 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5198 break;
5199 case ISD::SETLE:
5200 case ISD::SETOLE:
5201 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
5202 break;
5203 case ISD::SETGT:
5204 case ISD::SETOGT:
5205 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
5206 break;
5207 case ISD::SETUO:
5208 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5209 break;
5210 case ISD::SETO:
5211 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
5212 break;
5213 default:
5214 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5215 switch (cast<CondCodeSDNode>(CC)->get()) {
5216 case ISD::SETONE:
5217 // SETONE = SETOLT | SETOGT
5218 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5219 // Fallthrough
5220 case ISD::SETUGT:
5221 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
5222 break;
5223 case ISD::SETUGE:
5224 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
5225 break;
5226 case ISD::SETULT:
5227 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
5228 break;
5229 case ISD::SETULE:
5230 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
5231 break;
5232 case ISD::SETUEQ:
5233 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
5234 break;
5235 default: assert(0 && "Unsupported FP setcc!");
5236 }
5237 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00005238
Dan Gohman8181bd12008-07-27 21:46:04 +00005239 SDValue Dummy;
5240 SDValue Ops[2] = { LHS, RHS };
Dale Johannesen352c47e2009-02-02 20:41:04 +00005241 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005242 false /*sign irrelevant*/, Dummy);
5243 Tmp2 = DAG.getConstant(0, MVT::i32);
5244 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
5245 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesen352c47e2009-02-02 20:41:04 +00005246 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005247 TLI.getSetCCResultType(Tmp1.getValueType()),
5248 Tmp1, Tmp2, CC);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005249 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005250 false /*sign irrelevant*/, Dummy);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005251 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005252 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5253 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesen352c47e2009-02-02 20:41:04 +00005254 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman8181bd12008-07-27 21:46:04 +00005255 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005256 }
Evan Cheng18a1ab12008-07-07 07:18:09 +00005257 LHS = LegalizeOp(Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005258 RHS = Tmp2;
5259 return;
5260 }
5261
Dan Gohman8181bd12008-07-27 21:46:04 +00005262 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005263 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen472d15d2007-10-06 01:24:11 +00005264 ExpandOp(RHS, RHSLo, RHSHi);
5265 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5266
5267 if (VT==MVT::ppcf128) {
5268 // FIXME: This generated code sucks. We want to generate
Dale Johannesen26317b62008-09-12 00:30:56 +00005269 // FCMPU crN, hi1, hi2
Dale Johannesen472d15d2007-10-06 01:24:11 +00005270 // BNE crN, L:
Dale Johannesen26317b62008-09-12 00:30:56 +00005271 // FCMPU crN, lo1, lo2
Dale Johannesen472d15d2007-10-06 01:24:11 +00005272 // The following can be improved, but not that much.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005273 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005274 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005275 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005276 LHSLo, RHSLo, CCCode);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005277 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5278 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005279 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005280 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005281 LHSHi, RHSHi, CCCode);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005282 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5283 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman8181bd12008-07-27 21:46:04 +00005284 Tmp2 = SDValue();
Dale Johannesen472d15d2007-10-06 01:24:11 +00005285 break;
5286 }
5287
5288 switch (CCCode) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005289 case ISD::SETEQ:
5290 case ISD::SETNE:
5291 if (RHSLo == RHSHi)
5292 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5293 if (RHSCST->isAllOnesValue()) {
5294 // Comparison to -1.
Dale Johannesen352c47e2009-02-02 20:41:04 +00005295 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005296 Tmp2 = RHSLo;
5297 break;
5298 }
5299
Dale Johannesen352c47e2009-02-02 20:41:04 +00005300 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5301 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5302 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005303 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5304 break;
5305 default:
5306 // If this is a comparison of the sign bit, just look at the top part.
5307 // X > -1, x < 0
5308 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
Scott Michel91099d62009-02-17 22:15:04 +00005309 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman9d24dc72008-03-13 22:13:53 +00005310 CST->isNullValue()) || // X < 0
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005311 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5312 CST->isAllOnesValue())) { // X > -1
5313 Tmp1 = LHSHi;
5314 Tmp2 = RHSHi;
5315 break;
5316 }
5317
5318 // FIXME: This generated code sucks.
5319 ISD::CondCode LowCC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005320 switch (CCCode) {
5321 default: assert(0 && "Unknown integer setcc!");
5322 case ISD::SETLT:
5323 case ISD::SETULT: LowCC = ISD::SETULT; break;
5324 case ISD::SETGT:
5325 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5326 case ISD::SETLE:
5327 case ISD::SETULE: LowCC = ISD::SETULE; break;
5328 case ISD::SETGE:
5329 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5330 }
5331
5332 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5333 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5334 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5335
5336 // NOTE: on targets without efficient SELECT of bools, we can always use
5337 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
5338 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands4a361272009-01-01 15:52:00 +00005339 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
Dale Johannesen38496eb2009-02-03 00:47:48 +00005340 LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00005341 if (!Tmp1.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005342 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005343 LHSLo, RHSLo, LowCC);
5344 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
Dale Johannesen38496eb2009-02-03 00:47:48 +00005345 LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00005346 if (!Tmp2.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005347 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands4a361272009-01-01 15:52:00 +00005348 TLI.getSetCCResultType(LHSHi.getValueType()),
5349 LHSHi, RHSHi,CC);
Scott Michel91099d62009-02-17 22:15:04 +00005350
Gabor Greif1c80d112008-08-28 21:40:38 +00005351 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5352 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman9d24dc72008-03-13 22:13:53 +00005353 if ((Tmp1C && Tmp1C->isNullValue()) ||
5354 (Tmp2C && Tmp2C->isNullValue() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005355 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5356 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman9d24dc72008-03-13 22:13:53 +00005357 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005358 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5359 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5360 // low part is known false, returns high part.
5361 // For LE / GE, if high part is known false, ignore the low part.
5362 // For LT / GT, if high part is known true, ignore the low part.
5363 Tmp1 = Tmp2;
Dan Gohman8181bd12008-07-27 21:46:04 +00005364 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005365 } else {
Duncan Sands4a361272009-01-01 15:52:00 +00005366 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5367 LHSHi, RHSHi, ISD::SETEQ, false,
Dale Johannesen38496eb2009-02-03 00:47:48 +00005368 DagCombineInfo, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00005369 if (!Result.getNode())
Dale Johannesen352c47e2009-02-02 20:41:04 +00005370 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00005371 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesen352c47e2009-02-02 20:41:04 +00005372 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005373 Result, Tmp1, Tmp2));
5374 Tmp1 = Result;
Dan Gohman8181bd12008-07-27 21:46:04 +00005375 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005376 }
5377 }
5378 }
5379 }
5380 LHS = Tmp1;
5381 RHS = Tmp2;
5382}
5383
Evan Cheng71343822008-10-15 02:05:31 +00005384/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5385/// condition code CC on the current target. This routine assumes LHS and rHS
5386/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5387/// illegal condition code into AND / OR of multiple SETCC values.
5388void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5389 SDValue &LHS, SDValue &RHS,
Dale Johannesen352c47e2009-02-02 20:41:04 +00005390 SDValue &CC,
5391 DebugLoc dl) {
Evan Cheng71343822008-10-15 02:05:31 +00005392 MVT OpVT = LHS.getValueType();
5393 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5394 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5395 default: assert(0 && "Unknown condition code action!");
5396 case TargetLowering::Legal:
5397 // Nothing to do.
5398 break;
5399 case TargetLowering::Expand: {
5400 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5401 unsigned Opc = 0;
5402 switch (CCCode) {
5403 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohman2b5b9ca2008-10-21 03:12:54 +00005404 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5405 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5406 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5407 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5408 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5409 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5410 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5411 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5412 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5413 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5414 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5415 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng71343822008-10-15 02:05:31 +00005416 // FIXME: Implement more expansions.
5417 }
5418
Dale Johannesen352c47e2009-02-02 20:41:04 +00005419 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5420 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5421 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng71343822008-10-15 02:05:31 +00005422 RHS = SDValue();
5423 CC = SDValue();
5424 break;
5425 }
5426 }
5427}
5428
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005429/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5430/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5431/// a load from the stack slot to DestVT, extending it if needed.
5432/// The resultant code need not be legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00005433SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5434 MVT SlotVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005435 MVT DestVT,
5436 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005437 // Create the stack frame object.
Mon P Wang55854cc2008-07-05 20:40:31 +00005438 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
5439 SrcOp.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00005440 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michel91099d62009-02-17 22:15:04 +00005441
Dan Gohman20e37962008-02-11 18:58:42 +00005442 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00005443 int SPFI = StackPtrFI->getIndex();
Dan Gohman8a8251a2009-01-29 21:02:43 +00005444 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5445
Duncan Sands92c43912008-06-06 12:08:01 +00005446 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5447 unsigned SlotSize = SlotVT.getSizeInBits();
5448 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang55854cc2008-07-05 20:40:31 +00005449 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
5450 DestVT.getTypeForMVT());
Scott Michel91099d62009-02-17 22:15:04 +00005451
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005452 // Emit a store to the stack slot. Use a truncstore if the input value is
5453 // later than DestVT.
Dan Gohman8181bd12008-07-27 21:46:04 +00005454 SDValue Store;
Scott Michel91099d62009-02-17 22:15:04 +00005455
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005456 if (SrcSize > SlotSize)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005457 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman8a8251a2009-01-29 21:02:43 +00005458 SV, 0, SlotVT, false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005459 else {
5460 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen82b5b722009-02-02 22:12:50 +00005461 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman8a8251a2009-01-29 21:02:43 +00005462 SV, 0, false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005463 }
Scott Michel91099d62009-02-17 22:15:04 +00005464
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005465 // Result is a load from the stack slot.
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005466 if (SlotSize == DestSize)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005467 return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign);
Scott Michel91099d62009-02-17 22:15:04 +00005468
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00005469 assert(SlotSize < DestSize && "Unknown extension!");
Dale Johannesen82b5b722009-02-02 22:12:50 +00005470 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang55854cc2008-07-05 20:40:31 +00005471 false, DestAlign);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005472}
5473
Dan Gohman8181bd12008-07-27 21:46:04 +00005474SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005475 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005476 // Create a vector sized/aligned stack slot, store the value to element #0,
5477 // then load the whole vector back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00005478 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman12a9c082008-02-06 22:27:42 +00005479
Dan Gohman20e37962008-02-11 18:58:42 +00005480 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00005481 int SPFI = StackPtrFI->getIndex();
5482
Scott Michel91099d62009-02-17 22:15:04 +00005483 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00005484 StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005485 PseudoSourceValue::getFixedStack(SPFI), 0);
Dale Johannesen82b5b722009-02-02 22:12:50 +00005486 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005487 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005488}
5489
5490
5491/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
5492/// support the operation, but do support the resultant vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00005493SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Scott Michel91099d62009-02-17 22:15:04 +00005494
5495 // If the only non-undef value is the low element, turn this into a
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005496 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
5497 unsigned NumElems = Node->getNumOperands();
5498 bool isOnlyLowElement = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00005499 SDValue SplatValue = Node->getOperand(0);
Dale Johannesen82b5b722009-02-02 22:12:50 +00005500 DebugLoc dl = Node->getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00005501
Dan Gohman8181bd12008-07-27 21:46:04 +00005502 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerd8cee732008-03-09 00:29:42 +00005503 // and use a bitmask instead of a list of elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00005504 std::map<SDValue, std::vector<unsigned> > Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005505 Values[SplatValue].push_back(0);
5506 bool isConstant = true;
5507 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5508 SplatValue.getOpcode() != ISD::UNDEF)
5509 isConstant = false;
Scott Michel91099d62009-02-17 22:15:04 +00005510
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005511 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005512 SDValue V = Node->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005513 Values[V].push_back(i);
5514 if (V.getOpcode() != ISD::UNDEF)
5515 isOnlyLowElement = false;
5516 if (SplatValue != V)
Dan Gohman8181bd12008-07-27 21:46:04 +00005517 SplatValue = SDValue(0,0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005518
5519 // If this isn't a constant element or an undef, we can't use a constant
5520 // pool load.
5521 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5522 V.getOpcode() != ISD::UNDEF)
5523 isConstant = false;
5524 }
Scott Michel91099d62009-02-17 22:15:04 +00005525
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005526 if (isOnlyLowElement) {
5527 // If the low element is an undef too, then this whole things is an undef.
5528 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
Dale Johannesen9bfc0172009-02-06 23:05:02 +00005529 return DAG.getUNDEF(Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005530 // Otherwise, turn this into a scalar_to_vector node.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005531 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, Node->getValueType(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005532 Node->getOperand(0));
5533 }
Scott Michel91099d62009-02-17 22:15:04 +00005534
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005535 // If all elements are constants, create a load from the constant pool.
5536 if (isConstant) {
Duncan Sands92c43912008-06-06 12:08:01 +00005537 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005538 std::vector<Constant*> CV;
5539 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00005540 if (ConstantFPSDNode *V =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005541 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00005542 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michel91099d62009-02-17 22:15:04 +00005543 } else if (ConstantSDNode *V =
Chris Lattner5e0610f2008-04-20 00:41:09 +00005544 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00005545 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005546 } else {
5547 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Scott Michel91099d62009-02-17 22:15:04 +00005548 const Type *OpNTy =
Duncan Sands92c43912008-06-06 12:08:01 +00005549 Node->getOperand(0).getValueType().getTypeForMVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005550 CV.push_back(UndefValue::get(OpNTy));
5551 }
5552 }
5553 Constant *CP = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005554 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +00005555 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen82b5b722009-02-02 22:12:50 +00005556 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00005557 PseudoSourceValue::getConstantPool(), 0,
5558 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005559 }
Scott Michel91099d62009-02-17 22:15:04 +00005560
Gabor Greif1c80d112008-08-28 21:40:38 +00005561 if (SplatValue.getNode()) { // Splat of one value?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005562 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands92c43912008-06-06 12:08:01 +00005563 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman8181bd12008-07-27 21:46:04 +00005564 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5565 std::vector<SDValue> ZeroVec(NumElems, Zero);
Evan Cheng907a2d22009-02-25 22:49:59 +00005566 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
5567 &ZeroVec[0], ZeroVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005568
5569 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
5570 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
5571 // Get the splatted value into the low element of a vector register.
Scott Michel91099d62009-02-17 22:15:04 +00005572 SDValue LowValVec =
5573 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005574 Node->getValueType(0), SplatValue);
Scott Michel91099d62009-02-17 22:15:04 +00005575
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005576 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Scott Michel91099d62009-02-17 22:15:04 +00005577 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005578 Node->getValueType(0), LowValVec,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00005579 DAG.getUNDEF(Node->getValueType(0)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005580 SplatMask);
5581 }
5582 }
Scott Michel91099d62009-02-17 22:15:04 +00005583
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005584 // If there are only two unique elements, we may be able to turn this into a
5585 // vector shuffle.
5586 if (Values.size() == 2) {
Chris Lattnerd8cee732008-03-09 00:29:42 +00005587 // Get the two values in deterministic order.
Dan Gohman8181bd12008-07-27 21:46:04 +00005588 SDValue Val1 = Node->getOperand(1);
5589 SDValue Val2;
5590 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerd8cee732008-03-09 00:29:42 +00005591 if (MI->first != Val1)
5592 Val2 = MI->first;
5593 else
5594 Val2 = (++MI)->first;
Scott Michel91099d62009-02-17 22:15:04 +00005595
5596 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
Chris Lattnerd8cee732008-03-09 00:29:42 +00005597 // vector shuffle has the undef vector on the RHS.
5598 if (Val1.getOpcode() == ISD::UNDEF)
5599 std::swap(Val1, Val2);
Scott Michel91099d62009-02-17 22:15:04 +00005600
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005601 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands92c43912008-06-06 12:08:01 +00005602 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5603 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00005604 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerd8cee732008-03-09 00:29:42 +00005605
5606 // Set elements of the shuffle mask for Val1.
5607 std::vector<unsigned> &Val1Elts = Values[Val1];
5608 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5609 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5610
5611 // Set elements of the shuffle mask for Val2.
5612 std::vector<unsigned> &Val2Elts = Values[Val2];
5613 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5614 if (Val2.getOpcode() != ISD::UNDEF)
5615 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5616 else
Dale Johannesen9bfc0172009-02-06 23:05:02 +00005617 MaskVec[Val2Elts[i]] = DAG.getUNDEF(MaskEltVT);
Scott Michel91099d62009-02-17 22:15:04 +00005618
Evan Cheng907a2d22009-02-25 22:49:59 +00005619 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
5620 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005621
Chris Lattnerd8cee732008-03-09 00:29:42 +00005622 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Dan Gohman52c51aa2009-01-28 17:46:25 +00005623 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR,
5624 Node->getValueType(0)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005625 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005626 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,Node->getValueType(0), Val1);
5627 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,Node->getValueType(0), Val2);
Dan Gohman8181bd12008-07-27 21:46:04 +00005628 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005629
5630 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Dale Johannesen82b5b722009-02-02 22:12:50 +00005631 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl,Node->getValueType(0), Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005632 }
5633 }
Scott Michel91099d62009-02-17 22:15:04 +00005634
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005635 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5636 // aligned object on the stack, store each element into it, then load
5637 // the result as a vector.
Duncan Sands92c43912008-06-06 12:08:01 +00005638 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005639 // Create the stack frame object.
Dan Gohman8181bd12008-07-27 21:46:04 +00005640 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman8a8251a2009-01-29 21:02:43 +00005641 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5642 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5643
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005644 // Emit a store of each element to the stack slot.
Dan Gohman8181bd12008-07-27 21:46:04 +00005645 SmallVector<SDValue, 8> Stores;
Duncan Sands92c43912008-06-06 12:08:01 +00005646 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005647 // Store (in the right endianness) the elements to memory.
5648 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5649 // Ignore undef elements.
5650 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michel91099d62009-02-17 22:15:04 +00005651
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005652 unsigned Offset = TypeByteSize*i;
Scott Michel91099d62009-02-17 22:15:04 +00005653
Dan Gohman8181bd12008-07-27 21:46:04 +00005654 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dale Johannesen82b5b722009-02-02 22:12:50 +00005655 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
Scott Michel91099d62009-02-17 22:15:04 +00005656
Dale Johannesen82b5b722009-02-02 22:12:50 +00005657 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i),
5658 Idx, SV, Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005659 }
Scott Michel91099d62009-02-17 22:15:04 +00005660
Dan Gohman8181bd12008-07-27 21:46:04 +00005661 SDValue StoreChain;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005662 if (!Stores.empty()) // Not all undef elements?
Dale Johannesen82b5b722009-02-02 22:12:50 +00005663 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005664 &Stores[0], Stores.size());
5665 else
5666 StoreChain = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00005667
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005668 // Result is a load from the stack slot.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005669 return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005670}
5671
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005672void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman8181bd12008-07-27 21:46:04 +00005673 SDValue Op, SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005674 SDValue &Lo, SDValue &Hi,
5675 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005676 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00005677 SDValue LHSL, LHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005678 ExpandOp(Op, LHSL, LHSH);
5679
Dan Gohman8181bd12008-07-27 21:46:04 +00005680 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands92c43912008-06-06 12:08:01 +00005681 MVT VT = LHSL.getValueType();
Dale Johannesen82b5b722009-02-02 22:12:50 +00005682 Lo = DAG.getNode(NodeOp, dl, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005683 Hi = Lo.getValue(1);
5684}
5685
5686
5687/// ExpandShift - Try to find a clever way to expand this shift operation out to
5688/// smaller elements. If we can't find a way that is more efficient than a
5689/// libcall on this target, return false. Otherwise, return true with the
5690/// low-parts expanded into Lo and Hi.
Dan Gohman8181bd12008-07-27 21:46:04 +00005691bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005692 SDValue &Lo, SDValue &Hi,
5693 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005694 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5695 "This is not a shift!");
5696
Duncan Sands92c43912008-06-06 12:08:01 +00005697 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman8181bd12008-07-27 21:46:04 +00005698 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands92c43912008-06-06 12:08:01 +00005699 MVT ShTy = ShAmt.getValueType();
5700 unsigned ShBits = ShTy.getSizeInBits();
5701 unsigned VTBits = Op.getValueType().getSizeInBits();
5702 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005703
Chris Lattner8c931452007-10-14 20:35:12 +00005704 // Handle the case when Amt is an immediate.
Gabor Greif1c80d112008-08-28 21:40:38 +00005705 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005706 unsigned Cst = CN->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005707 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005708 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005709 ExpandOp(Op, InL, InH);
5710 switch(Opc) {
5711 case ISD::SHL:
5712 if (Cst > VTBits) {
5713 Lo = DAG.getConstant(0, NVT);
5714 Hi = DAG.getConstant(0, NVT);
5715 } else if (Cst > NVTBits) {
5716 Lo = DAG.getConstant(0, NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00005717 Hi = DAG.getNode(ISD::SHL, dl,
5718 NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005719 } else if (Cst == NVTBits) {
5720 Lo = DAG.getConstant(0, NVT);
5721 Hi = InL;
5722 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005723 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy));
5724 Hi = DAG.getNode(ISD::OR, dl, NVT,
5725 DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)),
Scott Michel91099d62009-02-17 22:15:04 +00005726 DAG.getNode(ISD::SRL, dl, NVT, InL,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005727 DAG.getConstant(NVTBits-Cst, ShTy)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005728 }
5729 return true;
5730 case ISD::SRL:
5731 if (Cst > VTBits) {
5732 Lo = DAG.getConstant(0, NVT);
5733 Hi = DAG.getConstant(0, NVT);
5734 } else if (Cst > NVTBits) {
Scott Michel91099d62009-02-17 22:15:04 +00005735 Lo = DAG.getNode(ISD::SRL, dl, NVT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005736 InH, DAG.getConstant(Cst-NVTBits,ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005737 Hi = DAG.getConstant(0, NVT);
5738 } else if (Cst == NVTBits) {
5739 Lo = InH;
5740 Hi = DAG.getConstant(0, NVT);
5741 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005742 Lo = DAG.getNode(ISD::OR, dl, NVT,
5743 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michel91099d62009-02-17 22:15:04 +00005744 DAG.getNode(ISD::SHL, dl, NVT, InH,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005745 DAG.getConstant(NVTBits-Cst, ShTy)));
5746 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005747 }
5748 return true;
5749 case ISD::SRA:
5750 if (Cst > VTBits) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005751 Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005752 DAG.getConstant(NVTBits-1, ShTy));
5753 } else if (Cst > NVTBits) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005754 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005755 DAG.getConstant(Cst-NVTBits, ShTy));
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 if (Cst == NVTBits) {
5759 Lo = InH;
Dale Johannesen82b5b722009-02-02 22:12:50 +00005760 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005761 DAG.getConstant(NVTBits-1, ShTy));
5762 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00005763 Lo = DAG.getNode(ISD::OR, dl, NVT,
5764 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michel91099d62009-02-17 22:15:04 +00005765 DAG.getNode(ISD::SHL, dl,
Dale Johannesen82b5b722009-02-02 22:12:50 +00005766 NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5767 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005768 }
5769 return true;
5770 }
5771 }
Scott Michel91099d62009-02-17 22:15:04 +00005772
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005773 // Okay, the shift amount isn't constant. However, if we can tell that it is
5774 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohmanece0a882008-02-20 16:57:27 +00005775 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5776 APInt KnownZero, KnownOne;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005777 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Scott Michel91099d62009-02-17 22:15:04 +00005778
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005779 // If we know that if any of the high bits of the shift amount are one, then
5780 // we can do this as a couple of simple shifts.
Dan Gohmanece0a882008-02-20 16:57:27 +00005781 if (KnownOne.intersects(Mask)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005782 // Mask out the high bit, which we know is set.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005783 Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt,
Dan Gohmanece0a882008-02-20 16:57:27 +00005784 DAG.getConstant(~Mask, Amt.getValueType()));
Scott Michel91099d62009-02-17 22:15:04 +00005785
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005786 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005787 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005788 ExpandOp(Op, InL, InH);
5789 switch(Opc) {
5790 case ISD::SHL:
5791 Lo = DAG.getConstant(0, NVT); // Low part is zero.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005792 Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005793 return true;
5794 case ISD::SRL:
5795 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005796 Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005797 return true;
5798 case ISD::SRA:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005799 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005800 DAG.getConstant(NVTBits-1, Amt.getValueType()));
Dale Johannesen82b5b722009-02-02 22:12:50 +00005801 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005802 return true;
5803 }
5804 }
Scott Michel91099d62009-02-17 22:15:04 +00005805
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005806 // If we know that the high bits of the shift amount are all zero, then we can
5807 // do this as a couple of simple shifts.
5808 if ((KnownZero & Mask) == Mask) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005809 // Compute 32-amt.
Dale Johannesen82b5b722009-02-02 22:12:50 +00005810 SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005811 DAG.getConstant(NVTBits, Amt.getValueType()),
5812 Amt);
Scott Michel91099d62009-02-17 22:15:04 +00005813
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005814 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005815 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005816 ExpandOp(Op, InL, InH);
5817 switch(Opc) {
5818 case ISD::SHL:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005819 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
5820 Hi = DAG.getNode(ISD::OR, dl, NVT,
5821 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
5822 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005823 return true;
5824 case ISD::SRL:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005825 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
5826 Lo = DAG.getNode(ISD::OR, dl, NVT,
5827 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5828 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005829 return true;
5830 case ISD::SRA:
Dale Johannesen82b5b722009-02-02 22:12:50 +00005831 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
5832 Lo = DAG.getNode(ISD::OR, dl, NVT,
5833 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5834 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005835 return true;
5836 }
5837 }
Scott Michel91099d62009-02-17 22:15:04 +00005838
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005839 return false;
5840}
5841
5842
5843// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5844// does not fit into a register, return the lo part and set the hi part to the
5845// by-reg argument. If it does fit into a single register, return the result
5846// and leave the Hi part unset.
Dan Gohman8181bd12008-07-27 21:46:04 +00005847SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5848 bool isSigned, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005849 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
Scott Michel91099d62009-02-17 22:15:04 +00005850 // The input chain to this libcall is the entry node of the function.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005851 // Legalizing the call will automatically add the previous call to the
5852 // dependence.
Dan Gohman8181bd12008-07-27 21:46:04 +00005853 SDValue InChain = DAG.getEntryNode();
Scott Michel91099d62009-02-17 22:15:04 +00005854
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005855 TargetLowering::ArgListTy Args;
5856 TargetLowering::ArgListEntry Entry;
5857 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands92c43912008-06-06 12:08:01 +00005858 MVT ArgVT = Node->getOperand(i).getValueType();
5859 const Type *ArgTy = ArgVT.getTypeForMVT();
Scott Michel91099d62009-02-17 22:15:04 +00005860 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005861 Entry.isSExt = isSigned;
Duncan Sandsead972e2008-02-14 17:28:50 +00005862 Entry.isZExt = !isSigned;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005863 Args.push_back(Entry);
5864 }
Bill Wendlingfef06052008-09-16 21:48:12 +00005865 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang1448aad2008-10-30 08:01:45 +00005866 TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005867
5868 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands92c43912008-06-06 12:08:01 +00005869 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman8181bd12008-07-27 21:46:04 +00005870 std::pair<SDValue,SDValue> CallInfo =
Dale Johannesen67cc9b62008-09-26 19:31:26 +00005871 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesenca6237b2009-01-30 23:10:59 +00005872 CallingConv::C, false, Callee, Args, DAG,
5873 Node->getDebugLoc());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005874
5875 // Legalize the call sequence, starting with the chain. This will advance
5876 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5877 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5878 LegalizeOp(CallInfo.second);
Dan Gohman8181bd12008-07-27 21:46:04 +00005879 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005880 switch (getTypeAction(CallInfo.first.getValueType())) {
5881 default: assert(0 && "Unknown thing");
5882 case Legal:
5883 Result = CallInfo.first;
5884 break;
5885 case Expand:
5886 ExpandOp(CallInfo.first, Result, Hi);
5887 break;
5888 }
5889 return Result;
5890}
5891
Dan Gohman29c3cef2008-08-14 20:04:46 +00005892/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5893///
5894SDValue SelectionDAGLegalize::
Dale Johannesen9972b632009-02-02 19:03:57 +00005895LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5896 DebugLoc dl) {
Dan Gohman29c3cef2008-08-14 20:04:46 +00005897 bool isCustom = false;
5898 SDValue Tmp1;
5899 switch (getTypeAction(Op.getValueType())) {
5900 case Legal:
5901 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5902 Op.getValueType())) {
5903 default: assert(0 && "Unknown operation action!");
5904 case TargetLowering::Custom:
5905 isCustom = true;
5906 // FALLTHROUGH
5907 case TargetLowering::Legal:
5908 Tmp1 = LegalizeOp(Op);
Gabor Greif1c80d112008-08-28 21:40:38 +00005909 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005910 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5911 else
Dale Johannesen9972b632009-02-02 19:03:57 +00005912 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman29c3cef2008-08-14 20:04:46 +00005913 DestTy, Tmp1);
5914 if (isCustom) {
5915 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005916 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman29c3cef2008-08-14 20:04:46 +00005917 }
5918 break;
5919 case TargetLowering::Expand:
Dale Johannesen9972b632009-02-02 19:03:57 +00005920 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005921 break;
5922 case TargetLowering::Promote:
Dale Johannesen9972b632009-02-02 19:03:57 +00005923 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005924 break;
5925 }
5926 break;
5927 case Expand:
Dale Johannesen9972b632009-02-02 19:03:57 +00005928 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman29c3cef2008-08-14 20:04:46 +00005929 break;
5930 case Promote:
5931 Tmp1 = PromoteOp(Op);
5932 if (isSigned) {
Dale Johannesen9972b632009-02-02 19:03:57 +00005933 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Dan Gohman29c3cef2008-08-14 20:04:46 +00005934 Tmp1, DAG.getValueType(Op.getValueType()));
5935 } else {
Scott Michel91099d62009-02-17 22:15:04 +00005936 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl,
Dan Gohman29c3cef2008-08-14 20:04:46 +00005937 Op.getValueType());
5938 }
Gabor Greif1c80d112008-08-28 21:40:38 +00005939 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005940 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5941 else
Dale Johannesen9972b632009-02-02 19:03:57 +00005942 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman29c3cef2008-08-14 20:04:46 +00005943 DestTy, Tmp1);
5944 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5945 break;
5946 }
5947 return Result;
5948}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005949
5950/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5951///
Dan Gohman8181bd12008-07-27 21:46:04 +00005952SDValue SelectionDAGLegalize::
Dale Johannesen9972b632009-02-02 19:03:57 +00005953ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00005954 MVT SourceVT = Source.getValueType();
Dan Gohman8b232ff2008-03-11 01:59:03 +00005955 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005956
Dan Gohman29c3cef2008-08-14 20:04:46 +00005957 // Expand unsupported int-to-fp vector casts by unrolling them.
5958 if (DestTy.isVector()) {
5959 if (!ExpandSource)
5960 return LegalizeOp(UnrollVectorOp(Source));
5961 MVT DestEltTy = DestTy.getVectorElementType();
5962 if (DestTy.getVectorNumElements() == 1) {
5963 SDValue Scalar = ScalarizeVectorOp(Source);
5964 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesen9972b632009-02-02 19:03:57 +00005965 DestEltTy, Scalar, dl);
Evan Cheng907a2d22009-02-25 22:49:59 +00005966 return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005967 }
5968 SDValue Lo, Hi;
5969 SplitVectorOp(Source, Lo, Hi);
5970 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5971 DestTy.getVectorNumElements() / 2);
Scott Michel91099d62009-02-17 22:15:04 +00005972 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesen9972b632009-02-02 19:03:57 +00005973 Lo, dl);
Scott Michel91099d62009-02-17 22:15:04 +00005974 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesen9972b632009-02-02 19:03:57 +00005975 Hi, dl);
5976 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengd901b662008-10-13 18:46:18 +00005977 HiResult));
Dan Gohman29c3cef2008-08-14 20:04:46 +00005978 }
5979
Evan Chengf99a7752008-04-01 02:18:22 +00005980 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5981 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohmana193dba2008-03-05 02:07:31 +00005982 // The integer value loaded will be incorrectly if the 'sign bit' of the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005983 // incoming integer is set. To handle this, we dynamically test to see if
5984 // it is set, and, if so, add a fudge factor.
Dan Gohman8181bd12008-07-27 21:46:04 +00005985 SDValue Hi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005986 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005987 SDValue Lo;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005988 ExpandOp(Source, Lo, Hi);
Dale Johannesen9972b632009-02-02 19:03:57 +00005989 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman8b232ff2008-03-11 01:59:03 +00005990 } else {
5991 // The comparison for the sign bit will use the entire operand.
5992 Hi = Source;
5993 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005994
Dale Johannesen96db7962008-11-04 20:52:49 +00005995 // Check to see if the target has a custom way to lower this. If so, use
5996 // it. (Note we've already expanded the operand in this case.)
Dale Johannesena359b8b2008-10-21 20:50:01 +00005997 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
5998 default: assert(0 && "This action not implemented for this operation!");
5999 case TargetLowering::Legal:
6000 case TargetLowering::Expand:
6001 break; // This case is handled below.
6002 case TargetLowering::Custom: {
Dale Johannesen24dd9a52009-02-07 00:55:49 +00006003 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, dl, DestTy,
Dale Johannesena359b8b2008-10-21 20:50:01 +00006004 Source), DAG);
6005 if (NV.getNode())
6006 return LegalizeOp(NV);
6007 break; // The target decided this was legal after all
6008 }
6009 }
6010
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006011 // If this is unsigned, and not supported, first perform the conversion to
6012 // signed, then adjust the result if the sign bit is set.
Dale Johannesen9972b632009-02-02 19:03:57 +00006013 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006014
Scott Michel91099d62009-02-17 22:15:04 +00006015 SDValue SignSet = DAG.getSetCC(dl,
Dale Johannesen9972b632009-02-02 19:03:57 +00006016 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00006017 Hi, DAG.getConstant(0, Hi.getValueType()),
6018 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00006019 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesen9972b632009-02-02 19:03:57 +00006020 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006021 SignSet, Four, Zero);
6022 uint64_t FF = 0x5f800000ULL;
6023 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattner50ce8342009-03-08 01:47:41 +00006024 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006025
Dan Gohman8181bd12008-07-27 21:46:04 +00006026 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +00006027 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen9972b632009-02-02 19:03:57 +00006028 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00006029 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00006030 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006031 if (DestTy == MVT::f32)
Dale Johannesen9972b632009-02-02 19:03:57 +00006032 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00006033 PseudoSourceValue::getConstantPool(), 0,
6034 false, Alignment);
Duncan Sandsec142ee2008-06-08 20:54:56 +00006035 else if (DestTy.bitsGT(MVT::f32))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006036 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen9972b632009-02-02 19:03:57 +00006037 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman12a9c082008-02-06 22:27:42 +00006038 CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00006039 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00006040 MVT::f32, false, Alignment);
Scott Michel91099d62009-02-17 22:15:04 +00006041 else
Dale Johannesen2fc20782007-09-14 22:26:36 +00006042 assert(0 && "Unexpected conversion");
6043
Duncan Sands92c43912008-06-06 12:08:01 +00006044 MVT SCVT = SignedConv.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006045 if (SCVT != DestTy) {
6046 // Destination type needs to be expanded as well. The FADD now we are
6047 // constructing will be expanded into a libcall.
Duncan Sands92c43912008-06-06 12:08:01 +00006048 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
6049 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesen9972b632009-02-02 19:03:57 +00006050 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006051 SignedConv, SignedConv.getValue(1));
6052 }
Dale Johannesen9972b632009-02-02 19:03:57 +00006053 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006054 }
Dale Johannesen9972b632009-02-02 19:03:57 +00006055 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006056 }
6057
6058 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmanc98645c2008-03-05 01:08:17 +00006059 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006060 default: assert(0 && "This action not implemented for this operation!");
6061 case TargetLowering::Legal:
6062 case TargetLowering::Expand:
6063 break; // This case is handled below.
6064 case TargetLowering::Custom: {
Dale Johannesen9972b632009-02-02 19:03:57 +00006065 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006066 Source), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006067 if (NV.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006068 return LegalizeOp(NV);
6069 break; // The target decided this was legal after all
6070 }
6071 }
6072
6073 // Expand the source, then glue it back together for the call. We must expand
6074 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman8b232ff2008-03-11 01:59:03 +00006075 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006076 SDValue SrcLo, SrcHi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00006077 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesen9972b632009-02-02 19:03:57 +00006078 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman8b232ff2008-03-11 01:59:03 +00006079 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006080
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006081 RTLIB::Libcall LC = isSigned ?
6082 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6083 RTLIB::getUINTTOFP(SourceVT, DestTy);
6084 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6085
Dale Johannesen9972b632009-02-02 19:03:57 +00006086 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman8181bd12008-07-27 21:46:04 +00006087 SDValue HiPart;
Gabor Greif1c80d112008-08-28 21:40:38 +00006088 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6089 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesen9972b632009-02-02 19:03:57 +00006090 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmanec51f642008-03-10 23:03:31 +00006091 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006092}
6093
6094/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6095/// INT_TO_FP operation of the specified operand when the target requests that
6096/// we expand it. At this point, we know that the result and operand types are
6097/// legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00006098SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6099 SDValue Op0,
Dale Johannesen9972b632009-02-02 19:03:57 +00006100 MVT DestVT,
6101 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006102 if (Op0.getValueType() == MVT::i32) {
6103 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michel91099d62009-02-17 22:15:04 +00006104
Chris Lattner0aeb1d02008-01-16 07:03:22 +00006105 // Get the stack frame index of a 8 byte buffer.
Dan Gohman8181bd12008-07-27 21:46:04 +00006106 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michel91099d62009-02-17 22:15:04 +00006107
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006108 // word offset constant for Hi/Lo address computation
Dan Gohman8181bd12008-07-27 21:46:04 +00006109 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006110 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman8181bd12008-07-27 21:46:04 +00006111 SDValue Hi = StackSlot;
Scott Michel91099d62009-02-17 22:15:04 +00006112 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Dale Johannesen9972b632009-02-02 19:03:57 +00006113 TLI.getPointerTy(), StackSlot,WordOff);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006114 if (TLI.isLittleEndian())
6115 std::swap(Hi, Lo);
Scott Michel91099d62009-02-17 22:15:04 +00006116
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006117 // if signed map to unsigned space
Dan Gohman8181bd12008-07-27 21:46:04 +00006118 SDValue Op0Mapped;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006119 if (isSigned) {
6120 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman8181bd12008-07-27 21:46:04 +00006121 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesen9972b632009-02-02 19:03:57 +00006122 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006123 } else {
6124 Op0Mapped = Op0;
6125 }
6126 // store the lo of the constructed double - based on integer input
Dale Johannesen9972b632009-02-02 19:03:57 +00006127 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006128 Op0Mapped, Lo, NULL, 0);
6129 // initial hi portion of constructed double
Dan Gohman8181bd12008-07-27 21:46:04 +00006130 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006131 // store the hi of the constructed double - biased exponent
Dale Johannesen9972b632009-02-02 19:03:57 +00006132 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006133 // load the constructed double
Dale Johannesen9972b632009-02-02 19:03:57 +00006134 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006135 // FP constant to bias correct the final result
Dan Gohman8181bd12008-07-27 21:46:04 +00006136 SDValue Bias = DAG.getConstantFP(isSigned ?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006137 BitsToDouble(0x4330000080000000ULL)
6138 : BitsToDouble(0x4330000000000000ULL),
6139 MVT::f64);
6140 // subtract the bias
Dale Johannesen9972b632009-02-02 19:03:57 +00006141 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006142 // final result
Dan Gohman8181bd12008-07-27 21:46:04 +00006143 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006144 // handle final rounding
6145 if (DestVT == MVT::f64) {
6146 // do nothing
6147 Result = Sub;
Duncan Sandsec142ee2008-06-08 20:54:56 +00006148 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesen9972b632009-02-02 19:03:57 +00006149 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner5872a362008-01-17 07:00:52 +00006150 DAG.getIntPtrConstant(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00006151 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen9972b632009-02-02 19:03:57 +00006152 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006153 }
6154 return Result;
6155 }
6156 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesen9972b632009-02-02 19:03:57 +00006157 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006158
Dale Johannesen9972b632009-02-02 19:03:57 +00006159 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00006160 Op0, DAG.getConstant(0, Op0.getValueType()),
6161 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00006162 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesen9972b632009-02-02 19:03:57 +00006163 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006164 SignSet, Four, Zero);
6165
6166 // If the sign bit of the integer is set, the large number will be treated
6167 // as a negative number. To counteract this, the dynamic code adds an
6168 // offset depending on the data type.
6169 uint64_t FF;
Duncan Sands92c43912008-06-06 12:08:01 +00006170 switch (Op0.getValueType().getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006171 default: assert(0 && "Unsupported integer type!");
6172 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6173 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6174 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6175 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6176 }
6177 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattner50ce8342009-03-08 01:47:41 +00006178 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006179
Dan Gohman8181bd12008-07-27 21:46:04 +00006180 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng68c18682009-03-13 07:51:59 +00006181 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen9972b632009-02-02 19:03:57 +00006182 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00006183 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00006184 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006185 if (DestVT == MVT::f32)
Dale Johannesen9972b632009-02-02 19:03:57 +00006186 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00006187 PseudoSourceValue::getConstantPool(), 0,
6188 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006189 else {
Dan Gohman12a9c082008-02-06 22:27:42 +00006190 FudgeInReg =
Dale Johannesen9972b632009-02-02 19:03:57 +00006191 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman12a9c082008-02-06 22:27:42 +00006192 DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00006193 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00006194 MVT::f32, false, Alignment));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006195 }
6196
Dale Johannesen9972b632009-02-02 19:03:57 +00006197 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006198}
6199
6200/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6201/// *INT_TO_FP operation of the specified operand when the target requests that
6202/// we promote it. At this point, we know that the result and operand types are
6203/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6204/// operation that takes a larger input.
Dan Gohman8181bd12008-07-27 21:46:04 +00006205SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6206 MVT DestVT,
Dale Johannesen9972b632009-02-02 19:03:57 +00006207 bool isSigned,
6208 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006209 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00006210 MVT NewInTy = LegalOp.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006211
6212 unsigned OpToUse = 0;
6213
6214 // Scan for the appropriate larger type to use.
6215 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00006216 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6217 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006218
6219 // If the target supports SINT_TO_FP of this type, use it.
6220 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6221 default: break;
6222 case TargetLowering::Legal:
6223 if (!TLI.isTypeLegal(NewInTy))
6224 break; // Can't use this datatype.
6225 // FALL THROUGH.
6226 case TargetLowering::Custom:
6227 OpToUse = ISD::SINT_TO_FP;
6228 break;
6229 }
6230 if (OpToUse) break;
6231 if (isSigned) continue;
6232
6233 // If the target supports UINT_TO_FP of this type, use it.
6234 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6235 default: break;
6236 case TargetLowering::Legal:
6237 if (!TLI.isTypeLegal(NewInTy))
6238 break; // Can't use this datatype.
6239 // FALL THROUGH.
6240 case TargetLowering::Custom:
6241 OpToUse = ISD::UINT_TO_FP;
6242 break;
6243 }
6244 if (OpToUse) break;
6245
6246 // Otherwise, try a larger type.
6247 }
6248
6249 // Okay, we found the operation and type to use. Zero extend our input to the
6250 // desired type then run the operation on it.
Dale Johannesen9972b632009-02-02 19:03:57 +00006251 return DAG.getNode(OpToUse, dl, DestVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006252 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesen9972b632009-02-02 19:03:57 +00006253 dl, NewInTy, LegalOp));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006254}
6255
6256/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6257/// FP_TO_*INT operation of the specified operand when the target requests that
6258/// we promote it. At this point, we know that the result and operand types are
6259/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6260/// operation that returns a larger result.
Dan Gohman8181bd12008-07-27 21:46:04 +00006261SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6262 MVT DestVT,
Dale Johannesen9972b632009-02-02 19:03:57 +00006263 bool isSigned,
6264 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006265 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00006266 MVT NewOutTy = DestVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006267
6268 unsigned OpToUse = 0;
6269
6270 // Scan for the appropriate larger type to use.
6271 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00006272 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6273 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006274
6275 // If the target supports FP_TO_SINT returning this type, use it.
6276 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6277 default: break;
6278 case TargetLowering::Legal:
6279 if (!TLI.isTypeLegal(NewOutTy))
6280 break; // Can't use this datatype.
6281 // FALL THROUGH.
6282 case TargetLowering::Custom:
6283 OpToUse = ISD::FP_TO_SINT;
6284 break;
6285 }
6286 if (OpToUse) break;
6287
6288 // If the target supports FP_TO_UINT of this type, use it.
6289 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
6290 default: break;
6291 case TargetLowering::Legal:
6292 if (!TLI.isTypeLegal(NewOutTy))
6293 break; // Can't use this datatype.
6294 // FALL THROUGH.
6295 case TargetLowering::Custom:
6296 OpToUse = ISD::FP_TO_UINT;
6297 break;
6298 }
6299 if (OpToUse) break;
6300
6301 // Otherwise, try a larger type.
6302 }
6303
Scott Michel91099d62009-02-17 22:15:04 +00006304
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006305 // Okay, we found the operation and type to use.
Dale Johannesen9972b632009-02-02 19:03:57 +00006306 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sandsac496a12008-07-04 11:47:58 +00006307
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006308 // If the operation produces an invalid type, it must be custom lowered. Use
6309 // the target lowering hooks to expand it. Just keep the low part of the
6310 // expanded operation, we know that we're truncating anyway.
6311 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands7d9834b2008-12-01 11:39:25 +00006312 SmallVector<SDValue, 2> Results;
6313 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6314 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6315 Operation = Results[0];
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006316 }
Duncan Sandsac496a12008-07-04 11:47:58 +00006317
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006318 // Truncate the result of the extended FP_TO_*INT operation to the desired
6319 // size.
Dale Johannesen9972b632009-02-02 19:03:57 +00006320 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006321}
6322
6323/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6324///
Dale Johannesen82b5b722009-02-02 22:12:50 +00006325SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00006326 MVT VT = Op.getValueType();
6327 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00006328 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands92c43912008-06-06 12:08:01 +00006329 switch (VT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006330 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6331 case MVT::i16:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006332 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6333 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6334 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006335 case MVT::i32:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006336 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6337 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6338 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6339 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6340 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6341 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6342 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6343 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6344 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006345 case MVT::i64:
Dale Johannesen82b5b722009-02-02 22:12:50 +00006346 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
6347 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
6348 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6349 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6350 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6351 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6352 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
6353 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
6354 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6355 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6356 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6357 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6358 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6359 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6360 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
6361 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
6362 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6363 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6364 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
6365 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
6366 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006367 }
6368}
6369
6370/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6371///
Scott Michel91099d62009-02-17 22:15:04 +00006372SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen82b5b722009-02-02 22:12:50 +00006373 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006374 switch (Opc) {
6375 default: assert(0 && "Cannot expand this yet!");
6376 case ISD::CTPOP: {
6377 static const uint64_t mask[6] = {
6378 0x5555555555555555ULL, 0x3333333333333333ULL,
6379 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6380 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6381 };
Duncan Sands92c43912008-06-06 12:08:01 +00006382 MVT VT = Op.getValueType();
6383 MVT ShVT = TLI.getShiftAmountTy();
6384 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006385 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6386 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sands505ba942009-02-01 18:06:53 +00006387 unsigned EltSize = VT.isVector() ?
6388 VT.getVectorElementType().getSizeInBits() : len;
6389 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman8181bd12008-07-27 21:46:04 +00006390 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michel91099d62009-02-17 22:15:04 +00006391 Op = DAG.getNode(ISD::ADD, dl, VT,
Dale Johannesen18ae8af2009-02-06 21:55:48 +00006392 DAG.getNode(ISD::AND, dl, VT, Op, Tmp2),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006393 DAG.getNode(ISD::AND, dl, VT,
6394 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3),
6395 Tmp2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006396 }
6397 return Op;
6398 }
6399 case ISD::CTLZ: {
6400 // for now, we do this:
6401 // x = x | (x >> 1);
6402 // x = x | (x >> 2);
6403 // ...
6404 // x = x | (x >>16);
6405 // x = x | (x >>32); // for 64-bit input
6406 // return popcount(~x);
6407 //
6408 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00006409 MVT VT = Op.getValueType();
6410 MVT ShVT = TLI.getShiftAmountTy();
6411 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006412 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006413 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michel91099d62009-02-17 22:15:04 +00006414 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesen18ae8af2009-02-06 21:55:48 +00006415 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006416 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00006417 Op = DAG.getNOT(dl, Op, VT);
6418 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006419 }
6420 case ISD::CTTZ: {
6421 // for now, we use: { return popcount(~x & (x - 1)); }
6422 // unless the target has ctlz but not ctpop, in which case we use:
6423 // { return 32 - nlz(~x & (x-1)); }
6424 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00006425 MVT VT = Op.getValueType();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006426 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
6427 DAG.getNOT(dl, Op, VT),
6428 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendlingfcfb47d2009-01-30 23:03:19 +00006429 DAG.getConstant(1, VT)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006430 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohman52c51aa2009-01-28 17:46:25 +00006431 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6432 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00006433 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands92c43912008-06-06 12:08:01 +00006434 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006435 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
6436 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006437 }
6438 }
6439}
6440
Dan Gohman8181bd12008-07-27 21:46:04 +00006441/// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006442/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman4fc03742008-10-01 15:07:49 +00006443/// LegalizedNodes map is filled in for any results that are not expanded, the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006444/// ExpandedNodes map is filled in for any results that are expanded, and the
6445/// Lo/Hi values are returned.
Dan Gohman8181bd12008-07-27 21:46:04 +00006446void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands92c43912008-06-06 12:08:01 +00006447 MVT VT = Op.getValueType();
6448 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greif1c80d112008-08-28 21:40:38 +00006449 SDNode *Node = Op.getNode();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006450 DebugLoc dl = Node->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006451 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00006452 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands92c43912008-06-06 12:08:01 +00006453 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006454
6455 // See if we already expanded it.
Dan Gohman8181bd12008-07-27 21:46:04 +00006456 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006457 = ExpandedNodes.find(Op);
6458 if (I != ExpandedNodes.end()) {
6459 Lo = I->second.first;
6460 Hi = I->second.second;
6461 return;
6462 }
6463
6464 switch (Node->getOpcode()) {
6465 case ISD::CopyFromReg:
6466 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006467 case ISD::FP_ROUND_INREG:
Scott Michel91099d62009-02-17 22:15:04 +00006468 if (VT == MVT::ppcf128 &&
6469 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006470 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006471 SDValue SrcLo, SrcHi, Src;
Dale Johannesend3b6af32007-10-11 23:32:15 +00006472 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006473 Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006474 SDValue Result = TLI.LowerOperation(
Dale Johannesen82b5b722009-02-02 22:12:50 +00006475 DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src, Op.getOperand(1)), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006476 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6477 Lo = Result.getNode()->getOperand(0);
6478 Hi = Result.getNode()->getOperand(1);
Dale Johannesen3d8578b2007-10-10 01:01:31 +00006479 break;
6480 }
6481 // fall through
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006482 default:
6483#ifndef NDEBUG
6484 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
6485#endif
6486 assert(0 && "Do not know how to expand this operator!");
6487 abort();
Dan Gohman550c8462008-02-27 01:52:30 +00006488 case ISD::EXTRACT_ELEMENT:
6489 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006490 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman550c8462008-02-27 01:52:30 +00006491 return ExpandOp(Hi, Lo, Hi);
Dan Gohman7e7aa2c2008-02-27 19:44:57 +00006492 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen2ff963d2007-10-31 00:32:36 +00006493 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen2ff963d2007-10-31 00:32:36 +00006494 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6495 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6496 return ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006497 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00006498 Lo = DAG.getUNDEF(NVT);
6499 Hi = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006500 break;
6501 case ISD::Constant: {
Duncan Sands92c43912008-06-06 12:08:01 +00006502 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman97f1f8e2008-03-03 22:20:46 +00006503 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6504 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6505 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006506 break;
6507 }
6508 case ISD::ConstantFP: {
6509 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesen2aef5692007-10-11 18:07:22 +00006510 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00006511 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesen2aef5692007-10-11 18:07:22 +00006512 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6513 MVT::f64);
Scott Michel91099d62009-02-17 22:15:04 +00006514 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
Dale Johannesen2aef5692007-10-11 18:07:22 +00006515 MVT::f64);
6516 break;
6517 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006518 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
6519 if (getTypeAction(Lo.getValueType()) == Expand)
6520 ExpandOp(Lo, Lo, Hi);
6521 break;
6522 }
6523 case ISD::BUILD_PAIR:
6524 // Return the operands.
6525 Lo = Node->getOperand(0);
6526 Hi = Node->getOperand(1);
6527 break;
Scott Michel91099d62009-02-17 22:15:04 +00006528
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006529 case ISD::MERGE_VALUES:
Chris Lattner1b66f822007-11-24 19:12:15 +00006530 if (Node->getNumValues() == 1) {
6531 ExpandOp(Op.getOperand(0), Lo, Hi);
6532 break;
6533 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006534 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif46bf5472008-08-26 22:36:50 +00006535 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006536 Op.getValue(1).getValueType() == MVT::Other &&
6537 "unhandled MERGE_VALUES");
6538 ExpandOp(Op.getOperand(0), Lo, Hi);
6539 // Remember that we legalized the chain.
6540 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6541 break;
Scott Michel91099d62009-02-17 22:15:04 +00006542
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006543 case ISD::SIGN_EXTEND_INREG:
6544 ExpandOp(Node->getOperand(0), Lo, Hi);
6545 // sext_inreg the low part if needed.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006546 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1));
Scott Michel91099d62009-02-17 22:15:04 +00006547
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006548 // The high part gets the sign extension from the lo-part. This handles
6549 // things like sextinreg V:i64 from i8.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006550 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Duncan Sands92c43912008-06-06 12:08:01 +00006551 DAG.getConstant(NVT.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006552 TLI.getShiftAmountTy()));
6553 break;
6554
6555 case ISD::BSWAP: {
6556 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006557 SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi);
6558 Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006559 Lo = TempLo;
6560 break;
6561 }
Scott Michel91099d62009-02-17 22:15:04 +00006562
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006563 case ISD::CTPOP:
6564 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006565 Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6566 DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
6567 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006568 Hi = DAG.getConstant(0, NVT);
6569 break;
6570
6571 case ISD::CTLZ: {
6572 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
6573 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006574 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006575 SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
6576 SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ,
6577 BitsC, ISD::SETNE);
6578 SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
6579 LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006580
Dale Johannesen82b5b722009-02-02 22:12:50 +00006581 Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006582 Hi = DAG.getConstant(0, NVT);
6583 break;
6584 }
6585
6586 case ISD::CTTZ: {
6587 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
6588 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006589 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006590 SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
6591 SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ,
6592 BitsC, ISD::SETNE);
6593 SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
6594 HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006595
Dale Johannesen82b5b722009-02-02 22:12:50 +00006596 Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006597 Hi = DAG.getConstant(0, NVT);
6598 break;
6599 }
6600
6601 case ISD::VAARG: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006602 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6603 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dale Johannesen564036c2009-02-04 00:13:36 +00006604 Lo = DAG.getVAArg(NVT, dl, Ch, Ptr, Node->getOperand(2));
6605 Hi = DAG.getVAArg(NVT, dl, Lo.getValue(1), Ptr, Node->getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006606
6607 // Remember that we legalized the chain.
6608 Hi = LegalizeOp(Hi);
6609 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006610 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006611 std::swap(Lo, Hi);
6612 break;
6613 }
Scott Michel91099d62009-02-17 22:15:04 +00006614
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006615 case ISD::LOAD: {
6616 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00006617 SDValue Ch = LD->getChain(); // Legalize the chain.
6618 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006619 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman29c3cef2008-08-14 20:04:46 +00006620 const Value *SV = LD->getSrcValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006621 int SVOffset = LD->getSrcValueOffset();
6622 unsigned Alignment = LD->getAlignment();
6623 bool isVolatile = LD->isVolatile();
6624
6625 if (ExtType == ISD::NON_EXTLOAD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006626 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006627 isVolatile, Alignment);
6628 if (VT == MVT::f32 || VT == MVT::f64) {
6629 // f32->i32 or f64->i64 one to one expansion.
6630 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006631 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006632 // Recursively expand the new load.
6633 if (getTypeAction(NVT) == Expand)
6634 ExpandOp(Lo, Lo, Hi);
6635 break;
6636 }
6637
6638 // Increment the pointer to the other half.
Duncan Sands92c43912008-06-06 12:08:01 +00006639 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dale Johannesen82b5b722009-02-02 22:12:50 +00006640 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00006641 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006642 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00006643 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006644 Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006645 isVolatile, Alignment);
6646
6647 // Build a factor node to remember that this load is independent of the
6648 // other one.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006649 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006650 Hi.getValue(1));
6651
6652 // Remember that we legalized the chain.
6653 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006654 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006655 std::swap(Lo, Hi);
6656 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00006657 MVT EVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006658
Dale Johannesen2550e3a2007-10-19 20:29:00 +00006659 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6660 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006661 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dale Johannesen82b5b722009-02-02 22:12:50 +00006662 SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006663 SVOffset, isVolatile, Alignment);
6664 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006665 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dale Johannesen82b5b722009-02-02 22:12:50 +00006666 ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006667 break;
6668 }
Scott Michel91099d62009-02-17 22:15:04 +00006669
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006670 if (EVT == NVT)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006671 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006672 SVOffset, isVolatile, Alignment);
6673 else
Dale Johannesen82b5b722009-02-02 22:12:50 +00006674 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006675 SVOffset, EVT, isVolatile,
6676 Alignment);
Scott Michel91099d62009-02-17 22:15:04 +00006677
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006678 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006679 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006680
6681 if (ExtType == ISD::SEXTLOAD) {
6682 // The high part is obtained by SRA'ing all but one of the bits of the
6683 // lo part.
Duncan Sands92c43912008-06-06 12:08:01 +00006684 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006685 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006686 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6687 } else if (ExtType == ISD::ZEXTLOAD) {
6688 // The high part is just a zero.
6689 Hi = DAG.getConstant(0, NVT);
6690 } else /* if (ExtType == ISD::EXTLOAD) */ {
6691 // The high part is undefined.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00006692 Hi = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006693 }
6694 }
6695 break;
6696 }
6697 case ISD::AND:
6698 case ISD::OR:
6699 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +00006700 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006701 ExpandOp(Node->getOperand(0), LL, LH);
6702 ExpandOp(Node->getOperand(1), RL, RH);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006703 Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL);
6704 Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006705 break;
6706 }
6707 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006708 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006709 ExpandOp(Node->getOperand(1), LL, LH);
6710 ExpandOp(Node->getOperand(2), RL, RH);
6711 if (getTypeAction(NVT) == Expand)
6712 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006713 Lo = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LL, RL);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006714 if (VT != MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006715 Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006716 break;
6717 }
6718 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006719 SDValue TL, TH, FL, FH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006720 ExpandOp(Node->getOperand(2), TL, TH);
6721 ExpandOp(Node->getOperand(3), FL, FH);
6722 if (getTypeAction(NVT) == Expand)
6723 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006724 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006725 Node->getOperand(1), TL, FL, Node->getOperand(4));
6726 if (VT != MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006727 Hi = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006728 Node->getOperand(1), TH, FH, Node->getOperand(4));
6729 break;
6730 }
6731 case ISD::ANY_EXTEND:
6732 // The low part is any extension of the input (which degenerates to a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006733 Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006734 // The high part is undefined.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00006735 Hi = DAG.getUNDEF(NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006736 break;
6737 case ISD::SIGN_EXTEND: {
6738 // The low part is just a sign extension of the input (which degenerates to
6739 // a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006740 Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006741
6742 // The high part is obtained by SRA'ing all but one of the bits of the lo
6743 // part.
Duncan Sands92c43912008-06-06 12:08:01 +00006744 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen82b5b722009-02-02 22:12:50 +00006745 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006746 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6747 break;
6748 }
6749 case ISD::ZERO_EXTEND:
6750 // The low part is just a zero extension of the input (which degenerates to
6751 // a copy).
Dale Johannesen82b5b722009-02-02 22:12:50 +00006752 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006753
6754 // The high part is just a zero.
6755 Hi = DAG.getConstant(0, NVT);
6756 break;
Scott Michel91099d62009-02-17 22:15:04 +00006757
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006758 case ISD::TRUNCATE: {
6759 // The input value must be larger than this value. Expand *it*.
Dan Gohman8181bd12008-07-27 21:46:04 +00006760 SDValue NewLo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006761 ExpandOp(Node->getOperand(0), NewLo, Hi);
Scott Michel91099d62009-02-17 22:15:04 +00006762
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006763 // The low part is now either the right size, or it is closer. If not the
6764 // right size, make an illegal truncate so we recursively expand it.
6765 if (NewLo.getValueType() != Node->getValueType(0))
Dale Johannesen82b5b722009-02-02 22:12:50 +00006766 NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006767 ExpandOp(NewLo, Lo, Hi);
6768 break;
6769 }
Scott Michel91099d62009-02-17 22:15:04 +00006770
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006771 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006772 SDValue Tmp;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006773 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6774 // If the target wants to, allow it to lower this itself.
6775 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6776 case Expand: assert(0 && "cannot expand FP!");
6777 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6778 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6779 }
Dale Johannesen82b5b722009-02-02 22:12:50 +00006780 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006781 }
6782
6783 // f32 / f64 must be expanded to i32 / i64.
6784 if (VT == MVT::f32 || VT == MVT::f64) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006785 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006786 if (getTypeAction(NVT) == Expand)
6787 ExpandOp(Lo, Lo, Hi);
6788 break;
6789 }
6790
6791 // If source operand will be expanded to the same type as VT, i.e.
6792 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands92c43912008-06-06 12:08:01 +00006793 MVT VT0 = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006794 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6795 ExpandOp(Node->getOperand(0), Lo, Hi);
6796 break;
6797 }
6798
6799 // Turn this into a load/store pair by default.
Gabor Greif1c80d112008-08-28 21:40:38 +00006800 if (Tmp.getNode() == 0)
Dale Johannesen82b5b722009-02-02 22:12:50 +00006801 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl);
Scott Michel91099d62009-02-17 22:15:04 +00006802
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006803 ExpandOp(Tmp, Lo, Hi);
6804 break;
6805 }
6806
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006807 case ISD::READCYCLECOUNTER: {
Scott Michel91099d62009-02-17 22:15:04 +00006808 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006809 TargetLowering::Custom &&
6810 "Must custom expand ReadCycleCounter");
Dan Gohman8181bd12008-07-27 21:46:04 +00006811 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006812 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006813 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006814 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006815 LegalizeOp(Tmp.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006816 break;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006817 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006818
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006819 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen44eb5372008-10-03 19:41:08 +00006820 // This operation does not need a loop.
6821 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6822 assert(Tmp.getNode() && "Node must be custom expanded!");
6823 ExpandOp(Tmp.getValue(0), Lo, Hi);
6824 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6825 LegalizeOp(Tmp.getValue(1)));
6826 break;
6827 }
6828
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006829 case ISD::ATOMIC_LOAD_ADD:
6830 case ISD::ATOMIC_LOAD_SUB:
6831 case ISD::ATOMIC_LOAD_AND:
6832 case ISD::ATOMIC_LOAD_OR:
6833 case ISD::ATOMIC_LOAD_XOR:
6834 case ISD::ATOMIC_LOAD_NAND:
6835 case ISD::ATOMIC_SWAP: {
Dale Johannesen44eb5372008-10-03 19:41:08 +00006836 // These operations require a loop to be generated. We can't do that yet,
6837 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesenf160d802008-10-02 18:53:47 +00006838 SDValue In2Lo, In2Hi, In2;
6839 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006840 In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi);
Dale Johannesen44eb5372008-10-03 19:41:08 +00006841 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
Scott Michel91099d62009-02-17 22:15:04 +00006842 SDValue Replace =
Dale Johannesen82b5b722009-02-02 22:12:50 +00006843 DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(),
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006844 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen44eb5372008-10-03 19:41:08 +00006845 Anode->getSrcValue(), Anode->getAlignment());
6846 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesenf160d802008-10-02 18:53:47 +00006847 ExpandOp(Result.getValue(0), Lo, Hi);
6848 // Remember that we legalized the chain.
6849 AddLegalizedOperand(SDValue(Node,1), LegalizeOp(Result.getValue(1)));
Andrew Lenharth81580822008-03-05 01:15:49 +00006850 break;
6851 }
6852
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006853 // These operators cannot be expanded directly, emit them as calls to
6854 // library functions.
6855 case ISD::FP_TO_SINT: {
6856 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006857 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006858 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6859 case Expand: assert(0 && "cannot expand FP!");
6860 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6861 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6862 }
6863
Dale Johannesen82b5b722009-02-02 22:12:50 +00006864 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006865
6866 // Now that the custom expander is done, expand the result, which is still
6867 // VT.
Gabor Greif1c80d112008-08-28 21:40:38 +00006868 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006869 ExpandOp(Op, Lo, Hi);
6870 break;
6871 }
6872 }
6873
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006874 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6875 VT);
6876 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6877 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006878 break;
6879 }
6880
6881 case ISD::FP_TO_UINT: {
6882 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006883 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006884 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6885 case Expand: assert(0 && "cannot expand FP!");
6886 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6887 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6888 }
Scott Michel91099d62009-02-17 22:15:04 +00006889
Dale Johannesen82b5b722009-02-02 22:12:50 +00006890 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006891
6892 // Now that the custom expander is done, expand the result.
Gabor Greif1c80d112008-08-28 21:40:38 +00006893 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006894 ExpandOp(Op, Lo, Hi);
6895 break;
6896 }
6897 }
6898
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006899 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6900 VT);
6901 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6902 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006903 break;
6904 }
6905
6906 case ISD::SHL: {
6907 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006908 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006909 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006910 SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006911 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006912 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006913 // Now that the custom expander is done, expand the result, which is
6914 // still VT.
6915 ExpandOp(Op, Lo, Hi);
6916 break;
6917 }
6918 }
Scott Michel91099d62009-02-17 22:15:04 +00006919
6920 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006921 // this X << 1 as X+X.
6922 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman52c51aa2009-01-28 17:46:25 +00006923 if (ShAmt->getAPIntValue() == 1 &&
Scott Michel91099d62009-02-17 22:15:04 +00006924 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
Dan Gohman52c51aa2009-01-28 17:46:25 +00006925 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006926 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006927 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6928 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6929 LoOps[1] = LoOps[0];
Dale Johannesen82b5b722009-02-02 22:12:50 +00006930 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006931
6932 HiOps[1] = HiOps[0];
6933 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00006934 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006935 break;
6936 }
6937 }
Scott Michel91099d62009-02-17 22:15:04 +00006938
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006939 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006940 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006941 break;
6942
6943 // If this target supports SHL_PARTS, use it.
6944 TargetLowering::LegalizeAction Action =
6945 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6946 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6947 Action == TargetLowering::Custom) {
Scott Michel91099d62009-02-17 22:15:04 +00006948 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006949 ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006950 break;
6951 }
6952
6953 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006954 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006955 break;
6956 }
6957
6958 case ISD::SRA: {
6959 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006960 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006961 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dale Johannesen18ae8af2009-02-06 21:55:48 +00006962 SDValue Op = DAG.getNode(ISD::SRA, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006963 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006964 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006965 // Now that the custom expander is done, expand the result, which is
6966 // still VT.
6967 ExpandOp(Op, Lo, Hi);
6968 break;
6969 }
6970 }
Scott Michel91099d62009-02-17 22:15:04 +00006971
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006972 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00006973 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006974 break;
6975
6976 // If this target supports SRA_PARTS, use it.
6977 TargetLowering::LegalizeAction Action =
6978 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6979 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6980 Action == TargetLowering::Custom) {
Scott Michel91099d62009-02-17 22:15:04 +00006981 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0),
Dale Johannesen82b5b722009-02-02 22:12:50 +00006982 ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006983 break;
6984 }
6985
6986 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006987 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006988 break;
6989 }
6990
6991 case ISD::SRL: {
6992 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006993 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006994 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00006995 SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006996 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006997 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006998 // Now that the custom expander is done, expand the result, which is
6999 // still VT.
7000 ExpandOp(Op, Lo, Hi);
7001 break;
7002 }
7003 }
7004
7005 // If we can emit an efficient shift operation, do so now.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007006 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007007 break;
7008
7009 // If this target supports SRL_PARTS, use it.
7010 TargetLowering::LegalizeAction Action =
7011 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
7012 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
7013 Action == TargetLowering::Custom) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007014 ExpandShiftParts(ISD::SRL_PARTS,
7015 Node->getOperand(0), ShiftAmt, Lo, Hi, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007016 break;
7017 }
7018
7019 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007020 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007021 break;
7022 }
7023
7024 case ISD::ADD:
7025 case ISD::SUB: {
7026 // If the target wants to custom expand this, let them.
7027 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
7028 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007029 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00007030 if (Result.getNode()) {
Duncan Sands4c3885b2008-06-22 09:42:16 +00007031 ExpandOp(Result, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007032 break;
7033 }
7034 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007035 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007036 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007037 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7038 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman8181bd12008-07-27 21:46:04 +00007039 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007040 LoOps[0] = LHSL;
7041 LoOps[1] = RHSL;
7042 HiOps[0] = LHSH;
7043 HiOps[1] = RHSH;
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007044
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007045 //cascaded check to see if any smaller size has a a carry flag.
7046 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
7047 bool hasCarry = false;
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007048 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
7049 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohman52c51aa2009-01-28 17:46:25 +00007050 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth97c315a2008-10-07 18:27:23 +00007051 hasCarry = true;
7052 break;
7053 }
7054 }
7055
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007056 if(hasCarry) {
Evan Cheng2bdd3d92008-12-12 18:49:09 +00007057 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007058 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007059 Lo = DAG.getNode(ISD::ADDC, 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::ADDE, dl, VTList, HiOps, 3);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007062 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007063 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007064 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007065 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007066 }
7067 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007068 } else {
Andrew Lenharth5e814462008-10-07 14:15:42 +00007069 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007070 Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2);
7071 Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
7072 SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007073 Lo, LoOps[0], ISD::SETULT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007074 SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
Scott Michel91099d62009-02-17 22:15:04 +00007075 DAG.getConstant(1, NVT),
Andrew Lenharth5e814462008-10-07 14:15:42 +00007076 DAG.getConstant(0, NVT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00007077 SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenhartha23d6992008-10-07 17:03:15 +00007078 Lo, LoOps[1], ISD::SETULT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007079 SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
Scott Michel91099d62009-02-17 22:15:04 +00007080 DAG.getConstant(1, NVT),
Andrew Lenharth5e814462008-10-07 14:15:42 +00007081 Carry1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007082 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007083 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007084 Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
7085 Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
7086 SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT);
7087 SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
Scott Michel91099d62009-02-17 22:15:04 +00007088 DAG.getConstant(1, NVT),
Andrew Lenharth5e814462008-10-07 14:15:42 +00007089 DAG.getConstant(0, NVT));
Dale Johannesen82b5b722009-02-02 22:12:50 +00007090 Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
Andrew Lenharth5e814462008-10-07 14:15:42 +00007091 }
7092 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007093 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007094 }
Scott Michel91099d62009-02-17 22:15:04 +00007095
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007096 case ISD::ADDC:
7097 case ISD::SUBC: {
7098 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007099 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007100 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7101 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7102 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00007103 SDValue LoOps[2] = { LHSL, RHSL };
7104 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michel91099d62009-02-17 22:15:04 +00007105
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007106 if (Node->getOpcode() == ISD::ADDC) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007107 Lo = DAG.getNode(ISD::ADDC, 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::ADDE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007110 } else {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007111 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007112 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007113 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007114 }
7115 // Remember that we legalized the flag.
7116 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7117 break;
7118 }
7119 case ISD::ADDE:
7120 case ISD::SUBE: {
7121 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00007122 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007123 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7124 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7125 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00007126 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7127 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michel91099d62009-02-17 22:15:04 +00007128
Dale Johannesen82b5b722009-02-02 22:12:50 +00007129 Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007130 HiOps[2] = Lo.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007131 Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3);
Scott Michel91099d62009-02-17 22:15:04 +00007132
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007133 // Remember that we legalized the flag.
7134 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7135 break;
7136 }
7137 case ISD::MUL: {
7138 // If the target wants to custom expand this, let them.
7139 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007140 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00007141 if (New.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007142 ExpandOp(New, Lo, Hi);
7143 break;
7144 }
7145 }
Scott Michel91099d62009-02-17 22:15:04 +00007146
Dan Gohman52c51aa2009-01-28 17:46:25 +00007147 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7148 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7149 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7150 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman5a199552007-10-08 18:33:35 +00007151 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007152 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007153 ExpandOp(Node->getOperand(0), LL, LH);
7154 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman07961cd2008-02-25 21:11:39 +00007155 unsigned OuterBitSize = Op.getValueSizeInBits();
7156 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman5a199552007-10-08 18:33:35 +00007157 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7158 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman2594d942008-03-10 20:42:19 +00007159 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7160 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7161 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman5a199552007-10-08 18:33:35 +00007162 // The inputs are both zero-extended.
7163 if (HasUMUL_LOHI) {
7164 // We can emit a umul_lohi.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007165 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00007166 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00007167 break;
7168 }
7169 if (HasMULHU) {
7170 // We can emit a mulhu+mul.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007171 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7172 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
Dan Gohman5a199552007-10-08 18:33:35 +00007173 break;
7174 }
Dan Gohman5a199552007-10-08 18:33:35 +00007175 }
Dan Gohman07961cd2008-02-25 21:11:39 +00007176 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman5a199552007-10-08 18:33:35 +00007177 // The input values are both sign-extended.
7178 if (HasSMUL_LOHI) {
7179 // We can emit a smul_lohi.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007180 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00007181 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00007182 break;
7183 }
7184 if (HasMULHS) {
7185 // We can emit a mulhs+mul.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007186 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7187 Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
Dan Gohman5a199552007-10-08 18:33:35 +00007188 break;
7189 }
7190 }
7191 if (HasUMUL_LOHI) {
7192 // Lo,Hi = umul LHS, RHS.
Dale Johannesen82b5b722009-02-02 22:12:50 +00007193 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
Dan Gohman5a199552007-10-08 18:33:35 +00007194 DAG.getVTList(NVT, NVT), LL, RL);
7195 Lo = UMulLOHI;
7196 Hi = UMulLOHI.getValue(1);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007197 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7198 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7199 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7200 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007201 break;
7202 }
Dale Johannesen612c88b2007-10-24 22:26:08 +00007203 if (HasMULHU) {
Dale Johannesen82b5b722009-02-02 22:12:50 +00007204 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7205 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
7206 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7207 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7208 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7209 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dale Johannesen612c88b2007-10-24 22:26:08 +00007210 break;
7211 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007212 }
7213
Dan Gohman5a199552007-10-08 18:33:35 +00007214 // If nothing else, we can make a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007215 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007216 break;
7217 }
7218 case ISD::SDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007219 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007220 break;
7221 case ISD::UDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007222 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007223 break;
7224 case ISD::SREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007225 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007226 break;
7227 case ISD::UREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007228 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007229 break;
7230
7231 case ISD::FADD:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007232 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7233 RTLIB::ADD_F64,
7234 RTLIB::ADD_F80,
7235 RTLIB::ADD_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007236 Node, false, Hi);
7237 break;
7238 case ISD::FSUB:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007239 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7240 RTLIB::SUB_F64,
7241 RTLIB::SUB_F80,
7242 RTLIB::SUB_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007243 Node, false, Hi);
7244 break;
7245 case ISD::FMUL:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007246 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7247 RTLIB::MUL_F64,
7248 RTLIB::MUL_F80,
7249 RTLIB::MUL_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007250 Node, false, Hi);
7251 break;
7252 case ISD::FDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007253 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7254 RTLIB::DIV_F64,
7255 RTLIB::DIV_F80,
7256 RTLIB::DIV_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007257 Node, false, Hi);
7258 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007259 case ISD::FP_EXTEND: {
Dale Johannesen4c14d512007-10-12 01:37:08 +00007260 if (VT == MVT::ppcf128) {
7261 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7262 Node->getOperand(0).getValueType()==MVT::f64);
7263 const uint64_t zero = 0;
7264 if (Node->getOperand(0).getValueType()==MVT::f32)
Dale Johannesen82b5b722009-02-02 22:12:50 +00007265 Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0));
Dale Johannesen4c14d512007-10-12 01:37:08 +00007266 else
7267 Hi = Node->getOperand(0);
7268 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7269 break;
7270 }
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007271 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7272 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7273 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007274 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007275 }
7276 case ISD::FP_ROUND: {
7277 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7278 VT);
7279 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7280 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007281 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00007282 }
Evan Cheng5316b392008-09-09 23:02:14 +00007283 case ISD::FSQRT:
7284 case ISD::FSIN:
Scott Michel91099d62009-02-17 22:15:04 +00007285 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007286 case ISD::FLOG:
7287 case ISD::FLOG2:
7288 case ISD::FLOG10:
7289 case ISD::FEXP:
7290 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00007291 case ISD::FTRUNC:
7292 case ISD::FFLOOR:
7293 case ISD::FCEIL:
7294 case ISD::FRINT:
7295 case ISD::FNEARBYINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00007296 case ISD::FPOW:
7297 case ISD::FPOWI: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007298 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
7299 switch(Node->getOpcode()) {
7300 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00007301 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7302 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007303 break;
7304 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00007305 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7306 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007307 break;
7308 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00007309 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7310 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007311 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00007312 case ISD::FLOG:
7313 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7314 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7315 break;
7316 case ISD::FLOG2:
7317 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7318 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7319 break;
7320 case ISD::FLOG10:
7321 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7322 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7323 break;
7324 case ISD::FEXP:
7325 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7326 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7327 break;
7328 case ISD::FEXP2:
7329 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7330 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7331 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00007332 case ISD::FTRUNC:
7333 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7334 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7335 break;
7336 case ISD::FFLOOR:
7337 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7338 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7339 break;
7340 case ISD::FCEIL:
7341 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7342 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7343 break;
7344 case ISD::FRINT:
7345 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7346 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7347 break;
7348 case ISD::FNEARBYINT:
7349 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7350 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7351 break;
Evan Cheng5316b392008-09-09 23:02:14 +00007352 case ISD::FPOW:
7353 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7354 RTLIB::POW_PPCF128);
7355 break;
7356 case ISD::FPOWI:
7357 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7358 RTLIB::POWI_PPCF128);
7359 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007360 default: assert(0 && "Unreachable!");
7361 }
Duncan Sandsf1db7c82008-04-12 17:14:18 +00007362 Lo = ExpandLibCall(LC, Node, false, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007363 break;
7364 }
7365 case ISD::FABS: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00007366 if (VT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007367 SDValue Tmp;
Dale Johannesen5707ef82007-10-12 19:02:17 +00007368 ExpandOp(Node->getOperand(0), Lo, Tmp);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007369 Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp);
Dale Johannesen5707ef82007-10-12 19:02:17 +00007370 // lo = hi==fabs(hi) ? lo : -lo;
Dale Johannesen82b5b722009-02-02 22:12:50 +00007371 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp,
7372 Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo),
Dale Johannesen5707ef82007-10-12 19:02:17 +00007373 DAG.getCondCode(ISD::SETEQ));
7374 break;
7375 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007376 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007377 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7378 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007379 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7380 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7381 Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007382 if (getTypeAction(NVT) == Expand)
7383 ExpandOp(Lo, Lo, Hi);
7384 break;
7385 }
7386 case ISD::FNEG: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00007387 if (VT == MVT::ppcf128) {
7388 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007389 Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo);
7390 Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi);
Dale Johannesen5707ef82007-10-12 19:02:17 +00007391 break;
7392 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007393 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007394 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7395 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007396 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7397 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7398 Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007399 if (getTypeAction(NVT) == Expand)
7400 ExpandOp(Lo, Lo, Hi);
7401 break;
7402 }
7403 case ISD::FCOPYSIGN: {
7404 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7405 if (getTypeAction(NVT) == Expand)
7406 ExpandOp(Lo, Lo, Hi);
7407 break;
7408 }
7409 case ISD::SINT_TO_FP:
7410 case ISD::UINT_TO_FP: {
7411 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands92c43912008-06-06 12:08:01 +00007412 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesen6a779c82008-03-18 17:28:38 +00007413
7414 // Promote the operand if needed. Do this before checking for
7415 // ppcf128 so conversions of i16 and i8 work.
7416 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007417 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesen6a779c82008-03-18 17:28:38 +00007418 Tmp = isSigned
Dale Johannesen82b5b722009-02-02 22:12:50 +00007419 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp,
Dale Johannesen6a779c82008-03-18 17:28:38 +00007420 DAG.getValueType(SrcVT))
Dale Johannesen82b5b722009-02-02 22:12:50 +00007421 : DAG.getZeroExtendInReg(Tmp, dl, SrcVT);
Gabor Greif1c80d112008-08-28 21:40:38 +00007422 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesen6a779c82008-03-18 17:28:38 +00007423 SrcVT = Node->getOperand(0).getValueType();
7424 }
7425
Dan Gohmanec51f642008-03-10 23:03:31 +00007426 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohman84d00962008-02-25 21:39:34 +00007427 static const uint64_t zero = 0;
Dale Johannesen4c14d512007-10-12 01:37:08 +00007428 if (isSigned) {
Scott Michel91099d62009-02-17 22:15:04 +00007429 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesen4c14d512007-10-12 01:37:08 +00007430 Node->getOperand(0)));
7431 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7432 } else {
Dan Gohman84d00962008-02-25 21:39:34 +00007433 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Scott Michel91099d62009-02-17 22:15:04 +00007434 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesen4c14d512007-10-12 01:37:08 +00007435 Node->getOperand(0)));
7436 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
Dale Johannesen82b5b722009-02-02 22:12:50 +00007437 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007438 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen82b5b722009-02-02 22:12:50 +00007439 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl,
7440 MVT::ppcf128, Node->getOperand(0),
Scott Michel91099d62009-02-17 22:15:04 +00007441 DAG.getConstant(0, MVT::i32),
Dale Johannesen82b5b722009-02-02 22:12:50 +00007442 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Dale Johannesen4c14d512007-10-12 01:37:08 +00007443 DAG.getConstantFP(
7444 APFloat(APInt(128, 2, TwoE32)),
7445 MVT::ppcf128)),
7446 Hi,
7447 DAG.getCondCode(ISD::SETLT)),
7448 Lo, Hi);
7449 }
7450 break;
7451 }
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007452 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7453 // si64->ppcf128 done by libcall, below
Dan Gohman84d00962008-02-25 21:39:34 +00007454 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen82b5b722009-02-02 22:12:50 +00007455 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128,
7456 Node->getOperand(0)), Lo, Hi);
7457 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007458 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
Dale Johannesen82b5b722009-02-02 22:12:50 +00007459 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128,
7460 Node->getOperand(0),
Scott Michel91099d62009-02-17 22:15:04 +00007461 DAG.getConstant(0, MVT::i64),
Dale Johannesen82b5b722009-02-02 22:12:50 +00007462 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Dale Johannesen9aec5b22007-10-12 17:52:03 +00007463 DAG.getConstantFP(
7464 APFloat(APInt(128, 2, TwoE64)),
7465 MVT::ppcf128)),
7466 Hi,
7467 DAG.getCondCode(ISD::SETLT)),
7468 Lo, Hi);
7469 break;
7470 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007471
Dan Gohmanec51f642008-03-10 23:03:31 +00007472 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesen82b5b722009-02-02 22:12:50 +00007473 Node->getOperand(0), dl);
Evan Chenga8740032008-04-01 01:50:16 +00007474 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng4a2f6df2008-04-01 01:51:26 +00007475 // float to i32 etc. can be 'expanded' to a single node.
Evan Chenga8740032008-04-01 01:50:16 +00007476 ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007477 break;
7478 }
7479 }
7480
7481 // Make sure the resultant values have been legalized themselves, unless this
7482 // is a type that requires multi-step expansion.
7483 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7484 Lo = LegalizeOp(Lo);
Gabor Greif1c80d112008-08-28 21:40:38 +00007485 if (Hi.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007486 // Don't legalize the high part if it is expanded to a single node.
7487 Hi = LegalizeOp(Hi);
7488 }
7489
7490 // Remember in a map if the values will be reused later.
Dan Gohman55d19662008-07-07 17:46:23 +00007491 bool isNew =
7492 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007493 assert(isNew && "Value already expanded?!?");
Evan Chengcf576fd2008-11-24 07:09:49 +00007494 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007495}
7496
7497/// SplitVectorOp - Given an operand of vector type, break it down into
7498/// two smaller values, still of vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00007499void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7500 SDValue &Hi) {
Duncan Sands92c43912008-06-06 12:08:01 +00007501 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greif1c80d112008-08-28 21:40:38 +00007502 SDNode *Node = Op.getNode();
Dale Johannesen352c47e2009-02-02 20:41:04 +00007503 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00007504 unsigned NumElements = Op.getValueType().getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007505 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman4a365ad2007-11-15 21:15:26 +00007506
Duncan Sands92c43912008-06-06 12:08:01 +00007507 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman4a365ad2007-11-15 21:15:26 +00007508
7509 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7510 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7511
Duncan Sands92c43912008-06-06 12:08:01 +00007512 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7513 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman4a365ad2007-11-15 21:15:26 +00007514
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007515 // See if we already split it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007516 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007517 = SplitNodes.find(Op);
7518 if (I != SplitNodes.end()) {
7519 Lo = I->second.first;
7520 Hi = I->second.second;
7521 return;
7522 }
Scott Michel91099d62009-02-17 22:15:04 +00007523
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007524 switch (Node->getOpcode()) {
Scott Michel91099d62009-02-17 22:15:04 +00007525 default:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007526#ifndef NDEBUG
7527 Node->dump(&DAG);
7528#endif
7529 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattner3dec33a2007-11-19 20:21:32 +00007530 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007531 Lo = DAG.getUNDEF(NewVT_Lo);
7532 Hi = DAG.getUNDEF(NewVT_Hi);
Chris Lattner3dec33a2007-11-19 20:21:32 +00007533 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007534 case ISD::BUILD_PAIR:
7535 Lo = Node->getOperand(0);
7536 Hi = Node->getOperand(1);
7537 break;
Dan Gohmanb3228dc2007-09-28 23:53:40 +00007538 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007539 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7540 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007541 unsigned Index = Idx->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007542 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007543 if (Index < NewNumElts_Lo)
Dale Johannesend8fd5342009-02-02 22:49:46 +00007544 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Lo, Lo, ScalarOp,
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007545 DAG.getIntPtrConstant(Index));
7546 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00007547 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Hi, Hi, ScalarOp,
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007548 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7549 break;
7550 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007551 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007552 Node->getOperand(1),
Dale Johannesen352c47e2009-02-02 20:41:04 +00007553 Node->getOperand(2), dl);
Nate Begeman7c9e4b72008-04-25 18:07:40 +00007554 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohmanb3228dc2007-09-28 23:53:40 +00007555 break;
7556 }
Chris Lattner587c46d2007-11-19 21:16:54 +00007557 case ISD::VECTOR_SHUFFLE: {
7558 // Build the low part.
Dan Gohman8181bd12008-07-27 21:46:04 +00007559 SDValue Mask = Node->getOperand(2);
7560 SmallVector<SDValue, 8> Ops;
Duncan Sands92c43912008-06-06 12:08:01 +00007561 MVT PtrVT = TLI.getPointerTy();
Scott Michel91099d62009-02-17 22:15:04 +00007562
7563 // Insert all of the elements from the input that are needed. We use
Chris Lattner587c46d2007-11-19 21:16:54 +00007564 // buildvector of extractelement here because the input vectors will have
7565 // to be legalized, so this makes the code simpler.
7566 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007567 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007568 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007569 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007570 continue;
7571 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007572 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007573 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00007574 if (Idx >= NumElements) {
7575 InVec = Node->getOperand(1);
7576 Idx -= NumElements;
7577 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00007578 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner587c46d2007-11-19 21:16:54 +00007579 DAG.getConstant(Idx, PtrVT)));
7580 }
Evan Cheng907a2d22009-02-25 22:49:59 +00007581 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &Ops[0], Ops.size());
Chris Lattner587c46d2007-11-19 21:16:54 +00007582 Ops.clear();
Scott Michel91099d62009-02-17 22:15:04 +00007583
Chris Lattner587c46d2007-11-19 21:16:54 +00007584 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007585 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007586 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007587 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman8bb3cb32008-03-14 00:53:31 +00007588 continue;
7589 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007590 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00007591 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00007592 if (Idx >= NumElements) {
7593 InVec = Node->getOperand(1);
7594 Idx -= NumElements;
7595 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00007596 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner587c46d2007-11-19 21:16:54 +00007597 DAG.getConstant(Idx, PtrVT)));
7598 }
Evan Cheng907a2d22009-02-25 22:49:59 +00007599 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner587c46d2007-11-19 21:16:54 +00007600 break;
7601 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007602 case ISD::BUILD_VECTOR: {
Scott Michel91099d62009-02-17 22:15:04 +00007603 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman4a365ad2007-11-15 21:15:26 +00007604 Node->op_begin()+NewNumElts_Lo);
Evan Cheng907a2d22009-02-25 22:49:59 +00007605 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007606
Scott Michel91099d62009-02-17 22:15:04 +00007607 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007608 Node->op_end());
Evan Cheng907a2d22009-02-25 22:49:59 +00007609 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007610 break;
7611 }
7612 case ISD::CONCAT_VECTORS: {
Nate Begeman4a365ad2007-11-15 21:15:26 +00007613 // FIXME: Handle non-power-of-two vectors?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007614 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7615 if (NewNumSubvectors == 1) {
7616 Lo = Node->getOperand(0);
7617 Hi = Node->getOperand(1);
7618 } else {
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007619 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7620 Node->op_begin()+NewNumSubvectors);
Scott Michel91099d62009-02-17 22:15:04 +00007621 Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Lo,
Dale Johannesend8fd5342009-02-02 22:49:46 +00007622 &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007623
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007624 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007625 Node->op_end());
Scott Michel91099d62009-02-17 22:15:04 +00007626 Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Hi,
Dale Johannesend8fd5342009-02-02 22:49:46 +00007627 &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007628 }
7629 break;
7630 }
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007631 case ISD::EXTRACT_SUBVECTOR: {
7632 SDValue Vec = Op.getOperand(0);
7633 SDValue Idx = Op.getOperand(1);
7634 MVT IdxVT = Idx.getValueType();
7635
Dale Johannesend8fd5342009-02-02 22:49:46 +00007636 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Lo, Vec, Idx);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007637 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7638 if (CIdx) {
Scott Michel91099d62009-02-17 22:15:04 +00007639 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec,
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007640 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7641 IdxVT));
7642 } else {
Dale Johannesend8fd5342009-02-02 22:49:46 +00007643 Idx = DAG.getNode(ISD::ADD, dl, IdxVT, Idx,
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007644 DAG.getConstant(NewNumElts_Lo, IdxVT));
Dale Johannesend8fd5342009-02-02 22:49:46 +00007645 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec, Idx);
Mon P Wangbff5d9c2008-11-10 04:46:22 +00007646 }
7647 break;
7648 }
Dan Gohmand5d4c872007-10-17 14:48:28 +00007649 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007650 SDValue Cond = Node->getOperand(0);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007651
Dan Gohman8181bd12008-07-27 21:46:04 +00007652 SDValue LL, LH, RL, RH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00007653 SplitVectorOp(Node->getOperand(1), LL, LH);
7654 SplitVectorOp(Node->getOperand(2), RL, RH);
7655
Duncan Sands92c43912008-06-06 12:08:01 +00007656 if (Cond.getValueType().isVector()) {
Dan Gohmand5d4c872007-10-17 14:48:28 +00007657 // Handle a vector merge.
Dan Gohman8181bd12008-07-27 21:46:04 +00007658 SDValue CL, CH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00007659 SplitVectorOp(Cond, CL, CH);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007660 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, CL, LL, RL);
7661 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, CH, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007662 } else {
7663 // Handle a simple select with vector operands.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007664 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, Cond, LL, RL);
7665 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, Cond, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007666 }
7667 break;
7668 }
Chris Lattnerc7471452008-06-30 02:43:01 +00007669 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007670 SDValue CondLHS = Node->getOperand(0);
7671 SDValue CondRHS = Node->getOperand(1);
7672 SDValue CondCode = Node->getOperand(4);
Scott Michel91099d62009-02-17 22:15:04 +00007673
Dan Gohman8181bd12008-07-27 21:46:04 +00007674 SDValue LL, LH, RL, RH;
Chris Lattnerc7471452008-06-30 02:43:01 +00007675 SplitVectorOp(Node->getOperand(2), LL, LH);
7676 SplitVectorOp(Node->getOperand(3), RL, RH);
Scott Michel91099d62009-02-17 22:15:04 +00007677
Chris Lattnerc7471452008-06-30 02:43:01 +00007678 // Handle a simple select with vector operands.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007679 Lo = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Lo, CondLHS, CondRHS,
Chris Lattnerc7471452008-06-30 02:43:01 +00007680 LL, RL, CondCode);
Scott Michel91099d62009-02-17 22:15:04 +00007681 Hi = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Hi, CondLHS, CondRHS,
Chris Lattnerc7471452008-06-30 02:43:01 +00007682 LH, RH, CondCode);
7683 break;
7684 }
Nate Begeman9a1ce152008-05-12 19:40:03 +00007685 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007686 SDValue LL, LH, RL, RH;
Nate Begeman9a1ce152008-05-12 19:40:03 +00007687 SplitVectorOp(Node->getOperand(0), LL, LH);
7688 SplitVectorOp(Node->getOperand(1), RL, RH);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007689 Lo = DAG.getNode(ISD::VSETCC, dl, NewVT_Lo, LL, RL, Node->getOperand(2));
7690 Hi = DAG.getNode(ISD::VSETCC, dl, NewVT_Hi, LH, RH, Node->getOperand(2));
Nate Begeman9a1ce152008-05-12 19:40:03 +00007691 break;
7692 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007693 case ISD::ADD:
7694 case ISD::SUB:
7695 case ISD::MUL:
7696 case ISD::FADD:
7697 case ISD::FSUB:
7698 case ISD::FMUL:
7699 case ISD::SDIV:
7700 case ISD::UDIV:
7701 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007702 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007703 case ISD::AND:
7704 case ISD::OR:
Dan Gohman9e1b7ee2007-11-19 15:15:03 +00007705 case ISD::XOR:
7706 case ISD::UREM:
7707 case ISD::SREM:
Mon P Wang26342922008-12-18 20:03:17 +00007708 case ISD::FREM:
7709 case ISD::SHL:
7710 case ISD::SRA:
7711 case ISD::SRL: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007712 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007713 SplitVectorOp(Node->getOperand(0), LL, LH);
7714 SplitVectorOp(Node->getOperand(1), RL, RH);
Scott Michel91099d62009-02-17 22:15:04 +00007715
Dale Johannesend8fd5342009-02-02 22:49:46 +00007716 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, LL, RL);
7717 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007718 break;
7719 }
Dan Gohman29c3cef2008-08-14 20:04:46 +00007720 case ISD::FP_ROUND:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007721 case ISD::FPOWI: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007722 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007723 SplitVectorOp(Node->getOperand(0), L, H);
7724
Dale Johannesend8fd5342009-02-02 22:49:46 +00007725 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L, Node->getOperand(1));
7726 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H, Node->getOperand(1));
Dan Gohman6d05cac2007-10-11 23:57:53 +00007727 break;
7728 }
7729 case ISD::CTTZ:
7730 case ISD::CTLZ:
7731 case ISD::CTPOP:
7732 case ISD::FNEG:
7733 case ISD::FABS:
7734 case ISD::FSQRT:
7735 case ISD::FSIN:
Nate Begeman78246ca2007-11-17 03:58:34 +00007736 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007737 case ISD::FLOG:
7738 case ISD::FLOG2:
7739 case ISD::FLOG10:
7740 case ISD::FEXP:
7741 case ISD::FEXP2:
Nate Begeman78246ca2007-11-17 03:58:34 +00007742 case ISD::FP_TO_SINT:
7743 case ISD::FP_TO_UINT:
7744 case ISD::SINT_TO_FP:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007745 case ISD::UINT_TO_FP:
7746 case ISD::TRUNCATE:
7747 case ISD::ANY_EXTEND:
7748 case ISD::SIGN_EXTEND:
7749 case ISD::ZERO_EXTEND:
7750 case ISD::FP_EXTEND: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007751 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007752 SplitVectorOp(Node->getOperand(0), L, H);
7753
Dale Johannesend8fd5342009-02-02 22:49:46 +00007754 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L);
7755 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H);
Dan Gohman6d05cac2007-10-11 23:57:53 +00007756 break;
7757 }
Mon P Wang73d31542008-11-10 20:54:11 +00007758 case ISD::CONVERT_RNDSAT: {
7759 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7760 SDValue L, H;
7761 SplitVectorOp(Node->getOperand(0), L, H);
7762 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7763 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7764 SDValue STyOpL = DAG.getValueType(L.getValueType());
7765 SDValue STyOpH = DAG.getValueType(H.getValueType());
7766
7767 SDValue RndOp = Node->getOperand(3);
7768 SDValue SatOp = Node->getOperand(4);
7769
Dale Johannesen564036c2009-02-04 00:13:36 +00007770 Lo = DAG.getConvertRndSat(NewVT_Lo, dl, L, DTyOpL, STyOpL,
Mon P Wang73d31542008-11-10 20:54:11 +00007771 RndOp, SatOp, CvtCode);
Dale Johannesen564036c2009-02-04 00:13:36 +00007772 Hi = DAG.getConvertRndSat(NewVT_Hi, dl, H, DTyOpH, STyOpH,
Mon P Wang73d31542008-11-10 20:54:11 +00007773 RndOp, SatOp, CvtCode);
7774 break;
7775 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007776 case ISD::LOAD: {
7777 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007778 SDValue Ch = LD->getChain();
7779 SDValue Ptr = LD->getBasePtr();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007780 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007781 const Value *SV = LD->getSrcValue();
7782 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007783 MVT MemoryVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007784 unsigned Alignment = LD->getAlignment();
7785 bool isVolatile = LD->isVolatile();
7786
Dan Gohman29c3cef2008-08-14 20:04:46 +00007787 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007788 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Dan Gohman29c3cef2008-08-14 20:04:46 +00007789
7790 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7791 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7792 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7793
Dale Johannesend8fd5342009-02-02 22:49:46 +00007794 Lo = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007795 NewVT_Lo, Ch, Ptr, Offset,
7796 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7797 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dale Johannesend8fd5342009-02-02 22:49:46 +00007798 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00007799 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007800 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00007801 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007802 Hi = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007803 NewVT_Hi, Ch, Ptr, Offset,
7804 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Scott Michel91099d62009-02-17 22:15:04 +00007805
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007806 // Build a factor node to remember that this load is independent of the
7807 // other one.
Dale Johannesend8fd5342009-02-02 22:49:46 +00007808 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007809 Hi.getValue(1));
Scott Michel91099d62009-02-17 22:15:04 +00007810
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007811 // Remember that we legalized the chain.
7812 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
7813 break;
7814 }
7815 case ISD::BIT_CONVERT: {
7816 // We know the result is a vector. The input may be either a vector or a
7817 // scalar value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007818 SDValue InOp = Node->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007819 if (!InOp.getValueType().isVector() ||
7820 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007821 // The input is a scalar or single-element vector.
7822 // Lower to a store/load so that it can be split.
7823 // FIXME: this could be improved probably.
Mon P Wang36b59ac2008-07-15 05:28:34 +00007824 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
7825 Op.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00007826 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greif1c80d112008-08-28 21:40:38 +00007827 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007828
Dale Johannesend8fd5342009-02-02 22:49:46 +00007829 SDValue St = DAG.getStore(DAG.getEntryNode(), dl,
Dan Gohman12a9c082008-02-06 22:27:42 +00007830 InOp, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007831 PseudoSourceValue::getFixedStack(FI), 0);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007832 InOp = DAG.getLoad(Op.getValueType(), dl, St, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007833 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007834 }
7835 // Split the vector and convert each of the pieces now.
7836 SplitVectorOp(InOp, Lo, Hi);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007837 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Lo, Lo);
7838 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Hi, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007839 break;
7840 }
7841 }
Scott Michel91099d62009-02-17 22:15:04 +00007842
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007843 // Remember in a map if the values will be reused later.
Scott Michel91099d62009-02-17 22:15:04 +00007844 bool isNew =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007845 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
7846 assert(isNew && "Value already split?!?");
Evan Chengcf576fd2008-11-24 07:09:49 +00007847 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007848}
7849
7850
7851/// ScalarizeVectorOp - Given an operand of single-element vector type
7852/// (e.g. v1f32), convert it into the equivalent operation that returns a
7853/// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007854SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00007855 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greif1c80d112008-08-28 21:40:38 +00007856 SDNode *Node = Op.getNode();
Dale Johannesend8fd5342009-02-02 22:49:46 +00007857 DebugLoc dl = Node->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00007858 MVT NewVT = Op.getValueType().getVectorElementType();
7859 assert(Op.getValueType().getVectorNumElements() == 1);
Scott Michel91099d62009-02-17 22:15:04 +00007860
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007861 // See if we already scalarized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007862 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007863 if (I != ScalarizedNodes.end()) return I->second;
Scott Michel91099d62009-02-17 22:15:04 +00007864
Dan Gohman8181bd12008-07-27 21:46:04 +00007865 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007866 switch (Node->getOpcode()) {
Scott Michel91099d62009-02-17 22:15:04 +00007867 default:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007868#ifndef NDEBUG
7869 Node->dump(&DAG); cerr << "\n";
7870#endif
7871 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7872 case ISD::ADD:
7873 case ISD::FADD:
7874 case ISD::SUB:
7875 case ISD::FSUB:
7876 case ISD::MUL:
7877 case ISD::FMUL:
7878 case ISD::SDIV:
7879 case ISD::UDIV:
7880 case ISD::FDIV:
7881 case ISD::SREM:
7882 case ISD::UREM:
7883 case ISD::FREM:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007884 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007885 case ISD::AND:
7886 case ISD::OR:
7887 case ISD::XOR:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007888 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michel91099d62009-02-17 22:15:04 +00007889 NewVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007890 ScalarizeVectorOp(Node->getOperand(0)),
7891 ScalarizeVectorOp(Node->getOperand(1)));
7892 break;
7893 case ISD::FNEG:
7894 case ISD::FABS:
7895 case ISD::FSQRT:
7896 case ISD::FSIN:
7897 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007898 case ISD::FLOG:
7899 case ISD::FLOG2:
7900 case ISD::FLOG10:
7901 case ISD::FEXP:
7902 case ISD::FEXP2:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007903 case ISD::FP_TO_SINT:
7904 case ISD::FP_TO_UINT:
7905 case ISD::SINT_TO_FP:
7906 case ISD::UINT_TO_FP:
7907 case ISD::SIGN_EXTEND:
7908 case ISD::ZERO_EXTEND:
7909 case ISD::ANY_EXTEND:
7910 case ISD::TRUNCATE:
7911 case ISD::FP_EXTEND:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007912 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michel91099d62009-02-17 22:15:04 +00007913 NewVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007914 ScalarizeVectorOp(Node->getOperand(0)));
7915 break;
Mon P Wang73d31542008-11-10 20:54:11 +00007916 case ISD::CONVERT_RNDSAT: {
7917 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
Dale Johannesen564036c2009-02-04 00:13:36 +00007918 Result = DAG.getConvertRndSat(NewVT, dl, Op0,
Mon P Wang73d31542008-11-10 20:54:11 +00007919 DAG.getValueType(NewVT),
7920 DAG.getValueType(Op0.getValueType()),
7921 Node->getOperand(3),
7922 Node->getOperand(4),
7923 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7924 break;
7925 }
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007926 case ISD::FPOWI:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007927 case ISD::FP_ROUND:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007928 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michel91099d62009-02-17 22:15:04 +00007929 NewVT,
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007930 ScalarizeVectorOp(Node->getOperand(0)),
7931 Node->getOperand(1));
7932 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007933 case ISD::LOAD: {
7934 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007935 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7936 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman29c3cef2008-08-14 20:04:46 +00007937 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007938 const Value *SV = LD->getSrcValue();
7939 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007940 MVT MemoryVT = LD->getMemoryVT();
7941 unsigned Alignment = LD->getAlignment();
7942 bool isVolatile = LD->isVolatile();
7943
7944 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesen9bfc0172009-02-06 23:05:02 +00007945 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Scott Michel91099d62009-02-17 22:15:04 +00007946
Dale Johannesend8fd5342009-02-02 22:49:46 +00007947 Result = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman29c3cef2008-08-14 20:04:46 +00007948 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7949 MemoryVT.getVectorElementType(),
7950 isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007951
7952 // Remember that we legalized the chain.
7953 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7954 break;
7955 }
7956 case ISD::BUILD_VECTOR:
7957 Result = Node->getOperand(0);
7958 break;
7959 case ISD::INSERT_VECTOR_ELT:
7960 // Returning the inserted scalar element.
7961 Result = Node->getOperand(1);
7962 break;
7963 case ISD::CONCAT_VECTORS:
7964 assert(Node->getOperand(0).getValueType() == NewVT &&
7965 "Concat of non-legal vectors not yet supported!");
7966 Result = Node->getOperand(0);
7967 break;
7968 case ISD::VECTOR_SHUFFLE: {
7969 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007970 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007971 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007972 Result = ScalarizeVectorOp(Node->getOperand(1));
7973 else
7974 Result = ScalarizeVectorOp(Node->getOperand(0));
7975 break;
7976 }
7977 case ISD::EXTRACT_SUBVECTOR:
Scott Michel91099d62009-02-17 22:15:04 +00007978 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT,
Dale Johannesend8fd5342009-02-02 22:49:46 +00007979 Node->getOperand(0), Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007980 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007981 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007982 SDValue Op0 = Op.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007983 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng2cc16e72008-05-16 17:19:05 +00007984 Op0 = ScalarizeVectorOp(Op0);
Dale Johannesend8fd5342009-02-02 22:49:46 +00007985 Result = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007986 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007987 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007988 case ISD::SELECT:
Dale Johannesend8fd5342009-02-02 22:49:46 +00007989 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Op.getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007990 ScalarizeVectorOp(Op.getOperand(1)),
7991 ScalarizeVectorOp(Op.getOperand(2)));
7992 break;
Chris Lattnerc7471452008-06-30 02:43:01 +00007993 case ISD::SELECT_CC:
Scott Michel91099d62009-02-17 22:15:04 +00007994 Result = DAG.getNode(ISD::SELECT_CC, dl, NewVT, Node->getOperand(0),
Chris Lattnerc7471452008-06-30 02:43:01 +00007995 Node->getOperand(1),
7996 ScalarizeVectorOp(Op.getOperand(2)),
7997 ScalarizeVectorOp(Op.getOperand(3)),
7998 Node->getOperand(4));
7999 break;
Nate Begeman78ca4f92008-05-12 23:09:43 +00008000 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00008001 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
8002 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008003 Result = DAG.getNode(ISD::SETCC, dl,
8004 TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands4a361272009-01-01 15:52:00 +00008005 Op0, Op1, Op.getOperand(2));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008006 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Result,
Nate Begeman78ca4f92008-05-12 23:09:43 +00008007 DAG.getConstant(-1ULL, NewVT),
8008 DAG.getConstant(0ULL, NewVT));
8009 break;
8010 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008011 }
8012
8013 if (TLI.isTypeLegal(NewVT))
8014 Result = LegalizeOp(Result);
8015 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
8016 assert(isNew && "Value already scalarized?");
Evan Chengcf576fd2008-11-24 07:09:49 +00008017 isNew = isNew;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008018 return Result;
8019}
8020
8021
Mon P Wang1448aad2008-10-30 08:01:45 +00008022SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
8023 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
8024 if (I != WidenNodes.end()) return I->second;
Scott Michel91099d62009-02-17 22:15:04 +00008025
Mon P Wang1448aad2008-10-30 08:01:45 +00008026 MVT VT = Op.getValueType();
8027 assert(VT.isVector() && "Cannot widen non-vector type!");
8028
8029 SDValue Result;
8030 SDNode *Node = Op.getNode();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008031 DebugLoc dl = Node->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008032 MVT EVT = VT.getVectorElementType();
8033
8034 unsigned NumElts = VT.getVectorNumElements();
8035 unsigned NewNumElts = WidenVT.getVectorNumElements();
8036 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
8037 assert(NewNumElts < 17);
8038
8039 // When widen is called, it is assumed that it is more efficient to use a
8040 // wide type. The default action is to widen to operation to a wider legal
8041 // vector type and then do the operation if it is legal by calling LegalizeOp
8042 // again. If there is no vector equivalent, we will unroll the operation, do
8043 // it, and rebuild the vector. If most of the operations are vectorizible to
8044 // the legal type, the resulting code will be more efficient. If this is not
8045 // the case, the resulting code will preform badly as we end up generating
8046 // code to pack/unpack the results. It is the function that calls widen
Mon P Wanga5a239f2008-11-06 05:31:54 +00008047 // that is responsible for seeing this doesn't happen.
Mon P Wang1448aad2008-10-30 08:01:45 +00008048 switch (Node->getOpcode()) {
Scott Michel91099d62009-02-17 22:15:04 +00008049 default:
Mon P Wang1448aad2008-10-30 08:01:45 +00008050#ifndef NDEBUG
8051 Node->dump(&DAG);
8052#endif
8053 assert(0 && "Unexpected operation in WidenVectorOp!");
8054 break;
8055 case ISD::CopyFromReg:
Mon P Wang257e1c72008-11-15 06:05:52 +00008056 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang1448aad2008-10-30 08:01:45 +00008057 case ISD::Constant:
8058 case ISD::ConstantFP:
8059 // To build a vector of these elements, clients should call BuildVector
8060 // and with each element instead of creating a node with a vector type
8061 assert(0 && "Unexpected operation in WidenVectorOp!");
8062 case ISD::VAARG:
8063 // Variable Arguments with vector types doesn't make any sense to me
8064 assert(0 && "Unexpected operation in WidenVectorOp!");
8065 break;
Mon P Wang257e1c72008-11-15 06:05:52 +00008066 case ISD::UNDEF:
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008067 Result = DAG.getUNDEF(WidenVT);
Mon P Wang257e1c72008-11-15 06:05:52 +00008068 break;
Mon P Wang1448aad2008-10-30 08:01:45 +00008069 case ISD::BUILD_VECTOR: {
8070 // Build a vector with undefined for the new nodes
8071 SDValueVector NewOps(Node->op_begin(), Node->op_end());
8072 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008073 NewOps.push_back(DAG.getUNDEF(EVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008074 }
Evan Cheng907a2d22009-02-25 22:49:59 +00008075 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT,
8076 &NewOps[0], NewOps.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008077 break;
8078 }
8079 case ISD::INSERT_VECTOR_ELT: {
8080 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008081 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, WidenVT, Tmp1,
Mon P Wang1448aad2008-10-30 08:01:45 +00008082 Node->getOperand(1), Node->getOperand(2));
8083 break;
8084 }
8085 case ISD::VECTOR_SHUFFLE: {
8086 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8087 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8088 // VECTOR_SHUFFLE 3rd operand must be a constant build vector that is
8089 // used as permutation array. We build the vector here instead of widening
8090 // because we don't want to legalize and have it turned to something else.
8091 SDValue PermOp = Node->getOperand(2);
8092 SDValueVector NewOps;
8093 MVT PVT = PermOp.getValueType().getVectorElementType();
8094 for (unsigned i = 0; i < NumElts; ++i) {
8095 if (PermOp.getOperand(i).getOpcode() == ISD::UNDEF) {
8096 NewOps.push_back(PermOp.getOperand(i));
8097 } else {
8098 unsigned Idx =
Mon P Wangec428ad2008-12-13 08:15:14 +00008099 cast<ConstantSDNode>(PermOp.getOperand(i))->getZExtValue();
Mon P Wang1448aad2008-10-30 08:01:45 +00008100 if (Idx < NumElts) {
8101 NewOps.push_back(PermOp.getOperand(i));
8102 }
8103 else {
8104 NewOps.push_back(DAG.getConstant(Idx + NewNumElts - NumElts,
8105 PermOp.getOperand(i).getValueType()));
Scott Michel91099d62009-02-17 22:15:04 +00008106 }
Mon P Wang1448aad2008-10-30 08:01:45 +00008107 }
8108 }
8109 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008110 NewOps.push_back(DAG.getUNDEF(PVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008111 }
Scott Michel91099d62009-02-17 22:15:04 +00008112
Evan Cheng907a2d22009-02-25 22:49:59 +00008113 SDValue Tmp3 = DAG.getNode(ISD::BUILD_VECTOR, dl,
8114 MVT::getVectorVT(PVT, NewOps.size()),
8115 &NewOps[0], NewOps.size());
Scott Michel91099d62009-02-17 22:15:04 +00008116
Dale Johannesend8fd5342009-02-02 22:49:46 +00008117 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, WidenVT, Tmp1, Tmp2, Tmp3);
Mon P Wang1448aad2008-10-30 08:01:45 +00008118 break;
8119 }
8120 case ISD::LOAD: {
8121 // If the load widen returns true, we can use a single load for the
8122 // vector. Otherwise, it is returning a token factor for multiple
8123 // loads.
8124 SDValue TFOp;
8125 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8126 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8127 else
8128 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8129 break;
8130 }
8131
8132 case ISD::BIT_CONVERT: {
8133 SDValue Tmp1 = Node->getOperand(0);
8134 // Converts between two different types so we need to determine
8135 // the correct widen type for the input operand.
Mon P Wang26342922008-12-18 20:03:17 +00008136 MVT InVT = Tmp1.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00008137 unsigned WidenSize = WidenVT.getSizeInBits();
Mon P Wang26342922008-12-18 20:03:17 +00008138 if (InVT.isVector()) {
8139 MVT InEltVT = InVT.getVectorElementType();
8140 unsigned InEltSize = InEltVT.getSizeInBits();
8141 assert(WidenSize % InEltSize == 0 &&
8142 "can not widen bit convert that are not multiple of element type");
8143 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8144 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8145 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
Dale Johannesend8fd5342009-02-02 22:49:46 +00008146 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Tmp1);
Mon P Wang26342922008-12-18 20:03:17 +00008147 } else {
8148 // If the result size is a multiple of the input size, widen the input
8149 // and then convert.
8150 unsigned InSize = InVT.getSizeInBits();
8151 assert(WidenSize % InSize == 0 &&
8152 "can not widen bit convert that are not multiple of element type");
8153 unsigned NewNumElts = WidenSize / InSize;
8154 SmallVector<SDValue, 16> Ops(NewNumElts);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008155 SDValue UndefVal = DAG.getUNDEF(InVT);
Mon P Wang26342922008-12-18 20:03:17 +00008156 Ops[0] = Tmp1;
8157 for (unsigned i = 1; i < NewNumElts; ++i)
8158 Ops[i] = UndefVal;
Mon P Wang1448aad2008-10-30 08:01:45 +00008159
Mon P Wang26342922008-12-18 20:03:17 +00008160 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
Evan Cheng907a2d22009-02-25 22:49:59 +00008161 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, NewInVT, &Ops[0], NewNumElts);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008162 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Result);
Mon P Wang1448aad2008-10-30 08:01:45 +00008163 }
8164 break;
8165 }
8166
8167 case ISD::SINT_TO_FP:
8168 case ISD::UINT_TO_FP:
8169 case ISD::FP_TO_SINT:
Mon P Wang26342922008-12-18 20:03:17 +00008170 case ISD::FP_TO_UINT:
8171 case ISD::FP_ROUND: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008172 SDValue Tmp1 = Node->getOperand(0);
8173 // Converts between two different types so we need to determine
8174 // the correct widen type for the input operand.
8175 MVT TVT = Tmp1.getValueType();
8176 assert(TVT.isVector() && "can not widen non vector type");
8177 MVT TEVT = TVT.getVectorElementType();
8178 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8179 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8180 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008181 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang1448aad2008-10-30 08:01:45 +00008182 break;
8183 }
8184
8185 case ISD::FP_EXTEND:
8186 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8187 case ISD::TRUNCATE:
8188 case ISD::SIGN_EXTEND:
8189 case ISD::ZERO_EXTEND:
8190 case ISD::ANY_EXTEND:
Mon P Wang1448aad2008-10-30 08:01:45 +00008191 case ISD::SIGN_EXTEND_INREG:
8192 case ISD::FABS:
8193 case ISD::FNEG:
8194 case ISD::FSQRT:
8195 case ISD::FSIN:
Mon P Wang257e1c72008-11-15 06:05:52 +00008196 case ISD::FCOS:
8197 case ISD::CTPOP:
8198 case ISD::CTTZ:
8199 case ISD::CTLZ: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008200 // Unary op widening
Mon P Wang26342922008-12-18 20:03:17 +00008201 SDValue Tmp1;
Mon P Wang1448aad2008-10-30 08:01:45 +00008202 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8203 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008204 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang1448aad2008-10-30 08:01:45 +00008205 break;
8206 }
Mon P Wang73d31542008-11-10 20:54:11 +00008207 case ISD::CONVERT_RNDSAT: {
8208 SDValue RndOp = Node->getOperand(3);
8209 SDValue SatOp = Node->getOperand(4);
Mon P Wang73d31542008-11-10 20:54:11 +00008210 SDValue SrcOp = Node->getOperand(0);
8211
8212 // Converts between two different types so we need to determine
8213 // the correct widen type for the input operand.
8214 MVT SVT = SrcOp.getValueType();
8215 assert(SVT.isVector() && "can not widen non vector type");
8216 MVT SEVT = SVT.getVectorElementType();
8217 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8218
8219 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8220 assert(SrcOp.getValueType() == WidenVT);
8221 SDValue DTyOp = DAG.getValueType(WidenVT);
8222 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8223 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8224
Dale Johannesen564036c2009-02-04 00:13:36 +00008225 Result = DAG.getConvertRndSat(WidenVT, dl, SrcOp, DTyOp, STyOp,
Mon P Wang73d31542008-11-10 20:54:11 +00008226 RndOp, SatOp, CvtCode);
Mon P Wang73d31542008-11-10 20:54:11 +00008227 break;
8228 }
Mon P Wang1448aad2008-10-30 08:01:45 +00008229 case ISD::FPOW:
Scott Michel91099d62009-02-17 22:15:04 +00008230 case ISD::FPOWI:
Mon P Wang1448aad2008-10-30 08:01:45 +00008231 case ISD::ADD:
8232 case ISD::SUB:
8233 case ISD::MUL:
8234 case ISD::MULHS:
8235 case ISD::MULHU:
8236 case ISD::AND:
8237 case ISD::OR:
8238 case ISD::XOR:
8239 case ISD::FADD:
8240 case ISD::FSUB:
8241 case ISD::FMUL:
8242 case ISD::SDIV:
8243 case ISD::SREM:
8244 case ISD::FDIV:
8245 case ISD::FREM:
8246 case ISD::FCOPYSIGN:
8247 case ISD::UDIV:
8248 case ISD::UREM:
8249 case ISD::BSWAP: {
8250 // Binary op widening
Mon P Wang1448aad2008-10-30 08:01:45 +00008251 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8252 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8253 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008254 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2);
Mon P Wang1448aad2008-10-30 08:01:45 +00008255 break;
8256 }
8257
8258 case ISD::SHL:
8259 case ISD::SRA:
8260 case ISD::SRL: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008261 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8262 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangd5638262008-12-02 07:35:08 +00008263 SDValue ShOp = Node->getOperand(1);
8264 MVT ShVT = ShOp.getValueType();
8265 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8266 WidenVT.getVectorNumElements());
8267 ShOp = WidenVectorOp(ShOp, NewShVT);
8268 assert(ShOp.getValueType() == NewShVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008269 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, ShOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008270 break;
8271 }
Mon P Wangd5638262008-12-02 07:35:08 +00008272
Mon P Wang1448aad2008-10-30 08:01:45 +00008273 case ISD::EXTRACT_VECTOR_ELT: {
8274 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8275 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008276 Result = DAG.getNode(Node->getOpcode(), dl, EVT, Tmp1, Node->getOperand(1));
Mon P Wang1448aad2008-10-30 08:01:45 +00008277 break;
8278 }
8279 case ISD::CONCAT_VECTORS: {
8280 // We concurrently support only widen on a multiple of the incoming vector.
8281 // We could widen on a multiple of the incoming operand if necessary.
8282 unsigned NumConcat = NewNumElts / NumElts;
8283 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008284 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang1448aad2008-10-30 08:01:45 +00008285 SmallVector<SDValue, 8> MOps;
8286 MOps.push_back(Op);
8287 for (unsigned i = 1; i != NumConcat; ++i) {
8288 MOps.push_back(UndefVal);
8289 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00008290 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang1448aad2008-10-30 08:01:45 +00008291 &MOps[0], MOps.size()));
8292 break;
8293 }
8294 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang257e1c72008-11-15 06:05:52 +00008295 SDValue Tmp1 = Node->getOperand(0);
8296 SDValue Idx = Node->getOperand(1);
8297 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8298 if (CIdx && CIdx->getZExtValue() == 0) {
8299 // Since we are access the start of the vector, the incoming
8300 // vector type might be the proper.
8301 MVT Tmp1VT = Tmp1.getValueType();
8302 if (Tmp1VT == WidenVT)
8303 return Tmp1;
8304 else {
8305 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8306 if (Tmp1VTNumElts < NewNumElts)
8307 Result = WidenVectorOp(Tmp1, WidenVT);
8308 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00008309 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, Tmp1, Idx);
Mon P Wang257e1c72008-11-15 06:05:52 +00008310 }
8311 } else if (NewNumElts % NumElts == 0) {
8312 // Widen the extracted subvector.
8313 unsigned NumConcat = NewNumElts / NumElts;
Dale Johannesen9bfc0172009-02-06 23:05:02 +00008314 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang257e1c72008-11-15 06:05:52 +00008315 SmallVector<SDValue, 8> MOps;
8316 MOps.push_back(Op);
8317 for (unsigned i = 1; i != NumConcat; ++i) {
8318 MOps.push_back(UndefVal);
8319 }
Dale Johannesend8fd5342009-02-02 22:49:46 +00008320 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang257e1c72008-11-15 06:05:52 +00008321 &MOps[0], MOps.size()));
8322 } else {
8323 assert(0 && "can not widen extract subvector");
8324 // This could be implemented using insert and build vector but I would
8325 // like to see when this happens.
8326 }
Mon P Wang1448aad2008-10-30 08:01:45 +00008327 break;
8328 }
8329
8330 case ISD::SELECT: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008331 // Determine new condition widen type and widen
8332 SDValue Cond1 = Node->getOperand(0);
8333 MVT CondVT = Cond1.getValueType();
8334 assert(CondVT.isVector() && "can not widen non vector type");
8335 MVT CondEVT = CondVT.getVectorElementType();
8336 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8337 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8338 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8339
8340 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8341 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8342 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008343 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang1448aad2008-10-30 08:01:45 +00008344 break;
8345 }
Scott Michel91099d62009-02-17 22:15:04 +00008346
Mon P Wang1448aad2008-10-30 08:01:45 +00008347 case ISD::SELECT_CC: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008348 // Determine new condition widen type and widen
8349 SDValue Cond1 = Node->getOperand(0);
8350 SDValue Cond2 = Node->getOperand(1);
8351 MVT CondVT = Cond1.getValueType();
8352 assert(CondVT.isVector() && "can not widen non vector type");
8353 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8354 MVT CondEVT = CondVT.getVectorElementType();
8355 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8356 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8357 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8358 assert(Cond1.getValueType() == CondWidenVT &&
8359 Cond2.getValueType() == CondWidenVT && "condition not widen");
8360
8361 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8362 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8363 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8364 "operands not widen");
Dale Johannesend8fd5342009-02-02 22:49:46 +00008365 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Cond2, Tmp1,
Mon P Wang1448aad2008-10-30 08:01:45 +00008366 Tmp2, Node->getOperand(4));
Mon P Wang1448aad2008-10-30 08:01:45 +00008367 break;
Mon P Wang42ac14e2008-10-30 18:21:52 +00008368 }
8369 case ISD::VSETCC: {
8370 // Determine widen for the operand
8371 SDValue Tmp1 = Node->getOperand(0);
8372 MVT TmpVT = Tmp1.getValueType();
8373 assert(TmpVT.isVector() && "can not widen non vector type");
8374 MVT TmpEVT = TmpVT.getVectorElementType();
8375 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8376 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8377 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008378 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2,
Mon P Wang42ac14e2008-10-30 18:21:52 +00008379 Node->getOperand(2));
Mon P Wang1448aad2008-10-30 08:01:45 +00008380 break;
8381 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00008382 case ISD::ATOMIC_CMP_SWAP:
8383 case ISD::ATOMIC_LOAD_ADD:
8384 case ISD::ATOMIC_LOAD_SUB:
8385 case ISD::ATOMIC_LOAD_AND:
8386 case ISD::ATOMIC_LOAD_OR:
8387 case ISD::ATOMIC_LOAD_XOR:
8388 case ISD::ATOMIC_LOAD_NAND:
8389 case ISD::ATOMIC_LOAD_MIN:
8390 case ISD::ATOMIC_LOAD_MAX:
8391 case ISD::ATOMIC_LOAD_UMIN:
8392 case ISD::ATOMIC_LOAD_UMAX:
8393 case ISD::ATOMIC_SWAP: {
Mon P Wang1448aad2008-10-30 08:01:45 +00008394 // For now, we assume that using vectors for these operations don't make
8395 // much sense so we just split it. We return an empty result
8396 SDValue X, Y;
8397 SplitVectorOp(Op, X, Y);
8398 return Result;
8399 break;
8400 }
8401
8402 } // end switch (Node->getOpcode())
8403
Scott Michel91099d62009-02-17 22:15:04 +00008404 assert(Result.getNode() && "Didn't set a result!");
Mon P Wang1448aad2008-10-30 08:01:45 +00008405 if (Result != Op)
8406 Result = LegalizeOp(Result);
8407
Mon P Wanga5a239f2008-11-06 05:31:54 +00008408 AddWidenedOperand(Op, Result);
Mon P Wang1448aad2008-10-30 08:01:45 +00008409 return Result;
8410}
8411
8412// Utility function to find a legal vector type and its associated element
8413// type from a preferred width and whose vector type must be the same size
8414// as the VVT.
8415// TLI: Target lowering used to determine legal types
8416// Width: Preferred width of element type
8417// VVT: Vector value type whose size we must match.
8418// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0275b132009-01-15 16:43:02 +00008419static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang1448aad2008-10-30 08:01:45 +00008420 MVT& EVT, MVT& VecEVT) {
8421 // We start with the preferred width, make it a power of 2 and see if
8422 // we can find a vector type of that width. If not, we reduce it by
8423 // another power of 2. If we have widen the type, a vector of bytes should
8424 // always be legal.
8425 assert(TLI.isTypeLegal(VVT));
8426 unsigned EWidth = Width + 1;
8427 do {
8428 assert(EWidth > 0);
8429 EWidth = (1 << Log2_32(EWidth-1));
8430 EVT = MVT::getIntegerVT(EWidth);
8431 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8432 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8433 } while (!TLI.isTypeLegal(VecEVT) ||
8434 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8435}
8436
8437SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8438 SDValue Chain,
8439 SDValue BasePtr,
8440 const Value *SV,
8441 int SVOffset,
8442 unsigned Alignment,
8443 bool isVolatile,
8444 unsigned LdWidth,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008445 MVT ResType,
8446 DebugLoc dl) {
Mon P Wang1448aad2008-10-30 08:01:45 +00008447 // We assume that we have good rules to handle loading power of two loads so
8448 // we break down the operations to power of 2 loads. The strategy is to
8449 // load the largest power of 2 that we can easily transform to a legal vector
8450 // and then insert into that vector, and the cast the result into the legal
8451 // vector that we want. This avoids unnecessary stack converts.
8452 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8453 // the load is nonvolatile, we an use a wider load for the value.
8454 // Find a vector length we can load a large chunk
8455 MVT EVT, VecEVT;
8456 unsigned EVTWidth;
8457 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8458 EVTWidth = EVT.getSizeInBits();
8459
Dale Johannesend8fd5342009-02-02 22:49:46 +00008460 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV, SVOffset,
Mon P Wang1448aad2008-10-30 08:01:45 +00008461 isVolatile, Alignment);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008462 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecEVT, LdOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008463 LdChain.push_back(LdOp.getValue(1));
Scott Michel91099d62009-02-17 22:15:04 +00008464
Mon P Wang1448aad2008-10-30 08:01:45 +00008465 // Check if we can load the element with one instruction
8466 if (LdWidth == EVTWidth) {
Dale Johannesend8fd5342009-02-02 22:49:46 +00008467 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008468 }
8469
8470 // The vector element order is endianness dependent.
8471 unsigned Idx = 1;
8472 LdWidth -= EVTWidth;
8473 unsigned Offset = 0;
Scott Michel91099d62009-02-17 22:15:04 +00008474
Mon P Wang1448aad2008-10-30 08:01:45 +00008475 while (LdWidth > 0) {
8476 unsigned Increment = EVTWidth / 8;
8477 Offset += Increment;
Dale Johannesend8fd5342009-02-02 22:49:46 +00008478 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang1448aad2008-10-30 08:01:45 +00008479 DAG.getIntPtrConstant(Increment));
8480
8481 if (LdWidth < EVTWidth) {
8482 // Our current type we are using is too large, use a smaller size by
8483 // using a smaller power of 2
8484 unsigned oEVTWidth = EVTWidth;
8485 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8486 EVTWidth = EVT.getSizeInBits();
8487 // Readjust position and vector position based on new load type
Mon P Wang257e1c72008-11-15 06:05:52 +00008488 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008489 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008490 }
Scott Michel91099d62009-02-17 22:15:04 +00008491
Dale Johannesend8fd5342009-02-02 22:49:46 +00008492 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV,
Mon P Wang1448aad2008-10-30 08:01:45 +00008493 SVOffset+Offset, isVolatile,
8494 MinAlign(Alignment, Offset));
8495 LdChain.push_back(LdOp.getValue(1));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008496 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecEVT, VecOp, LdOp,
Mon P Wang1448aad2008-10-30 08:01:45 +00008497 DAG.getIntPtrConstant(Idx++));
Scott Michel91099d62009-02-17 22:15:04 +00008498
Mon P Wang1448aad2008-10-30 08:01:45 +00008499 LdWidth -= EVTWidth;
8500 }
8501
Dale Johannesend8fd5342009-02-02 22:49:46 +00008502 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008503}
8504
8505bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8506 SDValue& TFOp,
8507 SDValue Op,
8508 MVT NVT) {
8509 // TODO: Add support for ConcatVec and the ability to load many vector
8510 // types (e.g., v4i8). This will not work when a vector register
8511 // to memory mapping is strange (e.g., vector elements are not
8512 // stored in some sequential order).
8513
Scott Michel91099d62009-02-17 22:15:04 +00008514 // It must be true that the widen vector type is bigger than where
Mon P Wang1448aad2008-10-30 08:01:45 +00008515 // we need to load from.
8516 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8517 MVT LdVT = LD->getMemoryVT();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008518 DebugLoc dl = LD->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008519 assert(LdVT.isVector() && NVT.isVector());
8520 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
Scott Michel91099d62009-02-17 22:15:04 +00008521
Mon P Wang1448aad2008-10-30 08:01:45 +00008522 // Load information
8523 SDValue Chain = LD->getChain();
8524 SDValue BasePtr = LD->getBasePtr();
8525 int SVOffset = LD->getSrcValueOffset();
8526 unsigned Alignment = LD->getAlignment();
8527 bool isVolatile = LD->isVolatile();
8528 const Value *SV = LD->getSrcValue();
8529 unsigned int LdWidth = LdVT.getSizeInBits();
Scott Michel91099d62009-02-17 22:15:04 +00008530
Mon P Wang1448aad2008-10-30 08:01:45 +00008531 // Load value as a large register
8532 SDValueVector LdChain;
8533 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008534 Alignment, isVolatile, LdWidth, NVT, dl);
Mon P Wang1448aad2008-10-30 08:01:45 +00008535
8536 if (LdChain.size() == 1) {
8537 TFOp = LdChain[0];
8538 return true;
8539 }
8540 else {
Scott Michel91099d62009-02-17 22:15:04 +00008541 TFOp=DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008542 &LdChain[0], LdChain.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008543 return false;
8544 }
8545}
8546
8547
8548void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8549 SDValue Chain,
8550 SDValue BasePtr,
8551 const Value *SV,
8552 int SVOffset,
8553 unsigned Alignment,
8554 bool isVolatile,
Mon P Wang257e1c72008-11-15 06:05:52 +00008555 SDValue ValOp,
Dale Johannesend8fd5342009-02-02 22:49:46 +00008556 unsigned StWidth,
8557 DebugLoc dl) {
Mon P Wang1448aad2008-10-30 08:01:45 +00008558 // Breaks the stores into a series of power of 2 width stores. For any
8559 // width, we convert the vector to the vector of element size that we
8560 // want to store. This avoids requiring a stack convert.
Scott Michel91099d62009-02-17 22:15:04 +00008561
Mon P Wang1448aad2008-10-30 08:01:45 +00008562 // Find a width of the element type we can store with
8563 MVT VVT = ValOp.getValueType();
8564 MVT EVT, VecEVT;
8565 unsigned EVTWidth;
8566 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8567 EVTWidth = EVT.getSizeInBits();
8568
Dale Johannesend8fd5342009-02-02 22:49:46 +00008569 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, ValOp);
8570 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang927daf52008-11-06 22:52:21 +00008571 DAG.getIntPtrConstant(0));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008572 SDValue StOp = DAG.getStore(Chain, dl, EOp, BasePtr, SV, SVOffset,
Mon P Wang1448aad2008-10-30 08:01:45 +00008573 isVolatile, Alignment);
8574 StChain.push_back(StOp);
8575
8576 // Check if we are done
8577 if (StWidth == EVTWidth) {
8578 return;
8579 }
Scott Michel91099d62009-02-17 22:15:04 +00008580
Mon P Wang1448aad2008-10-30 08:01:45 +00008581 unsigned Idx = 1;
8582 StWidth -= EVTWidth;
8583 unsigned Offset = 0;
Scott Michel91099d62009-02-17 22:15:04 +00008584
Mon P Wang1448aad2008-10-30 08:01:45 +00008585 while (StWidth > 0) {
8586 unsigned Increment = EVTWidth / 8;
8587 Offset += Increment;
Dale Johannesend8fd5342009-02-02 22:49:46 +00008588 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang1448aad2008-10-30 08:01:45 +00008589 DAG.getIntPtrConstant(Increment));
Scott Michel91099d62009-02-17 22:15:04 +00008590
Mon P Wang1448aad2008-10-30 08:01:45 +00008591 if (StWidth < EVTWidth) {
8592 // Our current type we are using is too large, use a smaller size by
8593 // using a smaller power of 2
8594 unsigned oEVTWidth = EVTWidth;
8595 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8596 EVTWidth = EVT.getSizeInBits();
8597 // Readjust position and vector position based on new load type
Mon P Wang257e1c72008-11-15 06:05:52 +00008598 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesend8fd5342009-02-02 22:49:46 +00008599 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang1448aad2008-10-30 08:01:45 +00008600 }
Scott Michel91099d62009-02-17 22:15:04 +00008601
Dale Johannesend8fd5342009-02-02 22:49:46 +00008602 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang257e1c72008-11-15 06:05:52 +00008603 DAG.getIntPtrConstant(Idx++));
Dale Johannesend8fd5342009-02-02 22:49:46 +00008604 StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr, SV,
Mon P Wang1448aad2008-10-30 08:01:45 +00008605 SVOffset + Offset, isVolatile,
8606 MinAlign(Alignment, Offset)));
8607 StWidth -= EVTWidth;
8608 }
8609}
8610
8611
8612SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
8613 SDValue Chain,
8614 SDValue BasePtr) {
8615 // TODO: It might be cleaner if we can use SplitVector and have more legal
8616 // vector types that can be stored into memory (e.g., v4xi8 can
8617 // be stored as a word). This will not work when a vector register
8618 // to memory mapping is strange (e.g., vector elements are not
8619 // stored in some sequential order).
Scott Michel91099d62009-02-17 22:15:04 +00008620
Mon P Wang1448aad2008-10-30 08:01:45 +00008621 MVT StVT = ST->getMemoryVT();
8622 SDValue ValOp = ST->getValue();
Dale Johannesend8fd5342009-02-02 22:49:46 +00008623 DebugLoc dl = ST->getDebugLoc();
Mon P Wang1448aad2008-10-30 08:01:45 +00008624
8625 // Check if we have widen this node with another value
8626 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8627 if (I != WidenNodes.end())
8628 ValOp = I->second;
Scott Michel91099d62009-02-17 22:15:04 +00008629
Mon P Wang1448aad2008-10-30 08:01:45 +00008630 MVT VVT = ValOp.getValueType();
8631
8632 // It must be true that we the widen vector type is bigger than where
8633 // we need to store.
8634 assert(StVT.isVector() && VVT.isVector());
Dan Gohman783a32c2009-01-28 03:10:52 +00008635 assert(StVT.bitsLT(VVT));
Mon P Wang1448aad2008-10-30 08:01:45 +00008636 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8637
8638 // Store value
8639 SDValueVector StChain;
8640 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8641 ST->getSrcValueOffset(), ST->getAlignment(),
Dale Johannesend8fd5342009-02-02 22:49:46 +00008642 ST->isVolatile(), ValOp, StVT.getSizeInBits(), dl);
Mon P Wang1448aad2008-10-30 08:01:45 +00008643 if (StChain.size() == 1)
8644 return StChain[0];
Scott Michel91099d62009-02-17 22:15:04 +00008645 else
Dale Johannesend8fd5342009-02-02 22:49:46 +00008646 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8647 &StChain[0], StChain.size());
Mon P Wang1448aad2008-10-30 08:01:45 +00008648}
8649
8650
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008651// SelectionDAG::Legalize - This is the entry point for the file.
8652//
Bill Wendling123374a2009-02-24 02:35:30 +00008653void SelectionDAG::Legalize(bool TypesNeedLegalizing, bool Fast) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008654 /// run - This is the main entry point to this class.
8655 ///
Bill Wendling123374a2009-02-24 02:35:30 +00008656 SelectionDAGLegalize(*this, TypesNeedLegalizing, Fast).LegalizeDAG();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008657}
8658