blob: 4c49724bb7d6312daeaaed882af15999b7e6d650 [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000017#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Devang Patel83489bb2009-01-13 00:35:13 +000019#include "llvm/CodeGen/DwarfWriter.h"
20#include "llvm/Analysis/DebugInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000021#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Cheng61bbbab2007-08-16 23:50:06 +000022#include "llvm/Target/TargetFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000023#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000024#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000025#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000026#include "llvm/Target/TargetOptions.h"
Dan Gohman707e0182008-04-12 04:36:06 +000027#include "llvm/Target/TargetSubtarget.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000028#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000029#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000030#include "llvm/DerivedTypes.h"
Devang Patel83489bb2009-01-13 00:35:13 +000031#include "llvm/GlobalVariable.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000032#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000033#include "llvm/Support/Compiler.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000034#include "llvm/Support/MathExtras.h"
Chris Lattner79715142007-02-03 01:12:36 +000035#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000036#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000037#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng033e6812006-03-24 01:17:21 +000038#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000039using namespace llvm;
40
41//===----------------------------------------------------------------------===//
42/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
43/// hacks on it until the target machine can handle it. This involves
44/// eliminating value sizes the machine cannot handle (promoting small sizes to
45/// large sizes or splitting up large values into small values) as well as
46/// eliminating operations the machine cannot handle.
47///
48/// This code also does a small amount of optimization and recognition of idioms
49/// as part of its processing. For example, if a target does not support a
50/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
51/// will attempt merge setcc and brc instructions into brcc's.
52///
53namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000054class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000055 TargetLowering &TLI;
56 SelectionDAG &DAG;
Duncan Sandsb6862bb2008-12-14 09:43:15 +000057 bool TypesNeedLegalizing;
Chris Lattner3e928bb2005-01-07 07:47:09 +000058
Chris Lattner6831a812006-02-13 09:18:02 +000059 // Libcall insertion helpers.
60
61 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
62 /// legalized. We use this to ensure that calls are properly serialized
63 /// against each other, including inserted libcalls.
Dan Gohman475871a2008-07-27 21:46:04 +000064 SDValue LastCALLSEQ_END;
Chris Lattner6831a812006-02-13 09:18:02 +000065
66 /// IsLegalizingCall - This member is used *only* for purposes of providing
67 /// helpful assertions that a libcall isn't created while another call is
68 /// being legalized (which could lead to non-serialized call sequences).
69 bool IsLegalizingCall;
70
Chris Lattner3e928bb2005-01-07 07:47:09 +000071 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000072 Legal, // The target natively supports this operation.
73 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000074 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000075 };
Chris Lattner6831a812006-02-13 09:18:02 +000076
Chris Lattner3e928bb2005-01-07 07:47:09 +000077 /// ValueTypeActions - This is a bitvector that contains two bits for each
78 /// value type, where the two bits correspond to the LegalizeAction enum.
79 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000080 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000081
Chris Lattner3e928bb2005-01-07 07:47:09 +000082 /// LegalizedNodes - For nodes that are of legal width, and that have more
83 /// than one use, this map indicates what regularized operand to use. This
84 /// allows us to avoid legalizing the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000085 DenseMap<SDValue, SDValue> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000086
Chris Lattner03c85462005-01-15 05:21:40 +000087 /// PromotedNodes - For nodes that are below legal width, and that have more
88 /// than one use, this map indicates what promoted value to use. This allows
89 /// us to avoid promoting the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000090 DenseMap<SDValue, SDValue> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000091
Chris Lattnerc7029802006-03-18 01:44:44 +000092 /// ExpandedNodes - For nodes that need to be expanded this map indicates
Mon P Wang0c397192008-10-30 08:01:45 +000093 /// which operands are the expanded version of the input. This allows
Chris Lattnerc7029802006-03-18 01:44:44 +000094 /// us to avoid expanding the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000095 DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000096
Chris Lattnerc7029802006-03-18 01:44:44 +000097 /// SplitNodes - For vector nodes that need to be split, this map indicates
Mon P Wang0c397192008-10-30 08:01:45 +000098 /// which operands are the split version of the input. This allows us
Chris Lattnerc7029802006-03-18 01:44:44 +000099 /// to avoid splitting the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +0000100 std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes;
Chris Lattnerc7029802006-03-18 01:44:44 +0000101
Dan Gohman7f321562007-06-25 16:23:39 +0000102 /// ScalarizedNodes - For nodes that need to be converted from vector types to
103 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000104 /// processed to the result.
Dan Gohman475871a2008-07-27 21:46:04 +0000105 std::map<SDValue, SDValue> ScalarizedNodes;
Chris Lattnerc7029802006-03-18 01:44:44 +0000106
Mon P Wangf007a8b2008-11-06 05:31:54 +0000107 /// WidenNodes - For nodes that need to be widened from one vector type to
108 /// another, this contains the mapping of those that we have already widen.
109 /// This allows us to avoid widening more than once.
Mon P Wang0c397192008-10-30 08:01:45 +0000110 std::map<SDValue, SDValue> WidenNodes;
111
Dan Gohman475871a2008-07-27 21:46:04 +0000112 void AddLegalizedOperand(SDValue From, SDValue To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000113 LegalizedNodes.insert(std::make_pair(From, To));
114 // If someone requests legalization of the new node, return itself.
115 if (From != To)
116 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000117 }
Dan Gohman475871a2008-07-27 21:46:04 +0000118 void AddPromotedOperand(SDValue From, SDValue To) {
Dan Gohman6b345ee2008-07-07 17:46:23 +0000119 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Chris Lattner03c85462005-01-15 05:21:40 +0000120 assert(isNew && "Got into the map somehow?");
Evan Cheng24ac4082008-11-24 07:09:49 +0000121 isNew = isNew;
Chris Lattner69a889e2005-12-20 00:53:54 +0000122 // If someone requests legalization of the new node, return itself.
123 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000124 }
Mon P Wangf007a8b2008-11-06 05:31:54 +0000125 void AddWidenedOperand(SDValue From, SDValue To) {
Mon P Wang0c397192008-10-30 08:01:45 +0000126 bool isNew = WidenNodes.insert(std::make_pair(From, To)).second;
127 assert(isNew && "Got into the map somehow?");
Evan Cheng24ac4082008-11-24 07:09:49 +0000128 isNew = isNew;
Mon P Wang0c397192008-10-30 08:01:45 +0000129 // If someone requests legalization of the new node, return itself.
130 LegalizedNodes.insert(std::make_pair(To, To));
131 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000132
Chris Lattner3e928bb2005-01-07 07:47:09 +0000133public:
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000134 explicit SelectionDAGLegalize(SelectionDAG &DAG, bool TypesNeedLegalizing);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000135
Chris Lattner3e928bb2005-01-07 07:47:09 +0000136 /// getTypeAction - Return how we should legalize values of this type, either
137 /// it is already legal or we need to expand it into multiple registers of
138 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000139 LegalizeAction getTypeAction(MVT VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000140 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000141 }
142
143 /// isTypeLegal - Return true if this type is legal on this target.
144 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000145 bool isTypeLegal(MVT VT) const {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000146 return getTypeAction(VT) == Legal;
147 }
148
Chris Lattner3e928bb2005-01-07 07:47:09 +0000149 void LegalizeDAG();
150
Chris Lattner456a93a2006-01-28 07:39:30 +0000151private:
Dan Gohman7f321562007-06-25 16:23:39 +0000152 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000153 /// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000154 void HandleOp(SDValue Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000155
156 /// LegalizeOp - We know that the specified value has a legal type.
157 /// Recursively ensure that the operands have legal types, then return the
158 /// result.
Dan Gohman475871a2008-07-27 21:46:04 +0000159 SDValue LegalizeOp(SDValue O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000160
Dan Gohman82669522007-10-11 23:57:53 +0000161 /// UnrollVectorOp - We know that the given vector has a legal type, however
162 /// the operation it performs is not legal and is an operation that we have
163 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
164 /// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000165 SDValue UnrollVectorOp(SDValue O);
Nate Begeman68679912008-04-25 18:07:40 +0000166
167 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
168 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
169 /// is necessary to spill the vector being inserted into to memory, perform
170 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000171 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000172 SDValue Idx, DebugLoc dl);
Dan Gohman82669522007-10-11 23:57:53 +0000173
Chris Lattnerc7029802006-03-18 01:44:44 +0000174 /// PromoteOp - Given an operation that produces a value in an invalid type,
175 /// promote it to compute the value into a larger type. The produced value
176 /// will have the correct bits for the low portion of the register, but no
177 /// guarantee is made about the top bits: it may be zero, sign-extended, or
178 /// garbage.
Dan Gohman475871a2008-07-27 21:46:04 +0000179 SDValue PromoteOp(SDValue O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000180
Dan Gohman475871a2008-07-27 21:46:04 +0000181 /// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattnerc7029802006-03-18 01:44:44 +0000182 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
Dan Gohman929d3eb2008-10-01 15:07:49 +0000183 /// the LegalizedNodes map is filled in for any results that are not expanded,
Chris Lattnerc7029802006-03-18 01:44:44 +0000184 /// the ExpandedNodes map is filled in for any results that are expanded, and
185 /// the Lo/Hi values are returned. This applies to integer types and Vector
186 /// types.
Dan Gohman475871a2008-07-27 21:46:04 +0000187 void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi);
Chris Lattnerc7029802006-03-18 01:44:44 +0000188
Mon P Wangf007a8b2008-11-06 05:31:54 +0000189 /// WidenVectorOp - Widen a vector operation to a wider type given by WidenVT
190 /// (e.g., v3i32 to v4i32). The produced value will have the correct value
191 /// for the existing elements but no guarantee is made about the new elements
192 /// at the end of the vector: it may be zero, ones, or garbage. This is useful
193 /// when we have an instruction operating on an illegal vector type and we
194 /// want to widen it to do the computation on a legal wider vector type.
Mon P Wang0c397192008-10-30 08:01:45 +0000195 SDValue WidenVectorOp(SDValue Op, MVT WidenVT);
196
Dan Gohman7f321562007-06-25 16:23:39 +0000197 /// SplitVectorOp - Given an operand of vector type, break it down into
198 /// two smaller values.
Dan Gohman475871a2008-07-27 21:46:04 +0000199 void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi);
Chris Lattnerc7029802006-03-18 01:44:44 +0000200
Dan Gohman89b20c02007-06-27 14:06:22 +0000201 /// ScalarizeVectorOp - Given an operand of single-element vector type
202 /// (e.g. v1f32), convert it into the equivalent operation that returns a
203 /// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +0000204 SDValue ScalarizeVectorOp(SDValue O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000205
Mon P Wangf007a8b2008-11-06 05:31:54 +0000206 /// Useful 16 element vector type that is used to pass operands for widening.
Mon P Wang0c397192008-10-30 08:01:45 +0000207 typedef SmallVector<SDValue, 16> SDValueVector;
208
209 /// LoadWidenVectorOp - Load a vector for a wider type. Returns true if
210 /// the LdChain contains a single load and false if it contains a token
211 /// factor for multiple loads. It takes
212 /// Result: location to return the result
213 /// LdChain: location to return the load chain
214 /// Op: load operation to widen
215 /// NVT: widen vector result type we want for the load
216 bool LoadWidenVectorOp(SDValue& Result, SDValue& LdChain,
217 SDValue Op, MVT NVT);
218
219 /// Helper genWidenVectorLoads - Helper function to generate a set of
220 /// loads to load a vector with a resulting wider type. It takes
221 /// LdChain: list of chains for the load we have generated
222 /// Chain: incoming chain for the ld vector
223 /// BasePtr: base pointer to load from
224 /// SV: memory disambiguation source value
225 /// SVOffset: memory disambiugation offset
226 /// Alignment: alignment of the memory
227 /// isVolatile: volatile load
228 /// LdWidth: width of memory that we want to load
229 /// ResType: the wider result result type for the resulting loaded vector
230 SDValue genWidenVectorLoads(SDValueVector& LdChain, SDValue Chain,
231 SDValue BasePtr, const Value *SV,
232 int SVOffset, unsigned Alignment,
233 bool isVolatile, unsigned LdWidth,
234 MVT ResType);
235
236 /// StoreWidenVectorOp - Stores a widen vector into non widen memory
237 /// location. It takes
238 /// ST: store node that we want to replace
239 /// Chain: incoming store chain
240 /// BasePtr: base address of where we want to store into
241 SDValue StoreWidenVectorOp(StoreSDNode *ST, SDValue Chain,
242 SDValue BasePtr);
243
244 /// Helper genWidenVectorStores - Helper function to generate a set of
245 /// stores to store a widen vector into non widen memory
246 // It takes
247 // StChain: list of chains for the stores we have generated
248 // Chain: incoming chain for the ld vector
249 // BasePtr: base pointer to load from
250 // SV: memory disambiguation source value
251 // SVOffset: memory disambiugation offset
252 // Alignment: alignment of the memory
253 // isVolatile: volatile lod
254 // ValOp: value to store
255 // StWidth: width of memory that we want to store
256 void genWidenVectorStores(SDValueVector& StChain, SDValue Chain,
257 SDValue BasePtr, const Value *SV,
258 int SVOffset, unsigned Alignment,
259 bool isVolatile, SDValue ValOp,
260 unsigned StWidth);
261
Duncan Sandsd038e042008-07-21 10:20:31 +0000262 /// isShuffleLegal - Return non-null if a vector shuffle is legal with the
Chris Lattner4352cc92006-04-04 17:23:26 +0000263 /// specified mask and type. Targets can specify exactly which masks they
264 /// support and the code generator is tasked with not creating illegal masks.
265 ///
266 /// Note that this will also return true for shuffles that are promoted to a
267 /// different type.
268 ///
269 /// If this is a legal shuffle, this method returns the (possibly promoted)
270 /// build_vector Mask. If it's not a legal shuffle, it returns null.
Dan Gohman475871a2008-07-27 21:46:04 +0000271 SDNode *isShuffleLegal(MVT VT, SDValue Mask) const;
Chris Lattner4352cc92006-04-04 17:23:26 +0000272
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000273 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000274 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000275
Dale Johannesenbb5da912009-02-02 20:41:04 +0000276 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC,
277 DebugLoc dl);
278 void LegalizeSetCCCondCode(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
279 DebugLoc dl);
280 void LegalizeSetCC(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
281 DebugLoc dl) {
282 LegalizeSetCCOperands(LHS, RHS, CC, dl);
283 LegalizeSetCCCondCode(VT, LHS, RHS, CC, dl);
Evan Cheng7f042682008-10-15 02:05:31 +0000284 }
Nate Begeman750ac1b2006-02-01 07:19:44 +0000285
Dan Gohman475871a2008-07-27 21:46:04 +0000286 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
287 SDValue &Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +0000288 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl);
Chris Lattnercad063f2005-07-16 00:19:57 +0000289
Dan Gohman475871a2008-07-27 21:46:04 +0000290 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT);
291 SDValue ExpandBUILD_VECTOR(SDNode *Node);
292 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Dale Johannesenaf435272009-02-02 19:03:57 +0000293 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy,
294 SDValue Op, DebugLoc dl);
295 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT,
296 DebugLoc dl);
297 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned,
298 DebugLoc dl);
299 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned,
300 DebugLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000301
Dan Gohman475871a2008-07-27 21:46:04 +0000302 SDValue ExpandBSWAP(SDValue Op);
303 SDValue ExpandBitCount(unsigned Opc, SDValue Op);
304 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
305 SDValue &Lo, SDValue &Hi);
306 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
307 SDValue &Lo, SDValue &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000308
Dan Gohman475871a2008-07-27 21:46:04 +0000309 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
310 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000311};
312}
313
Chris Lattner4352cc92006-04-04 17:23:26 +0000314/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
315/// specified mask and type. Targets can specify exactly which masks they
316/// support and the code generator is tasked with not creating illegal masks.
317///
318/// Note that this will also return true for shuffles that are promoted to a
319/// different type.
Dan Gohman475871a2008-07-27 21:46:04 +0000320SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDValue Mask) const {
Chris Lattner4352cc92006-04-04 17:23:26 +0000321 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
322 default: return 0;
323 case TargetLowering::Legal:
324 case TargetLowering::Custom:
325 break;
326 case TargetLowering::Promote: {
327 // If this is promoted to a different type, convert the shuffle mask and
328 // ask if it is legal in the promoted type!
Duncan Sands83ec4b62008-06-06 12:08:01 +0000329 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Duncan Sandsd038e042008-07-21 10:20:31 +0000330 MVT EltVT = NVT.getVectorElementType();
Chris Lattner4352cc92006-04-04 17:23:26 +0000331
332 // If we changed # elements, change the shuffle mask.
333 unsigned NumEltsGrowth =
Duncan Sands83ec4b62008-06-06 12:08:01 +0000334 NVT.getVectorNumElements() / VT.getVectorNumElements();
Chris Lattner4352cc92006-04-04 17:23:26 +0000335 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
336 if (NumEltsGrowth > 1) {
337 // Renumber the elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000338 SmallVector<SDValue, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000339 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +0000340 SDValue InOp = Mask.getOperand(i);
Chris Lattner4352cc92006-04-04 17:23:26 +0000341 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
342 if (InOp.getOpcode() == ISD::UNDEF)
Dale Johannesenbb5da912009-02-02 20:41:04 +0000343 Ops.push_back(DAG.getNode(ISD::UNDEF,
344 InOp.getNode()->getDebugLoc(), EltVT));
Chris Lattner4352cc92006-04-04 17:23:26 +0000345 else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000346 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getZExtValue();
Duncan Sandsd038e042008-07-21 10:20:31 +0000347 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, EltVT));
Chris Lattner4352cc92006-04-04 17:23:26 +0000348 }
349 }
350 }
Dale Johannesenbb5da912009-02-02 20:41:04 +0000351 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getNode()->getDebugLoc(),
352 NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000353 }
354 VT = NVT;
355 break;
356 }
357 }
Gabor Greifba36cb52008-08-28 21:40:38 +0000358 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.getNode() : 0;
Chris Lattner4352cc92006-04-04 17:23:26 +0000359}
360
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000361SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag, bool types)
362 : TLI(dag.getTargetLoweringInfo()), DAG(dag), TypesNeedLegalizing(types),
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000363 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000364 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000365 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000366}
367
Chris Lattner3e928bb2005-01-07 07:47:09 +0000368void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000369 LastCALLSEQ_END = DAG.getEntryNode();
370 IsLegalizingCall = false;
371
Chris Lattnerab510a72005-10-02 17:49:46 +0000372 // The legalize process is inherently a bottom-up recursive process (users
373 // legalize their uses before themselves). Given infinite stack space, we
374 // could just start legalizing on the root and traverse the whole graph. In
375 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000376 // blocks. To avoid this problem, compute an ordering of the nodes where each
377 // node is only legalized after all of its operands are legalized.
Dan Gohmanf06c8352008-09-30 18:30:35 +0000378 DAG.AssignTopologicalOrder();
379 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
380 E = prior(DAG.allnodes_end()); I != next(E); ++I)
381 HandleOp(SDValue(I, 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000382
383 // Finally, it's possible the root changed. Get the new root.
Dan Gohman475871a2008-07-27 21:46:04 +0000384 SDValue OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000385 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
386 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000387
388 ExpandedNodes.clear();
389 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000390 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000391 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000392 ScalarizedNodes.clear();
Mon P Wang0c397192008-10-30 08:01:45 +0000393 WidenNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000394
395 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000396 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000397}
398
Chris Lattner6831a812006-02-13 09:18:02 +0000399
400/// FindCallEndFromCallStart - Given a chained node that is part of a call
401/// sequence, find the CALLSEQ_END node that terminates the call sequence.
402static SDNode *FindCallEndFromCallStart(SDNode *Node) {
403 if (Node->getOpcode() == ISD::CALLSEQ_END)
404 return Node;
405 if (Node->use_empty())
406 return 0; // No CallSeqEnd
407
408 // The chain is usually at the end.
Dan Gohman475871a2008-07-27 21:46:04 +0000409 SDValue TheChain(Node, Node->getNumValues()-1);
Chris Lattner6831a812006-02-13 09:18:02 +0000410 if (TheChain.getValueType() != MVT::Other) {
411 // Sometimes it's at the beginning.
Dan Gohman475871a2008-07-27 21:46:04 +0000412 TheChain = SDValue(Node, 0);
Chris Lattner6831a812006-02-13 09:18:02 +0000413 if (TheChain.getValueType() != MVT::Other) {
414 // Otherwise, hunt for it.
415 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
416 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman475871a2008-07-27 21:46:04 +0000417 TheChain = SDValue(Node, i);
Chris Lattner6831a812006-02-13 09:18:02 +0000418 break;
419 }
420
421 // Otherwise, we walked into a node without a chain.
422 if (TheChain.getValueType() != MVT::Other)
423 return 0;
424 }
425 }
426
427 for (SDNode::use_iterator UI = Node->use_begin(),
428 E = Node->use_end(); UI != E; ++UI) {
429
430 // Make sure to only follow users of our token chain.
Dan Gohman89684502008-07-27 20:43:25 +0000431 SDNode *User = *UI;
Chris Lattner6831a812006-02-13 09:18:02 +0000432 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
433 if (User->getOperand(i) == TheChain)
434 if (SDNode *Result = FindCallEndFromCallStart(User))
435 return Result;
436 }
437 return 0;
438}
439
440/// FindCallStartFromCallEnd - Given a chained node that is part of a call
441/// sequence, find the CALLSEQ_START node that initiates the call sequence.
442static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
443 assert(Node && "Didn't find callseq_start for a call??");
444 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
445
446 assert(Node->getOperand(0).getValueType() == MVT::Other &&
447 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000448 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Chris Lattner6831a812006-02-13 09:18:02 +0000449}
450
451/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
452/// see if any uses can reach Dest. If no dest operands can get to dest,
453/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000454///
455/// Keep track of the nodes we fine that actually do lead to Dest in
456/// NodesLeadingTo. This avoids retraversing them exponential number of times.
457///
458bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000459 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000460 if (N == Dest) return true; // N certainly leads to Dest :)
461
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000462 // If we've already processed this node and it does lead to Dest, there is no
463 // need to reprocess it.
464 if (NodesLeadingTo.count(N)) return true;
465
Chris Lattner6831a812006-02-13 09:18:02 +0000466 // If the first result of this node has been already legalized, then it cannot
467 // reach N.
468 switch (getTypeAction(N->getValueType(0))) {
469 case Legal:
Dan Gohman475871a2008-07-27 21:46:04 +0000470 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000471 break;
472 case Promote:
Dan Gohman475871a2008-07-27 21:46:04 +0000473 if (PromotedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000474 break;
475 case Expand:
Dan Gohman475871a2008-07-27 21:46:04 +0000476 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000477 break;
478 }
479
480 // Okay, this node has not already been legalized. Check and legalize all
481 // operands. If none lead to Dest, then we can legalize this node.
482 bool OperandsLeadToDest = false;
483 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
484 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greifba36cb52008-08-28 21:40:38 +0000485 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000486
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000487 if (OperandsLeadToDest) {
488 NodesLeadingTo.insert(N);
489 return true;
490 }
Chris Lattner6831a812006-02-13 09:18:02 +0000491
492 // Okay, this node looks safe, legalize it and return false.
Dan Gohman475871a2008-07-27 21:46:04 +0000493 HandleOp(SDValue(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000494 return false;
495}
496
Mon P Wang0c397192008-10-30 08:01:45 +0000497/// HandleOp - Legalize, Promote, Widen, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000498/// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000499void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000500 MVT VT = Op.getValueType();
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000501 // If the type legalizer was run then we should never see any illegal result
502 // types here except for target constants (the type legalizer does not touch
Mon P Wang87c8a8f2008-12-18 20:03:17 +0000503 // those) or for build vector used as a mask for a vector shuffle.
504 // FIXME: We can removed the BUILD_VECTOR case when we fix PR2957.
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000505 assert((TypesNeedLegalizing || getTypeAction(VT) == Legal ||
Mon P Wang87c8a8f2008-12-18 20:03:17 +0000506 Op.getOpcode() == ISD::TargetConstant ||
507 Op.getOpcode() == ISD::BUILD_VECTOR) &&
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000508 "Illegal type introduced after type legalization?");
Dan Gohman7f321562007-06-25 16:23:39 +0000509 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000510 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000511 case Legal: (void)LegalizeOp(Op); break;
Mon P Wang0c397192008-10-30 08:01:45 +0000512 case Promote:
513 if (!VT.isVector()) {
514 (void)PromoteOp(Op);
515 break;
516 }
517 else {
518 // See if we can widen otherwise use Expand to either scalarize or split
519 MVT WidenVT = TLI.getWidenVectorType(VT);
520 if (WidenVT != MVT::Other) {
521 (void) WidenVectorOp(Op, WidenVT);
522 break;
523 }
524 // else fall thru to expand since we can't widen the vector
525 }
Chris Lattnerc7029802006-03-18 01:44:44 +0000526 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000527 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000528 // If this is an illegal scalar, expand it into its two component
529 // pieces.
Dan Gohman475871a2008-07-27 21:46:04 +0000530 SDValue X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000531 if (Op.getOpcode() == ISD::TargetConstant)
532 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000533 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000534 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000535 // If this is an illegal single element vector, convert it to a
536 // scalar operation.
537 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000538 } else {
Mon P Wang0c397192008-10-30 08:01:45 +0000539 // This is an illegal multiple element vector.
Dan Gohman7f321562007-06-25 16:23:39 +0000540 // Split it in half and legalize both parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000541 SDValue X, Y;
Dan Gohman7f321562007-06-25 16:23:39 +0000542 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000543 }
544 break;
545 }
546}
Chris Lattner6831a812006-02-13 09:18:02 +0000547
Evan Cheng9f877882006-12-13 20:57:08 +0000548/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
549/// a load from the constant pool.
Dan Gohman475871a2008-07-27 21:46:04 +0000550static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohman0d137d72009-01-15 16:43:02 +0000551 SelectionDAG &DAG, const TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000552 bool Extend = false;
553
554 // If a FP immediate is precise when represented as a float and if the
555 // target can do an extending load from float to double, we put it into
556 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000557 // double. This shrinks FP constants and canonicalizes them for targets where
558 // an FP extending load is the same cost as a normal load (such as on the x87
559 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000560 MVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000561 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000562 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000563 if (VT!=MVT::f64 && VT!=MVT::f32)
564 assert(0 && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000565 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000566 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000567 }
568
Duncan Sands83ec4b62008-06-06 12:08:01 +0000569 MVT OrigVT = VT;
570 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000571 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000572 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000573 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
574 // Only do this if the target has a native EXTLOAD instruction from
575 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000576 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000577 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000578 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000579 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
580 VT = SVT;
581 Extend = true;
582 }
Evan Cheng00495212006-12-12 21:32:44 +0000583 }
584
Dan Gohman475871a2008-07-27 21:46:04 +0000585 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +0000586 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Chengef120572008-03-04 08:05:30 +0000587 if (Extend)
588 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000589 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman50284d82008-09-16 22:05:41 +0000590 0, VT, false, Alignment);
Evan Chengef120572008-03-04 08:05:30 +0000591 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +0000592 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +0000593}
594
Chris Lattner6831a812006-02-13 09:18:02 +0000595
Evan Cheng912095b2007-01-04 21:56:39 +0000596/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
597/// operations.
598static
Dan Gohman475871a2008-07-27 21:46:04 +0000599SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Dan Gohman0d137d72009-01-15 16:43:02 +0000600 SelectionDAG &DAG,
601 const TargetLowering &TLI) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000602 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000603 MVT VT = Node->getValueType(0);
604 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000605 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
606 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000607 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000608
Evan Cheng912095b2007-01-04 21:56:39 +0000609 // First get the sign bit of second operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000610 SDValue Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000611 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
612 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000613 Mask1 = DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, Mask1);
614 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT,
615 Node->getOperand(1));
616 SignBit = DAG.getNode(ISD::AND, dl, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000617 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000618 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000619 if (SizeDiff > 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000620 SignBit = DAG.getNode(ISD::SRL, dl, SrcNVT, SignBit,
Evan Cheng912095b2007-01-04 21:56:39 +0000621 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000622 SignBit = DAG.getNode(ISD::TRUNCATE, dl, NVT, SignBit);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000623 } else if (SizeDiff < 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000624 SignBit = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, SignBit);
625 SignBit = DAG.getNode(ISD::SHL, dl, NVT, SignBit,
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000626 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
627 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000628
629 // Clear the sign bit of first operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000630 SDValue Mask2 = (VT == MVT::f64)
Evan Cheng068c5f42007-01-05 21:31:51 +0000631 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
632 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000633 Mask2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask2);
634 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
635 Result = DAG.getNode(ISD::AND, dl, NVT, Result, Mask2);
Evan Cheng068c5f42007-01-05 21:31:51 +0000636
637 // Or the value with the sign bit.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000638 Result = DAG.getNode(ISD::OR, dl, NVT, Result, SignBit);
Evan Cheng912095b2007-01-04 21:56:39 +0000639 return Result;
640}
641
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000642/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
643static
Dan Gohman475871a2008-07-27 21:46:04 +0000644SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
Dan Gohman0d137d72009-01-15 16:43:02 +0000645 const TargetLowering &TLI) {
Dan Gohman475871a2008-07-27 21:46:04 +0000646 SDValue Chain = ST->getChain();
647 SDValue Ptr = ST->getBasePtr();
648 SDValue Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000649 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000650 int Alignment = ST->getAlignment();
651 int SVOffset = ST->getSrcValueOffset();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000652 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000653 if (ST->getMemoryVT().isFloatingPoint() ||
654 ST->getMemoryVT().isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000655 MVT intVT = MVT::getIntegerVT(VT.getSizeInBits());
656 if (TLI.isTypeLegal(intVT)) {
657 // Expand to a bitconvert of the value to the integer type of the
658 // same size, then a (misaligned) int store.
659 // FIXME: Does not handle truncating floating point stores!
Dale Johannesenbb5da912009-02-02 20:41:04 +0000660 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, intVT, Val);
661 return DAG.getStore(Chain, dl, Result, Ptr, ST->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000662 SVOffset, ST->isVolatile(), Alignment);
663 } else {
664 // Do a (aligned) store to a stack slot, then copy from the stack slot
665 // to the final destination using (unaligned) integer loads and stores.
666 MVT StoredVT = ST->getMemoryVT();
667 MVT RegVT =
668 TLI.getRegisterType(MVT::getIntegerVT(StoredVT.getSizeInBits()));
669 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
670 unsigned RegBytes = RegVT.getSizeInBits() / 8;
671 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000672
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000673 // Make sure the stack slot is also aligned for the register type.
674 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
675
676 // Perform the original store, only redirected to the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000677 SDValue Store = DAG.getTruncStore(Chain, dl,
678 Val, StackPtr, NULL, 0,StoredVT);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000679 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
680 SmallVector<SDValue, 8> Stores;
681 unsigned Offset = 0;
682
683 // Do all but one copies using the full register width.
684 for (unsigned i = 1; i < NumRegs; i++) {
685 // Load one integer register's worth from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000686 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, NULL, 0);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000687 // Store it to the final location. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000688 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000689 ST->getSrcValue(), SVOffset + Offset,
690 ST->isVolatile(),
691 MinAlign(ST->getAlignment(), Offset)));
692 // Increment the pointers.
693 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000694 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000695 Increment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000696 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000697 }
698
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000699 // The last store may be partial. Do a truncating store. On big-endian
700 // machines this requires an extending load from the stack slot to ensure
701 // that the bits are in the right place.
702 MVT MemVT = MVT::getIntegerVT(8 * (StoredBytes - Offset));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000703
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000704 // Load from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000705 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000706 NULL, 0, MemVT);
707
Dale Johannesenbb5da912009-02-02 20:41:04 +0000708 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000709 ST->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000710 MemVT, ST->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000711 MinAlign(ST->getAlignment(), Offset)));
712 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000713 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000714 Stores.size());
715 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000716 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000717 assert(ST->getMemoryVT().isInteger() &&
718 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000719 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000720 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000721 MVT NewStoredVT =
722 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
723 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000724 int IncrementSize = NumBits / 8;
725
726 // Divide the stored value in two parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000727 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
728 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000729 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000730
731 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000732 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000733 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000734 ST->getSrcValue(), SVOffset, NewStoredVT,
735 ST->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000736 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000737 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000738 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000739 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000740 ST->getSrcValue(), SVOffset + IncrementSize,
741 NewStoredVT, ST->isVolatile(), Alignment);
742
Dale Johannesenbb5da912009-02-02 20:41:04 +0000743 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000744}
745
746/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
747static
Dan Gohman475871a2008-07-27 21:46:04 +0000748SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
Dan Gohmane9530ec2009-01-15 16:58:17 +0000749 const TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000750 int SVOffset = LD->getSrcValueOffset();
Dan Gohman475871a2008-07-27 21:46:04 +0000751 SDValue Chain = LD->getChain();
752 SDValue Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000753 MVT VT = LD->getValueType(0);
754 MVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000755 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000756 if (VT.isFloatingPoint() || VT.isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000757 MVT intVT = MVT::getIntegerVT(LoadedVT.getSizeInBits());
758 if (TLI.isTypeLegal(intVT)) {
759 // Expand to a (misaligned) integer load of the same size,
760 // then bitconvert to floating point or vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000761 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000762 SVOffset, LD->isVolatile(),
Dale Johannesen907f28c2007-09-08 19:29:23 +0000763 LD->getAlignment());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000764 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, LoadedVT, newLoad);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000765 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesenbb5da912009-02-02 20:41:04 +0000766 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000767
Duncan Sands05e11fa2008-12-12 21:47:02 +0000768 SDValue Ops[] = { Result, Chain };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000769 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000770 } else {
771 // Copy the value to a (aligned) stack slot using (unaligned) integer
772 // loads and stores, then do a (aligned) load from the stack slot.
773 MVT RegVT = TLI.getRegisterType(intVT);
774 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
775 unsigned RegBytes = RegVT.getSizeInBits() / 8;
776 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
777
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000778 // Make sure the stack slot is also aligned for the register type.
779 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
780
Duncan Sands05e11fa2008-12-12 21:47:02 +0000781 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
782 SmallVector<SDValue, 8> Stores;
783 SDValue StackPtr = StackBase;
784 unsigned Offset = 0;
785
786 // Do all but one copies using the full register width.
787 for (unsigned i = 1; i < NumRegs; i++) {
788 // Load one integer register's worth from the original location.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000789 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000790 SVOffset + Offset, LD->isVolatile(),
791 MinAlign(LD->getAlignment(), Offset));
792 // Follow the load with a store to the stack slot. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000793 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000794 NULL, 0));
795 // Increment the pointers.
796 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000797 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
798 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000799 Increment);
800 }
801
802 // The last copy may be partial. Do an extending load.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000803 MVT MemVT = MVT::getIntegerVT(8 * (LoadedBytes - Offset));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000804 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000805 LD->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000806 MemVT, LD->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000807 MinAlign(LD->getAlignment(), Offset));
808 // Follow the load with a store to the stack slot. Remember the store.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000809 // On big-endian machines this requires a truncating store to ensure
810 // that the bits end up in the right place.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000811 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000812 NULL, 0, MemVT));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000813
814 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000815 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000816 Stores.size());
817
818 // Finally, perform the original load only redirected to the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000819 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000820 NULL, 0, LoadedVT);
821
822 // Callers expect a MERGE_VALUES node.
823 SDValue Ops[] = { Load, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000824 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000825 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000826 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000827 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000828 "Unaligned load of unsupported type.");
829
Dale Johannesen8155d642008-02-27 22:36:00 +0000830 // Compute the new VT that is half the size of the old one. This is an
831 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000832 unsigned NumBits = LoadedVT.getSizeInBits();
833 MVT NewLoadedVT;
834 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000835 NumBits >>= 1;
836
837 unsigned Alignment = LD->getAlignment();
838 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000839 ISD::LoadExtType HiExtType = LD->getExtensionType();
840
841 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
842 if (HiExtType == ISD::NON_EXTLOAD)
843 HiExtType = ISD::ZEXTLOAD;
844
845 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000846 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000847 if (TLI.isLittleEndian()) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000848 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000849 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000850 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000851 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000852 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000853 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000854 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000855 } else {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000856 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
857 SVOffset, NewLoadedVT,LD->isVolatile(), Alignment);
858 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000859 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000860 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000861 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000862 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000863 }
864
865 // aggregate the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000866 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000867 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
868 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000869
Dale Johannesenbb5da912009-02-02 20:41:04 +0000870 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000871 Hi.getValue(1));
872
Dan Gohman475871a2008-07-27 21:46:04 +0000873 SDValue Ops[] = { Result, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000874 return DAG.getMergeValues(Ops, 2, dl);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000875}
Evan Cheng912095b2007-01-04 21:56:39 +0000876
Dan Gohman82669522007-10-11 23:57:53 +0000877/// UnrollVectorOp - We know that the given vector has a legal type, however
878/// the operation it performs is not legal and is an operation that we have
879/// no way of lowering. "Unroll" the vector, splitting out the scalars and
880/// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000881SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000882 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000883 assert(isTypeLegal(VT) &&
884 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000885 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman82669522007-10-11 23:57:53 +0000886 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000887 unsigned NE = VT.getVectorNumElements();
888 MVT EltVT = VT.getVectorElementType();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000889 DebugLoc dl = Op.getNode()->getDebugLoc();
Dan Gohman82669522007-10-11 23:57:53 +0000890
Dan Gohman475871a2008-07-27 21:46:04 +0000891 SmallVector<SDValue, 8> Scalars;
892 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman82669522007-10-11 23:57:53 +0000893 for (unsigned i = 0; i != NE; ++i) {
894 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +0000895 SDValue Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000896 MVT OperandVT = Operand.getValueType();
897 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000898 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000899 MVT OperandEltVT = OperandVT.getVectorElementType();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000900 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dan Gohman82669522007-10-11 23:57:53 +0000901 OperandEltVT,
902 Operand,
903 DAG.getConstant(i, MVT::i32));
904 } else {
905 // A scalar operand; just use it as is.
906 Operands[j] = Operand;
907 }
908 }
Mon P Wange9f10152008-12-09 05:46:39 +0000909
910 switch (Op.getOpcode()) {
911 default:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000912 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT,
Mon P Wange9f10152008-12-09 05:46:39 +0000913 &Operands[0], Operands.size()));
914 break;
915 case ISD::SHL:
916 case ISD::SRA:
917 case ISD::SRL:
Duncan Sands92abc622009-01-31 15:50:11 +0000918 case ISD::ROTL:
919 case ISD::ROTR:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000920 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, Operands[0],
Duncan Sands92abc622009-01-31 15:50:11 +0000921 DAG.getShiftAmountOperand(Operands[1])));
Mon P Wange9f10152008-12-09 05:46:39 +0000922 break;
923 }
Dan Gohman82669522007-10-11 23:57:53 +0000924 }
925
Dale Johannesenbb5da912009-02-02 20:41:04 +0000926 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Scalars[0], Scalars.size());
Dan Gohman82669522007-10-11 23:57:53 +0000927}
928
Duncan Sands007f9842008-01-10 10:28:30 +0000929/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000930static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000931 RTLIB::Libcall Call_F32,
932 RTLIB::Libcall Call_F64,
933 RTLIB::Libcall Call_F80,
934 RTLIB::Libcall Call_PPCF128) {
935 return
936 VT == MVT::f32 ? Call_F32 :
937 VT == MVT::f64 ? Call_F64 :
938 VT == MVT::f80 ? Call_F80 :
939 VT == MVT::ppcf128 ? Call_PPCF128 :
940 RTLIB::UNKNOWN_LIBCALL;
941}
942
Nate Begeman68679912008-04-25 18:07:40 +0000943/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
944/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
945/// is necessary to spill the vector being inserted into to memory, perform
946/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000947SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000948PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
949 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000950 SDValue Tmp1 = Vec;
951 SDValue Tmp2 = Val;
952 SDValue Tmp3 = Idx;
Nate Begeman68679912008-04-25 18:07:40 +0000953
954 // If the target doesn't support this, we have to spill the input vector
955 // to a temporary stack slot, update the element, then reload it. This is
956 // badness. We could also load the value into a vector register (either
957 // with a "move to register" or "extload into register" instruction, then
958 // permute it into place, if the idx is a constant and if the idx is
959 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000960 MVT VT = Tmp1.getValueType();
961 MVT EltVT = VT.getVectorElementType();
962 MVT IdxVT = Tmp3.getValueType();
963 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000964 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000965
Gabor Greifba36cb52008-08-28 21:40:38 +0000966 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000967
968 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000969 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Mon P Wang0c397192008-10-30 08:01:45 +0000970 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000971
972 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000973 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000974 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000975 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000976 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000977 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
978 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000979 // Store the scalar value.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000980 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000981 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000982 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000983 return DAG.getLoad(VT, dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000984 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000985}
986
Mon P Wange9f10152008-12-09 05:46:39 +0000987
Dan Gohmana3466152007-07-13 20:14:11 +0000988/// LegalizeOp - We know that the specified value has a legal type, and
989/// that its operands are legal. Now ensure that the operation itself
990/// is legal, recursively ensuring that the operands' operations remain
991/// legal.
Dan Gohman475871a2008-07-27 21:46:04 +0000992SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000993 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
994 return Op;
995
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000996 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000997 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000998 SDNode *Node = Op.getNode();
Dale Johannesen7d2ad622009-01-30 23:10:59 +0000999 DebugLoc dl = Node->getDebugLoc();
Chris Lattnere3304a32005-01-08 20:35:13 +00001000
Chris Lattner3e928bb2005-01-07 07:47:09 +00001001 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +00001002 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +00001003 if (Node->getNumValues() > 1) {
1004 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +00001005 if (getTypeAction(Node->getValueType(i)) != Legal) {
1006 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001007 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +00001008 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +00001009 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +00001010 }
1011 }
1012
Chris Lattner45982da2005-05-12 16:53:42 +00001013 // Note that LegalizeOp may be reentered even from single-use nodes, which
1014 // means that we always must cache transformed nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00001015 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +00001016 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001017
Dan Gohman475871a2008-07-27 21:46:04 +00001018 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
1019 SDValue Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +00001020 bool isCustom = false;
1021
Chris Lattner3e928bb2005-01-07 07:47:09 +00001022 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +00001023 case ISD::FrameIndex:
1024 case ISD::EntryToken:
1025 case ISD::Register:
1026 case ISD::BasicBlock:
1027 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +00001028 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +00001029 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +00001030 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +00001031 case ISD::TargetConstantPool:
1032 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001033 case ISD::TargetGlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001034 case ISD::TargetExternalSymbol:
Chris Lattner948c1b12006-01-28 08:31:04 +00001035 case ISD::VALUETYPE:
1036 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +00001037 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +00001038 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +00001039 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +00001040 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00001041 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +00001042 "This must be legal!");
1043 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001044 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001045 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
1046 // If this is a target node, legalize it by legalizing the operands then
1047 // passing it through.
Dan Gohman475871a2008-07-27 21:46:04 +00001048 SmallVector<SDValue, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001049 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001050 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001051
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001052 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001053
1054 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1055 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001056 return Result.getValue(Op.getResNo());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001057 }
1058 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001059#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00001060 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001061#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00001062 assert(0 && "Do not know how to legalize this operator!");
1063 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +00001064 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001065 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001066 case ISD::GlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001067 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +00001068 case ISD::ConstantPool:
1069 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001070 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1071 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +00001072 case TargetLowering::Custom:
1073 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001074 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner948c1b12006-01-28 08:31:04 +00001075 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001076 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001077 break;
1078 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001079 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +00001080 case ISD::FRAMEADDR:
1081 case ISD::RETURNADDR:
1082 // The only option for these nodes is to custom lower them. If the target
1083 // does not custom lower them, then return zero.
1084 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001085 if (Tmp1.getNode())
Nate Begemanbcc5f362007-01-29 22:58:52 +00001086 Result = Tmp1;
1087 else
1088 Result = DAG.getConstant(0, TLI.getPointerTy());
1089 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001090 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001091 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001092 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1093 default: assert(0 && "This action is not supported yet!");
1094 case TargetLowering::Custom:
1095 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001096 if (Result.getNode()) break;
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001097 // Fall Thru
1098 case TargetLowering::Legal:
1099 Result = DAG.getConstant(0, VT);
1100 break;
1101 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001102 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001103 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001104 case ISD::EXCEPTIONADDR: {
1105 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001106 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001107 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1108 default: assert(0 && "This action is not supported yet!");
1109 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +00001110 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +00001111 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001112 }
1113 break;
1114 case TargetLowering::Custom:
1115 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001116 if (Result.getNode()) break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001117 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001118 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001119 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Duncan Sands4bdcb612008-07-02 17:40:58 +00001120 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001121 break;
1122 }
1123 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001124 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001125 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001126
Gabor Greifba36cb52008-08-28 21:40:38 +00001127 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001128 "Cannot return more than two values!");
1129
1130 // Since we produced two values, make sure to remember that we
1131 // legalized both of them.
1132 Tmp1 = LegalizeOp(Result);
1133 Tmp2 = LegalizeOp(Result.getValue(1));
1134 AddLegalizedOperand(Op.getValue(0), Tmp1);
1135 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001136 return Op.getResNo() ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +00001137 case ISD::EHSELECTION: {
1138 Tmp1 = LegalizeOp(Node->getOperand(0));
1139 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001140 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +00001141 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1142 default: assert(0 && "This action is not supported yet!");
1143 case TargetLowering::Expand: {
1144 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +00001145 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +00001146 }
1147 break;
1148 case TargetLowering::Custom:
1149 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001150 if (Result.getNode()) break;
Jim Laskey8782d482007-02-28 20:43:58 +00001151 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001152 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001153 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Duncan Sands4bdcb612008-07-02 17:40:58 +00001154 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +00001155 break;
1156 }
1157 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001158 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001159 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001160
Gabor Greifba36cb52008-08-28 21:40:38 +00001161 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001162 "Cannot return more than two values!");
1163
1164 // Since we produced two values, make sure to remember that we
1165 // legalized both of them.
1166 Tmp1 = LegalizeOp(Result);
1167 Tmp2 = LegalizeOp(Result.getValue(1));
1168 AddLegalizedOperand(Op.getValue(0), Tmp1);
1169 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001170 return Op.getResNo() ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001171 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001172 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001173 // The only "good" option for this node is to custom lower it.
1174 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1175 default: assert(0 && "This action is not supported at all!");
1176 case TargetLowering::Custom:
1177 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001178 if (Result.getNode()) break;
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001179 // Fall Thru
1180 case TargetLowering::Legal:
1181 // Target does not know, how to lower this, lower to noop
1182 Result = LegalizeOp(Node->getOperand(0));
1183 break;
1184 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001185 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001186 break;
Chris Lattner08951a32005-09-02 01:15:01 +00001187 case ISD::AssertSext:
1188 case ISD::AssertZext:
1189 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001190 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +00001191 break;
Chris Lattner308575b2005-11-20 22:56:56 +00001192 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001193 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif99a6cb92008-08-26 22:36:50 +00001194 Result = Node->getOperand(Op.getResNo());
Chris Lattner456a93a2006-01-28 07:39:30 +00001195 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001196 case ISD::CopyFromReg:
1197 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001198 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001199 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001200 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001201 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001202 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001203 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001204 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001205 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1206 } else {
1207 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1208 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001209 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1210 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001211 // Since CopyFromReg produces two values, make sure to remember that we
1212 // legalized both of them.
1213 AddLegalizedOperand(Op.getValue(0), Result);
1214 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001215 return Result.getValue(Op.getResNo());
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001216 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001217 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001218 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001219 default: assert(0 && "This action is not supported yet!");
1220 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001221 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001222 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001223 else if (VT.isFloatingPoint())
1224 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +00001225 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001226 else
1227 assert(0 && "Unknown value type!");
1228 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001229 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001230 break;
1231 }
1232 break;
1233 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001234
Chris Lattner48b61a72006-03-28 00:40:33 +00001235 case ISD::INTRINSIC_W_CHAIN:
1236 case ISD::INTRINSIC_WO_CHAIN:
1237 case ISD::INTRINSIC_VOID: {
Dan Gohman475871a2008-07-27 21:46:04 +00001238 SmallVector<SDValue, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001239 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1240 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001241 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001242
1243 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001244 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001245 TargetLowering::Custom) {
1246 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001247 if (Tmp3.getNode()) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001248 }
1249
Gabor Greifba36cb52008-08-28 21:40:38 +00001250 if (Result.getNode()->getNumValues() == 1) break;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001251
1252 // Must have return value and chain result.
Gabor Greifba36cb52008-08-28 21:40:38 +00001253 assert(Result.getNode()->getNumValues() == 2 &&
Chris Lattner13fc2f12006-03-27 20:28:29 +00001254 "Cannot return more than two values!");
1255
1256 // Since loads produce two values, make sure to remember that we
1257 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001258 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1259 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001260 return Result.getValue(Op.getResNo());
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001261 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001262
Dan Gohman7f460202008-06-30 20:59:49 +00001263 case ISD::DBG_STOPPOINT:
1264 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001265 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1266
Dan Gohman7f460202008-06-30 20:59:49 +00001267 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001268 case TargetLowering::Promote:
1269 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001270 case TargetLowering::Expand: {
Devang Patel83489bb2009-01-13 00:35:13 +00001271 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf560ffa2009-01-28 17:46:25 +00001272 bool useDEBUG_LOC = TLI.isOperationLegalOrCustom(ISD::DEBUG_LOC,
1273 MVT::Other);
1274 bool useLABEL = TLI.isOperationLegalOrCustom(ISD::DBG_LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001275
Dan Gohman7f460202008-06-30 20:59:49 +00001276 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
Devang Patel83489bb2009-01-13 00:35:13 +00001277 GlobalVariable *CU_GV = cast<GlobalVariable>(DSP->getCompileUnit());
1278 if (DW && (useDEBUG_LOC || useLABEL) && !CU_GV->isDeclaration()) {
1279 DICompileUnit CU(cast<GlobalVariable>(DSP->getCompileUnit()));
1280 unsigned SrcFile = DW->RecordSource(CU.getDirectory(),
1281 CU.getFilename());
1282
Dan Gohman7f460202008-06-30 20:59:49 +00001283 unsigned Line = DSP->getLine();
1284 unsigned Col = DSP->getColumn();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001285
1286 if (useDEBUG_LOC) {
Dan Gohman475871a2008-07-27 21:46:04 +00001287 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Evan Cheng71e86852008-07-08 20:06:39 +00001288 DAG.getConstant(Col, MVT::i32),
1289 DAG.getConstant(SrcFile, MVT::i32) };
1290 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops, 4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001291 } else {
Devang Patel83489bb2009-01-13 00:35:13 +00001292 unsigned ID = DW->RecordSourceLine(Line, Col, SrcFile);
Dan Gohman44066042008-07-01 00:05:16 +00001293 Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001294 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001295 } else {
1296 Result = Tmp1; // chain
1297 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001298 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001299 }
Evan Cheng71e86852008-07-08 20:06:39 +00001300 case TargetLowering::Legal: {
1301 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1302 if (Action == Legal && Tmp1 == Node->getOperand(0))
1303 break;
1304
Dan Gohman475871a2008-07-27 21:46:04 +00001305 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001306 Ops.push_back(Tmp1);
1307 if (Action == Legal) {
1308 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1309 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1310 } else {
1311 // Otherwise promote them.
1312 Ops.push_back(PromoteOp(Node->getOperand(1)));
1313 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001314 }
Evan Cheng71e86852008-07-08 20:06:39 +00001315 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1316 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1317 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001318 break;
1319 }
Evan Cheng71e86852008-07-08 20:06:39 +00001320 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001321 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001322
1323 case ISD::DECLARE:
1324 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1325 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1326 default: assert(0 && "This action is not supported yet!");
1327 case TargetLowering::Legal:
1328 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1329 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1330 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1331 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1332 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001333 case TargetLowering::Expand:
1334 Result = LegalizeOp(Node->getOperand(0));
1335 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001336 }
1337 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001338
1339 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001340 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001341 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001342 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001343 case TargetLowering::Legal: {
1344 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001345 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001346 if (Action == Legal && Tmp1 == Node->getOperand(0))
1347 break;
1348 if (Action == Legal) {
1349 Tmp2 = Node->getOperand(1);
1350 Tmp3 = Node->getOperand(2);
1351 Tmp4 = Node->getOperand(3);
1352 } else {
1353 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1354 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1355 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1356 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001357 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001358 break;
1359 }
Evan Cheng71e86852008-07-08 20:06:39 +00001360 }
Jim Laskeyabf6d172006-01-05 01:25:28 +00001361 break;
1362
Dan Gohman44066042008-07-01 00:05:16 +00001363 case ISD::DBG_LABEL:
1364 case ISD::EH_LABEL:
1365 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1366 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001367 default: assert(0 && "This action is not supported yet!");
1368 case TargetLowering::Legal:
1369 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001370 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001371 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001372 case TargetLowering::Expand:
1373 Result = LegalizeOp(Node->getOperand(0));
1374 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001375 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001376 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001377
Evan Cheng27b7db52008-03-08 00:58:38 +00001378 case ISD::PREFETCH:
1379 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1380 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1381 default: assert(0 && "This action is not supported yet!");
1382 case TargetLowering::Legal:
1383 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1384 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1385 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1386 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1387 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1388 break;
1389 case TargetLowering::Expand:
1390 // It's a noop.
1391 Result = LegalizeOp(Node->getOperand(0));
1392 break;
1393 }
1394 break;
1395
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001396 case ISD::MEMBARRIER: {
1397 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001398 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1399 default: assert(0 && "This action is not supported yet!");
1400 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001401 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001402 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001403 for (int x = 1; x < 6; ++x) {
1404 Ops[x] = Node->getOperand(x);
1405 if (!isTypeLegal(Ops[x].getValueType()))
1406 Ops[x] = PromoteOp(Ops[x]);
1407 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001408 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1409 break;
1410 }
1411 case TargetLowering::Expand:
1412 //There is no libgcc call for this op
1413 Result = Node->getOperand(0); // Noop
1414 break;
1415 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001416 break;
1417 }
1418
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001419 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001420 unsigned int num_operands = 4;
1421 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001422 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001423 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001424 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001425 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1426
1427 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1428 default: assert(0 && "This action is not supported yet!");
1429 case TargetLowering::Custom:
1430 Result = TLI.LowerOperation(Result, DAG);
1431 break;
1432 case TargetLowering::Legal:
1433 break;
1434 }
Dan Gohman475871a2008-07-27 21:46:04 +00001435 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1436 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001437 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001438 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001439 case ISD::ATOMIC_LOAD_ADD:
1440 case ISD::ATOMIC_LOAD_SUB:
1441 case ISD::ATOMIC_LOAD_AND:
1442 case ISD::ATOMIC_LOAD_OR:
1443 case ISD::ATOMIC_LOAD_XOR:
1444 case ISD::ATOMIC_LOAD_NAND:
1445 case ISD::ATOMIC_LOAD_MIN:
1446 case ISD::ATOMIC_LOAD_MAX:
1447 case ISD::ATOMIC_LOAD_UMIN:
1448 case ISD::ATOMIC_LOAD_UMAX:
1449 case ISD::ATOMIC_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001450 unsigned int num_operands = 3;
1451 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001452 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001453 for (unsigned int x = 0; x < num_operands; ++x)
1454 Ops[x] = LegalizeOp(Node->getOperand(x));
1455 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001456
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001457 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001458 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001459 case TargetLowering::Custom:
1460 Result = TLI.LowerOperation(Result, DAG);
1461 break;
1462 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001463 break;
1464 }
Dan Gohman475871a2008-07-27 21:46:04 +00001465 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1466 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001467 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001468 }
Scott Michelc1513d22007-08-08 23:23:31 +00001469 case ISD::Constant: {
1470 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1471 unsigned opAction =
1472 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1473
Chris Lattner3e928bb2005-01-07 07:47:09 +00001474 // We know we don't need to expand constants here, constants only have one
1475 // value and we check that it is fine above.
1476
Scott Michelc1513d22007-08-08 23:23:31 +00001477 if (opAction == TargetLowering::Custom) {
1478 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001479 if (Tmp1.getNode())
Scott Michelc1513d22007-08-08 23:23:31 +00001480 Result = Tmp1;
1481 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001482 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001483 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001484 case ISD::ConstantFP: {
1485 // Spill FP immediates to the constant pool if the target cannot directly
1486 // codegen them. Targets often have some immediate values that can be
1487 // efficiently generated into an FP register without a load. We explicitly
1488 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001489 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1490
Chris Lattner3181a772006-01-29 06:26:56 +00001491 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1492 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001493 case TargetLowering::Legal:
1494 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001495 case TargetLowering::Custom:
1496 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001497 if (Tmp3.getNode()) {
Chris Lattner3181a772006-01-29 06:26:56 +00001498 Result = Tmp3;
1499 break;
1500 }
1501 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001502 case TargetLowering::Expand: {
1503 // Check to see if this FP immediate is already legal.
1504 bool isLegal = false;
1505 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1506 E = TLI.legal_fpimm_end(); I != E; ++I) {
1507 if (CFP->isExactlyValue(*I)) {
1508 isLegal = true;
1509 break;
1510 }
1511 }
1512 // If this is a legal constant, turn it into a TargetConstantFP node.
1513 if (isLegal)
1514 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001515 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001516 }
Nate Begemane1795842008-02-14 08:57:00 +00001517 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001518 break;
1519 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001520 case ISD::TokenFactor:
1521 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001522 Tmp1 = LegalizeOp(Node->getOperand(0));
1523 Tmp2 = LegalizeOp(Node->getOperand(1));
1524 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1525 } else if (Node->getNumOperands() == 3) {
1526 Tmp1 = LegalizeOp(Node->getOperand(0));
1527 Tmp2 = LegalizeOp(Node->getOperand(1));
1528 Tmp3 = LegalizeOp(Node->getOperand(2));
1529 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001530 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001531 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001532 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001533 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1534 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001535 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001536 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001537 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001538
1539 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001540 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001541 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001542 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001543 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001544 // A call within a calling sequence must be legalized to something
1545 // other than the normal CALLSEQ_END. Violating this gets Legalize
1546 // into an infinite loop.
1547 assert ((!IsLegalizingCall ||
1548 Node->getOpcode() != ISD::CALL ||
Gabor Greifba36cb52008-08-28 21:40:38 +00001549 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesen0ea03562008-03-05 19:14:03 +00001550 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001551
1552 // The number of incoming and outgoing values should match; unless the final
1553 // outgoing value is a flag.
Gabor Greifba36cb52008-08-28 21:40:38 +00001554 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1555 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1556 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001557 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001558 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001559
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001560 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001561 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greifba36cb52008-08-28 21:40:38 +00001562 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1563 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001564 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001565 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001566 if (Op.getResNo() == i)
Chris Lattnere2e41732006-05-16 05:49:56 +00001567 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001568 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001569 }
1570 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001571 case ISD::EXTRACT_SUBREG: {
1572 Tmp1 = LegalizeOp(Node->getOperand(0));
1573 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1574 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001575 Tmp2 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001576 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1577 }
1578 break;
1579 case ISD::INSERT_SUBREG: {
1580 Tmp1 = LegalizeOp(Node->getOperand(0));
1581 Tmp2 = LegalizeOp(Node->getOperand(1));
1582 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1583 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001584 Tmp3 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001585 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1586 }
1587 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001588 case ISD::BUILD_VECTOR:
1589 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001590 default: assert(0 && "This action is not supported yet!");
1591 case TargetLowering::Custom:
1592 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001593 if (Tmp3.getNode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001594 Result = Tmp3;
1595 break;
1596 }
1597 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001598 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001599 Result = ExpandBUILD_VECTOR(Result.getNode());
Chris Lattnerb2827b02006-03-19 00:52:58 +00001600 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001601 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001602 break;
1603 case ISD::INSERT_VECTOR_ELT:
1604 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001605 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001606
1607 // The type of the value to insert may not be legal, even though the vector
1608 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1609 // here.
1610 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1611 default: assert(0 && "Cannot expand insert element operand");
1612 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1613 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang0c397192008-10-30 08:01:45 +00001614 case Expand:
1615 // FIXME: An alternative would be to check to see if the target is not
1616 // going to custom lower this operation, we could bitcast to half elt
1617 // width and perform two inserts at that width, if that is legal.
1618 Tmp2 = Node->getOperand(1);
1619 break;
Nate Begeman0325d902008-02-13 06:43:04 +00001620 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001621 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1622
1623 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1624 Node->getValueType(0))) {
1625 default: assert(0 && "This action is not supported yet!");
1626 case TargetLowering::Legal:
1627 break;
1628 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001629 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001630 if (Tmp4.getNode()) {
Nate Begeman2281a992008-01-05 20:47:37 +00001631 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001632 break;
1633 }
1634 // FALLTHROUGH
Mon P Wang0c397192008-10-30 08:01:45 +00001635 case TargetLowering::Promote:
1636 // Fall thru for vector case
Chris Lattner2332b9f2006-03-19 01:17:20 +00001637 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001638 // If the insert index is a constant, codegen this as a scalar_to_vector,
1639 // then a shuffle that inserts it into the right position in the vector.
1640 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001641 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1642 // match the element type of the vector being created.
1643 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001644 Op.getValueType().getVectorElementType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001645 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
Nate Begeman0325d902008-02-13 06:43:04 +00001646 Tmp1.getValueType(), Tmp2);
1647
Duncan Sands83ec4b62008-06-06 12:08:01 +00001648 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1649 MVT ShufMaskVT =
1650 MVT::getIntVectorWithNumElements(NumElts);
1651 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman0325d902008-02-13 06:43:04 +00001652
1653 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1654 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1655 // elt 0 of the RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00001656 SmallVector<SDValue, 8> ShufOps;
Nate Begeman0325d902008-02-13 06:43:04 +00001657 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001658 if (i != InsertPos->getZExtValue())
Nate Begeman0325d902008-02-13 06:43:04 +00001659 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1660 else
1661 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1662 }
Dan Gohman475871a2008-07-27 21:46:04 +00001663 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
Nate Begeman0325d902008-02-13 06:43:04 +00001664 &ShufOps[0], ShufOps.size());
1665
1666 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1667 Tmp1, ScVec, ShufMask);
1668 Result = LegalizeOp(Result);
1669 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001670 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001671 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001672 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001673 break;
1674 }
1675 }
1676 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001677 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001678 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1679 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1680 break;
1681 }
1682
Chris Lattnerce872152006-03-19 06:31:19 +00001683 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1684 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1685 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1686 Node->getValueType(0))) {
1687 default: assert(0 && "This action is not supported yet!");
1688 case TargetLowering::Legal:
1689 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001690 case TargetLowering::Custom:
1691 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001692 if (Tmp3.getNode()) {
Chris Lattner4d3abee2006-03-19 06:47:21 +00001693 Result = Tmp3;
1694 break;
1695 }
1696 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001697 case TargetLowering::Expand:
1698 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001699 break;
1700 }
Chris Lattnerce872152006-03-19 06:31:19 +00001701 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001702 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001703 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1704 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1705 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1706
1707 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001708 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1709 default: assert(0 && "Unknown operation action!");
1710 case TargetLowering::Legal:
1711 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1712 "vector shuffle should not be created if not legal!");
1713 break;
1714 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001715 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001716 if (Tmp3.getNode()) {
Evan Cheng18dd6d02006-04-05 06:07:11 +00001717 Result = Tmp3;
1718 break;
1719 }
1720 // FALLTHROUGH
1721 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001722 MVT VT = Node->getValueType(0);
1723 MVT EltVT = VT.getVectorElementType();
1724 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00001725 SDValue Mask = Node->getOperand(2);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001726 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00001727 SmallVector<SDValue,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001728 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001729 SDValue Arg = Mask.getOperand(i);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001730 if (Arg.getOpcode() == ISD::UNDEF) {
1731 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1732 } else {
1733 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001734 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng18dd6d02006-04-05 06:07:11 +00001735 if (Idx < NumElems)
1736 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1737 DAG.getConstant(Idx, PtrVT)));
1738 else
1739 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1740 DAG.getConstant(Idx - NumElems, PtrVT)));
1741 }
1742 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001743 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001744 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001745 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001746 case TargetLowering::Promote: {
1747 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001748 MVT OVT = Node->getValueType(0);
1749 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001750
1751 // Cast the two input vectors.
1752 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1753 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1754
1755 // Convert the shuffle mask to the right # elements.
Dan Gohman475871a2008-07-27 21:46:04 +00001756 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001757 assert(Tmp3.getNode() && "Shuffle not legal?");
Chris Lattner4352cc92006-04-04 17:23:26 +00001758 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1759 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1760 break;
1761 }
Chris Lattner87100e02006-03-20 01:52:29 +00001762 }
1763 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001764
1765 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001766 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001767 Tmp2 = LegalizeOp(Node->getOperand(1));
1768 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001769 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001770 break;
1771
Dan Gohman7f321562007-06-25 16:23:39 +00001772 case ISD::EXTRACT_SUBVECTOR:
1773 Tmp1 = Node->getOperand(0);
1774 Tmp2 = LegalizeOp(Node->getOperand(1));
1775 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1776 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001777 break;
1778
Mon P Wang0c397192008-10-30 08:01:45 +00001779 case ISD::CONCAT_VECTORS: {
1780 // Use extract/insert/build vector for now. We might try to be
1781 // more clever later.
1782 MVT PtrVT = TLI.getPointerTy();
1783 SmallVector<SDValue, 8> Ops;
1784 unsigned NumOperands = Node->getNumOperands();
1785 for (unsigned i=0; i < NumOperands; ++i) {
1786 SDValue SubOp = Node->getOperand(i);
1787 MVT VVT = SubOp.getNode()->getValueType(0);
1788 MVT EltVT = VVT.getVectorElementType();
1789 unsigned NumSubElem = VVT.getVectorNumElements();
1790 for (unsigned j=0; j < NumSubElem; ++j) {
1791 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, SubOp,
1792 DAG.getConstant(j, PtrVT)));
1793 }
1794 }
1795 return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0),
1796 &Ops[0], Ops.size()));
1797 }
1798
Chris Lattner6831a812006-02-13 09:18:02 +00001799 case ISD::CALLSEQ_START: {
1800 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1801
1802 // Recursively Legalize all of the inputs of the call end that do not lead
1803 // to this call start. This ensures that any libcalls that need be inserted
1804 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001805 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001806 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00001807 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001808 NodesLeadingTo);
1809 }
Chris Lattner6831a812006-02-13 09:18:02 +00001810
1811 // Now that we legalized all of the inputs (which may have inserted
1812 // libcalls) create the new CALLSEQ_START node.
1813 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1814
1815 // Merge in the last call, to ensure that this call start after the last
1816 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001817 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001818 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1819 Tmp1 = LegalizeOp(Tmp1);
1820 }
Chris Lattner6831a812006-02-13 09:18:02 +00001821
1822 // Do not try to legalize the target-specific arguments (#1+).
1823 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001824 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001825 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001826 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001827 }
1828
1829 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001830 AddLegalizedOperand(Op.getValue(0), Result);
1831 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1832 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1833
Chris Lattner6831a812006-02-13 09:18:02 +00001834 // Now that the callseq_start and all of the non-call nodes above this call
1835 // sequence have been legalized, legalize the call itself. During this
1836 // process, no libcalls can/will be inserted, guaranteeing that no calls
1837 // can overlap.
1838 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001839 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001840 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001841 IsLegalizingCall = true;
1842
1843 // Legalize the call, starting from the CALLSEQ_END.
1844 LegalizeOp(LastCALLSEQ_END);
1845 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1846 return Result;
1847 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001848 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001849 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1850 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greifba36cb52008-08-28 21:40:38 +00001851 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001852 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1853 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001854 assert(I != LegalizedNodes.end() &&
1855 "Legalizing the call start should have legalized this node!");
1856 return I->second;
1857 }
1858
1859 // Otherwise, the call start has been legalized and everything is going
1860 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001861 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001862 // Do not try to legalize the target-specific arguments (#1+), except for
1863 // an optional flag input.
1864 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1865 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001866 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001867 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001868 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001869 }
1870 } else {
1871 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1872 if (Tmp1 != Node->getOperand(0) ||
1873 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001874 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001875 Ops[0] = Tmp1;
1876 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001877 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001878 }
Chris Lattner6a542892006-01-24 05:48:21 +00001879 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001880 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001881 // This finishes up call legalization.
1882 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001883
1884 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001885 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001886 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001887 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001888 return Result.getValue(Op.getResNo());
Evan Chenga7dce3c2006-01-11 22:14:47 +00001889 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001890 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001891 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1892 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1893 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001894 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001895
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001896 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001897 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001898 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001899 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001900 case TargetLowering::Expand: {
1901 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1902 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1903 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001904 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001905
1906 // Chain the dynamic stack allocation so that it doesn't modify the stack
1907 // pointer when other instructions are using the stack.
Chris Lattnere563bbc2008-10-11 22:08:30 +00001908 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001909
Dan Gohman475871a2008-07-27 21:46:04 +00001910 SDValue Size = Tmp2.getOperand(1);
1911 SDValue SP = DAG.getCopyFromReg(Chain, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001912 Chain = SP.getValue(1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001913 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Cheng61bbbab2007-08-16 23:50:06 +00001914 unsigned StackAlign =
1915 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1916 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001917 SP = DAG.getNode(ISD::AND, VT, SP,
1918 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001919 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001920 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1921
Chris Lattnere563bbc2008-10-11 22:08:30 +00001922 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
1923 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001924
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001925 Tmp1 = LegalizeOp(Tmp1);
1926 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001927 break;
1928 }
1929 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001930 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001931 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001932 Tmp1 = LegalizeOp(Tmp3);
1933 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001934 }
Chris Lattner903d2782006-01-15 08:54:32 +00001935 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001936 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001937 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001938 }
Chris Lattner903d2782006-01-15 08:54:32 +00001939 // Since this op produce two values, make sure to remember that we
1940 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001941 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1942 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001943 return Op.getResNo() ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001944 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001945 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001946 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001947 bool Changed = false;
1948 // Legalize all of the operands of the inline asm, in case they are nodes
1949 // that need to be expanded or something. Note we skip the asm string and
1950 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001951 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001952 Changed = Op != Ops[0];
1953 Ops[0] = Op;
1954
1955 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1956 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001957 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getZExtValue() >> 3;
Chris Lattner25a022c2006-07-11 01:40:09 +00001958 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001959 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001960 if (Op != Ops[i]) {
1961 Changed = true;
1962 Ops[i] = Op;
1963 }
1964 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001965 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001966
1967 if (HasInFlag) {
1968 Op = LegalizeOp(Ops.back());
1969 Changed |= Op != Ops.back();
1970 Ops.back() = Op;
1971 }
1972
1973 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001974 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001975
1976 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001977 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1978 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001979 return Result.getValue(Op.getResNo());
Chris Lattner25a022c2006-07-11 01:40:09 +00001980 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001981 case ISD::BR:
1982 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001983 // Ensure that libcalls are emitted before a branch.
1984 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1985 Tmp1 = LegalizeOp(Tmp1);
1986 LastCALLSEQ_END = DAG.getEntryNode();
1987
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001988 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001989 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001990 case ISD::BRIND:
1991 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1992 // Ensure that libcalls are emitted before a branch.
1993 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1994 Tmp1 = LegalizeOp(Tmp1);
1995 LastCALLSEQ_END = DAG.getEntryNode();
1996
1997 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1998 default: assert(0 && "Indirect target must be legal type (pointer)!");
1999 case Legal:
2000 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2001 break;
2002 }
2003 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2004 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00002005 case ISD::BR_JT:
2006 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2007 // Ensure that libcalls are emitted before a branch.
2008 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2009 Tmp1 = LegalizeOp(Tmp1);
2010 LastCALLSEQ_END = DAG.getEntryNode();
2011
2012 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
2013 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2014
2015 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
2016 default: assert(0 && "This action is not supported yet!");
2017 case TargetLowering::Legal: break;
2018 case TargetLowering::Custom:
2019 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002020 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng3d4ce112006-10-30 08:00:44 +00002021 break;
2022 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002023 SDValue Chain = Result.getOperand(0);
2024 SDValue Table = Result.getOperand(1);
2025 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002026
Duncan Sands83ec4b62008-06-06 12:08:01 +00002027 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002028 MachineFunction &MF = DAG.getMachineFunction();
2029 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00002030 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
Dan Gohman475871a2008-07-27 21:46:04 +00002031 SDValue Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002032
Duncan Sands712f7b32008-12-12 08:13:38 +00002033 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
2034 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, PTy, Chain, Addr,
2035 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Chengcc415862007-11-09 01:32:10 +00002036 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002037 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002038 // For PIC, the sequence is:
2039 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00002040 // RelocBase can be JumpTable, GOT or some sort of global base.
Evan Chengcc415862007-11-09 01:32:10 +00002041 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
2042 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00002043 }
Evan Chengcc415862007-11-09 01:32:10 +00002044 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002045 }
2046 }
2047 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002048 case ISD::BRCOND:
2049 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002050 // Ensure that libcalls are emitted before a return.
2051 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2052 Tmp1 = LegalizeOp(Tmp1);
2053 LastCALLSEQ_END = DAG.getEntryNode();
2054
Chris Lattner47e92232005-01-18 19:27:06 +00002055 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2056 case Expand: assert(0 && "It's impossible to expand bools");
2057 case Legal:
2058 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2059 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002060 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002061 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00002062
2063 // The top bits of the promoted condition are not necessarily zero, ensure
2064 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002065 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002066 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002067 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00002068 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002069 break;
2070 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002071 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002072
2073 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002074 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00002075
2076 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
2077 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002078 case TargetLowering::Legal: break;
2079 case TargetLowering::Custom:
2080 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002081 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002082 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002083 case TargetLowering::Expand:
2084 // Expand brcond's setcc into its constituent parts and create a BR_CC
2085 // Node.
2086 if (Tmp2.getOpcode() == ISD::SETCC) {
2087 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
2088 Tmp2.getOperand(0), Tmp2.getOperand(1),
2089 Node->getOperand(2));
2090 } else {
2091 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
2092 DAG.getCondCode(ISD::SETNE), Tmp2,
2093 DAG.getConstant(0, Tmp2.getValueType()),
2094 Node->getOperand(2));
2095 }
2096 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002097 }
2098 break;
2099 case ISD::BR_CC:
2100 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002101 // Ensure that libcalls are emitted before a branch.
2102 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2103 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00002104 Tmp2 = Node->getOperand(2); // LHS
2105 Tmp3 = Node->getOperand(3); // RHS
2106 Tmp4 = Node->getOperand(1); // CC
2107
Dale Johannesenbb5da912009-02-02 20:41:04 +00002108 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
2109 Tmp2, Tmp3, Tmp4, dl);
Evan Cheng722cb362006-12-18 22:55:34 +00002110 LastCALLSEQ_END = DAG.getEntryNode();
2111
Evan Cheng7f042682008-10-15 02:05:31 +00002112 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002113 // the LHS is a legal SETCC itself. In this case, we need to compare
2114 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00002115 if (Tmp3.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002116 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2117 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00002118 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00002119
2120 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
2121 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00002122
Chris Lattner181b7a32005-12-17 23:46:46 +00002123 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2124 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002125 case TargetLowering::Legal: break;
2126 case TargetLowering::Custom:
2127 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002128 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00002129 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002130 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002131 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002132 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00002133 LoadSDNode *LD = cast<LoadSDNode>(Node);
2134 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2135 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002136
Evan Cheng466685d2006-10-09 20:57:25 +00002137 ISD::LoadExtType ExtType = LD->getExtensionType();
2138 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002139 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00002140 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2141 Tmp3 = Result.getValue(0);
2142 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002143
Evan Cheng466685d2006-10-09 20:57:25 +00002144 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2145 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002146 case TargetLowering::Legal:
2147 // If this is an unaligned load and the target doesn't support it,
2148 // expand it.
2149 if (!TLI.allowsUnalignedMemoryAccesses()) {
2150 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002151 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002152 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002153 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002154 TLI);
2155 Tmp3 = Result.getOperand(0);
2156 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00002157 Tmp3 = LegalizeOp(Tmp3);
2158 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002159 }
2160 }
2161 break;
Evan Cheng466685d2006-10-09 20:57:25 +00002162 case TargetLowering::Custom:
2163 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002164 if (Tmp1.getNode()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002165 Tmp3 = LegalizeOp(Tmp1);
2166 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00002167 }
Evan Cheng466685d2006-10-09 20:57:25 +00002168 break;
2169 case TargetLowering::Promote: {
2170 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002171 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00002172 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002173 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00002174
2175 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002176 LD->getSrcValueOffset(),
2177 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00002178 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
2179 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002180 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00002181 }
Evan Cheng466685d2006-10-09 20:57:25 +00002182 }
2183 // Since loads produce two values, make sure to remember that we
2184 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002185 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2186 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002187 return Op.getResNo() ? Tmp4 : Tmp3;
Evan Cheng466685d2006-10-09 20:57:25 +00002188 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002189 MVT SrcVT = LD->getMemoryVT();
2190 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002191 int SVOffset = LD->getSrcValueOffset();
2192 unsigned Alignment = LD->getAlignment();
2193 bool isVolatile = LD->isVolatile();
2194
Duncan Sands83ec4b62008-06-06 12:08:01 +00002195 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002196 // Some targets pretend to have an i1 loading operation, and actually
2197 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2198 // bits are guaranteed to be zero; it helps the optimizers understand
2199 // that these bits are zero. It is also useful for EXTLOAD, since it
2200 // tells the optimizers that those bits are undefined. It would be
2201 // nice to have an effective generic way of getting these benefits...
2202 // Until such a way is found, don't insist on promoting i1 here.
2203 (SrcVT != MVT::i1 ||
Evan Cheng03294662008-10-14 21:26:46 +00002204 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002205 // Promote to a byte-sized load if not loading an integral number of
2206 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002207 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2208 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002209 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002210
2211 // The extra bits are guaranteed to be zero, since we stored them that
2212 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2213
2214 ISD::LoadExtType NewExtType =
2215 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2216
2217 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2218 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2219 NVT, isVolatile, Alignment);
2220
2221 Ch = Result.getValue(1); // The chain.
2222
2223 if (ExtType == ISD::SEXTLOAD)
2224 // Having the top bits zero doesn't help when sign extending.
2225 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2226 Result, DAG.getValueType(SrcVT));
2227 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2228 // All the top bits are guaranteed to be zero - inform the optimizers.
2229 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2230 DAG.getValueType(SrcVT));
2231
2232 Tmp1 = LegalizeOp(Result);
2233 Tmp2 = LegalizeOp(Ch);
2234 } else if (SrcWidth & (SrcWidth - 1)) {
2235 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002236 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002237 "Unsupported extload!");
2238 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2239 assert(RoundWidth < SrcWidth);
2240 unsigned ExtraWidth = SrcWidth - RoundWidth;
2241 assert(ExtraWidth < RoundWidth);
2242 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2243 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002244 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2245 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002246 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002247 unsigned IncrementSize;
2248
2249 if (TLI.isLittleEndian()) {
2250 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2251 // Load the bottom RoundWidth bits.
2252 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2253 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2254 Alignment);
2255
2256 // Load the remaining ExtraWidth bits.
2257 IncrementSize = RoundWidth / 8;
2258 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2259 DAG.getIntPtrConstant(IncrementSize));
2260 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2261 LD->getSrcValue(), SVOffset + IncrementSize,
2262 ExtraVT, isVolatile,
2263 MinAlign(Alignment, IncrementSize));
2264
2265 // Build a factor node to remember that this load is independent of the
2266 // other one.
2267 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2268 Hi.getValue(1));
2269
2270 // Move the top bits to the right place.
2271 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2272 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2273
2274 // Join the hi and lo parts.
2275 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002276 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002277 // Big endian - avoid unaligned loads.
2278 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2279 // Load the top RoundWidth bits.
2280 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2281 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2282 Alignment);
2283
2284 // Load the remaining ExtraWidth bits.
2285 IncrementSize = RoundWidth / 8;
2286 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2287 DAG.getIntPtrConstant(IncrementSize));
2288 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2289 LD->getSrcValue(), SVOffset + IncrementSize,
2290 ExtraVT, isVolatile,
2291 MinAlign(Alignment, IncrementSize));
2292
2293 // Build a factor node to remember that this load is independent of the
2294 // other one.
2295 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2296 Hi.getValue(1));
2297
2298 // Move the top bits to the right place.
2299 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2300 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2301
2302 // Join the hi and lo parts.
2303 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2304 }
2305
2306 Tmp1 = LegalizeOp(Result);
2307 Tmp2 = LegalizeOp(Ch);
2308 } else {
Evan Cheng03294662008-10-14 21:26:46 +00002309 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002310 default: assert(0 && "This action is not supported yet!");
2311 case TargetLowering::Custom:
2312 isCustom = true;
2313 // FALLTHROUGH
2314 case TargetLowering::Legal:
2315 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2316 Tmp1 = Result.getValue(0);
2317 Tmp2 = Result.getValue(1);
2318
2319 if (isCustom) {
2320 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002321 if (Tmp3.getNode()) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002322 Tmp1 = LegalizeOp(Tmp3);
2323 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2324 }
2325 } else {
2326 // If this is an unaligned load and the target doesn't support it,
2327 // expand it.
2328 if (!TLI.allowsUnalignedMemoryAccesses()) {
2329 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002330 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002331 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002332 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002333 TLI);
2334 Tmp1 = Result.getOperand(0);
2335 Tmp2 = Result.getOperand(1);
2336 Tmp1 = LegalizeOp(Tmp1);
2337 Tmp2 = LegalizeOp(Tmp2);
2338 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002339 }
2340 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002341 break;
2342 case TargetLowering::Expand:
2343 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2344 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dan Gohman475871a2008-07-27 21:46:04 +00002345 SDValue Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002346 LD->getSrcValueOffset(),
2347 LD->isVolatile(), LD->getAlignment());
2348 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2349 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2350 Tmp2 = LegalizeOp(Load.getValue(1));
2351 break;
2352 }
2353 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2354 // Turn the unsupported load into an EXTLOAD followed by an explicit
2355 // zero/sign extend inreg.
2356 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2357 Tmp1, Tmp2, LD->getSrcValue(),
2358 LD->getSrcValueOffset(), SrcVT,
2359 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002360 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002361 if (ExtType == ISD::SEXTLOAD)
2362 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2363 Result, DAG.getValueType(SrcVT));
2364 else
2365 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2366 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2367 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002368 break;
2369 }
Evan Cheng466685d2006-10-09 20:57:25 +00002370 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002371
Evan Cheng466685d2006-10-09 20:57:25 +00002372 // Since loads produce two values, make sure to remember that we legalized
2373 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002374 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2375 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002376 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002377 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002378 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002379 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002380 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002381 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002382 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002383 case Legal:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002384 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Nate Begeman5dc897b2005-10-19 00:06:56 +00002385 // 1 -> Hi
2386 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002387 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002388 TLI.getShiftAmountTy()));
2389 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2390 } else {
2391 // 0 -> Lo
2392 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2393 Node->getOperand(0));
2394 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002395 break;
2396 case Expand:
2397 // Get both the low and high parts.
2398 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002399 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Nate Begeman5dc897b2005-10-19 00:06:56 +00002400 Result = Tmp2; // 1 -> Hi
2401 else
2402 Result = Tmp1; // 0 -> Lo
2403 break;
2404 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002405 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002406 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002407
2408 case ISD::CopyToReg:
2409 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002410
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002411 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002412 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002413 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002414 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002415 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002416 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002417 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002418 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002419 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002420 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002421 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2422 Tmp3);
2423 } else {
2424 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002425 }
2426
2427 // Since this produces two values, make sure to remember that we legalized
2428 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002429 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2430 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002431 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002432 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002433 break;
2434
2435 case ISD::RET:
2436 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002437
2438 // Ensure that libcalls are emitted before a return.
2439 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2440 Tmp1 = LegalizeOp(Tmp1);
2441 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002442
Chris Lattner3e928bb2005-01-07 07:47:09 +00002443 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002444 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002445 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002446 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002447 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002448 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002449 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002450 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002451 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002452 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002453 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002454 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002455
2456 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002457 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002458 std::swap(Lo, Hi);
2459
Gabor Greifba36cb52008-08-28 21:40:38 +00002460 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00002461 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2462 else
2463 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002464 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002465 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00002466 SDNode *InVal = Tmp2.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002467 int InIx = Tmp2.getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002468 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2469 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002470
Dan Gohman7f321562007-06-25 16:23:39 +00002471 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002472 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002473 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002474 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002475 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002476 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002477 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002478 } else if (NumElems == 1) {
2479 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002480 Tmp2 = ScalarizeVectorOp(Tmp2);
2481 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002482 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002483
2484 // FIXME: Returns of gcc generic vectors smaller than a legal type
2485 // should be returned in integer registers!
2486
Chris Lattnerf87324e2006-04-11 01:31:51 +00002487 // The scalarized value type may not be legal, e.g. it might require
2488 // promotion or expansion. Relegalize the return.
2489 Result = LegalizeOp(Result);
2490 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002491 // FIXME: Returns of gcc generic vectors larger than a legal vector
2492 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002493 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002494 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002495 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002496 Result = LegalizeOp(Result);
2497 }
2498 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002499 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002500 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002501 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002502 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002503 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002504 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002505 }
2506 break;
2507 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002508 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002509 break;
2510 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002511 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002512 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002513 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002514 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2515 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002516 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002517 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002518 break;
2519 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002520 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002521 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002522 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002523 ExpandOp(Node->getOperand(i), Lo, Hi);
2524 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002525 NewValues.push_back(Node->getOperand(i+1));
Gabor Greifba36cb52008-08-28 21:40:38 +00002526 if (Hi.getNode()) {
Evan Cheng13acce32006-12-11 19:27:14 +00002527 NewValues.push_back(Hi);
2528 NewValues.push_back(Node->getOperand(i+1));
2529 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002530 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002531 }
2532 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002533 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002534 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002535
2536 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002537 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002538 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002539 Result = DAG.getNode(ISD::RET, MVT::Other,
2540 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002541 break;
2542 }
2543 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002544
Chris Lattner6862dbc2006-01-29 21:02:23 +00002545 if (Result.getOpcode() == ISD::RET) {
2546 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2547 default: assert(0 && "This action is not supported yet!");
2548 case TargetLowering::Legal: break;
2549 case TargetLowering::Custom:
2550 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002551 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner6862dbc2006-01-29 21:02:23 +00002552 break;
2553 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002554 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002555 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002556 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002557 StoreSDNode *ST = cast<StoreSDNode>(Node);
2558 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2559 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002560 int SVOffset = ST->getSrcValueOffset();
2561 unsigned Alignment = ST->getAlignment();
2562 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002563
Evan Cheng8b2794a2006-10-13 21:14:26 +00002564 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002565 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2566 // FIXME: We shouldn't do this for TargetConstantFP's.
2567 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2568 // to phase ordering between legalized code and the dag combiner. This
2569 // probably means that we need to integrate dag combiner and legalizer
2570 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002571 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002572 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002573 if (CFP->getValueType(0) == MVT::f32 &&
2574 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002575 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen7111b022008-10-09 18:53:47 +00002576 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002577 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002578 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2579 SVOffset, isVolatile, Alignment);
2580 break;
2581 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002582 // If this target supports 64-bit registers, do a single 64-bit store.
2583 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen7111b022008-10-09 18:53:47 +00002584 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002585 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002586 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2587 SVOffset, isVolatile, Alignment);
2588 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002589 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002590 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2591 // stores. If the target supports neither 32- nor 64-bits, this
2592 // xform is certainly not worth it.
Dale Johannesen7111b022008-10-09 18:53:47 +00002593 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002594 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2595 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002596 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002597
2598 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2599 SVOffset, isVolatile, Alignment);
2600 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002601 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002602 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002603 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002604
2605 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2606 break;
2607 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002608 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002609 }
2610
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002611 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002612 case Legal: {
2613 Tmp3 = LegalizeOp(ST->getValue());
2614 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2615 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002616
Duncan Sands83ec4b62008-06-06 12:08:01 +00002617 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002618 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2619 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002620 case TargetLowering::Legal:
2621 // If this is an unaligned store and the target doesn't support it,
2622 // expand it.
2623 if (!TLI.allowsUnalignedMemoryAccesses()) {
2624 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002625 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002626 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002627 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002628 TLI);
2629 }
2630 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002631 case TargetLowering::Custom:
2632 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002633 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002634 break;
2635 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002636 assert(VT.isVector() && "Unknown legal promote case!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002637 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2638 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2639 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002640 ST->getSrcValue(), SVOffset, isVolatile,
2641 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002642 break;
2643 }
2644 break;
2645 }
2646 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002647 if (!ST->getMemoryVT().isVector()) {
2648 // Truncate the value and store the result.
2649 Tmp3 = PromoteOp(ST->getValue());
2650 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2651 SVOffset, ST->getMemoryVT(),
2652 isVolatile, Alignment);
2653 break;
2654 }
2655 // Fall thru to expand for vector
2656 case Expand: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002657 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002658 SDValue Lo, Hi;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002659
2660 // If this is a vector type, then we have to calculate the increment as
2661 // the product of the element size in bytes, and the number of elements
2662 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002663 if (ST->getValue().getValueType().isVector()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002664 SDNode *InVal = ST->getValue().getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002665 int InIx = ST->getValue().getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002666 MVT InVT = InVal->getValueType(InIx);
2667 unsigned NumElems = InVT.getVectorNumElements();
2668 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002669
Dan Gohman7f321562007-06-25 16:23:39 +00002670 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002671 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002672 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002673 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002674 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002675 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002676 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002677 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002678 Result = LegalizeOp(Result);
2679 break;
2680 } else if (NumElems == 1) {
2681 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002682 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002683 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002684 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002685 // The scalarized value type may not be legal, e.g. it might require
2686 // promotion or expansion. Relegalize the scalar store.
2687 Result = LegalizeOp(Result);
2688 break;
2689 } else {
Mon P Wang0c397192008-10-30 08:01:45 +00002690 // Check if we have widen this node with another value
2691 std::map<SDValue, SDValue>::iterator I =
2692 WidenNodes.find(ST->getValue());
2693 if (I != WidenNodes.end()) {
2694 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2695 break;
2696 }
2697 else {
2698 SplitVectorOp(ST->getValue(), Lo, Hi);
2699 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2700 EVT.getSizeInBits()/8;
2701 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002702 }
2703 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002704 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002705 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002706
Richard Pennington4b052dc2008-09-25 16:15:10 +00002707 if (Hi.getNode() && TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002708 std::swap(Lo, Hi);
2709 }
2710
2711 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002712 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002713
Gabor Greifba36cb52008-08-28 21:40:38 +00002714 if (Hi.getNode() == NULL) {
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002715 // Must be int <-> float one-to-one expansion.
2716 Result = Lo;
2717 break;
2718 }
2719
Evan Cheng8b2794a2006-10-13 21:14:26 +00002720 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002721 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002722 assert(isTypeLegal(Tmp2.getValueType()) &&
2723 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002724 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002725 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002726 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002727 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002728 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2729 break;
Mon P Wang0c397192008-10-30 08:01:45 +00002730 } // case Expand
Evan Cheng8b2794a2006-10-13 21:14:26 +00002731 }
2732 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002733 switch (getTypeAction(ST->getValue().getValueType())) {
2734 case Legal:
2735 Tmp3 = LegalizeOp(ST->getValue());
2736 break;
2737 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002738 if (!ST->getValue().getValueType().isVector()) {
2739 // We can promote the value, the truncstore will still take care of it.
2740 Tmp3 = PromoteOp(ST->getValue());
2741 break;
2742 }
2743 // Vector case falls through to expand
Chris Lattnerddf89562008-01-17 19:59:44 +00002744 case Expand:
2745 // Just store the low part. This may become a non-trunc store, so make
2746 // sure to use getTruncStore, not UpdateNodeOperands below.
2747 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2748 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2749 SVOffset, MVT::i8, isVolatile, Alignment);
2750 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002751
Duncan Sands83ec4b62008-06-06 12:08:01 +00002752 MVT StVT = ST->getMemoryVT();
2753 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002754
Duncan Sands83ec4b62008-06-06 12:08:01 +00002755 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002756 // Promote to a byte-sized store with upper bits zero if not
2757 // storing an integral number of bytes. For example, promote
2758 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002759 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands7e857202008-01-22 07:17:34 +00002760 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2761 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2762 SVOffset, NVT, isVolatile, Alignment);
2763 } else if (StWidth & (StWidth - 1)) {
2764 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002765 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002766 "Unsupported truncstore!");
2767 unsigned RoundWidth = 1 << Log2_32(StWidth);
2768 assert(RoundWidth < StWidth);
2769 unsigned ExtraWidth = StWidth - RoundWidth;
2770 assert(ExtraWidth < RoundWidth);
2771 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2772 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002773 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2774 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002775 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002776 unsigned IncrementSize;
2777
2778 if (TLI.isLittleEndian()) {
2779 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2780 // Store the bottom RoundWidth bits.
2781 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2782 SVOffset, RoundVT,
2783 isVolatile, Alignment);
2784
2785 // Store the remaining ExtraWidth bits.
2786 IncrementSize = RoundWidth / 8;
2787 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2788 DAG.getIntPtrConstant(IncrementSize));
2789 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2790 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2791 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2792 SVOffset + IncrementSize, ExtraVT, isVolatile,
2793 MinAlign(Alignment, IncrementSize));
2794 } else {
2795 // Big endian - avoid unaligned stores.
2796 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2797 // Store the top RoundWidth bits.
2798 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2799 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2800 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2801 RoundVT, isVolatile, Alignment);
2802
2803 // Store the remaining ExtraWidth bits.
2804 IncrementSize = RoundWidth / 8;
2805 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2806 DAG.getIntPtrConstant(IncrementSize));
2807 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2808 SVOffset + IncrementSize, ExtraVT, isVolatile,
2809 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002810 }
Duncan Sands7e857202008-01-22 07:17:34 +00002811
2812 // The order of the stores doesn't matter.
2813 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2814 } else {
2815 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2816 Tmp2 != ST->getBasePtr())
2817 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2818 ST->getOffset());
2819
2820 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2821 default: assert(0 && "This action is not supported yet!");
2822 case TargetLowering::Legal:
2823 // If this is an unaligned store and the target doesn't support it,
2824 // expand it.
2825 if (!TLI.allowsUnalignedMemoryAccesses()) {
2826 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002827 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002828 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002829 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands7e857202008-01-22 07:17:34 +00002830 TLI);
2831 }
2832 break;
2833 case TargetLowering::Custom:
2834 Result = TLI.LowerOperation(Result, DAG);
2835 break;
2836 case Expand:
2837 // TRUNCSTORE:i16 i32 -> STORE i16
2838 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2839 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2840 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2841 isVolatile, Alignment);
2842 break;
2843 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002844 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002845 }
2846 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002847 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002848 case ISD::PCMARKER:
2849 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002850 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002851 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002852 case ISD::STACKSAVE:
2853 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002854 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2855 Tmp1 = Result.getValue(0);
2856 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002857
Chris Lattner140d53c2006-01-13 02:50:02 +00002858 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2859 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002860 case TargetLowering::Legal: break;
2861 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002862 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002863 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002864 Tmp1 = LegalizeOp(Tmp3);
2865 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002866 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002867 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002868 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002869 // Expand to CopyFromReg if the target set
2870 // StackPointerRegisterToSaveRestore.
2871 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002872 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002873 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002874 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002875 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002876 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2877 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002878 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002879 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002880 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002881
2882 // Since stacksave produce two values, make sure to remember that we
2883 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002884 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2885 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002886 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002887
Chris Lattner140d53c2006-01-13 02:50:02 +00002888 case ISD::STACKRESTORE:
2889 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2890 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002891 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002892
2893 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2894 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002895 case TargetLowering::Legal: break;
2896 case TargetLowering::Custom:
2897 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002898 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002899 break;
2900 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002901 // Expand to CopyToReg if the target set
2902 // StackPointerRegisterToSaveRestore.
2903 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2904 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2905 } else {
2906 Result = Tmp1;
2907 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002908 break;
2909 }
2910 break;
2911
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002912 case ISD::READCYCLECOUNTER:
2913 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002914 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002915 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2916 Node->getValueType(0))) {
2917 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002918 case TargetLowering::Legal:
2919 Tmp1 = Result.getValue(0);
2920 Tmp2 = Result.getValue(1);
2921 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002922 case TargetLowering::Custom:
2923 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002924 Tmp1 = LegalizeOp(Result.getValue(0));
2925 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002926 break;
2927 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002928
2929 // Since rdcc produce two values, make sure to remember that we legalized
2930 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002931 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2932 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002933 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002934
Chris Lattner2ee743f2005-01-14 22:08:15 +00002935 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002936 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2937 case Expand: assert(0 && "It's impossible to expand bools");
2938 case Legal:
2939 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2940 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002941 case Promote: {
Mon P Wang0c397192008-10-30 08:01:45 +00002942 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Chris Lattner47e92232005-01-18 19:27:06 +00002943 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002944 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002945 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002946 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002947 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002948 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002949 break;
2950 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002951 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002952 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002953 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002954
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002955 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002956
Nate Begemanb942a3d2005-08-23 04:29:48 +00002957 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002958 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002959 case TargetLowering::Legal: break;
2960 case TargetLowering::Custom: {
2961 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002962 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002963 break;
2964 }
Nate Begeman9373a812005-08-10 20:51:12 +00002965 case TargetLowering::Expand:
2966 if (Tmp1.getOpcode() == ISD::SETCC) {
2967 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2968 Tmp2, Tmp3,
2969 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2970 } else {
2971 Result = DAG.getSelectCC(Tmp1,
2972 DAG.getConstant(0, Tmp1.getValueType()),
2973 Tmp2, Tmp3, ISD::SETNE);
2974 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002975 break;
2976 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002977 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002978 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2979 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002980 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002981 ExtOp = ISD::BIT_CONVERT;
2982 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002983 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002984 ExtOp = ISD::ANY_EXTEND;
2985 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002986 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002987 ExtOp = ISD::FP_EXTEND;
2988 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002989 }
2990 // Promote each of the values to the new type.
2991 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2992 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2993 // Perform the larger operation, then round down.
2994 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002995 if (TruncOp != ISD::FP_ROUND)
2996 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2997 else
2998 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2999 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003000 break;
3001 }
3002 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003003 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003004 case ISD::SELECT_CC: {
3005 Tmp1 = Node->getOperand(0); // LHS
3006 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00003007 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
3008 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00003009 SDValue CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00003010
Dale Johannesenbb5da912009-02-02 20:41:04 +00003011 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
3012 Tmp1, Tmp2, CC, dl);
Nate Begeman750ac1b2006-02-01 07:19:44 +00003013
Evan Cheng7f042682008-10-15 02:05:31 +00003014 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00003015 // the LHS is a legal SETCC itself. In this case, we need to compare
3016 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00003017 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003018 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3019 CC = DAG.getCondCode(ISD::SETNE);
3020 }
3021 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3022
3023 // Everything is legal, see if we should expand this op or something.
3024 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3025 default: assert(0 && "This action is not supported yet!");
3026 case TargetLowering::Legal: break;
3027 case TargetLowering::Custom:
3028 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003029 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00003030 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003031 }
3032 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003033 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003034 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00003035 Tmp1 = Node->getOperand(0);
3036 Tmp2 = Node->getOperand(1);
3037 Tmp3 = Node->getOperand(2);
Dale Johannesenbb5da912009-02-02 20:41:04 +00003038 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Nate Begeman750ac1b2006-02-01 07:19:44 +00003039
3040 // If we had to Expand the SetCC operands into a SELECT node, then it may
3041 // not always be possible to return a true LHS & RHS. In this case, just
3042 // return the value we legalized, returned in the LHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003043 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003044 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003045 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003046 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003047
Chris Lattner73e142f2006-01-30 22:43:50 +00003048 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003049 default: assert(0 && "Cannot handle this action for SETCC yet!");
3050 case TargetLowering::Custom:
3051 isCustom = true;
3052 // FALLTHROUGH.
3053 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00003054 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00003055 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00003056 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003057 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00003058 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003059 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003060 case TargetLowering::Promote: {
3061 // First step, figure out the appropriate operation to use.
3062 // Allow SETCC to not be supported for all legal data types
3063 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00003064 MVT NewInTy = Node->getOperand(0).getValueType();
3065 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00003066
3067 // Scan for the appropriate larger type to use.
3068 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003069 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00003070
Duncan Sands83ec4b62008-06-06 12:08:01 +00003071 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003072 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003073 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003074 "Fell off of the edge of the floating point world");
3075
3076 // If the target supports SETCC of this type, use it.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003077 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00003078 break;
3079 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00003080 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00003081 assert(0 && "Cannot promote Legal Integer SETCC yet");
3082 else {
3083 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
3084 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
3085 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003086 Tmp1 = LegalizeOp(Tmp1);
3087 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00003088 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00003089 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00003090 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003091 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003092 case TargetLowering::Expand:
3093 // Expand a setcc node into a select_cc of the same condition, lhs, and
3094 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003095 MVT VT = Node->getValueType(0);
Nate Begemanb942a3d2005-08-23 04:29:48 +00003096 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
3097 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00003098 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00003099 break;
3100 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003101 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003102 case ISD::VSETCC: {
3103 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3104 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00003105 SDValue CC = Node->getOperand(2);
Nate Begemanb43e9c12008-05-12 19:40:03 +00003106
3107 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3108
3109 // Everything is legal, see if we should expand this op or something.
3110 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3111 default: assert(0 && "This action is not supported yet!");
3112 case TargetLowering::Legal: break;
3113 case TargetLowering::Custom:
3114 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003115 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003116 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003117 case TargetLowering::Expand: {
3118 // Unroll into a nasty set of scalar code for now.
3119 MVT VT = Node->getValueType(0);
3120 unsigned NumElems = VT.getVectorNumElements();
3121 MVT EltVT = VT.getVectorElementType();
3122 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3123 SmallVector<SDValue, 8> Ops(NumElems);
3124 for (unsigned i = 0; i < NumElems; ++i) {
3125 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, TmpEltVT,
3126 Tmp1, DAG.getIntPtrConstant(i));
Duncan Sands5480c042009-01-01 15:52:00 +00003127 Ops[i] = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(TmpEltVT), In1,
Mon P Wang84aff842008-12-17 08:49:47 +00003128 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, TmpEltVT,
3129 Tmp2, DAG.getIntPtrConstant(i)),
3130 CC);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003131 Ops[i] = DAG.getNode(ISD::SELECT, EltVT, Ops[i], DAG.getConstant(
3132 APInt::getAllOnesValue(EltVT.getSizeInBits()),
3133 EltVT), DAG.getConstant(0, EltVT));
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003134 }
3135 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], NumElems);
3136 break;
3137 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00003138 }
3139 break;
3140 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00003141
Chris Lattner5b359c62005-04-02 04:00:59 +00003142 case ISD::SHL_PARTS:
3143 case ISD::SRA_PARTS:
3144 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00003145 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00003146 bool Changed = false;
Duncan Sands92abc622009-01-31 15:50:11 +00003147 unsigned N = Node->getNumOperands();
3148 for (unsigned i = 0; i + 1 < N; ++i) {
Chris Lattner84f67882005-01-20 18:52:28 +00003149 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3150 Changed |= Ops.back() != Node->getOperand(i);
3151 }
Duncan Sands92abc622009-01-31 15:50:11 +00003152 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3153 Changed |= Ops.back() != Node->getOperand(N-1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003154 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003155 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00003156
Evan Cheng05a2d562006-01-09 18:31:59 +00003157 switch (TLI.getOperationAction(Node->getOpcode(),
3158 Node->getValueType(0))) {
3159 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003160 case TargetLowering::Legal: break;
3161 case TargetLowering::Custom:
3162 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003163 if (Tmp1.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003164 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00003165 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003166 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00003167 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003168 if (i == Op.getResNo())
Evan Cheng12f22742006-01-19 04:54:52 +00003169 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00003170 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003171 assert(RetVal.getNode() && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00003172 return RetVal;
3173 }
Evan Cheng05a2d562006-01-09 18:31:59 +00003174 break;
3175 }
3176
Chris Lattner2c8086f2005-04-02 05:00:07 +00003177 // Since these produce multiple values, make sure to remember that we
3178 // legalized all of them.
3179 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00003180 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00003181 return Result.getValue(Op.getResNo());
Chris Lattner84f67882005-01-20 18:52:28 +00003182 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003183
3184 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00003185 case ISD::ADD:
3186 case ISD::SUB:
3187 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00003188 case ISD::MULHS:
3189 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003190 case ISD::UDIV:
3191 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003192 case ISD::AND:
3193 case ISD::OR:
3194 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00003195 case ISD::SHL:
3196 case ISD::SRL:
3197 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00003198 case ISD::FADD:
3199 case ISD::FSUB:
3200 case ISD::FMUL:
3201 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00003202 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003203 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003204 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003205
3206 if ((Node->getOpcode() == ISD::SHL ||
3207 Node->getOpcode() == ISD::SRL ||
3208 Node->getOpcode() == ISD::SRA) &&
Duncan Sands92abc622009-01-31 15:50:11 +00003209 !Node->getValueType(0).isVector())
3210 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3211
3212 switch (getTypeAction(Tmp2.getValueType())) {
3213 case Expand: assert(0 && "Not possible");
3214 case Legal:
3215 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3216 break;
3217 case Promote:
3218 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3219 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003220 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003221
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003222 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00003223
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003224 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003225 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00003226 case TargetLowering::Legal: break;
3227 case TargetLowering::Custom:
3228 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003229 if (Tmp1.getNode()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003230 Result = Tmp1;
3231 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00003232 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003233 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003234 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003235 MVT VT = Op.getValueType();
Mon P Wang0c397192008-10-30 08:01:45 +00003236
Dan Gohman525178c2007-10-08 18:33:35 +00003237 // See if multiply or divide can be lowered using two-result operations.
3238 SDVTList VTs = DAG.getVTList(VT, VT);
3239 if (Node->getOpcode() == ISD::MUL) {
3240 // We just need the low half of the multiply; try both the signed
3241 // and unsigned forms. If the target supports both SMUL_LOHI and
3242 // UMUL_LOHI, form a preference by checking which forms of plain
3243 // MULH it supports.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003244 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3245 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3246 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3247 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman525178c2007-10-08 18:33:35 +00003248 unsigned OpToUse = 0;
3249 if (HasSMUL_LOHI && !HasMULHS) {
3250 OpToUse = ISD::SMUL_LOHI;
3251 } else if (HasUMUL_LOHI && !HasMULHU) {
3252 OpToUse = ISD::UMUL_LOHI;
3253 } else if (HasSMUL_LOHI) {
3254 OpToUse = ISD::SMUL_LOHI;
3255 } else if (HasUMUL_LOHI) {
3256 OpToUse = ISD::UMUL_LOHI;
3257 }
3258 if (OpToUse) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003259 Result = SDValue(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).getNode(), 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003260 break;
3261 }
3262 }
3263 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003264 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Chris Lattner31d71612008-10-04 21:27:46 +00003265 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).getNode(),
3266 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003267 break;
3268 }
3269 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003270 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Chris Lattner31d71612008-10-04 21:27:46 +00003271 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).getNode(),
3272 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003273 break;
3274 }
3275 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003276 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Chris Lattner31d71612008-10-04 21:27:46 +00003277 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(),
3278 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003279 break;
3280 }
3281 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003282 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Chris Lattner31d71612008-10-04 21:27:46 +00003283 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(),
3284 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003285 break;
3286 }
Mon P Wang87c8a8f2008-12-18 20:03:17 +00003287
Dan Gohman82669522007-10-11 23:57:53 +00003288 // Check to see if we have a libcall for this operator.
3289 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3290 bool isSigned = false;
3291 switch (Node->getOpcode()) {
3292 case ISD::UDIV:
3293 case ISD::SDIV:
3294 if (VT == MVT::i32) {
3295 LC = Node->getOpcode() == ISD::UDIV
Mon P Wang0c397192008-10-30 08:01:45 +00003296 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003297 isSigned = Node->getOpcode() == ISD::SDIV;
3298 }
3299 break;
Chris Lattner31d71612008-10-04 21:27:46 +00003300 case ISD::MUL:
3301 if (VT == MVT::i32)
3302 LC = RTLIB::MUL_I32;
Nate Begeman9b994852009-01-24 22:12:48 +00003303 else if (VT == MVT::i64)
Scott Michel845145f2008-12-29 03:21:37 +00003304 LC = RTLIB::MUL_I64;
Chris Lattner31d71612008-10-04 21:27:46 +00003305 break;
Dan Gohman82669522007-10-11 23:57:53 +00003306 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003307 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3308 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003309 break;
Scott Micheld1e8d9c2009-01-21 04:58:48 +00003310 case ISD::FDIV:
3311 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3312 RTLIB::DIV_PPCF128);
3313 break;
Dan Gohman82669522007-10-11 23:57:53 +00003314 default: break;
3315 }
3316 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003317 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003318 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003319 break;
3320 }
Mon P Wang0c397192008-10-30 08:01:45 +00003321
Duncan Sands83ec4b62008-06-06 12:08:01 +00003322 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003323 "Cannot expand this binary operator!");
3324 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003325 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003326 break;
3327 }
Evan Chengcc987612006-04-12 21:20:24 +00003328 case TargetLowering::Promote: {
3329 switch (Node->getOpcode()) {
3330 default: assert(0 && "Do not know how to promote this BinOp!");
3331 case ISD::AND:
3332 case ISD::OR:
3333 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003334 MVT OVT = Node->getValueType(0);
3335 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3336 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003337 // Bit convert each of the values to the new type.
3338 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3339 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3340 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3341 // Bit convert the result back the original type.
3342 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3343 break;
3344 }
3345 }
3346 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003347 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003348 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003349
Dan Gohmane14ea862007-10-05 14:17:22 +00003350 case ISD::SMUL_LOHI:
3351 case ISD::UMUL_LOHI:
3352 case ISD::SDIVREM:
3353 case ISD::UDIVREM:
3354 // These nodes will only be produced by target-specific lowering, so
3355 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003356 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003357 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003358
3359 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3360 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3361 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003362 break;
3363
Chris Lattnera09f8482006-03-05 05:09:38 +00003364 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3365 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3366 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3367 case Expand: assert(0 && "Not possible");
3368 case Legal:
3369 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3370 break;
3371 case Promote:
3372 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3373 break;
3374 }
3375
3376 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3377
3378 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3379 default: assert(0 && "Operation not supported");
3380 case TargetLowering::Custom:
3381 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003382 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003383 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003384 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003385 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003386 // If this target supports fabs/fneg natively and select is cheap,
3387 // do this efficiently.
3388 if (!TLI.isSelectExpensive() &&
3389 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3390 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003391 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003392 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003393 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003394 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003395 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman475871a2008-07-27 21:46:04 +00003396 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Duncan Sands5480c042009-01-01 15:52:00 +00003397 SignBit = DAG.getSetCC(TLI.getSetCCResultType(IVT),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003398 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3399 // Get the absolute value of the result.
Dan Gohman475871a2008-07-27 21:46:04 +00003400 SDValue AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003401 // Select between the nabs and abs value based on the sign bit of
3402 // the input.
3403 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3404 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3405 AbsVal),
3406 AbsVal);
3407 Result = LegalizeOp(Result);
3408 break;
3409 }
3410
3411 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003412 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003413 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3414 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3415 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3416 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003417 break;
3418 }
Evan Cheng912095b2007-01-04 21:56:39 +00003419 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003420 break;
3421
Nate Begeman551bf3f2006-02-17 05:43:56 +00003422 case ISD::ADDC:
3423 case ISD::SUBC:
3424 Tmp1 = LegalizeOp(Node->getOperand(0));
3425 Tmp2 = LegalizeOp(Node->getOperand(1));
3426 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003427 Tmp3 = Result.getValue(0);
3428 Tmp4 = Result.getValue(1);
3429
3430 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3431 default: assert(0 && "This action is not supported yet!");
3432 case TargetLowering::Legal:
3433 break;
3434 case TargetLowering::Custom:
3435 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3436 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003437 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003438 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3439 }
3440 break;
3441 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003442 // Since this produces two values, make sure to remember that we legalized
3443 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003444 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3445 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3446 return Op.getResNo() ? Tmp4 : Tmp3;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003447
Nate Begeman551bf3f2006-02-17 05:43:56 +00003448 case ISD::ADDE:
3449 case ISD::SUBE:
3450 Tmp1 = LegalizeOp(Node->getOperand(0));
3451 Tmp2 = LegalizeOp(Node->getOperand(1));
3452 Tmp3 = LegalizeOp(Node->getOperand(2));
3453 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003454 Tmp3 = Result.getValue(0);
3455 Tmp4 = Result.getValue(1);
3456
3457 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3458 default: assert(0 && "This action is not supported yet!");
3459 case TargetLowering::Legal:
3460 break;
3461 case TargetLowering::Custom:
3462 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3463 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003464 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003465 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3466 }
3467 break;
3468 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003469 // Since this produces two values, make sure to remember that we legalized
3470 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003471 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3472 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3473 return Op.getResNo() ? Tmp4 : Tmp3;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003474
Nate Begeman419f8b62005-10-18 00:27:41 +00003475 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003476 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003477 // TODO: handle the case where the Lo and Hi operands are not of legal type
3478 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3479 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3480 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003481 case TargetLowering::Promote:
3482 case TargetLowering::Custom:
3483 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003484 case TargetLowering::Legal:
3485 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3486 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3487 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003488 case TargetLowering::Expand:
3489 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3490 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3491 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003492 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003493 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003494 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003495 break;
3496 }
3497 break;
3498 }
3499
Nate Begemanc105e192005-04-06 00:23:54 +00003500 case ISD::UREM:
3501 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003502 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003503 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3504 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003505
Nate Begemanc105e192005-04-06 00:23:54 +00003506 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003507 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3508 case TargetLowering::Custom:
3509 isCustom = true;
3510 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003511 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003512 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003513 if (isCustom) {
3514 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003515 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003516 }
Nate Begemanc105e192005-04-06 00:23:54 +00003517 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003518 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003519 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003520 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003521 MVT VT = Node->getValueType(0);
Dan Gohman525178c2007-10-08 18:33:35 +00003522
3523 // See if remainder can be lowered using two-result operations.
3524 SDVTList VTs = DAG.getVTList(VT, VT);
3525 if (Node->getOpcode() == ISD::SREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003526 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003527 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003528 break;
3529 }
3530 if (Node->getOpcode() == ISD::UREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003531 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003532 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003533 break;
3534 }
3535
Duncan Sands83ec4b62008-06-06 12:08:01 +00003536 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003537 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003538 TargetLowering::Legal) {
3539 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003540 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003541 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3542 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003543 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003544 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003545 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003546 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003547 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003548 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3549 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman475871a2008-07-27 21:46:04 +00003550 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003551 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003552 }
Dan Gohman0d974262007-11-06 22:11:54 +00003553 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003554 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003555 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003556 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003557 Result = LegalizeOp(UnrollVectorOp(Op));
3558 } else {
3559 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003560 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3561 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003562 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003563 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003564 }
Nate Begemanc105e192005-04-06 00:23:54 +00003565 }
3566 break;
3567 }
Dan Gohman525178c2007-10-08 18:33:35 +00003568 }
Nate Begemanc105e192005-04-06 00:23:54 +00003569 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003570 case ISD::VAARG: {
3571 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3572 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3573
Duncan Sands83ec4b62008-06-06 12:08:01 +00003574 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003575 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3576 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003577 case TargetLowering::Custom:
3578 isCustom = true;
3579 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003580 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003581 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3582 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003583 Tmp1 = Result.getValue(1);
3584
3585 if (isCustom) {
3586 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003587 if (Tmp2.getNode()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003588 Result = LegalizeOp(Tmp2);
3589 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3590 }
3591 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003592 break;
3593 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003594 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00003595 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003596 // Increment the pointer, VAList, to the next vaarg
Duncan Sands5c58a312008-11-03 11:51:11 +00003597 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00003598 DAG.getConstant(TLI.getTargetData()->
3599 getTypePaddedSize(VT.getTypeForMVT()),
3600 TLI.getPointerTy()));
Nate Begemanacc398c2006-01-25 18:21:52 +00003601 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003602 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003603 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003604 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003605 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003606 Result = LegalizeOp(Result);
3607 break;
3608 }
3609 }
3610 // Since VAARG produces two values, make sure to remember that we
3611 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003612 AddLegalizedOperand(SDValue(Node, 0), Result);
3613 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003614 return Op.getResNo() ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003615 }
3616
3617 case ISD::VACOPY:
3618 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3619 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3620 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3621
3622 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3623 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003624 case TargetLowering::Custom:
3625 isCustom = true;
3626 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003627 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003628 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3629 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003630 if (isCustom) {
3631 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003632 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003633 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003634 break;
3635 case TargetLowering::Expand:
3636 // This defaults to loading a pointer from the input and storing it to the
3637 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003638 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3639 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman499c1bd2008-04-17 02:09:26 +00003640 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3641 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003642 break;
3643 }
3644 break;
3645
3646 case ISD::VAEND:
3647 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3648 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3649
3650 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3651 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003652 case TargetLowering::Custom:
3653 isCustom = true;
3654 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003655 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003656 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003657 if (isCustom) {
3658 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003659 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003660 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003661 break;
3662 case TargetLowering::Expand:
3663 Result = Tmp1; // Default to a no-op, return the chain
3664 break;
3665 }
3666 break;
3667
3668 case ISD::VASTART:
3669 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3670 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3671
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003672 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3673
Nate Begemanacc398c2006-01-25 18:21:52 +00003674 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3675 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003676 case TargetLowering::Legal: break;
3677 case TargetLowering::Custom:
3678 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003679 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003680 break;
3681 }
3682 break;
3683
Nate Begeman35ef9132006-01-11 21:21:00 +00003684 case ISD::ROTL:
3685 case ISD::ROTR:
3686 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003687 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003688 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003689 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3690 default:
3691 assert(0 && "ROTL/ROTR legalize operation not supported");
3692 break;
3693 case TargetLowering::Legal:
3694 break;
3695 case TargetLowering::Custom:
3696 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003697 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelc9dc1142007-04-02 21:36:32 +00003698 break;
3699 case TargetLowering::Promote:
3700 assert(0 && "Do not know how to promote ROTL/ROTR");
3701 break;
3702 case TargetLowering::Expand:
3703 assert(0 && "Do not know how to expand ROTL/ROTR");
3704 break;
3705 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003706 break;
3707
Nate Begemand88fc032006-01-14 03:14:10 +00003708 case ISD::BSWAP:
3709 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3710 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003711 case TargetLowering::Custom:
3712 assert(0 && "Cannot custom legalize this yet!");
3713 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003714 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003715 break;
3716 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003717 MVT OVT = Tmp1.getValueType();
3718 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3719 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003720
Chris Lattner456a93a2006-01-28 07:39:30 +00003721 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3722 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3723 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3724 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3725 break;
3726 }
3727 case TargetLowering::Expand:
3728 Result = ExpandBSWAP(Tmp1);
3729 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003730 }
3731 break;
3732
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003733 case ISD::CTPOP:
3734 case ISD::CTTZ:
3735 case ISD::CTLZ:
3736 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3737 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003738 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003739 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003740 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003741 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003742 TargetLowering::Custom) {
3743 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003744 if (Tmp1.getNode()) {
Scott Michel335f4f72007-08-02 02:22:46 +00003745 Result = Tmp1;
3746 }
Scott Michel910b66d2007-07-30 21:00:31 +00003747 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003748 break;
3749 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003750 MVT OVT = Tmp1.getValueType();
3751 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003752
3753 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003754 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3755 // Perform the larger operation, then subtract if needed.
3756 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003757 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003758 case ISD::CTPOP:
3759 Result = Tmp1;
3760 break;
3761 case ISD::CTTZ:
3762 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Duncan Sands5480c042009-01-01 15:52:00 +00003763 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003764 DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003765 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003766 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003767 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003768 break;
3769 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003770 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003771 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003772 DAG.getConstant(NVT.getSizeInBits() -
3773 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003774 break;
3775 }
3776 break;
3777 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003778 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003779 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003780 break;
3781 }
3782 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003783
Chris Lattner2c8086f2005-04-02 05:00:07 +00003784 // Unary operators
3785 case ISD::FABS:
3786 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003787 case ISD::FSQRT:
3788 case ISD::FSIN:
3789 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003790 case ISD::FLOG:
3791 case ISD::FLOG2:
3792 case ISD::FLOG10:
3793 case ISD::FEXP:
3794 case ISD::FEXP2:
Dan Gohman509e84f2008-08-21 17:55:02 +00003795 case ISD::FTRUNC:
3796 case ISD::FFLOOR:
3797 case ISD::FCEIL:
3798 case ISD::FRINT:
3799 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003800 Tmp1 = LegalizeOp(Node->getOperand(0));
3801 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003802 case TargetLowering::Promote:
3803 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003804 isCustom = true;
3805 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003806 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003807 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003808 if (isCustom) {
3809 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003810 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng59ad7812006-01-31 18:14:25 +00003811 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003812 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003813 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003814 switch (Node->getOpcode()) {
3815 default: assert(0 && "Unreachable!");
3816 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003817 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3818 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003819 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003820 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003821 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003822 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003823 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003824 Tmp2 = DAG.getConstantFP(0.0, VT);
Duncan Sands5480c042009-01-01 15:52:00 +00003825 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
3826 Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003827 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3828 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003829 break;
3830 }
Evan Cheng9d24ac52008-09-09 23:35:53 +00003831 case ISD::FSQRT:
3832 case ISD::FSIN:
3833 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003834 case ISD::FLOG:
3835 case ISD::FLOG2:
3836 case ISD::FLOG10:
3837 case ISD::FEXP:
3838 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003839 case ISD::FTRUNC:
3840 case ISD::FFLOOR:
3841 case ISD::FCEIL:
3842 case ISD::FRINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00003843 case ISD::FNEARBYINT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003844 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003845
3846 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003847 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003848 Result = LegalizeOp(UnrollVectorOp(Op));
3849 break;
3850 }
3851
Evan Cheng56966222007-01-12 02:11:51 +00003852 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003853 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003854 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003855 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3856 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003857 break;
3858 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003859 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3860 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003861 break;
3862 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003863 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3864 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003865 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003866 case ISD::FLOG:
3867 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3868 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3869 break;
3870 case ISD::FLOG2:
3871 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3872 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3873 break;
3874 case ISD::FLOG10:
3875 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3876 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3877 break;
3878 case ISD::FEXP:
3879 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3880 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3881 break;
3882 case ISD::FEXP2:
3883 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3884 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3885 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003886 case ISD::FTRUNC:
3887 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3888 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3889 break;
3890 case ISD::FFLOOR:
3891 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3892 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3893 break;
3894 case ISD::FCEIL:
3895 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3896 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3897 break;
3898 case ISD::FRINT:
3899 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3900 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3901 break;
3902 case ISD::FNEARBYINT:
3903 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3904 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3905 break;
Evan Cheng9d24ac52008-09-09 23:35:53 +00003906 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003907 default: assert(0 && "Unreachable!");
3908 }
Dan Gohman475871a2008-07-27 21:46:04 +00003909 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003910 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003911 break;
3912 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003913 }
3914 break;
3915 }
3916 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003917 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003918 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003919
3920 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003921 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003922 Result = LegalizeOp(UnrollVectorOp(Op));
3923 break;
3924 }
3925
3926 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003927 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3928 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003929 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003930 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003931 break;
3932 }
Chris Lattner35481892005-12-23 00:16:34 +00003933 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003934 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003935 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3936 Node->getValueType(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003937 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003938 // The input has to be a vector type, we have to either scalarize it, pack
3939 // it, or convert it based on whether the input vector type is legal.
Gabor Greifba36cb52008-08-28 21:40:38 +00003940 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00003941 int InIx = Node->getOperand(0).getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003942 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3943 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohman7f321562007-06-25 16:23:39 +00003944
3945 // Figure out if there is a simple type corresponding to this Vector
3946 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003947 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003948 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003949 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003950 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3951 LegalizeOp(Node->getOperand(0)));
3952 break;
3953 } else if (NumElems == 1) {
3954 // Turn this into a bit convert of the scalar input.
3955 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3956 ScalarizeVectorOp(Node->getOperand(0)));
3957 break;
3958 } else {
3959 // FIXME: UNIMP! Store then reload
3960 assert(0 && "Cast from unsupported vector type not implemented yet!");
3961 }
Chris Lattner67993f72006-01-23 07:30:46 +00003962 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003963 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3964 Node->getOperand(0).getValueType())) {
3965 default: assert(0 && "Unknown operation action!");
3966 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003967 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3968 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003969 break;
3970 case TargetLowering::Legal:
3971 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003972 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003973 break;
3974 }
3975 }
3976 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00003977 case ISD::CONVERT_RNDSAT: {
3978 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
3979 switch (CvtCode) {
3980 default: assert(0 && "Unknown cvt code!");
3981 case ISD::CVT_SF:
3982 case ISD::CVT_UF:
Mon P Wang77cdf302008-11-10 20:54:11 +00003983 case ISD::CVT_FF:
Mon P Wang1cd46bb2008-12-09 07:27:39 +00003984 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00003985 case ISD::CVT_FS:
3986 case ISD::CVT_FU:
3987 case ISD::CVT_SS:
3988 case ISD::CVT_SU:
3989 case ISD::CVT_US:
3990 case ISD::CVT_UU: {
3991 SDValue DTyOp = Node->getOperand(1);
3992 SDValue STyOp = Node->getOperand(2);
3993 SDValue RndOp = Node->getOperand(3);
3994 SDValue SatOp = Node->getOperand(4);
3995 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3996 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3997 case Legal:
3998 Tmp1 = LegalizeOp(Node->getOperand(0));
3999 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
4000 RndOp, SatOp);
4001 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4002 TargetLowering::Custom) {
4003 Tmp1 = TLI.LowerOperation(Result, DAG);
4004 if (Tmp1.getNode()) Result = Tmp1;
4005 }
4006 break;
4007 case Promote:
4008 Result = PromoteOp(Node->getOperand(0));
4009 // For FP, make Op1 a i32
4010
Mon P Wang1cd46bb2008-12-09 07:27:39 +00004011 Result = DAG.getConvertRndSat(Op.getValueType(), Result,
Mon P Wang77cdf302008-11-10 20:54:11 +00004012 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4013 break;
4014 }
4015 break;
4016 }
4017 } // end switch CvtCode
4018 break;
4019 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00004020 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00004021 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004022 case ISD::UINT_TO_FP: {
4023 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00004024 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00004025 Node->getValueType(0), Node->getOperand(0), dl);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004026 break;
4027 }
4028 case ISD::TRUNCATE:
4029 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4030 case Legal:
4031 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel546d7b52008-12-02 19:55:08 +00004032 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4033 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4034 case TargetLowering::Custom:
Mon P Wangf67303d2008-12-11 00:44:22 +00004035 isCustom = true;
4036 // FALLTHROUGH
Scott Michel546d7b52008-12-02 19:55:08 +00004037 case TargetLowering::Legal:
Mon P Wangf67303d2008-12-11 00:44:22 +00004038 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4039 if (isCustom) {
4040 Tmp1 = TLI.LowerOperation(Result, DAG);
4041 if (Tmp1.getNode()) Result = Tmp1;
4042 }
4043 break;
Mon P Wang9e5ecb82008-12-12 01:25:51 +00004044 case TargetLowering::Expand:
4045 assert(Result.getValueType().isVector() && "must be vector type");
4046 // Unroll the truncate. We should do better.
4047 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerb0a5cdd2008-12-02 12:12:25 +00004048 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004049 break;
4050 case Expand:
4051 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4052
4053 // Since the result is legal, we should just be able to truncate the low
4054 // part of the source.
4055 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
4056 break;
4057 case Promote:
4058 Result = PromoteOp(Node->getOperand(0));
4059 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
4060 break;
4061 }
4062 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004063
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004064 case ISD::FP_TO_SINT:
4065 case ISD::FP_TO_UINT:
4066 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4067 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00004068 Tmp1 = LegalizeOp(Node->getOperand(0));
4069
Chris Lattner1618beb2005-07-29 00:11:56 +00004070 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4071 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004072 case TargetLowering::Custom:
4073 isCustom = true;
4074 // FALLTHROUGH
4075 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004076 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004077 if (isCustom) {
4078 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004079 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00004080 }
4081 break;
4082 case TargetLowering::Promote:
4083 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Dale Johannesenaf435272009-02-02 19:03:57 +00004084 Node->getOpcode() == ISD::FP_TO_SINT,
4085 dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00004086 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00004087 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00004088 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004089 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004090 MVT VT = Node->getOperand(0).getValueType();
4091 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00004092 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00004093 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4094 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004095 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00004096 Tmp2 = DAG.getConstantFP(apf, VT);
Dale Johannesenaf435272009-02-02 19:03:57 +00004097 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
4098 Node->getOperand(0),
Duncan Sands5480c042009-01-01 15:52:00 +00004099 Tmp2, ISD::SETLT);
Dale Johannesenaf435272009-02-02 19:03:57 +00004100 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4101 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
4102 DAG.getNode(ISD::FSUB, dl, VT,
4103 Node->getOperand(0), Tmp2));
4104 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004105 DAG.getConstant(x, NVT));
Dale Johannesenaf435272009-02-02 19:03:57 +00004106 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Chris Lattner456a93a2006-01-28 07:39:30 +00004107 break;
Nate Begemand2558e32005-08-14 01:20:53 +00004108 } else {
4109 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4110 }
4111 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00004112 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004113 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00004114 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004115 MVT VT = Op.getValueType();
4116 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004117 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004118 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004119 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Dale Johannesenaf435272009-02-02 19:03:57 +00004120 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner0bd48932008-01-17 07:00:52 +00004121 Node->getOperand(0), DAG.getValueType(MVT::f64));
Dale Johannesenaf435272009-02-02 19:03:57 +00004122 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00004123 DAG.getIntPtrConstant(1));
Dale Johannesenaf435272009-02-02 19:03:57 +00004124 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004125 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004126 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4127 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4128 Tmp2 = DAG.getConstantFP(apf, OVT);
4129 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4130 // FIXME: generated code sucks.
Dale Johannesenaf435272009-02-02 19:03:57 +00004131 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
4132 Tmp2,
4133 DAG.getNode(ISD::ADD, dl, MVT::i32,
4134 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4135 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004136 Node->getOperand(0), Tmp2)),
4137 DAG.getConstant(0x80000000, MVT::i32)),
Dale Johannesenaf435272009-02-02 19:03:57 +00004138 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004139 Node->getOperand(0)),
4140 DAG.getCondCode(ISD::SETGE));
4141 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004142 break;
4143 }
Dan Gohmana2e94852008-03-10 23:03:31 +00004144 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00004145 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4146 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4147 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00004148 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00004149 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00004150 break;
4151 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004152 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004153 Tmp1 = PromoteOp(Node->getOperand(0));
4154 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4155 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004156 break;
4157 }
4158 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004159
Chris Lattnerf2670a82008-01-16 06:57:07 +00004160 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004161 MVT DstVT = Op.getValueType();
4162 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004163 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4164 // The only other way we can lower this is to turn it into a STORE,
4165 // LOAD pair, targetting a temporary location (a stack slot).
4166 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
4167 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00004168 }
4169 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4170 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4171 case Legal:
4172 Tmp1 = LegalizeOp(Node->getOperand(0));
4173 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4174 break;
4175 case Promote:
4176 Tmp1 = PromoteOp(Node->getOperand(0));
4177 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
4178 break;
4179 }
4180 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004181 }
Dale Johannesen5411a392007-08-09 01:04:01 +00004182 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004183 MVT DstVT = Op.getValueType();
4184 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004185 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4186 if (SrcVT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00004187 SDValue Lo;
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004188 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004189 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004190 if (DstVT!=MVT::f64)
4191 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00004192 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00004193 }
Chris Lattner0bd48932008-01-17 07:00:52 +00004194 // The only other way we can lower this is to turn it into a STORE,
4195 // LOAD pair, targetting a temporary location (a stack slot).
4196 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
4197 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00004198 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00004199 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4200 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4201 case Legal:
4202 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00004203 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004204 break;
4205 case Promote:
4206 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00004207 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
4208 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004209 break;
4210 }
4211 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004212 }
Chris Lattner13c78e22005-09-02 00:18:10 +00004213 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004214 case ISD::ZERO_EXTEND:
4215 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004216 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00004217 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004218 case Legal:
4219 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00004220 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00004221 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4222 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00004223 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004224 if (Tmp1.getNode()) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00004225 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004226 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004227 case Promote:
4228 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00004229 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004230 Tmp1 = PromoteOp(Node->getOperand(0));
4231 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00004232 break;
Chris Lattner1713e732005-01-16 00:38:00 +00004233 case ISD::ZERO_EXTEND:
4234 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00004235 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00004236 Result = DAG.getZeroExtendInReg(Result,
4237 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00004238 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004239 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00004240 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00004241 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00004242 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004243 Result,
4244 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00004245 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004246 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004247 }
4248 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00004249 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00004250 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00004251 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004252 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00004253
4254 // If this operation is not supported, convert it to a shl/shr or load/store
4255 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004256 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4257 default: assert(0 && "This action not supported for this op yet!");
4258 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004259 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004260 break;
4261 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00004262 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00004263 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00004264 // NOTE: we could fall back on load/store here too for targets without
4265 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004266 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4267 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00004268 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00004269 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
4270 Node->getOperand(0), ShiftCst);
4271 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
4272 Result, ShiftCst);
4273 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00004274 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00004275 // EXTLOAD pair, targetting a temporary location (a stack slot).
4276
4277 // NOTE: there is a choice here between constantly creating new stack
4278 // slots and always reusing the same one. We currently always create
4279 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00004280 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
4281 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00004282 } else {
4283 assert(0 && "Unknown op");
4284 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004285 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00004286 }
Chris Lattner0f69b292005-01-15 06:18:18 +00004287 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004288 }
Duncan Sands36397f52007-07-27 12:58:54 +00004289 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00004290 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00004291 for (unsigned i = 0; i != 6; ++i)
4292 Ops[i] = LegalizeOp(Node->getOperand(i));
4293 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4294 // The only option for this node is to custom lower it.
4295 Result = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004296 assert(Result.getNode() && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00004297
4298 // Since trampoline produces two values, make sure to remember that we
4299 // legalized both of them.
4300 Tmp1 = LegalizeOp(Result.getValue(1));
4301 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00004302 AddLegalizedOperand(SDValue(Node, 0), Result);
4303 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00004304 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00004305 }
Dan Gohman9c78a392008-05-14 00:43:10 +00004306 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004307 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004308 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4309 default: assert(0 && "This action not supported for this op yet!");
4310 case TargetLowering::Custom:
4311 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004312 if (Result.getNode()) break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004313 // Fall Thru
4314 case TargetLowering::Legal:
4315 // If this operation is not supported, lower it to constant 1
4316 Result = DAG.getConstant(1, VT);
4317 break;
4318 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004319 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004320 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004321 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004322 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004323 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4324 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004325 case TargetLowering::Legal:
4326 Tmp1 = LegalizeOp(Node->getOperand(0));
4327 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4328 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004329 case TargetLowering::Custom:
4330 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004331 if (Result.getNode()) break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004332 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004333 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004334 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004335 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004336 TargetLowering::ArgListTy Args;
Dan Gohman475871a2008-07-27 21:46:04 +00004337 std::pair<SDValue,SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004338 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00004339 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00004340 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesen7d2ad622009-01-30 23:10:59 +00004341 Args, DAG, dl);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004342 Result = CallResult.second;
4343 break;
4344 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004345 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004346 }
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004347
Bill Wendling74c37652008-12-09 22:08:41 +00004348 case ISD::SADDO:
4349 case ISD::SSUBO: {
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004350 MVT VT = Node->getValueType(0);
4351 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4352 default: assert(0 && "This action not supported for this op yet!");
4353 case TargetLowering::Custom:
4354 Result = TLI.LowerOperation(Op, DAG);
4355 if (Result.getNode()) break;
4356 // FALLTHROUGH
4357 case TargetLowering::Legal: {
4358 SDValue LHS = LegalizeOp(Node->getOperand(0));
4359 SDValue RHS = LegalizeOp(Node->getOperand(1));
4360
Bill Wendling74c37652008-12-09 22:08:41 +00004361 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
4362 ISD::ADD : ISD::SUB, LHS.getValueType(),
4363 LHS, RHS);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004364 MVT OType = Node->getValueType(1);
4365
Bill Wendlinga6af91a2008-11-25 08:19:22 +00004366 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004367
Bill Wendling740464e2008-11-25 19:40:17 +00004368 // LHSSign -> LHS >= 0
4369 // RHSSign -> RHS >= 0
4370 // SumSign -> Sum >= 0
4371 //
Bill Wendling74c37652008-12-09 22:08:41 +00004372 // Add:
Bill Wendling740464e2008-11-25 19:40:17 +00004373 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling74c37652008-12-09 22:08:41 +00004374 // Sub:
4375 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendling740464e2008-11-25 19:40:17 +00004376 //
4377 SDValue LHSSign = DAG.getSetCC(OType, LHS, Zero, ISD::SETGE);
4378 SDValue RHSSign = DAG.getSetCC(OType, RHS, Zero, ISD::SETGE);
Bill Wendling74c37652008-12-09 22:08:41 +00004379 SDValue SignsMatch = DAG.getSetCC(OType, LHSSign, RHSSign,
4380 Node->getOpcode() == ISD::SADDO ?
4381 ISD::SETEQ : ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004382
Bill Wendling740464e2008-11-25 19:40:17 +00004383 SDValue SumSign = DAG.getSetCC(OType, Sum, Zero, ISD::SETGE);
4384 SDValue SumSignNE = DAG.getSetCC(OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004385
Bill Wendling74c37652008-12-09 22:08:41 +00004386 SDValue Cmp = DAG.getNode(ISD::AND, OType, SignsMatch, SumSignNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004387
4388 MVT ValueVTs[] = { LHS.getValueType(), OType };
4389 SDValue Ops[] = { Sum, Cmp };
4390
Duncan Sandsaaffa052008-12-01 11:41:29 +00004391 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(&ValueVTs[0], 2),
4392 &Ops[0], 2);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004393 SDNode *RNode = Result.getNode();
4394 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4395 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4396 break;
4397 }
4398 }
4399
4400 break;
4401 }
Bill Wendling74c37652008-12-09 22:08:41 +00004402 case ISD::UADDO:
4403 case ISD::USUBO: {
Bill Wendling41ea7e72008-11-24 19:21:46 +00004404 MVT VT = Node->getValueType(0);
4405 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4406 default: assert(0 && "This action not supported for this op yet!");
4407 case TargetLowering::Custom:
4408 Result = TLI.LowerOperation(Op, DAG);
4409 if (Result.getNode()) break;
4410 // FALLTHROUGH
4411 case TargetLowering::Legal: {
4412 SDValue LHS = LegalizeOp(Node->getOperand(0));
4413 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004414
Bill Wendling74c37652008-12-09 22:08:41 +00004415 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
4416 ISD::ADD : ISD::SUB, LHS.getValueType(),
4417 LHS, RHS);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004418 MVT OType = Node->getValueType(1);
Bill Wendling74c37652008-12-09 22:08:41 +00004419 SDValue Cmp = DAG.getSetCC(OType, Sum, LHS,
4420 Node->getOpcode () == ISD::UADDO ?
4421 ISD::SETULT : ISD::SETUGT);
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004422
Bill Wendling41ea7e72008-11-24 19:21:46 +00004423 MVT ValueVTs[] = { LHS.getValueType(), OType };
4424 SDValue Ops[] = { Sum, Cmp };
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004425
Duncan Sandsaaffa052008-12-01 11:41:29 +00004426 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(&ValueVTs[0], 2),
4427 &Ops[0], 2);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004428 SDNode *RNode = Result.getNode();
4429 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4430 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4431 break;
4432 }
4433 }
4434
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004435 break;
4436 }
Bill Wendling74c37652008-12-09 22:08:41 +00004437 case ISD::SMULO:
4438 case ISD::UMULO: {
4439 MVT VT = Node->getValueType(0);
4440 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4441 default: assert(0 && "This action is not supported at all!");
4442 case TargetLowering::Custom:
4443 Result = TLI.LowerOperation(Op, DAG);
4444 if (Result.getNode()) break;
4445 // Fall Thru
4446 case TargetLowering::Legal:
4447 // FIXME: According to Hacker's Delight, this can be implemented in
4448 // target independent lowering, but it would be inefficient, since it
Bill Wendlingbc5e15e2008-12-10 02:01:32 +00004449 // requires a division + a branch.
Bill Wendling74c37652008-12-09 22:08:41 +00004450 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
4451 break;
4452 }
4453 break;
4454 }
4455
Chris Lattner45b8caf2005-01-15 07:15:18 +00004456 }
Chris Lattner456a93a2006-01-28 07:39:30 +00004457
Chris Lattner4ddd2832006-04-08 04:13:17 +00004458 assert(Result.getValueType() == Op.getValueType() &&
4459 "Bad legalization!");
4460
Chris Lattner456a93a2006-01-28 07:39:30 +00004461 // Make sure that the generated code is itself legal.
4462 if (Result != Op)
4463 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004464
Chris Lattner45982da2005-05-12 16:53:42 +00004465 // Note that LegalizeOp may be reentered even from single-use nodes, which
4466 // means that we always must cache transformed nodes.
4467 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004468 return Result;
4469}
4470
Chris Lattner8b6fa222005-01-15 22:16:26 +00004471/// PromoteOp - Given an operation that produces a value in an invalid type,
4472/// promote it to compute the value into a larger type. The produced value will
4473/// have the correct bits for the low portion of the register, but no guarantee
4474/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00004475SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004476 MVT VT = Op.getValueType();
4477 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004478 assert(getTypeAction(VT) == Promote &&
4479 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004480 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004481 "Cannot promote to smaller type!");
4482
Dan Gohman475871a2008-07-27 21:46:04 +00004483 SDValue Tmp1, Tmp2, Tmp3;
4484 SDValue Result;
Gabor Greifba36cb52008-08-28 21:40:38 +00004485 SDNode *Node = Op.getNode();
Chris Lattner03c85462005-01-15 05:21:40 +00004486
Dan Gohman475871a2008-07-27 21:46:04 +00004487 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004488 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004489
Chris Lattner03c85462005-01-15 05:21:40 +00004490 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004491 case ISD::CopyFromReg:
4492 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004493 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004494#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004495 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004496#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004497 assert(0 && "Do not know how to promote this operator!");
4498 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004499 case ISD::UNDEF:
4500 Result = DAG.getNode(ISD::UNDEF, NVT);
4501 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004502 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004503 if (VT != MVT::i1)
4504 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4505 else
4506 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004507 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4508 break;
4509 case ISD::ConstantFP:
4510 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4511 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4512 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004513
Duncan Sands5480c042009-01-01 15:52:00 +00004514 case ISD::SETCC: {
4515 MVT VT0 = Node->getOperand(0).getValueType();
4516 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman5922f562008-03-14 00:53:31 +00004517 && "SetCC type is not legal??");
Duncan Sands5480c042009-01-01 15:52:00 +00004518 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(VT0),
Nate Begeman5922f562008-03-14 00:53:31 +00004519 Node->getOperand(0), Node->getOperand(1),
4520 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004521 break;
Duncan Sands5480c042009-01-01 15:52:00 +00004522 }
Chris Lattner03c85462005-01-15 05:21:40 +00004523 case ISD::TRUNCATE:
4524 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4525 case Legal:
4526 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004527 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004528 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004529 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Chris Lattner03c85462005-01-15 05:21:40 +00004530 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4531 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004532 case Promote:
4533 // The truncation is not required, because we don't guarantee anything
4534 // about high bits anyway.
4535 Result = PromoteOp(Node->getOperand(0));
4536 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004537 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004538 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4539 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004540 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004541 }
4542 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004543 case ISD::SIGN_EXTEND:
4544 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004545 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004546 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4547 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4548 case Legal:
4549 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004550 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004551 break;
4552 case Promote:
4553 // Promote the reg if it's smaller.
4554 Result = PromoteOp(Node->getOperand(0));
4555 // The high bits are not guaranteed to be anything. Insert an extend.
4556 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004557 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004558 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004559 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004560 Result = DAG.getZeroExtendInReg(Result,
4561 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004562 break;
4563 }
4564 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004565 case ISD::CONVERT_RNDSAT: {
4566 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4567 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4568 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4569 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4570 "can only promote integers");
4571 Result = DAG.getConvertRndSat(NVT, Node->getOperand(0),
4572 Node->getOperand(1), Node->getOperand(2),
4573 Node->getOperand(3), Node->getOperand(4),
4574 CvtCode);
4575 break;
4576
4577 }
Chris Lattner35481892005-12-23 00:16:34 +00004578 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004579 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4580 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004581 Result = PromoteOp(Result);
4582 break;
4583
Chris Lattner8b6fa222005-01-15 22:16:26 +00004584 case ISD::FP_EXTEND:
4585 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4586 case ISD::FP_ROUND:
4587 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4588 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4589 case Promote: assert(0 && "Unreachable with 2 FP types!");
4590 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004591 if (Node->getConstantOperandVal(1) == 0) {
4592 // Input is legal? Do an FP_ROUND_INREG.
4593 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4594 DAG.getValueType(VT));
4595 } else {
4596 // Just remove the truncate, it isn't affecting the value.
4597 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4598 Node->getOperand(1));
4599 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004600 break;
4601 }
4602 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004603 case ISD::SINT_TO_FP:
4604 case ISD::UINT_TO_FP:
4605 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4606 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004607 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004608 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004609 break;
4610
4611 case Promote:
4612 Result = PromoteOp(Node->getOperand(0));
4613 if (Node->getOpcode() == ISD::SINT_TO_FP)
4614 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004615 Result,
4616 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004617 else
Chris Lattner23993562005-04-13 02:38:47 +00004618 Result = DAG.getZeroExtendInReg(Result,
4619 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004620 // No extra round required here.
4621 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004622 break;
4623 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004624 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004625 Node->getOperand(0), Node->getDebugLoc());
Chris Lattner77e77a62005-01-21 06:05:23 +00004626 // Round if we cannot tolerate excess precision.
4627 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004628 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4629 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004630 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004631 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004632 break;
4633
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004634 case ISD::SIGN_EXTEND_INREG:
4635 Result = PromoteOp(Node->getOperand(0));
4636 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4637 Node->getOperand(1));
4638 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004639 case ISD::FP_TO_SINT:
4640 case ISD::FP_TO_UINT:
4641 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4642 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004643 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004644 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004645 break;
4646 case Promote:
4647 // The input result is prerounded, so we don't have to do anything
4648 // special.
4649 Tmp1 = PromoteOp(Node->getOperand(0));
4650 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004651 }
Nate Begemand2558e32005-08-14 01:20:53 +00004652 // If we're promoting a UINT to a larger size, check to see if the new node
4653 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4654 // we can use that instead. This allows us to generate better code for
4655 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4656 // legal, such as PowerPC.
4657 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00004658 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4659 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004660 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004661 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4662 } else {
4663 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4664 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004665 break;
4666
Chris Lattner2c8086f2005-04-02 05:00:07 +00004667 case ISD::FABS:
4668 case ISD::FNEG:
4669 Tmp1 = PromoteOp(Node->getOperand(0));
4670 assert(Tmp1.getValueType() == NVT);
4671 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4672 // NOTE: we do not have to do any extra rounding here for
4673 // NoExcessFPPrecision, because we know the input will have the appropriate
4674 // precision, and these operations don't modify precision at all.
4675 break;
4676
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004677 case ISD::FLOG:
4678 case ISD::FLOG2:
4679 case ISD::FLOG10:
4680 case ISD::FEXP:
4681 case ISD::FEXP2:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004682 case ISD::FSQRT:
4683 case ISD::FSIN:
4684 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004685 case ISD::FTRUNC:
4686 case ISD::FFLOOR:
4687 case ISD::FCEIL:
4688 case ISD::FRINT:
4689 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004690 Tmp1 = PromoteOp(Node->getOperand(0));
4691 assert(Tmp1.getValueType() == NVT);
4692 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004693 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004694 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4695 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004696 break;
4697
Evan Cheng9d24ac52008-09-09 23:35:53 +00004698 case ISD::FPOW:
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004699 case ISD::FPOWI: {
Evan Cheng9d24ac52008-09-09 23:35:53 +00004700 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004701 // directly as well, which may be better.
4702 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng9d24ac52008-09-09 23:35:53 +00004703 Tmp2 = Node->getOperand(1);
4704 if (Node->getOpcode() == ISD::FPOW)
4705 Tmp2 = PromoteOp(Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004706 assert(Tmp1.getValueType() == NVT);
Evan Cheng9d24ac52008-09-09 23:35:53 +00004707 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004708 if (NoExcessFPPrecision)
4709 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4710 DAG.getValueType(VT));
4711 break;
4712 }
4713
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004714 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004715 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004716 Tmp2 = PromoteOp(Node->getOperand(2));
4717 Tmp3 = PromoteOp(Node->getOperand(3));
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004718 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getMemoryVT(),
4719 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004720 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004721 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004722 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004723 // Remember that we legalized the chain.
4724 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4725 break;
4726 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004727 case ISD::ATOMIC_LOAD_ADD:
4728 case ISD::ATOMIC_LOAD_SUB:
4729 case ISD::ATOMIC_LOAD_AND:
4730 case ISD::ATOMIC_LOAD_OR:
4731 case ISD::ATOMIC_LOAD_XOR:
4732 case ISD::ATOMIC_LOAD_NAND:
4733 case ISD::ATOMIC_LOAD_MIN:
4734 case ISD::ATOMIC_LOAD_MAX:
4735 case ISD::ATOMIC_LOAD_UMIN:
4736 case ISD::ATOMIC_LOAD_UMAX:
4737 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004738 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004739 Tmp2 = PromoteOp(Node->getOperand(2));
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004740 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getMemoryVT(),
4741 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004742 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004743 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004744 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004745 // Remember that we legalized the chain.
4746 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4747 break;
4748 }
4749
Chris Lattner03c85462005-01-15 05:21:40 +00004750 case ISD::AND:
4751 case ISD::OR:
4752 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004753 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004754 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004755 case ISD::MUL:
4756 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004757 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004758 // that too is okay if they are integer operations.
4759 Tmp1 = PromoteOp(Node->getOperand(0));
4760 Tmp2 = PromoteOp(Node->getOperand(1));
4761 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4762 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004763 break;
4764 case ISD::FADD:
4765 case ISD::FSUB:
4766 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004767 Tmp1 = PromoteOp(Node->getOperand(0));
4768 Tmp2 = PromoteOp(Node->getOperand(1));
4769 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4770 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4771
4772 // Floating point operations will give excess precision that we may not be
4773 // able to tolerate. If we DO allow excess precision, just leave it,
4774 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004775 // FIXME: Why would we need to round FP ops more than integer ones?
4776 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004777 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004778 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4779 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004780 break;
4781
Chris Lattner8b6fa222005-01-15 22:16:26 +00004782 case ISD::SDIV:
4783 case ISD::SREM:
4784 // These operators require that their input be sign extended.
4785 Tmp1 = PromoteOp(Node->getOperand(0));
4786 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004787 if (NVT.isInteger()) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004788 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4789 DAG.getValueType(VT));
4790 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4791 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004792 }
4793 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4794
4795 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004796 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004797 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4798 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004799 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004800 case ISD::FDIV:
4801 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004802 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004803 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004804 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004805 case Expand: assert(0 && "not implemented");
4806 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4807 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004808 }
4809 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004810 case Expand: assert(0 && "not implemented");
4811 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4812 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004813 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004814 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4815
4816 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004817 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004818 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4819 DAG.getValueType(VT));
4820 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004821
4822 case ISD::UDIV:
4823 case ISD::UREM:
4824 // These operators require that their input be zero extended.
4825 Tmp1 = PromoteOp(Node->getOperand(0));
4826 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004827 assert(NVT.isInteger() && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004828 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4829 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004830 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4831 break;
4832
4833 case ISD::SHL:
4834 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004835 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004836 break;
4837 case ISD::SRA:
4838 // The input value must be properly sign extended.
4839 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004840 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4841 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004842 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004843 break;
4844 case ISD::SRL:
4845 // The input value must be properly zero extended.
4846 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004847 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004848 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004849 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004850
4851 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004852 Tmp1 = Node->getOperand(0); // Get the chain.
4853 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004854 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4855 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004856 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004857 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004858 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00004859 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004860 // Increment the pointer, VAList, to the next vaarg
4861 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004862 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004863 TLI.getPointerTy()));
4864 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004865 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004866 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004867 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004868 }
4869 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004870 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004871 break;
4872
Evan Cheng466685d2006-10-09 20:57:25 +00004873 case ISD::LOAD: {
4874 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004875 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4876 ? ISD::EXTLOAD : LD->getExtensionType();
4877 Result = DAG.getExtLoad(ExtType, NVT,
4878 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004879 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004880 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004881 LD->isVolatile(),
4882 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004883 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004884 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004885 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004886 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004887 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004888 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4889 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004890
Duncan Sands83ec4b62008-06-06 12:08:01 +00004891 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004892 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004893 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4894 // Ensure that the resulting node is at least the same size as the operands'
4895 // value types, because we cannot assume that TLI.getSetCCValueType() is
4896 // constant.
4897 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004898 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004899 }
Nate Begeman9373a812005-08-10 20:51:12 +00004900 case ISD::SELECT_CC:
4901 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4902 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4903 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004904 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004905 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004906 case ISD::BSWAP:
4907 Tmp1 = Node->getOperand(0);
4908 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4909 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4910 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004911 DAG.getConstant(NVT.getSizeInBits() -
4912 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004913 TLI.getShiftAmountTy()));
4914 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004915 case ISD::CTPOP:
4916 case ISD::CTTZ:
4917 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004918 // Zero extend the argument
4919 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004920 // Perform the larger operation, then subtract if needed.
4921 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004922 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004923 case ISD::CTPOP:
4924 Result = Tmp1;
4925 break;
4926 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004927 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Duncan Sands5480c042009-01-01 15:52:00 +00004928 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004929 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004930 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004931 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004932 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004933 break;
4934 case ISD::CTLZ:
4935 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004936 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004937 DAG.getConstant(NVT.getSizeInBits() -
4938 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004939 break;
4940 }
4941 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004942 case ISD::EXTRACT_SUBVECTOR:
4943 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004944 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004945 case ISD::EXTRACT_VECTOR_ELT:
4946 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4947 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004948 }
4949
Gabor Greifba36cb52008-08-28 21:40:38 +00004950 assert(Result.getNode() && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004951
4952 // Make sure the result is itself legal.
4953 Result = LegalizeOp(Result);
4954
4955 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004956 AddPromotedOperand(Op, Result);
4957 return Result;
4958}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004959
Dan Gohman7f321562007-06-25 16:23:39 +00004960/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4961/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4962/// based on the vector type. The return type of this matches the element type
4963/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00004964SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004965 // We know that operand #0 is the Vec vector. If the index is a constant
4966 // or if the invec is a supported hardware type, we can use it. Otherwise,
4967 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00004968 SDValue Vec = Op.getOperand(0);
4969 SDValue Idx = Op.getOperand(1);
Dale Johannesenbb5da912009-02-02 20:41:04 +00004970 DebugLoc dl = Op.getNode()->getDebugLoc();
Chris Lattner15972212006-03-31 17:55:51 +00004971
Duncan Sands83ec4b62008-06-06 12:08:01 +00004972 MVT TVT = Vec.getValueType();
4973 unsigned NumElems = TVT.getVectorNumElements();
Chris Lattner15972212006-03-31 17:55:51 +00004974
Dan Gohman7f321562007-06-25 16:23:39 +00004975 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4976 default: assert(0 && "This action is not supported yet!");
4977 case TargetLowering::Custom: {
4978 Vec = LegalizeOp(Vec);
4979 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004980 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004981 if (Tmp3.getNode())
Dan Gohman7f321562007-06-25 16:23:39 +00004982 return Tmp3;
4983 break;
4984 }
4985 case TargetLowering::Legal:
4986 if (isTypeLegal(TVT)) {
4987 Vec = LegalizeOp(Vec);
4988 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004989 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004990 }
4991 break;
Mon P Wang0c397192008-10-30 08:01:45 +00004992 case TargetLowering::Promote:
4993 assert(TVT.isVector() && "not vector type");
4994 // fall thru to expand since vectors are by default are promote
Dan Gohman7f321562007-06-25 16:23:39 +00004995 case TargetLowering::Expand:
4996 break;
4997 }
4998
4999 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00005000 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005001 Op = ScalarizeVectorOp(Vec);
5002 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00005003 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00005004 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005005 SDValue Lo, Hi;
Chris Lattner15972212006-03-31 17:55:51 +00005006 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005007 if (CIdx->getZExtValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00005008 Vec = Lo;
5009 } else {
5010 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005011 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00005012 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00005013 }
Dan Gohman7f321562007-06-25 16:23:39 +00005014
Chris Lattner15972212006-03-31 17:55:51 +00005015 // It's now an extract from the appropriate high or low part. Recurse.
5016 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005017 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00005018 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00005019 // Store the value to a temporary stack slot, then LOAD the scalar
5020 // element back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005021 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dale Johannesenbb5da912009-02-02 20:41:04 +00005022 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
Dan Gohman7f321562007-06-25 16:23:39 +00005023
5024 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005025 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +00005026 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Dan Gohman7f321562007-06-25 16:23:39 +00005027 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005028
Duncan Sands8e4eb092008-06-08 20:54:56 +00005029 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Dale Johannesenbb5da912009-02-02 20:41:04 +00005030 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005031 else
Dale Johannesenbb5da912009-02-02 20:41:04 +00005032 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005033
Dale Johannesenbb5da912009-02-02 20:41:04 +00005034 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
Dan Gohman7f321562007-06-25 16:23:39 +00005035
Dale Johannesenbb5da912009-02-02 20:41:04 +00005036 Op = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00005037 }
Dan Gohman7f321562007-06-25 16:23:39 +00005038 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00005039}
5040
Dan Gohman7f321562007-06-25 16:23:39 +00005041/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00005042/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005043SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00005044 // We know that operand #0 is the Vec vector. For now we assume the index
5045 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00005046 SDValue Vec = Op.getOperand(0);
5047 SDValue Idx = LegalizeOp(Op.getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00005048
Duncan Sands83ec4b62008-06-06 12:08:01 +00005049 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohman65956352007-06-13 15:12:02 +00005050
Duncan Sands83ec4b62008-06-06 12:08:01 +00005051 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00005052 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005053 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00005054 }
5055
5056 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005057 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00005058 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005059 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohman65956352007-06-13 15:12:02 +00005060 Vec = Lo;
5061 } else {
5062 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005063 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5064 Idx.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00005065 }
5066
5067 // It's now an extract from the appropriate high or low part. Recurse.
5068 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005069 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00005070}
5071
Nate Begeman750ac1b2006-02-01 07:19:44 +00005072/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5073/// with condition CC on the current target. This usually involves legalizing
5074/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5075/// there may be no choice but to create a new SetCC node to represent the
5076/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00005077/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5078void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5079 SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005080 SDValue &CC,
5081 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +00005082 SDValue Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00005083
5084 switch (getTypeAction(LHS.getValueType())) {
5085 case Legal:
5086 Tmp1 = LegalizeOp(LHS); // LHS
5087 Tmp2 = LegalizeOp(RHS); // RHS
5088 break;
5089 case Promote:
5090 Tmp1 = PromoteOp(LHS); // LHS
5091 Tmp2 = PromoteOp(RHS); // RHS
5092
5093 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005094 if (LHS.getValueType().isInteger()) {
5095 MVT VT = LHS.getValueType();
5096 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005097
5098 // Otherwise, we have to insert explicit sign or zero extends. Note
5099 // that we could insert sign extends for ALL conditions, but zero extend
5100 // is cheaper on many machines (an AND instead of two shifts), so prefer
5101 // it.
5102 switch (cast<CondCodeSDNode>(CC)->get()) {
5103 default: assert(0 && "Unknown integer comparison!");
5104 case ISD::SETEQ:
5105 case ISD::SETNE:
5106 case ISD::SETUGE:
5107 case ISD::SETUGT:
5108 case ISD::SETULE:
5109 case ISD::SETULT:
5110 // ALL of these operations will work if we either sign or zero extend
5111 // the operands (including the unsigned comparisons!). Zero extend is
5112 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005113 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5114 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005115 break;
5116 case ISD::SETGE:
5117 case ISD::SETGT:
5118 case ISD::SETLT:
5119 case ISD::SETLE:
Dale Johannesenbb5da912009-02-02 20:41:04 +00005120 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005121 DAG.getValueType(VT));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005122 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005123 DAG.getValueType(VT));
Evan Chengefa53392008-10-13 18:46:18 +00005124 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5125 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Nate Begeman750ac1b2006-02-01 07:19:44 +00005126 break;
5127 }
5128 }
5129 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005130 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005131 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00005132 if (VT == MVT::f32 || VT == MVT::f64) {
5133 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00005134 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00005135 switch (cast<CondCodeSDNode>(CC)->get()) {
5136 case ISD::SETEQ:
5137 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00005138 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005139 break;
5140 case ISD::SETNE:
5141 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00005142 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005143 break;
5144 case ISD::SETGE:
5145 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00005146 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005147 break;
5148 case ISD::SETLT:
5149 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00005150 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005151 break;
5152 case ISD::SETLE:
5153 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00005154 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005155 break;
5156 case ISD::SETGT:
5157 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00005158 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005159 break;
5160 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00005161 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5162 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005163 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00005164 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005165 break;
5166 default:
Evan Cheng56966222007-01-12 02:11:51 +00005167 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005168 switch (cast<CondCodeSDNode>(CC)->get()) {
5169 case ISD::SETONE:
5170 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00005171 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005172 // Fallthrough
5173 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00005174 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005175 break;
5176 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00005177 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005178 break;
5179 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00005180 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005181 break;
5182 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00005183 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005184 break;
Evan Cheng56966222007-01-12 02:11:51 +00005185 case ISD::SETUEQ:
5186 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00005187 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005188 default: assert(0 && "Unsupported FP setcc!");
5189 }
5190 }
Duncan Sandsf9516202008-06-30 10:19:09 +00005191
Dan Gohman475871a2008-07-27 21:46:04 +00005192 SDValue Dummy;
5193 SDValue Ops[2] = { LHS, RHS };
Dale Johannesenbb5da912009-02-02 20:41:04 +00005194 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005195 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00005196 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00005197 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00005198 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesenbb5da912009-02-02 20:41:04 +00005199 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005200 TLI.getSetCCResultType(Tmp1.getValueType()),
5201 Tmp1, Tmp2, CC);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005202 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005203 false /*sign irrelevant*/, Dummy);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005204 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005205 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5206 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005207 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00005208 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00005209 }
Evan Cheng21cacc42008-07-07 07:18:09 +00005210 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00005211 RHS = Tmp2;
5212 return;
5213 }
5214
Dan Gohman475871a2008-07-27 21:46:04 +00005215 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00005216 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00005217 ExpandOp(RHS, RHSLo, RHSHi);
5218 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5219
5220 if (VT==MVT::ppcf128) {
5221 // FIXME: This generated code sucks. We want to generate
Dale Johannesene2f20832008-09-12 00:30:56 +00005222 // FCMPU crN, hi1, hi2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005223 // BNE crN, L:
Dale Johannesene2f20832008-09-12 00:30:56 +00005224 // FCMPU crN, lo1, lo2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005225 // The following can be improved, but not that much.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005226 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005227 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005228 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005229 LHSLo, RHSLo, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005230 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5231 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005232 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005233 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005234 LHSHi, RHSHi, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005235 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5236 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00005237 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00005238 break;
5239 }
5240
5241 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005242 case ISD::SETEQ:
5243 case ISD::SETNE:
5244 if (RHSLo == RHSHi)
5245 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5246 if (RHSCST->isAllOnesValue()) {
5247 // Comparison to -1.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005248 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005249 Tmp2 = RHSLo;
5250 break;
5251 }
5252
Dale Johannesenbb5da912009-02-02 20:41:04 +00005253 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5254 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5255 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005256 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5257 break;
5258 default:
5259 // If this is a comparison of the sign bit, just look at the top part.
5260 // X > -1, x < 0
5261 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
5262 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00005263 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00005264 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5265 CST->isAllOnesValue())) { // X > -1
5266 Tmp1 = LHSHi;
5267 Tmp2 = RHSHi;
5268 break;
5269 }
5270
5271 // FIXME: This generated code sucks.
5272 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00005273 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005274 default: assert(0 && "Unknown integer setcc!");
5275 case ISD::SETLT:
5276 case ISD::SETULT: LowCC = ISD::SETULT; break;
5277 case ISD::SETGT:
5278 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5279 case ISD::SETLE:
5280 case ISD::SETULE: LowCC = ISD::SETULE; break;
5281 case ISD::SETGE:
5282 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5283 }
5284
5285 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5286 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5287 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5288
5289 // NOTE: on targets without efficient SELECT of bools, we can always use
5290 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00005291 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands5480c042009-01-01 15:52:00 +00005292 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
5293 LHSLo, RHSLo, LowCC, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00005294 if (!Tmp1.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005295 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005296 LHSLo, RHSLo, LowCC);
5297 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5298 LHSHi, RHSHi, CCCode, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00005299 if (!Tmp2.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005300 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005301 TLI.getSetCCResultType(LHSHi.getValueType()),
5302 LHSHi, RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00005303
Gabor Greifba36cb52008-08-28 21:40:38 +00005304 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5305 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman002e5d02008-03-13 22:13:53 +00005306 if ((Tmp1C && Tmp1C->isNullValue()) ||
5307 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00005308 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5309 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00005310 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00005311 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5312 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5313 // low part is known false, returns high part.
5314 // For LE / GE, if high part is known false, ignore the low part.
5315 // For LT / GT, if high part is known true, ignore the low part.
5316 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00005317 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005318 } else {
Duncan Sands5480c042009-01-01 15:52:00 +00005319 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5320 LHSHi, RHSHi, ISD::SETEQ, false,
5321 DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00005322 if (!Result.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005323 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005324 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005325 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Evan Cheng2e677812007-02-08 22:16:19 +00005326 Result, Tmp1, Tmp2));
5327 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00005328 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005329 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005330 }
5331 }
Evan Cheng2b49c502006-12-15 02:59:56 +00005332 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005333 LHS = Tmp1;
5334 RHS = Tmp2;
5335}
5336
Evan Cheng7f042682008-10-15 02:05:31 +00005337/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5338/// condition code CC on the current target. This routine assumes LHS and rHS
5339/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5340/// illegal condition code into AND / OR of multiple SETCC values.
5341void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5342 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005343 SDValue &CC,
5344 DebugLoc dl) {
Evan Cheng7f042682008-10-15 02:05:31 +00005345 MVT OpVT = LHS.getValueType();
5346 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5347 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5348 default: assert(0 && "Unknown condition code action!");
5349 case TargetLowering::Legal:
5350 // Nothing to do.
5351 break;
5352 case TargetLowering::Expand: {
5353 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5354 unsigned Opc = 0;
5355 switch (CCCode) {
5356 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohmane7d238e2008-10-21 03:12:54 +00005357 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5358 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5359 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5360 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5361 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5362 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5363 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5364 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5365 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5366 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5367 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5368 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng7f042682008-10-15 02:05:31 +00005369 // FIXME: Implement more expansions.
5370 }
5371
Dale Johannesenbb5da912009-02-02 20:41:04 +00005372 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5373 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5374 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00005375 RHS = SDValue();
5376 CC = SDValue();
5377 break;
5378 }
5379 }
5380}
5381
Chris Lattner1401d152008-01-16 07:45:30 +00005382/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5383/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5384/// a load from the stack slot to DestVT, extending it if needed.
5385/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005386SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5387 MVT SlotVT,
5388 MVT DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00005389 // Create the stack frame object.
Mon P Wang364d73d2008-07-05 20:40:31 +00005390 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
5391 SrcOp.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00005392 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Mon P Wang364d73d2008-07-05 20:40:31 +00005393
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005394 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005395 int SPFI = StackPtrFI->getIndex();
Dan Gohman15b38302009-01-29 21:02:43 +00005396 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5397
Duncan Sands83ec4b62008-06-06 12:08:01 +00005398 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5399 unsigned SlotSize = SlotVT.getSizeInBits();
5400 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang364d73d2008-07-05 20:40:31 +00005401 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
5402 DestVT.getTypeForMVT());
Chris Lattner35481892005-12-23 00:16:34 +00005403
Chris Lattner1401d152008-01-16 07:45:30 +00005404 // Emit a store to the stack slot. Use a truncstore if the input value is
5405 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00005406 SDValue Store;
Mon P Wang364d73d2008-07-05 20:40:31 +00005407
Chris Lattner1401d152008-01-16 07:45:30 +00005408 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00005409 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005410 SV, 0, SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005411 else {
5412 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00005413 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005414 SV, 0, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005415 }
5416
Chris Lattner35481892005-12-23 00:16:34 +00005417 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00005418 if (SlotSize == DestSize)
Dan Gohman15b38302009-01-29 21:02:43 +00005419 return DAG.getLoad(DestVT, Store, FIPtr, SV, 0, false, DestAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005420
5421 assert(SlotSize < DestSize && "Unknown extension!");
Dan Gohman15b38302009-01-29 21:02:43 +00005422 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang364d73d2008-07-05 20:40:31 +00005423 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00005424}
5425
Dan Gohman475871a2008-07-27 21:46:04 +00005426SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Chris Lattner4352cc92006-04-04 17:23:26 +00005427 // Create a vector sized/aligned stack slot, store the value to element #0,
5428 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005429 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00005430
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005431 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005432 int SPFI = StackPtrFI->getIndex();
5433
Dan Gohman475871a2008-07-27 21:46:04 +00005434 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00005435 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00005436 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00005437 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00005438}
5439
5440
Chris Lattnerce872152006-03-19 06:31:19 +00005441/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00005442/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00005443SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Chris Lattnerce872152006-03-19 06:31:19 +00005444
5445 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00005446 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00005447 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00005448 bool isOnlyLowElement = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005449 SDValue SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005450
Dan Gohman475871a2008-07-27 21:46:04 +00005451 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005452 // and use a bitmask instead of a list of elements.
Dan Gohman475871a2008-07-27 21:46:04 +00005453 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00005454 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005455 bool isConstant = true;
5456 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5457 SplatValue.getOpcode() != ISD::UNDEF)
5458 isConstant = false;
5459
Evan Cheng033e6812006-03-24 01:17:21 +00005460 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005461 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00005462 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00005463 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00005464 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00005465 if (SplatValue != V)
Dan Gohman475871a2008-07-27 21:46:04 +00005466 SplatValue = SDValue(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005467
5468 // If this isn't a constant element or an undef, we can't use a constant
5469 // pool load.
5470 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5471 V.getOpcode() != ISD::UNDEF)
5472 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00005473 }
5474
5475 if (isOnlyLowElement) {
5476 // If the low element is an undef too, then this whole things is an undef.
5477 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
5478 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
5479 // Otherwise, turn this into a scalar_to_vector node.
5480 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
5481 Node->getOperand(0));
5482 }
5483
Chris Lattner2eb86532006-03-24 07:29:17 +00005484 // If all elements are constants, create a load from the constant pool.
5485 if (isConstant) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005486 MVT VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005487 std::vector<Constant*> CV;
5488 for (unsigned i = 0, e = NumElems; i != e; ++i) {
5489 if (ConstantFPSDNode *V =
5490 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005491 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00005492 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00005493 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005494 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00005495 } else {
5496 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner02a260a2008-04-20 00:41:09 +00005497 const Type *OpNTy =
Duncan Sands83ec4b62008-06-06 12:08:01 +00005498 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00005499 CV.push_back(UndefValue::get(OpNTy));
5500 }
5501 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00005502 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005503 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00005504 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman69de1932008-02-06 22:27:42 +00005505 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005506 PseudoSourceValue::getConstantPool(), 0,
5507 false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00005508 }
5509
Gabor Greifba36cb52008-08-28 21:40:38 +00005510 if (SplatValue.getNode()) { // Splat of one value?
Chris Lattner87100e02006-03-20 01:52:29 +00005511 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005512 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman475871a2008-07-27 21:46:04 +00005513 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5514 std::vector<SDValue> ZeroVec(NumElems, Zero);
5515 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005516 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00005517
5518 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005519 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00005520 // Get the splatted value into the low element of a vector register.
Dan Gohman475871a2008-07-27 21:46:04 +00005521 SDValue LowValVec =
Chris Lattner87100e02006-03-20 01:52:29 +00005522 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
5523
5524 // Return shuffle(LowValVec, undef, <0,0,0,0>)
5525 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
5526 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5527 SplatMask);
5528 }
5529 }
5530
Evan Cheng033e6812006-03-24 01:17:21 +00005531 // If there are only two unique elements, we may be able to turn this into a
5532 // vector shuffle.
5533 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005534 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00005535 SDValue Val1 = Node->getOperand(1);
5536 SDValue Val2;
5537 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005538 if (MI->first != Val1)
5539 Val2 = MI->first;
5540 else
5541 Val2 = (++MI)->first;
5542
5543 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
5544 // vector shuffle has the undef vector on the RHS.
5545 if (Val1.getOpcode() == ISD::UNDEF)
5546 std::swap(Val1, Val2);
5547
Evan Cheng033e6812006-03-24 01:17:21 +00005548 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005549 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5550 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00005551 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005552
5553 // Set elements of the shuffle mask for Val1.
5554 std::vector<unsigned> &Val1Elts = Values[Val1];
5555 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5556 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5557
5558 // Set elements of the shuffle mask for Val2.
5559 std::vector<unsigned> &Val2Elts = Values[Val2];
5560 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5561 if (Val2.getOpcode() != ISD::UNDEF)
5562 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5563 else
5564 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5565
Dan Gohman475871a2008-07-27 21:46:04 +00005566 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005567 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005568
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005569 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005570 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR,
5571 Node->getValueType(0)) &&
Chris Lattner4352cc92006-04-04 17:23:26 +00005572 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005573 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5574 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
Dan Gohman475871a2008-07-27 21:46:04 +00005575 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005576
5577 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005578 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005579 }
5580 }
Chris Lattnerce872152006-03-19 06:31:19 +00005581
5582 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5583 // aligned object on the stack, store each element into it, then load
5584 // the result as a vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005585 MVT VT = Node->getValueType(0);
Chris Lattnerce872152006-03-19 06:31:19 +00005586 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005587 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman15b38302009-01-29 21:02:43 +00005588 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5589 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5590
Chris Lattnerce872152006-03-19 06:31:19 +00005591 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005592 SmallVector<SDValue, 8> Stores;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005593 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005594 // Store (in the right endianness) the elements to memory.
5595 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5596 // Ignore undef elements.
5597 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5598
Chris Lattner841c8822006-03-22 01:46:54 +00005599 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005600
Dan Gohman475871a2008-07-27 21:46:04 +00005601 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Chris Lattnerce872152006-03-19 06:31:19 +00005602 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5603
Evan Cheng786225a2006-10-05 23:01:46 +00005604 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Dan Gohman15b38302009-01-29 21:02:43 +00005605 SV, Offset));
Chris Lattnerce872152006-03-19 06:31:19 +00005606 }
5607
Dan Gohman475871a2008-07-27 21:46:04 +00005608 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005609 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005610 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5611 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005612 else
5613 StoreChain = DAG.getEntryNode();
5614
5615 // Result is a load from the stack slot.
Dan Gohman15b38302009-01-29 21:02:43 +00005616 return DAG.getLoad(VT, StoreChain, FIPtr, SV, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005617}
5618
Chris Lattner5b359c62005-04-02 04:00:59 +00005619void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005620 SDValue Op, SDValue Amt,
5621 SDValue &Lo, SDValue &Hi) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005622 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005623 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005624 ExpandOp(Op, LHSL, LHSH);
5625
Dan Gohman475871a2008-07-27 21:46:04 +00005626 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005627 MVT VT = LHSL.getValueType();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005628 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005629 Hi = Lo.getValue(1);
5630}
5631
5632
Chris Lattnere34b3962005-01-19 04:19:40 +00005633/// ExpandShift - Try to find a clever way to expand this shift operation out to
5634/// smaller elements. If we can't find a way that is more efficient than a
5635/// libcall on this target, return false. Otherwise, return true with the
5636/// low-parts expanded into Lo and Hi.
Dan Gohman475871a2008-07-27 21:46:04 +00005637bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
5638 SDValue &Lo, SDValue &Hi) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005639 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5640 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005641
Duncan Sands83ec4b62008-06-06 12:08:01 +00005642 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005643 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005644 MVT ShTy = ShAmt.getValueType();
5645 unsigned ShBits = ShTy.getSizeInBits();
5646 unsigned VTBits = Op.getValueType().getSizeInBits();
5647 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005648
Chris Lattner7a3c8552007-10-14 20:35:12 +00005649 // Handle the case when Amt is an immediate.
Gabor Greifba36cb52008-08-28 21:40:38 +00005650 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005651 unsigned Cst = CN->getZExtValue();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005652 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005653 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005654 ExpandOp(Op, InL, InH);
5655 switch(Opc) {
5656 case ISD::SHL:
5657 if (Cst > VTBits) {
5658 Lo = DAG.getConstant(0, NVT);
5659 Hi = DAG.getConstant(0, NVT);
5660 } else if (Cst > NVTBits) {
5661 Lo = DAG.getConstant(0, NVT);
5662 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005663 } else if (Cst == NVTBits) {
5664 Lo = DAG.getConstant(0, NVT);
5665 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005666 } else {
5667 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5668 Hi = DAG.getNode(ISD::OR, NVT,
5669 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5670 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5671 }
5672 return true;
5673 case ISD::SRL:
5674 if (Cst > VTBits) {
5675 Lo = DAG.getConstant(0, NVT);
5676 Hi = DAG.getConstant(0, NVT);
5677 } else if (Cst > NVTBits) {
5678 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5679 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005680 } else if (Cst == NVTBits) {
5681 Lo = InH;
5682 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005683 } else {
5684 Lo = DAG.getNode(ISD::OR, NVT,
5685 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5686 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5687 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5688 }
5689 return true;
5690 case ISD::SRA:
5691 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005692 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005693 DAG.getConstant(NVTBits-1, ShTy));
5694 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005695 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005696 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005697 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005698 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005699 } else if (Cst == NVTBits) {
5700 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005701 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005702 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005703 } else {
5704 Lo = DAG.getNode(ISD::OR, NVT,
5705 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5706 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5707 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5708 }
5709 return true;
5710 }
5711 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005712
5713 // Okay, the shift amount isn't constant. However, if we can tell that it is
5714 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005715 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5716 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005717 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005718
Dan Gohman9e255b72008-02-22 01:12:31 +00005719 // If we know that if any of the high bits of the shift amount are one, then
5720 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005721 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005722 // Mask out the high bit, which we know is set.
5723 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005724 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005725
5726 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005727 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005728 ExpandOp(Op, InL, InH);
5729 switch(Opc) {
5730 case ISD::SHL:
5731 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5732 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5733 return true;
5734 case ISD::SRL:
5735 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5736 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5737 return true;
5738 case ISD::SRA:
5739 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5740 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5741 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5742 return true;
5743 }
5744 }
5745
Dan Gohman9e255b72008-02-22 01:12:31 +00005746 // If we know that the high bits of the shift amount are all zero, then we can
5747 // do this as a couple of simple shifts.
5748 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005749 // Compute 32-amt.
Dan Gohman475871a2008-07-27 21:46:04 +00005750 SDValue Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005751 DAG.getConstant(NVTBits, Amt.getValueType()),
5752 Amt);
5753
5754 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005755 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005756 ExpandOp(Op, InL, InH);
5757 switch(Opc) {
5758 case ISD::SHL:
5759 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5760 Hi = DAG.getNode(ISD::OR, NVT,
5761 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5762 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5763 return true;
5764 case ISD::SRL:
5765 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5766 Lo = DAG.getNode(ISD::OR, NVT,
5767 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5768 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5769 return true;
5770 case ISD::SRA:
5771 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5772 Lo = DAG.getNode(ISD::OR, NVT,
5773 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5774 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5775 return true;
5776 }
5777 }
5778
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005779 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005780}
Chris Lattner77e77a62005-01-21 06:05:23 +00005781
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005782
Chris Lattner77e77a62005-01-21 06:05:23 +00005783// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5784// does not fit into a register, return the lo part and set the hi part to the
5785// by-reg argument. If it does fit into a single register, return the result
5786// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005787SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5788 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005789 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5790 // The input chain to this libcall is the entry node of the function.
5791 // Legalizing the call will automatically add the previous call to the
5792 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005793 SDValue InChain = DAG.getEntryNode();
Chris Lattner6831a812006-02-13 09:18:02 +00005794
Chris Lattner77e77a62005-01-21 06:05:23 +00005795 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005796 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005797 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005798 MVT ArgVT = Node->getOperand(i).getValueType();
5799 const Type *ArgTy = ArgVT.getTypeForMVT();
Reid Spencer47857812006-12-31 05:55:36 +00005800 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005801 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005802 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005803 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005804 }
Bill Wendling056292f2008-09-16 21:48:12 +00005805 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00005806 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005807
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005808 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005809 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman475871a2008-07-27 21:46:04 +00005810 std::pair<SDValue,SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005811 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005812 CallingConv::C, false, Callee, Args, DAG,
5813 Node->getDebugLoc());
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005814
Chris Lattner6831a812006-02-13 09:18:02 +00005815 // Legalize the call sequence, starting with the chain. This will advance
5816 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5817 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5818 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005819 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005820 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005821 default: assert(0 && "Unknown thing");
5822 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005823 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005824 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005825 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005826 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005827 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005828 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005829 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005830}
5831
Dan Gohman7f8613e2008-08-14 20:04:46 +00005832/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5833///
5834SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005835LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5836 DebugLoc dl) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00005837 bool isCustom = false;
5838 SDValue Tmp1;
5839 switch (getTypeAction(Op.getValueType())) {
5840 case Legal:
5841 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5842 Op.getValueType())) {
5843 default: assert(0 && "Unknown operation action!");
5844 case TargetLowering::Custom:
5845 isCustom = true;
5846 // FALLTHROUGH
5847 case TargetLowering::Legal:
5848 Tmp1 = LegalizeOp(Op);
Gabor Greifba36cb52008-08-28 21:40:38 +00005849 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005850 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5851 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005852 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005853 DestTy, Tmp1);
5854 if (isCustom) {
5855 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005856 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005857 }
5858 break;
5859 case TargetLowering::Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005860 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005861 break;
5862 case TargetLowering::Promote:
Dale Johannesenaf435272009-02-02 19:03:57 +00005863 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005864 break;
5865 }
5866 break;
5867 case Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005868 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005869 break;
5870 case Promote:
5871 Tmp1 = PromoteOp(Op);
5872 if (isSigned) {
Dale Johannesenaf435272009-02-02 19:03:57 +00005873 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Dan Gohman7f8613e2008-08-14 20:04:46 +00005874 Tmp1, DAG.getValueType(Op.getValueType()));
5875 } else {
Dale Johannesenaf435272009-02-02 19:03:57 +00005876 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005877 Op.getValueType());
5878 }
Gabor Greifba36cb52008-08-28 21:40:38 +00005879 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005880 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5881 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005882 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005883 DestTy, Tmp1);
5884 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5885 break;
5886 }
5887 return Result;
5888}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005889
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005890/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5891///
Dan Gohman475871a2008-07-27 21:46:04 +00005892SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005893ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005894 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005895 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005896
Dan Gohman7f8613e2008-08-14 20:04:46 +00005897 // Expand unsupported int-to-fp vector casts by unrolling them.
5898 if (DestTy.isVector()) {
5899 if (!ExpandSource)
5900 return LegalizeOp(UnrollVectorOp(Source));
5901 MVT DestEltTy = DestTy.getVectorElementType();
5902 if (DestTy.getVectorNumElements() == 1) {
5903 SDValue Scalar = ScalarizeVectorOp(Source);
5904 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00005905 DestEltTy, Scalar, dl);
5906 return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005907 }
5908 SDValue Lo, Hi;
5909 SplitVectorOp(Source, Lo, Hi);
5910 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5911 DestTy.getVectorNumElements() / 2);
Dale Johannesenaf435272009-02-02 19:03:57 +00005912 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
5913 Lo, dl);
5914 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
5915 Hi, dl);
5916 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengefa53392008-10-13 18:46:18 +00005917 HiResult));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005918 }
5919
Evan Cheng9845eb52008-04-01 02:18:22 +00005920 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5921 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005922 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005923 // incoming integer is set. To handle this, we dynamically test to see if
5924 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005925 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005926 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005927 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005928 ExpandOp(Source, Lo, Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +00005929 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman034f60e2008-03-11 01:59:03 +00005930 } else {
5931 // The comparison for the sign bit will use the entire operand.
5932 Hi = Source;
5933 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005934
Dale Johannesen53997b02008-11-04 20:52:49 +00005935 // Check to see if the target has a custom way to lower this. If so, use
5936 // it. (Note we've already expanded the operand in this case.)
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005937 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
5938 default: assert(0 && "This action not implemented for this operation!");
5939 case TargetLowering::Legal:
5940 case TargetLowering::Expand:
5941 break; // This case is handled below.
5942 case TargetLowering::Custom: {
5943 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, DestTy,
5944 Source), DAG);
5945 if (NV.getNode())
5946 return LegalizeOp(NV);
5947 break; // The target decided this was legal after all
5948 }
5949 }
5950
Chris Lattner66de05b2005-05-13 04:45:13 +00005951 // If this is unsigned, and not supported, first perform the conversion to
5952 // signed, then adjust the result if the sign bit is set.
Dale Johannesenaf435272009-02-02 19:03:57 +00005953 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Chris Lattner66de05b2005-05-13 04:45:13 +00005954
Dale Johannesenaf435272009-02-02 19:03:57 +00005955 SDValue SignSet = DAG.getSetCC(dl,
5956 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005957 Hi, DAG.getConstant(0, Hi.getValueType()),
5958 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005959 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00005960 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00005961 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005962 uint64_t FF = 0x5f800000ULL;
5963 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005964 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005965
Dan Gohman475871a2008-07-27 21:46:04 +00005966 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00005967 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00005968 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00005969 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00005970 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00005971 if (DestTy == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00005972 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005973 PseudoSourceValue::getConstantPool(), 0,
5974 false, Alignment);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005975 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005976 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesenaf435272009-02-02 19:03:57 +00005977 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005978 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005979 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00005980 MVT::f32, false, Alignment);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005981 else
5982 assert(0 && "Unexpected conversion");
5983
Duncan Sands83ec4b62008-06-06 12:08:01 +00005984 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005985 if (SCVT != DestTy) {
5986 // Destination type needs to be expanded as well. The FADD now we are
5987 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005988 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5989 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesenaf435272009-02-02 19:03:57 +00005990 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005991 SignedConv, SignedConv.getValue(1));
5992 }
Dale Johannesenaf435272009-02-02 19:03:57 +00005993 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005994 }
Dale Johannesenaf435272009-02-02 19:03:57 +00005995 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005996 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005997
Chris Lattnera88a2602005-05-14 05:33:54 +00005998 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005999 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00006000 default: assert(0 && "This action not implemented for this operation!");
6001 case TargetLowering::Legal:
6002 case TargetLowering::Expand:
6003 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00006004 case TargetLowering::Custom: {
Dale Johannesenaf435272009-02-02 19:03:57 +00006005 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Chris Lattner07dffd62005-08-26 00:14:16 +00006006 Source), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006007 if (NV.getNode())
Chris Lattner07dffd62005-08-26 00:14:16 +00006008 return LegalizeOp(NV);
6009 break; // The target decided this was legal after all
6010 }
Chris Lattnera88a2602005-05-14 05:33:54 +00006011 }
6012
Chris Lattner13689e22005-05-12 07:00:44 +00006013 // Expand the source, then glue it back together for the call. We must expand
6014 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00006015 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00006016 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00006017 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesenaf435272009-02-02 19:03:57 +00006018 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman034f60e2008-03-11 01:59:03 +00006019 }
Chris Lattner13689e22005-05-12 07:00:44 +00006020
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006021 RTLIB::Libcall LC = isSigned ?
6022 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6023 RTLIB::getUINTTOFP(SourceVT, DestTy);
6024 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6025
Dale Johannesenaf435272009-02-02 19:03:57 +00006026 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00006027 SDValue HiPart;
Gabor Greifba36cb52008-08-28 21:40:38 +00006028 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6029 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesenaf435272009-02-02 19:03:57 +00006030 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmana2e94852008-03-10 23:03:31 +00006031 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00006032}
Misha Brukmanedf128a2005-04-21 22:36:52 +00006033
Chris Lattner22cde6a2006-01-28 08:25:58 +00006034/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6035/// INT_TO_FP operation of the specified operand when the target requests that
6036/// we expand it. At this point, we know that the result and operand types are
6037/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00006038SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6039 SDValue Op0,
Dale Johannesenaf435272009-02-02 19:03:57 +00006040 MVT DestVT,
6041 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006042 if (Op0.getValueType() == MVT::i32) {
6043 // simple 32-bit [signed|unsigned] integer to float/double expansion
6044
Chris Lattner23594d42008-01-16 07:03:22 +00006045 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00006046 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Chris Lattner23594d42008-01-16 07:03:22 +00006047
Chris Lattner22cde6a2006-01-28 08:25:58 +00006048 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00006049 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00006050 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00006051 SDValue Hi = StackSlot;
Dale Johannesenaf435272009-02-02 19:03:57 +00006052 SDValue Lo = DAG.getNode(ISD::ADD, dl,
6053 TLI.getPointerTy(), StackSlot,WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00006054 if (TLI.isLittleEndian())
6055 std::swap(Hi, Lo);
6056
Chris Lattner22cde6a2006-01-28 08:25:58 +00006057 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00006058 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006059 if (isSigned) {
6060 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00006061 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesenaf435272009-02-02 19:03:57 +00006062 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006063 } else {
6064 Op0Mapped = Op0;
6065 }
6066 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00006067 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00006068 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006069 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00006070 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006071 // store the hi of the constructed double - biased exponent
Dale Johannesenaf435272009-02-02 19:03:57 +00006072 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006073 // load the constructed double
Dale Johannesenaf435272009-02-02 19:03:57 +00006074 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006075 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00006076 SDValue Bias = DAG.getConstantFP(isSigned ?
Chris Lattner22cde6a2006-01-28 08:25:58 +00006077 BitsToDouble(0x4330000080000000ULL)
6078 : BitsToDouble(0x4330000000000000ULL),
6079 MVT::f64);
6080 // subtract the bias
Dale Johannesenaf435272009-02-02 19:03:57 +00006081 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006082 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00006083 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006084 // handle final rounding
6085 if (DestVT == MVT::f64) {
6086 // do nothing
6087 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006088 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006089 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00006090 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00006091 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006092 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006093 }
6094 return Result;
6095 }
6096 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesenaf435272009-02-02 19:03:57 +00006097 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006098
Dale Johannesenaf435272009-02-02 19:03:57 +00006099 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00006100 Op0, DAG.getConstant(0, Op0.getValueType()),
6101 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00006102 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00006103 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006104 SignSet, Four, Zero);
6105
6106 // If the sign bit of the integer is set, the large number will be treated
6107 // as a negative number. To counteract this, the dynamic code adds an
6108 // offset depending on the data type.
6109 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006110 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006111 default: assert(0 && "Unsupported integer type!");
6112 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6113 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6114 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6115 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6116 }
6117 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00006118 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006119
Dan Gohman475871a2008-07-27 21:46:04 +00006120 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00006121 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00006122 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00006123 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00006124 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006125 if (DestVT == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00006126 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00006127 PseudoSourceValue::getConstantPool(), 0,
6128 false, Alignment);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006129 else {
Dan Gohman69de1932008-02-06 22:27:42 +00006130 FudgeInReg =
Dale Johannesenaf435272009-02-02 19:03:57 +00006131 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman69de1932008-02-06 22:27:42 +00006132 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00006133 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00006134 MVT::f32, false, Alignment));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006135 }
6136
Dale Johannesenaf435272009-02-02 19:03:57 +00006137 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006138}
6139
6140/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6141/// *INT_TO_FP operation of the specified operand when the target requests that
6142/// we promote it. At this point, we know that the result and operand types are
6143/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6144/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00006145SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6146 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006147 bool isSigned,
6148 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006149 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006150 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006151
6152 unsigned OpToUse = 0;
6153
6154 // Scan for the appropriate larger type to use.
6155 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006156 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6157 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006158
6159 // If the target supports SINT_TO_FP of this type, use it.
6160 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6161 default: break;
6162 case TargetLowering::Legal:
6163 if (!TLI.isTypeLegal(NewInTy))
6164 break; // Can't use this datatype.
6165 // FALL THROUGH.
6166 case TargetLowering::Custom:
6167 OpToUse = ISD::SINT_TO_FP;
6168 break;
6169 }
6170 if (OpToUse) break;
6171 if (isSigned) continue;
6172
6173 // If the target supports UINT_TO_FP of this type, use it.
6174 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6175 default: break;
6176 case TargetLowering::Legal:
6177 if (!TLI.isTypeLegal(NewInTy))
6178 break; // Can't use this datatype.
6179 // FALL THROUGH.
6180 case TargetLowering::Custom:
6181 OpToUse = ISD::UINT_TO_FP;
6182 break;
6183 }
6184 if (OpToUse) break;
6185
6186 // Otherwise, try a larger type.
6187 }
6188
6189 // Okay, we found the operation and type to use. Zero extend our input to the
6190 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00006191 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00006192 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00006193 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006194}
6195
6196/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6197/// FP_TO_*INT operation of the specified operand when the target requests that
6198/// we promote it. At this point, we know that the result and operand types are
6199/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6200/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00006201SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6202 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006203 bool isSigned,
6204 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006205 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006206 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006207
6208 unsigned OpToUse = 0;
6209
6210 // Scan for the appropriate larger type to use.
6211 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006212 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6213 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006214
6215 // If the target supports FP_TO_SINT returning this type, use it.
6216 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6217 default: break;
6218 case TargetLowering::Legal:
6219 if (!TLI.isTypeLegal(NewOutTy))
6220 break; // Can't use this datatype.
6221 // FALL THROUGH.
6222 case TargetLowering::Custom:
6223 OpToUse = ISD::FP_TO_SINT;
6224 break;
6225 }
6226 if (OpToUse) break;
6227
6228 // If the target supports FP_TO_UINT of this type, use it.
6229 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
6230 default: break;
6231 case TargetLowering::Legal:
6232 if (!TLI.isTypeLegal(NewOutTy))
6233 break; // Can't use this datatype.
6234 // FALL THROUGH.
6235 case TargetLowering::Custom:
6236 OpToUse = ISD::FP_TO_UINT;
6237 break;
6238 }
6239 if (OpToUse) break;
6240
6241 // Otherwise, try a larger type.
6242 }
6243
Chris Lattner27a6c732007-11-24 07:07:01 +00006244
6245 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00006246 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00006247
Chris Lattner27a6c732007-11-24 07:07:01 +00006248 // If the operation produces an invalid type, it must be custom lowered. Use
6249 // the target lowering hooks to expand it. Just keep the low part of the
6250 // expanded operation, we know that we're truncating anyway.
6251 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands1607f052008-12-01 11:39:25 +00006252 SmallVector<SDValue, 2> Results;
6253 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6254 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6255 Operation = Results[0];
Chris Lattner27a6c732007-11-24 07:07:01 +00006256 }
Duncan Sands126d9072008-07-04 11:47:58 +00006257
Chris Lattner27a6c732007-11-24 07:07:01 +00006258 // Truncate the result of the extended FP_TO_*INT operation to the desired
6259 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00006260 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006261}
6262
6263/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6264///
Dan Gohman475871a2008-07-27 21:46:04 +00006265SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006266 MVT VT = Op.getValueType();
6267 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00006268 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006269 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006270 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6271 case MVT::i16:
6272 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
6273 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
6274 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
6275 case MVT::i32:
6276 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
6277 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
6278 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
6279 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
6280 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6281 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6282 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
6283 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
6284 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
6285 case MVT::i64:
6286 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
6287 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
6288 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
6289 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
6290 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
6291 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
6292 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
6293 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
6294 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6295 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6296 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6297 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6298 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6299 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6300 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
6301 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
6302 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
6303 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
6304 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
6305 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
6306 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
6307 }
6308}
6309
6310/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6311///
Dan Gohman475871a2008-07-27 21:46:04 +00006312SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006313 switch (Opc) {
6314 default: assert(0 && "Cannot expand this yet!");
6315 case ISD::CTPOP: {
6316 static const uint64_t mask[6] = {
6317 0x5555555555555555ULL, 0x3333333333333333ULL,
6318 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6319 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6320 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00006321 MVT VT = Op.getValueType();
6322 MVT ShVT = TLI.getShiftAmountTy();
6323 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006324 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6325 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006326 unsigned EltSize = VT.isVector() ?
6327 VT.getVectorElementType().getSizeInBits() : len;
6328 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman475871a2008-07-27 21:46:04 +00006329 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006330 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
6331 DAG.getNode(ISD::AND, VT,
6332 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
6333 }
6334 return Op;
6335 }
6336 case ISD::CTLZ: {
6337 // for now, we do this:
6338 // x = x | (x >> 1);
6339 // x = x | (x >> 2);
6340 // ...
6341 // x = x | (x >>16);
6342 // x = x | (x >>32); // for 64-bit input
6343 // return popcount(~x);
6344 //
6345 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006346 MVT VT = Op.getValueType();
6347 MVT ShVT = TLI.getShiftAmountTy();
6348 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006349 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006350 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006351 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
6352 }
Bill Wendling7581bfa2009-01-30 23:03:19 +00006353 Op = DAG.getNOT(DebugLoc::getUnknownLoc(), Op, VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006354 return DAG.getNode(ISD::CTPOP, VT, Op);
6355 }
6356 case ISD::CTTZ: {
6357 // for now, we use: { return popcount(~x & (x - 1)); }
6358 // unless the target has ctlz but not ctpop, in which case we use:
6359 // { return 32 - nlz(~x & (x-1)); }
6360 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006361 MVT VT = Op.getValueType();
Bill Wendling7581bfa2009-01-30 23:03:19 +00006362 SDValue Tmp3 = DAG.getNode(ISD::AND, VT,
6363 DAG.getNOT(DebugLoc::getUnknownLoc(), Op, VT),
6364 DAG.getNode(ISD::SUB, VT, Op,
6365 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006366 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006367 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6368 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Chris Lattner22cde6a2006-01-28 08:25:58 +00006369 return DAG.getNode(ISD::SUB, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006370 DAG.getConstant(VT.getSizeInBits(), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006371 DAG.getNode(ISD::CTLZ, VT, Tmp3));
6372 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
6373 }
6374 }
6375}
Chris Lattnere34b3962005-01-19 04:19:40 +00006376
Dan Gohman475871a2008-07-27 21:46:04 +00006377/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00006378/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman929d3eb2008-10-01 15:07:49 +00006379/// LegalizedNodes map is filled in for any results that are not expanded, the
Chris Lattner3e928bb2005-01-07 07:47:09 +00006380/// ExpandedNodes map is filled in for any results that are expanded, and the
6381/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00006382void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00006383 MVT VT = Op.getValueType();
6384 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greifba36cb52008-08-28 21:40:38 +00006385 SDNode *Node = Op.getNode();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006386 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00006387 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00006388 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006389
Chris Lattner6fdcb252005-09-02 20:32:45 +00006390 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00006391 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00006392 = ExpandedNodes.find(Op);
6393 if (I != ExpandedNodes.end()) {
6394 Lo = I->second.first;
6395 Hi = I->second.second;
6396 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006397 }
6398
Chris Lattner3e928bb2005-01-07 07:47:09 +00006399 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006400 case ISD::CopyFromReg:
6401 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006402 case ISD::FP_ROUND_INREG:
6403 if (VT == MVT::ppcf128 &&
6404 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
6405 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006406 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00006407 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
6408 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
Dan Gohman475871a2008-07-27 21:46:04 +00006409 SDValue Result = TLI.LowerOperation(
Dale Johannesenfcf4d242007-10-11 23:32:15 +00006410 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006411 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6412 Lo = Result.getNode()->getOperand(0);
6413 Hi = Result.getNode()->getOperand(1);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006414 break;
6415 }
6416 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00006417 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006418#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006419 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006420#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00006421 assert(0 && "Do not know how to expand this operator!");
6422 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00006423 case ISD::EXTRACT_ELEMENT:
6424 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006425 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman1953ecb2008-02-27 01:52:30 +00006426 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00006427 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00006428 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen25f1d082007-10-31 00:32:36 +00006429 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6430 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6431 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006432 case ISD::UNDEF:
6433 Lo = DAG.getNode(ISD::UNDEF, NVT);
6434 Hi = DAG.getNode(ISD::UNDEF, NVT);
6435 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006436 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006437 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00006438 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6439 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6440 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006441 break;
6442 }
Evan Cheng00495212006-12-12 21:32:44 +00006443 case ISD::ConstantFP: {
6444 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00006445 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen7111b022008-10-09 18:53:47 +00006446 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesena471c2e2007-10-11 18:07:22 +00006447 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6448 MVT::f64);
6449 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
6450 MVT::f64);
6451 break;
6452 }
Evan Cheng279101e2006-12-12 22:19:28 +00006453 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00006454 if (getTypeAction(Lo.getValueType()) == Expand)
6455 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006456 break;
6457 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006458 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006459 // Return the operands.
6460 Lo = Node->getOperand(0);
6461 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006462 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006463
6464 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00006465 if (Node->getNumValues() == 1) {
6466 ExpandOp(Op.getOperand(0), Lo, Hi);
6467 break;
6468 }
Chris Lattner27a6c732007-11-24 07:07:01 +00006469 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif99a6cb92008-08-26 22:36:50 +00006470 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattner27a6c732007-11-24 07:07:01 +00006471 Op.getValue(1).getValueType() == MVT::Other &&
6472 "unhandled MERGE_VALUES");
6473 ExpandOp(Op.getOperand(0), Lo, Hi);
6474 // Remember that we legalized the chain.
6475 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6476 break;
Chris Lattner58f79632005-12-12 22:27:43 +00006477
6478 case ISD::SIGN_EXTEND_INREG:
6479 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00006480 // sext_inreg the low part if needed.
6481 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
6482
6483 // The high part gets the sign extension from the lo-part. This handles
6484 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00006485 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006486 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00006487 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00006488 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006489
Nate Begemand88fc032006-01-14 03:14:10 +00006490 case ISD::BSWAP: {
6491 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006492 SDValue TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
Nate Begemand88fc032006-01-14 03:14:10 +00006493 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
6494 Lo = TempLo;
6495 break;
6496 }
6497
Chris Lattneredb1add2005-05-11 04:51:16 +00006498 case ISD::CTPOP:
6499 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00006500 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6501 DAG.getNode(ISD::CTPOP, NVT, Lo),
6502 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00006503 Hi = DAG.getConstant(0, NVT);
6504 break;
6505
Chris Lattner39a8f332005-05-12 19:05:01 +00006506 case ISD::CTLZ: {
6507 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006508 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006509 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
6510 SDValue HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Duncan Sands5480c042009-01-01 15:52:00 +00006511 SDValue TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(NVT), HLZ, BitsC,
6512 ISD::SETNE);
Dan Gohman475871a2008-07-27 21:46:04 +00006513 SDValue LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
Chris Lattner39a8f332005-05-12 19:05:01 +00006514 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
6515
6516 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
6517 Hi = DAG.getConstant(0, NVT);
6518 break;
6519 }
6520
6521 case ISD::CTTZ: {
6522 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006523 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006524 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
6525 SDValue LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Duncan Sands5480c042009-01-01 15:52:00 +00006526 SDValue BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(NVT), LTZ, BitsC,
6527 ISD::SETNE);
Dan Gohman475871a2008-07-27 21:46:04 +00006528 SDValue HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00006529 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
6530
6531 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
6532 Hi = DAG.getConstant(0, NVT);
6533 break;
6534 }
Chris Lattneredb1add2005-05-11 04:51:16 +00006535
Nate Begemanacc398c2006-01-25 18:21:52 +00006536 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00006537 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6538 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00006539 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
6540 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
6541
6542 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00006543 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00006544 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00006545 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00006546 std::swap(Lo, Hi);
6547 break;
6548 }
6549
Chris Lattner3e928bb2005-01-07 07:47:09 +00006550 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00006551 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006552 SDValue Ch = LD->getChain(); // Legalize the chain.
6553 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00006554 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006555 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006556 int SVOffset = LD->getSrcValueOffset();
6557 unsigned Alignment = LD->getAlignment();
6558 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006559
Evan Cheng466685d2006-10-09 20:57:25 +00006560 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00006561 Lo = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006562 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00006563 if (VT == MVT::f32 || VT == MVT::f64) {
6564 // f32->i32 or f64->i64 one to one expansion.
6565 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006566 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00006567 // Recursively expand the new load.
6568 if (getTypeAction(NVT) == Expand)
6569 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006570 break;
6571 }
Chris Lattnerec39a452005-01-19 18:02:17 +00006572
Evan Cheng466685d2006-10-09 20:57:25 +00006573 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006574 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Evan Cheng466685d2006-10-09 20:57:25 +00006575 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006576 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006577 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006578 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman7f8613e2008-08-14 20:04:46 +00006579 Hi = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006580 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00006581
Evan Cheng466685d2006-10-09 20:57:25 +00006582 // Build a factor node to remember that this load is independent of the
6583 // other one.
Dan Gohman475871a2008-07-27 21:46:04 +00006584 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Evan Cheng466685d2006-10-09 20:57:25 +00006585 Hi.getValue(1));
6586
6587 // Remember that we legalized the chain.
6588 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00006589 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00006590 std::swap(Lo, Hi);
6591 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006592 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006593
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006594 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6595 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006596 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dan Gohman7f8613e2008-08-14 20:04:46 +00006597 SDValue Load = DAG.getLoad(EVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006598 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006599 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006600 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Evan Cheng548f6112006-12-13 03:19:57 +00006601 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
6602 break;
6603 }
Evan Cheng466685d2006-10-09 20:57:25 +00006604
6605 if (EVT == NVT)
Dan Gohman7f8613e2008-08-14 20:04:46 +00006606 Lo = DAG.getLoad(NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006607 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006608 else
Dan Gohman7f8613e2008-08-14 20:04:46 +00006609 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006610 SVOffset, EVT, isVolatile,
6611 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006612
6613 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006614 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00006615
6616 if (ExtType == ISD::SEXTLOAD) {
6617 // The high part is obtained by SRA'ing all but one of the bits of the
6618 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006619 unsigned LoSize = Lo.getValueType().getSizeInBits();
Evan Cheng466685d2006-10-09 20:57:25 +00006620 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6621 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6622 } else if (ExtType == ISD::ZEXTLOAD) {
6623 // The high part is just a zero.
6624 Hi = DAG.getConstant(0, NVT);
6625 } else /* if (ExtType == ISD::EXTLOAD) */ {
6626 // The high part is undefined.
6627 Hi = DAG.getNode(ISD::UNDEF, NVT);
6628 }
6629 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006630 break;
6631 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006632 case ISD::AND:
6633 case ISD::OR:
6634 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006635 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006636 ExpandOp(Node->getOperand(0), LL, LH);
6637 ExpandOp(Node->getOperand(1), RL, RH);
6638 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6639 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6640 break;
6641 }
6642 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006643 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006644 ExpandOp(Node->getOperand(1), LL, LH);
6645 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006646 if (getTypeAction(NVT) == Expand)
6647 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00006648 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006649 if (VT != MVT::f32)
6650 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006651 break;
6652 }
Nate Begeman9373a812005-08-10 20:51:12 +00006653 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006654 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006655 ExpandOp(Node->getOperand(2), TL, TH);
6656 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006657 if (getTypeAction(NVT) == Expand)
6658 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00006659 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6660 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006661 if (VT != MVT::f32)
6662 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6663 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006664 break;
6665 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006666 case ISD::ANY_EXTEND:
6667 // The low part is any extension of the input (which degenerates to a copy).
6668 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6669 // The high part is undefined.
6670 Hi = DAG.getNode(ISD::UNDEF, NVT);
6671 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006672 case ISD::SIGN_EXTEND: {
6673 // The low part is just a sign extension of the input (which degenerates to
6674 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006675 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006676
Chris Lattner3e928bb2005-01-07 07:47:09 +00006677 // The high part is obtained by SRA'ing all but one of the bits of the lo
6678 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006679 unsigned LoSize = Lo.getValueType().getSizeInBits();
Chris Lattner8137c9e2006-01-28 05:07:51 +00006680 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6681 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006682 break;
6683 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006684 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006685 // The low part is just a zero extension of the input (which degenerates to
6686 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006687 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006688
Chris Lattner3e928bb2005-01-07 07:47:09 +00006689 // The high part is just a zero.
6690 Hi = DAG.getConstant(0, NVT);
6691 break;
Chris Lattner35481892005-12-23 00:16:34 +00006692
Chris Lattner4c948eb2007-02-13 23:55:16 +00006693 case ISD::TRUNCATE: {
6694 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006695 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006696 ExpandOp(Node->getOperand(0), NewLo, Hi);
6697
6698 // The low part is now either the right size, or it is closer. If not the
6699 // right size, make an illegal truncate so we recursively expand it.
6700 if (NewLo.getValueType() != Node->getValueType(0))
6701 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6702 ExpandOp(NewLo, Lo, Hi);
6703 break;
6704 }
6705
Chris Lattner35481892005-12-23 00:16:34 +00006706 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006707 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006708 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6709 // If the target wants to, allow it to lower this itself.
6710 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6711 case Expand: assert(0 && "cannot expand FP!");
6712 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6713 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6714 }
6715 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6716 }
6717
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006718 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006719 if (VT == MVT::f32 || VT == MVT::f64) {
6720 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006721 if (getTypeAction(NVT) == Expand)
6722 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006723 break;
6724 }
6725
6726 // If source operand will be expanded to the same type as VT, i.e.
6727 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006728 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006729 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6730 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006731 break;
6732 }
6733
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006734 // Turn this into a load/store pair by default.
Gabor Greifba36cb52008-08-28 21:40:38 +00006735 if (Tmp.getNode() == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006736 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006737
Chris Lattner35481892005-12-23 00:16:34 +00006738 ExpandOp(Tmp, Lo, Hi);
6739 break;
6740 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006741
Chris Lattner27a6c732007-11-24 07:07:01 +00006742 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006743 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6744 TargetLowering::Custom &&
6745 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006746 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006747 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattner27a6c732007-11-24 07:07:01 +00006748 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006749 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006750 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006751 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006752 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006753
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006754 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006755 // This operation does not need a loop.
6756 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6757 assert(Tmp.getNode() && "Node must be custom expanded!");
6758 ExpandOp(Tmp.getValue(0), Lo, Hi);
6759 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6760 LegalizeOp(Tmp.getValue(1)));
6761 break;
6762 }
6763
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006764 case ISD::ATOMIC_LOAD_ADD:
6765 case ISD::ATOMIC_LOAD_SUB:
6766 case ISD::ATOMIC_LOAD_AND:
6767 case ISD::ATOMIC_LOAD_OR:
6768 case ISD::ATOMIC_LOAD_XOR:
6769 case ISD::ATOMIC_LOAD_NAND:
6770 case ISD::ATOMIC_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006771 // These operations require a loop to be generated. We can't do that yet,
6772 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006773 SDValue In2Lo, In2Hi, In2;
6774 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
6775 In2 = DAG.getNode(ISD::BUILD_PAIR, VT, In2Lo, In2Hi);
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006776 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
6777 SDValue Replace =
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006778 DAG.getAtomic(Op.getOpcode(), Anode->getMemoryVT(),
6779 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006780 Anode->getSrcValue(), Anode->getAlignment());
6781 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006782 ExpandOp(Result.getValue(0), Lo, Hi);
6783 // Remember that we legalized the chain.
6784 AddLegalizedOperand(SDValue(Node,1), LegalizeOp(Result.getValue(1)));
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006785 break;
6786 }
6787
Chris Lattner4e6c7462005-01-08 19:27:05 +00006788 // These operators cannot be expanded directly, emit them as calls to
6789 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006790 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006791 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006792 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006793 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6794 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006795 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6796 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006797 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006798
Chris Lattnerf20d1832005-07-30 01:40:57 +00006799 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6800
Chris Lattner80a3e942005-07-29 00:33:32 +00006801 // Now that the custom expander is done, expand the result, which is still
6802 // VT.
Gabor Greifba36cb52008-08-28 21:40:38 +00006803 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006804 ExpandOp(Op, Lo, Hi);
6805 break;
6806 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006807 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006808
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006809 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6810 VT);
6811 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6812 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006813 break;
Evan Cheng56966222007-01-12 02:11:51 +00006814 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006815
Evan Cheng56966222007-01-12 02:11:51 +00006816 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006817 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006818 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006819 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6820 case Expand: assert(0 && "cannot expand FP!");
6821 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6822 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6823 }
6824
6825 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6826
6827 // Now that the custom expander is done, expand the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00006828 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006829 ExpandOp(Op, Lo, Hi);
6830 break;
6831 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006832 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006833
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006834 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6835 VT);
6836 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6837 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006838 break;
Evan Cheng56966222007-01-12 02:11:51 +00006839 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006840
Evan Cheng05a2d562006-01-09 18:31:59 +00006841 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006842 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006843 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006844 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006845 SDValue Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006846 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006847 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006848 // Now that the custom expander is done, expand the result, which is
6849 // still VT.
6850 ExpandOp(Op, Lo, Hi);
6851 break;
6852 }
6853 }
6854
Chris Lattner79980b02006-09-13 03:50:39 +00006855 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6856 // this X << 1 as X+X.
6857 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006858 if (ShAmt->getAPIntValue() == 1 &&
6859 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
6860 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006861 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006862 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6863 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6864 LoOps[1] = LoOps[0];
6865 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6866
6867 HiOps[1] = HiOps[0];
6868 HiOps[2] = Lo.getValue(1);
6869 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6870 break;
6871 }
6872 }
6873
Chris Lattnere34b3962005-01-19 04:19:40 +00006874 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006875 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006876 break;
Chris Lattner47599822005-04-02 03:38:53 +00006877
6878 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006879 TargetLowering::LegalizeAction Action =
6880 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6881 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6882 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006883 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006884 break;
6885 }
6886
Chris Lattnere34b3962005-01-19 04:19:40 +00006887 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006888 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006889 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006890 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006891
Evan Cheng05a2d562006-01-09 18:31:59 +00006892 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006893 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006894 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006895 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006896 SDValue Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006897 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006898 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006899 // Now that the custom expander is done, expand the result, which is
6900 // still VT.
6901 ExpandOp(Op, Lo, Hi);
6902 break;
6903 }
6904 }
6905
Chris Lattnere34b3962005-01-19 04:19:40 +00006906 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006907 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006908 break;
Chris Lattner47599822005-04-02 03:38:53 +00006909
6910 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006911 TargetLowering::LegalizeAction Action =
6912 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6913 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6914 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006915 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006916 break;
6917 }
6918
Chris Lattnere34b3962005-01-19 04:19:40 +00006919 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006920 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006921 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006922 }
6923
6924 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006925 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006926 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006927 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006928 SDValue Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006929 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006930 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006931 // Now that the custom expander is done, expand the result, which is
6932 // still VT.
6933 ExpandOp(Op, Lo, Hi);
6934 break;
6935 }
6936 }
6937
Chris Lattnere34b3962005-01-19 04:19:40 +00006938 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006939 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006940 break;
Chris Lattner47599822005-04-02 03:38:53 +00006941
6942 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006943 TargetLowering::LegalizeAction Action =
6944 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6945 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6946 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006947 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006948 break;
6949 }
6950
Chris Lattnere34b3962005-01-19 04:19:40 +00006951 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006952 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006953 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006954 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006955
Misha Brukmanedf128a2005-04-21 22:36:52 +00006956 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006957 case ISD::SUB: {
6958 // If the target wants to custom expand this, let them.
6959 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6960 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006961 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006962 if (Result.getNode()) {
Duncan Sands69bfb152008-06-22 09:42:16 +00006963 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006964 break;
6965 }
6966 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006967 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006968 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006969 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6970 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman475871a2008-07-27 21:46:04 +00006971 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006972 LoOps[0] = LHSL;
6973 LoOps[1] = RHSL;
6974 HiOps[0] = LHSH;
6975 HiOps[1] = RHSH;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006976
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006977 //cascaded check to see if any smaller size has a a carry flag.
6978 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
6979 bool hasCarry = false;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006980 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
6981 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006982 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006983 hasCarry = true;
6984 break;
6985 }
6986 }
6987
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006988 if(hasCarry) {
Evan Cheng637ed032008-12-12 18:49:09 +00006989 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006990 if (Node->getOpcode() == ISD::ADD) {
6991 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6992 HiOps[2] = Lo.getValue(1);
6993 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6994 } else {
6995 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6996 HiOps[2] = Lo.getValue(1);
6997 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6998 }
6999 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007000 } else {
Andrew Lenharth40d51392008-10-07 14:15:42 +00007001 if (Node->getOpcode() == ISD::ADD) {
Evan Cheng637ed032008-12-12 18:49:09 +00007002 Lo = DAG.getNode(ISD::ADD, NVT, LoOps, 2);
7003 Hi = DAG.getNode(ISD::ADD, NVT, HiOps, 2);
Duncan Sands5480c042009-01-01 15:52:00 +00007004 SDValue Cmp1 = DAG.getSetCC(TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007005 Lo, LoOps[0], ISD::SETULT);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007006 SDValue Carry1 = DAG.getNode(ISD::SELECT, NVT, Cmp1,
7007 DAG.getConstant(1, NVT),
7008 DAG.getConstant(0, NVT));
Duncan Sands5480c042009-01-01 15:52:00 +00007009 SDValue Cmp2 = DAG.getSetCC(TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007010 Lo, LoOps[1], ISD::SETULT);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007011 SDValue Carry2 = DAG.getNode(ISD::SELECT, NVT, Cmp2,
7012 DAG.getConstant(1, NVT),
7013 Carry1);
7014 Hi = DAG.getNode(ISD::ADD, NVT, Hi, Carry2);
7015 } else {
Evan Cheng637ed032008-12-12 18:49:09 +00007016 Lo = DAG.getNode(ISD::SUB, NVT, LoOps, 2);
7017 Hi = DAG.getNode(ISD::SUB, NVT, HiOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007018 SDValue Cmp = DAG.getSetCC(NVT, LoOps[0], LoOps[1], ISD::SETULT);
7019 SDValue Borrow = DAG.getNode(ISD::SELECT, NVT, Cmp,
7020 DAG.getConstant(1, NVT),
7021 DAG.getConstant(0, NVT));
7022 Hi = DAG.getNode(ISD::SUB, NVT, Hi, Borrow);
7023 }
7024 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007025 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00007026 }
Chris Lattnerb429f732007-05-17 18:15:41 +00007027
7028 case ISD::ADDC:
7029 case ISD::SUBC: {
7030 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007031 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007032 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7033 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7034 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007035 SDValue LoOps[2] = { LHSL, RHSL };
7036 SDValue HiOps[3] = { LHSH, RHSH };
Chris Lattnerb429f732007-05-17 18:15:41 +00007037
7038 if (Node->getOpcode() == ISD::ADDC) {
7039 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
7040 HiOps[2] = Lo.getValue(1);
7041 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
7042 } else {
7043 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
7044 HiOps[2] = Lo.getValue(1);
7045 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
7046 }
7047 // Remember that we legalized the flag.
7048 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7049 break;
7050 }
7051 case ISD::ADDE:
7052 case ISD::SUBE: {
7053 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007054 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007055 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7056 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7057 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007058 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7059 SDValue HiOps[3] = { LHSH, RHSH };
Chris Lattnerb429f732007-05-17 18:15:41 +00007060
7061 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
7062 HiOps[2] = Lo.getValue(1);
7063 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
7064
7065 // Remember that we legalized the flag.
7066 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7067 break;
7068 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007069 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007070 // If the target wants to custom expand this, let them.
7071 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00007072 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007073 if (New.getNode()) {
Chris Lattner8829dc82006-09-16 05:08:34 +00007074 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007075 break;
7076 }
7077 }
7078
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007079 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7080 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7081 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7082 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00007083 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00007084 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00007085 ExpandOp(Node->getOperand(0), LL, LH);
7086 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007087 unsigned OuterBitSize = Op.getValueSizeInBits();
7088 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00007089 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7090 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00007091 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7092 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7093 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00007094 // The inputs are both zero-extended.
7095 if (HasUMUL_LOHI) {
7096 // We can emit a umul_lohi.
7097 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007098 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007099 break;
7100 }
7101 if (HasMULHU) {
7102 // We can emit a mulhu+mul.
7103 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
7104 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
7105 break;
7106 }
Dan Gohman525178c2007-10-08 18:33:35 +00007107 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007108 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00007109 // The input values are both sign-extended.
7110 if (HasSMUL_LOHI) {
7111 // We can emit a smul_lohi.
7112 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007113 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007114 break;
7115 }
7116 if (HasMULHS) {
7117 // We can emit a mulhs+mul.
7118 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
7119 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
7120 break;
7121 }
7122 }
7123 if (HasUMUL_LOHI) {
7124 // Lo,Hi = umul LHS, RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00007125 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
Dan Gohman525178c2007-10-08 18:33:35 +00007126 DAG.getVTList(NVT, NVT), LL, RL);
7127 Lo = UMulLOHI;
7128 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00007129 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
7130 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
7131 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
7132 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00007133 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00007134 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007135 if (HasMULHU) {
7136 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
7137 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
7138 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
7139 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
7140 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
7141 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
7142 break;
7143 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007144 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00007145
Dan Gohman525178c2007-10-08 18:33:35 +00007146 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00007147 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00007148 break;
7149 }
Evan Cheng56966222007-01-12 02:11:51 +00007150 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007151 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007152 break;
7153 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007154 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007155 break;
7156 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007157 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007158 break;
7159 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007160 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007161 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00007162
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007163 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00007164 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7165 RTLIB::ADD_F64,
7166 RTLIB::ADD_F80,
7167 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007168 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007169 break;
7170 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00007171 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7172 RTLIB::SUB_F64,
7173 RTLIB::SUB_F80,
7174 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007175 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007176 break;
7177 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00007178 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7179 RTLIB::MUL_F64,
7180 RTLIB::MUL_F80,
7181 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007182 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007183 break;
7184 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007185 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7186 RTLIB::DIV_F64,
7187 RTLIB::DIV_F80,
7188 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007189 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007190 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007191 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007192 if (VT == MVT::ppcf128) {
7193 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7194 Node->getOperand(0).getValueType()==MVT::f64);
7195 const uint64_t zero = 0;
7196 if (Node->getOperand(0).getValueType()==MVT::f32)
7197 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
7198 else
7199 Hi = Node->getOperand(0);
7200 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7201 break;
7202 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007203 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7204 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7205 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007206 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007207 }
7208 case ISD::FP_ROUND: {
7209 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7210 VT);
7211 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7212 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007213 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007214 }
Evan Cheng4b887022008-09-09 23:02:14 +00007215 case ISD::FSQRT:
7216 case ISD::FSIN:
7217 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007218 case ISD::FLOG:
7219 case ISD::FLOG2:
7220 case ISD::FLOG10:
7221 case ISD::FEXP:
7222 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007223 case ISD::FTRUNC:
7224 case ISD::FFLOOR:
7225 case ISD::FCEIL:
7226 case ISD::FRINT:
7227 case ISD::FNEARBYINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00007228 case ISD::FPOW:
7229 case ISD::FPOWI: {
Evan Cheng56966222007-01-12 02:11:51 +00007230 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007231 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00007232 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00007233 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7234 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007235 break;
7236 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00007237 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7238 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007239 break;
7240 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00007241 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7242 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007243 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007244 case ISD::FLOG:
7245 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7246 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7247 break;
7248 case ISD::FLOG2:
7249 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7250 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7251 break;
7252 case ISD::FLOG10:
7253 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7254 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7255 break;
7256 case ISD::FEXP:
7257 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7258 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7259 break;
7260 case ISD::FEXP2:
7261 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7262 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7263 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007264 case ISD::FTRUNC:
7265 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7266 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7267 break;
7268 case ISD::FFLOOR:
7269 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7270 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7271 break;
7272 case ISD::FCEIL:
7273 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7274 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7275 break;
7276 case ISD::FRINT:
7277 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7278 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7279 break;
7280 case ISD::FNEARBYINT:
7281 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7282 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7283 break;
Evan Cheng4b887022008-09-09 23:02:14 +00007284 case ISD::FPOW:
7285 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7286 RTLIB::POW_PPCF128);
7287 break;
7288 case ISD::FPOWI:
7289 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7290 RTLIB::POWI_PPCF128);
7291 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007292 default: assert(0 && "Unreachable!");
7293 }
Duncan Sands460a14e2008-04-12 17:14:18 +00007294 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00007295 break;
7296 }
Evan Cheng966bf242006-12-16 00:52:40 +00007297 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007298 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00007299 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00007300 ExpandOp(Node->getOperand(0), Lo, Tmp);
7301 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
7302 // lo = hi==fabs(hi) ? lo : -lo;
7303 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
7304 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
7305 DAG.getCondCode(ISD::SETEQ));
7306 break;
7307 }
Dan Gohman475871a2008-07-27 21:46:04 +00007308 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007309 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7310 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
7311 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
7312 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
7313 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
7314 if (getTypeAction(NVT) == Expand)
7315 ExpandOp(Lo, Lo, Hi);
7316 break;
7317 }
7318 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007319 if (VT == MVT::ppcf128) {
7320 ExpandOp(Node->getOperand(0), Lo, Hi);
7321 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
7322 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
7323 break;
7324 }
Dan Gohman475871a2008-07-27 21:46:04 +00007325 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007326 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7327 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
7328 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
7329 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
7330 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
7331 if (getTypeAction(NVT) == Expand)
7332 ExpandOp(Lo, Lo, Hi);
7333 break;
7334 }
Evan Cheng912095b2007-01-04 21:56:39 +00007335 case ISD::FCOPYSIGN: {
7336 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7337 if (getTypeAction(NVT) == Expand)
7338 ExpandOp(Lo, Lo, Hi);
7339 break;
7340 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007341 case ISD::SINT_TO_FP:
7342 case ISD::UINT_TO_FP: {
7343 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007344 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00007345
7346 // Promote the operand if needed. Do this before checking for
7347 // ppcf128 so conversions of i16 and i8 work.
7348 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00007349 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00007350 Tmp = isSigned
7351 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
7352 DAG.getValueType(SrcVT))
7353 : DAG.getZeroExtendInReg(Tmp, SrcVT);
Gabor Greifba36cb52008-08-28 21:40:38 +00007354 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesencf498192008-03-18 17:28:38 +00007355 SrcVT = Node->getOperand(0).getValueType();
7356 }
7357
Dan Gohmana2e94852008-03-10 23:03:31 +00007358 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007359 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007360 if (isSigned) {
7361 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
7362 Node->getOperand(0)));
7363 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7364 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007365 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007366 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
7367 Node->getOperand(0)));
7368 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7369 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007370 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007371 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
7372 DAG.getConstant(0, MVT::i32),
7373 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
7374 DAG.getConstantFP(
7375 APFloat(APInt(128, 2, TwoE32)),
7376 MVT::ppcf128)),
7377 Hi,
7378 DAG.getCondCode(ISD::SETLT)),
7379 Lo, Hi);
7380 }
7381 break;
7382 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00007383 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7384 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007385 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00007386 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
7387 Lo, Hi);
7388 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
7389 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
7390 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
7391 DAG.getConstant(0, MVT::i64),
7392 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
7393 DAG.getConstantFP(
7394 APFloat(APInt(128, 2, TwoE64)),
7395 MVT::ppcf128)),
7396 Hi,
7397 DAG.getCondCode(ISD::SETLT)),
7398 Lo, Hi);
7399 break;
7400 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007401
Dan Gohmana2e94852008-03-10 23:03:31 +00007402 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesenaf435272009-02-02 19:03:57 +00007403 Node->getOperand(0), Node->getDebugLoc());
Evan Cheng110cf482008-04-01 01:50:16 +00007404 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00007405 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00007406 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00007407 break;
7408 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00007409 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00007410
Chris Lattner83397362005-12-21 18:02:52 +00007411 // Make sure the resultant values have been legalized themselves, unless this
7412 // is a type that requires multi-step expansion.
7413 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7414 Lo = LegalizeOp(Lo);
Gabor Greifba36cb52008-08-28 21:40:38 +00007415 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00007416 // Don't legalize the high part if it is expanded to a single node.
7417 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00007418 }
Evan Cheng05a2d562006-01-09 18:31:59 +00007419
7420 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00007421 bool isNew =
7422 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00007423 assert(isNew && "Value already expanded?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007424 isNew = isNew;
Chris Lattner3e928bb2005-01-07 07:47:09 +00007425}
7426
Dan Gohman7f321562007-06-25 16:23:39 +00007427/// SplitVectorOp - Given an operand of vector type, break it down into
7428/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00007429void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7430 SDValue &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007431 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007432 SDNode *Node = Op.getNode();
Dale Johannesenbb5da912009-02-02 20:41:04 +00007433 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007434 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00007435 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00007436
Duncan Sands83ec4b62008-06-06 12:08:01 +00007437 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00007438
7439 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7440 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7441
Duncan Sands83ec4b62008-06-06 12:08:01 +00007442 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7443 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007444
Chris Lattnerc7029802006-03-18 01:44:44 +00007445 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00007446 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00007447 = SplitNodes.find(Op);
7448 if (I != SplitNodes.end()) {
7449 Lo = I->second.first;
7450 Hi = I->second.second;
7451 return;
7452 }
7453
7454 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007455 default:
7456#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007457 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007458#endif
7459 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007460 case ISD::UNDEF:
7461 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
7462 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
7463 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007464 case ISD::BUILD_PAIR:
7465 Lo = Node->getOperand(0);
7466 Hi = Node->getOperand(1);
7467 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00007468 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00007469 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7470 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007471 unsigned Index = Idx->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007472 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00007473 if (Index < NewNumElts_Lo)
7474 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
7475 DAG.getIntPtrConstant(Index));
7476 else
7477 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
7478 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7479 break;
7480 }
Dan Gohman475871a2008-07-27 21:46:04 +00007481 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman68679912008-04-25 18:07:40 +00007482 Node->getOperand(1),
Dale Johannesenbb5da912009-02-02 20:41:04 +00007483 Node->getOperand(2), dl);
Nate Begeman68679912008-04-25 18:07:40 +00007484 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00007485 break;
7486 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00007487 case ISD::VECTOR_SHUFFLE: {
7488 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00007489 SDValue Mask = Node->getOperand(2);
7490 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007491 MVT PtrVT = TLI.getPointerTy();
Chris Lattner6c9c6802007-11-19 21:16:54 +00007492
7493 // Insert all of the elements from the input that are needed. We use
7494 // buildvector of extractelement here because the input vectors will have
7495 // to be legalized, so this makes the code simpler.
7496 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007497 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007498 if (IdxNode.getOpcode() == ISD::UNDEF) {
7499 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
7500 continue;
7501 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007502 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007503 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007504 if (Idx >= NumElements) {
7505 InVec = Node->getOperand(1);
7506 Idx -= NumElements;
7507 }
7508 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
7509 DAG.getConstant(Idx, PtrVT)));
7510 }
7511 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
7512 Ops.clear();
7513
7514 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007515 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007516 if (IdxNode.getOpcode() == ISD::UNDEF) {
7517 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
7518 continue;
7519 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007520 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007521 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007522 if (Idx >= NumElements) {
7523 InVec = Node->getOperand(1);
7524 Idx -= NumElements;
7525 }
7526 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
7527 DAG.getConstant(Idx, PtrVT)));
7528 }
Mon P Wang92879f32008-07-25 01:30:26 +00007529 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007530 break;
7531 }
Dan Gohman7f321562007-06-25 16:23:39 +00007532 case ISD::BUILD_VECTOR: {
Dan Gohman475871a2008-07-27 21:46:04 +00007533 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00007534 Node->op_begin()+NewNumElts_Lo);
7535 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007536
Dan Gohman475871a2008-07-27 21:46:04 +00007537 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00007538 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00007539 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007540 break;
7541 }
Dan Gohman7f321562007-06-25 16:23:39 +00007542 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00007543 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00007544 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7545 if (NewNumSubvectors == 1) {
7546 Lo = Node->getOperand(0);
7547 Hi = Node->getOperand(1);
7548 } else {
Mon P Wangaeb06d22008-11-10 04:46:22 +00007549 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7550 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007551 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00007552
Mon P Wangaeb06d22008-11-10 04:46:22 +00007553 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohman7f321562007-06-25 16:23:39 +00007554 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00007555 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00007556 }
Dan Gohman65956352007-06-13 15:12:02 +00007557 break;
7558 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00007559 case ISD::EXTRACT_SUBVECTOR: {
7560 SDValue Vec = Op.getOperand(0);
7561 SDValue Idx = Op.getOperand(1);
7562 MVT IdxVT = Idx.getValueType();
7563
7564 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, NewVT_Lo, Vec, Idx);
7565 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7566 if (CIdx) {
7567 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, NewVT_Hi, Vec,
7568 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7569 IdxVT));
7570 } else {
7571 Idx = DAG.getNode(ISD::ADD, IdxVT, Idx,
7572 DAG.getConstant(NewNumElts_Lo, IdxVT));
7573 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, NewVT_Hi, Vec, Idx);
7574 }
7575 break;
7576 }
Dan Gohmanc6230962007-10-17 14:48:28 +00007577 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007578 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00007579
Dan Gohman475871a2008-07-27 21:46:04 +00007580 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007581 SplitVectorOp(Node->getOperand(1), LL, LH);
7582 SplitVectorOp(Node->getOperand(2), RL, RH);
7583
Duncan Sands83ec4b62008-06-06 12:08:01 +00007584 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00007585 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00007586 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007587 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007588 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
7589 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007590 } else {
7591 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00007592 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
7593 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007594 }
7595 break;
7596 }
Chris Lattner80c1a562008-06-30 02:43:01 +00007597 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007598 SDValue CondLHS = Node->getOperand(0);
7599 SDValue CondRHS = Node->getOperand(1);
7600 SDValue CondCode = Node->getOperand(4);
Chris Lattner80c1a562008-06-30 02:43:01 +00007601
Dan Gohman475871a2008-07-27 21:46:04 +00007602 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00007603 SplitVectorOp(Node->getOperand(2), LL, LH);
7604 SplitVectorOp(Node->getOperand(3), RL, RH);
7605
7606 // Handle a simple select with vector operands.
7607 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
7608 LL, RL, CondCode);
7609 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
7610 LH, RH, CondCode);
7611 break;
7612 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00007613 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007614 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00007615 SplitVectorOp(Node->getOperand(0), LL, LH);
7616 SplitVectorOp(Node->getOperand(1), RL, RH);
7617 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
7618 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
7619 break;
7620 }
Dan Gohman7f321562007-06-25 16:23:39 +00007621 case ISD::ADD:
7622 case ISD::SUB:
7623 case ISD::MUL:
7624 case ISD::FADD:
7625 case ISD::FSUB:
7626 case ISD::FMUL:
7627 case ISD::SDIV:
7628 case ISD::UDIV:
7629 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00007630 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007631 case ISD::AND:
7632 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00007633 case ISD::XOR:
7634 case ISD::UREM:
7635 case ISD::SREM:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00007636 case ISD::FREM:
7637 case ISD::SHL:
7638 case ISD::SRA:
7639 case ISD::SRL: {
Dan Gohman475871a2008-07-27 21:46:04 +00007640 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00007641 SplitVectorOp(Node->getOperand(0), LL, LH);
7642 SplitVectorOp(Node->getOperand(1), RL, RH);
7643
Nate Begeman5db1afb2007-11-15 21:15:26 +00007644 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
7645 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00007646 break;
7647 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00007648 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00007649 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00007650 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007651 SplitVectorOp(Node->getOperand(0), L, H);
7652
Nate Begeman5db1afb2007-11-15 21:15:26 +00007653 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
7654 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00007655 break;
7656 }
7657 case ISD::CTTZ:
7658 case ISD::CTLZ:
7659 case ISD::CTPOP:
7660 case ISD::FNEG:
7661 case ISD::FABS:
7662 case ISD::FSQRT:
7663 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00007664 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007665 case ISD::FLOG:
7666 case ISD::FLOG2:
7667 case ISD::FLOG10:
7668 case ISD::FEXP:
7669 case ISD::FEXP2:
Nate Begemanb348d182007-11-17 03:58:34 +00007670 case ISD::FP_TO_SINT:
7671 case ISD::FP_TO_UINT:
7672 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007673 case ISD::UINT_TO_FP:
7674 case ISD::TRUNCATE:
7675 case ISD::ANY_EXTEND:
7676 case ISD::SIGN_EXTEND:
7677 case ISD::ZERO_EXTEND:
7678 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00007679 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007680 SplitVectorOp(Node->getOperand(0), L, H);
7681
Nate Begeman5db1afb2007-11-15 21:15:26 +00007682 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
7683 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00007684 break;
7685 }
Mon P Wang77cdf302008-11-10 20:54:11 +00007686 case ISD::CONVERT_RNDSAT: {
7687 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7688 SDValue L, H;
7689 SplitVectorOp(Node->getOperand(0), L, H);
7690 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7691 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7692 SDValue STyOpL = DAG.getValueType(L.getValueType());
7693 SDValue STyOpH = DAG.getValueType(H.getValueType());
7694
7695 SDValue RndOp = Node->getOperand(3);
7696 SDValue SatOp = Node->getOperand(4);
7697
7698 Lo = DAG.getConvertRndSat(NewVT_Lo, L, DTyOpL, STyOpL,
7699 RndOp, SatOp, CvtCode);
7700 Hi = DAG.getConvertRndSat(NewVT_Hi, H, DTyOpH, STyOpH,
7701 RndOp, SatOp, CvtCode);
7702 break;
7703 }
Dan Gohman7f321562007-06-25 16:23:39 +00007704 case ISD::LOAD: {
7705 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007706 SDValue Ch = LD->getChain();
7707 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007708 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007709 const Value *SV = LD->getSrcValue();
7710 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007711 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00007712 unsigned Alignment = LD->getAlignment();
7713 bool isVolatile = LD->isVolatile();
7714
Dan Gohman7f8613e2008-08-14 20:04:46 +00007715 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7716 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7717
7718 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7719 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7720 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7721
7722 Lo = DAG.getLoad(ISD::UNINDEXED, ExtType,
7723 NewVT_Lo, Ch, Ptr, Offset,
7724 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7725 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00007726 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00007727 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00007728 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00007729 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman7f8613e2008-08-14 20:04:46 +00007730 Hi = DAG.getLoad(ISD::UNINDEXED, ExtType,
7731 NewVT_Hi, Ch, Ptr, Offset,
7732 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00007733
7734 // Build a factor node to remember that this load is independent of the
7735 // other one.
Dan Gohman475871a2008-07-27 21:46:04 +00007736 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Chris Lattnerc7029802006-03-18 01:44:44 +00007737 Hi.getValue(1));
7738
7739 // Remember that we legalized the chain.
7740 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007741 break;
7742 }
Dan Gohman7f321562007-06-25 16:23:39 +00007743 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007744 // We know the result is a vector. The input may be either a vector or a
7745 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00007746 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007747 if (!InOp.getValueType().isVector() ||
7748 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007749 // The input is a scalar or single-element vector.
7750 // Lower to a store/load so that it can be split.
7751 // FIXME: this could be improved probably.
Mon P Wang2920d2b2008-07-15 05:28:34 +00007752 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
7753 Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00007754 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greifba36cb52008-08-28 21:40:38 +00007755 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007756
Dan Gohman475871a2008-07-27 21:46:04 +00007757 SDValue St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00007758 InOp, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007759 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00007760 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007761 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007762 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007763 // Split the vector and convert each of the pieces now.
7764 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007765 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7766 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007767 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007768 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007769 }
7770
7771 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00007772 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007773 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007774 assert(isNew && "Value already split?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007775 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007776}
7777
7778
Dan Gohman89b20c02007-06-27 14:06:22 +00007779/// ScalarizeVectorOp - Given an operand of single-element vector type
7780/// (e.g. v1f32), convert it into the equivalent operation that returns a
7781/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007782SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007783 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007784 SDNode *Node = Op.getNode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007785 MVT NewVT = Op.getValueType().getVectorElementType();
7786 assert(Op.getValueType().getVectorNumElements() == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00007787
Dan Gohman7f321562007-06-25 16:23:39 +00007788 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007789 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007790 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00007791
Dan Gohman475871a2008-07-27 21:46:04 +00007792 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007793 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00007794 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007795#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007796 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007797#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007798 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7799 case ISD::ADD:
7800 case ISD::FADD:
7801 case ISD::SUB:
7802 case ISD::FSUB:
7803 case ISD::MUL:
7804 case ISD::FMUL:
7805 case ISD::SDIV:
7806 case ISD::UDIV:
7807 case ISD::FDIV:
7808 case ISD::SREM:
7809 case ISD::UREM:
7810 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007811 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007812 case ISD::AND:
7813 case ISD::OR:
7814 case ISD::XOR:
7815 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00007816 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007817 ScalarizeVectorOp(Node->getOperand(0)),
7818 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007819 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007820 case ISD::FNEG:
7821 case ISD::FABS:
7822 case ISD::FSQRT:
7823 case ISD::FSIN:
7824 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007825 case ISD::FLOG:
7826 case ISD::FLOG2:
7827 case ISD::FLOG10:
7828 case ISD::FEXP:
7829 case ISD::FEXP2:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007830 case ISD::FP_TO_SINT:
7831 case ISD::FP_TO_UINT:
7832 case ISD::SINT_TO_FP:
7833 case ISD::UINT_TO_FP:
7834 case ISD::SIGN_EXTEND:
7835 case ISD::ZERO_EXTEND:
7836 case ISD::ANY_EXTEND:
7837 case ISD::TRUNCATE:
7838 case ISD::FP_EXTEND:
Dan Gohman7f321562007-06-25 16:23:39 +00007839 Result = DAG.getNode(Node->getOpcode(),
7840 NewVT,
7841 ScalarizeVectorOp(Node->getOperand(0)));
7842 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00007843 case ISD::CONVERT_RNDSAT: {
7844 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
7845 Result = DAG.getConvertRndSat(NewVT, Op0,
7846 DAG.getValueType(NewVT),
7847 DAG.getValueType(Op0.getValueType()),
7848 Node->getOperand(3),
7849 Node->getOperand(4),
7850 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7851 break;
7852 }
Dan Gohman9e04c822007-10-12 14:13:46 +00007853 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007854 case ISD::FP_ROUND:
Dan Gohman9e04c822007-10-12 14:13:46 +00007855 Result = DAG.getNode(Node->getOpcode(),
7856 NewVT,
7857 ScalarizeVectorOp(Node->getOperand(0)),
7858 Node->getOperand(1));
7859 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007860 case ISD::LOAD: {
7861 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007862 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7863 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007864 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007865 const Value *SV = LD->getSrcValue();
7866 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007867 MVT MemoryVT = LD->getMemoryVT();
7868 unsigned Alignment = LD->getAlignment();
7869 bool isVolatile = LD->isVolatile();
7870
7871 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7872 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7873
7874 Result = DAG.getLoad(ISD::UNINDEXED, ExtType,
7875 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7876 MemoryVT.getVectorElementType(),
7877 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007878
Chris Lattnerc7029802006-03-18 01:44:44 +00007879 // Remember that we legalized the chain.
7880 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7881 break;
7882 }
Dan Gohman7f321562007-06-25 16:23:39 +00007883 case ISD::BUILD_VECTOR:
7884 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007885 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007886 case ISD::INSERT_VECTOR_ELT:
7887 // Returning the inserted scalar element.
7888 Result = Node->getOperand(1);
7889 break;
7890 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007891 assert(Node->getOperand(0).getValueType() == NewVT &&
7892 "Concat of non-legal vectors not yet supported!");
7893 Result = Node->getOperand(0);
7894 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007895 case ISD::VECTOR_SHUFFLE: {
7896 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007897 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007898 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohman7f321562007-06-25 16:23:39 +00007899 Result = ScalarizeVectorOp(Node->getOperand(1));
7900 else
7901 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007902 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007903 }
7904 case ISD::EXTRACT_SUBVECTOR:
Mon P Wange0b436a2008-11-06 22:52:21 +00007905 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewVT, Node->getOperand(0),
Mon P Wangaeb06d22008-11-10 04:46:22 +00007906 Node->getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00007907 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007908 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007909 SDValue Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007910 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007911 Op0 = ScalarizeVectorOp(Op0);
7912 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007913 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007914 }
Dan Gohman7f321562007-06-25 16:23:39 +00007915 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007916 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007917 ScalarizeVectorOp(Op.getOperand(1)),
7918 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007919 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007920 case ISD::SELECT_CC:
7921 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7922 Node->getOperand(1),
7923 ScalarizeVectorOp(Op.getOperand(2)),
7924 ScalarizeVectorOp(Op.getOperand(3)),
7925 Node->getOperand(4));
7926 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007927 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007928 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7929 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Duncan Sands5480c042009-01-01 15:52:00 +00007930 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0.getValueType()),
7931 Op0, Op1, Op.getOperand(2));
Nate Begeman0d1704b2008-05-12 23:09:43 +00007932 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7933 DAG.getConstant(-1ULL, NewVT),
7934 DAG.getConstant(0ULL, NewVT));
7935 break;
7936 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007937 }
7938
7939 if (TLI.isTypeLegal(NewVT))
7940 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007941 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7942 assert(isNew && "Value already scalarized?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007943 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007944 return Result;
7945}
7946
Chris Lattner3e928bb2005-01-07 07:47:09 +00007947
Mon P Wang0c397192008-10-30 08:01:45 +00007948SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
7949 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
7950 if (I != WidenNodes.end()) return I->second;
7951
7952 MVT VT = Op.getValueType();
7953 assert(VT.isVector() && "Cannot widen non-vector type!");
7954
7955 SDValue Result;
7956 SDNode *Node = Op.getNode();
7957 MVT EVT = VT.getVectorElementType();
7958
7959 unsigned NumElts = VT.getVectorNumElements();
7960 unsigned NewNumElts = WidenVT.getVectorNumElements();
7961 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
7962 assert(NewNumElts < 17);
7963
7964 // When widen is called, it is assumed that it is more efficient to use a
7965 // wide type. The default action is to widen to operation to a wider legal
7966 // vector type and then do the operation if it is legal by calling LegalizeOp
7967 // again. If there is no vector equivalent, we will unroll the operation, do
7968 // it, and rebuild the vector. If most of the operations are vectorizible to
7969 // the legal type, the resulting code will be more efficient. If this is not
7970 // the case, the resulting code will preform badly as we end up generating
7971 // code to pack/unpack the results. It is the function that calls widen
Mon P Wangf007a8b2008-11-06 05:31:54 +00007972 // that is responsible for seeing this doesn't happen.
Mon P Wang0c397192008-10-30 08:01:45 +00007973 switch (Node->getOpcode()) {
7974 default:
7975#ifndef NDEBUG
7976 Node->dump(&DAG);
7977#endif
7978 assert(0 && "Unexpected operation in WidenVectorOp!");
7979 break;
7980 case ISD::CopyFromReg:
Mon P Wang49292f12008-11-15 06:05:52 +00007981 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang0c397192008-10-30 08:01:45 +00007982 case ISD::Constant:
7983 case ISD::ConstantFP:
7984 // To build a vector of these elements, clients should call BuildVector
7985 // and with each element instead of creating a node with a vector type
7986 assert(0 && "Unexpected operation in WidenVectorOp!");
7987 case ISD::VAARG:
7988 // Variable Arguments with vector types doesn't make any sense to me
7989 assert(0 && "Unexpected operation in WidenVectorOp!");
7990 break;
Mon P Wang49292f12008-11-15 06:05:52 +00007991 case ISD::UNDEF:
7992 Result = DAG.getNode(ISD::UNDEF, WidenVT);
7993 break;
Mon P Wang0c397192008-10-30 08:01:45 +00007994 case ISD::BUILD_VECTOR: {
7995 // Build a vector with undefined for the new nodes
7996 SDValueVector NewOps(Node->op_begin(), Node->op_end());
7997 for (unsigned i = NumElts; i < NewNumElts; ++i) {
7998 NewOps.push_back(DAG.getNode(ISD::UNDEF,EVT));
7999 }
8000 Result = DAG.getNode(ISD::BUILD_VECTOR, WidenVT, &NewOps[0], NewOps.size());
8001 break;
8002 }
8003 case ISD::INSERT_VECTOR_ELT: {
8004 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8005 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, WidenVT, Tmp1,
8006 Node->getOperand(1), Node->getOperand(2));
8007 break;
8008 }
8009 case ISD::VECTOR_SHUFFLE: {
8010 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8011 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8012 // VECTOR_SHUFFLE 3rd operand must be a constant build vector that is
8013 // used as permutation array. We build the vector here instead of widening
8014 // because we don't want to legalize and have it turned to something else.
8015 SDValue PermOp = Node->getOperand(2);
8016 SDValueVector NewOps;
8017 MVT PVT = PermOp.getValueType().getVectorElementType();
8018 for (unsigned i = 0; i < NumElts; ++i) {
8019 if (PermOp.getOperand(i).getOpcode() == ISD::UNDEF) {
8020 NewOps.push_back(PermOp.getOperand(i));
8021 } else {
8022 unsigned Idx =
Mon P Wange1a0b2e2008-12-13 08:15:14 +00008023 cast<ConstantSDNode>(PermOp.getOperand(i))->getZExtValue();
Mon P Wang0c397192008-10-30 08:01:45 +00008024 if (Idx < NumElts) {
8025 NewOps.push_back(PermOp.getOperand(i));
8026 }
8027 else {
8028 NewOps.push_back(DAG.getConstant(Idx + NewNumElts - NumElts,
8029 PermOp.getOperand(i).getValueType()));
8030 }
8031 }
8032 }
8033 for (unsigned i = NumElts; i < NewNumElts; ++i) {
8034 NewOps.push_back(DAG.getNode(ISD::UNDEF,PVT));
8035 }
8036
8037 SDValue Tmp3 = DAG.getNode(ISD::BUILD_VECTOR,
8038 MVT::getVectorVT(PVT, NewOps.size()),
8039 &NewOps[0], NewOps.size());
8040
8041 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, WidenVT, Tmp1, Tmp2, Tmp3);
8042 break;
8043 }
8044 case ISD::LOAD: {
8045 // If the load widen returns true, we can use a single load for the
8046 // vector. Otherwise, it is returning a token factor for multiple
8047 // loads.
8048 SDValue TFOp;
8049 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8050 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8051 else
8052 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8053 break;
8054 }
8055
8056 case ISD::BIT_CONVERT: {
8057 SDValue Tmp1 = Node->getOperand(0);
8058 // Converts between two different types so we need to determine
8059 // the correct widen type for the input operand.
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008060 MVT InVT = Tmp1.getValueType();
8061 unsigned WidenSize = WidenVT.getSizeInBits();
8062 if (InVT.isVector()) {
8063 MVT InEltVT = InVT.getVectorElementType();
8064 unsigned InEltSize = InEltVT.getSizeInBits();
8065 assert(WidenSize % InEltSize == 0 &&
8066 "can not widen bit convert that are not multiple of element type");
8067 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8068 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8069 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
8070 Result = DAG.getNode(ISD::BIT_CONVERT, WidenVT, Tmp1);
8071 } else {
8072 // If the result size is a multiple of the input size, widen the input
8073 // and then convert.
8074 unsigned InSize = InVT.getSizeInBits();
8075 assert(WidenSize % InSize == 0 &&
8076 "can not widen bit convert that are not multiple of element type");
8077 unsigned NewNumElts = WidenSize / InSize;
8078 SmallVector<SDValue, 16> Ops(NewNumElts);
8079 SDValue UndefVal = DAG.getNode(ISD::UNDEF, InVT);
8080 Ops[0] = Tmp1;
8081 for (unsigned i = 1; i < NewNumElts; ++i)
8082 Ops[i] = UndefVal;
Mon P Wang0c397192008-10-30 08:01:45 +00008083
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008084 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
8085 Result = DAG.getNode(ISD::BUILD_VECTOR, NewInVT, &Ops[0], NewNumElts);
8086 Result = DAG.getNode(ISD::BIT_CONVERT, WidenVT, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008087 }
8088 break;
8089 }
8090
8091 case ISD::SINT_TO_FP:
8092 case ISD::UINT_TO_FP:
8093 case ISD::FP_TO_SINT:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008094 case ISD::FP_TO_UINT:
8095 case ISD::FP_ROUND: {
Mon P Wang0c397192008-10-30 08:01:45 +00008096 SDValue Tmp1 = Node->getOperand(0);
8097 // Converts between two different types so we need to determine
8098 // the correct widen type for the input operand.
8099 MVT TVT = Tmp1.getValueType();
8100 assert(TVT.isVector() && "can not widen non vector type");
8101 MVT TEVT = TVT.getVectorElementType();
8102 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8103 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8104 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
8105 Result = DAG.getNode(Node->getOpcode(), WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008106 break;
8107 }
8108
8109 case ISD::FP_EXTEND:
8110 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8111 case ISD::TRUNCATE:
8112 case ISD::SIGN_EXTEND:
8113 case ISD::ZERO_EXTEND:
8114 case ISD::ANY_EXTEND:
Mon P Wang0c397192008-10-30 08:01:45 +00008115 case ISD::SIGN_EXTEND_INREG:
8116 case ISD::FABS:
8117 case ISD::FNEG:
8118 case ISD::FSQRT:
8119 case ISD::FSIN:
Mon P Wang49292f12008-11-15 06:05:52 +00008120 case ISD::FCOS:
8121 case ISD::CTPOP:
8122 case ISD::CTTZ:
8123 case ISD::CTLZ: {
Mon P Wang0c397192008-10-30 08:01:45 +00008124 // Unary op widening
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008125 SDValue Tmp1;
Mon P Wang0c397192008-10-30 08:01:45 +00008126 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8127 assert(Tmp1.getValueType() == WidenVT);
8128 Result = DAG.getNode(Node->getOpcode(), WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008129 break;
8130 }
Mon P Wang77cdf302008-11-10 20:54:11 +00008131 case ISD::CONVERT_RNDSAT: {
8132 SDValue RndOp = Node->getOperand(3);
8133 SDValue SatOp = Node->getOperand(4);
Mon P Wang77cdf302008-11-10 20:54:11 +00008134 SDValue SrcOp = Node->getOperand(0);
8135
8136 // Converts between two different types so we need to determine
8137 // the correct widen type for the input operand.
8138 MVT SVT = SrcOp.getValueType();
8139 assert(SVT.isVector() && "can not widen non vector type");
8140 MVT SEVT = SVT.getVectorElementType();
8141 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8142
8143 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8144 assert(SrcOp.getValueType() == WidenVT);
8145 SDValue DTyOp = DAG.getValueType(WidenVT);
8146 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8147 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8148
8149 Result = DAG.getConvertRndSat(WidenVT, SrcOp, DTyOp, STyOp,
8150 RndOp, SatOp, CvtCode);
Mon P Wang77cdf302008-11-10 20:54:11 +00008151 break;
8152 }
Mon P Wang0c397192008-10-30 08:01:45 +00008153 case ISD::FPOW:
8154 case ISD::FPOWI:
8155 case ISD::ADD:
8156 case ISD::SUB:
8157 case ISD::MUL:
8158 case ISD::MULHS:
8159 case ISD::MULHU:
8160 case ISD::AND:
8161 case ISD::OR:
8162 case ISD::XOR:
8163 case ISD::FADD:
8164 case ISD::FSUB:
8165 case ISD::FMUL:
8166 case ISD::SDIV:
8167 case ISD::SREM:
8168 case ISD::FDIV:
8169 case ISD::FREM:
8170 case ISD::FCOPYSIGN:
8171 case ISD::UDIV:
8172 case ISD::UREM:
8173 case ISD::BSWAP: {
8174 // Binary op widening
Mon P Wang0c397192008-10-30 08:01:45 +00008175 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8176 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8177 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
8178 Result = DAG.getNode(Node->getOpcode(), WidenVT, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008179 break;
8180 }
8181
8182 case ISD::SHL:
8183 case ISD::SRA:
8184 case ISD::SRL: {
Mon P Wang0c397192008-10-30 08:01:45 +00008185 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8186 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangfb13f002008-12-02 07:35:08 +00008187 SDValue ShOp = Node->getOperand(1);
8188 MVT ShVT = ShOp.getValueType();
8189 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8190 WidenVT.getVectorNumElements());
8191 ShOp = WidenVectorOp(ShOp, NewShVT);
8192 assert(ShOp.getValueType() == NewShVT);
8193 Result = DAG.getNode(Node->getOpcode(), WidenVT, Tmp1, ShOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008194 break;
8195 }
Mon P Wangfb13f002008-12-02 07:35:08 +00008196
Mon P Wang0c397192008-10-30 08:01:45 +00008197 case ISD::EXTRACT_VECTOR_ELT: {
8198 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8199 assert(Tmp1.getValueType() == WidenVT);
8200 Result = DAG.getNode(Node->getOpcode(), EVT, Tmp1, Node->getOperand(1));
8201 break;
8202 }
8203 case ISD::CONCAT_VECTORS: {
8204 // We concurrently support only widen on a multiple of the incoming vector.
8205 // We could widen on a multiple of the incoming operand if necessary.
8206 unsigned NumConcat = NewNumElts / NumElts;
8207 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Mon P Wangfb13f002008-12-02 07:35:08 +00008208 SDValue UndefVal = DAG.getNode(ISD::UNDEF, VT);
Mon P Wang0c397192008-10-30 08:01:45 +00008209 SmallVector<SDValue, 8> MOps;
8210 MOps.push_back(Op);
8211 for (unsigned i = 1; i != NumConcat; ++i) {
8212 MOps.push_back(UndefVal);
8213 }
8214 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, WidenVT,
8215 &MOps[0], MOps.size()));
8216 break;
8217 }
8218 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang49292f12008-11-15 06:05:52 +00008219 SDValue Tmp1 = Node->getOperand(0);
8220 SDValue Idx = Node->getOperand(1);
8221 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8222 if (CIdx && CIdx->getZExtValue() == 0) {
8223 // Since we are access the start of the vector, the incoming
8224 // vector type might be the proper.
8225 MVT Tmp1VT = Tmp1.getValueType();
8226 if (Tmp1VT == WidenVT)
8227 return Tmp1;
8228 else {
8229 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8230 if (Tmp1VTNumElts < NewNumElts)
8231 Result = WidenVectorOp(Tmp1, WidenVT);
8232 else
8233 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, WidenVT, Tmp1, Idx);
8234 }
8235 } else if (NewNumElts % NumElts == 0) {
8236 // Widen the extracted subvector.
8237 unsigned NumConcat = NewNumElts / NumElts;
8238 SDValue UndefVal = DAG.getNode(ISD::UNDEF, VT);
8239 SmallVector<SDValue, 8> MOps;
8240 MOps.push_back(Op);
8241 for (unsigned i = 1; i != NumConcat; ++i) {
8242 MOps.push_back(UndefVal);
8243 }
8244 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, WidenVT,
8245 &MOps[0], MOps.size()));
8246 } else {
8247 assert(0 && "can not widen extract subvector");
8248 // This could be implemented using insert and build vector but I would
8249 // like to see when this happens.
8250 }
Mon P Wang0c397192008-10-30 08:01:45 +00008251 break;
8252 }
8253
8254 case ISD::SELECT: {
Mon P Wang0c397192008-10-30 08:01:45 +00008255 // Determine new condition widen type and widen
8256 SDValue Cond1 = Node->getOperand(0);
8257 MVT CondVT = Cond1.getValueType();
8258 assert(CondVT.isVector() && "can not widen non vector type");
8259 MVT CondEVT = CondVT.getVectorElementType();
8260 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8261 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8262 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8263
8264 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8265 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8266 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
8267 Result = DAG.getNode(Node->getOpcode(), WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008268 break;
8269 }
8270
8271 case ISD::SELECT_CC: {
Mon P Wang0c397192008-10-30 08:01:45 +00008272 // Determine new condition widen type and widen
8273 SDValue Cond1 = Node->getOperand(0);
8274 SDValue Cond2 = Node->getOperand(1);
8275 MVT CondVT = Cond1.getValueType();
8276 assert(CondVT.isVector() && "can not widen non vector type");
8277 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8278 MVT CondEVT = CondVT.getVectorElementType();
8279 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8280 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8281 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8282 assert(Cond1.getValueType() == CondWidenVT &&
8283 Cond2.getValueType() == CondWidenVT && "condition not widen");
8284
8285 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8286 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8287 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8288 "operands not widen");
8289 Result = DAG.getNode(Node->getOpcode(), WidenVT, Cond1, Cond2, Tmp1,
8290 Tmp2, Node->getOperand(4));
Mon P Wang0c397192008-10-30 08:01:45 +00008291 break;
Mon P Wang2eb13c32008-10-30 18:21:52 +00008292 }
8293 case ISD::VSETCC: {
8294 // Determine widen for the operand
8295 SDValue Tmp1 = Node->getOperand(0);
8296 MVT TmpVT = Tmp1.getValueType();
8297 assert(TmpVT.isVector() && "can not widen non vector type");
8298 MVT TmpEVT = TmpVT.getVectorElementType();
8299 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8300 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8301 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008302 Result = DAG.getNode(Node->getOpcode(), WidenVT, Tmp1, Tmp2,
Mon P Wang2eb13c32008-10-30 18:21:52 +00008303 Node->getOperand(2));
Mon P Wang0c397192008-10-30 08:01:45 +00008304 break;
8305 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008306 case ISD::ATOMIC_CMP_SWAP:
8307 case ISD::ATOMIC_LOAD_ADD:
8308 case ISD::ATOMIC_LOAD_SUB:
8309 case ISD::ATOMIC_LOAD_AND:
8310 case ISD::ATOMIC_LOAD_OR:
8311 case ISD::ATOMIC_LOAD_XOR:
8312 case ISD::ATOMIC_LOAD_NAND:
8313 case ISD::ATOMIC_LOAD_MIN:
8314 case ISD::ATOMIC_LOAD_MAX:
8315 case ISD::ATOMIC_LOAD_UMIN:
8316 case ISD::ATOMIC_LOAD_UMAX:
8317 case ISD::ATOMIC_SWAP: {
Mon P Wang0c397192008-10-30 08:01:45 +00008318 // For now, we assume that using vectors for these operations don't make
8319 // much sense so we just split it. We return an empty result
8320 SDValue X, Y;
8321 SplitVectorOp(Op, X, Y);
8322 return Result;
8323 break;
8324 }
8325
8326 } // end switch (Node->getOpcode())
8327
8328 assert(Result.getNode() && "Didn't set a result!");
8329 if (Result != Op)
8330 Result = LegalizeOp(Result);
8331
Mon P Wangf007a8b2008-11-06 05:31:54 +00008332 AddWidenedOperand(Op, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008333 return Result;
8334}
8335
8336// Utility function to find a legal vector type and its associated element
8337// type from a preferred width and whose vector type must be the same size
8338// as the VVT.
8339// TLI: Target lowering used to determine legal types
8340// Width: Preferred width of element type
8341// VVT: Vector value type whose size we must match.
8342// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0d137d72009-01-15 16:43:02 +00008343static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008344 MVT& EVT, MVT& VecEVT) {
8345 // We start with the preferred width, make it a power of 2 and see if
8346 // we can find a vector type of that width. If not, we reduce it by
8347 // another power of 2. If we have widen the type, a vector of bytes should
8348 // always be legal.
8349 assert(TLI.isTypeLegal(VVT));
8350 unsigned EWidth = Width + 1;
8351 do {
8352 assert(EWidth > 0);
8353 EWidth = (1 << Log2_32(EWidth-1));
8354 EVT = MVT::getIntegerVT(EWidth);
8355 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8356 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8357 } while (!TLI.isTypeLegal(VecEVT) ||
8358 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8359}
8360
8361SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8362 SDValue Chain,
8363 SDValue BasePtr,
8364 const Value *SV,
8365 int SVOffset,
8366 unsigned Alignment,
8367 bool isVolatile,
8368 unsigned LdWidth,
8369 MVT ResType) {
8370 // We assume that we have good rules to handle loading power of two loads so
8371 // we break down the operations to power of 2 loads. The strategy is to
8372 // load the largest power of 2 that we can easily transform to a legal vector
8373 // and then insert into that vector, and the cast the result into the legal
8374 // vector that we want. This avoids unnecessary stack converts.
8375 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8376 // the load is nonvolatile, we an use a wider load for the value.
8377 // Find a vector length we can load a large chunk
8378 MVT EVT, VecEVT;
8379 unsigned EVTWidth;
8380 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8381 EVTWidth = EVT.getSizeInBits();
8382
8383 SDValue LdOp = DAG.getLoad(EVT, Chain, BasePtr, SV, SVOffset,
8384 isVolatile, Alignment);
8385 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, VecEVT, LdOp);
8386 LdChain.push_back(LdOp.getValue(1));
8387
8388 // Check if we can load the element with one instruction
8389 if (LdWidth == EVTWidth) {
8390 return DAG.getNode(ISD::BIT_CONVERT, ResType, VecOp);
8391 }
8392
8393 // The vector element order is endianness dependent.
8394 unsigned Idx = 1;
8395 LdWidth -= EVTWidth;
8396 unsigned Offset = 0;
8397
8398 while (LdWidth > 0) {
8399 unsigned Increment = EVTWidth / 8;
8400 Offset += Increment;
8401 BasePtr = DAG.getNode(ISD::ADD, BasePtr.getValueType(), BasePtr,
8402 DAG.getIntPtrConstant(Increment));
8403
8404 if (LdWidth < EVTWidth) {
8405 // Our current type we are using is too large, use a smaller size by
8406 // using a smaller power of 2
8407 unsigned oEVTWidth = EVTWidth;
8408 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8409 EVTWidth = EVT.getSizeInBits();
8410 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008411 Idx = Idx * (oEVTWidth/EVTWidth);
Mon P Wang0c397192008-10-30 08:01:45 +00008412 VecOp = DAG.getNode(ISD::BIT_CONVERT, VecEVT, VecOp);
8413 }
8414
8415 SDValue LdOp = DAG.getLoad(EVT, Chain, BasePtr, SV,
8416 SVOffset+Offset, isVolatile,
8417 MinAlign(Alignment, Offset));
8418 LdChain.push_back(LdOp.getValue(1));
8419 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, VecEVT, VecOp, LdOp,
8420 DAG.getIntPtrConstant(Idx++));
8421
8422 LdWidth -= EVTWidth;
8423 }
8424
8425 return DAG.getNode(ISD::BIT_CONVERT, ResType, VecOp);
8426}
8427
8428bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8429 SDValue& TFOp,
8430 SDValue Op,
8431 MVT NVT) {
8432 // TODO: Add support for ConcatVec and the ability to load many vector
8433 // types (e.g., v4i8). This will not work when a vector register
8434 // to memory mapping is strange (e.g., vector elements are not
8435 // stored in some sequential order).
8436
8437 // It must be true that the widen vector type is bigger than where
8438 // we need to load from.
8439 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8440 MVT LdVT = LD->getMemoryVT();
8441 assert(LdVT.isVector() && NVT.isVector());
8442 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
8443
8444 // Load information
8445 SDValue Chain = LD->getChain();
8446 SDValue BasePtr = LD->getBasePtr();
8447 int SVOffset = LD->getSrcValueOffset();
8448 unsigned Alignment = LD->getAlignment();
8449 bool isVolatile = LD->isVolatile();
8450 const Value *SV = LD->getSrcValue();
8451 unsigned int LdWidth = LdVT.getSizeInBits();
8452
8453 // Load value as a large register
8454 SDValueVector LdChain;
8455 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
8456 Alignment, isVolatile, LdWidth, NVT);
8457
8458 if (LdChain.size() == 1) {
8459 TFOp = LdChain[0];
8460 return true;
8461 }
8462 else {
8463 TFOp=DAG.getNode(ISD::TokenFactor, MVT::Other, &LdChain[0], LdChain.size());
8464 return false;
8465 }
8466}
8467
8468
8469void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8470 SDValue Chain,
8471 SDValue BasePtr,
8472 const Value *SV,
8473 int SVOffset,
8474 unsigned Alignment,
8475 bool isVolatile,
Mon P Wang49292f12008-11-15 06:05:52 +00008476 SDValue ValOp,
Mon P Wang0c397192008-10-30 08:01:45 +00008477 unsigned StWidth) {
8478 // Breaks the stores into a series of power of 2 width stores. For any
8479 // width, we convert the vector to the vector of element size that we
8480 // want to store. This avoids requiring a stack convert.
8481
8482 // Find a width of the element type we can store with
8483 MVT VVT = ValOp.getValueType();
8484 MVT EVT, VecEVT;
8485 unsigned EVTWidth;
8486 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8487 EVTWidth = EVT.getSizeInBits();
8488
8489 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, VecEVT, ValOp);
8490 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EVT, VecOp,
Mon P Wange0b436a2008-11-06 22:52:21 +00008491 DAG.getIntPtrConstant(0));
Mon P Wang0c397192008-10-30 08:01:45 +00008492 SDValue StOp = DAG.getStore(Chain, EOp, BasePtr, SV, SVOffset,
8493 isVolatile, Alignment);
8494 StChain.push_back(StOp);
8495
8496 // Check if we are done
8497 if (StWidth == EVTWidth) {
8498 return;
8499 }
8500
8501 unsigned Idx = 1;
8502 StWidth -= EVTWidth;
8503 unsigned Offset = 0;
8504
8505 while (StWidth > 0) {
8506 unsigned Increment = EVTWidth / 8;
8507 Offset += Increment;
8508 BasePtr = DAG.getNode(ISD::ADD, BasePtr.getValueType(), BasePtr,
8509 DAG.getIntPtrConstant(Increment));
8510
8511 if (StWidth < EVTWidth) {
8512 // Our current type we are using is too large, use a smaller size by
8513 // using a smaller power of 2
8514 unsigned oEVTWidth = EVTWidth;
8515 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8516 EVTWidth = EVT.getSizeInBits();
8517 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008518 Idx = Idx * (oEVTWidth/EVTWidth);
Mon P Wang0c397192008-10-30 08:01:45 +00008519 VecOp = DAG.getNode(ISD::BIT_CONVERT, VecEVT, VecOp);
8520 }
8521
8522 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EVT, VecOp,
Mon P Wang49292f12008-11-15 06:05:52 +00008523 DAG.getIntPtrConstant(Idx++));
Mon P Wang0c397192008-10-30 08:01:45 +00008524 StChain.push_back(DAG.getStore(Chain, EOp, BasePtr, SV,
8525 SVOffset + Offset, isVolatile,
8526 MinAlign(Alignment, Offset)));
8527 StWidth -= EVTWidth;
8528 }
8529}
8530
8531
8532SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
8533 SDValue Chain,
8534 SDValue BasePtr) {
8535 // TODO: It might be cleaner if we can use SplitVector and have more legal
8536 // vector types that can be stored into memory (e.g., v4xi8 can
8537 // be stored as a word). This will not work when a vector register
8538 // to memory mapping is strange (e.g., vector elements are not
8539 // stored in some sequential order).
8540
8541 MVT StVT = ST->getMemoryVT();
8542 SDValue ValOp = ST->getValue();
8543
8544 // Check if we have widen this node with another value
8545 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8546 if (I != WidenNodes.end())
8547 ValOp = I->second;
8548
8549 MVT VVT = ValOp.getValueType();
8550
8551 // It must be true that we the widen vector type is bigger than where
8552 // we need to store.
8553 assert(StVT.isVector() && VVT.isVector());
Dan Gohmanf83c81a2009-01-28 03:10:52 +00008554 assert(StVT.bitsLT(VVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008555 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8556
8557 // Store value
8558 SDValueVector StChain;
8559 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8560 ST->getSrcValueOffset(), ST->getAlignment(),
8561 ST->isVolatile(), ValOp, StVT.getSizeInBits());
8562 if (StChain.size() == 1)
8563 return StChain[0];
8564 else
8565 return DAG.getNode(ISD::TokenFactor, MVT::Other,&StChain[0],StChain.size());
8566}
8567
8568
Chris Lattner3e928bb2005-01-07 07:47:09 +00008569// SelectionDAG::Legalize - This is the entry point for the file.
8570//
Duncan Sandsb6862bb2008-12-14 09:43:15 +00008571void SelectionDAG::Legalize(bool TypesNeedLegalizing) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00008572 /// run - This is the main entry point to this class.
8573 ///
Duncan Sandsb6862bb2008-12-14 09:43:15 +00008574 SelectionDAGLegalize(*this, TypesNeedLegalizing).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00008575}
8576