blob: 0e1f0b9687ca6143dedd73b48daf05d4f70e7709 [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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 Lattner3e928bb2005-01-07 07:47:09 +000018#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000019#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000020#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000021#include "llvm/Target/TargetOptions.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000022#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000023#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000024#include "llvm/DerivedTypes.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000025#include "llvm/Support/MathExtras.h"
26#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000027#include "llvm/Support/Compiler.h"
Chris Lattner79715142007-02-03 01:12:36 +000028#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000029#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000030#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng033e6812006-03-24 01:17:21 +000031#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000032using namespace llvm;
33
Chris Lattner5e46a192006-04-02 03:07:27 +000034#ifndef NDEBUG
35static cl::opt<bool>
36ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
37 cl::desc("Pop up a window to show dags before legalize"));
38#else
39static const bool ViewLegalizeDAGs = 0;
40#endif
41
Chris Lattner718071c2007-02-04 00:50:02 +000042namespace llvm {
43template<>
44struct DenseMapKeyInfo<SDOperand> {
45 static inline SDOperand getEmptyKey() { return SDOperand((SDNode*)-1, -1U); }
46 static inline SDOperand getTombstoneKey() { return SDOperand((SDNode*)-1, 0);}
47 static unsigned getHashValue(const SDOperand &Val) {
48 return DenseMapKeyInfo<void*>::getHashValue(Val.Val) + Val.ResNo;
49 }
50 static bool isPod() { return true; }
51};
52}
53
Chris Lattner3e928bb2005-01-07 07:47:09 +000054//===----------------------------------------------------------------------===//
55/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
56/// hacks on it until the target machine can handle it. This involves
57/// eliminating value sizes the machine cannot handle (promoting small sizes to
58/// large sizes or splitting up large values into small values) as well as
59/// eliminating operations the machine cannot handle.
60///
61/// This code also does a small amount of optimization and recognition of idioms
62/// as part of its processing. For example, if a target does not support a
63/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
64/// will attempt merge setcc and brc instructions into brcc's.
65///
66namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000067class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000068 TargetLowering &TLI;
69 SelectionDAG &DAG;
70
Chris Lattner6831a812006-02-13 09:18:02 +000071 // Libcall insertion helpers.
72
73 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
74 /// legalized. We use this to ensure that calls are properly serialized
75 /// against each other, including inserted libcalls.
76 SDOperand LastCALLSEQ_END;
77
78 /// IsLegalizingCall - This member is used *only* for purposes of providing
79 /// helpful assertions that a libcall isn't created while another call is
80 /// being legalized (which could lead to non-serialized call sequences).
81 bool IsLegalizingCall;
82
Chris Lattner3e928bb2005-01-07 07:47:09 +000083 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000084 Legal, // The target natively supports this operation.
85 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000086 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000087 };
Chris Lattner6831a812006-02-13 09:18:02 +000088
Chris Lattner3e928bb2005-01-07 07:47:09 +000089 /// ValueTypeActions - This is a bitvector that contains two bits for each
90 /// value type, where the two bits correspond to the LegalizeAction enum.
91 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000092 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000093
Chris Lattner3e928bb2005-01-07 07:47:09 +000094 /// LegalizedNodes - For nodes that are of legal width, and that have more
95 /// than one use, this map indicates what regularized operand to use. This
96 /// allows us to avoid legalizing the same thing more than once.
Chris Lattner718071c2007-02-04 00:50:02 +000097 DenseMap<SDOperand, SDOperand> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000098
Chris Lattner03c85462005-01-15 05:21:40 +000099 /// PromotedNodes - For nodes that are below legal width, and that have more
100 /// than one use, this map indicates what promoted value to use. This allows
101 /// us to avoid promoting the same thing more than once.
Chris Lattner40030bf2007-02-04 01:17:38 +0000102 DenseMap<SDOperand, SDOperand> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +0000103
Chris Lattnerc7029802006-03-18 01:44:44 +0000104 /// ExpandedNodes - For nodes that need to be expanded this map indicates
105 /// which which operands are the expanded version of the input. This allows
106 /// us to avoid expanding the same node more than once.
Chris Lattner40030bf2007-02-04 01:17:38 +0000107 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000108
Chris Lattnerc7029802006-03-18 01:44:44 +0000109 /// SplitNodes - For vector nodes that need to be split, this map indicates
110 /// which which operands are the split version of the input. This allows us
111 /// to avoid splitting the same node more than once.
112 std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
113
114 /// PackedNodes - For nodes that need to be packed from MVT::Vector types to
Reid Spencerac9dcb92007-02-15 03:39:18 +0000115 /// concrete vector types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000116 /// processed to the result.
117 std::map<SDOperand, SDOperand> PackedNodes;
118
Chris Lattner8afc48e2005-01-07 22:28:47 +0000119 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000120 LegalizedNodes.insert(std::make_pair(From, To));
121 // If someone requests legalization of the new node, return itself.
122 if (From != To)
123 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000124 }
Chris Lattner03c85462005-01-15 05:21:40 +0000125 void AddPromotedOperand(SDOperand From, SDOperand To) {
Chris Lattner40030bf2007-02-04 01:17:38 +0000126 bool isNew = PromotedNodes.insert(std::make_pair(From, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000127 assert(isNew && "Got into the map somehow?");
Chris Lattner69a889e2005-12-20 00:53:54 +0000128 // If someone requests legalization of the new node, return itself.
129 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000130 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000131
Chris Lattner3e928bb2005-01-07 07:47:09 +0000132public:
133
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000134 SelectionDAGLegalize(SelectionDAG &DAG);
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.
139 LegalizeAction getTypeAction(MVT::ValueType 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 ///
145 bool isTypeLegal(MVT::ValueType VT) const {
146 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:
Chris Lattnerc7029802006-03-18 01:44:44 +0000152 /// HandleOp - Legalize, Promote, Expand or Pack the specified operand as
153 /// appropriate for its type.
154 void HandleOp(SDOperand Op);
155
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.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000159 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000160
161 /// PromoteOp - Given an operation that produces a value in an invalid type,
162 /// promote it to compute the value into a larger type. The produced value
163 /// will have the correct bits for the low portion of the register, but no
164 /// guarantee is made about the top bits: it may be zero, sign-extended, or
165 /// garbage.
Chris Lattner03c85462005-01-15 05:21:40 +0000166 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000167
Chris Lattnerc7029802006-03-18 01:44:44 +0000168 /// ExpandOp - Expand the specified SDOperand into its two component pieces
169 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
170 /// the LegalizeNodes map is filled in for any results that are not expanded,
171 /// the ExpandedNodes map is filled in for any results that are expanded, and
172 /// the Lo/Hi values are returned. This applies to integer types and Vector
173 /// types.
174 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
175
176 /// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
177 /// two smaller values of MVT::Vector type.
178 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
179
180 /// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
181 /// equivalent operation that returns a packed value (e.g. MVT::V4F32). When
182 /// this is called, we know that PackedVT is the right type for the result and
183 /// we know that this type is legal for the target.
184 SDOperand PackVectorOp(SDOperand O, MVT::ValueType PackedVT);
185
Chris Lattner4352cc92006-04-04 17:23:26 +0000186 /// isShuffleLegal - Return true if a vector shuffle is legal with the
187 /// specified mask and type. Targets can specify exactly which masks they
188 /// support and the code generator is tasked with not creating illegal masks.
189 ///
190 /// Note that this will also return true for shuffles that are promoted to a
191 /// different type.
192 ///
193 /// If this is a legal shuffle, this method returns the (possibly promoted)
194 /// build_vector Mask. If it's not a legal shuffle, it returns null.
195 SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const;
196
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000197 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000198 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000199
Nate Begeman750ac1b2006-02-01 07:19:44 +0000200 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
201
Chris Lattnerce872152006-03-19 06:31:19 +0000202 SDOperand CreateStackTemporary(MVT::ValueType VT);
203
Reid Spencer47857812006-12-31 05:55:36 +0000204 SDOperand ExpandLibCall(const char *Name, SDNode *Node, bool isSigned,
Chris Lattner77e77a62005-01-21 06:05:23 +0000205 SDOperand &Hi);
206 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
207 SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000208
Chris Lattner35481892005-12-23 00:16:34 +0000209 SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
Chris Lattnerce872152006-03-19 06:31:19 +0000210 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000211 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskey6269ed12005-08-17 00:39:29 +0000212 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
213 SDOperand LegalOp,
214 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000215 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
216 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000217 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
218 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000219
Chris Lattner456a93a2006-01-28 07:39:30 +0000220 SDOperand ExpandBSWAP(SDOperand Op);
221 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000222 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
223 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000224 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
225 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000226
Chris Lattner15972212006-03-31 17:55:51 +0000227 SDOperand LowerVEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000228 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner15972212006-03-31 17:55:51 +0000229
Chris Lattner3e928bb2005-01-07 07:47:09 +0000230 SDOperand getIntPtrConstant(uint64_t Val) {
231 return DAG.getConstant(Val, TLI.getPointerTy());
232 }
233};
234}
235
Chris Lattner4352cc92006-04-04 17:23:26 +0000236/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
237/// specified mask and type. Targets can specify exactly which masks they
238/// support and the code generator is tasked with not creating illegal masks.
239///
240/// Note that this will also return true for shuffles that are promoted to a
241/// different type.
242SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT,
243 SDOperand Mask) const {
244 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
245 default: return 0;
246 case TargetLowering::Legal:
247 case TargetLowering::Custom:
248 break;
249 case TargetLowering::Promote: {
250 // If this is promoted to a different type, convert the shuffle mask and
251 // ask if it is legal in the promoted type!
252 MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
253
254 // If we changed # elements, change the shuffle mask.
255 unsigned NumEltsGrowth =
256 MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
257 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
258 if (NumEltsGrowth > 1) {
259 // Renumber the elements.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000260 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000261 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
262 SDOperand InOp = Mask.getOperand(i);
263 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
264 if (InOp.getOpcode() == ISD::UNDEF)
265 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
266 else {
267 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
268 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
269 }
270 }
271 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000272 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000273 }
274 VT = NVT;
275 break;
276 }
277 }
278 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
279}
280
Chris Lattnerc7029802006-03-18 01:44:44 +0000281/// getScalarizedOpcode - Return the scalar opcode that corresponds to the
282/// specified vector opcode.
Chris Lattnerb89175f2005-11-19 05:51:46 +0000283static unsigned getScalarizedOpcode(unsigned VecOp, MVT::ValueType VT) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000284 switch (VecOp) {
285 default: assert(0 && "Don't know how to scalarize this opcode!");
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000286 case ISD::VADD: return MVT::isInteger(VT) ? ISD::ADD : ISD::FADD;
287 case ISD::VSUB: return MVT::isInteger(VT) ? ISD::SUB : ISD::FSUB;
288 case ISD::VMUL: return MVT::isInteger(VT) ? ISD::MUL : ISD::FMUL;
289 case ISD::VSDIV: return MVT::isInteger(VT) ? ISD::SDIV: ISD::FDIV;
290 case ISD::VUDIV: return MVT::isInteger(VT) ? ISD::UDIV: ISD::FDIV;
291 case ISD::VAND: return MVT::isInteger(VT) ? ISD::AND : 0;
292 case ISD::VOR: return MVT::isInteger(VT) ? ISD::OR : 0;
293 case ISD::VXOR: return MVT::isInteger(VT) ? ISD::XOR : 0;
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000294 }
295}
Chris Lattner3e928bb2005-01-07 07:47:09 +0000296
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000297SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
298 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
299 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000300 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000301 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000302}
303
Chris Lattner32fca002005-10-06 01:20:27 +0000304/// ComputeTopDownOrdering - Add the specified node to the Order list if it has
305/// not been visited yet and if all of its operands have already been visited.
Chris Lattner0ed44172007-02-04 01:20:02 +0000306static void ComputeTopDownOrdering(SDNode *N, SmallVector<SDNode*, 64> &Order,
Chris Lattner79715142007-02-03 01:12:36 +0000307 DenseMap<SDNode*, unsigned> &Visited) {
Chris Lattner32fca002005-10-06 01:20:27 +0000308 if (++Visited[N] != N->getNumOperands())
309 return; // Haven't visited all operands yet
310
311 Order.push_back(N);
312
313 if (N->hasOneUse()) { // Tail recurse in common case.
314 ComputeTopDownOrdering(*N->use_begin(), Order, Visited);
315 return;
316 }
317
318 // Now that we have N in, add anything that uses it if all of their operands
319 // are now done.
Chris Lattner32fca002005-10-06 01:20:27 +0000320 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end(); UI != E;++UI)
321 ComputeTopDownOrdering(*UI, Order, Visited);
322}
323
Chris Lattner1618beb2005-07-29 00:11:56 +0000324
Chris Lattner3e928bb2005-01-07 07:47:09 +0000325void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000326 LastCALLSEQ_END = DAG.getEntryNode();
327 IsLegalizingCall = false;
328
Chris Lattnerab510a72005-10-02 17:49:46 +0000329 // The legalize process is inherently a bottom-up recursive process (users
330 // legalize their uses before themselves). Given infinite stack space, we
331 // could just start legalizing on the root and traverse the whole graph. In
332 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000333 // blocks. To avoid this problem, compute an ordering of the nodes where each
334 // node is only legalized after all of its operands are legalized.
Chris Lattner79715142007-02-03 01:12:36 +0000335 DenseMap<SDNode*, unsigned> Visited;
Chris Lattner0ed44172007-02-04 01:20:02 +0000336 SmallVector<SDNode*, 64> Order;
Chris Lattnerab510a72005-10-02 17:49:46 +0000337
Chris Lattner32fca002005-10-06 01:20:27 +0000338 // Compute ordering from all of the leaves in the graphs, those (like the
339 // entry node) that have no operands.
340 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
341 E = DAG.allnodes_end(); I != E; ++I) {
Chris Lattnerde202b32005-11-09 23:47:37 +0000342 if (I->getNumOperands() == 0) {
343 Visited[I] = 0 - 1U;
344 ComputeTopDownOrdering(I, Order, Visited);
Chris Lattnerab510a72005-10-02 17:49:46 +0000345 }
Chris Lattnerab510a72005-10-02 17:49:46 +0000346 }
347
Chris Lattnerde202b32005-11-09 23:47:37 +0000348 assert(Order.size() == Visited.size() &&
349 Order.size() ==
350 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
Chris Lattner32fca002005-10-06 01:20:27 +0000351 "Error: DAG is cyclic!");
352 Visited.clear();
Chris Lattnerab510a72005-10-02 17:49:46 +0000353
Chris Lattnerc7029802006-03-18 01:44:44 +0000354 for (unsigned i = 0, e = Order.size(); i != e; ++i)
355 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000356
357 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000358 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000359 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
360 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000361
362 ExpandedNodes.clear();
363 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000364 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000365 SplitNodes.clear();
366 PackedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000367
368 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000369 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000370}
371
Chris Lattner6831a812006-02-13 09:18:02 +0000372
373/// FindCallEndFromCallStart - Given a chained node that is part of a call
374/// sequence, find the CALLSEQ_END node that terminates the call sequence.
375static SDNode *FindCallEndFromCallStart(SDNode *Node) {
376 if (Node->getOpcode() == ISD::CALLSEQ_END)
377 return Node;
378 if (Node->use_empty())
379 return 0; // No CallSeqEnd
380
381 // The chain is usually at the end.
382 SDOperand TheChain(Node, Node->getNumValues()-1);
383 if (TheChain.getValueType() != MVT::Other) {
384 // Sometimes it's at the beginning.
385 TheChain = SDOperand(Node, 0);
386 if (TheChain.getValueType() != MVT::Other) {
387 // Otherwise, hunt for it.
388 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
389 if (Node->getValueType(i) == MVT::Other) {
390 TheChain = SDOperand(Node, i);
391 break;
392 }
393
394 // Otherwise, we walked into a node without a chain.
395 if (TheChain.getValueType() != MVT::Other)
396 return 0;
397 }
398 }
399
400 for (SDNode::use_iterator UI = Node->use_begin(),
401 E = Node->use_end(); UI != E; ++UI) {
402
403 // Make sure to only follow users of our token chain.
404 SDNode *User = *UI;
405 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
406 if (User->getOperand(i) == TheChain)
407 if (SDNode *Result = FindCallEndFromCallStart(User))
408 return Result;
409 }
410 return 0;
411}
412
413/// FindCallStartFromCallEnd - Given a chained node that is part of a call
414/// sequence, find the CALLSEQ_START node that initiates the call sequence.
415static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
416 assert(Node && "Didn't find callseq_start for a call??");
417 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
418
419 assert(Node->getOperand(0).getValueType() == MVT::Other &&
420 "Node doesn't have a token chain argument!");
421 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
422}
423
424/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
425/// see if any uses can reach Dest. If no dest operands can get to dest,
426/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000427///
428/// Keep track of the nodes we fine that actually do lead to Dest in
429/// NodesLeadingTo. This avoids retraversing them exponential number of times.
430///
431bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000432 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000433 if (N == Dest) return true; // N certainly leads to Dest :)
434
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000435 // If we've already processed this node and it does lead to Dest, there is no
436 // need to reprocess it.
437 if (NodesLeadingTo.count(N)) return true;
438
Chris Lattner6831a812006-02-13 09:18:02 +0000439 // If the first result of this node has been already legalized, then it cannot
440 // reach N.
441 switch (getTypeAction(N->getValueType(0))) {
442 case Legal:
443 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
444 break;
445 case Promote:
446 if (PromotedNodes.count(SDOperand(N, 0))) return false;
447 break;
448 case Expand:
449 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
450 break;
451 }
452
453 // Okay, this node has not already been legalized. Check and legalize all
454 // operands. If none lead to Dest, then we can legalize this node.
455 bool OperandsLeadToDest = false;
456 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
457 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000458 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000459
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000460 if (OperandsLeadToDest) {
461 NodesLeadingTo.insert(N);
462 return true;
463 }
Chris Lattner6831a812006-02-13 09:18:02 +0000464
465 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000466 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000467 return false;
468}
469
Chris Lattnerc7029802006-03-18 01:44:44 +0000470/// HandleOp - Legalize, Promote, Expand or Pack the specified operand as
471/// appropriate for its type.
472void SelectionDAGLegalize::HandleOp(SDOperand Op) {
473 switch (getTypeAction(Op.getValueType())) {
474 default: assert(0 && "Bad type action!");
475 case Legal: LegalizeOp(Op); break;
476 case Promote: PromoteOp(Op); break;
477 case Expand:
478 if (Op.getValueType() != MVT::Vector) {
479 SDOperand X, Y;
480 ExpandOp(Op, X, Y);
481 } else {
482 SDNode *N = Op.Val;
483 unsigned NumOps = N->getNumOperands();
484 unsigned NumElements =
485 cast<ConstantSDNode>(N->getOperand(NumOps-2))->getValue();
486 MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(NumOps-1))->getVT();
487 MVT::ValueType PackedVT = getVectorType(EVT, NumElements);
488 if (PackedVT != MVT::Other && TLI.isTypeLegal(PackedVT)) {
489 // In the common case, this is a legal vector type, convert it to the
490 // packed operation and type now.
491 PackVectorOp(Op, PackedVT);
492 } else if (NumElements == 1) {
493 // Otherwise, if this is a single element vector, convert it to a
494 // scalar operation.
495 PackVectorOp(Op, EVT);
496 } else {
497 // Otherwise, this is a multiple element vector that isn't supported.
498 // Split it in half and legalize both parts.
499 SDOperand X, Y;
Chris Lattner4794a6b2006-03-19 00:07:49 +0000500 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000501 }
502 }
503 break;
504 }
505}
Chris Lattner6831a812006-02-13 09:18:02 +0000506
Evan Cheng9f877882006-12-13 20:57:08 +0000507/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
508/// a load from the constant pool.
509static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000510 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000511 bool Extend = false;
512
513 // If a FP immediate is precise when represented as a float and if the
514 // target can do an extending load from float to double, we put it into
515 // the constant pool as a float, even if it's is statically typed as a
516 // double.
517 MVT::ValueType VT = CFP->getValueType(0);
518 bool isDouble = VT == MVT::f64;
519 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
520 Type::FloatTy, CFP->getValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000521 if (!UseCP) {
Evan Cheng279101e2006-12-12 22:19:28 +0000522 double Val = LLVMC->getValue();
523 return isDouble
524 ? DAG.getConstant(DoubleToBits(Val), MVT::i64)
525 : DAG.getConstant(FloatToBits(Val), MVT::i32);
526 }
527
Evan Cheng00495212006-12-12 21:32:44 +0000528 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
529 // Only do this if the target has a native EXTLOAD instruction from f32.
530 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
531 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC,Type::FloatTy));
532 VT = MVT::f32;
533 Extend = true;
534 }
535
536 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
537 if (Extend) {
538 return DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
539 CPIdx, NULL, 0, MVT::f32);
540 } else {
541 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
542 }
543}
544
Chris Lattner6831a812006-02-13 09:18:02 +0000545
Evan Cheng912095b2007-01-04 21:56:39 +0000546/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
547/// operations.
548static
549SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT::ValueType NVT,
550 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng068c5f42007-01-05 21:31:51 +0000551 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng912095b2007-01-04 21:56:39 +0000552 MVT::ValueType SrcVT = Node->getOperand(1).getValueType();
553 MVT::ValueType SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000554
Evan Cheng912095b2007-01-04 21:56:39 +0000555 // First get the sign bit of second operand.
Evan Cheng068c5f42007-01-05 21:31:51 +0000556 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000557 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
558 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000559 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000560 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000561 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000562 // Shift right or sign-extend it if the two operands have different types.
563 int SizeDiff = MVT::getSizeInBits(SrcNVT) - MVT::getSizeInBits(NVT);
564 if (SizeDiff > 0) {
565 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
566 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
567 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
568 } else if (SizeDiff < 0)
569 SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
Evan Cheng068c5f42007-01-05 21:31:51 +0000570
571 // Clear the sign bit of first operand.
572 SDOperand Mask2 = (VT == MVT::f64)
573 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
574 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
575 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000576 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000577 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
578
579 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000580 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
581 return Result;
582}
583
584
Chris Lattnerc7029802006-03-18 01:44:44 +0000585/// LegalizeOp - We know that the specified value has a legal type.
586/// Recursively ensure that the operands have legal types, then return the
587/// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000588SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000589 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000590 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000591 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000592
Chris Lattner3e928bb2005-01-07 07:47:09 +0000593 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000594 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000595 if (Node->getNumValues() > 1) {
596 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000597 if (getTypeAction(Node->getValueType(i)) != Legal) {
598 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000599 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000600 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000601 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000602 }
603 }
604
Chris Lattner45982da2005-05-12 16:53:42 +0000605 // Note that LegalizeOp may be reentered even from single-use nodes, which
606 // means that we always must cache transformed nodes.
Chris Lattner718071c2007-02-04 00:50:02 +0000607 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000608 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000609
Nate Begeman9373a812005-08-10 20:51:12 +0000610 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000611 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000612 bool isCustom = false;
613
Chris Lattner3e928bb2005-01-07 07:47:09 +0000614 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000615 case ISD::FrameIndex:
616 case ISD::EntryToken:
617 case ISD::Register:
618 case ISD::BasicBlock:
619 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000620 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000621 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000622 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000623 case ISD::TargetConstantPool:
624 case ISD::TargetGlobalAddress:
625 case ISD::TargetExternalSymbol:
626 case ISD::VALUETYPE:
627 case ISD::SRCVALUE:
628 case ISD::STRING:
629 case ISD::CONDCODE:
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +0000630 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner948c1b12006-01-28 08:31:04 +0000631 // Primitives must all be legal.
632 assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
633 "This must be legal!");
634 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000635 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000636 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
637 // If this is a target node, legalize it by legalizing the operands then
638 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000639 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000640 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000641 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000642
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000643 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000644
645 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
646 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
647 return Result.getValue(Op.ResNo);
648 }
649 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000650#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +0000651 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000652#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000653 assert(0 && "Do not know how to legalize this operator!");
654 abort();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000655 case ISD::GlobalAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000656 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000657 case ISD::ConstantPool:
658 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000659 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
660 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000661 case TargetLowering::Custom:
662 Tmp1 = TLI.LowerOperation(Op, DAG);
663 if (Tmp1.Val) Result = Tmp1;
664 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000665 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000666 break;
667 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000668 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000669 case ISD::FRAMEADDR:
670 case ISD::RETURNADDR:
671 // The only option for these nodes is to custom lower them. If the target
672 // does not custom lower them, then return zero.
673 Tmp1 = TLI.LowerOperation(Op, DAG);
674 if (Tmp1.Val)
675 Result = Tmp1;
676 else
677 Result = DAG.getConstant(0, TLI.getPointerTy());
678 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000679 case ISD::EXCEPTIONADDR: {
680 Tmp1 = LegalizeOp(Node->getOperand(0));
681 MVT::ValueType VT = Node->getValueType(0);
682 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
683 default: assert(0 && "This action is not supported yet!");
684 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000685 unsigned Reg = TLI.getExceptionAddressRegister();
Jim Laskey2bc210d2007-02-22 15:37:19 +0000686 Result = DAG.getCopyFromReg(Tmp1, Reg, VT).getValue(Op.ResNo);
687 }
688 break;
689 case TargetLowering::Custom:
690 Result = TLI.LowerOperation(Op, DAG);
691 if (Result.Val) break;
692 // Fall Thru
693 case TargetLowering::Legal:
694 Result = DAG.getNode(ISD::MERGE_VALUES, VT, DAG.getConstant(0, VT), Tmp1).
695 getValue(Op.ResNo);
696 break;
697 }
698 }
699 break;
Jim Laskey8782d482007-02-28 20:43:58 +0000700 case ISD::EHSELECTION: {
701 Tmp1 = LegalizeOp(Node->getOperand(0));
702 Tmp2 = LegalizeOp(Node->getOperand(1));
703 MVT::ValueType VT = Node->getValueType(0);
704 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
705 default: assert(0 && "This action is not supported yet!");
706 case TargetLowering::Expand: {
707 unsigned Reg = TLI.getExceptionSelectorRegister();
708 Result = DAG.getCopyFromReg(Tmp2, Reg, VT).getValue(Op.ResNo);
709 }
710 break;
711 case TargetLowering::Custom:
712 Result = TLI.LowerOperation(Op, DAG);
713 if (Result.Val) break;
714 // Fall Thru
715 case TargetLowering::Legal:
716 Result = DAG.getNode(ISD::MERGE_VALUES, VT, DAG.getConstant(0, VT), Tmp2).
717 getValue(Op.ResNo);
718 break;
719 }
720 }
721 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000722 case ISD::AssertSext:
723 case ISD::AssertZext:
724 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000725 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000726 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000727 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000728 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000729 Result = Node->getOperand(Op.ResNo);
730 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000731 case ISD::CopyFromReg:
732 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000733 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000734 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000735 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000736 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000737 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000738 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000739 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000740 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
741 } else {
742 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
743 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000744 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
745 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000746 // Since CopyFromReg produces two values, make sure to remember that we
747 // legalized both of them.
748 AddLegalizedOperand(Op.getValue(0), Result);
749 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
750 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000751 case ISD::UNDEF: {
752 MVT::ValueType VT = Op.getValueType();
753 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000754 default: assert(0 && "This action is not supported yet!");
755 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000756 if (MVT::isInteger(VT))
757 Result = DAG.getConstant(0, VT);
758 else if (MVT::isFloatingPoint(VT))
759 Result = DAG.getConstantFP(0, VT);
760 else
761 assert(0 && "Unknown value type!");
762 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000763 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000764 break;
765 }
766 break;
767 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000768
Chris Lattner48b61a72006-03-28 00:40:33 +0000769 case ISD::INTRINSIC_W_CHAIN:
770 case ISD::INTRINSIC_WO_CHAIN:
771 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000772 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000773 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
774 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000775 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +0000776
777 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +0000778 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +0000779 TargetLowering::Custom) {
780 Tmp3 = TLI.LowerOperation(Result, DAG);
781 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +0000782 }
783
784 if (Result.Val->getNumValues() == 1) break;
785
786 // Must have return value and chain result.
787 assert(Result.Val->getNumValues() == 2 &&
788 "Cannot return more than two values!");
789
790 // Since loads produce two values, make sure to remember that we
791 // legalized both of them.
792 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
793 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
794 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000795 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000796
797 case ISD::LOCATION:
798 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
799 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
800
801 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
802 case TargetLowering::Promote:
803 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000804 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000805 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000806 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Jim Laskey1ee29252007-01-26 14:34:52 +0000807 bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000808
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000809 if (MMI && (useDEBUG_LOC || useLABEL)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000810 const std::string &FName =
811 cast<StringSDNode>(Node->getOperand(3))->getValue();
812 const std::string &DirName =
813 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000814 unsigned SrcFile = MMI->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000815
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000816 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +0000817 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +0000818 SDOperand LineOp = Node->getOperand(1);
819 SDOperand ColOp = Node->getOperand(2);
820
821 if (useDEBUG_LOC) {
822 Ops.push_back(LineOp); // line #
823 Ops.push_back(ColOp); // col #
824 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000825 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000826 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +0000827 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
828 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000829 unsigned ID = MMI->RecordLabel(Line, Col, SrcFile);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000830 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Jim Laskey1ee29252007-01-26 14:34:52 +0000831 Result = DAG.getNode(ISD::LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000832 }
Jim Laskeye81aecb2005-12-21 20:51:37 +0000833 } else {
834 Result = Tmp1; // chain
835 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000836 break;
Chris Lattnere7736732005-12-18 23:54:29 +0000837 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000838 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +0000839 if (Tmp1 != Node->getOperand(0) ||
840 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000841 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +0000842 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +0000843 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
844 Ops.push_back(Node->getOperand(1)); // line # must be legal.
845 Ops.push_back(Node->getOperand(2)); // col # must be legal.
846 } else {
847 // Otherwise promote them.
848 Ops.push_back(PromoteOp(Node->getOperand(1)));
849 Ops.push_back(PromoteOp(Node->getOperand(2)));
850 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000851 Ops.push_back(Node->getOperand(3)); // filename must be legal.
852 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000853 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +0000854 }
855 break;
856 }
857 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000858
859 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +0000860 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000861 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000862 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +0000863 case TargetLowering::Legal:
864 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
865 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
866 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
867 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000868 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000869 break;
870 }
871 break;
872
Jim Laskey1ee29252007-01-26 14:34:52 +0000873 case ISD::LABEL:
874 assert(Node->getNumOperands() == 2 && "Invalid LABEL node!");
875 switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000876 default: assert(0 && "This action is not supported yet!");
877 case TargetLowering::Legal:
878 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
879 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000880 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000881 break;
Chris Lattnera9569f12007-03-03 19:21:38 +0000882 case TargetLowering::Expand:
883 Result = LegalizeOp(Node->getOperand(0));
884 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000885 }
Nate Begeman551bf3f2006-02-17 05:43:56 +0000886 break;
Chris Lattner36ce6912005-11-29 06:21:05 +0000887
Chris Lattner3e928bb2005-01-07 07:47:09 +0000888 case ISD::Constant:
889 // We know we don't need to expand constants here, constants only have one
890 // value and we check that it is fine above.
891
892 // FIXME: Maybe we should handle things like targets that don't support full
893 // 32-bit immediates?
894 break;
895 case ISD::ConstantFP: {
896 // Spill FP immediates to the constant pool if the target cannot directly
897 // codegen them. Targets often have some immediate values that can be
898 // efficiently generated into an FP register without a load. We explicitly
899 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000900 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
901
902 // Check to see if this FP immediate is already legal.
903 bool isLegal = false;
904 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
905 E = TLI.legal_fpimm_end(); I != E; ++I)
906 if (CFP->isExactlyValue(*I)) {
907 isLegal = true;
908 break;
909 }
910
Chris Lattner3181a772006-01-29 06:26:56 +0000911 // If this is a legal constant, turn it into a TargetConstantFP node.
912 if (isLegal) {
913 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
914 break;
915 }
916
917 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
918 default: assert(0 && "This action is not supported yet!");
919 case TargetLowering::Custom:
920 Tmp3 = TLI.LowerOperation(Result, DAG);
921 if (Tmp3.Val) {
922 Result = Tmp3;
923 break;
924 }
925 // FALLTHROUGH
926 case TargetLowering::Expand:
Evan Cheng279101e2006-12-12 22:19:28 +0000927 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000928 }
929 break;
930 }
Chris Lattner040c11c2005-11-09 18:48:57 +0000931 case ISD::TokenFactor:
932 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000933 Tmp1 = LegalizeOp(Node->getOperand(0));
934 Tmp2 = LegalizeOp(Node->getOperand(1));
935 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
936 } else if (Node->getNumOperands() == 3) {
937 Tmp1 = LegalizeOp(Node->getOperand(0));
938 Tmp2 = LegalizeOp(Node->getOperand(1));
939 Tmp3 = LegalizeOp(Node->getOperand(2));
940 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +0000941 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000942 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +0000943 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000944 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
945 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000946 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +0000947 }
Chris Lattnera385e9b2005-01-13 17:59:25 +0000948 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000949
950 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000951 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +0000952 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +0000953 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
954 assert(Tmp3.Val && "Target didn't custom lower this node!");
955 assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
956 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +0000957
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000958 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +0000959 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +0000960 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
961 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +0000962 if (Op.ResNo == i)
963 Tmp2 = Tmp1;
964 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
965 }
966 return Tmp2;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000967
Chris Lattnerb2827b02006-03-19 00:52:58 +0000968 case ISD::BUILD_VECTOR:
969 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +0000970 default: assert(0 && "This action is not supported yet!");
971 case TargetLowering::Custom:
972 Tmp3 = TLI.LowerOperation(Result, DAG);
973 if (Tmp3.Val) {
974 Result = Tmp3;
975 break;
976 }
977 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +0000978 case TargetLowering::Expand:
979 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +0000980 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +0000981 }
Chris Lattner2332b9f2006-03-19 01:17:20 +0000982 break;
983 case ISD::INSERT_VECTOR_ELT:
984 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
985 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
986 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
987 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
988
989 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
990 Node->getValueType(0))) {
991 default: assert(0 && "This action is not supported yet!");
992 case TargetLowering::Legal:
993 break;
994 case TargetLowering::Custom:
995 Tmp3 = TLI.LowerOperation(Result, DAG);
996 if (Tmp3.Val) {
997 Result = Tmp3;
998 break;
999 }
1000 // FALLTHROUGH
1001 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001002 // If the insert index is a constant, codegen this as a scalar_to_vector,
1003 // then a shuffle that inserts it into the right position in the vector.
1004 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
1005 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1006 Tmp1.getValueType(), Tmp2);
1007
1008 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
1009 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
1010 MVT::ValueType ShufMaskEltVT = MVT::getVectorBaseType(ShufMaskVT);
1011
1012 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
1013 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
1014 // the RHS.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001015 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001016 for (unsigned i = 0; i != NumElts; ++i) {
1017 if (i != InsertPos->getValue())
1018 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1019 else
1020 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1021 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001022 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1023 &ShufOps[0], ShufOps.size());
Chris Lattner8d5a8942006-04-17 19:21:01 +00001024
1025 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1026 Tmp1, ScVec, ShufMask);
1027 Result = LegalizeOp(Result);
1028 break;
1029 }
1030
Chris Lattner2332b9f2006-03-19 01:17:20 +00001031 // If the target doesn't support this, we have to spill the input vector
1032 // to a temporary stack slot, update the element, then reload it. This is
1033 // badness. We could also load the value into a vector register (either
1034 // with a "move to register" or "extload into register" instruction, then
1035 // permute it into place, if the idx is a constant and if the idx is
1036 // supported by the target.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001037 MVT::ValueType VT = Tmp1.getValueType();
1038 MVT::ValueType EltVT = Tmp2.getValueType();
1039 MVT::ValueType IdxVT = Tmp3.getValueType();
1040 MVT::ValueType PtrVT = TLI.getPointerTy();
1041 SDOperand StackPtr = CreateStackTemporary(VT);
Evan Chengeb0b4612006-03-31 01:27:51 +00001042 // Store the vector.
Evan Cheng8b2794a2006-10-13 21:14:26 +00001043 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +00001044
1045 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001046 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1047 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +00001048 // Add the offset to the index.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001049 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
1050 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
1051 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Chengeb0b4612006-03-31 01:27:51 +00001052 // Store the scalar value.
Evan Cheng8b2794a2006-10-13 21:14:26 +00001053 Ch = DAG.getStore(Ch, Tmp2, StackPtr2, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +00001054 // Load the updated vector.
Evan Cheng466685d2006-10-09 20:57:25 +00001055 Result = DAG.getLoad(VT, Ch, StackPtr, NULL, 0);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001056 break;
1057 }
1058 }
1059 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001060 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001061 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1062 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1063 break;
1064 }
1065
Chris Lattnerce872152006-03-19 06:31:19 +00001066 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1067 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1068 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1069 Node->getValueType(0))) {
1070 default: assert(0 && "This action is not supported yet!");
1071 case TargetLowering::Legal:
1072 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001073 case TargetLowering::Custom:
1074 Tmp3 = TLI.LowerOperation(Result, DAG);
1075 if (Tmp3.Val) {
1076 Result = Tmp3;
1077 break;
1078 }
1079 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001080 case TargetLowering::Expand:
1081 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001082 break;
1083 }
Chris Lattnerce872152006-03-19 06:31:19 +00001084 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001085 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001086 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1087 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1088 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1089
1090 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001091 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1092 default: assert(0 && "Unknown operation action!");
1093 case TargetLowering::Legal:
1094 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1095 "vector shuffle should not be created if not legal!");
1096 break;
1097 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001098 Tmp3 = TLI.LowerOperation(Result, DAG);
1099 if (Tmp3.Val) {
1100 Result = Tmp3;
1101 break;
1102 }
1103 // FALLTHROUGH
1104 case TargetLowering::Expand: {
1105 MVT::ValueType VT = Node->getValueType(0);
1106 MVT::ValueType EltVT = MVT::getVectorBaseType(VT);
1107 MVT::ValueType PtrVT = TLI.getPointerTy();
1108 SDOperand Mask = Node->getOperand(2);
1109 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001110 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001111 for (unsigned i = 0; i != NumElems; ++i) {
1112 SDOperand Arg = Mask.getOperand(i);
1113 if (Arg.getOpcode() == ISD::UNDEF) {
1114 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1115 } else {
1116 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1117 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1118 if (Idx < NumElems)
1119 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1120 DAG.getConstant(Idx, PtrVT)));
1121 else
1122 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1123 DAG.getConstant(Idx - NumElems, PtrVT)));
1124 }
1125 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001126 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001127 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001128 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001129 case TargetLowering::Promote: {
1130 // Change base type to a different vector type.
1131 MVT::ValueType OVT = Node->getValueType(0);
1132 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1133
1134 // Cast the two input vectors.
1135 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1136 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1137
1138 // Convert the shuffle mask to the right # elements.
1139 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1140 assert(Tmp3.Val && "Shuffle not legal?");
1141 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1142 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1143 break;
1144 }
Chris Lattner87100e02006-03-20 01:52:29 +00001145 }
1146 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001147
1148 case ISD::EXTRACT_VECTOR_ELT:
1149 Tmp1 = LegalizeOp(Node->getOperand(0));
1150 Tmp2 = LegalizeOp(Node->getOperand(1));
1151 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattnere35c2182006-03-21 21:02:03 +00001152
1153 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT,
1154 Tmp1.getValueType())) {
1155 default: assert(0 && "This action is not supported yet!");
1156 case TargetLowering::Legal:
1157 break;
1158 case TargetLowering::Custom:
1159 Tmp3 = TLI.LowerOperation(Result, DAG);
1160 if (Tmp3.Val) {
1161 Result = Tmp3;
1162 break;
1163 }
1164 // FALLTHROUGH
Chris Lattner4aab2f42006-04-02 05:06:04 +00001165 case TargetLowering::Expand:
1166 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattnere35c2182006-03-21 21:02:03 +00001167 break;
1168 }
Chris Lattner384504c2006-03-21 20:44:12 +00001169 break;
1170
Chris Lattner15972212006-03-31 17:55:51 +00001171 case ISD::VEXTRACT_VECTOR_ELT:
1172 Result = LegalizeOp(LowerVEXTRACT_VECTOR_ELT(Op));
Chris Lattner384504c2006-03-21 20:44:12 +00001173 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001174
Chris Lattner6831a812006-02-13 09:18:02 +00001175 case ISD::CALLSEQ_START: {
1176 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1177
1178 // Recursively Legalize all of the inputs of the call end that do not lead
1179 // to this call start. This ensures that any libcalls that need be inserted
1180 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001181 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001182 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001183 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1184 NodesLeadingTo);
1185 }
Chris Lattner6831a812006-02-13 09:18:02 +00001186
1187 // Now that we legalized all of the inputs (which may have inserted
1188 // libcalls) create the new CALLSEQ_START node.
1189 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1190
1191 // Merge in the last call, to ensure that this call start after the last
1192 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001193 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001194 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1195 Tmp1 = LegalizeOp(Tmp1);
1196 }
Chris Lattner6831a812006-02-13 09:18:02 +00001197
1198 // Do not try to legalize the target-specific arguments (#1+).
1199 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001200 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001201 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001202 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001203 }
1204
1205 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001206 AddLegalizedOperand(Op.getValue(0), Result);
1207 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1208 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1209
Chris Lattner6831a812006-02-13 09:18:02 +00001210 // Now that the callseq_start and all of the non-call nodes above this call
1211 // sequence have been legalized, legalize the call itself. During this
1212 // process, no libcalls can/will be inserted, guaranteeing that no calls
1213 // can overlap.
1214 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1215 SDOperand InCallSEQ = LastCALLSEQ_END;
1216 // Note that we are selecting this call!
1217 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1218 IsLegalizingCall = true;
1219
1220 // Legalize the call, starting from the CALLSEQ_END.
1221 LegalizeOp(LastCALLSEQ_END);
1222 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1223 return Result;
1224 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001225 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001226 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1227 // will cause this node to be legalized as well as handling libcalls right.
1228 if (LastCALLSEQ_END.Val != Node) {
1229 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Chris Lattner718071c2007-02-04 00:50:02 +00001230 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001231 assert(I != LegalizedNodes.end() &&
1232 "Legalizing the call start should have legalized this node!");
1233 return I->second;
1234 }
1235
1236 // Otherwise, the call start has been legalized and everything is going
1237 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001238 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001239 // Do not try to legalize the target-specific arguments (#1+), except for
1240 // an optional flag input.
1241 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1242 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001243 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001244 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001245 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001246 }
1247 } else {
1248 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1249 if (Tmp1 != Node->getOperand(0) ||
1250 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001251 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001252 Ops[0] = Tmp1;
1253 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001254 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001255 }
Chris Lattner6a542892006-01-24 05:48:21 +00001256 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001257 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001258 // This finishes up call legalization.
1259 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001260
1261 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1262 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1263 if (Node->getNumValues() == 2)
1264 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1265 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001266 case ISD::DYNAMIC_STACKALLOC: {
Chris Lattnerfa404e82005-01-09 19:03:49 +00001267 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1268 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1269 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001270 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001271
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001272 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001273 Tmp2 = Result.getValue(1);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001274 switch (TLI.getOperationAction(Node->getOpcode(),
1275 Node->getValueType(0))) {
1276 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001277 case TargetLowering::Expand: {
1278 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1279 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1280 " not tell us which reg is the stack pointer!");
1281 SDOperand Chain = Tmp1.getOperand(0);
1282 SDOperand Size = Tmp2.getOperand(1);
1283 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
1284 Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size); // Value
1285 Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1); // Output chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001286 Tmp1 = LegalizeOp(Tmp1);
1287 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001288 break;
1289 }
1290 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001291 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1292 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001293 Tmp1 = LegalizeOp(Tmp3);
1294 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001295 }
Chris Lattner903d2782006-01-15 08:54:32 +00001296 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001297 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001298 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001299 }
Chris Lattner903d2782006-01-15 08:54:32 +00001300 // Since this op produce two values, make sure to remember that we
1301 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001302 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1303 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001304 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001305 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001306 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001307 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001308 bool Changed = false;
1309 // Legalize all of the operands of the inline asm, in case they are nodes
1310 // that need to be expanded or something. Note we skip the asm string and
1311 // all of the TargetConstant flags.
1312 SDOperand Op = LegalizeOp(Ops[0]);
1313 Changed = Op != Ops[0];
1314 Ops[0] = Op;
1315
1316 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1317 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1318 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1319 for (++i; NumVals; ++i, --NumVals) {
1320 SDOperand Op = LegalizeOp(Ops[i]);
1321 if (Op != Ops[i]) {
1322 Changed = true;
1323 Ops[i] = Op;
1324 }
1325 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001326 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001327
1328 if (HasInFlag) {
1329 Op = LegalizeOp(Ops.back());
1330 Changed |= Op != Ops.back();
1331 Ops.back() = Op;
1332 }
1333
1334 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001335 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001336
1337 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001338 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001339 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1340 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001341 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001342 case ISD::BR:
1343 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001344 // Ensure that libcalls are emitted before a branch.
1345 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1346 Tmp1 = LegalizeOp(Tmp1);
1347 LastCALLSEQ_END = DAG.getEntryNode();
1348
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001349 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001350 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001351 case ISD::BRIND:
1352 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1353 // Ensure that libcalls are emitted before a branch.
1354 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1355 Tmp1 = LegalizeOp(Tmp1);
1356 LastCALLSEQ_END = DAG.getEntryNode();
1357
1358 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1359 default: assert(0 && "Indirect target must be legal type (pointer)!");
1360 case Legal:
1361 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1362 break;
1363 }
1364 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1365 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001366 case ISD::BR_JT:
1367 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1368 // Ensure that libcalls are emitted before a branch.
1369 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1370 Tmp1 = LegalizeOp(Tmp1);
1371 LastCALLSEQ_END = DAG.getEntryNode();
1372
1373 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1374 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1375
1376 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1377 default: assert(0 && "This action is not supported yet!");
1378 case TargetLowering::Legal: break;
1379 case TargetLowering::Custom:
1380 Tmp1 = TLI.LowerOperation(Result, DAG);
1381 if (Tmp1.Val) Result = Tmp1;
1382 break;
1383 case TargetLowering::Expand: {
1384 SDOperand Chain = Result.getOperand(0);
1385 SDOperand Table = Result.getOperand(1);
1386 SDOperand Index = Result.getOperand(2);
1387
1388 MVT::ValueType PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001389 MachineFunction &MF = DAG.getMachineFunction();
1390 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001391 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1392 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001393
1394 SDOperand LD;
1395 switch (EntrySize) {
1396 default: assert(0 && "Size of jump table not supported yet."); break;
1397 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr, NULL, 0); break;
1398 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr, NULL, 0); break;
1399 }
1400
1401 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001402 // For PIC, the sequence is:
1403 // BRIND(load(Jumptable + index) + RelocBase)
1404 // RelocBase is the JumpTable on PPC and X86, GOT on Alpha
1405 SDOperand Reloc;
1406 if (TLI.usesGlobalOffsetTable())
1407 Reloc = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, PTy);
1408 else
1409 Reloc = Table;
Evan Chengd0631892006-10-31 02:31:00 +00001410 Addr = (PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001411 Addr = DAG.getNode(ISD::ADD, PTy, Addr, Reloc);
1412 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
1413 } else {
1414 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD);
1415 }
1416 }
1417 }
1418 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001419 case ISD::BRCOND:
1420 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001421 // Ensure that libcalls are emitted before a return.
1422 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1423 Tmp1 = LegalizeOp(Tmp1);
1424 LastCALLSEQ_END = DAG.getEntryNode();
1425
Chris Lattner47e92232005-01-18 19:27:06 +00001426 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1427 case Expand: assert(0 && "It's impossible to expand bools");
1428 case Legal:
1429 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1430 break;
1431 case Promote:
1432 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001433
1434 // The top bits of the promoted condition are not necessarily zero, ensure
1435 // that the value is properly zero extended.
1436 if (!TLI.MaskedValueIsZero(Tmp2,
1437 MVT::getIntVTBitMask(Tmp2.getValueType())^1))
1438 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001439 break;
1440 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001441
1442 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001443 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001444
1445 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1446 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001447 case TargetLowering::Legal: break;
1448 case TargetLowering::Custom:
1449 Tmp1 = TLI.LowerOperation(Result, DAG);
1450 if (Tmp1.Val) Result = Tmp1;
1451 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001452 case TargetLowering::Expand:
1453 // Expand brcond's setcc into its constituent parts and create a BR_CC
1454 // Node.
1455 if (Tmp2.getOpcode() == ISD::SETCC) {
1456 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1457 Tmp2.getOperand(0), Tmp2.getOperand(1),
1458 Node->getOperand(2));
1459 } else {
1460 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1461 DAG.getCondCode(ISD::SETNE), Tmp2,
1462 DAG.getConstant(0, Tmp2.getValueType()),
1463 Node->getOperand(2));
1464 }
1465 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001466 }
1467 break;
1468 case ISD::BR_CC:
1469 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001470 // Ensure that libcalls are emitted before a branch.
1471 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1472 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001473 Tmp2 = Node->getOperand(2); // LHS
1474 Tmp3 = Node->getOperand(3); // RHS
1475 Tmp4 = Node->getOperand(1); // CC
1476
1477 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001478 LastCALLSEQ_END = DAG.getEntryNode();
1479
Nate Begeman750ac1b2006-02-01 07:19:44 +00001480 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1481 // the LHS is a legal SETCC itself. In this case, we need to compare
1482 // the result against zero to select between true and false values.
1483 if (Tmp3.Val == 0) {
1484 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1485 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001486 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001487
1488 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1489 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001490
Chris Lattner181b7a32005-12-17 23:46:46 +00001491 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1492 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001493 case TargetLowering::Legal: break;
1494 case TargetLowering::Custom:
1495 Tmp4 = TLI.LowerOperation(Result, DAG);
1496 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001497 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001498 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001499 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001500 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001501 LoadSDNode *LD = cast<LoadSDNode>(Node);
1502 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1503 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001504
Evan Cheng466685d2006-10-09 20:57:25 +00001505 ISD::LoadExtType ExtType = LD->getExtensionType();
1506 if (ExtType == ISD::NON_EXTLOAD) {
1507 MVT::ValueType VT = Node->getValueType(0);
1508 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1509 Tmp3 = Result.getValue(0);
1510 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001511
Evan Cheng466685d2006-10-09 20:57:25 +00001512 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1513 default: assert(0 && "This action is not supported yet!");
1514 case TargetLowering::Legal: break;
1515 case TargetLowering::Custom:
1516 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1517 if (Tmp1.Val) {
1518 Tmp3 = LegalizeOp(Tmp1);
1519 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001520 }
Evan Cheng466685d2006-10-09 20:57:25 +00001521 break;
1522 case TargetLowering::Promote: {
1523 // Only promote a load of vector type to another.
1524 assert(MVT::isVector(VT) && "Cannot promote this load!");
1525 // Change base type to a different vector type.
1526 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1527
1528 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
1529 LD->getSrcValueOffset());
1530 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1531 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001532 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001533 }
Evan Cheng466685d2006-10-09 20:57:25 +00001534 }
1535 // Since loads produce two values, make sure to remember that we
1536 // legalized both of them.
1537 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1538 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1539 return Op.ResNo ? Tmp4 : Tmp3;
1540 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00001541 MVT::ValueType SrcVT = LD->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001542 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1543 default: assert(0 && "This action is not supported yet!");
1544 case TargetLowering::Promote:
1545 assert(SrcVT == MVT::i1 &&
1546 "Can only promote extending LOAD from i1 -> i8!");
1547 Result = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1548 LD->getSrcValue(), LD->getSrcValueOffset(),
1549 MVT::i8);
1550 Tmp1 = Result.getValue(0);
1551 Tmp2 = Result.getValue(1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001552 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001553 case TargetLowering::Custom:
1554 isCustom = true;
1555 // FALLTHROUGH
1556 case TargetLowering::Legal:
1557 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1558 Tmp1 = Result.getValue(0);
1559 Tmp2 = Result.getValue(1);
1560
1561 if (isCustom) {
1562 Tmp3 = TLI.LowerOperation(Result, DAG);
1563 if (Tmp3.Val) {
1564 Tmp1 = LegalizeOp(Tmp3);
1565 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1566 }
1567 }
1568 break;
1569 case TargetLowering::Expand:
1570 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
1571 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1572 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
1573 LD->getSrcValueOffset());
1574 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
1575 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1576 Tmp2 = LegalizeOp(Load.getValue(1));
1577 break;
1578 }
Chris Lattnerfea997a2007-02-01 04:55:59 +00001579 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
Evan Cheng466685d2006-10-09 20:57:25 +00001580 // Turn the unsupported load into an EXTLOAD followed by an explicit
1581 // zero/sign extend inreg.
1582 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1583 Tmp1, Tmp2, LD->getSrcValue(),
1584 LD->getSrcValueOffset(), SrcVT);
1585 SDOperand ValRes;
1586 if (ExtType == ISD::SEXTLOAD)
1587 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1588 Result, DAG.getValueType(SrcVT));
1589 else
1590 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
1591 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1592 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1593 break;
1594 }
1595 // Since loads produce two values, make sure to remember that we legalized
1596 // both of them.
1597 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1598 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1599 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00001600 }
Chris Lattner01ff7212005-04-10 22:54:25 +00001601 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001602 case ISD::EXTRACT_ELEMENT: {
1603 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1604 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001605 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00001606 case Legal:
1607 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1608 // 1 -> Hi
1609 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1610 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1611 TLI.getShiftAmountTy()));
1612 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1613 } else {
1614 // 0 -> Lo
1615 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1616 Node->getOperand(0));
1617 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001618 break;
1619 case Expand:
1620 // Get both the low and high parts.
1621 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1622 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1623 Result = Tmp2; // 1 -> Hi
1624 else
1625 Result = Tmp1; // 0 -> Lo
1626 break;
1627 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001628 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00001629 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001630
1631 case ISD::CopyToReg:
1632 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00001633
Chris Lattnerc9c60f62005-08-24 16:35:28 +00001634 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001635 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00001636 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001637 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001638 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001639 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001640 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001641 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001642 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001643 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001644 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1645 Tmp3);
1646 } else {
1647 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001648 }
1649
1650 // Since this produces two values, make sure to remember that we legalized
1651 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001652 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001653 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001654 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00001655 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001656 break;
1657
1658 case ISD::RET:
1659 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001660
1661 // Ensure that libcalls are emitted before a return.
1662 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1663 Tmp1 = LegalizeOp(Tmp1);
1664 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00001665
Chris Lattner3e928bb2005-01-07 07:47:09 +00001666 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00001667 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00001668 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001669 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00001670 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001671 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00001672 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001673 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00001674 case Expand:
1675 if (Tmp2.getValueType() != MVT::Vector) {
1676 SDOperand Lo, Hi;
1677 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00001678
1679 // Big endian systems want the hi reg first.
1680 if (!TLI.isLittleEndian())
1681 std::swap(Lo, Hi);
1682
Evan Cheng13acce32006-12-11 19:27:14 +00001683 if (Hi.Val)
1684 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
1685 else
1686 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00001687 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001688 } else {
1689 SDNode *InVal = Tmp2.Val;
1690 unsigned NumElems =
1691 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1692 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1693
1694 // Figure out if there is a Packed type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00001695 // type. If so, convert to the vector type.
Chris Lattnerf87324e2006-04-11 01:31:51 +00001696 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1697 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00001698 // Turn this into a return of the vector type.
Chris Lattnerf87324e2006-04-11 01:31:51 +00001699 Tmp2 = PackVectorOp(Tmp2, TVT);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001700 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001701 } else if (NumElems == 1) {
1702 // Turn this into a return of the scalar type.
1703 Tmp2 = PackVectorOp(Tmp2, EVT);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001704 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001705
1706 // FIXME: Returns of gcc generic vectors smaller than a legal type
1707 // should be returned in integer registers!
1708
Chris Lattnerf87324e2006-04-11 01:31:51 +00001709 // The scalarized value type may not be legal, e.g. it might require
1710 // promotion or expansion. Relegalize the return.
1711 Result = LegalizeOp(Result);
1712 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001713 // FIXME: Returns of gcc generic vectors larger than a legal vector
1714 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00001715 SDOperand Lo, Hi;
1716 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00001717 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001718 Result = LegalizeOp(Result);
1719 }
1720 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001721 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001722 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001723 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001724 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001725 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001726 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001727 }
1728 break;
1729 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001730 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001731 break;
1732 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001733 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001734 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001735 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00001736 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1737 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00001738 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001739 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001740 break;
1741 case Expand: {
1742 SDOperand Lo, Hi;
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001743 assert(Node->getOperand(i).getValueType() != MVT::Vector &&
1744 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001745 ExpandOp(Node->getOperand(i), Lo, Hi);
1746 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001747 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00001748 if (Hi.Val) {
1749 NewValues.push_back(Hi);
1750 NewValues.push_back(Node->getOperand(i+1));
1751 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001752 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001753 }
1754 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001755 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001756 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001757
1758 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001759 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001760 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001761 Result = DAG.getNode(ISD::RET, MVT::Other,
1762 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00001763 break;
1764 }
1765 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001766
Chris Lattner6862dbc2006-01-29 21:02:23 +00001767 if (Result.getOpcode() == ISD::RET) {
1768 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1769 default: assert(0 && "This action is not supported yet!");
1770 case TargetLowering::Legal: break;
1771 case TargetLowering::Custom:
1772 Tmp1 = TLI.LowerOperation(Result, DAG);
1773 if (Tmp1.Val) Result = Tmp1;
1774 break;
1775 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001776 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001777 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001778 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00001779 StoreSDNode *ST = cast<StoreSDNode>(Node);
1780 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
1781 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001782
Evan Cheng8b2794a2006-10-13 21:14:26 +00001783 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00001784 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
1785 // FIXME: We shouldn't do this for TargetConstantFP's.
1786 // FIXME: move this to the DAG Combiner! Note that we can't regress due
1787 // to phase ordering between legalized code and the dag combiner. This
1788 // probably means that we need to integrate dag combiner and legalizer
1789 // together.
1790 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
1791 if (CFP->getValueType(0) == MVT::f32) {
1792 Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
1793 } else {
1794 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
1795 Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
1796 }
1797 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1798 ST->getSrcValueOffset());
1799 break;
1800 }
1801
Evan Cheng8b2794a2006-10-13 21:14:26 +00001802 switch (getTypeAction(ST->getStoredVT())) {
1803 case Legal: {
1804 Tmp3 = LegalizeOp(ST->getValue());
1805 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1806 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001807
Evan Cheng8b2794a2006-10-13 21:14:26 +00001808 MVT::ValueType VT = Tmp3.getValueType();
1809 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1810 default: assert(0 && "This action is not supported yet!");
1811 case TargetLowering::Legal: break;
1812 case TargetLowering::Custom:
1813 Tmp1 = TLI.LowerOperation(Result, DAG);
1814 if (Tmp1.Val) Result = Tmp1;
1815 break;
1816 case TargetLowering::Promote:
1817 assert(MVT::isVector(VT) && "Unknown legal promote case!");
1818 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
1819 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
1820 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
1821 ST->getSrcValue(), ST->getSrcValueOffset());
1822 break;
1823 }
1824 break;
1825 }
1826 case Promote:
1827 // Truncate the value and store the result.
1828 Tmp3 = PromoteOp(ST->getValue());
1829 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1830 ST->getSrcValueOffset(), ST->getStoredVT());
1831 break;
1832
1833 case Expand:
1834 unsigned IncrementSize = 0;
1835 SDOperand Lo, Hi;
1836
1837 // If this is a vector type, then we have to calculate the increment as
1838 // the product of the element size in bytes, and the number of elements
1839 // in the high half of the vector.
1840 if (ST->getValue().getValueType() == MVT::Vector) {
1841 SDNode *InVal = ST->getValue().Val;
1842 unsigned NumElems =
1843 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1844 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1845
1846 // Figure out if there is a Packed type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00001847 // type. If so, convert to the vector type.
Evan Cheng8b2794a2006-10-13 21:14:26 +00001848 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1849 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00001850 // Turn this into a normal store of the vector type.
Evan Cheng8b2794a2006-10-13 21:14:26 +00001851 Tmp3 = PackVectorOp(Node->getOperand(1), TVT);
1852 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1853 ST->getSrcValueOffset());
1854 Result = LegalizeOp(Result);
1855 break;
1856 } else if (NumElems == 1) {
1857 // Turn this into a normal store of the scalar type.
1858 Tmp3 = PackVectorOp(Node->getOperand(1), EVT);
1859 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1860 ST->getSrcValueOffset());
1861 // The scalarized value type may not be legal, e.g. it might require
1862 // promotion or expansion. Relegalize the scalar store.
1863 Result = LegalizeOp(Result);
1864 break;
1865 } else {
1866 SplitVectorOp(Node->getOperand(1), Lo, Hi);
1867 IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
1868 }
1869 } else {
1870 ExpandOp(Node->getOperand(1), Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00001871 IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00001872
1873 if (!TLI.isLittleEndian())
1874 std::swap(Lo, Hi);
1875 }
1876
1877 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
1878 ST->getSrcValueOffset());
Evan Cheng7b2b5c82006-12-12 19:53:13 +00001879
1880 if (Hi.Val == NULL) {
1881 // Must be int <-> float one-to-one expansion.
1882 Result = Lo;
1883 break;
1884 }
1885
Evan Cheng8b2794a2006-10-13 21:14:26 +00001886 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1887 getIntPtrConstant(IncrementSize));
1888 assert(isTypeLegal(Tmp2.getValueType()) &&
1889 "Pointers must be legal!");
1890 // FIXME: This sets the srcvalue of both halves to be the same, which is
1891 // wrong.
1892 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
1893 ST->getSrcValueOffset());
1894 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1895 break;
1896 }
1897 } else {
1898 // Truncating store
1899 assert(isTypeLegal(ST->getValue().getValueType()) &&
1900 "Cannot handle illegal TRUNCSTORE yet!");
1901 Tmp3 = LegalizeOp(ST->getValue());
1902
1903 // The only promote case we handle is TRUNCSTORE:i1 X into
1904 // -> TRUNCSTORE:i8 (and X, 1)
1905 if (ST->getStoredVT() == MVT::i1 &&
1906 TLI.getStoreXAction(MVT::i1) == TargetLowering::Promote) {
1907 // Promote the bool to a mask then store.
1908 Tmp3 = DAG.getNode(ISD::AND, Tmp3.getValueType(), Tmp3,
1909 DAG.getConstant(1, Tmp3.getValueType()));
1910 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1911 ST->getSrcValueOffset(), MVT::i8);
1912 } else if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
1913 Tmp2 != ST->getBasePtr()) {
1914 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1915 ST->getOffset());
1916 }
1917
1918 MVT::ValueType StVT = cast<StoreSDNode>(Result.Val)->getStoredVT();
1919 switch (TLI.getStoreXAction(StVT)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001920 default: assert(0 && "This action is not supported yet!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00001921 case TargetLowering::Legal: break;
Chris Lattner456a93a2006-01-28 07:39:30 +00001922 case TargetLowering::Custom:
1923 Tmp1 = TLI.LowerOperation(Result, DAG);
1924 if (Tmp1.Val) Result = Tmp1;
1925 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001926 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001927 }
1928 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001929 }
Andrew Lenharth95762122005-03-31 21:24:06 +00001930 case ISD::PCMARKER:
1931 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001932 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00001933 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001934 case ISD::STACKSAVE:
1935 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001936 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1937 Tmp1 = Result.getValue(0);
1938 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001939
Chris Lattner140d53c2006-01-13 02:50:02 +00001940 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1941 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001942 case TargetLowering::Legal: break;
1943 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001944 Tmp3 = TLI.LowerOperation(Result, DAG);
1945 if (Tmp3.Val) {
1946 Tmp1 = LegalizeOp(Tmp3);
1947 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00001948 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001949 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001950 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001951 // Expand to CopyFromReg if the target set
1952 // StackPointerRegisterToSaveRestore.
1953 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001954 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001955 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001956 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001957 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001958 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1959 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001960 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001961 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001962 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001963
1964 // Since stacksave produce two values, make sure to remember that we
1965 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001966 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1967 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1968 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00001969
Chris Lattner140d53c2006-01-13 02:50:02 +00001970 case ISD::STACKRESTORE:
1971 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1972 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001973 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00001974
1975 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1976 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001977 case TargetLowering::Legal: break;
1978 case TargetLowering::Custom:
1979 Tmp1 = TLI.LowerOperation(Result, DAG);
1980 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00001981 break;
1982 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001983 // Expand to CopyToReg if the target set
1984 // StackPointerRegisterToSaveRestore.
1985 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1986 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1987 } else {
1988 Result = Tmp1;
1989 }
Chris Lattner140d53c2006-01-13 02:50:02 +00001990 break;
1991 }
1992 break;
1993
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001994 case ISD::READCYCLECOUNTER:
1995 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001996 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00001997 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
1998 Node->getValueType(0))) {
1999 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002000 case TargetLowering::Legal:
2001 Tmp1 = Result.getValue(0);
2002 Tmp2 = Result.getValue(1);
2003 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002004 case TargetLowering::Custom:
2005 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002006 Tmp1 = LegalizeOp(Result.getValue(0));
2007 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002008 break;
2009 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002010
2011 // Since rdcc produce two values, make sure to remember that we legalized
2012 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002013 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2014 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002015 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002016
Chris Lattner2ee743f2005-01-14 22:08:15 +00002017 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002018 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2019 case Expand: assert(0 && "It's impossible to expand bools");
2020 case Legal:
2021 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2022 break;
2023 case Promote:
2024 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002025 // Make sure the condition is either zero or one.
2026 if (!TLI.MaskedValueIsZero(Tmp1,
2027 MVT::getIntVTBitMask(Tmp1.getValueType())^1))
2028 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002029 break;
2030 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002031 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002032 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002033
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002034 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002035
Nate Begemanb942a3d2005-08-23 04:29:48 +00002036 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002037 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002038 case TargetLowering::Legal: break;
2039 case TargetLowering::Custom: {
2040 Tmp1 = TLI.LowerOperation(Result, DAG);
2041 if (Tmp1.Val) Result = Tmp1;
2042 break;
2043 }
Nate Begeman9373a812005-08-10 20:51:12 +00002044 case TargetLowering::Expand:
2045 if (Tmp1.getOpcode() == ISD::SETCC) {
2046 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2047 Tmp2, Tmp3,
2048 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2049 } else {
2050 Result = DAG.getSelectCC(Tmp1,
2051 DAG.getConstant(0, Tmp1.getValueType()),
2052 Tmp2, Tmp3, ISD::SETNE);
2053 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002054 break;
2055 case TargetLowering::Promote: {
2056 MVT::ValueType NVT =
2057 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2058 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002059 if (MVT::isVector(Tmp2.getValueType())) {
2060 ExtOp = ISD::BIT_CONVERT;
2061 TruncOp = ISD::BIT_CONVERT;
2062 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002063 ExtOp = ISD::ANY_EXTEND;
2064 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002065 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002066 ExtOp = ISD::FP_EXTEND;
2067 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002068 }
2069 // Promote each of the values to the new type.
2070 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2071 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2072 // Perform the larger operation, then round down.
2073 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
2074 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2075 break;
2076 }
2077 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002078 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002079 case ISD::SELECT_CC: {
2080 Tmp1 = Node->getOperand(0); // LHS
2081 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002082 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2083 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002084 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002085
Nate Begeman750ac1b2006-02-01 07:19:44 +00002086 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2087
2088 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2089 // the LHS is a legal SETCC itself. In this case, we need to compare
2090 // the result against zero to select between true and false values.
2091 if (Tmp2.Val == 0) {
2092 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2093 CC = DAG.getCondCode(ISD::SETNE);
2094 }
2095 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2096
2097 // Everything is legal, see if we should expand this op or something.
2098 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2099 default: assert(0 && "This action is not supported yet!");
2100 case TargetLowering::Legal: break;
2101 case TargetLowering::Custom:
2102 Tmp1 = TLI.LowerOperation(Result, DAG);
2103 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002104 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002105 }
2106 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002107 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002108 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002109 Tmp1 = Node->getOperand(0);
2110 Tmp2 = Node->getOperand(1);
2111 Tmp3 = Node->getOperand(2);
2112 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2113
2114 // If we had to Expand the SetCC operands into a SELECT node, then it may
2115 // not always be possible to return a true LHS & RHS. In this case, just
2116 // return the value we legalized, returned in the LHS
2117 if (Tmp2.Val == 0) {
2118 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002119 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002120 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002121
Chris Lattner73e142f2006-01-30 22:43:50 +00002122 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002123 default: assert(0 && "Cannot handle this action for SETCC yet!");
2124 case TargetLowering::Custom:
2125 isCustom = true;
2126 // FALLTHROUGH.
2127 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002128 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002129 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002130 Tmp4 = TLI.LowerOperation(Result, DAG);
2131 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002132 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002133 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002134 case TargetLowering::Promote: {
2135 // First step, figure out the appropriate operation to use.
2136 // Allow SETCC to not be supported for all legal data types
2137 // Mostly this targets FP
2138 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
Chris Lattner00755df2007-02-04 00:27:56 +00002139 MVT::ValueType OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002140
2141 // Scan for the appropriate larger type to use.
2142 while (1) {
2143 NewInTy = (MVT::ValueType)(NewInTy+1);
2144
2145 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2146 "Fell off of the edge of the integer world");
2147 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2148 "Fell off of the edge of the floating point world");
2149
2150 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002151 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002152 break;
2153 }
2154 if (MVT::isInteger(NewInTy))
2155 assert(0 && "Cannot promote Legal Integer SETCC yet");
2156 else {
2157 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2158 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2159 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002160 Tmp1 = LegalizeOp(Tmp1);
2161 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002162 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002163 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002164 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002165 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002166 case TargetLowering::Expand:
2167 // Expand a setcc node into a select_cc of the same condition, lhs, and
2168 // rhs that selects between const 1 (true) and const 0 (false).
2169 MVT::ValueType VT = Node->getValueType(0);
2170 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2171 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002172 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002173 break;
2174 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002175 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002176 case ISD::MEMSET:
2177 case ISD::MEMCPY:
2178 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002179 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00002180 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
2181
2182 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
2183 switch (getTypeAction(Node->getOperand(2).getValueType())) {
2184 case Expand: assert(0 && "Cannot expand a byte!");
2185 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002186 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002187 break;
2188 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002189 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002190 break;
2191 }
2192 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002193 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00002194 }
Chris Lattner272455b2005-02-02 03:44:41 +00002195
2196 SDOperand Tmp4;
2197 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00002198 case Expand: {
2199 // Length is too big, just take the lo-part of the length.
2200 SDOperand HiPart;
Chris Lattnerfa9aa2b2006-11-07 04:11:44 +00002201 ExpandOp(Node->getOperand(3), Tmp4, HiPart);
Chris Lattner6814f152005-07-13 01:42:45 +00002202 break;
2203 }
Chris Lattnere5605212005-01-28 22:29:18 +00002204 case Legal:
2205 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00002206 break;
2207 case Promote:
2208 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00002209 break;
2210 }
2211
2212 SDOperand Tmp5;
2213 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2214 case Expand: assert(0 && "Cannot expand this yet!");
2215 case Legal:
2216 Tmp5 = LegalizeOp(Node->getOperand(4));
2217 break;
2218 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00002219 Tmp5 = PromoteOp(Node->getOperand(4));
2220 break;
2221 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002222
2223 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2224 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002225 case TargetLowering::Custom:
2226 isCustom = true;
2227 // FALLTHROUGH
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002228 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002229 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner456a93a2006-01-28 07:39:30 +00002230 if (isCustom) {
2231 Tmp1 = TLI.LowerOperation(Result, DAG);
2232 if (Tmp1.Val) Result = Tmp1;
2233 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002234 break;
2235 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00002236 // Otherwise, the target does not support this operation. Lower the
2237 // operation to an explicit libcall as appropriate.
2238 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00002239 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00002240 TargetLowering::ArgListTy Args;
2241 TargetLowering::ArgListEntry Entry;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002242
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00002243 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002244 if (Node->getOpcode() == ISD::MEMSET) {
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002245 Entry.Node = Tmp2; Entry.Ty = IntPtrTy;
Reid Spencer47857812006-12-31 05:55:36 +00002246 Args.push_back(Entry);
Chris Lattnerdca7abe2006-02-20 06:38:35 +00002247 // Extend the (previously legalized) ubyte argument to be an int value
2248 // for the call.
2249 if (Tmp3.getValueType() > MVT::i32)
2250 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2251 else
2252 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002253 Entry.Node = Tmp3; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
Reid Spencer47857812006-12-31 05:55:36 +00002254 Args.push_back(Entry);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002255 Entry.Node = Tmp4; Entry.Ty = IntPtrTy; Entry.isSExt = false;
Reid Spencer47857812006-12-31 05:55:36 +00002256 Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002257
2258 FnName = "memset";
2259 } else if (Node->getOpcode() == ISD::MEMCPY ||
2260 Node->getOpcode() == ISD::MEMMOVE) {
Anton Korobeynikovb25fe822007-02-01 08:39:52 +00002261 Entry.Ty = IntPtrTy;
Reid Spencerb47b25c2007-01-03 04:22:32 +00002262 Entry.Node = Tmp2; Args.push_back(Entry);
2263 Entry.Node = Tmp3; Args.push_back(Entry);
2264 Entry.Node = Tmp4; Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002265 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2266 } else {
2267 assert(0 && "Unknown op!");
2268 }
Chris Lattner45982da2005-05-12 16:53:42 +00002269
Chris Lattnere1bd8222005-01-11 05:57:22 +00002270 std::pair<SDOperand,SDOperand> CallResult =
Reid Spencer47857812006-12-31 05:55:36 +00002271 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00002272 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00002273 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002274 break;
2275 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00002276 }
2277 break;
2278 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002279
Chris Lattner5b359c62005-04-02 04:00:59 +00002280 case ISD::SHL_PARTS:
2281 case ISD::SRA_PARTS:
2282 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002283 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002284 bool Changed = false;
2285 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2286 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2287 Changed |= Ops.back() != Node->getOperand(i);
2288 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002289 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002290 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002291
Evan Cheng05a2d562006-01-09 18:31:59 +00002292 switch (TLI.getOperationAction(Node->getOpcode(),
2293 Node->getValueType(0))) {
2294 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002295 case TargetLowering::Legal: break;
2296 case TargetLowering::Custom:
2297 Tmp1 = TLI.LowerOperation(Result, DAG);
2298 if (Tmp1.Val) {
2299 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002300 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002301 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002302 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2303 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002304 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002305 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002306 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002307 return RetVal;
2308 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002309 break;
2310 }
2311
Chris Lattner2c8086f2005-04-02 05:00:07 +00002312 // Since these produce multiple values, make sure to remember that we
2313 // legalized all of them.
2314 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2315 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2316 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002317 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002318
2319 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002320 case ISD::ADD:
2321 case ISD::SUB:
2322 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002323 case ISD::MULHS:
2324 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002325 case ISD::UDIV:
2326 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002327 case ISD::AND:
2328 case ISD::OR:
2329 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002330 case ISD::SHL:
2331 case ISD::SRL:
2332 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002333 case ISD::FADD:
2334 case ISD::FSUB:
2335 case ISD::FMUL:
2336 case ISD::FDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002337 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002338 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2339 case Expand: assert(0 && "Not possible");
2340 case Legal:
2341 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2342 break;
2343 case Promote:
2344 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2345 break;
2346 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002347
2348 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002349
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002350 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002351 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002352 case TargetLowering::Legal: break;
2353 case TargetLowering::Custom:
2354 Tmp1 = TLI.LowerOperation(Result, DAG);
2355 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002356 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002357 case TargetLowering::Expand: {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002358 if (Node->getValueType(0) == MVT::i32) {
2359 switch (Node->getOpcode()) {
2360 default: assert(0 && "Do not know how to expand this integer BinOp!");
2361 case ISD::UDIV:
2362 case ISD::SDIV:
Evan Cheng56966222007-01-12 02:11:51 +00002363 RTLIB::Libcall LC = Node->getOpcode() == ISD::UDIV
2364 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002365 SDOperand Dummy;
Reid Spencer47857812006-12-31 05:55:36 +00002366 bool isSigned = Node->getOpcode() == ISD::SDIV;
Evan Cheng56966222007-01-12 02:11:51 +00002367 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002368 };
2369 break;
2370 }
2371
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002372 assert(MVT::isVector(Node->getValueType(0)) &&
2373 "Cannot expand this binary operator!");
2374 // Expand the operation into a bunch of nasty scalar code.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002375 SmallVector<SDOperand, 8> Ops;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002376 MVT::ValueType EltVT = MVT::getVectorBaseType(Node->getValueType(0));
2377 MVT::ValueType PtrVT = TLI.getPointerTy();
2378 for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2379 i != e; ++i) {
2380 SDOperand Idx = DAG.getConstant(i, PtrVT);
2381 SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2382 SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2383 Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2384 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002385 Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0),
2386 &Ops[0], Ops.size());
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002387 break;
2388 }
Evan Chengcc987612006-04-12 21:20:24 +00002389 case TargetLowering::Promote: {
2390 switch (Node->getOpcode()) {
2391 default: assert(0 && "Do not know how to promote this BinOp!");
2392 case ISD::AND:
2393 case ISD::OR:
2394 case ISD::XOR: {
2395 MVT::ValueType OVT = Node->getValueType(0);
2396 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2397 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2398 // Bit convert each of the values to the new type.
2399 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2400 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2401 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2402 // Bit convert the result back the original type.
2403 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2404 break;
2405 }
2406 }
2407 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002408 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002409 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002410
2411 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2412 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2413 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2414 case Expand: assert(0 && "Not possible");
2415 case Legal:
2416 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2417 break;
2418 case Promote:
2419 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2420 break;
2421 }
2422
2423 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2424
2425 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2426 default: assert(0 && "Operation not supported");
2427 case TargetLowering::Custom:
2428 Tmp1 = TLI.LowerOperation(Result, DAG);
2429 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00002430 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002431 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00002432 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00002433 // If this target supports fabs/fneg natively and select is cheap,
2434 // do this efficiently.
2435 if (!TLI.isSelectExpensive() &&
2436 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
2437 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00002438 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00002439 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00002440 // Get the sign bit of the RHS.
2441 MVT::ValueType IVT =
2442 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2443 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2444 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2445 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2446 // Get the absolute value of the result.
2447 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2448 // Select between the nabs and abs value based on the sign bit of
2449 // the input.
2450 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2451 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2452 AbsVal),
2453 AbsVal);
2454 Result = LegalizeOp(Result);
2455 break;
2456 }
2457
2458 // Otherwise, do bitwise ops!
Evan Cheng912095b2007-01-04 21:56:39 +00002459 MVT::ValueType NVT =
2460 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
2461 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
2462 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
2463 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00002464 break;
2465 }
Evan Cheng912095b2007-01-04 21:56:39 +00002466 }
Chris Lattnera09f8482006-03-05 05:09:38 +00002467 break;
2468
Nate Begeman551bf3f2006-02-17 05:43:56 +00002469 case ISD::ADDC:
2470 case ISD::SUBC:
2471 Tmp1 = LegalizeOp(Node->getOperand(0));
2472 Tmp2 = LegalizeOp(Node->getOperand(1));
2473 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2474 // Since this produces two values, make sure to remember that we legalized
2475 // both of them.
2476 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2477 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2478 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002479
Nate Begeman551bf3f2006-02-17 05:43:56 +00002480 case ISD::ADDE:
2481 case ISD::SUBE:
2482 Tmp1 = LegalizeOp(Node->getOperand(0));
2483 Tmp2 = LegalizeOp(Node->getOperand(1));
2484 Tmp3 = LegalizeOp(Node->getOperand(2));
2485 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2486 // Since this produces two values, make sure to remember that we legalized
2487 // both of them.
2488 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2489 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2490 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002491
Nate Begeman419f8b62005-10-18 00:27:41 +00002492 case ISD::BUILD_PAIR: {
2493 MVT::ValueType PairTy = Node->getValueType(0);
2494 // TODO: handle the case where the Lo and Hi operands are not of legal type
2495 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2496 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2497 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002498 case TargetLowering::Promote:
2499 case TargetLowering::Custom:
2500 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00002501 case TargetLowering::Legal:
2502 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2503 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2504 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00002505 case TargetLowering::Expand:
2506 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2507 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2508 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2509 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2510 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00002511 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00002512 break;
2513 }
2514 break;
2515 }
2516
Nate Begemanc105e192005-04-06 00:23:54 +00002517 case ISD::UREM:
2518 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002519 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00002520 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2521 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002522
Nate Begemanc105e192005-04-06 00:23:54 +00002523 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002524 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2525 case TargetLowering::Custom:
2526 isCustom = true;
2527 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00002528 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002529 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002530 if (isCustom) {
2531 Tmp1 = TLI.LowerOperation(Result, DAG);
2532 if (Tmp1.Val) Result = Tmp1;
2533 }
Nate Begemanc105e192005-04-06 00:23:54 +00002534 break;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002535 case TargetLowering::Expand:
Evan Cheng6b5578f2006-09-18 23:28:33 +00002536 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00002537 bool isSigned = DivOpc == ISD::SDIV;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002538 if (MVT::isInteger(Node->getValueType(0))) {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002539 if (TLI.getOperationAction(DivOpc, Node->getValueType(0)) ==
2540 TargetLowering::Legal) {
2541 // X % Y -> X-X/Y*Y
2542 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng6b5578f2006-09-18 23:28:33 +00002543 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002544 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2545 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2546 } else {
2547 assert(Node->getValueType(0) == MVT::i32 &&
2548 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00002549 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
2550 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002551 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002552 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002553 }
Chris Lattner4c64dd72005-08-03 20:31:37 +00002554 } else {
2555 // Floating point mod -> fmod libcall.
Evan Cheng56966222007-01-12 02:11:51 +00002556 RTLIB::Libcall LC = Node->getValueType(0) == MVT::f32
2557 ? RTLIB::REM_F32 : RTLIB::REM_F64;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002558 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002559 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2560 false/*sign irrelevant*/, Dummy);
Nate Begemanc105e192005-04-06 00:23:54 +00002561 }
2562 break;
2563 }
2564 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00002565 case ISD::VAARG: {
2566 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2567 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2568
Chris Lattner5c62f332006-01-28 07:42:08 +00002569 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00002570 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2571 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002572 case TargetLowering::Custom:
2573 isCustom = true;
2574 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002575 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002576 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2577 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002578 Tmp1 = Result.getValue(1);
2579
2580 if (isCustom) {
2581 Tmp2 = TLI.LowerOperation(Result, DAG);
2582 if (Tmp2.Val) {
2583 Result = LegalizeOp(Tmp2);
2584 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2585 }
2586 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002587 break;
2588 case TargetLowering::Expand: {
Evan Cheng466685d2006-10-09 20:57:25 +00002589 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00002590 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00002591 SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002592 // Increment the pointer, VAList, to the next vaarg
2593 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2594 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2595 TLI.getPointerTy()));
2596 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00002597 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
2598 SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002599 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00002600 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002601 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00002602 Result = LegalizeOp(Result);
2603 break;
2604 }
2605 }
2606 // Since VAARG produces two values, make sure to remember that we
2607 // legalized both of them.
2608 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00002609 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2610 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00002611 }
2612
2613 case ISD::VACOPY:
2614 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2615 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2616 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
2617
2618 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2619 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002620 case TargetLowering::Custom:
2621 isCustom = true;
2622 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002623 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002624 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2625 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00002626 if (isCustom) {
2627 Tmp1 = TLI.LowerOperation(Result, DAG);
2628 if (Tmp1.Val) Result = Tmp1;
2629 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002630 break;
2631 case TargetLowering::Expand:
2632 // This defaults to loading a pointer from the input and storing it to the
2633 // output, returning the chain.
Evan Cheng466685d2006-10-09 20:57:25 +00002634 SrcValueSDNode *SVD = cast<SrcValueSDNode>(Node->getOperand(3));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002635 SrcValueSDNode *SVS = cast<SrcValueSDNode>(Node->getOperand(4));
Evan Cheng466685d2006-10-09 20:57:25 +00002636 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, SVD->getValue(),
2637 SVD->getOffset());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002638 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, SVS->getValue(),
2639 SVS->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002640 break;
2641 }
2642 break;
2643
2644 case ISD::VAEND:
2645 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2646 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2647
2648 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2649 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002650 case TargetLowering::Custom:
2651 isCustom = true;
2652 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002653 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002654 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00002655 if (isCustom) {
2656 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2657 if (Tmp1.Val) Result = Tmp1;
2658 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002659 break;
2660 case TargetLowering::Expand:
2661 Result = Tmp1; // Default to a no-op, return the chain
2662 break;
2663 }
2664 break;
2665
2666 case ISD::VASTART:
2667 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2668 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2669
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002670 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2671
Nate Begemanacc398c2006-01-25 18:21:52 +00002672 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2673 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002674 case TargetLowering::Legal: break;
2675 case TargetLowering::Custom:
2676 Tmp1 = TLI.LowerOperation(Result, DAG);
2677 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00002678 break;
2679 }
2680 break;
2681
Nate Begeman35ef9132006-01-11 21:21:00 +00002682 case ISD::ROTL:
2683 case ISD::ROTR:
2684 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2685 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002686
2687 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
2688 "Cannot handle this yet!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002689 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Nate Begeman35ef9132006-01-11 21:21:00 +00002690 break;
2691
Nate Begemand88fc032006-01-14 03:14:10 +00002692 case ISD::BSWAP:
2693 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2694 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002695 case TargetLowering::Custom:
2696 assert(0 && "Cannot custom legalize this yet!");
2697 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002698 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002699 break;
2700 case TargetLowering::Promote: {
2701 MVT::ValueType OVT = Tmp1.getValueType();
2702 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2703 unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00002704
Chris Lattner456a93a2006-01-28 07:39:30 +00002705 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2706 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2707 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2708 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2709 break;
2710 }
2711 case TargetLowering::Expand:
2712 Result = ExpandBSWAP(Tmp1);
2713 break;
Nate Begemand88fc032006-01-14 03:14:10 +00002714 }
2715 break;
2716
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002717 case ISD::CTPOP:
2718 case ISD::CTTZ:
2719 case ISD::CTLZ:
2720 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2721 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002722 case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002723 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002724 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002725 break;
2726 case TargetLowering::Promote: {
2727 MVT::ValueType OVT = Tmp1.getValueType();
2728 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00002729
2730 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002731 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2732 // Perform the larger operation, then subtract if needed.
2733 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002734 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002735 case ISD::CTPOP:
2736 Result = Tmp1;
2737 break;
2738 case ISD::CTTZ:
2739 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002740 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2741 DAG.getConstant(getSizeInBits(NVT), NVT),
2742 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00002743 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002744 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2745 break;
2746 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00002747 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00002748 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2749 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002750 getSizeInBits(OVT), NVT));
2751 break;
2752 }
2753 break;
2754 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002755 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002756 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002757 break;
2758 }
2759 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00002760
Chris Lattner2c8086f2005-04-02 05:00:07 +00002761 // Unary operators
2762 case ISD::FABS:
2763 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00002764 case ISD::FSQRT:
2765 case ISD::FSIN:
2766 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002767 Tmp1 = LegalizeOp(Node->getOperand(0));
2768 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002769 case TargetLowering::Promote:
2770 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00002771 isCustom = true;
2772 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00002773 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002774 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00002775 if (isCustom) {
2776 Tmp1 = TLI.LowerOperation(Result, DAG);
2777 if (Tmp1.Val) Result = Tmp1;
2778 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002779 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00002780 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002781 switch (Node->getOpcode()) {
2782 default: assert(0 && "Unreachable!");
2783 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002784 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2785 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002786 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002787 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002788 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002789 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2790 MVT::ValueType VT = Node->getValueType(0);
2791 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002792 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002793 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2794 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002795 break;
2796 }
2797 case ISD::FSQRT:
2798 case ISD::FSIN:
2799 case ISD::FCOS: {
2800 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng56966222007-01-12 02:11:51 +00002801 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002802 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00002803 case ISD::FSQRT:
2804 LC = VT == MVT::f32 ? RTLIB::SQRT_F32 : RTLIB::SQRT_F64;
2805 break;
2806 case ISD::FSIN:
2807 LC = VT == MVT::f32 ? RTLIB::SIN_F32 : RTLIB::SIN_F64;
2808 break;
2809 case ISD::FCOS:
2810 LC = VT == MVT::f32 ? RTLIB::COS_F32 : RTLIB::COS_F64;
2811 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002812 default: assert(0 && "Unreachable!");
2813 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00002814 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002815 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2816 false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002817 break;
2818 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002819 }
2820 break;
2821 }
2822 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002823 case ISD::FPOWI: {
2824 // We always lower FPOWI into a libcall. No target support it yet.
Evan Cheng56966222007-01-12 02:11:51 +00002825 RTLIB::Libcall LC = Node->getValueType(0) == MVT::f32
2826 ? RTLIB::POWI_F32 : RTLIB::POWI_F64;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002827 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002828 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2829 false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002830 break;
2831 }
Chris Lattner35481892005-12-23 00:16:34 +00002832 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00002833 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner35481892005-12-23 00:16:34 +00002834 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Chris Lattner67993f72006-01-23 07:30:46 +00002835 } else {
Chris Lattner35481892005-12-23 00:16:34 +00002836 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2837 Node->getOperand(0).getValueType())) {
2838 default: assert(0 && "Unknown operation action!");
2839 case TargetLowering::Expand:
2840 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2841 break;
2842 case TargetLowering::Legal:
2843 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002844 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00002845 break;
2846 }
2847 }
2848 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00002849 case ISD::VBIT_CONVERT: {
2850 assert(Op.getOperand(0).getValueType() == MVT::Vector &&
2851 "Can only have VBIT_CONVERT where input or output is MVT::Vector!");
2852
2853 // The input has to be a vector type, we have to either scalarize it, pack
2854 // it, or convert it based on whether the input vector type is legal.
2855 SDNode *InVal = Node->getOperand(0).Val;
2856 unsigned NumElems =
2857 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
2858 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
2859
2860 // Figure out if there is a Packed type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002861 // type. If so, convert to the vector type.
Chris Lattnerd1f04d42006-03-24 02:26:29 +00002862 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
2863 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
2864 // Turn this into a bit convert of the packed input.
2865 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2866 PackVectorOp(Node->getOperand(0), TVT));
2867 break;
2868 } else if (NumElems == 1) {
2869 // Turn this into a bit convert of the scalar input.
2870 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2871 PackVectorOp(Node->getOperand(0), EVT));
2872 break;
2873 } else {
2874 // FIXME: UNIMP! Store then reload
2875 assert(0 && "Cast from unsupported vector type not implemented yet!");
2876 }
2877 }
2878
Chris Lattner2c8086f2005-04-02 05:00:07 +00002879 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00002880 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002881 case ISD::UINT_TO_FP: {
2882 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002883 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2884 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002885 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002886 Node->getOperand(0).getValueType())) {
2887 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002888 case TargetLowering::Custom:
2889 isCustom = true;
2890 // FALLTHROUGH
2891 case TargetLowering::Legal:
2892 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002893 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002894 if (isCustom) {
2895 Tmp1 = TLI.LowerOperation(Result, DAG);
2896 if (Tmp1.Val) Result = Tmp1;
2897 }
2898 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002899 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00002900 Result = ExpandLegalINT_TO_FP(isSigned,
2901 LegalizeOp(Node->getOperand(0)),
2902 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002903 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002904 case TargetLowering::Promote:
2905 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2906 Node->getValueType(0),
2907 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002908 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00002909 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002910 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00002911 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002912 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2913 Node->getValueType(0), Node->getOperand(0));
2914 break;
2915 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002916 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002917 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002918 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2919 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002920 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002921 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2922 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00002923 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002924 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2925 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002926 break;
2927 }
2928 break;
2929 }
2930 case ISD::TRUNCATE:
2931 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2932 case Legal:
2933 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002934 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002935 break;
2936 case Expand:
2937 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2938
2939 // Since the result is legal, we should just be able to truncate the low
2940 // part of the source.
2941 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2942 break;
2943 case Promote:
2944 Result = PromoteOp(Node->getOperand(0));
2945 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2946 break;
2947 }
2948 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002949
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002950 case ISD::FP_TO_SINT:
2951 case ISD::FP_TO_UINT:
2952 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2953 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00002954 Tmp1 = LegalizeOp(Node->getOperand(0));
2955
Chris Lattner1618beb2005-07-29 00:11:56 +00002956 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2957 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002958 case TargetLowering::Custom:
2959 isCustom = true;
2960 // FALLTHROUGH
2961 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002962 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002963 if (isCustom) {
2964 Tmp1 = TLI.LowerOperation(Result, DAG);
2965 if (Tmp1.Val) Result = Tmp1;
2966 }
2967 break;
2968 case TargetLowering::Promote:
2969 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2970 Node->getOpcode() == ISD::FP_TO_SINT);
2971 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00002972 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00002973 if (Node->getOpcode() == ISD::FP_TO_UINT) {
2974 SDOperand True, False;
2975 MVT::ValueType VT = Node->getOperand(0).getValueType();
2976 MVT::ValueType NVT = Node->getValueType(0);
2977 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2978 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2979 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2980 Node->getOperand(0), Tmp2, ISD::SETLT);
2981 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2982 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00002983 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00002984 Tmp2));
2985 False = DAG.getNode(ISD::XOR, NVT, False,
2986 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00002987 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2988 break;
Nate Begemand2558e32005-08-14 01:20:53 +00002989 } else {
2990 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2991 }
2992 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00002993 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002994 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00002995 case Expand: {
2996 // Convert f32 / f64 to i32 / i64.
2997 MVT::ValueType VT = Op.getValueType();
Evan Cheng56966222007-01-12 02:11:51 +00002998 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00002999 switch (Node->getOpcode()) {
3000 case ISD::FP_TO_SINT:
3001 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003002 LC = (VT == MVT::i32)
3003 ? RTLIB::FPTOSINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00003004 else
Evan Cheng56966222007-01-12 02:11:51 +00003005 LC = (VT == MVT::i32)
3006 ? RTLIB::FPTOSINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00003007 break;
3008 case ISD::FP_TO_UINT:
3009 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003010 LC = (VT == MVT::i32)
3011 ? RTLIB::FPTOUINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00003012 else
Evan Cheng56966222007-01-12 02:11:51 +00003013 LC = (VT == MVT::i32)
3014 ? RTLIB::FPTOUINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00003015 break;
3016 default: assert(0 && "Unreachable!");
3017 }
3018 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003019 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3020 false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003021 break;
3022 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003023 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003024 Tmp1 = PromoteOp(Node->getOperand(0));
3025 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3026 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003027 break;
3028 }
3029 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003030
Chris Lattner13c78e22005-09-02 00:18:10 +00003031 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003032 case ISD::ZERO_EXTEND:
3033 case ISD::SIGN_EXTEND:
3034 case ISD::FP_EXTEND:
3035 case ISD::FP_ROUND:
3036 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003037 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003038 case Legal:
3039 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003040 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003041 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003042 case Promote:
3043 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003044 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003045 Tmp1 = PromoteOp(Node->getOperand(0));
3046 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003047 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003048 case ISD::ZERO_EXTEND:
3049 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003050 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003051 Result = DAG.getZeroExtendInReg(Result,
3052 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003053 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003054 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003055 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003056 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003057 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003058 Result,
3059 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003060 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003061 case ISD::FP_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003062 Result = PromoteOp(Node->getOperand(0));
3063 if (Result.getValueType() != Op.getValueType())
3064 // Dynamically dead while we have only 2 FP types.
3065 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
3066 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003067 case ISD::FP_ROUND:
Chris Lattnerf8161d82005-01-16 05:06:12 +00003068 Result = PromoteOp(Node->getOperand(0));
3069 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
3070 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003071 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003072 }
3073 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003074 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003075 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003076 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003077 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003078
3079 // If this operation is not supported, convert it to a shl/shr or load/store
3080 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003081 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3082 default: assert(0 && "This action not supported for this op yet!");
3083 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003084 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003085 break;
3086 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003087 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003088 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003089 // NOTE: we could fall back on load/store here too for targets without
3090 // SAR. However, it is doubtful that any exist.
3091 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
3092 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00003093 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003094 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3095 Node->getOperand(0), ShiftCst);
3096 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3097 Result, ShiftCst);
3098 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003099 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003100 // EXTLOAD pair, targetting a temporary location (a stack slot).
3101
3102 // NOTE: there is a choice here between constantly creating new stack
3103 // slots and always reusing the same one. We currently always create
3104 // new ones, as reuse may inhibit scheduling.
3105 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Owen Andersona69571c2006-05-03 01:29:57 +00003106 unsigned TySize = (unsigned)TLI.getTargetData()->getTypeSize(Ty);
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00003107 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
Chris Lattner45b8caf2005-01-15 07:15:18 +00003108 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukmanedf128a2005-04-21 22:36:52 +00003109 int SSFI =
Chris Lattner45b8caf2005-01-15 07:15:18 +00003110 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
3111 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003112 Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
3113 StackSlot, NULL, 0, ExtraVT);
Chris Lattner5f056bf2005-07-10 01:55:33 +00003114 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
Evan Cheng466685d2006-10-09 20:57:25 +00003115 Result, StackSlot, NULL, 0, ExtraVT);
Chris Lattner45b8caf2005-01-15 07:15:18 +00003116 } else {
3117 assert(0 && "Unknown op");
3118 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003119 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003120 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003121 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003122 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003123 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003124
Chris Lattner4ddd2832006-04-08 04:13:17 +00003125 assert(Result.getValueType() == Op.getValueType() &&
3126 "Bad legalization!");
3127
Chris Lattner456a93a2006-01-28 07:39:30 +00003128 // Make sure that the generated code is itself legal.
3129 if (Result != Op)
3130 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003131
Chris Lattner45982da2005-05-12 16:53:42 +00003132 // Note that LegalizeOp may be reentered even from single-use nodes, which
3133 // means that we always must cache transformed nodes.
3134 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003135 return Result;
3136}
3137
Chris Lattner8b6fa222005-01-15 22:16:26 +00003138/// PromoteOp - Given an operation that produces a value in an invalid type,
3139/// promote it to compute the value into a larger type. The produced value will
3140/// have the correct bits for the low portion of the register, but no guarantee
3141/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00003142SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
3143 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00003144 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00003145 assert(getTypeAction(VT) == Promote &&
3146 "Caller should expand or legalize operands that are not promotable!");
3147 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
3148 "Cannot promote to smaller type!");
3149
Chris Lattner03c85462005-01-15 05:21:40 +00003150 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00003151 SDOperand Result;
3152 SDNode *Node = Op.Val;
3153
Chris Lattner40030bf2007-02-04 01:17:38 +00003154 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00003155 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00003156
Chris Lattner03c85462005-01-15 05:21:40 +00003157 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003158 case ISD::CopyFromReg:
3159 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00003160 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003161#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +00003162 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003163#endif
Chris Lattner03c85462005-01-15 05:21:40 +00003164 assert(0 && "Do not know how to promote this operator!");
3165 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003166 case ISD::UNDEF:
3167 Result = DAG.getNode(ISD::UNDEF, NVT);
3168 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003169 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00003170 if (VT != MVT::i1)
3171 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
3172 else
3173 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00003174 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
3175 break;
3176 case ISD::ConstantFP:
3177 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
3178 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
3179 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00003180
Chris Lattner82fbfb62005-01-18 02:59:52 +00003181 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003182 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003183 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
3184 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00003185 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00003186
Chris Lattner03c85462005-01-15 05:21:40 +00003187 case ISD::TRUNCATE:
3188 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3189 case Legal:
3190 Result = LegalizeOp(Node->getOperand(0));
3191 assert(Result.getValueType() >= NVT &&
3192 "This truncation doesn't make sense!");
3193 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
3194 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
3195 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00003196 case Promote:
3197 // The truncation is not required, because we don't guarantee anything
3198 // about high bits anyway.
3199 Result = PromoteOp(Node->getOperand(0));
3200 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003201 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00003202 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3203 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00003204 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00003205 }
3206 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003207 case ISD::SIGN_EXTEND:
3208 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00003209 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003210 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3211 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
3212 case Legal:
3213 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00003214 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003215 break;
3216 case Promote:
3217 // Promote the reg if it's smaller.
3218 Result = PromoteOp(Node->getOperand(0));
3219 // The high bits are not guaranteed to be anything. Insert an extend.
3220 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00003221 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00003222 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00003223 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00003224 Result = DAG.getZeroExtendInReg(Result,
3225 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00003226 break;
3227 }
3228 break;
Chris Lattner35481892005-12-23 00:16:34 +00003229 case ISD::BIT_CONVERT:
3230 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3231 Result = PromoteOp(Result);
3232 break;
3233
Chris Lattner8b6fa222005-01-15 22:16:26 +00003234 case ISD::FP_EXTEND:
3235 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
3236 case ISD::FP_ROUND:
3237 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3238 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3239 case Promote: assert(0 && "Unreachable with 2 FP types!");
3240 case Legal:
3241 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner456a93a2006-01-28 07:39:30 +00003242 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner15e4b012005-07-10 00:07:11 +00003243 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003244 break;
3245 }
3246 break;
3247
3248 case ISD::SINT_TO_FP:
3249 case ISD::UINT_TO_FP:
3250 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3251 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00003252 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00003253 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003254 break;
3255
3256 case Promote:
3257 Result = PromoteOp(Node->getOperand(0));
3258 if (Node->getOpcode() == ISD::SINT_TO_FP)
3259 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003260 Result,
3261 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003262 else
Chris Lattner23993562005-04-13 02:38:47 +00003263 Result = DAG.getZeroExtendInReg(Result,
3264 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003265 // No extra round required here.
3266 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003267 break;
3268 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00003269 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3270 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00003271 // Round if we cannot tolerate excess precision.
3272 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003273 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3274 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00003275 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003276 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003277 break;
3278
Chris Lattner5e3c5b42005-12-09 17:32:47 +00003279 case ISD::SIGN_EXTEND_INREG:
3280 Result = PromoteOp(Node->getOperand(0));
3281 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3282 Node->getOperand(1));
3283 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003284 case ISD::FP_TO_SINT:
3285 case ISD::FP_TO_UINT:
3286 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3287 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00003288 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003289 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003290 break;
3291 case Promote:
3292 // The input result is prerounded, so we don't have to do anything
3293 // special.
3294 Tmp1 = PromoteOp(Node->getOperand(0));
3295 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003296 }
Nate Begemand2558e32005-08-14 01:20:53 +00003297 // If we're promoting a UINT to a larger size, check to see if the new node
3298 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3299 // we can use that instead. This allows us to generate better code for
3300 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3301 // legal, such as PowerPC.
3302 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003303 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00003304 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3305 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00003306 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3307 } else {
3308 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3309 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003310 break;
3311
Chris Lattner2c8086f2005-04-02 05:00:07 +00003312 case ISD::FABS:
3313 case ISD::FNEG:
3314 Tmp1 = PromoteOp(Node->getOperand(0));
3315 assert(Tmp1.getValueType() == NVT);
3316 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3317 // NOTE: we do not have to do any extra rounding here for
3318 // NoExcessFPPrecision, because we know the input will have the appropriate
3319 // precision, and these operations don't modify precision at all.
3320 break;
3321
Chris Lattnerda6ba872005-04-28 21:44:33 +00003322 case ISD::FSQRT:
3323 case ISD::FSIN:
3324 case ISD::FCOS:
3325 Tmp1 = PromoteOp(Node->getOperand(0));
3326 assert(Tmp1.getValueType() == NVT);
3327 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003328 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003329 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3330 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00003331 break;
3332
Chris Lattner8b2d42c2007-03-03 23:43:21 +00003333 case ISD::FPOWI: {
3334 // Promote f32 powi to f64 powi. Note that this could insert a libcall
3335 // directly as well, which may be better.
3336 Tmp1 = PromoteOp(Node->getOperand(0));
3337 assert(Tmp1.getValueType() == NVT);
3338 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
3339 if (NoExcessFPPrecision)
3340 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3341 DAG.getValueType(VT));
3342 break;
3343 }
3344
Chris Lattner03c85462005-01-15 05:21:40 +00003345 case ISD::AND:
3346 case ISD::OR:
3347 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00003348 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003349 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00003350 case ISD::MUL:
3351 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00003352 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00003353 // that too is okay if they are integer operations.
3354 Tmp1 = PromoteOp(Node->getOperand(0));
3355 Tmp2 = PromoteOp(Node->getOperand(1));
3356 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3357 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00003358 break;
3359 case ISD::FADD:
3360 case ISD::FSUB:
3361 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00003362 Tmp1 = PromoteOp(Node->getOperand(0));
3363 Tmp2 = PromoteOp(Node->getOperand(1));
3364 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3365 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3366
3367 // Floating point operations will give excess precision that we may not be
3368 // able to tolerate. If we DO allow excess precision, just leave it,
3369 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00003370 // FIXME: Why would we need to round FP ops more than integer ones?
3371 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00003372 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003373 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3374 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00003375 break;
3376
Chris Lattner8b6fa222005-01-15 22:16:26 +00003377 case ISD::SDIV:
3378 case ISD::SREM:
3379 // These operators require that their input be sign extended.
3380 Tmp1 = PromoteOp(Node->getOperand(0));
3381 Tmp2 = PromoteOp(Node->getOperand(1));
3382 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00003383 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3384 DAG.getValueType(VT));
3385 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3386 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003387 }
3388 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3389
3390 // Perform FP_ROUND: this is probably overly pessimistic.
3391 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003392 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3393 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003394 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00003395 case ISD::FDIV:
3396 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00003397 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00003398 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00003399 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3400 case Legal:
3401 Tmp1 = LegalizeOp(Node->getOperand(0));
3402 break;
3403 case Promote:
3404 Tmp1 = PromoteOp(Node->getOperand(0));
3405 break;
3406 case Expand:
3407 assert(0 && "not implemented");
3408 }
3409 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3410 case Legal:
3411 Tmp2 = LegalizeOp(Node->getOperand(1));
3412 break;
3413 case Promote:
3414 Tmp2 = PromoteOp(Node->getOperand(1));
3415 break;
3416 case Expand:
3417 assert(0 && "not implemented");
3418 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003419 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3420
3421 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00003422 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00003423 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3424 DAG.getValueType(VT));
3425 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003426
3427 case ISD::UDIV:
3428 case ISD::UREM:
3429 // These operators require that their input be zero extended.
3430 Tmp1 = PromoteOp(Node->getOperand(0));
3431 Tmp2 = PromoteOp(Node->getOperand(1));
3432 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00003433 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3434 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003435 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3436 break;
3437
3438 case ISD::SHL:
3439 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003440 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003441 break;
3442 case ISD::SRA:
3443 // The input value must be properly sign extended.
3444 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003445 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3446 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003447 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003448 break;
3449 case ISD::SRL:
3450 // The input value must be properly zero extended.
3451 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00003452 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00003453 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003454 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00003455
3456 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00003457 Tmp1 = Node->getOperand(0); // Get the chain.
3458 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00003459 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3460 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3461 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3462 } else {
Evan Cheng466685d2006-10-09 20:57:25 +00003463 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begeman0aed7842006-01-28 03:14:31 +00003464 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00003465 SV->getValue(), SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003466 // Increment the pointer, VAList, to the next vaarg
3467 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3468 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3469 TLI.getPointerTy()));
3470 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00003471 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
3472 SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003473 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003474 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00003475 }
3476 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003477 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00003478 break;
3479
Evan Cheng466685d2006-10-09 20:57:25 +00003480 case ISD::LOAD: {
3481 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00003482 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
3483 ? ISD::EXTLOAD : LD->getExtensionType();
3484 Result = DAG.getExtLoad(ExtType, NVT,
3485 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00003486 LD->getSrcValue(), LD->getSrcValueOffset(),
Evan Cheng2e49f092006-10-11 07:10:22 +00003487 LD->getLoadedVT());
Chris Lattner03c85462005-01-15 05:21:40 +00003488 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003489 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00003490 break;
Evan Cheng466685d2006-10-09 20:57:25 +00003491 }
Chris Lattner03c85462005-01-15 05:21:40 +00003492 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00003493 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
3494 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00003495 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00003496 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003497 case ISD::SELECT_CC:
3498 Tmp2 = PromoteOp(Node->getOperand(2)); // True
3499 Tmp3 = PromoteOp(Node->getOperand(3)); // False
3500 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00003501 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00003502 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003503 case ISD::BSWAP:
3504 Tmp1 = Node->getOperand(0);
3505 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3506 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3507 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3508 DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
3509 TLI.getShiftAmountTy()));
3510 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003511 case ISD::CTPOP:
3512 case ISD::CTTZ:
3513 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003514 // Zero extend the argument
3515 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003516 // Perform the larger operation, then subtract if needed.
3517 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003518 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003519 case ISD::CTPOP:
3520 Result = Tmp1;
3521 break;
3522 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003523 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00003524 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003525 DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003526 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Chris Lattner456a93a2006-01-28 07:39:30 +00003527 DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003528 break;
3529 case ISD::CTLZ:
3530 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003531 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
3532 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003533 getSizeInBits(VT), NVT));
3534 break;
3535 }
3536 break;
Chris Lattner15972212006-03-31 17:55:51 +00003537 case ISD::VEXTRACT_VECTOR_ELT:
3538 Result = PromoteOp(LowerVEXTRACT_VECTOR_ELT(Op));
3539 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00003540 case ISD::EXTRACT_VECTOR_ELT:
3541 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3542 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003543 }
3544
3545 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003546
3547 // Make sure the result is itself legal.
3548 Result = LegalizeOp(Result);
3549
3550 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00003551 AddPromotedOperand(Op, Result);
3552 return Result;
3553}
Chris Lattner3e928bb2005-01-07 07:47:09 +00003554
Chris Lattner15972212006-03-31 17:55:51 +00003555/// LowerVEXTRACT_VECTOR_ELT - Lower a VEXTRACT_VECTOR_ELT operation into a
3556/// EXTRACT_VECTOR_ELT operation, to memory operations, or to scalar code based
3557/// on the vector type. The return type of this matches the element type of the
3558/// vector, which may not be legal for the target.
3559SDOperand SelectionDAGLegalize::LowerVEXTRACT_VECTOR_ELT(SDOperand Op) {
3560 // We know that operand #0 is the Vec vector. If the index is a constant
3561 // or if the invec is a supported hardware type, we can use it. Otherwise,
3562 // lower to a store then an indexed load.
3563 SDOperand Vec = Op.getOperand(0);
3564 SDOperand Idx = LegalizeOp(Op.getOperand(1));
3565
3566 SDNode *InVal = Vec.Val;
3567 unsigned NumElems = cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
3568 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
3569
3570 // Figure out if there is a Packed type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00003571 // type. If so, convert to the vector type.
Chris Lattner15972212006-03-31 17:55:51 +00003572 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3573 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
3574 // Turn this into a packed extract_vector_elt operation.
3575 Vec = PackVectorOp(Vec, TVT);
3576 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, Op.getValueType(), Vec, Idx);
3577 } else if (NumElems == 1) {
3578 // This must be an access of the only element. Return it.
3579 return PackVectorOp(Vec, EVT);
3580 } else if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
3581 SDOperand Lo, Hi;
3582 SplitVectorOp(Vec, Lo, Hi);
3583 if (CIdx->getValue() < NumElems/2) {
3584 Vec = Lo;
3585 } else {
3586 Vec = Hi;
3587 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3588 }
3589
3590 // It's now an extract from the appropriate high or low part. Recurse.
3591 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3592 return LowerVEXTRACT_VECTOR_ELT(Op);
3593 } else {
3594 // Variable index case for extract element.
3595 // FIXME: IMPLEMENT STORE/LOAD lowering. Need alignment of stack slot!!
3596 assert(0 && "unimp!");
3597 return SDOperand();
3598 }
3599}
3600
Chris Lattner4aab2f42006-04-02 05:06:04 +00003601/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3602/// memory traffic.
3603SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
3604 SDOperand Vector = Op.getOperand(0);
3605 SDOperand Idx = Op.getOperand(1);
3606
3607 // If the target doesn't support this, store the value to a temporary
3608 // stack slot, then LOAD the scalar element back out.
3609 SDOperand StackPtr = CreateStackTemporary(Vector.getValueType());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003610 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vector, StackPtr, NULL, 0);
Chris Lattner4aab2f42006-04-02 05:06:04 +00003611
3612 // Add the offset to the index.
3613 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3614 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3615 DAG.getConstant(EltSize, Idx.getValueType()));
3616 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3617
Evan Cheng466685d2006-10-09 20:57:25 +00003618 return DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner4aab2f42006-04-02 05:06:04 +00003619}
3620
Chris Lattner15972212006-03-31 17:55:51 +00003621
Nate Begeman750ac1b2006-02-01 07:19:44 +00003622/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3623/// with condition CC on the current target. This usually involves legalizing
3624/// or promoting the arguments. In the case where LHS and RHS must be expanded,
3625/// there may be no choice but to create a new SetCC node to represent the
3626/// legalized value of setcc lhs, rhs. In this case, the value is returned in
3627/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3628void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3629 SDOperand &RHS,
3630 SDOperand &CC) {
3631 SDOperand Tmp1, Tmp2, Result;
3632
3633 switch (getTypeAction(LHS.getValueType())) {
3634 case Legal:
3635 Tmp1 = LegalizeOp(LHS); // LHS
3636 Tmp2 = LegalizeOp(RHS); // RHS
3637 break;
3638 case Promote:
3639 Tmp1 = PromoteOp(LHS); // LHS
3640 Tmp2 = PromoteOp(RHS); // RHS
3641
3642 // If this is an FP compare, the operands have already been extended.
3643 if (MVT::isInteger(LHS.getValueType())) {
3644 MVT::ValueType VT = LHS.getValueType();
3645 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3646
3647 // Otherwise, we have to insert explicit sign or zero extends. Note
3648 // that we could insert sign extends for ALL conditions, but zero extend
3649 // is cheaper on many machines (an AND instead of two shifts), so prefer
3650 // it.
3651 switch (cast<CondCodeSDNode>(CC)->get()) {
3652 default: assert(0 && "Unknown integer comparison!");
3653 case ISD::SETEQ:
3654 case ISD::SETNE:
3655 case ISD::SETUGE:
3656 case ISD::SETUGT:
3657 case ISD::SETULE:
3658 case ISD::SETULT:
3659 // ALL of these operations will work if we either sign or zero extend
3660 // the operands (including the unsigned comparisons!). Zero extend is
3661 // usually a simpler/cheaper operation, so prefer it.
3662 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3663 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3664 break;
3665 case ISD::SETGE:
3666 case ISD::SETGT:
3667 case ISD::SETLT:
3668 case ISD::SETLE:
3669 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3670 DAG.getValueType(VT));
3671 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3672 DAG.getValueType(VT));
3673 break;
3674 }
3675 }
3676 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00003677 case Expand: {
3678 MVT::ValueType VT = LHS.getValueType();
3679 if (VT == MVT::f32 || VT == MVT::f64) {
3680 // Expand into one or more soft-fp libcall(s).
Evan Cheng56966222007-01-12 02:11:51 +00003681 RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00003682 switch (cast<CondCodeSDNode>(CC)->get()) {
3683 case ISD::SETEQ:
3684 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00003685 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003686 break;
3687 case ISD::SETNE:
3688 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00003689 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003690 break;
3691 case ISD::SETGE:
3692 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00003693 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003694 break;
3695 case ISD::SETLT:
3696 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00003697 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003698 break;
3699 case ISD::SETLE:
3700 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00003701 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003702 break;
3703 case ISD::SETGT:
3704 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00003705 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003706 break;
3707 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00003708 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
3709 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00003710 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00003711 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003712 break;
3713 default:
Evan Cheng56966222007-01-12 02:11:51 +00003714 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003715 switch (cast<CondCodeSDNode>(CC)->get()) {
3716 case ISD::SETONE:
3717 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00003718 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003719 // Fallthrough
3720 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00003721 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003722 break;
3723 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00003724 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003725 break;
3726 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00003727 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003728 break;
3729 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00003730 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003731 break;
Evan Cheng56966222007-01-12 02:11:51 +00003732 case ISD::SETUEQ:
3733 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00003734 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00003735 default: assert(0 && "Unsupported FP setcc!");
3736 }
3737 }
3738
3739 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003740 Tmp1 = ExpandLibCall(TLI.getLibcallName(LC1),
Reid Spencer47857812006-12-31 05:55:36 +00003741 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00003742 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00003743 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00003744 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00003745 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Evan Cheng2b49c502006-12-15 02:59:56 +00003746 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), Tmp1, Tmp2, CC);
Evan Cheng56966222007-01-12 02:11:51 +00003747 LHS = ExpandLibCall(TLI.getLibcallName(LC2),
Reid Spencer47857812006-12-31 05:55:36 +00003748 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00003749 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00003750 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00003751 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00003752 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3753 Tmp2 = SDOperand();
3754 }
3755 LHS = Tmp1;
3756 RHS = Tmp2;
3757 return;
3758 }
3759
Nate Begeman750ac1b2006-02-01 07:19:44 +00003760 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
3761 ExpandOp(LHS, LHSLo, LHSHi);
Evan Cheng2b49c502006-12-15 02:59:56 +00003762 ExpandOp(RHS, RHSLo, RHSHi);
Nate Begeman750ac1b2006-02-01 07:19:44 +00003763 switch (cast<CondCodeSDNode>(CC)->get()) {
3764 case ISD::SETEQ:
3765 case ISD::SETNE:
3766 if (RHSLo == RHSHi)
3767 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
3768 if (RHSCST->isAllOnesValue()) {
3769 // Comparison to -1.
3770 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
3771 Tmp2 = RHSLo;
3772 break;
3773 }
3774
3775 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
3776 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
3777 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3778 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3779 break;
3780 default:
3781 // If this is a comparison of the sign bit, just look at the top part.
3782 // X > -1, x < 0
3783 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
3784 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
3785 CST->getValue() == 0) || // X < 0
3786 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
3787 CST->isAllOnesValue())) { // X > -1
3788 Tmp1 = LHSHi;
3789 Tmp2 = RHSHi;
3790 break;
3791 }
3792
3793 // FIXME: This generated code sucks.
3794 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00003795 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
3796 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003797 default: assert(0 && "Unknown integer setcc!");
3798 case ISD::SETLT:
3799 case ISD::SETULT: LowCC = ISD::SETULT; break;
3800 case ISD::SETGT:
3801 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
3802 case ISD::SETLE:
3803 case ISD::SETULE: LowCC = ISD::SETULE; break;
3804 case ISD::SETGE:
3805 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
3806 }
3807
3808 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
3809 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
3810 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
3811
3812 // NOTE: on targets without efficient SELECT of bools, we can always use
3813 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00003814 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
3815 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC,
3816 false, DagCombineInfo);
3817 if (!Tmp1.Val)
3818 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
3819 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
3820 CCCode, false, DagCombineInfo);
3821 if (!Tmp2.Val)
3822 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
3823
3824 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
3825 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
3826 if ((Tmp1C && Tmp1C->getValue() == 0) ||
3827 (Tmp2C && Tmp2C->getValue() == 0 &&
3828 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
3829 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
3830 (Tmp2C && Tmp2C->getValue() == 1 &&
3831 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
3832 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
3833 // low part is known false, returns high part.
3834 // For LE / GE, if high part is known false, ignore the low part.
3835 // For LT / GT, if high part is known true, ignore the low part.
3836 Tmp1 = Tmp2;
3837 Tmp2 = SDOperand();
3838 } else {
3839 Result = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
3840 ISD::SETEQ, false, DagCombineInfo);
3841 if (!Result.Val)
3842 Result=DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
3843 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
3844 Result, Tmp1, Tmp2));
3845 Tmp1 = Result;
3846 Tmp2 = SDOperand();
3847 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00003848 }
3849 }
Evan Cheng2b49c502006-12-15 02:59:56 +00003850 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00003851 LHS = Tmp1;
3852 RHS = Tmp2;
3853}
3854
Chris Lattner35481892005-12-23 00:16:34 +00003855/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner232348d2005-12-23 00:52:30 +00003856/// The resultant code need not be legal. Note that SrcOp is the input operand
3857/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner35481892005-12-23 00:16:34 +00003858SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
3859 SDOperand SrcOp) {
3860 // Create the stack frame object.
Chris Lattnerce872152006-03-19 06:31:19 +00003861 SDOperand FIPtr = CreateStackTemporary(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00003862
3863 // Emit a store to the stack slot.
Evan Cheng8b2794a2006-10-13 21:14:26 +00003864 SDOperand Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00003865 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00003866 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00003867}
3868
Chris Lattner4352cc92006-04-04 17:23:26 +00003869SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
3870 // Create a vector sized/aligned stack slot, store the value to element #0,
3871 // then load the whole vector back out.
3872 SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
Evan Cheng786225a2006-10-05 23:01:46 +00003873 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003874 NULL, 0);
Evan Cheng466685d2006-10-09 20:57:25 +00003875 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, NULL, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00003876}
3877
3878
Chris Lattnerce872152006-03-19 06:31:19 +00003879/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
3880/// support the operation, but do support the resultant packed vector type.
3881SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
3882
3883 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00003884 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00003885 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00003886 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00003887 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng033e6812006-03-24 01:17:21 +00003888 std::map<SDOperand, std::vector<unsigned> > Values;
3889 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003890 bool isConstant = true;
3891 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
3892 SplatValue.getOpcode() != ISD::UNDEF)
3893 isConstant = false;
3894
Evan Cheng033e6812006-03-24 01:17:21 +00003895 for (unsigned i = 1; i < NumElems; ++i) {
3896 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00003897 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00003898 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00003899 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00003900 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00003901 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003902
3903 // If this isn't a constant element or an undef, we can't use a constant
3904 // pool load.
3905 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
3906 V.getOpcode() != ISD::UNDEF)
3907 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00003908 }
3909
3910 if (isOnlyLowElement) {
3911 // If the low element is an undef too, then this whole things is an undef.
3912 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
3913 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
3914 // Otherwise, turn this into a scalar_to_vector node.
3915 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3916 Node->getOperand(0));
3917 }
3918
Chris Lattner2eb86532006-03-24 07:29:17 +00003919 // If all elements are constants, create a load from the constant pool.
3920 if (isConstant) {
3921 MVT::ValueType VT = Node->getValueType(0);
3922 const Type *OpNTy =
3923 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
3924 std::vector<Constant*> CV;
3925 for (unsigned i = 0, e = NumElems; i != e; ++i) {
3926 if (ConstantFPSDNode *V =
3927 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
3928 CV.push_back(ConstantFP::get(OpNTy, V->getValue()));
3929 } else if (ConstantSDNode *V =
3930 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencerb83eb642006-10-20 07:07:24 +00003931 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00003932 } else {
3933 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
3934 CV.push_back(UndefValue::get(OpNTy));
3935 }
3936 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00003937 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00003938 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng466685d2006-10-09 20:57:25 +00003939 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003940 }
3941
Chris Lattner87100e02006-03-20 01:52:29 +00003942 if (SplatValue.Val) { // Splat of one value?
3943 // Build the shuffle constant vector: <0, 0, 0, 0>
3944 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00003945 MVT::getIntVectorWithNumElements(NumElems);
Chris Lattner87100e02006-03-20 01:52:29 +00003946 SDOperand Zero = DAG.getConstant(0, MVT::getVectorBaseType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00003947 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003948 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3949 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00003950
3951 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003952 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00003953 // Get the splatted value into the low element of a vector register.
3954 SDOperand LowValVec =
3955 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
3956
3957 // Return shuffle(LowValVec, undef, <0,0,0,0>)
3958 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
3959 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
3960 SplatMask);
3961 }
3962 }
3963
Evan Cheng033e6812006-03-24 01:17:21 +00003964 // If there are only two unique elements, we may be able to turn this into a
3965 // vector shuffle.
3966 if (Values.size() == 2) {
3967 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
3968 MVT::ValueType MaskVT =
3969 MVT::getIntVectorWithNumElements(NumElems);
3970 std::vector<SDOperand> MaskVec(NumElems);
3971 unsigned i = 0;
3972 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3973 E = Values.end(); I != E; ++I) {
3974 for (std::vector<unsigned>::iterator II = I->second.begin(),
3975 EE = I->second.end(); II != EE; ++II)
3976 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorBaseType(MaskVT));
3977 i += NumElems;
3978 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003979 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3980 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00003981
3982 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003983 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
3984 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003985 SmallVector<SDOperand, 8> Ops;
Evan Cheng033e6812006-03-24 01:17:21 +00003986 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3987 E = Values.end(); I != E; ++I) {
3988 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3989 I->first);
3990 Ops.push_back(Op);
3991 }
3992 Ops.push_back(ShuffleMask);
3993
3994 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003995 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
3996 &Ops[0], Ops.size());
Evan Cheng033e6812006-03-24 01:17:21 +00003997 }
3998 }
Chris Lattnerce872152006-03-19 06:31:19 +00003999
4000 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
4001 // aligned object on the stack, store each element into it, then load
4002 // the result as a vector.
4003 MVT::ValueType VT = Node->getValueType(0);
4004 // Create the stack frame object.
4005 SDOperand FIPtr = CreateStackTemporary(VT);
4006
4007 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004008 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00004009 unsigned TypeByteSize =
4010 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00004011 // Store (in the right endianness) the elements to memory.
4012 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4013 // Ignore undef elements.
4014 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4015
Chris Lattner841c8822006-03-22 01:46:54 +00004016 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00004017
4018 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
4019 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
4020
Evan Cheng786225a2006-10-05 23:01:46 +00004021 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00004022 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00004023 }
4024
4025 SDOperand StoreChain;
4026 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004027 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4028 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00004029 else
4030 StoreChain = DAG.getEntryNode();
4031
4032 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00004033 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00004034}
4035
4036/// CreateStackTemporary - Create a stack temporary, suitable for holding the
4037/// specified value type.
4038SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
4039 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
4040 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
Chris Lattner58092e32007-01-20 22:35:55 +00004041 const Type *Ty = MVT::getTypeForValueType(VT);
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00004042 unsigned StackAlign = (unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty);
Chris Lattner58092e32007-01-20 22:35:55 +00004043 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
Chris Lattnerce872152006-03-19 06:31:19 +00004044 return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
4045}
4046
Chris Lattner5b359c62005-04-02 04:00:59 +00004047void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
4048 SDOperand Op, SDOperand Amt,
4049 SDOperand &Lo, SDOperand &Hi) {
4050 // Expand the subcomponents.
4051 SDOperand LHSL, LHSH;
4052 ExpandOp(Op, LHSL, LHSH);
4053
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004054 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004055 MVT::ValueType VT = LHSL.getValueType();
4056 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00004057 Hi = Lo.getValue(1);
4058}
4059
4060
Chris Lattnere34b3962005-01-19 04:19:40 +00004061/// ExpandShift - Try to find a clever way to expand this shift operation out to
4062/// smaller elements. If we can't find a way that is more efficient than a
4063/// libcall on this target, return false. Otherwise, return true with the
4064/// low-parts expanded into Lo and Hi.
4065bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
4066 SDOperand &Lo, SDOperand &Hi) {
4067 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
4068 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004069
Chris Lattnere34b3962005-01-19 04:19:40 +00004070 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004071 SDOperand ShAmt = LegalizeOp(Amt);
4072 MVT::ValueType ShTy = ShAmt.getValueType();
4073 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
4074 unsigned NVTBits = MVT::getSizeInBits(NVT);
4075
4076 // Handle the case when Amt is an immediate. Other cases are currently broken
4077 // and are disabled.
4078 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
4079 unsigned Cst = CN->getValue();
4080 // Expand the incoming operand to be shifted, so that we have its parts
4081 SDOperand InL, InH;
4082 ExpandOp(Op, InL, InH);
4083 switch(Opc) {
4084 case ISD::SHL:
4085 if (Cst > VTBits) {
4086 Lo = DAG.getConstant(0, NVT);
4087 Hi = DAG.getConstant(0, NVT);
4088 } else if (Cst > NVTBits) {
4089 Lo = DAG.getConstant(0, NVT);
4090 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00004091 } else if (Cst == NVTBits) {
4092 Lo = DAG.getConstant(0, NVT);
4093 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004094 } else {
4095 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
4096 Hi = DAG.getNode(ISD::OR, NVT,
4097 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
4098 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
4099 }
4100 return true;
4101 case ISD::SRL:
4102 if (Cst > VTBits) {
4103 Lo = DAG.getConstant(0, NVT);
4104 Hi = DAG.getConstant(0, NVT);
4105 } else if (Cst > NVTBits) {
4106 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
4107 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00004108 } else if (Cst == NVTBits) {
4109 Lo = InH;
4110 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004111 } else {
4112 Lo = DAG.getNode(ISD::OR, NVT,
4113 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4114 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4115 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
4116 }
4117 return true;
4118 case ISD::SRA:
4119 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00004120 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004121 DAG.getConstant(NVTBits-1, ShTy));
4122 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00004123 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004124 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004125 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004126 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00004127 } else if (Cst == NVTBits) {
4128 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00004129 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00004130 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004131 } else {
4132 Lo = DAG.getNode(ISD::OR, NVT,
4133 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4134 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4135 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
4136 }
4137 return true;
4138 }
4139 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00004140
4141 // Okay, the shift amount isn't constant. However, if we can tell that it is
4142 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
4143 uint64_t Mask = NVTBits, KnownZero, KnownOne;
4144 TLI.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
4145
4146 // If we know that the high bit of the shift amount is one, then we can do
4147 // this as a couple of simple shifts.
4148 if (KnownOne & Mask) {
4149 // Mask out the high bit, which we know is set.
4150 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
4151 DAG.getConstant(NVTBits-1, Amt.getValueType()));
4152
4153 // Expand the incoming operand to be shifted, so that we have its parts
4154 SDOperand InL, InH;
4155 ExpandOp(Op, InL, InH);
4156 switch(Opc) {
4157 case ISD::SHL:
4158 Lo = DAG.getConstant(0, NVT); // Low part is zero.
4159 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
4160 return true;
4161 case ISD::SRL:
4162 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
4163 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
4164 return true;
4165 case ISD::SRA:
4166 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
4167 DAG.getConstant(NVTBits-1, Amt.getValueType()));
4168 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
4169 return true;
4170 }
4171 }
4172
4173 // If we know that the high bit of the shift amount is zero, then we can do
4174 // this as a couple of simple shifts.
4175 if (KnownZero & Mask) {
4176 // Compute 32-amt.
4177 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
4178 DAG.getConstant(NVTBits, Amt.getValueType()),
4179 Amt);
4180
4181 // Expand the incoming operand to be shifted, so that we have its parts
4182 SDOperand InL, InH;
4183 ExpandOp(Op, InL, InH);
4184 switch(Opc) {
4185 case ISD::SHL:
4186 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
4187 Hi = DAG.getNode(ISD::OR, NVT,
4188 DAG.getNode(ISD::SHL, NVT, InH, Amt),
4189 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
4190 return true;
4191 case ISD::SRL:
4192 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
4193 Lo = DAG.getNode(ISD::OR, NVT,
4194 DAG.getNode(ISD::SRL, NVT, InL, Amt),
4195 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4196 return true;
4197 case ISD::SRA:
4198 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
4199 Lo = DAG.getNode(ISD::OR, NVT,
4200 DAG.getNode(ISD::SRL, NVT, InL, Amt),
4201 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4202 return true;
4203 }
4204 }
4205
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004206 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00004207}
Chris Lattner77e77a62005-01-21 06:05:23 +00004208
Chris Lattner9c32d3b2005-01-23 04:42:50 +00004209
Chris Lattner77e77a62005-01-21 06:05:23 +00004210// ExpandLibCall - Expand a node into a call to a libcall. If the result value
4211// does not fit into a register, return the lo part and set the hi part to the
4212// by-reg argument. If it does fit into a single register, return the result
4213// and leave the Hi part unset.
4214SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00004215 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00004216 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
4217 // The input chain to this libcall is the entry node of the function.
4218 // Legalizing the call will automatically add the previous call to the
4219 // dependence.
4220 SDOperand InChain = DAG.getEntryNode();
4221
Chris Lattner77e77a62005-01-21 06:05:23 +00004222 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00004223 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00004224 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4225 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
4226 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
Reid Spencer47857812006-12-31 05:55:36 +00004227 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00004228 Entry.isSExt = isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00004229 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00004230 }
4231 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00004232
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004233 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00004234 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004235 std::pair<SDOperand,SDOperand> CallInfo =
Reid Spencer47857812006-12-31 05:55:36 +00004236 TLI.LowerCallTo(InChain, RetTy, isSigned, false, CallingConv::C, false,
Chris Lattneradf6a962005-05-13 18:50:42 +00004237 Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00004238
Chris Lattner6831a812006-02-13 09:18:02 +00004239 // Legalize the call sequence, starting with the chain. This will advance
4240 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
4241 // was added by LowerCallTo (guaranteeing proper serialization of calls).
4242 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00004243 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004244 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00004245 default: assert(0 && "Unknown thing");
4246 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00004247 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00004248 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00004249 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00004250 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00004251 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00004252 }
Chris Lattner99c25b82005-09-02 20:26:58 +00004253 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00004254}
4255
Chris Lattner9c32d3b2005-01-23 04:42:50 +00004256
Chris Lattner77e77a62005-01-21 06:05:23 +00004257/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
4258/// destination type is legal.
4259SDOperand SelectionDAGLegalize::
4260ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004261 assert(isTypeLegal(DestTy) && "Destination type is not legal!");
Chris Lattner77e77a62005-01-21 06:05:23 +00004262 assert(getTypeAction(Source.getValueType()) == Expand &&
4263 "This is not an expansion!");
4264 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
4265
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004266 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00004267 assert(Source.getValueType() == MVT::i64 &&
4268 "This only works for 64-bit -> FP");
4269 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
4270 // incoming integer is set. To handle this, we dynamically test to see if
4271 // it is set, and, if so, add a fudge factor.
4272 SDOperand Lo, Hi;
4273 ExpandOp(Source, Lo, Hi);
4274
Chris Lattner66de05b2005-05-13 04:45:13 +00004275 // If this is unsigned, and not supported, first perform the conversion to
4276 // signed, then adjust the result if the sign bit is set.
4277 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
4278 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
4279
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004280 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
4281 DAG.getConstant(0, Hi.getValueType()),
4282 ISD::SETLT);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004283 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4284 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4285 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00004286 uint64_t FF = 0x5f800000ULL;
4287 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00004288 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004289
Chris Lattner5839bf22005-08-26 17:15:30 +00004290 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00004291 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4292 SDOperand FudgeInReg;
4293 if (DestTy == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004294 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004295 else {
4296 assert(DestTy == MVT::f64 && "Unexpected conversion");
Chris Lattner5f056bf2005-07-10 01:55:33 +00004297 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Cheng466685d2006-10-09 20:57:25 +00004298 CPIdx, NULL, 0, MVT::f32);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004299 }
Chris Lattner473a9902005-09-29 06:44:39 +00004300 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00004301 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004302
Chris Lattnera88a2602005-05-14 05:33:54 +00004303 // Check to see if the target has a custom way to lower this. If so, use it.
4304 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
4305 default: assert(0 && "This action not implemented for this operation!");
4306 case TargetLowering::Legal:
4307 case TargetLowering::Expand:
4308 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00004309 case TargetLowering::Custom: {
4310 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
4311 Source), DAG);
4312 if (NV.Val)
4313 return LegalizeOp(NV);
4314 break; // The target decided this was legal after all
4315 }
Chris Lattnera88a2602005-05-14 05:33:54 +00004316 }
4317
Chris Lattner13689e22005-05-12 07:00:44 +00004318 // Expand the source, then glue it back together for the call. We must expand
4319 // the source in case it is shared (this pass of legalize must traverse it).
4320 SDOperand SrcLo, SrcHi;
4321 ExpandOp(Source, SrcLo, SrcHi);
4322 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
4323
Evan Cheng56966222007-01-12 02:11:51 +00004324 RTLIB::Libcall LC;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004325 if (DestTy == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00004326 LC = RTLIB::SINTTOFP_I64_F32;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004327 else {
4328 assert(DestTy == MVT::f64 && "Unknown fp value type!");
Evan Cheng56966222007-01-12 02:11:51 +00004329 LC = RTLIB::SINTTOFP_I64_F64;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004330 }
Chris Lattner6831a812006-02-13 09:18:02 +00004331
4332 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
4333 SDOperand UnusedHiPart;
Evan Cheng56966222007-01-12 02:11:51 +00004334 return ExpandLibCall(TLI.getLibcallName(LC), Source.Val, isSigned,
4335 UnusedHiPart);
Chris Lattner77e77a62005-01-21 06:05:23 +00004336}
Misha Brukmanedf128a2005-04-21 22:36:52 +00004337
Chris Lattner22cde6a2006-01-28 08:25:58 +00004338/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
4339/// INT_TO_FP operation of the specified operand when the target requests that
4340/// we expand it. At this point, we know that the result and operand types are
4341/// legal for the target.
4342SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
4343 SDOperand Op0,
4344 MVT::ValueType DestVT) {
4345 if (Op0.getValueType() == MVT::i32) {
4346 // simple 32-bit [signed|unsigned] integer to float/double expansion
4347
Chris Lattner58092e32007-01-20 22:35:55 +00004348 // get the stack frame index of a 8 byte buffer, pessimistically aligned
Chris Lattner22cde6a2006-01-28 08:25:58 +00004349 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattner58092e32007-01-20 22:35:55 +00004350 const Type *F64Type = MVT::getTypeForValueType(MVT::f64);
4351 unsigned StackAlign =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00004352 (unsigned)TLI.getTargetData()->getPrefTypeAlignment(F64Type);
Chris Lattner58092e32007-01-20 22:35:55 +00004353 int SSFI = MF.getFrameInfo()->CreateStackObject(8, StackAlign);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004354 // get address of 8 byte buffer
4355 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4356 // word offset constant for Hi/Lo address computation
4357 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
4358 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00004359 SDOperand Hi = StackSlot;
4360 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
4361 if (TLI.isLittleEndian())
4362 std::swap(Hi, Lo);
4363
Chris Lattner22cde6a2006-01-28 08:25:58 +00004364 // if signed map to unsigned space
4365 SDOperand Op0Mapped;
4366 if (isSigned) {
4367 // constant used to invert sign bit (signed to unsigned mapping)
4368 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
4369 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
4370 } else {
4371 Op0Mapped = Op0;
4372 }
4373 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00004374 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004375 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004376 // initial hi portion of constructed double
4377 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
4378 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00004379 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004380 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00004381 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004382 // FP constant to bias correct the final result
4383 SDOperand Bias = DAG.getConstantFP(isSigned ?
4384 BitsToDouble(0x4330000080000000ULL)
4385 : BitsToDouble(0x4330000000000000ULL),
4386 MVT::f64);
4387 // subtract the bias
4388 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
4389 // final result
4390 SDOperand Result;
4391 // handle final rounding
4392 if (DestVT == MVT::f64) {
4393 // do nothing
4394 Result = Sub;
4395 } else {
4396 // if f32 then cast to f32
4397 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
4398 }
4399 return Result;
4400 }
4401 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
4402 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
4403
4404 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
4405 DAG.getConstant(0, Op0.getValueType()),
4406 ISD::SETLT);
4407 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4408 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4409 SignSet, Four, Zero);
4410
4411 // If the sign bit of the integer is set, the large number will be treated
4412 // as a negative number. To counteract this, the dynamic code adds an
4413 // offset depending on the data type.
4414 uint64_t FF;
4415 switch (Op0.getValueType()) {
4416 default: assert(0 && "Unsupported integer type!");
4417 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
4418 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
4419 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
4420 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
4421 }
4422 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00004423 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004424
4425 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4426 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4427 SDOperand FudgeInReg;
4428 if (DestVT == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004429 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004430 else {
4431 assert(DestVT == MVT::f64 && "Unexpected conversion");
4432 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
4433 DAG.getEntryNode(), CPIdx,
Evan Cheng466685d2006-10-09 20:57:25 +00004434 NULL, 0, MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00004435 }
4436
4437 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
4438}
4439
4440/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
4441/// *INT_TO_FP operation of the specified operand when the target requests that
4442/// we promote it. At this point, we know that the result and operand types are
4443/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
4444/// operation that takes a larger input.
4445SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
4446 MVT::ValueType DestVT,
4447 bool isSigned) {
4448 // First step, figure out the appropriate *INT_TO_FP operation to use.
4449 MVT::ValueType NewInTy = LegalOp.getValueType();
4450
4451 unsigned OpToUse = 0;
4452
4453 // Scan for the appropriate larger type to use.
4454 while (1) {
4455 NewInTy = (MVT::ValueType)(NewInTy+1);
4456 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
4457
4458 // If the target supports SINT_TO_FP of this type, use it.
4459 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4460 default: break;
4461 case TargetLowering::Legal:
4462 if (!TLI.isTypeLegal(NewInTy))
4463 break; // Can't use this datatype.
4464 // FALL THROUGH.
4465 case TargetLowering::Custom:
4466 OpToUse = ISD::SINT_TO_FP;
4467 break;
4468 }
4469 if (OpToUse) break;
4470 if (isSigned) continue;
4471
4472 // If the target supports UINT_TO_FP of this type, use it.
4473 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4474 default: break;
4475 case TargetLowering::Legal:
4476 if (!TLI.isTypeLegal(NewInTy))
4477 break; // Can't use this datatype.
4478 // FALL THROUGH.
4479 case TargetLowering::Custom:
4480 OpToUse = ISD::UINT_TO_FP;
4481 break;
4482 }
4483 if (OpToUse) break;
4484
4485 // Otherwise, try a larger type.
4486 }
4487
4488 // Okay, we found the operation and type to use. Zero extend our input to the
4489 // desired type then run the operation on it.
4490 return DAG.getNode(OpToUse, DestVT,
4491 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4492 NewInTy, LegalOp));
4493}
4494
4495/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4496/// FP_TO_*INT operation of the specified operand when the target requests that
4497/// we promote it. At this point, we know that the result and operand types are
4498/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4499/// operation that returns a larger result.
4500SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4501 MVT::ValueType DestVT,
4502 bool isSigned) {
4503 // First step, figure out the appropriate FP_TO*INT operation to use.
4504 MVT::ValueType NewOutTy = DestVT;
4505
4506 unsigned OpToUse = 0;
4507
4508 // Scan for the appropriate larger type to use.
4509 while (1) {
4510 NewOutTy = (MVT::ValueType)(NewOutTy+1);
4511 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4512
4513 // If the target supports FP_TO_SINT returning this type, use it.
4514 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4515 default: break;
4516 case TargetLowering::Legal:
4517 if (!TLI.isTypeLegal(NewOutTy))
4518 break; // Can't use this datatype.
4519 // FALL THROUGH.
4520 case TargetLowering::Custom:
4521 OpToUse = ISD::FP_TO_SINT;
4522 break;
4523 }
4524 if (OpToUse) break;
4525
4526 // If the target supports FP_TO_UINT of this type, use it.
4527 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4528 default: break;
4529 case TargetLowering::Legal:
4530 if (!TLI.isTypeLegal(NewOutTy))
4531 break; // Can't use this datatype.
4532 // FALL THROUGH.
4533 case TargetLowering::Custom:
4534 OpToUse = ISD::FP_TO_UINT;
4535 break;
4536 }
4537 if (OpToUse) break;
4538
4539 // Otherwise, try a larger type.
4540 }
4541
4542 // Okay, we found the operation and type to use. Truncate the result of the
4543 // extended FP_TO_*INT operation to the desired size.
4544 return DAG.getNode(ISD::TRUNCATE, DestVT,
4545 DAG.getNode(OpToUse, NewOutTy, LegalOp));
4546}
4547
4548/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4549///
4550SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4551 MVT::ValueType VT = Op.getValueType();
4552 MVT::ValueType SHVT = TLI.getShiftAmountTy();
4553 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4554 switch (VT) {
4555 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4556 case MVT::i16:
4557 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4558 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4559 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4560 case MVT::i32:
4561 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4562 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4563 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4564 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4565 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4566 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4567 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4568 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4569 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4570 case MVT::i64:
4571 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4572 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4573 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4574 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4575 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4576 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4577 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4578 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4579 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4580 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4581 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4582 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4583 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4584 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4585 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4586 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4587 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4588 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4589 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4590 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4591 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4592 }
4593}
4594
4595/// ExpandBitCount - Expand the specified bitcount instruction into operations.
4596///
4597SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4598 switch (Opc) {
4599 default: assert(0 && "Cannot expand this yet!");
4600 case ISD::CTPOP: {
4601 static const uint64_t mask[6] = {
4602 0x5555555555555555ULL, 0x3333333333333333ULL,
4603 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4604 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4605 };
4606 MVT::ValueType VT = Op.getValueType();
4607 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4608 unsigned len = getSizeInBits(VT);
4609 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4610 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4611 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4612 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4613 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4614 DAG.getNode(ISD::AND, VT,
4615 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4616 }
4617 return Op;
4618 }
4619 case ISD::CTLZ: {
4620 // for now, we do this:
4621 // x = x | (x >> 1);
4622 // x = x | (x >> 2);
4623 // ...
4624 // x = x | (x >>16);
4625 // x = x | (x >>32); // for 64-bit input
4626 // return popcount(~x);
4627 //
4628 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4629 MVT::ValueType VT = Op.getValueType();
4630 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4631 unsigned len = getSizeInBits(VT);
4632 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4633 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4634 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4635 }
4636 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4637 return DAG.getNode(ISD::CTPOP, VT, Op);
4638 }
4639 case ISD::CTTZ: {
4640 // for now, we use: { return popcount(~x & (x - 1)); }
4641 // unless the target has ctlz but not ctpop, in which case we use:
4642 // { return 32 - nlz(~x & (x-1)); }
4643 // see also http://www.hackersdelight.org/HDcode/ntz.cc
4644 MVT::ValueType VT = Op.getValueType();
4645 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4646 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4647 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4648 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4649 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4650 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4651 TLI.isOperationLegal(ISD::CTLZ, VT))
4652 return DAG.getNode(ISD::SUB, VT,
4653 DAG.getConstant(getSizeInBits(VT), VT),
4654 DAG.getNode(ISD::CTLZ, VT, Tmp3));
4655 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4656 }
4657 }
4658}
Chris Lattnere34b3962005-01-19 04:19:40 +00004659
Chris Lattner3e928bb2005-01-07 07:47:09 +00004660/// ExpandOp - Expand the specified SDOperand into its two component pieces
4661/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
4662/// LegalizeNodes map is filled in for any results that are not expanded, the
4663/// ExpandedNodes map is filled in for any results that are expanded, and the
4664/// Lo/Hi values are returned.
4665void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4666 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00004667 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004668 SDNode *Node = Op.Val;
4669 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004670 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
4671 VT == MVT::Vector) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00004672 "Cannot expand to FP value or to larger int value!");
4673
Chris Lattner6fdcb252005-09-02 20:32:45 +00004674 // See if we already expanded it.
Chris Lattner40030bf2007-02-04 01:17:38 +00004675 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00004676 = ExpandedNodes.find(Op);
4677 if (I != ExpandedNodes.end()) {
4678 Lo = I->second.first;
4679 Hi = I->second.second;
4680 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004681 }
4682
Chris Lattner3e928bb2005-01-07 07:47:09 +00004683 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004684 case ISD::CopyFromReg:
4685 assert(0 && "CopyFromReg must be legal!");
4686 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004687#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +00004688 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004689#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00004690 assert(0 && "Do not know how to expand this operator!");
4691 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004692 case ISD::UNDEF:
Evan Chengaa975c12006-12-16 02:20:50 +00004693 NVT = TLI.getTypeToExpandTo(VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004694 Lo = DAG.getNode(ISD::UNDEF, NVT);
4695 Hi = DAG.getNode(ISD::UNDEF, NVT);
4696 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004697 case ISD::Constant: {
4698 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4699 Lo = DAG.getConstant(Cst, NVT);
4700 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
4701 break;
4702 }
Evan Cheng00495212006-12-12 21:32:44 +00004703 case ISD::ConstantFP: {
4704 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Evan Cheng279101e2006-12-12 22:19:28 +00004705 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00004706 if (getTypeAction(Lo.getValueType()) == Expand)
4707 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00004708 break;
4709 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004710 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00004711 // Return the operands.
4712 Lo = Node->getOperand(0);
4713 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004714 break;
Chris Lattner58f79632005-12-12 22:27:43 +00004715
4716 case ISD::SIGN_EXTEND_INREG:
4717 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00004718 // sext_inreg the low part if needed.
4719 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
4720
4721 // The high part gets the sign extension from the lo-part. This handles
4722 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00004723 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4724 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
4725 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00004726 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004727
Nate Begemand88fc032006-01-14 03:14:10 +00004728 case ISD::BSWAP: {
4729 ExpandOp(Node->getOperand(0), Lo, Hi);
4730 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
4731 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
4732 Lo = TempLo;
4733 break;
4734 }
4735
Chris Lattneredb1add2005-05-11 04:51:16 +00004736 case ISD::CTPOP:
4737 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00004738 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
4739 DAG.getNode(ISD::CTPOP, NVT, Lo),
4740 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00004741 Hi = DAG.getConstant(0, NVT);
4742 break;
4743
Chris Lattner39a8f332005-05-12 19:05:01 +00004744 case ISD::CTLZ: {
4745 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004746 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004747 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4748 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004749 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
4750 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004751 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
4752 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
4753
4754 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
4755 Hi = DAG.getConstant(0, NVT);
4756 break;
4757 }
4758
4759 case ISD::CTTZ: {
4760 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004761 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004762 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4763 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004764 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
4765 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004766 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
4767 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
4768
4769 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
4770 Hi = DAG.getConstant(0, NVT);
4771 break;
4772 }
Chris Lattneredb1add2005-05-11 04:51:16 +00004773
Nate Begemanacc398c2006-01-25 18:21:52 +00004774 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004775 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4776 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00004777 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
4778 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
4779
4780 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004781 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00004782 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
4783 if (!TLI.isLittleEndian())
4784 std::swap(Lo, Hi);
4785 break;
4786 }
4787
Chris Lattner3e928bb2005-01-07 07:47:09 +00004788 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00004789 LoadSDNode *LD = cast<LoadSDNode>(Node);
4790 SDOperand Ch = LD->getChain(); // Legalize the chain.
4791 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
4792 ISD::LoadExtType ExtType = LD->getExtensionType();
Chris Lattner3e928bb2005-01-07 07:47:09 +00004793
Evan Cheng466685d2006-10-09 20:57:25 +00004794 if (ExtType == ISD::NON_EXTLOAD) {
Chris Lattnerfea997a2007-02-01 04:55:59 +00004795 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),LD->getSrcValueOffset());
Evan Cheng00495212006-12-12 21:32:44 +00004796 if (VT == MVT::f32 || VT == MVT::f64) {
4797 // f32->i32 or f64->i64 one to one expansion.
4798 // Remember that we legalized the chain.
4799 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00004800 // Recursively expand the new load.
4801 if (getTypeAction(NVT) == Expand)
4802 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00004803 break;
4804 }
Chris Lattnerec39a452005-01-19 18:02:17 +00004805
Evan Cheng466685d2006-10-09 20:57:25 +00004806 // Increment the pointer to the other half.
4807 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
4808 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4809 getIntPtrConstant(IncrementSize));
4810 // FIXME: This creates a bogus srcvalue!
Chris Lattnerfea997a2007-02-01 04:55:59 +00004811 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),LD->getSrcValueOffset());
Misha Brukmanedf128a2005-04-21 22:36:52 +00004812
Evan Cheng466685d2006-10-09 20:57:25 +00004813 // Build a factor node to remember that this load is independent of the
4814 // other one.
4815 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4816 Hi.getValue(1));
4817
4818 // Remember that we legalized the chain.
4819 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
4820 if (!TLI.isLittleEndian())
4821 std::swap(Lo, Hi);
4822 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00004823 MVT::ValueType EVT = LD->getLoadedVT();
Evan Cheng548f6112006-12-13 03:19:57 +00004824
4825 if (VT == MVT::f64 && EVT == MVT::f32) {
4826 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
4827 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
4828 LD->getSrcValueOffset());
4829 // Remember that we legalized the chain.
4830 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
4831 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
4832 break;
4833 }
Evan Cheng466685d2006-10-09 20:57:25 +00004834
4835 if (EVT == NVT)
4836 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
4837 LD->getSrcValueOffset());
4838 else
4839 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
4840 LD->getSrcValueOffset(), EVT);
4841
4842 // Remember that we legalized the chain.
4843 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
4844
4845 if (ExtType == ISD::SEXTLOAD) {
4846 // The high part is obtained by SRA'ing all but one of the bits of the
4847 // lo part.
4848 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
4849 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4850 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
4851 } else if (ExtType == ISD::ZEXTLOAD) {
4852 // The high part is just a zero.
4853 Hi = DAG.getConstant(0, NVT);
4854 } else /* if (ExtType == ISD::EXTLOAD) */ {
4855 // The high part is undefined.
4856 Hi = DAG.getNode(ISD::UNDEF, NVT);
4857 }
4858 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004859 break;
4860 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004861 case ISD::AND:
4862 case ISD::OR:
4863 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
4864 SDOperand LL, LH, RL, RH;
4865 ExpandOp(Node->getOperand(0), LL, LH);
4866 ExpandOp(Node->getOperand(1), RL, RH);
4867 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
4868 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
4869 break;
4870 }
4871 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00004872 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004873 ExpandOp(Node->getOperand(1), LL, LH);
4874 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00004875 if (getTypeAction(NVT) == Expand)
4876 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004877 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00004878 if (VT != MVT::f32)
4879 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004880 break;
4881 }
Nate Begeman9373a812005-08-10 20:51:12 +00004882 case ISD::SELECT_CC: {
4883 SDOperand TL, TH, FL, FH;
4884 ExpandOp(Node->getOperand(2), TL, TH);
4885 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00004886 if (getTypeAction(NVT) == Expand)
4887 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00004888 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4889 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00004890 if (VT != MVT::f32)
4891 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4892 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004893 break;
4894 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004895 case ISD::ANY_EXTEND:
4896 // The low part is any extension of the input (which degenerates to a copy).
4897 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
4898 // The high part is undefined.
4899 Hi = DAG.getNode(ISD::UNDEF, NVT);
4900 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004901 case ISD::SIGN_EXTEND: {
4902 // The low part is just a sign extension of the input (which degenerates to
4903 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004904 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004905
Chris Lattner3e928bb2005-01-07 07:47:09 +00004906 // The high part is obtained by SRA'ing all but one of the bits of the lo
4907 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00004908 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00004909 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4910 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00004911 break;
4912 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004913 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00004914 // The low part is just a zero extension of the input (which degenerates to
4915 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004916 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004917
Chris Lattner3e928bb2005-01-07 07:47:09 +00004918 // The high part is just a zero.
4919 Hi = DAG.getConstant(0, NVT);
4920 break;
Chris Lattner35481892005-12-23 00:16:34 +00004921
Chris Lattner4c948eb2007-02-13 23:55:16 +00004922 case ISD::TRUNCATE: {
4923 // The input value must be larger than this value. Expand *it*.
4924 SDOperand NewLo;
4925 ExpandOp(Node->getOperand(0), NewLo, Hi);
4926
4927 // The low part is now either the right size, or it is closer. If not the
4928 // right size, make an illegal truncate so we recursively expand it.
4929 if (NewLo.getValueType() != Node->getValueType(0))
4930 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
4931 ExpandOp(NewLo, Lo, Hi);
4932 break;
4933 }
4934
Chris Lattner35481892005-12-23 00:16:34 +00004935 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004936 SDOperand Tmp;
4937 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
4938 // If the target wants to, allow it to lower this itself.
4939 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4940 case Expand: assert(0 && "cannot expand FP!");
4941 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
4942 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
4943 }
4944 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
4945 }
4946
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004947 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00004948 if (VT == MVT::f32 || VT == MVT::f64) {
4949 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00004950 if (getTypeAction(NVT) == Expand)
4951 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00004952 break;
4953 }
4954
4955 // If source operand will be expanded to the same type as VT, i.e.
4956 // i64 <- f64, i32 <- f32, expand the source operand instead.
4957 MVT::ValueType VT0 = Node->getOperand(0).getValueType();
4958 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
4959 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004960 break;
4961 }
4962
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004963 // Turn this into a load/store pair by default.
4964 if (Tmp.Val == 0)
Evan Cheng13acce32006-12-11 19:27:14 +00004965 Tmp = ExpandBIT_CONVERT(VT, Node->getOperand(0));
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004966
Chris Lattner35481892005-12-23 00:16:34 +00004967 ExpandOp(Tmp, Lo, Hi);
4968 break;
4969 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004970
Chris Lattner8137c9e2006-01-28 05:07:51 +00004971 case ISD::READCYCLECOUNTER:
Chris Lattner308575b2005-11-20 22:56:56 +00004972 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
4973 TargetLowering::Custom &&
4974 "Must custom expand ReadCycleCounter");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004975 Lo = TLI.LowerOperation(Op, DAG);
4976 assert(Lo.Val && "Node must be custom expanded!");
4977 Hi = Lo.getValue(1);
Chris Lattner308575b2005-11-20 22:56:56 +00004978 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004979 LegalizeOp(Lo.getValue(2)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004980 break;
4981
Chris Lattner4e6c7462005-01-08 19:27:05 +00004982 // These operators cannot be expanded directly, emit them as calls to
4983 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00004984 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00004985 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00004986 SDOperand Op;
4987 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4988 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004989 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4990 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00004991 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004992
Chris Lattnerf20d1832005-07-30 01:40:57 +00004993 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
4994
Chris Lattner80a3e942005-07-29 00:33:32 +00004995 // Now that the custom expander is done, expand the result, which is still
4996 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00004997 if (Op.Val) {
4998 ExpandOp(Op, Lo, Hi);
4999 break;
5000 }
Chris Lattner80a3e942005-07-29 00:33:32 +00005001 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005002
Evan Cheng56966222007-01-12 02:11:51 +00005003 RTLIB::Libcall LC;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005004 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005005 LC = RTLIB::FPTOSINT_F32_I64;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005006 else
Evan Cheng56966222007-01-12 02:11:51 +00005007 LC = RTLIB::FPTOSINT_F64_I64;
5008 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
5009 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00005010 break;
Evan Cheng56966222007-01-12 02:11:51 +00005011 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005012
Evan Cheng56966222007-01-12 02:11:51 +00005013 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00005014 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005015 SDOperand Op;
5016 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5017 case Expand: assert(0 && "cannot expand FP!");
5018 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
5019 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
5020 }
5021
5022 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
5023
5024 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00005025 if (Op.Val) {
5026 ExpandOp(Op, Lo, Hi);
5027 break;
5028 }
Chris Lattner80a3e942005-07-29 00:33:32 +00005029 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005030
Evan Cheng56966222007-01-12 02:11:51 +00005031 RTLIB::Libcall LC;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005032 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005033 LC = RTLIB::FPTOUINT_F32_I64;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005034 else
Evan Cheng56966222007-01-12 02:11:51 +00005035 LC = RTLIB::FPTOUINT_F64_I64;
5036 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
5037 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00005038 break;
Evan Cheng56966222007-01-12 02:11:51 +00005039 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00005040
Evan Cheng05a2d562006-01-09 18:31:59 +00005041 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005042 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005043 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005044 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005045 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005046 Op = TLI.LowerOperation(Op, DAG);
5047 if (Op.Val) {
5048 // Now that the custom expander is done, expand the result, which is
5049 // still VT.
5050 ExpandOp(Op, Lo, Hi);
5051 break;
5052 }
5053 }
5054
Chris Lattner79980b02006-09-13 03:50:39 +00005055 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
5056 // this X << 1 as X+X.
5057 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
5058 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
5059 TLI.isOperationLegal(ISD::ADDE, NVT)) {
5060 SDOperand LoOps[2], HiOps[3];
5061 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
5062 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
5063 LoOps[1] = LoOps[0];
5064 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
5065
5066 HiOps[1] = HiOps[0];
5067 HiOps[2] = Lo.getValue(1);
5068 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
5069 break;
5070 }
5071 }
5072
Chris Lattnere34b3962005-01-19 04:19:40 +00005073 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005074 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005075 break;
Chris Lattner47599822005-04-02 03:38:53 +00005076
5077 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005078 TargetLowering::LegalizeAction Action =
5079 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
5080 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5081 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005082 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005083 break;
5084 }
5085
Chris Lattnere34b3962005-01-19 04:19:40 +00005086 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005087 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SHL_I64), Node,
5088 false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005089 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005090 }
Chris Lattnere34b3962005-01-19 04:19:40 +00005091
Evan Cheng05a2d562006-01-09 18:31:59 +00005092 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005093 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005094 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005095 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005096 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005097 Op = TLI.LowerOperation(Op, DAG);
5098 if (Op.Val) {
5099 // Now that the custom expander is done, expand the result, which is
5100 // still VT.
5101 ExpandOp(Op, Lo, Hi);
5102 break;
5103 }
5104 }
5105
Chris Lattnere34b3962005-01-19 04:19:40 +00005106 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005107 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005108 break;
Chris Lattner47599822005-04-02 03:38:53 +00005109
5110 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005111 TargetLowering::LegalizeAction Action =
5112 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
5113 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5114 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005115 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005116 break;
5117 }
5118
Chris Lattnere34b3962005-01-19 04:19:40 +00005119 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005120 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRA_I64), Node,
5121 true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005122 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005123 }
5124
5125 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005126 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005127 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005128 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005129 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005130 Op = TLI.LowerOperation(Op, DAG);
5131 if (Op.Val) {
5132 // Now that the custom expander is done, expand the result, which is
5133 // still VT.
5134 ExpandOp(Op, Lo, Hi);
5135 break;
5136 }
5137 }
5138
Chris Lattnere34b3962005-01-19 04:19:40 +00005139 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005140 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005141 break;
Chris Lattner47599822005-04-02 03:38:53 +00005142
5143 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005144 TargetLowering::LegalizeAction Action =
5145 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
5146 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5147 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005148 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005149 break;
5150 }
5151
Chris Lattnere34b3962005-01-19 04:19:40 +00005152 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005153 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRL_I64), Node,
5154 false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005155 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005156 }
Chris Lattnere34b3962005-01-19 04:19:40 +00005157
Misha Brukmanedf128a2005-04-21 22:36:52 +00005158 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005159 case ISD::SUB: {
5160 // If the target wants to custom expand this, let them.
5161 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
5162 TargetLowering::Custom) {
5163 Op = TLI.LowerOperation(Op, DAG);
5164 if (Op.Val) {
5165 ExpandOp(Op, Lo, Hi);
5166 break;
5167 }
5168 }
5169
5170 // Expand the subcomponents.
5171 SDOperand LHSL, LHSH, RHSL, RHSH;
5172 ExpandOp(Node->getOperand(0), LHSL, LHSH);
5173 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00005174 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
5175 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005176 LoOps[0] = LHSL;
5177 LoOps[1] = RHSL;
5178 HiOps[0] = LHSH;
5179 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00005180 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00005181 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005182 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00005183 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00005184 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00005185 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005186 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00005187 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00005188 }
Chris Lattner84f67882005-01-20 18:52:28 +00005189 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00005190 }
Nate Begemanc7c16572005-04-11 03:01:51 +00005191 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00005192 // If the target wants to custom expand this, let them.
5193 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00005194 SDOperand New = TLI.LowerOperation(Op, DAG);
5195 if (New.Val) {
5196 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00005197 break;
5198 }
5199 }
5200
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005201 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
5202 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005203 if (HasMULHS || HasMULHU) {
Nate Begemanc7c16572005-04-11 03:01:51 +00005204 SDOperand LL, LH, RL, RH;
5205 ExpandOp(Node->getOperand(0), LL, LH);
5206 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman56eb8682005-08-30 02:44:00 +00005207 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
Nate Begeman2cbba892006-12-11 02:23:46 +00005208 // FIXME: Move this to the dag combiner.
Nate Begeman56eb8682005-08-30 02:44:00 +00005209 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
5210 // extended the sign bit of the low half through the upper half, and if so
5211 // emit a MULHS instead of the alternate sequence that is valid for any
5212 // i64 x i64 multiply.
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005213 if (HasMULHS &&
Nate Begeman56eb8682005-08-30 02:44:00 +00005214 // is RH an extension of the sign bit of RL?
5215 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
5216 RH.getOperand(1).getOpcode() == ISD::Constant &&
5217 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
5218 // is LH an extension of the sign bit of LL?
5219 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
5220 LH.getOperand(1).getOpcode() == ISD::Constant &&
5221 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
Chris Lattnera89654b2006-09-16 00:21:44 +00005222 // Low part:
5223 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
5224 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00005225 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
Chris Lattnera89654b2006-09-16 00:21:44 +00005226 break;
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005227 } else if (HasMULHU) {
Chris Lattnera89654b2006-09-16 00:21:44 +00005228 // Low part:
5229 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
5230
5231 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00005232 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
5233 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
5234 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
5235 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
5236 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00005237 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00005238 }
Nate Begemanc7c16572005-04-11 03:01:51 +00005239 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005240
Evan Cheng56966222007-01-12 02:11:51 +00005241 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::MUL_I64), Node,
5242 false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00005243 break;
5244 }
Evan Cheng56966222007-01-12 02:11:51 +00005245 case ISD::SDIV:
5246 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SDIV_I64), Node, true, Hi);
5247 break;
5248 case ISD::UDIV:
5249 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UDIV_I64), Node, true, Hi);
5250 break;
5251 case ISD::SREM:
5252 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SREM_I64), Node, true, Hi);
5253 break;
5254 case ISD::UREM:
5255 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UREM_I64), Node, true, Hi);
5256 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00005257
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005258 case ISD::FADD:
Evan Cheng56966222007-01-12 02:11:51 +00005259 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5260 ? RTLIB::ADD_F32 : RTLIB::ADD_F64),
5261 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005262 break;
5263 case ISD::FSUB:
Evan Cheng56966222007-01-12 02:11:51 +00005264 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5265 ? RTLIB::SUB_F32 : RTLIB::SUB_F64),
5266 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005267 break;
5268 case ISD::FMUL:
Evan Cheng56966222007-01-12 02:11:51 +00005269 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5270 ? RTLIB::MUL_F32 : RTLIB::MUL_F64),
5271 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005272 break;
5273 case ISD::FDIV:
Evan Cheng56966222007-01-12 02:11:51 +00005274 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5275 ? RTLIB::DIV_F32 : RTLIB::DIV_F64),
5276 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005277 break;
5278 case ISD::FP_EXTEND:
Evan Cheng56966222007-01-12 02:11:51 +00005279 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPEXT_F32_F64), Node, true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005280 break;
5281 case ISD::FP_ROUND:
Evan Cheng56966222007-01-12 02:11:51 +00005282 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPROUND_F64_F32),Node,true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005283 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00005284 case ISD::FSQRT:
5285 case ISD::FSIN:
5286 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00005287 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00005288 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00005289 case ISD::FSQRT:
5290 LC = (VT == MVT::f32) ? RTLIB::SQRT_F32 : RTLIB::SQRT_F64;
5291 break;
5292 case ISD::FSIN:
5293 LC = (VT == MVT::f32) ? RTLIB::SIN_F32 : RTLIB::SIN_F64;
5294 break;
5295 case ISD::FCOS:
5296 LC = (VT == MVT::f32) ? RTLIB::COS_F32 : RTLIB::COS_F64;
5297 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00005298 default: assert(0 && "Unreachable!");
5299 }
Evan Cheng56966222007-01-12 02:11:51 +00005300 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00005301 break;
5302 }
Evan Cheng966bf242006-12-16 00:52:40 +00005303 case ISD::FABS: {
5304 SDOperand Mask = (VT == MVT::f64)
5305 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
5306 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
5307 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
5308 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
5309 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
5310 if (getTypeAction(NVT) == Expand)
5311 ExpandOp(Lo, Lo, Hi);
5312 break;
5313 }
5314 case ISD::FNEG: {
5315 SDOperand Mask = (VT == MVT::f64)
5316 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
5317 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
5318 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
5319 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
5320 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
5321 if (getTypeAction(NVT) == Expand)
5322 ExpandOp(Lo, Lo, Hi);
5323 break;
5324 }
Evan Cheng912095b2007-01-04 21:56:39 +00005325 case ISD::FCOPYSIGN: {
5326 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
5327 if (getTypeAction(NVT) == Expand)
5328 ExpandOp(Lo, Lo, Hi);
5329 break;
5330 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00005331 case ISD::SINT_TO_FP:
5332 case ISD::UINT_TO_FP: {
5333 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
5334 MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
Evan Cheng56966222007-01-12 02:11:51 +00005335 RTLIB::Libcall LC;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005336 if (Node->getOperand(0).getValueType() == MVT::i64) {
5337 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005338 LC = isSigned ? RTLIB::SINTTOFP_I64_F32 : RTLIB::UINTTOFP_I64_F32;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005339 else
Evan Cheng56966222007-01-12 02:11:51 +00005340 LC = isSigned ? RTLIB::SINTTOFP_I64_F64 : RTLIB::UINTTOFP_I64_F64;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005341 } else {
5342 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005343 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005344 else
Evan Cheng56966222007-01-12 02:11:51 +00005345 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005346 }
5347
5348 // Promote the operand if needed.
5349 if (getTypeAction(SrcVT) == Promote) {
5350 SDOperand Tmp = PromoteOp(Node->getOperand(0));
5351 Tmp = isSigned
5352 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
5353 DAG.getValueType(SrcVT))
5354 : DAG.getZeroExtendInReg(Tmp, SrcVT);
5355 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
5356 }
Evan Cheng56966222007-01-12 02:11:51 +00005357 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00005358 break;
5359 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00005360 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005361
Chris Lattner83397362005-12-21 18:02:52 +00005362 // Make sure the resultant values have been legalized themselves, unless this
5363 // is a type that requires multi-step expansion.
5364 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
5365 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00005366 if (Hi.Val)
5367 // Don't legalize the high part if it is expanded to a single node.
5368 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00005369 }
Evan Cheng05a2d562006-01-09 18:31:59 +00005370
5371 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00005372 bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi)));
Evan Cheng05a2d562006-01-09 18:31:59 +00005373 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005374}
5375
Chris Lattnerc7029802006-03-18 01:44:44 +00005376/// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
5377/// two smaller values of MVT::Vector type.
5378void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
5379 SDOperand &Hi) {
5380 assert(Op.getValueType() == MVT::Vector && "Cannot split non-vector type!");
5381 SDNode *Node = Op.Val;
5382 unsigned NumElements = cast<ConstantSDNode>(*(Node->op_end()-2))->getValue();
5383 assert(NumElements > 1 && "Cannot split a single element vector!");
5384 unsigned NewNumElts = NumElements/2;
5385 SDOperand NewNumEltsNode = DAG.getConstant(NewNumElts, MVT::i32);
5386 SDOperand TypeNode = *(Node->op_end()-1);
5387
5388 // See if we already split it.
5389 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
5390 = SplitNodes.find(Op);
5391 if (I != SplitNodes.end()) {
5392 Lo = I->second.first;
5393 Hi = I->second.second;
5394 return;
5395 }
5396
5397 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005398 default:
5399#ifndef NDEBUG
5400 Node->dump();
5401#endif
5402 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerb2827b02006-03-19 00:52:58 +00005403 case ISD::VBUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005404 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
5405 Node->op_begin()+NewNumElts);
Chris Lattnerc7029802006-03-18 01:44:44 +00005406 LoOps.push_back(NewNumEltsNode);
5407 LoOps.push_back(TypeNode);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005408 Lo = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00005409
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005410 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts,
5411 Node->op_end()-2);
Chris Lattnerc7029802006-03-18 01:44:44 +00005412 HiOps.push_back(NewNumEltsNode);
5413 HiOps.push_back(TypeNode);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005414 Hi = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00005415 break;
5416 }
5417 case ISD::VADD:
5418 case ISD::VSUB:
5419 case ISD::VMUL:
5420 case ISD::VSDIV:
5421 case ISD::VUDIV:
5422 case ISD::VAND:
5423 case ISD::VOR:
5424 case ISD::VXOR: {
5425 SDOperand LL, LH, RL, RH;
5426 SplitVectorOp(Node->getOperand(0), LL, LH);
5427 SplitVectorOp(Node->getOperand(1), RL, RH);
5428
5429 Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, LL, RL,
5430 NewNumEltsNode, TypeNode);
5431 Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, LH, RH,
5432 NewNumEltsNode, TypeNode);
5433 break;
5434 }
5435 case ISD::VLOAD: {
5436 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5437 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
5438 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
5439
5440 Lo = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
5441 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(EVT)/8;
5442 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
5443 getIntPtrConstant(IncrementSize));
5444 // FIXME: This creates a bogus srcvalue!
5445 Hi = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
5446
5447 // Build a factor node to remember that this load is independent of the
5448 // other one.
5449 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5450 Hi.getValue(1));
5451
5452 // Remember that we legalized the chain.
5453 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00005454 break;
5455 }
Chris Lattner7692eb42006-03-23 21:16:34 +00005456 case ISD::VBIT_CONVERT: {
5457 // We know the result is a vector. The input may be either a vector or a
5458 // scalar value.
5459 if (Op.getOperand(0).getValueType() != MVT::Vector) {
5460 // Lower to a store/load. FIXME: this could be improved probably.
5461 SDOperand Ptr = CreateStackTemporary(Op.getOperand(0).getValueType());
5462
Evan Cheng786225a2006-10-05 23:01:46 +00005463 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005464 Op.getOperand(0), Ptr, NULL, 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00005465 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
5466 St = DAG.getVecLoad(NumElements, EVT, St, Ptr, DAG.getSrcValue(0));
5467 SplitVectorOp(St, Lo, Hi);
5468 } else {
5469 // If the input is a vector type, we have to either scalarize it, pack it
5470 // or convert it based on whether the input vector type is legal.
5471 SDNode *InVal = Node->getOperand(0).Val;
5472 unsigned NumElems =
5473 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5474 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5475
5476 // If the input is from a single element vector, scalarize the vector,
5477 // then treat like a scalar.
5478 if (NumElems == 1) {
5479 SDOperand Scalar = PackVectorOp(Op.getOperand(0), EVT);
5480 Scalar = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Scalar,
5481 Op.getOperand(1), Op.getOperand(2));
5482 SplitVectorOp(Scalar, Lo, Hi);
5483 } else {
5484 // Split the input vector.
5485 SplitVectorOp(Op.getOperand(0), Lo, Hi);
5486
5487 // Convert each of the pieces now.
5488 Lo = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Lo,
5489 NewNumEltsNode, TypeNode);
5490 Hi = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Hi,
5491 NewNumEltsNode, TypeNode);
5492 }
5493 break;
5494 }
5495 }
Chris Lattnerc7029802006-03-18 01:44:44 +00005496 }
5497
5498 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00005499 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00005500 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
5501 assert(isNew && "Value already expanded?!?");
5502}
5503
5504
5505/// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
5506/// equivalent operation that returns a scalar (e.g. F32) or packed value
5507/// (e.g. MVT::V4F32). When this is called, we know that PackedVT is the right
5508/// type for the result.
5509SDOperand SelectionDAGLegalize::PackVectorOp(SDOperand Op,
5510 MVT::ValueType NewVT) {
5511 assert(Op.getValueType() == MVT::Vector && "Bad PackVectorOp invocation!");
5512 SDNode *Node = Op.Val;
5513
5514 // See if we already packed it.
5515 std::map<SDOperand, SDOperand>::iterator I = PackedNodes.find(Op);
5516 if (I != PackedNodes.end()) return I->second;
5517
5518 SDOperand Result;
5519 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00005520 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005521#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +00005522 Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005523#endif
Chris Lattner2332b9f2006-03-19 01:17:20 +00005524 assert(0 && "Unknown vector operation in PackVectorOp!");
Chris Lattnerc7029802006-03-18 01:44:44 +00005525 case ISD::VADD:
5526 case ISD::VSUB:
5527 case ISD::VMUL:
5528 case ISD::VSDIV:
5529 case ISD::VUDIV:
5530 case ISD::VAND:
5531 case ISD::VOR:
5532 case ISD::VXOR:
5533 Result = DAG.getNode(getScalarizedOpcode(Node->getOpcode(), NewVT),
5534 NewVT,
5535 PackVectorOp(Node->getOperand(0), NewVT),
5536 PackVectorOp(Node->getOperand(1), NewVT));
5537 break;
5538 case ISD::VLOAD: {
Chris Lattner4794a6b2006-03-19 00:07:49 +00005539 SDOperand Ch = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
5540 SDOperand Ptr = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00005541
Evan Cheng466685d2006-10-09 20:57:25 +00005542 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
5543 Result = DAG.getLoad(NewVT, Ch, Ptr, SV->getValue(), SV->getOffset());
Chris Lattnerc7029802006-03-18 01:44:44 +00005544
5545 // Remember that we legalized the chain.
5546 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
5547 break;
5548 }
Chris Lattnerb2827b02006-03-19 00:52:58 +00005549 case ISD::VBUILD_VECTOR:
Chris Lattner70c2a612006-03-31 02:06:56 +00005550 if (Node->getOperand(0).getValueType() == NewVT) {
Chris Lattnerb2827b02006-03-19 00:52:58 +00005551 // Returning a scalar?
Chris Lattnerc7029802006-03-18 01:44:44 +00005552 Result = Node->getOperand(0);
5553 } else {
Chris Lattnerb2827b02006-03-19 00:52:58 +00005554 // Returning a BUILD_VECTOR?
Chris Lattner17614ea2006-04-08 05:34:25 +00005555
5556 // If all elements of the build_vector are undefs, return an undef.
5557 bool AllUndef = true;
5558 for (unsigned i = 0, e = Node->getNumOperands()-2; i != e; ++i)
5559 if (Node->getOperand(i).getOpcode() != ISD::UNDEF) {
5560 AllUndef = false;
5561 break;
5562 }
5563 if (AllUndef) {
5564 Result = DAG.getNode(ISD::UNDEF, NewVT);
5565 } else {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005566 Result = DAG.getNode(ISD::BUILD_VECTOR, NewVT, Node->op_begin(),
5567 Node->getNumOperands()-2);
Chris Lattner17614ea2006-04-08 05:34:25 +00005568 }
Chris Lattnerc7029802006-03-18 01:44:44 +00005569 }
5570 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00005571 case ISD::VINSERT_VECTOR_ELT:
5572 if (!MVT::isVector(NewVT)) {
5573 // Returning a scalar? Must be the inserted element.
5574 Result = Node->getOperand(1);
5575 } else {
5576 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT,
5577 PackVectorOp(Node->getOperand(0), NewVT),
5578 Node->getOperand(1), Node->getOperand(2));
5579 }
5580 break;
Chris Lattner5b2316e2006-03-28 20:24:43 +00005581 case ISD::VVECTOR_SHUFFLE:
5582 if (!MVT::isVector(NewVT)) {
5583 // Returning a scalar? Figure out if it is the LHS or RHS and return it.
5584 SDOperand EltNum = Node->getOperand(2).getOperand(0);
5585 if (cast<ConstantSDNode>(EltNum)->getValue())
5586 Result = PackVectorOp(Node->getOperand(1), NewVT);
5587 else
5588 Result = PackVectorOp(Node->getOperand(0), NewVT);
5589 } else {
5590 // Otherwise, return a VECTOR_SHUFFLE node. First convert the index
5591 // vector from a VBUILD_VECTOR to a BUILD_VECTOR.
5592 std::vector<SDOperand> BuildVecIdx(Node->getOperand(2).Val->op_begin(),
5593 Node->getOperand(2).Val->op_end()-2);
5594 MVT::ValueType BVT = MVT::getIntVectorWithNumElements(BuildVecIdx.size());
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005595 SDOperand BV = DAG.getNode(ISD::BUILD_VECTOR, BVT,
5596 Node->getOperand(2).Val->op_begin(),
5597 Node->getOperand(2).Val->getNumOperands()-2);
Chris Lattner5b2316e2006-03-28 20:24:43 +00005598
5599 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT,
5600 PackVectorOp(Node->getOperand(0), NewVT),
5601 PackVectorOp(Node->getOperand(1), NewVT), BV);
5602 }
5603 break;
Chris Lattnere25ca692006-03-22 20:09:35 +00005604 case ISD::VBIT_CONVERT:
5605 if (Op.getOperand(0).getValueType() != MVT::Vector)
5606 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
5607 else {
5608 // If the input is a vector type, we have to either scalarize it, pack it
5609 // or convert it based on whether the input vector type is legal.
5610 SDNode *InVal = Node->getOperand(0).Val;
5611 unsigned NumElems =
5612 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5613 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5614
5615 // Figure out if there is a Packed type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00005616 // type. If so, convert to the vector type.
Chris Lattnere25ca692006-03-22 20:09:35 +00005617 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
5618 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
5619 // Turn this into a bit convert of the packed input.
5620 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5621 PackVectorOp(Node->getOperand(0), TVT));
5622 break;
5623 } else if (NumElems == 1) {
5624 // Turn this into a bit convert of the scalar input.
5625 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5626 PackVectorOp(Node->getOperand(0), EVT));
5627 break;
5628 } else {
5629 // FIXME: UNIMP!
5630 assert(0 && "Cast from unsupported vector type not implemented yet!");
5631 }
5632 }
Evan Chengdb3c6262006-04-10 18:54:36 +00005633 break;
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005634 case ISD::VSELECT:
5635 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
5636 PackVectorOp(Op.getOperand(1), NewVT),
5637 PackVectorOp(Op.getOperand(2), NewVT));
5638 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00005639 }
5640
5641 if (TLI.isTypeLegal(NewVT))
5642 Result = LegalizeOp(Result);
5643 bool isNew = PackedNodes.insert(std::make_pair(Op, Result)).second;
5644 assert(isNew && "Value already packed?");
5645 return Result;
5646}
5647
Chris Lattner3e928bb2005-01-07 07:47:09 +00005648
5649// SelectionDAG::Legalize - This is the entry point for the file.
5650//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005651void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00005652 if (ViewLegalizeDAGs) viewGraph();
5653
Chris Lattner3e928bb2005-01-07 07:47:09 +00005654 /// run - This is the main entry point to this class.
5655 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00005656 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005657}
5658