blob: ed7c838122ba17294cd21c6d66ad8568456b58a7 [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"
Chris Lattner3e928bb2005-01-07 07:47:09 +000017#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000018#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000019#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000020#include "llvm/Target/TargetOptions.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000021#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000022#include "llvm/Constants.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000023#include "llvm/Support/MathExtras.h"
24#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000025#include "llvm/Support/Compiler.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000026#include "llvm/ADT/SmallVector.h"
Evan Cheng033e6812006-03-24 01:17:21 +000027#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000028using namespace llvm;
29
Chris Lattner5e46a192006-04-02 03:07:27 +000030#ifndef NDEBUG
31static cl::opt<bool>
32ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
33 cl::desc("Pop up a window to show dags before legalize"));
34#else
35static const bool ViewLegalizeDAGs = 0;
36#endif
37
Chris Lattner3e928bb2005-01-07 07:47:09 +000038//===----------------------------------------------------------------------===//
39/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
40/// hacks on it until the target machine can handle it. This involves
41/// eliminating value sizes the machine cannot handle (promoting small sizes to
42/// large sizes or splitting up large values into small values) as well as
43/// eliminating operations the machine cannot handle.
44///
45/// This code also does a small amount of optimization and recognition of idioms
46/// as part of its processing. For example, if a target does not support a
47/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
48/// will attempt merge setcc and brc instructions into brcc's.
49///
50namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000051class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000052 TargetLowering &TLI;
53 SelectionDAG &DAG;
54
Chris Lattner6831a812006-02-13 09:18:02 +000055 // Libcall insertion helpers.
56
57 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
58 /// legalized. We use this to ensure that calls are properly serialized
59 /// against each other, including inserted libcalls.
60 SDOperand LastCALLSEQ_END;
61
62 /// IsLegalizingCall - This member is used *only* for purposes of providing
63 /// helpful assertions that a libcall isn't created while another call is
64 /// being legalized (which could lead to non-serialized call sequences).
65 bool IsLegalizingCall;
66
Chris Lattner3e928bb2005-01-07 07:47:09 +000067 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000068 Legal, // The target natively supports this operation.
69 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000070 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000071 };
Chris Lattner6831a812006-02-13 09:18:02 +000072
Chris Lattner3e928bb2005-01-07 07:47:09 +000073 /// ValueTypeActions - This is a bitvector that contains two bits for each
74 /// value type, where the two bits correspond to the LegalizeAction enum.
75 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000076 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000077
Chris Lattner3e928bb2005-01-07 07:47:09 +000078 /// LegalizedNodes - For nodes that are of legal width, and that have more
79 /// than one use, this map indicates what regularized operand to use. This
80 /// allows us to avoid legalizing the same thing more than once.
81 std::map<SDOperand, SDOperand> LegalizedNodes;
82
Chris Lattner03c85462005-01-15 05:21:40 +000083 /// PromotedNodes - For nodes that are below legal width, and that have more
84 /// than one use, this map indicates what promoted value to use. This allows
85 /// us to avoid promoting the same thing more than once.
86 std::map<SDOperand, SDOperand> PromotedNodes;
87
Chris Lattnerc7029802006-03-18 01:44:44 +000088 /// ExpandedNodes - For nodes that need to be expanded this map indicates
89 /// which which operands are the expanded version of the input. This allows
90 /// us to avoid expanding the same node more than once.
Chris Lattner3e928bb2005-01-07 07:47:09 +000091 std::map<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
92
Chris Lattnerc7029802006-03-18 01:44:44 +000093 /// SplitNodes - For vector nodes that need to be split, this map indicates
94 /// which which operands are the split version of the input. This allows us
95 /// to avoid splitting the same node more than once.
96 std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
97
98 /// PackedNodes - For nodes that need to be packed from MVT::Vector types to
99 /// concrete packed types, this contains the mapping of ones we have already
100 /// processed to the result.
101 std::map<SDOperand, SDOperand> PackedNodes;
102
Chris Lattner8afc48e2005-01-07 22:28:47 +0000103 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000104 LegalizedNodes.insert(std::make_pair(From, To));
105 // If someone requests legalization of the new node, return itself.
106 if (From != To)
107 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000108 }
Chris Lattner03c85462005-01-15 05:21:40 +0000109 void AddPromotedOperand(SDOperand From, SDOperand To) {
110 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
111 assert(isNew && "Got into the map somehow?");
Chris Lattner69a889e2005-12-20 00:53:54 +0000112 // If someone requests legalization of the new node, return itself.
113 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000114 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000115
Chris Lattner3e928bb2005-01-07 07:47:09 +0000116public:
117
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000118 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000119
Chris Lattner3e928bb2005-01-07 07:47:09 +0000120 /// getTypeAction - Return how we should legalize values of this type, either
121 /// it is already legal or we need to expand it into multiple registers of
122 /// smaller integer type, or we need to promote it to a larger type.
123 LegalizeAction getTypeAction(MVT::ValueType VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000124 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000125 }
126
127 /// isTypeLegal - Return true if this type is legal on this target.
128 ///
129 bool isTypeLegal(MVT::ValueType VT) const {
130 return getTypeAction(VT) == Legal;
131 }
132
Chris Lattner3e928bb2005-01-07 07:47:09 +0000133 void LegalizeDAG();
134
Chris Lattner456a93a2006-01-28 07:39:30 +0000135private:
Chris Lattnerc7029802006-03-18 01:44:44 +0000136 /// HandleOp - Legalize, Promote, Expand or Pack the specified operand as
137 /// appropriate for its type.
138 void HandleOp(SDOperand Op);
139
140 /// LegalizeOp - We know that the specified value has a legal type.
141 /// Recursively ensure that the operands have legal types, then return the
142 /// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000143 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000144
145 /// PromoteOp - Given an operation that produces a value in an invalid type,
146 /// promote it to compute the value into a larger type. The produced value
147 /// will have the correct bits for the low portion of the register, but no
148 /// guarantee is made about the top bits: it may be zero, sign-extended, or
149 /// garbage.
Chris Lattner03c85462005-01-15 05:21:40 +0000150 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000151
Chris Lattnerc7029802006-03-18 01:44:44 +0000152 /// ExpandOp - Expand the specified SDOperand into its two component pieces
153 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
154 /// the LegalizeNodes map is filled in for any results that are not expanded,
155 /// the ExpandedNodes map is filled in for any results that are expanded, and
156 /// the Lo/Hi values are returned. This applies to integer types and Vector
157 /// types.
158 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
159
160 /// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
161 /// two smaller values of MVT::Vector type.
162 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
163
164 /// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
165 /// equivalent operation that returns a packed value (e.g. MVT::V4F32). When
166 /// this is called, we know that PackedVT is the right type for the result and
167 /// we know that this type is legal for the target.
168 SDOperand PackVectorOp(SDOperand O, MVT::ValueType PackedVT);
169
Chris Lattner4352cc92006-04-04 17:23:26 +0000170 /// isShuffleLegal - Return true if a vector shuffle is legal with the
171 /// specified mask and type. Targets can specify exactly which masks they
172 /// support and the code generator is tasked with not creating illegal masks.
173 ///
174 /// Note that this will also return true for shuffles that are promoted to a
175 /// different type.
176 ///
177 /// If this is a legal shuffle, this method returns the (possibly promoted)
178 /// build_vector Mask. If it's not a legal shuffle, it returns null.
179 SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const;
180
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000181 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
182 std::set<SDNode*> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000183
Nate Begeman750ac1b2006-02-01 07:19:44 +0000184 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
185
Chris Lattnerce872152006-03-19 06:31:19 +0000186 SDOperand CreateStackTemporary(MVT::ValueType VT);
187
Chris Lattner77e77a62005-01-21 06:05:23 +0000188 SDOperand ExpandLibCall(const char *Name, SDNode *Node,
189 SDOperand &Hi);
190 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
191 SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000192
Chris Lattner35481892005-12-23 00:16:34 +0000193 SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
Chris Lattnerce872152006-03-19 06:31:19 +0000194 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000195 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskey6269ed12005-08-17 00:39:29 +0000196 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
197 SDOperand LegalOp,
198 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000199 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
200 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000201 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
202 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000203
Chris Lattner456a93a2006-01-28 07:39:30 +0000204 SDOperand ExpandBSWAP(SDOperand Op);
205 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000206 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
207 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000208 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
209 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000210
Chris Lattner15972212006-03-31 17:55:51 +0000211 SDOperand LowerVEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000212 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner15972212006-03-31 17:55:51 +0000213
Chris Lattner3e928bb2005-01-07 07:47:09 +0000214 SDOperand getIntPtrConstant(uint64_t Val) {
215 return DAG.getConstant(Val, TLI.getPointerTy());
216 }
217};
218}
219
Chris Lattner4352cc92006-04-04 17:23:26 +0000220/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
221/// specified mask and type. Targets can specify exactly which masks they
222/// support and the code generator is tasked with not creating illegal masks.
223///
224/// Note that this will also return true for shuffles that are promoted to a
225/// different type.
226SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT,
227 SDOperand Mask) const {
228 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
229 default: return 0;
230 case TargetLowering::Legal:
231 case TargetLowering::Custom:
232 break;
233 case TargetLowering::Promote: {
234 // If this is promoted to a different type, convert the shuffle mask and
235 // ask if it is legal in the promoted type!
236 MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
237
238 // If we changed # elements, change the shuffle mask.
239 unsigned NumEltsGrowth =
240 MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
241 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
242 if (NumEltsGrowth > 1) {
243 // Renumber the elements.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000244 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000245 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
246 SDOperand InOp = Mask.getOperand(i);
247 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
248 if (InOp.getOpcode() == ISD::UNDEF)
249 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
250 else {
251 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
252 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
253 }
254 }
255 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000256 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000257 }
258 VT = NVT;
259 break;
260 }
261 }
262 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
263}
264
Chris Lattnerc7029802006-03-18 01:44:44 +0000265/// getScalarizedOpcode - Return the scalar opcode that corresponds to the
266/// specified vector opcode.
Chris Lattnerb89175f2005-11-19 05:51:46 +0000267static unsigned getScalarizedOpcode(unsigned VecOp, MVT::ValueType VT) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000268 switch (VecOp) {
269 default: assert(0 && "Don't know how to scalarize this opcode!");
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000270 case ISD::VADD: return MVT::isInteger(VT) ? ISD::ADD : ISD::FADD;
271 case ISD::VSUB: return MVT::isInteger(VT) ? ISD::SUB : ISD::FSUB;
272 case ISD::VMUL: return MVT::isInteger(VT) ? ISD::MUL : ISD::FMUL;
273 case ISD::VSDIV: return MVT::isInteger(VT) ? ISD::SDIV: ISD::FDIV;
274 case ISD::VUDIV: return MVT::isInteger(VT) ? ISD::UDIV: ISD::FDIV;
275 case ISD::VAND: return MVT::isInteger(VT) ? ISD::AND : 0;
276 case ISD::VOR: return MVT::isInteger(VT) ? ISD::OR : 0;
277 case ISD::VXOR: return MVT::isInteger(VT) ? ISD::XOR : 0;
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000278 }
279}
Chris Lattner3e928bb2005-01-07 07:47:09 +0000280
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000281SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
282 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
283 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000284 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000285 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000286}
287
Chris Lattner32fca002005-10-06 01:20:27 +0000288/// ComputeTopDownOrdering - Add the specified node to the Order list if it has
289/// not been visited yet and if all of its operands have already been visited.
290static void ComputeTopDownOrdering(SDNode *N, std::vector<SDNode*> &Order,
291 std::map<SDNode*, unsigned> &Visited) {
292 if (++Visited[N] != N->getNumOperands())
293 return; // Haven't visited all operands yet
294
295 Order.push_back(N);
296
297 if (N->hasOneUse()) { // Tail recurse in common case.
298 ComputeTopDownOrdering(*N->use_begin(), Order, Visited);
299 return;
300 }
301
302 // Now that we have N in, add anything that uses it if all of their operands
303 // are now done.
Chris Lattner32fca002005-10-06 01:20:27 +0000304 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end(); UI != E;++UI)
305 ComputeTopDownOrdering(*UI, Order, Visited);
306}
307
Chris Lattner1618beb2005-07-29 00:11:56 +0000308
Chris Lattner3e928bb2005-01-07 07:47:09 +0000309void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000310 LastCALLSEQ_END = DAG.getEntryNode();
311 IsLegalizingCall = false;
312
Chris Lattnerab510a72005-10-02 17:49:46 +0000313 // The legalize process is inherently a bottom-up recursive process (users
314 // legalize their uses before themselves). Given infinite stack space, we
315 // could just start legalizing on the root and traverse the whole graph. In
316 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000317 // blocks. To avoid this problem, compute an ordering of the nodes where each
318 // node is only legalized after all of its operands are legalized.
319 std::map<SDNode*, unsigned> Visited;
320 std::vector<SDNode*> Order;
Chris Lattnerab510a72005-10-02 17:49:46 +0000321
Chris Lattner32fca002005-10-06 01:20:27 +0000322 // Compute ordering from all of the leaves in the graphs, those (like the
323 // entry node) that have no operands.
324 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
325 E = DAG.allnodes_end(); I != E; ++I) {
Chris Lattnerde202b32005-11-09 23:47:37 +0000326 if (I->getNumOperands() == 0) {
327 Visited[I] = 0 - 1U;
328 ComputeTopDownOrdering(I, Order, Visited);
Chris Lattnerab510a72005-10-02 17:49:46 +0000329 }
Chris Lattnerab510a72005-10-02 17:49:46 +0000330 }
331
Chris Lattnerde202b32005-11-09 23:47:37 +0000332 assert(Order.size() == Visited.size() &&
333 Order.size() ==
334 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
Chris Lattner32fca002005-10-06 01:20:27 +0000335 "Error: DAG is cyclic!");
336 Visited.clear();
Chris Lattnerab510a72005-10-02 17:49:46 +0000337
Chris Lattnerc7029802006-03-18 01:44:44 +0000338 for (unsigned i = 0, e = Order.size(); i != e; ++i)
339 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000340
341 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000342 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000343 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
344 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000345
346 ExpandedNodes.clear();
347 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000348 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000349 SplitNodes.clear();
350 PackedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000351
352 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000353 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000354}
355
Chris Lattner6831a812006-02-13 09:18:02 +0000356
357/// FindCallEndFromCallStart - Given a chained node that is part of a call
358/// sequence, find the CALLSEQ_END node that terminates the call sequence.
359static SDNode *FindCallEndFromCallStart(SDNode *Node) {
360 if (Node->getOpcode() == ISD::CALLSEQ_END)
361 return Node;
362 if (Node->use_empty())
363 return 0; // No CallSeqEnd
364
365 // The chain is usually at the end.
366 SDOperand TheChain(Node, Node->getNumValues()-1);
367 if (TheChain.getValueType() != MVT::Other) {
368 // Sometimes it's at the beginning.
369 TheChain = SDOperand(Node, 0);
370 if (TheChain.getValueType() != MVT::Other) {
371 // Otherwise, hunt for it.
372 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
373 if (Node->getValueType(i) == MVT::Other) {
374 TheChain = SDOperand(Node, i);
375 break;
376 }
377
378 // Otherwise, we walked into a node without a chain.
379 if (TheChain.getValueType() != MVT::Other)
380 return 0;
381 }
382 }
383
384 for (SDNode::use_iterator UI = Node->use_begin(),
385 E = Node->use_end(); UI != E; ++UI) {
386
387 // Make sure to only follow users of our token chain.
388 SDNode *User = *UI;
389 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
390 if (User->getOperand(i) == TheChain)
391 if (SDNode *Result = FindCallEndFromCallStart(User))
392 return Result;
393 }
394 return 0;
395}
396
397/// FindCallStartFromCallEnd - Given a chained node that is part of a call
398/// sequence, find the CALLSEQ_START node that initiates the call sequence.
399static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
400 assert(Node && "Didn't find callseq_start for a call??");
401 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
402
403 assert(Node->getOperand(0).getValueType() == MVT::Other &&
404 "Node doesn't have a token chain argument!");
405 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
406}
407
408/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
409/// see if any uses can reach Dest. If no dest operands can get to dest,
410/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000411///
412/// Keep track of the nodes we fine that actually do lead to Dest in
413/// NodesLeadingTo. This avoids retraversing them exponential number of times.
414///
415bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
416 std::set<SDNode*> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000417 if (N == Dest) return true; // N certainly leads to Dest :)
418
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000419 // If we've already processed this node and it does lead to Dest, there is no
420 // need to reprocess it.
421 if (NodesLeadingTo.count(N)) return true;
422
Chris Lattner6831a812006-02-13 09:18:02 +0000423 // If the first result of this node has been already legalized, then it cannot
424 // reach N.
425 switch (getTypeAction(N->getValueType(0))) {
426 case Legal:
427 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
428 break;
429 case Promote:
430 if (PromotedNodes.count(SDOperand(N, 0))) return false;
431 break;
432 case Expand:
433 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
434 break;
435 }
436
437 // Okay, this node has not already been legalized. Check and legalize all
438 // operands. If none lead to Dest, then we can legalize this node.
439 bool OperandsLeadToDest = false;
440 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
441 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000442 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000443
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000444 if (OperandsLeadToDest) {
445 NodesLeadingTo.insert(N);
446 return true;
447 }
Chris Lattner6831a812006-02-13 09:18:02 +0000448
449 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000450 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000451 return false;
452}
453
Chris Lattnerc7029802006-03-18 01:44:44 +0000454/// HandleOp - Legalize, Promote, Expand or Pack the specified operand as
455/// appropriate for its type.
456void SelectionDAGLegalize::HandleOp(SDOperand Op) {
457 switch (getTypeAction(Op.getValueType())) {
458 default: assert(0 && "Bad type action!");
459 case Legal: LegalizeOp(Op); break;
460 case Promote: PromoteOp(Op); break;
461 case Expand:
462 if (Op.getValueType() != MVT::Vector) {
463 SDOperand X, Y;
464 ExpandOp(Op, X, Y);
465 } else {
466 SDNode *N = Op.Val;
467 unsigned NumOps = N->getNumOperands();
468 unsigned NumElements =
469 cast<ConstantSDNode>(N->getOperand(NumOps-2))->getValue();
470 MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(NumOps-1))->getVT();
471 MVT::ValueType PackedVT = getVectorType(EVT, NumElements);
472 if (PackedVT != MVT::Other && TLI.isTypeLegal(PackedVT)) {
473 // In the common case, this is a legal vector type, convert it to the
474 // packed operation and type now.
475 PackVectorOp(Op, PackedVT);
476 } else if (NumElements == 1) {
477 // Otherwise, if this is a single element vector, convert it to a
478 // scalar operation.
479 PackVectorOp(Op, EVT);
480 } else {
481 // Otherwise, this is a multiple element vector that isn't supported.
482 // Split it in half and legalize both parts.
483 SDOperand X, Y;
Chris Lattner4794a6b2006-03-19 00:07:49 +0000484 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000485 }
486 }
487 break;
488 }
489}
Chris Lattner6831a812006-02-13 09:18:02 +0000490
Evan Cheng9f877882006-12-13 20:57:08 +0000491/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
492/// a load from the constant pool.
493static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000494 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000495 bool Extend = false;
496
497 // If a FP immediate is precise when represented as a float and if the
498 // target can do an extending load from float to double, we put it into
499 // the constant pool as a float, even if it's is statically typed as a
500 // double.
501 MVT::ValueType VT = CFP->getValueType(0);
502 bool isDouble = VT == MVT::f64;
503 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
504 Type::FloatTy, CFP->getValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000505 if (!UseCP) {
Evan Cheng279101e2006-12-12 22:19:28 +0000506 double Val = LLVMC->getValue();
507 return isDouble
508 ? DAG.getConstant(DoubleToBits(Val), MVT::i64)
509 : DAG.getConstant(FloatToBits(Val), MVT::i32);
510 }
511
Evan Cheng00495212006-12-12 21:32:44 +0000512 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
513 // Only do this if the target has a native EXTLOAD instruction from f32.
514 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
515 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC,Type::FloatTy));
516 VT = MVT::f32;
517 Extend = true;
518 }
519
520 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
521 if (Extend) {
522 return DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
523 CPIdx, NULL, 0, MVT::f32);
524 } else {
525 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
526 }
527}
528
Chris Lattner6831a812006-02-13 09:18:02 +0000529
Chris Lattnerc7029802006-03-18 01:44:44 +0000530/// LegalizeOp - We know that the specified value has a legal type.
531/// Recursively ensure that the operands have legal types, then return the
532/// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000533SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000534 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000535 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000536 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000537
Chris Lattner3e928bb2005-01-07 07:47:09 +0000538 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000539 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000540 if (Node->getNumValues() > 1) {
541 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000542 if (getTypeAction(Node->getValueType(i)) != Legal) {
543 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000544 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000545 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000546 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000547 }
548 }
549
Chris Lattner45982da2005-05-12 16:53:42 +0000550 // Note that LegalizeOp may be reentered even from single-use nodes, which
551 // means that we always must cache transformed nodes.
Chris Lattnere1bd8222005-01-11 05:57:22 +0000552 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
553 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000554
Nate Begeman9373a812005-08-10 20:51:12 +0000555 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000556 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000557 bool isCustom = false;
558
Chris Lattner3e928bb2005-01-07 07:47:09 +0000559 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000560 case ISD::FrameIndex:
561 case ISD::EntryToken:
562 case ISD::Register:
563 case ISD::BasicBlock:
564 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000565 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000566 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000567 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000568 case ISD::TargetConstantPool:
569 case ISD::TargetGlobalAddress:
570 case ISD::TargetExternalSymbol:
571 case ISD::VALUETYPE:
572 case ISD::SRCVALUE:
573 case ISD::STRING:
574 case ISD::CONDCODE:
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +0000575 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner948c1b12006-01-28 08:31:04 +0000576 // Primitives must all be legal.
577 assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
578 "This must be legal!");
579 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000580 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000581 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
582 // If this is a target node, legalize it by legalizing the operands then
583 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000584 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000585 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000586 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000587
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000588 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000589
590 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
591 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
592 return Result.getValue(Op.ResNo);
593 }
594 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000595#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +0000596 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000597#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000598 assert(0 && "Do not know how to legalize this operator!");
599 abort();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000600 case ISD::GlobalAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000601 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000602 case ISD::ConstantPool:
603 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000604 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
605 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000606 case TargetLowering::Custom:
607 Tmp1 = TLI.LowerOperation(Op, DAG);
608 if (Tmp1.Val) Result = Tmp1;
609 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000610 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000611 break;
612 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000613 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000614 case ISD::AssertSext:
615 case ISD::AssertZext:
616 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000617 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000618 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000619 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000620 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000621 Result = Node->getOperand(Op.ResNo);
622 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000623 case ISD::CopyFromReg:
624 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000625 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000626 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000627 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000628 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000629 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000630 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000631 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000632 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
633 } else {
634 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
635 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000636 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
637 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000638 // Since CopyFromReg produces two values, make sure to remember that we
639 // legalized both of them.
640 AddLegalizedOperand(Op.getValue(0), Result);
641 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
642 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000643 case ISD::UNDEF: {
644 MVT::ValueType VT = Op.getValueType();
645 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000646 default: assert(0 && "This action is not supported yet!");
647 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000648 if (MVT::isInteger(VT))
649 Result = DAG.getConstant(0, VT);
650 else if (MVT::isFloatingPoint(VT))
651 Result = DAG.getConstantFP(0, VT);
652 else
653 assert(0 && "Unknown value type!");
654 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000655 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000656 break;
657 }
658 break;
659 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000660
Chris Lattner48b61a72006-03-28 00:40:33 +0000661 case ISD::INTRINSIC_W_CHAIN:
662 case ISD::INTRINSIC_WO_CHAIN:
663 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000664 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000665 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
666 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000667 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +0000668
669 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +0000670 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +0000671 TargetLowering::Custom) {
672 Tmp3 = TLI.LowerOperation(Result, DAG);
673 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +0000674 }
675
676 if (Result.Val->getNumValues() == 1) break;
677
678 // Must have return value and chain result.
679 assert(Result.Val->getNumValues() == 2 &&
680 "Cannot return more than two values!");
681
682 // Since loads produce two values, make sure to remember that we
683 // legalized both of them.
684 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
685 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
686 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000687 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000688
689 case ISD::LOCATION:
690 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
691 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
692
693 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
694 case TargetLowering::Promote:
695 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000696 case TargetLowering::Expand: {
Jim Laskeyb2efb852006-01-04 22:28:25 +0000697 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000698 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
699 bool useDEBUG_LABEL = TLI.isOperationLegal(ISD::DEBUG_LABEL, MVT::Other);
700
701 if (DebugInfo && (useDEBUG_LOC || useDEBUG_LABEL)) {
702 const std::string &FName =
703 cast<StringSDNode>(Node->getOperand(3))->getValue();
704 const std::string &DirName =
705 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey063e7652006-01-17 17:31:53 +0000706 unsigned SrcFile = DebugInfo->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000707
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000708 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +0000709 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +0000710 SDOperand LineOp = Node->getOperand(1);
711 SDOperand ColOp = Node->getOperand(2);
712
713 if (useDEBUG_LOC) {
714 Ops.push_back(LineOp); // line #
715 Ops.push_back(ColOp); // col #
716 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000717 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000718 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +0000719 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
720 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000721 unsigned ID = DebugInfo->RecordLabel(Line, Col, SrcFile);
722 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000723 Result = DAG.getNode(ISD::DEBUG_LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000724 }
Jim Laskeye81aecb2005-12-21 20:51:37 +0000725 } else {
726 Result = Tmp1; // chain
727 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000728 break;
Chris Lattnere7736732005-12-18 23:54:29 +0000729 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000730 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +0000731 if (Tmp1 != Node->getOperand(0) ||
732 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000733 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +0000734 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +0000735 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
736 Ops.push_back(Node->getOperand(1)); // line # must be legal.
737 Ops.push_back(Node->getOperand(2)); // col # must be legal.
738 } else {
739 // Otherwise promote them.
740 Ops.push_back(PromoteOp(Node->getOperand(1)));
741 Ops.push_back(PromoteOp(Node->getOperand(2)));
742 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000743 Ops.push_back(Node->getOperand(3)); // filename must be legal.
744 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000745 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +0000746 }
747 break;
748 }
749 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000750
751 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +0000752 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000753 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000754 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +0000755 case TargetLowering::Legal:
756 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
757 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
758 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
759 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000760 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000761 break;
762 }
763 break;
764
765 case ISD::DEBUG_LABEL:
766 assert(Node->getNumOperands() == 2 && "Invalid DEBUG_LABEL node!");
767 switch (TLI.getOperationAction(ISD::DEBUG_LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000768 default: assert(0 && "This action is not supported yet!");
769 case TargetLowering::Legal:
770 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
771 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000772 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000773 break;
774 }
Nate Begeman551bf3f2006-02-17 05:43:56 +0000775 break;
Chris Lattner36ce6912005-11-29 06:21:05 +0000776
Chris Lattner3e928bb2005-01-07 07:47:09 +0000777 case ISD::Constant:
778 // We know we don't need to expand constants here, constants only have one
779 // value and we check that it is fine above.
780
781 // FIXME: Maybe we should handle things like targets that don't support full
782 // 32-bit immediates?
783 break;
784 case ISD::ConstantFP: {
785 // Spill FP immediates to the constant pool if the target cannot directly
786 // codegen them. Targets often have some immediate values that can be
787 // efficiently generated into an FP register without a load. We explicitly
788 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000789 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
790
791 // Check to see if this FP immediate is already legal.
792 bool isLegal = false;
793 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
794 E = TLI.legal_fpimm_end(); I != E; ++I)
795 if (CFP->isExactlyValue(*I)) {
796 isLegal = true;
797 break;
798 }
799
Chris Lattner3181a772006-01-29 06:26:56 +0000800 // If this is a legal constant, turn it into a TargetConstantFP node.
801 if (isLegal) {
802 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
803 break;
804 }
805
806 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
807 default: assert(0 && "This action is not supported yet!");
808 case TargetLowering::Custom:
809 Tmp3 = TLI.LowerOperation(Result, DAG);
810 if (Tmp3.Val) {
811 Result = Tmp3;
812 break;
813 }
814 // FALLTHROUGH
815 case TargetLowering::Expand:
Evan Cheng279101e2006-12-12 22:19:28 +0000816 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000817 }
818 break;
819 }
Chris Lattner040c11c2005-11-09 18:48:57 +0000820 case ISD::TokenFactor:
821 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000822 Tmp1 = LegalizeOp(Node->getOperand(0));
823 Tmp2 = LegalizeOp(Node->getOperand(1));
824 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
825 } else if (Node->getNumOperands() == 3) {
826 Tmp1 = LegalizeOp(Node->getOperand(0));
827 Tmp2 = LegalizeOp(Node->getOperand(1));
828 Tmp3 = LegalizeOp(Node->getOperand(2));
829 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +0000830 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000831 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +0000832 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000833 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
834 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000835 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +0000836 }
Chris Lattnera385e9b2005-01-13 17:59:25 +0000837 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000838
839 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000840 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +0000841 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +0000842 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
843 assert(Tmp3.Val && "Target didn't custom lower this node!");
844 assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
845 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +0000846
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000847 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +0000848 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +0000849 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
850 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +0000851 if (Op.ResNo == i)
852 Tmp2 = Tmp1;
853 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
854 }
855 return Tmp2;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000856
Chris Lattnerb2827b02006-03-19 00:52:58 +0000857 case ISD::BUILD_VECTOR:
858 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +0000859 default: assert(0 && "This action is not supported yet!");
860 case TargetLowering::Custom:
861 Tmp3 = TLI.LowerOperation(Result, DAG);
862 if (Tmp3.Val) {
863 Result = Tmp3;
864 break;
865 }
866 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +0000867 case TargetLowering::Expand:
868 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +0000869 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +0000870 }
Chris Lattner2332b9f2006-03-19 01:17:20 +0000871 break;
872 case ISD::INSERT_VECTOR_ELT:
873 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
874 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
875 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
876 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
877
878 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
879 Node->getValueType(0))) {
880 default: assert(0 && "This action is not supported yet!");
881 case TargetLowering::Legal:
882 break;
883 case TargetLowering::Custom:
884 Tmp3 = TLI.LowerOperation(Result, DAG);
885 if (Tmp3.Val) {
886 Result = Tmp3;
887 break;
888 }
889 // FALLTHROUGH
890 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +0000891 // If the insert index is a constant, codegen this as a scalar_to_vector,
892 // then a shuffle that inserts it into the right position in the vector.
893 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
894 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
895 Tmp1.getValueType(), Tmp2);
896
897 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
898 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
899 MVT::ValueType ShufMaskEltVT = MVT::getVectorBaseType(ShufMaskVT);
900
901 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
902 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
903 // the RHS.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000904 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner8d5a8942006-04-17 19:21:01 +0000905 for (unsigned i = 0; i != NumElts; ++i) {
906 if (i != InsertPos->getValue())
907 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
908 else
909 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
910 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000911 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
912 &ShufOps[0], ShufOps.size());
Chris Lattner8d5a8942006-04-17 19:21:01 +0000913
914 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
915 Tmp1, ScVec, ShufMask);
916 Result = LegalizeOp(Result);
917 break;
918 }
919
Chris Lattner2332b9f2006-03-19 01:17:20 +0000920 // If the target doesn't support this, we have to spill the input vector
921 // to a temporary stack slot, update the element, then reload it. This is
922 // badness. We could also load the value into a vector register (either
923 // with a "move to register" or "extload into register" instruction, then
924 // permute it into place, if the idx is a constant and if the idx is
925 // supported by the target.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000926 MVT::ValueType VT = Tmp1.getValueType();
927 MVT::ValueType EltVT = Tmp2.getValueType();
928 MVT::ValueType IdxVT = Tmp3.getValueType();
929 MVT::ValueType PtrVT = TLI.getPointerTy();
930 SDOperand StackPtr = CreateStackTemporary(VT);
Evan Chengeb0b4612006-03-31 01:27:51 +0000931 // Store the vector.
Evan Cheng8b2794a2006-10-13 21:14:26 +0000932 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +0000933
934 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000935 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
936 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +0000937 // Add the offset to the index.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000938 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
939 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
940 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Chengeb0b4612006-03-31 01:27:51 +0000941 // Store the scalar value.
Evan Cheng8b2794a2006-10-13 21:14:26 +0000942 Ch = DAG.getStore(Ch, Tmp2, StackPtr2, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +0000943 // Load the updated vector.
Evan Cheng466685d2006-10-09 20:57:25 +0000944 Result = DAG.getLoad(VT, Ch, StackPtr, NULL, 0);
Chris Lattner2332b9f2006-03-19 01:17:20 +0000945 break;
946 }
947 }
948 break;
Chris Lattnerce872152006-03-19 06:31:19 +0000949 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +0000950 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
951 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
952 break;
953 }
954
Chris Lattnerce872152006-03-19 06:31:19 +0000955 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
956 Result = DAG.UpdateNodeOperands(Result, Tmp1);
957 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
958 Node->getValueType(0))) {
959 default: assert(0 && "This action is not supported yet!");
960 case TargetLowering::Legal:
961 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +0000962 case TargetLowering::Custom:
963 Tmp3 = TLI.LowerOperation(Result, DAG);
964 if (Tmp3.Val) {
965 Result = Tmp3;
966 break;
967 }
968 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +0000969 case TargetLowering::Expand:
970 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +0000971 break;
972 }
Chris Lattnerce872152006-03-19 06:31:19 +0000973 break;
Chris Lattner87100e02006-03-20 01:52:29 +0000974 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +0000975 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
976 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
977 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
978
979 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +0000980 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
981 default: assert(0 && "Unknown operation action!");
982 case TargetLowering::Legal:
983 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
984 "vector shuffle should not be created if not legal!");
985 break;
986 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +0000987 Tmp3 = TLI.LowerOperation(Result, DAG);
988 if (Tmp3.Val) {
989 Result = Tmp3;
990 break;
991 }
992 // FALLTHROUGH
993 case TargetLowering::Expand: {
994 MVT::ValueType VT = Node->getValueType(0);
995 MVT::ValueType EltVT = MVT::getVectorBaseType(VT);
996 MVT::ValueType PtrVT = TLI.getPointerTy();
997 SDOperand Mask = Node->getOperand(2);
998 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000999 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001000 for (unsigned i = 0; i != NumElems; ++i) {
1001 SDOperand Arg = Mask.getOperand(i);
1002 if (Arg.getOpcode() == ISD::UNDEF) {
1003 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1004 } else {
1005 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1006 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1007 if (Idx < NumElems)
1008 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1009 DAG.getConstant(Idx, PtrVT)));
1010 else
1011 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1012 DAG.getConstant(Idx - NumElems, PtrVT)));
1013 }
1014 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001015 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001016 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001017 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001018 case TargetLowering::Promote: {
1019 // Change base type to a different vector type.
1020 MVT::ValueType OVT = Node->getValueType(0);
1021 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1022
1023 // Cast the two input vectors.
1024 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1025 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1026
1027 // Convert the shuffle mask to the right # elements.
1028 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1029 assert(Tmp3.Val && "Shuffle not legal?");
1030 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1031 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1032 break;
1033 }
Chris Lattner87100e02006-03-20 01:52:29 +00001034 }
1035 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001036
1037 case ISD::EXTRACT_VECTOR_ELT:
1038 Tmp1 = LegalizeOp(Node->getOperand(0));
1039 Tmp2 = LegalizeOp(Node->getOperand(1));
1040 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattnere35c2182006-03-21 21:02:03 +00001041
1042 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT,
1043 Tmp1.getValueType())) {
1044 default: assert(0 && "This action is not supported yet!");
1045 case TargetLowering::Legal:
1046 break;
1047 case TargetLowering::Custom:
1048 Tmp3 = TLI.LowerOperation(Result, DAG);
1049 if (Tmp3.Val) {
1050 Result = Tmp3;
1051 break;
1052 }
1053 // FALLTHROUGH
Chris Lattner4aab2f42006-04-02 05:06:04 +00001054 case TargetLowering::Expand:
1055 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattnere35c2182006-03-21 21:02:03 +00001056 break;
1057 }
Chris Lattner384504c2006-03-21 20:44:12 +00001058 break;
1059
Chris Lattner15972212006-03-31 17:55:51 +00001060 case ISD::VEXTRACT_VECTOR_ELT:
1061 Result = LegalizeOp(LowerVEXTRACT_VECTOR_ELT(Op));
Chris Lattner384504c2006-03-21 20:44:12 +00001062 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001063
Chris Lattner6831a812006-02-13 09:18:02 +00001064 case ISD::CALLSEQ_START: {
1065 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1066
1067 // Recursively Legalize all of the inputs of the call end that do not lead
1068 // to this call start. This ensures that any libcalls that need be inserted
1069 // are inserted *before* the CALLSEQ_START.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001070 {std::set<SDNode*> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001071 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001072 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1073 NodesLeadingTo);
1074 }
Chris Lattner6831a812006-02-13 09:18:02 +00001075
1076 // Now that we legalized all of the inputs (which may have inserted
1077 // libcalls) create the new CALLSEQ_START node.
1078 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1079
1080 // Merge in the last call, to ensure that this call start after the last
1081 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001082 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001083 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1084 Tmp1 = LegalizeOp(Tmp1);
1085 }
Chris Lattner6831a812006-02-13 09:18:02 +00001086
1087 // Do not try to legalize the target-specific arguments (#1+).
1088 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001089 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001090 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001091 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001092 }
1093
1094 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001095 AddLegalizedOperand(Op.getValue(0), Result);
1096 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1097 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1098
Chris Lattner6831a812006-02-13 09:18:02 +00001099 // Now that the callseq_start and all of the non-call nodes above this call
1100 // sequence have been legalized, legalize the call itself. During this
1101 // process, no libcalls can/will be inserted, guaranteeing that no calls
1102 // can overlap.
1103 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1104 SDOperand InCallSEQ = LastCALLSEQ_END;
1105 // Note that we are selecting this call!
1106 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1107 IsLegalizingCall = true;
1108
1109 // Legalize the call, starting from the CALLSEQ_END.
1110 LegalizeOp(LastCALLSEQ_END);
1111 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1112 return Result;
1113 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001114 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001115 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1116 // will cause this node to be legalized as well as handling libcalls right.
1117 if (LastCALLSEQ_END.Val != Node) {
1118 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
1119 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
1120 assert(I != LegalizedNodes.end() &&
1121 "Legalizing the call start should have legalized this node!");
1122 return I->second;
1123 }
1124
1125 // Otherwise, the call start has been legalized and everything is going
1126 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001127 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001128 // Do not try to legalize the target-specific arguments (#1+), except for
1129 // an optional flag input.
1130 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1131 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001132 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001133 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001134 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001135 }
1136 } else {
1137 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1138 if (Tmp1 != Node->getOperand(0) ||
1139 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001140 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001141 Ops[0] = Tmp1;
1142 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001143 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001144 }
Chris Lattner6a542892006-01-24 05:48:21 +00001145 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001146 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001147 // This finishes up call legalization.
1148 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001149
1150 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1151 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1152 if (Node->getNumValues() == 2)
1153 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1154 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001155 case ISD::DYNAMIC_STACKALLOC: {
Chris Lattnerfa404e82005-01-09 19:03:49 +00001156 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1157 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1158 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001159 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001160
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001161 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001162 Tmp2 = Result.getValue(1);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001163 switch (TLI.getOperationAction(Node->getOpcode(),
1164 Node->getValueType(0))) {
1165 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001166 case TargetLowering::Expand: {
1167 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1168 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1169 " not tell us which reg is the stack pointer!");
1170 SDOperand Chain = Tmp1.getOperand(0);
1171 SDOperand Size = Tmp2.getOperand(1);
1172 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
1173 Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size); // Value
1174 Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1); // Output chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001175 Tmp1 = LegalizeOp(Tmp1);
1176 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001177 break;
1178 }
1179 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001180 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1181 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001182 Tmp1 = LegalizeOp(Tmp3);
1183 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001184 }
Chris Lattner903d2782006-01-15 08:54:32 +00001185 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001186 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001187 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001188 }
Chris Lattner903d2782006-01-15 08:54:32 +00001189 // Since this op produce two values, make sure to remember that we
1190 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001191 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1192 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001193 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001194 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001195 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001196 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001197 bool Changed = false;
1198 // Legalize all of the operands of the inline asm, in case they are nodes
1199 // that need to be expanded or something. Note we skip the asm string and
1200 // all of the TargetConstant flags.
1201 SDOperand Op = LegalizeOp(Ops[0]);
1202 Changed = Op != Ops[0];
1203 Ops[0] = Op;
1204
1205 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1206 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1207 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1208 for (++i; NumVals; ++i, --NumVals) {
1209 SDOperand Op = LegalizeOp(Ops[i]);
1210 if (Op != Ops[i]) {
1211 Changed = true;
1212 Ops[i] = Op;
1213 }
1214 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001215 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001216
1217 if (HasInFlag) {
1218 Op = LegalizeOp(Ops.back());
1219 Changed |= Op != Ops.back();
1220 Ops.back() = Op;
1221 }
1222
1223 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001224 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001225
1226 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001227 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001228 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1229 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001230 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001231 case ISD::BR:
1232 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001233 // Ensure that libcalls are emitted before a branch.
1234 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1235 Tmp1 = LegalizeOp(Tmp1);
1236 LastCALLSEQ_END = DAG.getEntryNode();
1237
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001238 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001239 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001240 case ISD::BRIND:
1241 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1242 // Ensure that libcalls are emitted before a branch.
1243 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1244 Tmp1 = LegalizeOp(Tmp1);
1245 LastCALLSEQ_END = DAG.getEntryNode();
1246
1247 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1248 default: assert(0 && "Indirect target must be legal type (pointer)!");
1249 case Legal:
1250 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1251 break;
1252 }
1253 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1254 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001255 case ISD::BR_JT:
1256 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1257 // Ensure that libcalls are emitted before a branch.
1258 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1259 Tmp1 = LegalizeOp(Tmp1);
1260 LastCALLSEQ_END = DAG.getEntryNode();
1261
1262 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1263 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1264
1265 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1266 default: assert(0 && "This action is not supported yet!");
1267 case TargetLowering::Legal: break;
1268 case TargetLowering::Custom:
1269 Tmp1 = TLI.LowerOperation(Result, DAG);
1270 if (Tmp1.Val) Result = Tmp1;
1271 break;
1272 case TargetLowering::Expand: {
1273 SDOperand Chain = Result.getOperand(0);
1274 SDOperand Table = Result.getOperand(1);
1275 SDOperand Index = Result.getOperand(2);
1276
1277 MVT::ValueType PTy = TLI.getPointerTy();
1278 bool isPIC = TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_;
1279 // PIC jump table entries are 32-bit values.
1280 unsigned EntrySize = isPIC ? 4 : MVT::getSizeInBits(PTy)/8;
1281 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1282 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
1283 SDOperand LD = DAG.getLoad(isPIC ? MVT::i32 : PTy, Chain, Addr, NULL, 0);
1284 if (isPIC) {
1285 // For PIC, the sequence is:
1286 // BRIND(load(Jumptable + index) + RelocBase)
1287 // RelocBase is the JumpTable on PPC and X86, GOT on Alpha
1288 SDOperand Reloc;
1289 if (TLI.usesGlobalOffsetTable())
1290 Reloc = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, PTy);
1291 else
1292 Reloc = Table;
Evan Chengd0631892006-10-31 02:31:00 +00001293 Addr = (PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001294 Addr = DAG.getNode(ISD::ADD, PTy, Addr, Reloc);
1295 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
1296 } else {
1297 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD);
1298 }
1299 }
1300 }
1301 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001302 case ISD::BRCOND:
1303 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001304 // Ensure that libcalls are emitted before a return.
1305 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1306 Tmp1 = LegalizeOp(Tmp1);
1307 LastCALLSEQ_END = DAG.getEntryNode();
1308
Chris Lattner47e92232005-01-18 19:27:06 +00001309 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1310 case Expand: assert(0 && "It's impossible to expand bools");
1311 case Legal:
1312 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1313 break;
1314 case Promote:
1315 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001316
1317 // The top bits of the promoted condition are not necessarily zero, ensure
1318 // that the value is properly zero extended.
1319 if (!TLI.MaskedValueIsZero(Tmp2,
1320 MVT::getIntVTBitMask(Tmp2.getValueType())^1))
1321 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001322 break;
1323 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001324
1325 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001326 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001327
1328 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1329 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001330 case TargetLowering::Legal: break;
1331 case TargetLowering::Custom:
1332 Tmp1 = TLI.LowerOperation(Result, DAG);
1333 if (Tmp1.Val) Result = Tmp1;
1334 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001335 case TargetLowering::Expand:
1336 // Expand brcond's setcc into its constituent parts and create a BR_CC
1337 // Node.
1338 if (Tmp2.getOpcode() == ISD::SETCC) {
1339 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1340 Tmp2.getOperand(0), Tmp2.getOperand(1),
1341 Node->getOperand(2));
1342 } else {
1343 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1344 DAG.getCondCode(ISD::SETNE), Tmp2,
1345 DAG.getConstant(0, Tmp2.getValueType()),
1346 Node->getOperand(2));
1347 }
1348 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001349 }
1350 break;
1351 case ISD::BR_CC:
1352 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001353 // 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
Nate Begeman750ac1b2006-02-01 07:19:44 +00001358 Tmp2 = Node->getOperand(2); // LHS
1359 Tmp3 = Node->getOperand(3); // RHS
1360 Tmp4 = Node->getOperand(1); // CC
1361
1362 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1363
1364 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1365 // the LHS is a legal SETCC itself. In this case, we need to compare
1366 // the result against zero to select between true and false values.
1367 if (Tmp3.Val == 0) {
1368 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1369 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001370 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001371
1372 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1373 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001374
Chris Lattner181b7a32005-12-17 23:46:46 +00001375 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1376 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001377 case TargetLowering::Legal: break;
1378 case TargetLowering::Custom:
1379 Tmp4 = TLI.LowerOperation(Result, DAG);
1380 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001381 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001382 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001383 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001384 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001385 LoadSDNode *LD = cast<LoadSDNode>(Node);
1386 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1387 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001388
Evan Cheng466685d2006-10-09 20:57:25 +00001389 ISD::LoadExtType ExtType = LD->getExtensionType();
1390 if (ExtType == ISD::NON_EXTLOAD) {
1391 MVT::ValueType VT = Node->getValueType(0);
1392 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1393 Tmp3 = Result.getValue(0);
1394 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001395
Evan Cheng466685d2006-10-09 20:57:25 +00001396 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1397 default: assert(0 && "This action is not supported yet!");
1398 case TargetLowering::Legal: break;
1399 case TargetLowering::Custom:
1400 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1401 if (Tmp1.Val) {
1402 Tmp3 = LegalizeOp(Tmp1);
1403 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001404 }
Evan Cheng466685d2006-10-09 20:57:25 +00001405 break;
1406 case TargetLowering::Promote: {
1407 // Only promote a load of vector type to another.
1408 assert(MVT::isVector(VT) && "Cannot promote this load!");
1409 // Change base type to a different vector type.
1410 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1411
1412 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
1413 LD->getSrcValueOffset());
1414 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1415 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001416 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001417 }
Evan Cheng466685d2006-10-09 20:57:25 +00001418 }
1419 // Since loads produce two values, make sure to remember that we
1420 // legalized both of them.
1421 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1422 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1423 return Op.ResNo ? Tmp4 : Tmp3;
1424 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00001425 MVT::ValueType SrcVT = LD->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001426 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1427 default: assert(0 && "This action is not supported yet!");
1428 case TargetLowering::Promote:
1429 assert(SrcVT == MVT::i1 &&
1430 "Can only promote extending LOAD from i1 -> i8!");
1431 Result = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1432 LD->getSrcValue(), LD->getSrcValueOffset(),
1433 MVT::i8);
1434 Tmp1 = Result.getValue(0);
1435 Tmp2 = Result.getValue(1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001436 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001437 case TargetLowering::Custom:
1438 isCustom = true;
1439 // FALLTHROUGH
1440 case TargetLowering::Legal:
1441 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1442 Tmp1 = Result.getValue(0);
1443 Tmp2 = Result.getValue(1);
1444
1445 if (isCustom) {
1446 Tmp3 = TLI.LowerOperation(Result, DAG);
1447 if (Tmp3.Val) {
1448 Tmp1 = LegalizeOp(Tmp3);
1449 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1450 }
1451 }
1452 break;
1453 case TargetLowering::Expand:
1454 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
1455 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1456 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
1457 LD->getSrcValueOffset());
1458 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
1459 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1460 Tmp2 = LegalizeOp(Load.getValue(1));
1461 break;
1462 }
1463 assert(ExtType != ISD::EXTLOAD && "EXTLOAD should always be supported!");
1464 // Turn the unsupported load into an EXTLOAD followed by an explicit
1465 // zero/sign extend inreg.
1466 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1467 Tmp1, Tmp2, LD->getSrcValue(),
1468 LD->getSrcValueOffset(), SrcVT);
1469 SDOperand ValRes;
1470 if (ExtType == ISD::SEXTLOAD)
1471 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1472 Result, DAG.getValueType(SrcVT));
1473 else
1474 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
1475 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1476 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1477 break;
1478 }
1479 // Since loads produce two values, make sure to remember that we legalized
1480 // both of them.
1481 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1482 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1483 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00001484 }
Chris Lattner01ff7212005-04-10 22:54:25 +00001485 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001486 case ISD::EXTRACT_ELEMENT: {
1487 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1488 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001489 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00001490 case Legal:
1491 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1492 // 1 -> Hi
1493 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1494 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1495 TLI.getShiftAmountTy()));
1496 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1497 } else {
1498 // 0 -> Lo
1499 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1500 Node->getOperand(0));
1501 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001502 break;
1503 case Expand:
1504 // Get both the low and high parts.
1505 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1506 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1507 Result = Tmp2; // 1 -> Hi
1508 else
1509 Result = Tmp1; // 0 -> Lo
1510 break;
1511 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001512 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00001513 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001514
1515 case ISD::CopyToReg:
1516 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00001517
Chris Lattnerc9c60f62005-08-24 16:35:28 +00001518 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001519 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00001520 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001521 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001522 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001523 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001524 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001525 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001526 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001527 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001528 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1529 Tmp3);
1530 } else {
1531 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001532 }
1533
1534 // Since this produces two values, make sure to remember that we legalized
1535 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001536 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001537 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001538 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00001539 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001540 break;
1541
1542 case ISD::RET:
1543 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001544
1545 // Ensure that libcalls are emitted before a return.
1546 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1547 Tmp1 = LegalizeOp(Tmp1);
1548 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00001549
Chris Lattner3e928bb2005-01-07 07:47:09 +00001550 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00001551 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00001552 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001553 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00001554 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001555 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00001556 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001557 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00001558 case Expand:
1559 if (Tmp2.getValueType() != MVT::Vector) {
1560 SDOperand Lo, Hi;
1561 ExpandOp(Tmp2, Lo, Hi);
Evan Cheng13acce32006-12-11 19:27:14 +00001562 if (Hi.Val)
1563 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
1564 else
1565 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00001566 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001567 } else {
1568 SDNode *InVal = Tmp2.Val;
1569 unsigned NumElems =
1570 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1571 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1572
1573 // Figure out if there is a Packed type corresponding to this Vector
1574 // type. If so, convert to the packed type.
1575 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1576 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1577 // Turn this into a return of the packed type.
1578 Tmp2 = PackVectorOp(Tmp2, TVT);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001579 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001580 } else if (NumElems == 1) {
1581 // Turn this into a return of the scalar type.
1582 Tmp2 = PackVectorOp(Tmp2, EVT);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001583 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001584
1585 // FIXME: Returns of gcc generic vectors smaller than a legal type
1586 // should be returned in integer registers!
1587
Chris Lattnerf87324e2006-04-11 01:31:51 +00001588 // The scalarized value type may not be legal, e.g. it might require
1589 // promotion or expansion. Relegalize the return.
1590 Result = LegalizeOp(Result);
1591 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001592 // FIXME: Returns of gcc generic vectors larger than a legal vector
1593 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00001594 SDOperand Lo, Hi;
1595 SplitVectorOp(Tmp2, Lo, Hi);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001596 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001597 Result = LegalizeOp(Result);
1598 }
1599 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001600 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001601 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001602 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001603 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001604 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001605 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001606 }
1607 break;
1608 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001609 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001610 break;
1611 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001612 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001613 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001614 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00001615 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1616 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00001617 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001618 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001619 break;
1620 case Expand: {
1621 SDOperand Lo, Hi;
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001622 assert(Node->getOperand(i).getValueType() != MVT::Vector &&
1623 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001624 ExpandOp(Node->getOperand(i), Lo, Hi);
1625 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001626 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00001627 if (Hi.Val) {
1628 NewValues.push_back(Hi);
1629 NewValues.push_back(Node->getOperand(i+1));
1630 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001631 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001632 }
1633 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001634 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001635 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001636
1637 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001638 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001639 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001640 Result = DAG.getNode(ISD::RET, MVT::Other,
1641 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00001642 break;
1643 }
1644 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001645
Chris Lattner6862dbc2006-01-29 21:02:23 +00001646 if (Result.getOpcode() == ISD::RET) {
1647 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1648 default: assert(0 && "This action is not supported yet!");
1649 case TargetLowering::Legal: break;
1650 case TargetLowering::Custom:
1651 Tmp1 = TLI.LowerOperation(Result, DAG);
1652 if (Tmp1.Val) Result = Tmp1;
1653 break;
1654 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001655 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001656 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001657 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00001658 StoreSDNode *ST = cast<StoreSDNode>(Node);
1659 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
1660 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001661
Evan Cheng8b2794a2006-10-13 21:14:26 +00001662 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00001663 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
1664 // FIXME: We shouldn't do this for TargetConstantFP's.
1665 // FIXME: move this to the DAG Combiner! Note that we can't regress due
1666 // to phase ordering between legalized code and the dag combiner. This
1667 // probably means that we need to integrate dag combiner and legalizer
1668 // together.
1669 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
1670 if (CFP->getValueType(0) == MVT::f32) {
1671 Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
1672 } else {
1673 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
1674 Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
1675 }
1676 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1677 ST->getSrcValueOffset());
1678 break;
1679 }
1680
Evan Cheng8b2794a2006-10-13 21:14:26 +00001681 switch (getTypeAction(ST->getStoredVT())) {
1682 case Legal: {
1683 Tmp3 = LegalizeOp(ST->getValue());
1684 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1685 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001686
Evan Cheng8b2794a2006-10-13 21:14:26 +00001687 MVT::ValueType VT = Tmp3.getValueType();
1688 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1689 default: assert(0 && "This action is not supported yet!");
1690 case TargetLowering::Legal: break;
1691 case TargetLowering::Custom:
1692 Tmp1 = TLI.LowerOperation(Result, DAG);
1693 if (Tmp1.Val) Result = Tmp1;
1694 break;
1695 case TargetLowering::Promote:
1696 assert(MVT::isVector(VT) && "Unknown legal promote case!");
1697 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
1698 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
1699 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
1700 ST->getSrcValue(), ST->getSrcValueOffset());
1701 break;
1702 }
1703 break;
1704 }
1705 case Promote:
1706 // Truncate the value and store the result.
1707 Tmp3 = PromoteOp(ST->getValue());
1708 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1709 ST->getSrcValueOffset(), ST->getStoredVT());
1710 break;
1711
1712 case Expand:
1713 unsigned IncrementSize = 0;
1714 SDOperand Lo, Hi;
1715
1716 // If this is a vector type, then we have to calculate the increment as
1717 // the product of the element size in bytes, and the number of elements
1718 // in the high half of the vector.
1719 if (ST->getValue().getValueType() == MVT::Vector) {
1720 SDNode *InVal = ST->getValue().Val;
1721 unsigned NumElems =
1722 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1723 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1724
1725 // Figure out if there is a Packed type corresponding to this Vector
1726 // type. If so, convert to the packed type.
1727 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1728 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1729 // Turn this into a normal store of the packed type.
1730 Tmp3 = PackVectorOp(Node->getOperand(1), TVT);
1731 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1732 ST->getSrcValueOffset());
1733 Result = LegalizeOp(Result);
1734 break;
1735 } else if (NumElems == 1) {
1736 // Turn this into a normal store of the scalar type.
1737 Tmp3 = PackVectorOp(Node->getOperand(1), EVT);
1738 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1739 ST->getSrcValueOffset());
1740 // The scalarized value type may not be legal, e.g. it might require
1741 // promotion or expansion. Relegalize the scalar store.
1742 Result = LegalizeOp(Result);
1743 break;
1744 } else {
1745 SplitVectorOp(Node->getOperand(1), Lo, Hi);
1746 IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
1747 }
1748 } else {
1749 ExpandOp(Node->getOperand(1), Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00001750 IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00001751
1752 if (!TLI.isLittleEndian())
1753 std::swap(Lo, Hi);
1754 }
1755
1756 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
1757 ST->getSrcValueOffset());
Evan Cheng7b2b5c82006-12-12 19:53:13 +00001758
1759 if (Hi.Val == NULL) {
1760 // Must be int <-> float one-to-one expansion.
1761 Result = Lo;
1762 break;
1763 }
1764
Evan Cheng8b2794a2006-10-13 21:14:26 +00001765 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1766 getIntPtrConstant(IncrementSize));
1767 assert(isTypeLegal(Tmp2.getValueType()) &&
1768 "Pointers must be legal!");
1769 // FIXME: This sets the srcvalue of both halves to be the same, which is
1770 // wrong.
1771 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
1772 ST->getSrcValueOffset());
1773 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1774 break;
1775 }
1776 } else {
1777 // Truncating store
1778 assert(isTypeLegal(ST->getValue().getValueType()) &&
1779 "Cannot handle illegal TRUNCSTORE yet!");
1780 Tmp3 = LegalizeOp(ST->getValue());
1781
1782 // The only promote case we handle is TRUNCSTORE:i1 X into
1783 // -> TRUNCSTORE:i8 (and X, 1)
1784 if (ST->getStoredVT() == MVT::i1 &&
1785 TLI.getStoreXAction(MVT::i1) == TargetLowering::Promote) {
1786 // Promote the bool to a mask then store.
1787 Tmp3 = DAG.getNode(ISD::AND, Tmp3.getValueType(), Tmp3,
1788 DAG.getConstant(1, Tmp3.getValueType()));
1789 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1790 ST->getSrcValueOffset(), MVT::i8);
1791 } else if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
1792 Tmp2 != ST->getBasePtr()) {
1793 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1794 ST->getOffset());
1795 }
1796
1797 MVT::ValueType StVT = cast<StoreSDNode>(Result.Val)->getStoredVT();
1798 switch (TLI.getStoreXAction(StVT)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001799 default: assert(0 && "This action is not supported yet!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00001800 case TargetLowering::Legal: break;
Chris Lattner456a93a2006-01-28 07:39:30 +00001801 case TargetLowering::Custom:
1802 Tmp1 = TLI.LowerOperation(Result, DAG);
1803 if (Tmp1.Val) Result = Tmp1;
1804 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001805 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001806 }
1807 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001808 }
Andrew Lenharth95762122005-03-31 21:24:06 +00001809 case ISD::PCMARKER:
1810 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001811 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00001812 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001813 case ISD::STACKSAVE:
1814 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001815 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1816 Tmp1 = Result.getValue(0);
1817 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001818
Chris Lattner140d53c2006-01-13 02:50:02 +00001819 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1820 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001821 case TargetLowering::Legal: break;
1822 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001823 Tmp3 = TLI.LowerOperation(Result, DAG);
1824 if (Tmp3.Val) {
1825 Tmp1 = LegalizeOp(Tmp3);
1826 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00001827 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001828 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001829 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001830 // Expand to CopyFromReg if the target set
1831 // StackPointerRegisterToSaveRestore.
1832 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001833 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001834 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001835 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001836 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001837 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1838 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001839 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001840 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001841 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001842
1843 // Since stacksave produce two values, make sure to remember that we
1844 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001845 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1846 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1847 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00001848
Chris Lattner140d53c2006-01-13 02:50:02 +00001849 case ISD::STACKRESTORE:
1850 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1851 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001852 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00001853
1854 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1855 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001856 case TargetLowering::Legal: break;
1857 case TargetLowering::Custom:
1858 Tmp1 = TLI.LowerOperation(Result, DAG);
1859 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00001860 break;
1861 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001862 // Expand to CopyToReg if the target set
1863 // StackPointerRegisterToSaveRestore.
1864 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1865 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1866 } else {
1867 Result = Tmp1;
1868 }
Chris Lattner140d53c2006-01-13 02:50:02 +00001869 break;
1870 }
1871 break;
1872
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001873 case ISD::READCYCLECOUNTER:
1874 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001875 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00001876 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
1877 Node->getValueType(0))) {
1878 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00001879 case TargetLowering::Legal:
1880 Tmp1 = Result.getValue(0);
1881 Tmp2 = Result.getValue(1);
1882 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00001883 case TargetLowering::Custom:
1884 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00001885 Tmp1 = LegalizeOp(Result.getValue(0));
1886 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00001887 break;
1888 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00001889
1890 // Since rdcc produce two values, make sure to remember that we legalized
1891 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00001892 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1893 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001894 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00001895
Chris Lattner2ee743f2005-01-14 22:08:15 +00001896 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00001897 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1898 case Expand: assert(0 && "It's impossible to expand bools");
1899 case Legal:
1900 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1901 break;
1902 case Promote:
1903 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00001904 // Make sure the condition is either zero or one.
1905 if (!TLI.MaskedValueIsZero(Tmp1,
1906 MVT::getIntVTBitMask(Tmp1.getValueType())^1))
1907 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001908 break;
1909 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001910 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00001911 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001912
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001913 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00001914
Nate Begemanb942a3d2005-08-23 04:29:48 +00001915 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001916 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001917 case TargetLowering::Legal: break;
1918 case TargetLowering::Custom: {
1919 Tmp1 = TLI.LowerOperation(Result, DAG);
1920 if (Tmp1.Val) Result = Tmp1;
1921 break;
1922 }
Nate Begeman9373a812005-08-10 20:51:12 +00001923 case TargetLowering::Expand:
1924 if (Tmp1.getOpcode() == ISD::SETCC) {
1925 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
1926 Tmp2, Tmp3,
1927 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1928 } else {
1929 Result = DAG.getSelectCC(Tmp1,
1930 DAG.getConstant(0, Tmp1.getValueType()),
1931 Tmp2, Tmp3, ISD::SETNE);
1932 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001933 break;
1934 case TargetLowering::Promote: {
1935 MVT::ValueType NVT =
1936 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1937 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001938 if (MVT::isVector(Tmp2.getValueType())) {
1939 ExtOp = ISD::BIT_CONVERT;
1940 TruncOp = ISD::BIT_CONVERT;
1941 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001942 ExtOp = ISD::ANY_EXTEND;
1943 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001944 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00001945 ExtOp = ISD::FP_EXTEND;
1946 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001947 }
1948 // Promote each of the values to the new type.
1949 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
1950 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
1951 // Perform the larger operation, then round down.
1952 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
1953 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
1954 break;
1955 }
1956 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001957 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00001958 case ISD::SELECT_CC: {
1959 Tmp1 = Node->getOperand(0); // LHS
1960 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00001961 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
1962 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00001963 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00001964
Nate Begeman750ac1b2006-02-01 07:19:44 +00001965 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
1966
1967 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1968 // the LHS is a legal SETCC itself. In this case, we need to compare
1969 // the result against zero to select between true and false values.
1970 if (Tmp2.Val == 0) {
1971 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
1972 CC = DAG.getCondCode(ISD::SETNE);
1973 }
1974 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
1975
1976 // Everything is legal, see if we should expand this op or something.
1977 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
1978 default: assert(0 && "This action is not supported yet!");
1979 case TargetLowering::Legal: break;
1980 case TargetLowering::Custom:
1981 Tmp1 = TLI.LowerOperation(Result, DAG);
1982 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00001983 break;
Nate Begeman9373a812005-08-10 20:51:12 +00001984 }
1985 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00001986 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001987 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00001988 Tmp1 = Node->getOperand(0);
1989 Tmp2 = Node->getOperand(1);
1990 Tmp3 = Node->getOperand(2);
1991 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
1992
1993 // If we had to Expand the SetCC operands into a SELECT node, then it may
1994 // not always be possible to return a true LHS & RHS. In this case, just
1995 // return the value we legalized, returned in the LHS
1996 if (Tmp2.Val == 0) {
1997 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001998 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001999 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002000
Chris Lattner73e142f2006-01-30 22:43:50 +00002001 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002002 default: assert(0 && "Cannot handle this action for SETCC yet!");
2003 case TargetLowering::Custom:
2004 isCustom = true;
2005 // FALLTHROUGH.
2006 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002007 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00002008 if (isCustom) {
2009 Tmp3 = TLI.LowerOperation(Result, DAG);
2010 if (Tmp3.Val) Result = Tmp3;
2011 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002012 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002013 case TargetLowering::Promote: {
2014 // First step, figure out the appropriate operation to use.
2015 // Allow SETCC to not be supported for all legal data types
2016 // Mostly this targets FP
2017 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
2018 MVT::ValueType OldVT = NewInTy;
2019
2020 // Scan for the appropriate larger type to use.
2021 while (1) {
2022 NewInTy = (MVT::ValueType)(NewInTy+1);
2023
2024 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2025 "Fell off of the edge of the integer world");
2026 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2027 "Fell off of the edge of the floating point world");
2028
2029 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002030 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002031 break;
2032 }
2033 if (MVT::isInteger(NewInTy))
2034 assert(0 && "Cannot promote Legal Integer SETCC yet");
2035 else {
2036 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2037 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2038 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002039 Tmp1 = LegalizeOp(Tmp1);
2040 Tmp2 = LegalizeOp(Tmp2);
2041 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Cheng433f8ac2006-01-17 19:47:13 +00002042 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002043 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002044 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002045 case TargetLowering::Expand:
2046 // Expand a setcc node into a select_cc of the same condition, lhs, and
2047 // rhs that selects between const 1 (true) and const 0 (false).
2048 MVT::ValueType VT = Node->getValueType(0);
2049 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2050 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
2051 Node->getOperand(2));
Nate Begemanb942a3d2005-08-23 04:29:48 +00002052 break;
2053 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002054 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002055 case ISD::MEMSET:
2056 case ISD::MEMCPY:
2057 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002058 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00002059 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
2060
2061 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
2062 switch (getTypeAction(Node->getOperand(2).getValueType())) {
2063 case Expand: assert(0 && "Cannot expand a byte!");
2064 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002065 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002066 break;
2067 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002068 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002069 break;
2070 }
2071 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002072 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00002073 }
Chris Lattner272455b2005-02-02 03:44:41 +00002074
2075 SDOperand Tmp4;
2076 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00002077 case Expand: {
2078 // Length is too big, just take the lo-part of the length.
2079 SDOperand HiPart;
Chris Lattnerfa9aa2b2006-11-07 04:11:44 +00002080 ExpandOp(Node->getOperand(3), Tmp4, HiPart);
Chris Lattner6814f152005-07-13 01:42:45 +00002081 break;
2082 }
Chris Lattnere5605212005-01-28 22:29:18 +00002083 case Legal:
2084 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00002085 break;
2086 case Promote:
2087 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00002088 break;
2089 }
2090
2091 SDOperand Tmp5;
2092 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2093 case Expand: assert(0 && "Cannot expand this yet!");
2094 case Legal:
2095 Tmp5 = LegalizeOp(Node->getOperand(4));
2096 break;
2097 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00002098 Tmp5 = PromoteOp(Node->getOperand(4));
2099 break;
2100 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002101
2102 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2103 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002104 case TargetLowering::Custom:
2105 isCustom = true;
2106 // FALLTHROUGH
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002107 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002108 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner456a93a2006-01-28 07:39:30 +00002109 if (isCustom) {
2110 Tmp1 = TLI.LowerOperation(Result, DAG);
2111 if (Tmp1.Val) Result = Tmp1;
2112 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002113 break;
2114 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00002115 // Otherwise, the target does not support this operation. Lower the
2116 // operation to an explicit libcall as appropriate.
2117 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00002118 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Chris Lattnere1bd8222005-01-11 05:57:22 +00002119 std::vector<std::pair<SDOperand, const Type*> > Args;
2120
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00002121 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002122 if (Node->getOpcode() == ISD::MEMSET) {
2123 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
Chris Lattnerdca7abe2006-02-20 06:38:35 +00002124 // Extend the (previously legalized) ubyte argument to be an int value
2125 // for the call.
2126 if (Tmp3.getValueType() > MVT::i32)
2127 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2128 else
2129 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002130 Args.push_back(std::make_pair(Tmp3, Type::IntTy));
2131 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2132
2133 FnName = "memset";
2134 } else if (Node->getOpcode() == ISD::MEMCPY ||
2135 Node->getOpcode() == ISD::MEMMOVE) {
2136 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
2137 Args.push_back(std::make_pair(Tmp3, IntPtrTy));
2138 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2139 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2140 } else {
2141 assert(0 && "Unknown op!");
2142 }
Chris Lattner45982da2005-05-12 16:53:42 +00002143
Chris Lattnere1bd8222005-01-11 05:57:22 +00002144 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattneradf6a962005-05-13 18:50:42 +00002145 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00002146 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00002147 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002148 break;
2149 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00002150 }
2151 break;
2152 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002153
Chris Lattner5b359c62005-04-02 04:00:59 +00002154 case ISD::SHL_PARTS:
2155 case ISD::SRA_PARTS:
2156 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002157 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002158 bool Changed = false;
2159 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2160 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2161 Changed |= Ops.back() != Node->getOperand(i);
2162 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002163 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002164 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002165
Evan Cheng05a2d562006-01-09 18:31:59 +00002166 switch (TLI.getOperationAction(Node->getOpcode(),
2167 Node->getValueType(0))) {
2168 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002169 case TargetLowering::Legal: break;
2170 case TargetLowering::Custom:
2171 Tmp1 = TLI.LowerOperation(Result, DAG);
2172 if (Tmp1.Val) {
2173 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002174 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002175 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002176 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2177 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002178 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002179 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002180 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002181 return RetVal;
2182 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002183 break;
2184 }
2185
Chris Lattner2c8086f2005-04-02 05:00:07 +00002186 // Since these produce multiple values, make sure to remember that we
2187 // legalized all of them.
2188 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2189 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2190 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002191 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002192
2193 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002194 case ISD::ADD:
2195 case ISD::SUB:
2196 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002197 case ISD::MULHS:
2198 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002199 case ISD::UDIV:
2200 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002201 case ISD::AND:
2202 case ISD::OR:
2203 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002204 case ISD::SHL:
2205 case ISD::SRL:
2206 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002207 case ISD::FADD:
2208 case ISD::FSUB:
2209 case ISD::FMUL:
2210 case ISD::FDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002211 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002212 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2213 case Expand: assert(0 && "Not possible");
2214 case Legal:
2215 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2216 break;
2217 case Promote:
2218 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2219 break;
2220 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002221
2222 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002223
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002224 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002225 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002226 case TargetLowering::Legal: break;
2227 case TargetLowering::Custom:
2228 Tmp1 = TLI.LowerOperation(Result, DAG);
2229 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002230 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002231 case TargetLowering::Expand: {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002232 if (Node->getValueType(0) == MVT::i32) {
2233 switch (Node->getOpcode()) {
2234 default: assert(0 && "Do not know how to expand this integer BinOp!");
2235 case ISD::UDIV:
2236 case ISD::SDIV:
2237 const char *FnName = Node->getOpcode() == ISD::UDIV
2238 ? "__udivsi3" : "__divsi3";
2239 SDOperand Dummy;
2240 Result = ExpandLibCall(FnName, Node, Dummy);
2241 };
2242 break;
2243 }
2244
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002245 assert(MVT::isVector(Node->getValueType(0)) &&
2246 "Cannot expand this binary operator!");
2247 // Expand the operation into a bunch of nasty scalar code.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002248 SmallVector<SDOperand, 8> Ops;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002249 MVT::ValueType EltVT = MVT::getVectorBaseType(Node->getValueType(0));
2250 MVT::ValueType PtrVT = TLI.getPointerTy();
2251 for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2252 i != e; ++i) {
2253 SDOperand Idx = DAG.getConstant(i, PtrVT);
2254 SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2255 SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2256 Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2257 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002258 Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0),
2259 &Ops[0], Ops.size());
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002260 break;
2261 }
Evan Chengcc987612006-04-12 21:20:24 +00002262 case TargetLowering::Promote: {
2263 switch (Node->getOpcode()) {
2264 default: assert(0 && "Do not know how to promote this BinOp!");
2265 case ISD::AND:
2266 case ISD::OR:
2267 case ISD::XOR: {
2268 MVT::ValueType OVT = Node->getValueType(0);
2269 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2270 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2271 // Bit convert each of the values to the new type.
2272 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2273 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2274 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2275 // Bit convert the result back the original type.
2276 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2277 break;
2278 }
2279 }
2280 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002281 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002282 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002283
2284 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2285 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2286 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2287 case Expand: assert(0 && "Not possible");
2288 case Legal:
2289 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2290 break;
2291 case Promote:
2292 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2293 break;
2294 }
2295
2296 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2297
2298 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2299 default: assert(0 && "Operation not supported");
2300 case TargetLowering::Custom:
2301 Tmp1 = TLI.LowerOperation(Result, DAG);
2302 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00002303 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002304 case TargetLowering::Legal: break;
2305 case TargetLowering::Expand:
Chris Lattner8f4191d2006-03-13 06:08:38 +00002306 // If this target supports fabs/fneg natively, do this efficiently.
2307 if (TLI.isOperationLegal(ISD::FABS, Tmp1.getValueType()) &&
2308 TLI.isOperationLegal(ISD::FNEG, Tmp1.getValueType())) {
2309 // Get the sign bit of the RHS.
2310 MVT::ValueType IVT =
2311 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2312 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2313 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2314 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2315 // Get the absolute value of the result.
2316 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2317 // Select between the nabs and abs value based on the sign bit of
2318 // the input.
2319 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2320 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2321 AbsVal),
2322 AbsVal);
2323 Result = LegalizeOp(Result);
2324 break;
2325 }
2326
2327 // Otherwise, do bitwise ops!
2328
2329 // copysign -> copysignf/copysign libcall.
Chris Lattnera09f8482006-03-05 05:09:38 +00002330 const char *FnName;
2331 if (Node->getValueType(0) == MVT::f32) {
2332 FnName = "copysignf";
2333 if (Tmp2.getValueType() != MVT::f32) // Force operands to match type.
2334 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2335 DAG.getNode(ISD::FP_ROUND, MVT::f32, Tmp2));
2336 } else {
2337 FnName = "copysign";
2338 if (Tmp2.getValueType() != MVT::f64) // Force operands to match type.
2339 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2340 DAG.getNode(ISD::FP_EXTEND, MVT::f64, Tmp2));
2341 }
2342 SDOperand Dummy;
2343 Result = ExpandLibCall(FnName, Node, Dummy);
2344 break;
2345 }
2346 break;
2347
Nate Begeman551bf3f2006-02-17 05:43:56 +00002348 case ISD::ADDC:
2349 case ISD::SUBC:
2350 Tmp1 = LegalizeOp(Node->getOperand(0));
2351 Tmp2 = LegalizeOp(Node->getOperand(1));
2352 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2353 // Since this produces two values, make sure to remember that we legalized
2354 // both of them.
2355 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2356 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2357 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002358
Nate Begeman551bf3f2006-02-17 05:43:56 +00002359 case ISD::ADDE:
2360 case ISD::SUBE:
2361 Tmp1 = LegalizeOp(Node->getOperand(0));
2362 Tmp2 = LegalizeOp(Node->getOperand(1));
2363 Tmp3 = LegalizeOp(Node->getOperand(2));
2364 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2365 // Since this produces two values, make sure to remember that we legalized
2366 // both of them.
2367 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2368 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2369 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002370
Nate Begeman419f8b62005-10-18 00:27:41 +00002371 case ISD::BUILD_PAIR: {
2372 MVT::ValueType PairTy = Node->getValueType(0);
2373 // TODO: handle the case where the Lo and Hi operands are not of legal type
2374 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2375 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2376 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002377 case TargetLowering::Promote:
2378 case TargetLowering::Custom:
2379 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00002380 case TargetLowering::Legal:
2381 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2382 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2383 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00002384 case TargetLowering::Expand:
2385 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2386 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2387 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2388 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2389 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00002390 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00002391 break;
2392 }
2393 break;
2394 }
2395
Nate Begemanc105e192005-04-06 00:23:54 +00002396 case ISD::UREM:
2397 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002398 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00002399 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2400 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002401
Nate Begemanc105e192005-04-06 00:23:54 +00002402 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002403 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2404 case TargetLowering::Custom:
2405 isCustom = true;
2406 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00002407 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002408 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002409 if (isCustom) {
2410 Tmp1 = TLI.LowerOperation(Result, DAG);
2411 if (Tmp1.Val) Result = Tmp1;
2412 }
Nate Begemanc105e192005-04-06 00:23:54 +00002413 break;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002414 case TargetLowering::Expand:
Evan Cheng6b5578f2006-09-18 23:28:33 +00002415 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002416 if (MVT::isInteger(Node->getValueType(0))) {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002417 if (TLI.getOperationAction(DivOpc, Node->getValueType(0)) ==
2418 TargetLowering::Legal) {
2419 // X % Y -> X-X/Y*Y
2420 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng6b5578f2006-09-18 23:28:33 +00002421 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002422 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2423 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2424 } else {
2425 assert(Node->getValueType(0) == MVT::i32 &&
2426 "Cannot expand this binary operator!");
2427 const char *FnName = Node->getOpcode() == ISD::UREM
2428 ? "__umodsi3" : "__modsi3";
2429 SDOperand Dummy;
2430 Result = ExpandLibCall(FnName, Node, Dummy);
2431 }
Chris Lattner4c64dd72005-08-03 20:31:37 +00002432 } else {
2433 // Floating point mod -> fmod libcall.
2434 const char *FnName = Node->getValueType(0) == MVT::f32 ? "fmodf":"fmod";
2435 SDOperand Dummy;
Chris Lattner9c6b4b82006-01-28 04:28:26 +00002436 Result = ExpandLibCall(FnName, Node, Dummy);
Nate Begemanc105e192005-04-06 00:23:54 +00002437 }
2438 break;
2439 }
2440 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00002441 case ISD::VAARG: {
2442 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2443 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2444
Chris Lattner5c62f332006-01-28 07:42:08 +00002445 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00002446 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2447 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002448 case TargetLowering::Custom:
2449 isCustom = true;
2450 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002451 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002452 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2453 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002454 Tmp1 = Result.getValue(1);
2455
2456 if (isCustom) {
2457 Tmp2 = TLI.LowerOperation(Result, DAG);
2458 if (Tmp2.Val) {
2459 Result = LegalizeOp(Tmp2);
2460 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2461 }
2462 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002463 break;
2464 case TargetLowering::Expand: {
Evan Cheng466685d2006-10-09 20:57:25 +00002465 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00002466 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00002467 SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002468 // Increment the pointer, VAList, to the next vaarg
2469 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2470 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2471 TLI.getPointerTy()));
2472 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00002473 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
2474 SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002475 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00002476 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002477 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00002478 Result = LegalizeOp(Result);
2479 break;
2480 }
2481 }
2482 // Since VAARG produces two values, make sure to remember that we
2483 // legalized both of them.
2484 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00002485 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2486 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00002487 }
2488
2489 case ISD::VACOPY:
2490 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2491 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2492 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
2493
2494 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2495 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002496 case TargetLowering::Custom:
2497 isCustom = true;
2498 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002499 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002500 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2501 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00002502 if (isCustom) {
2503 Tmp1 = TLI.LowerOperation(Result, DAG);
2504 if (Tmp1.Val) Result = Tmp1;
2505 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002506 break;
2507 case TargetLowering::Expand:
2508 // This defaults to loading a pointer from the input and storing it to the
2509 // output, returning the chain.
Evan Cheng466685d2006-10-09 20:57:25 +00002510 SrcValueSDNode *SVD = cast<SrcValueSDNode>(Node->getOperand(3));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002511 SrcValueSDNode *SVS = cast<SrcValueSDNode>(Node->getOperand(4));
Evan Cheng466685d2006-10-09 20:57:25 +00002512 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, SVD->getValue(),
2513 SVD->getOffset());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002514 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, SVS->getValue(),
2515 SVS->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002516 break;
2517 }
2518 break;
2519
2520 case ISD::VAEND:
2521 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2522 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2523
2524 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2525 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002526 case TargetLowering::Custom:
2527 isCustom = true;
2528 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002529 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002530 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00002531 if (isCustom) {
2532 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2533 if (Tmp1.Val) Result = Tmp1;
2534 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002535 break;
2536 case TargetLowering::Expand:
2537 Result = Tmp1; // Default to a no-op, return the chain
2538 break;
2539 }
2540 break;
2541
2542 case ISD::VASTART:
2543 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2544 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2545
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002546 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2547
Nate Begemanacc398c2006-01-25 18:21:52 +00002548 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2549 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002550 case TargetLowering::Legal: break;
2551 case TargetLowering::Custom:
2552 Tmp1 = TLI.LowerOperation(Result, DAG);
2553 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00002554 break;
2555 }
2556 break;
2557
Nate Begeman35ef9132006-01-11 21:21:00 +00002558 case ISD::ROTL:
2559 case ISD::ROTR:
2560 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2561 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002562
2563 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
2564 "Cannot handle this yet!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002565 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Nate Begeman35ef9132006-01-11 21:21:00 +00002566 break;
2567
Nate Begemand88fc032006-01-14 03:14:10 +00002568 case ISD::BSWAP:
2569 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2570 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002571 case TargetLowering::Custom:
2572 assert(0 && "Cannot custom legalize this yet!");
2573 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002574 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002575 break;
2576 case TargetLowering::Promote: {
2577 MVT::ValueType OVT = Tmp1.getValueType();
2578 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2579 unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00002580
Chris Lattner456a93a2006-01-28 07:39:30 +00002581 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2582 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2583 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2584 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2585 break;
2586 }
2587 case TargetLowering::Expand:
2588 Result = ExpandBSWAP(Tmp1);
2589 break;
Nate Begemand88fc032006-01-14 03:14:10 +00002590 }
2591 break;
2592
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002593 case ISD::CTPOP:
2594 case ISD::CTTZ:
2595 case ISD::CTLZ:
2596 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2597 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002598 case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002599 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002600 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002601 break;
2602 case TargetLowering::Promote: {
2603 MVT::ValueType OVT = Tmp1.getValueType();
2604 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00002605
2606 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002607 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2608 // Perform the larger operation, then subtract if needed.
2609 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002610 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002611 case ISD::CTPOP:
2612 Result = Tmp1;
2613 break;
2614 case ISD::CTTZ:
2615 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002616 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2617 DAG.getConstant(getSizeInBits(NVT), NVT),
2618 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00002619 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002620 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2621 break;
2622 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00002623 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00002624 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2625 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002626 getSizeInBits(OVT), NVT));
2627 break;
2628 }
2629 break;
2630 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002631 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002632 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002633 break;
2634 }
2635 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00002636
Chris Lattner2c8086f2005-04-02 05:00:07 +00002637 // Unary operators
2638 case ISD::FABS:
2639 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00002640 case ISD::FSQRT:
2641 case ISD::FSIN:
2642 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002643 Tmp1 = LegalizeOp(Node->getOperand(0));
2644 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002645 case TargetLowering::Promote:
2646 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00002647 isCustom = true;
2648 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00002649 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002650 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00002651 if (isCustom) {
2652 Tmp1 = TLI.LowerOperation(Result, DAG);
2653 if (Tmp1.Val) Result = Tmp1;
2654 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002655 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00002656 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002657 switch (Node->getOpcode()) {
2658 default: assert(0 && "Unreachable!");
2659 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002660 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2661 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002662 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002663 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002664 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002665 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2666 MVT::ValueType VT = Node->getValueType(0);
2667 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002668 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002669 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2670 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002671 break;
2672 }
2673 case ISD::FSQRT:
2674 case ISD::FSIN:
2675 case ISD::FCOS: {
2676 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002677 const char *FnName = 0;
2678 switch(Node->getOpcode()) {
2679 case ISD::FSQRT: FnName = VT == MVT::f32 ? "sqrtf" : "sqrt"; break;
2680 case ISD::FSIN: FnName = VT == MVT::f32 ? "sinf" : "sin"; break;
2681 case ISD::FCOS: FnName = VT == MVT::f32 ? "cosf" : "cos"; break;
2682 default: assert(0 && "Unreachable!");
2683 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00002684 SDOperand Dummy;
Chris Lattner9c6b4b82006-01-28 04:28:26 +00002685 Result = ExpandLibCall(FnName, Node, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002686 break;
2687 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002688 }
2689 break;
2690 }
2691 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002692 case ISD::FPOWI: {
2693 // We always lower FPOWI into a libcall. No target support it yet.
2694 const char *FnName = Node->getValueType(0) == MVT::f32
2695 ? "__powisf2" : "__powidf2";
2696 SDOperand Dummy;
2697 Result = ExpandLibCall(FnName, Node, Dummy);
2698 break;
2699 }
Chris Lattner35481892005-12-23 00:16:34 +00002700 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00002701 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner35481892005-12-23 00:16:34 +00002702 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Chris Lattner67993f72006-01-23 07:30:46 +00002703 } else {
Chris Lattner35481892005-12-23 00:16:34 +00002704 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2705 Node->getOperand(0).getValueType())) {
2706 default: assert(0 && "Unknown operation action!");
2707 case TargetLowering::Expand:
2708 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2709 break;
2710 case TargetLowering::Legal:
2711 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002712 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00002713 break;
2714 }
2715 }
2716 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00002717 case ISD::VBIT_CONVERT: {
2718 assert(Op.getOperand(0).getValueType() == MVT::Vector &&
2719 "Can only have VBIT_CONVERT where input or output is MVT::Vector!");
2720
2721 // The input has to be a vector type, we have to either scalarize it, pack
2722 // it, or convert it based on whether the input vector type is legal.
2723 SDNode *InVal = Node->getOperand(0).Val;
2724 unsigned NumElems =
2725 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
2726 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
2727
2728 // Figure out if there is a Packed type corresponding to this Vector
2729 // type. If so, convert to the packed type.
2730 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
2731 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
2732 // Turn this into a bit convert of the packed input.
2733 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2734 PackVectorOp(Node->getOperand(0), TVT));
2735 break;
2736 } else if (NumElems == 1) {
2737 // Turn this into a bit convert of the scalar input.
2738 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2739 PackVectorOp(Node->getOperand(0), EVT));
2740 break;
2741 } else {
2742 // FIXME: UNIMP! Store then reload
2743 assert(0 && "Cast from unsupported vector type not implemented yet!");
2744 }
2745 }
2746
Chris Lattner2c8086f2005-04-02 05:00:07 +00002747 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00002748 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002749 case ISD::UINT_TO_FP: {
2750 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002751 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2752 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002753 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002754 Node->getOperand(0).getValueType())) {
2755 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002756 case TargetLowering::Custom:
2757 isCustom = true;
2758 // FALLTHROUGH
2759 case TargetLowering::Legal:
2760 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002761 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002762 if (isCustom) {
2763 Tmp1 = TLI.LowerOperation(Result, DAG);
2764 if (Tmp1.Val) Result = Tmp1;
2765 }
2766 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002767 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00002768 Result = ExpandLegalINT_TO_FP(isSigned,
2769 LegalizeOp(Node->getOperand(0)),
2770 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002771 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002772 case TargetLowering::Promote:
2773 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2774 Node->getValueType(0),
2775 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002776 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00002777 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002778 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00002779 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002780 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2781 Node->getValueType(0), Node->getOperand(0));
2782 break;
2783 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002784 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002785 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002786 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2787 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002788 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002789 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2790 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00002791 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002792 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2793 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002794 break;
2795 }
2796 break;
2797 }
2798 case ISD::TRUNCATE:
2799 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2800 case Legal:
2801 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002802 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002803 break;
2804 case Expand:
2805 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2806
2807 // Since the result is legal, we should just be able to truncate the low
2808 // part of the source.
2809 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2810 break;
2811 case Promote:
2812 Result = PromoteOp(Node->getOperand(0));
2813 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2814 break;
2815 }
2816 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002817
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002818 case ISD::FP_TO_SINT:
2819 case ISD::FP_TO_UINT:
2820 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2821 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00002822 Tmp1 = LegalizeOp(Node->getOperand(0));
2823
Chris Lattner1618beb2005-07-29 00:11:56 +00002824 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2825 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002826 case TargetLowering::Custom:
2827 isCustom = true;
2828 // FALLTHROUGH
2829 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002830 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002831 if (isCustom) {
2832 Tmp1 = TLI.LowerOperation(Result, DAG);
2833 if (Tmp1.Val) Result = Tmp1;
2834 }
2835 break;
2836 case TargetLowering::Promote:
2837 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2838 Node->getOpcode() == ISD::FP_TO_SINT);
2839 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00002840 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00002841 if (Node->getOpcode() == ISD::FP_TO_UINT) {
2842 SDOperand True, False;
2843 MVT::ValueType VT = Node->getOperand(0).getValueType();
2844 MVT::ValueType NVT = Node->getValueType(0);
2845 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2846 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2847 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2848 Node->getOperand(0), Tmp2, ISD::SETLT);
2849 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2850 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00002851 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00002852 Tmp2));
2853 False = DAG.getNode(ISD::XOR, NVT, False,
2854 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00002855 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2856 break;
Nate Begemand2558e32005-08-14 01:20:53 +00002857 } else {
2858 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2859 }
2860 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00002861 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002862 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00002863 case Expand: {
2864 // Convert f32 / f64 to i32 / i64.
2865 MVT::ValueType VT = Op.getValueType();
2866 const char *FnName = 0;
2867 switch (Node->getOpcode()) {
2868 case ISD::FP_TO_SINT:
2869 if (Node->getOperand(0).getValueType() == MVT::f32)
2870 FnName = (VT == MVT::i32) ? "__fixsfsi" : "__fixsfdi";
2871 else
2872 FnName = (VT == MVT::i32) ? "__fixdfsi" : "__fixdfdi";
2873 break;
2874 case ISD::FP_TO_UINT:
2875 if (Node->getOperand(0).getValueType() == MVT::f32)
2876 FnName = (VT == MVT::i32) ? "__fixunssfsi" : "__fixunssfdi";
2877 else
2878 FnName = (VT == MVT::i32) ? "__fixunsdfsi" : "__fixunsdfdi";
2879 break;
2880 default: assert(0 && "Unreachable!");
2881 }
2882 SDOperand Dummy;
2883 Result = ExpandLibCall(FnName, Node, Dummy);
2884 break;
2885 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002886 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002887 Tmp1 = PromoteOp(Node->getOperand(0));
2888 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2889 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002890 break;
2891 }
2892 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002893
Chris Lattner13c78e22005-09-02 00:18:10 +00002894 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002895 case ISD::ZERO_EXTEND:
2896 case ISD::SIGN_EXTEND:
2897 case ISD::FP_EXTEND:
2898 case ISD::FP_ROUND:
2899 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002900 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002901 case Legal:
2902 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002903 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002904 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002905 case Promote:
2906 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00002907 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002908 Tmp1 = PromoteOp(Node->getOperand(0));
2909 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00002910 break;
Chris Lattner1713e732005-01-16 00:38:00 +00002911 case ISD::ZERO_EXTEND:
2912 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002913 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00002914 Result = DAG.getZeroExtendInReg(Result,
2915 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00002916 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002917 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00002918 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002919 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00002920 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00002921 Result,
2922 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00002923 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002924 case ISD::FP_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00002925 Result = PromoteOp(Node->getOperand(0));
2926 if (Result.getValueType() != Op.getValueType())
2927 // Dynamically dead while we have only 2 FP types.
2928 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
2929 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002930 case ISD::FP_ROUND:
Chris Lattnerf8161d82005-01-16 05:06:12 +00002931 Result = PromoteOp(Node->getOperand(0));
2932 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
2933 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002934 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002935 }
2936 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00002937 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00002938 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00002939 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00002940 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00002941
2942 // If this operation is not supported, convert it to a shl/shr or load/store
2943 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002944 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
2945 default: assert(0 && "This action not supported for this op yet!");
2946 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002947 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002948 break;
2949 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00002950 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00002951 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00002952 // NOTE: we could fall back on load/store here too for targets without
2953 // SAR. However, it is doubtful that any exist.
2954 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
2955 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00002956 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00002957 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
2958 Node->getOperand(0), ShiftCst);
2959 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
2960 Result, ShiftCst);
2961 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00002962 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00002963 // EXTLOAD pair, targetting a temporary location (a stack slot).
2964
2965 // NOTE: there is a choice here between constantly creating new stack
2966 // slots and always reusing the same one. We currently always create
2967 // new ones, as reuse may inhibit scheduling.
2968 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Owen Andersona69571c2006-05-03 01:29:57 +00002969 unsigned TySize = (unsigned)TLI.getTargetData()->getTypeSize(Ty);
2970 unsigned Align = TLI.getTargetData()->getTypeAlignment(Ty);
Chris Lattner45b8caf2005-01-15 07:15:18 +00002971 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukmanedf128a2005-04-21 22:36:52 +00002972 int SSFI =
Chris Lattner45b8caf2005-01-15 07:15:18 +00002973 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
2974 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002975 Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
2976 StackSlot, NULL, 0, ExtraVT);
Chris Lattner5f056bf2005-07-10 01:55:33 +00002977 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
Evan Cheng466685d2006-10-09 20:57:25 +00002978 Result, StackSlot, NULL, 0, ExtraVT);
Chris Lattner45b8caf2005-01-15 07:15:18 +00002979 } else {
2980 assert(0 && "Unknown op");
2981 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002982 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00002983 }
Chris Lattner0f69b292005-01-15 06:18:18 +00002984 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002985 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00002986 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002987
Chris Lattner4ddd2832006-04-08 04:13:17 +00002988 assert(Result.getValueType() == Op.getValueType() &&
2989 "Bad legalization!");
2990
Chris Lattner456a93a2006-01-28 07:39:30 +00002991 // Make sure that the generated code is itself legal.
2992 if (Result != Op)
2993 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002994
Chris Lattner45982da2005-05-12 16:53:42 +00002995 // Note that LegalizeOp may be reentered even from single-use nodes, which
2996 // means that we always must cache transformed nodes.
2997 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002998 return Result;
2999}
3000
Chris Lattner8b6fa222005-01-15 22:16:26 +00003001/// PromoteOp - Given an operation that produces a value in an invalid type,
3002/// promote it to compute the value into a larger type. The produced value will
3003/// have the correct bits for the low portion of the register, but no guarantee
3004/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00003005SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
3006 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00003007 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00003008 assert(getTypeAction(VT) == Promote &&
3009 "Caller should expand or legalize operands that are not promotable!");
3010 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
3011 "Cannot promote to smaller type!");
3012
Chris Lattner03c85462005-01-15 05:21:40 +00003013 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00003014 SDOperand Result;
3015 SDNode *Node = Op.Val;
3016
Chris Lattner6fdcb252005-09-02 20:32:45 +00003017 std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
3018 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00003019
Chris Lattner03c85462005-01-15 05:21:40 +00003020 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003021 case ISD::CopyFromReg:
3022 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00003023 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003024#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +00003025 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003026#endif
Chris Lattner03c85462005-01-15 05:21:40 +00003027 assert(0 && "Do not know how to promote this operator!");
3028 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003029 case ISD::UNDEF:
3030 Result = DAG.getNode(ISD::UNDEF, NVT);
3031 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003032 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00003033 if (VT != MVT::i1)
3034 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
3035 else
3036 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00003037 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
3038 break;
3039 case ISD::ConstantFP:
3040 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
3041 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
3042 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00003043
Chris Lattner82fbfb62005-01-18 02:59:52 +00003044 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003045 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003046 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
3047 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00003048 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00003049
Chris Lattner03c85462005-01-15 05:21:40 +00003050 case ISD::TRUNCATE:
3051 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3052 case Legal:
3053 Result = LegalizeOp(Node->getOperand(0));
3054 assert(Result.getValueType() >= NVT &&
3055 "This truncation doesn't make sense!");
3056 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
3057 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
3058 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00003059 case Promote:
3060 // The truncation is not required, because we don't guarantee anything
3061 // about high bits anyway.
3062 Result = PromoteOp(Node->getOperand(0));
3063 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003064 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00003065 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3066 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00003067 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00003068 }
3069 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003070 case ISD::SIGN_EXTEND:
3071 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00003072 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003073 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3074 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
3075 case Legal:
3076 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00003077 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003078 break;
3079 case Promote:
3080 // Promote the reg if it's smaller.
3081 Result = PromoteOp(Node->getOperand(0));
3082 // The high bits are not guaranteed to be anything. Insert an extend.
3083 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00003084 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00003085 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00003086 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00003087 Result = DAG.getZeroExtendInReg(Result,
3088 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00003089 break;
3090 }
3091 break;
Chris Lattner35481892005-12-23 00:16:34 +00003092 case ISD::BIT_CONVERT:
3093 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3094 Result = PromoteOp(Result);
3095 break;
3096
Chris Lattner8b6fa222005-01-15 22:16:26 +00003097 case ISD::FP_EXTEND:
3098 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
3099 case ISD::FP_ROUND:
3100 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3101 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3102 case Promote: assert(0 && "Unreachable with 2 FP types!");
3103 case Legal:
3104 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner456a93a2006-01-28 07:39:30 +00003105 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner15e4b012005-07-10 00:07:11 +00003106 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003107 break;
3108 }
3109 break;
3110
3111 case ISD::SINT_TO_FP:
3112 case ISD::UINT_TO_FP:
3113 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3114 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00003115 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00003116 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003117 break;
3118
3119 case Promote:
3120 Result = PromoteOp(Node->getOperand(0));
3121 if (Node->getOpcode() == ISD::SINT_TO_FP)
3122 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003123 Result,
3124 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003125 else
Chris Lattner23993562005-04-13 02:38:47 +00003126 Result = DAG.getZeroExtendInReg(Result,
3127 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003128 // No extra round required here.
3129 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003130 break;
3131 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00003132 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3133 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00003134 // Round if we cannot tolerate excess precision.
3135 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003136 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3137 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00003138 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003139 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003140 break;
3141
Chris Lattner5e3c5b42005-12-09 17:32:47 +00003142 case ISD::SIGN_EXTEND_INREG:
3143 Result = PromoteOp(Node->getOperand(0));
3144 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3145 Node->getOperand(1));
3146 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003147 case ISD::FP_TO_SINT:
3148 case ISD::FP_TO_UINT:
3149 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3150 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00003151 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003152 break;
3153 case Promote:
3154 // The input result is prerounded, so we don't have to do anything
3155 // special.
3156 Tmp1 = PromoteOp(Node->getOperand(0));
3157 break;
3158 case Expand:
3159 assert(0 && "not implemented");
3160 }
Nate Begemand2558e32005-08-14 01:20:53 +00003161 // If we're promoting a UINT to a larger size, check to see if the new node
3162 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3163 // we can use that instead. This allows us to generate better code for
3164 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3165 // legal, such as PowerPC.
3166 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003167 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00003168 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3169 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00003170 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3171 } else {
3172 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3173 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003174 break;
3175
Chris Lattner2c8086f2005-04-02 05:00:07 +00003176 case ISD::FABS:
3177 case ISD::FNEG:
3178 Tmp1 = PromoteOp(Node->getOperand(0));
3179 assert(Tmp1.getValueType() == NVT);
3180 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3181 // NOTE: we do not have to do any extra rounding here for
3182 // NoExcessFPPrecision, because we know the input will have the appropriate
3183 // precision, and these operations don't modify precision at all.
3184 break;
3185
Chris Lattnerda6ba872005-04-28 21:44:33 +00003186 case ISD::FSQRT:
3187 case ISD::FSIN:
3188 case ISD::FCOS:
3189 Tmp1 = PromoteOp(Node->getOperand(0));
3190 assert(Tmp1.getValueType() == NVT);
3191 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003192 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003193 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3194 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00003195 break;
3196
Chris Lattner03c85462005-01-15 05:21:40 +00003197 case ISD::AND:
3198 case ISD::OR:
3199 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00003200 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003201 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00003202 case ISD::MUL:
3203 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00003204 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00003205 // that too is okay if they are integer operations.
3206 Tmp1 = PromoteOp(Node->getOperand(0));
3207 Tmp2 = PromoteOp(Node->getOperand(1));
3208 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3209 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00003210 break;
3211 case ISD::FADD:
3212 case ISD::FSUB:
3213 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00003214 Tmp1 = PromoteOp(Node->getOperand(0));
3215 Tmp2 = PromoteOp(Node->getOperand(1));
3216 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3217 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3218
3219 // Floating point operations will give excess precision that we may not be
3220 // able to tolerate. If we DO allow excess precision, just leave it,
3221 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00003222 // FIXME: Why would we need to round FP ops more than integer ones?
3223 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00003224 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003225 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3226 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00003227 break;
3228
Chris Lattner8b6fa222005-01-15 22:16:26 +00003229 case ISD::SDIV:
3230 case ISD::SREM:
3231 // These operators require that their input be sign extended.
3232 Tmp1 = PromoteOp(Node->getOperand(0));
3233 Tmp2 = PromoteOp(Node->getOperand(1));
3234 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00003235 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3236 DAG.getValueType(VT));
3237 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3238 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003239 }
3240 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3241
3242 // Perform FP_ROUND: this is probably overly pessimistic.
3243 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003244 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3245 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003246 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00003247 case ISD::FDIV:
3248 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00003249 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00003250 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00003251 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3252 case Legal:
3253 Tmp1 = LegalizeOp(Node->getOperand(0));
3254 break;
3255 case Promote:
3256 Tmp1 = PromoteOp(Node->getOperand(0));
3257 break;
3258 case Expand:
3259 assert(0 && "not implemented");
3260 }
3261 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3262 case Legal:
3263 Tmp2 = LegalizeOp(Node->getOperand(1));
3264 break;
3265 case Promote:
3266 Tmp2 = PromoteOp(Node->getOperand(1));
3267 break;
3268 case Expand:
3269 assert(0 && "not implemented");
3270 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003271 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3272
3273 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00003274 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00003275 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3276 DAG.getValueType(VT));
3277 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003278
3279 case ISD::UDIV:
3280 case ISD::UREM:
3281 // These operators require that their input be zero extended.
3282 Tmp1 = PromoteOp(Node->getOperand(0));
3283 Tmp2 = PromoteOp(Node->getOperand(1));
3284 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00003285 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3286 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003287 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3288 break;
3289
3290 case ISD::SHL:
3291 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003292 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003293 break;
3294 case ISD::SRA:
3295 // The input value must be properly sign extended.
3296 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003297 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3298 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003299 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003300 break;
3301 case ISD::SRL:
3302 // The input value must be properly zero extended.
3303 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00003304 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00003305 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003306 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00003307
3308 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00003309 Tmp1 = Node->getOperand(0); // Get the chain.
3310 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00003311 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3312 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3313 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3314 } else {
Evan Cheng466685d2006-10-09 20:57:25 +00003315 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begeman0aed7842006-01-28 03:14:31 +00003316 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00003317 SV->getValue(), SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003318 // Increment the pointer, VAList, to the next vaarg
3319 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3320 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3321 TLI.getPointerTy()));
3322 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00003323 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
3324 SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003325 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003326 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00003327 }
3328 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003329 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00003330 break;
3331
Evan Cheng466685d2006-10-09 20:57:25 +00003332 case ISD::LOAD: {
3333 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00003334 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
3335 ? ISD::EXTLOAD : LD->getExtensionType();
3336 Result = DAG.getExtLoad(ExtType, NVT,
3337 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00003338 LD->getSrcValue(), LD->getSrcValueOffset(),
Evan Cheng2e49f092006-10-11 07:10:22 +00003339 LD->getLoadedVT());
Chris Lattner03c85462005-01-15 05:21:40 +00003340 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003341 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00003342 break;
Evan Cheng466685d2006-10-09 20:57:25 +00003343 }
Chris Lattner03c85462005-01-15 05:21:40 +00003344 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00003345 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
3346 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00003347 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00003348 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003349 case ISD::SELECT_CC:
3350 Tmp2 = PromoteOp(Node->getOperand(2)); // True
3351 Tmp3 = PromoteOp(Node->getOperand(3)); // False
3352 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00003353 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00003354 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003355 case ISD::BSWAP:
3356 Tmp1 = Node->getOperand(0);
3357 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3358 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3359 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3360 DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
3361 TLI.getShiftAmountTy()));
3362 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003363 case ISD::CTPOP:
3364 case ISD::CTTZ:
3365 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003366 // Zero extend the argument
3367 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003368 // Perform the larger operation, then subtract if needed.
3369 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003370 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003371 case ISD::CTPOP:
3372 Result = Tmp1;
3373 break;
3374 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003375 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00003376 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003377 DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003378 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Chris Lattner456a93a2006-01-28 07:39:30 +00003379 DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003380 break;
3381 case ISD::CTLZ:
3382 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003383 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
3384 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003385 getSizeInBits(VT), NVT));
3386 break;
3387 }
3388 break;
Chris Lattner15972212006-03-31 17:55:51 +00003389 case ISD::VEXTRACT_VECTOR_ELT:
3390 Result = PromoteOp(LowerVEXTRACT_VECTOR_ELT(Op));
3391 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00003392 case ISD::EXTRACT_VECTOR_ELT:
3393 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3394 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003395 }
3396
3397 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003398
3399 // Make sure the result is itself legal.
3400 Result = LegalizeOp(Result);
3401
3402 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00003403 AddPromotedOperand(Op, Result);
3404 return Result;
3405}
Chris Lattner3e928bb2005-01-07 07:47:09 +00003406
Chris Lattner15972212006-03-31 17:55:51 +00003407/// LowerVEXTRACT_VECTOR_ELT - Lower a VEXTRACT_VECTOR_ELT operation into a
3408/// EXTRACT_VECTOR_ELT operation, to memory operations, or to scalar code based
3409/// on the vector type. The return type of this matches the element type of the
3410/// vector, which may not be legal for the target.
3411SDOperand SelectionDAGLegalize::LowerVEXTRACT_VECTOR_ELT(SDOperand Op) {
3412 // We know that operand #0 is the Vec vector. If the index is a constant
3413 // or if the invec is a supported hardware type, we can use it. Otherwise,
3414 // lower to a store then an indexed load.
3415 SDOperand Vec = Op.getOperand(0);
3416 SDOperand Idx = LegalizeOp(Op.getOperand(1));
3417
3418 SDNode *InVal = Vec.Val;
3419 unsigned NumElems = cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
3420 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
3421
3422 // Figure out if there is a Packed type corresponding to this Vector
3423 // type. If so, convert to the packed type.
3424 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3425 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
3426 // Turn this into a packed extract_vector_elt operation.
3427 Vec = PackVectorOp(Vec, TVT);
3428 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, Op.getValueType(), Vec, Idx);
3429 } else if (NumElems == 1) {
3430 // This must be an access of the only element. Return it.
3431 return PackVectorOp(Vec, EVT);
3432 } else if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
3433 SDOperand Lo, Hi;
3434 SplitVectorOp(Vec, Lo, Hi);
3435 if (CIdx->getValue() < NumElems/2) {
3436 Vec = Lo;
3437 } else {
3438 Vec = Hi;
3439 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3440 }
3441
3442 // It's now an extract from the appropriate high or low part. Recurse.
3443 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3444 return LowerVEXTRACT_VECTOR_ELT(Op);
3445 } else {
3446 // Variable index case for extract element.
3447 // FIXME: IMPLEMENT STORE/LOAD lowering. Need alignment of stack slot!!
3448 assert(0 && "unimp!");
3449 return SDOperand();
3450 }
3451}
3452
Chris Lattner4aab2f42006-04-02 05:06:04 +00003453/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3454/// memory traffic.
3455SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
3456 SDOperand Vector = Op.getOperand(0);
3457 SDOperand Idx = Op.getOperand(1);
3458
3459 // If the target doesn't support this, store the value to a temporary
3460 // stack slot, then LOAD the scalar element back out.
3461 SDOperand StackPtr = CreateStackTemporary(Vector.getValueType());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003462 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vector, StackPtr, NULL, 0);
Chris Lattner4aab2f42006-04-02 05:06:04 +00003463
3464 // Add the offset to the index.
3465 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3466 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3467 DAG.getConstant(EltSize, Idx.getValueType()));
3468 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3469
Evan Cheng466685d2006-10-09 20:57:25 +00003470 return DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner4aab2f42006-04-02 05:06:04 +00003471}
3472
Chris Lattner15972212006-03-31 17:55:51 +00003473
Nate Begeman750ac1b2006-02-01 07:19:44 +00003474/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3475/// with condition CC on the current target. This usually involves legalizing
3476/// or promoting the arguments. In the case where LHS and RHS must be expanded,
3477/// there may be no choice but to create a new SetCC node to represent the
3478/// legalized value of setcc lhs, rhs. In this case, the value is returned in
3479/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3480void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3481 SDOperand &RHS,
3482 SDOperand &CC) {
3483 SDOperand Tmp1, Tmp2, Result;
3484
3485 switch (getTypeAction(LHS.getValueType())) {
3486 case Legal:
3487 Tmp1 = LegalizeOp(LHS); // LHS
3488 Tmp2 = LegalizeOp(RHS); // RHS
3489 break;
3490 case Promote:
3491 Tmp1 = PromoteOp(LHS); // LHS
3492 Tmp2 = PromoteOp(RHS); // RHS
3493
3494 // If this is an FP compare, the operands have already been extended.
3495 if (MVT::isInteger(LHS.getValueType())) {
3496 MVT::ValueType VT = LHS.getValueType();
3497 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3498
3499 // Otherwise, we have to insert explicit sign or zero extends. Note
3500 // that we could insert sign extends for ALL conditions, but zero extend
3501 // is cheaper on many machines (an AND instead of two shifts), so prefer
3502 // it.
3503 switch (cast<CondCodeSDNode>(CC)->get()) {
3504 default: assert(0 && "Unknown integer comparison!");
3505 case ISD::SETEQ:
3506 case ISD::SETNE:
3507 case ISD::SETUGE:
3508 case ISD::SETUGT:
3509 case ISD::SETULE:
3510 case ISD::SETULT:
3511 // ALL of these operations will work if we either sign or zero extend
3512 // the operands (including the unsigned comparisons!). Zero extend is
3513 // usually a simpler/cheaper operation, so prefer it.
3514 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3515 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3516 break;
3517 case ISD::SETGE:
3518 case ISD::SETGT:
3519 case ISD::SETLT:
3520 case ISD::SETLE:
3521 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3522 DAG.getValueType(VT));
3523 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3524 DAG.getValueType(VT));
3525 break;
3526 }
3527 }
3528 break;
3529 case Expand:
3530 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
3531 ExpandOp(LHS, LHSLo, LHSHi);
3532 ExpandOp(RHS, RHSLo, RHSHi);
3533 switch (cast<CondCodeSDNode>(CC)->get()) {
3534 case ISD::SETEQ:
3535 case ISD::SETNE:
3536 if (RHSLo == RHSHi)
3537 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
3538 if (RHSCST->isAllOnesValue()) {
3539 // Comparison to -1.
3540 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
3541 Tmp2 = RHSLo;
3542 break;
3543 }
3544
3545 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
3546 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
3547 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3548 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3549 break;
3550 default:
3551 // If this is a comparison of the sign bit, just look at the top part.
3552 // X > -1, x < 0
3553 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
3554 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
3555 CST->getValue() == 0) || // X < 0
3556 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
3557 CST->isAllOnesValue())) { // X > -1
3558 Tmp1 = LHSHi;
3559 Tmp2 = RHSHi;
3560 break;
3561 }
3562
3563 // FIXME: This generated code sucks.
3564 ISD::CondCode LowCC;
3565 switch (cast<CondCodeSDNode>(CC)->get()) {
3566 default: assert(0 && "Unknown integer setcc!");
3567 case ISD::SETLT:
3568 case ISD::SETULT: LowCC = ISD::SETULT; break;
3569 case ISD::SETGT:
3570 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
3571 case ISD::SETLE:
3572 case ISD::SETULE: LowCC = ISD::SETULE; break;
3573 case ISD::SETGE:
3574 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
3575 }
3576
3577 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
3578 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
3579 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
3580
3581 // NOTE: on targets without efficient SELECT of bools, we can always use
3582 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
3583 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
3584 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
3585 Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
3586 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
3587 Result, Tmp1, Tmp2));
3588 Tmp1 = Result;
Nate Begemanda06e9e2006-02-01 19:05:15 +00003589 Tmp2 = SDOperand();
Nate Begeman750ac1b2006-02-01 07:19:44 +00003590 }
3591 }
3592 LHS = Tmp1;
3593 RHS = Tmp2;
3594}
3595
Chris Lattner35481892005-12-23 00:16:34 +00003596/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner232348d2005-12-23 00:52:30 +00003597/// The resultant code need not be legal. Note that SrcOp is the input operand
3598/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner35481892005-12-23 00:16:34 +00003599SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
3600 SDOperand SrcOp) {
3601 // Create the stack frame object.
Chris Lattnerce872152006-03-19 06:31:19 +00003602 SDOperand FIPtr = CreateStackTemporary(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00003603
3604 // Emit a store to the stack slot.
Evan Cheng8b2794a2006-10-13 21:14:26 +00003605 SDOperand Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00003606 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00003607 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00003608}
3609
Chris Lattner4352cc92006-04-04 17:23:26 +00003610SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
3611 // Create a vector sized/aligned stack slot, store the value to element #0,
3612 // then load the whole vector back out.
3613 SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
Evan Cheng786225a2006-10-05 23:01:46 +00003614 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003615 NULL, 0);
Evan Cheng466685d2006-10-09 20:57:25 +00003616 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, NULL, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00003617}
3618
3619
Chris Lattnerce872152006-03-19 06:31:19 +00003620/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
3621/// support the operation, but do support the resultant packed vector type.
3622SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
3623
3624 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00003625 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00003626 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00003627 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00003628 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng033e6812006-03-24 01:17:21 +00003629 std::map<SDOperand, std::vector<unsigned> > Values;
3630 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003631 bool isConstant = true;
3632 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
3633 SplatValue.getOpcode() != ISD::UNDEF)
3634 isConstant = false;
3635
Evan Cheng033e6812006-03-24 01:17:21 +00003636 for (unsigned i = 1; i < NumElems; ++i) {
3637 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00003638 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00003639 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00003640 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00003641 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00003642 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003643
3644 // If this isn't a constant element or an undef, we can't use a constant
3645 // pool load.
3646 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
3647 V.getOpcode() != ISD::UNDEF)
3648 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00003649 }
3650
3651 if (isOnlyLowElement) {
3652 // If the low element is an undef too, then this whole things is an undef.
3653 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
3654 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
3655 // Otherwise, turn this into a scalar_to_vector node.
3656 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3657 Node->getOperand(0));
3658 }
3659
Chris Lattner2eb86532006-03-24 07:29:17 +00003660 // If all elements are constants, create a load from the constant pool.
3661 if (isConstant) {
3662 MVT::ValueType VT = Node->getValueType(0);
3663 const Type *OpNTy =
3664 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
3665 std::vector<Constant*> CV;
3666 for (unsigned i = 0, e = NumElems; i != e; ++i) {
3667 if (ConstantFPSDNode *V =
3668 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
3669 CV.push_back(ConstantFP::get(OpNTy, V->getValue()));
3670 } else if (ConstantSDNode *V =
3671 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencerb83eb642006-10-20 07:07:24 +00003672 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00003673 } else {
3674 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
3675 CV.push_back(UndefValue::get(OpNTy));
3676 }
3677 }
3678 Constant *CP = ConstantPacked::get(CV);
3679 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng466685d2006-10-09 20:57:25 +00003680 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003681 }
3682
Chris Lattner87100e02006-03-20 01:52:29 +00003683 if (SplatValue.Val) { // Splat of one value?
3684 // Build the shuffle constant vector: <0, 0, 0, 0>
3685 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00003686 MVT::getIntVectorWithNumElements(NumElems);
Chris Lattner87100e02006-03-20 01:52:29 +00003687 SDOperand Zero = DAG.getConstant(0, MVT::getVectorBaseType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00003688 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003689 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3690 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00003691
3692 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003693 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00003694 // Get the splatted value into the low element of a vector register.
3695 SDOperand LowValVec =
3696 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
3697
3698 // Return shuffle(LowValVec, undef, <0,0,0,0>)
3699 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
3700 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
3701 SplatMask);
3702 }
3703 }
3704
Evan Cheng033e6812006-03-24 01:17:21 +00003705 // If there are only two unique elements, we may be able to turn this into a
3706 // vector shuffle.
3707 if (Values.size() == 2) {
3708 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
3709 MVT::ValueType MaskVT =
3710 MVT::getIntVectorWithNumElements(NumElems);
3711 std::vector<SDOperand> MaskVec(NumElems);
3712 unsigned i = 0;
3713 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3714 E = Values.end(); I != E; ++I) {
3715 for (std::vector<unsigned>::iterator II = I->second.begin(),
3716 EE = I->second.end(); II != EE; ++II)
3717 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorBaseType(MaskVT));
3718 i += NumElems;
3719 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003720 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3721 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00003722
3723 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003724 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
3725 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003726 SmallVector<SDOperand, 8> Ops;
Evan Cheng033e6812006-03-24 01:17:21 +00003727 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3728 E = Values.end(); I != E; ++I) {
3729 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3730 I->first);
3731 Ops.push_back(Op);
3732 }
3733 Ops.push_back(ShuffleMask);
3734
3735 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003736 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
3737 &Ops[0], Ops.size());
Evan Cheng033e6812006-03-24 01:17:21 +00003738 }
3739 }
Chris Lattnerce872152006-03-19 06:31:19 +00003740
3741 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
3742 // aligned object on the stack, store each element into it, then load
3743 // the result as a vector.
3744 MVT::ValueType VT = Node->getValueType(0);
3745 // Create the stack frame object.
3746 SDOperand FIPtr = CreateStackTemporary(VT);
3747
3748 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003749 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00003750 unsigned TypeByteSize =
3751 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00003752 // Store (in the right endianness) the elements to memory.
3753 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3754 // Ignore undef elements.
3755 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
3756
Chris Lattner841c8822006-03-22 01:46:54 +00003757 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00003758
3759 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
3760 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
3761
Evan Cheng786225a2006-10-05 23:01:46 +00003762 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003763 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00003764 }
3765
3766 SDOperand StoreChain;
3767 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003768 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3769 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00003770 else
3771 StoreChain = DAG.getEntryNode();
3772
3773 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00003774 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00003775}
3776
3777/// CreateStackTemporary - Create a stack temporary, suitable for holding the
3778/// specified value type.
3779SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
3780 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3781 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
3782 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, ByteSize);
3783 return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
3784}
3785
Chris Lattner5b359c62005-04-02 04:00:59 +00003786void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
3787 SDOperand Op, SDOperand Amt,
3788 SDOperand &Lo, SDOperand &Hi) {
3789 // Expand the subcomponents.
3790 SDOperand LHSL, LHSH;
3791 ExpandOp(Op, LHSL, LHSH);
3792
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003793 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003794 MVT::ValueType VT = LHSL.getValueType();
3795 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00003796 Hi = Lo.getValue(1);
3797}
3798
3799
Chris Lattnere34b3962005-01-19 04:19:40 +00003800/// ExpandShift - Try to find a clever way to expand this shift operation out to
3801/// smaller elements. If we can't find a way that is more efficient than a
3802/// libcall on this target, return false. Otherwise, return true with the
3803/// low-parts expanded into Lo and Hi.
3804bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
3805 SDOperand &Lo, SDOperand &Hi) {
3806 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
3807 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003808
Chris Lattnere34b3962005-01-19 04:19:40 +00003809 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003810 SDOperand ShAmt = LegalizeOp(Amt);
3811 MVT::ValueType ShTy = ShAmt.getValueType();
3812 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
3813 unsigned NVTBits = MVT::getSizeInBits(NVT);
3814
3815 // Handle the case when Amt is an immediate. Other cases are currently broken
3816 // and are disabled.
3817 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
3818 unsigned Cst = CN->getValue();
3819 // Expand the incoming operand to be shifted, so that we have its parts
3820 SDOperand InL, InH;
3821 ExpandOp(Op, InL, InH);
3822 switch(Opc) {
3823 case ISD::SHL:
3824 if (Cst > VTBits) {
3825 Lo = DAG.getConstant(0, NVT);
3826 Hi = DAG.getConstant(0, NVT);
3827 } else if (Cst > NVTBits) {
3828 Lo = DAG.getConstant(0, NVT);
3829 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00003830 } else if (Cst == NVTBits) {
3831 Lo = DAG.getConstant(0, NVT);
3832 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003833 } else {
3834 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
3835 Hi = DAG.getNode(ISD::OR, NVT,
3836 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
3837 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
3838 }
3839 return true;
3840 case ISD::SRL:
3841 if (Cst > VTBits) {
3842 Lo = DAG.getConstant(0, NVT);
3843 Hi = DAG.getConstant(0, NVT);
3844 } else if (Cst > NVTBits) {
3845 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
3846 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00003847 } else if (Cst == NVTBits) {
3848 Lo = InH;
3849 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003850 } else {
3851 Lo = DAG.getNode(ISD::OR, NVT,
3852 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3853 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3854 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
3855 }
3856 return true;
3857 case ISD::SRA:
3858 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003859 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003860 DAG.getConstant(NVTBits-1, ShTy));
3861 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003862 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003863 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00003864 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003865 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00003866 } else if (Cst == NVTBits) {
3867 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003868 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00003869 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003870 } else {
3871 Lo = DAG.getNode(ISD::OR, NVT,
3872 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3873 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3874 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
3875 }
3876 return true;
3877 }
3878 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00003879
3880 // Okay, the shift amount isn't constant. However, if we can tell that it is
3881 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
3882 uint64_t Mask = NVTBits, KnownZero, KnownOne;
3883 TLI.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
3884
3885 // If we know that the high bit of the shift amount is one, then we can do
3886 // this as a couple of simple shifts.
3887 if (KnownOne & Mask) {
3888 // Mask out the high bit, which we know is set.
3889 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
3890 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3891
3892 // Expand the incoming operand to be shifted, so that we have its parts
3893 SDOperand InL, InH;
3894 ExpandOp(Op, InL, InH);
3895 switch(Opc) {
3896 case ISD::SHL:
3897 Lo = DAG.getConstant(0, NVT); // Low part is zero.
3898 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
3899 return true;
3900 case ISD::SRL:
3901 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
3902 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
3903 return true;
3904 case ISD::SRA:
3905 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
3906 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3907 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
3908 return true;
3909 }
3910 }
3911
3912 // If we know that the high bit of the shift amount is zero, then we can do
3913 // this as a couple of simple shifts.
3914 if (KnownZero & Mask) {
3915 // Compute 32-amt.
3916 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
3917 DAG.getConstant(NVTBits, Amt.getValueType()),
3918 Amt);
3919
3920 // Expand the incoming operand to be shifted, so that we have its parts
3921 SDOperand InL, InH;
3922 ExpandOp(Op, InL, InH);
3923 switch(Opc) {
3924 case ISD::SHL:
3925 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
3926 Hi = DAG.getNode(ISD::OR, NVT,
3927 DAG.getNode(ISD::SHL, NVT, InH, Amt),
3928 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
3929 return true;
3930 case ISD::SRL:
3931 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
3932 Lo = DAG.getNode(ISD::OR, NVT,
3933 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3934 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3935 return true;
3936 case ISD::SRA:
3937 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
3938 Lo = DAG.getNode(ISD::OR, NVT,
3939 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3940 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3941 return true;
3942 }
3943 }
3944
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003945 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00003946}
Chris Lattner77e77a62005-01-21 06:05:23 +00003947
Chris Lattner9c32d3b2005-01-23 04:42:50 +00003948
Chris Lattner77e77a62005-01-21 06:05:23 +00003949// ExpandLibCall - Expand a node into a call to a libcall. If the result value
3950// does not fit into a register, return the lo part and set the hi part to the
3951// by-reg argument. If it does fit into a single register, return the result
3952// and leave the Hi part unset.
3953SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
3954 SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00003955 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
3956 // The input chain to this libcall is the entry node of the function.
3957 // Legalizing the call will automatically add the previous call to the
3958 // dependence.
3959 SDOperand InChain = DAG.getEntryNode();
3960
Chris Lattner77e77a62005-01-21 06:05:23 +00003961 TargetLowering::ArgListTy Args;
3962 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3963 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
3964 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
3965 Args.push_back(std::make_pair(Node->getOperand(i), ArgTy));
3966 }
3967 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00003968
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003969 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00003970 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003971 std::pair<SDOperand,SDOperand> CallInfo =
Chris Lattneradf6a962005-05-13 18:50:42 +00003972 TLI.LowerCallTo(InChain, RetTy, false, CallingConv::C, false,
3973 Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00003974
Chris Lattner6831a812006-02-13 09:18:02 +00003975 // Legalize the call sequence, starting with the chain. This will advance
3976 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
3977 // was added by LowerCallTo (guaranteeing proper serialization of calls).
3978 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00003979 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003980 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00003981 default: assert(0 && "Unknown thing");
3982 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00003983 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00003984 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00003985 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00003986 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00003987 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00003988 }
Chris Lattner99c25b82005-09-02 20:26:58 +00003989 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00003990}
3991
Chris Lattner9c32d3b2005-01-23 04:42:50 +00003992
Chris Lattner77e77a62005-01-21 06:05:23 +00003993/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
3994/// destination type is legal.
3995SDOperand SelectionDAGLegalize::
3996ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003997 assert(isTypeLegal(DestTy) && "Destination type is not legal!");
Chris Lattner77e77a62005-01-21 06:05:23 +00003998 assert(getTypeAction(Source.getValueType()) == Expand &&
3999 "This is not an expansion!");
4000 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
4001
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004002 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00004003 assert(Source.getValueType() == MVT::i64 &&
4004 "This only works for 64-bit -> FP");
4005 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
4006 // incoming integer is set. To handle this, we dynamically test to see if
4007 // it is set, and, if so, add a fudge factor.
4008 SDOperand Lo, Hi;
4009 ExpandOp(Source, Lo, Hi);
4010
Chris Lattner66de05b2005-05-13 04:45:13 +00004011 // If this is unsigned, and not supported, first perform the conversion to
4012 // signed, then adjust the result if the sign bit is set.
4013 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
4014 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
4015
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004016 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
4017 DAG.getConstant(0, Hi.getValueType()),
4018 ISD::SETLT);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004019 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4020 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4021 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00004022 uint64_t FF = 0x5f800000ULL;
4023 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencerb83eb642006-10-20 07:07:24 +00004024 static Constant *FudgeFactor = ConstantInt::get(Type::ULongTy, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004025
Chris Lattner5839bf22005-08-26 17:15:30 +00004026 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00004027 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4028 SDOperand FudgeInReg;
4029 if (DestTy == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004030 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004031 else {
4032 assert(DestTy == MVT::f64 && "Unexpected conversion");
Chris Lattner5f056bf2005-07-10 01:55:33 +00004033 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Cheng466685d2006-10-09 20:57:25 +00004034 CPIdx, NULL, 0, MVT::f32);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004035 }
Chris Lattner473a9902005-09-29 06:44:39 +00004036 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00004037 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004038
Chris Lattnera88a2602005-05-14 05:33:54 +00004039 // Check to see if the target has a custom way to lower this. If so, use it.
4040 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
4041 default: assert(0 && "This action not implemented for this operation!");
4042 case TargetLowering::Legal:
4043 case TargetLowering::Expand:
4044 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00004045 case TargetLowering::Custom: {
4046 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
4047 Source), DAG);
4048 if (NV.Val)
4049 return LegalizeOp(NV);
4050 break; // The target decided this was legal after all
4051 }
Chris Lattnera88a2602005-05-14 05:33:54 +00004052 }
4053
Chris Lattner13689e22005-05-12 07:00:44 +00004054 // Expand the source, then glue it back together for the call. We must expand
4055 // the source in case it is shared (this pass of legalize must traverse it).
4056 SDOperand SrcLo, SrcHi;
4057 ExpandOp(Source, SrcLo, SrcHi);
4058 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
4059
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004060 const char *FnName = 0;
4061 if (DestTy == MVT::f32)
4062 FnName = "__floatdisf";
4063 else {
4064 assert(DestTy == MVT::f64 && "Unknown fp value type!");
4065 FnName = "__floatdidf";
4066 }
Chris Lattner6831a812006-02-13 09:18:02 +00004067
4068 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
4069 SDOperand UnusedHiPart;
Chris Lattner25125692006-02-17 04:32:33 +00004070 return ExpandLibCall(FnName, Source.Val, UnusedHiPart);
Chris Lattner77e77a62005-01-21 06:05:23 +00004071}
Misha Brukmanedf128a2005-04-21 22:36:52 +00004072
Chris Lattner22cde6a2006-01-28 08:25:58 +00004073/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
4074/// INT_TO_FP operation of the specified operand when the target requests that
4075/// we expand it. At this point, we know that the result and operand types are
4076/// legal for the target.
4077SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
4078 SDOperand Op0,
4079 MVT::ValueType DestVT) {
4080 if (Op0.getValueType() == MVT::i32) {
4081 // simple 32-bit [signed|unsigned] integer to float/double expansion
4082
4083 // get the stack frame index of a 8 byte buffer
4084 MachineFunction &MF = DAG.getMachineFunction();
4085 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
4086 // get address of 8 byte buffer
4087 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4088 // word offset constant for Hi/Lo address computation
4089 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
4090 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00004091 SDOperand Hi = StackSlot;
4092 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
4093 if (TLI.isLittleEndian())
4094 std::swap(Hi, Lo);
4095
Chris Lattner22cde6a2006-01-28 08:25:58 +00004096 // if signed map to unsigned space
4097 SDOperand Op0Mapped;
4098 if (isSigned) {
4099 // constant used to invert sign bit (signed to unsigned mapping)
4100 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
4101 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
4102 } else {
4103 Op0Mapped = Op0;
4104 }
4105 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00004106 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004107 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004108 // initial hi portion of constructed double
4109 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
4110 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00004111 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004112 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00004113 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004114 // FP constant to bias correct the final result
4115 SDOperand Bias = DAG.getConstantFP(isSigned ?
4116 BitsToDouble(0x4330000080000000ULL)
4117 : BitsToDouble(0x4330000000000000ULL),
4118 MVT::f64);
4119 // subtract the bias
4120 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
4121 // final result
4122 SDOperand Result;
4123 // handle final rounding
4124 if (DestVT == MVT::f64) {
4125 // do nothing
4126 Result = Sub;
4127 } else {
4128 // if f32 then cast to f32
4129 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
4130 }
4131 return Result;
4132 }
4133 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
4134 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
4135
4136 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
4137 DAG.getConstant(0, Op0.getValueType()),
4138 ISD::SETLT);
4139 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4140 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4141 SignSet, Four, Zero);
4142
4143 // If the sign bit of the integer is set, the large number will be treated
4144 // as a negative number. To counteract this, the dynamic code adds an
4145 // offset depending on the data type.
4146 uint64_t FF;
4147 switch (Op0.getValueType()) {
4148 default: assert(0 && "Unsupported integer type!");
4149 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
4150 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
4151 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
4152 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
4153 }
4154 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencerb83eb642006-10-20 07:07:24 +00004155 static Constant *FudgeFactor = ConstantInt::get(Type::ULongTy, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004156
4157 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4158 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4159 SDOperand FudgeInReg;
4160 if (DestVT == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004161 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004162 else {
4163 assert(DestVT == MVT::f64 && "Unexpected conversion");
4164 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
4165 DAG.getEntryNode(), CPIdx,
Evan Cheng466685d2006-10-09 20:57:25 +00004166 NULL, 0, MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00004167 }
4168
4169 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
4170}
4171
4172/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
4173/// *INT_TO_FP operation of the specified operand when the target requests that
4174/// we promote it. At this point, we know that the result and operand types are
4175/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
4176/// operation that takes a larger input.
4177SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
4178 MVT::ValueType DestVT,
4179 bool isSigned) {
4180 // First step, figure out the appropriate *INT_TO_FP operation to use.
4181 MVT::ValueType NewInTy = LegalOp.getValueType();
4182
4183 unsigned OpToUse = 0;
4184
4185 // Scan for the appropriate larger type to use.
4186 while (1) {
4187 NewInTy = (MVT::ValueType)(NewInTy+1);
4188 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
4189
4190 // If the target supports SINT_TO_FP of this type, use it.
4191 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4192 default: break;
4193 case TargetLowering::Legal:
4194 if (!TLI.isTypeLegal(NewInTy))
4195 break; // Can't use this datatype.
4196 // FALL THROUGH.
4197 case TargetLowering::Custom:
4198 OpToUse = ISD::SINT_TO_FP;
4199 break;
4200 }
4201 if (OpToUse) break;
4202 if (isSigned) continue;
4203
4204 // If the target supports UINT_TO_FP of this type, use it.
4205 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4206 default: break;
4207 case TargetLowering::Legal:
4208 if (!TLI.isTypeLegal(NewInTy))
4209 break; // Can't use this datatype.
4210 // FALL THROUGH.
4211 case TargetLowering::Custom:
4212 OpToUse = ISD::UINT_TO_FP;
4213 break;
4214 }
4215 if (OpToUse) break;
4216
4217 // Otherwise, try a larger type.
4218 }
4219
4220 // Okay, we found the operation and type to use. Zero extend our input to the
4221 // desired type then run the operation on it.
4222 return DAG.getNode(OpToUse, DestVT,
4223 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4224 NewInTy, LegalOp));
4225}
4226
4227/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4228/// FP_TO_*INT operation of the specified operand when the target requests that
4229/// we promote it. At this point, we know that the result and operand types are
4230/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4231/// operation that returns a larger result.
4232SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4233 MVT::ValueType DestVT,
4234 bool isSigned) {
4235 // First step, figure out the appropriate FP_TO*INT operation to use.
4236 MVT::ValueType NewOutTy = DestVT;
4237
4238 unsigned OpToUse = 0;
4239
4240 // Scan for the appropriate larger type to use.
4241 while (1) {
4242 NewOutTy = (MVT::ValueType)(NewOutTy+1);
4243 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4244
4245 // If the target supports FP_TO_SINT returning this type, use it.
4246 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4247 default: break;
4248 case TargetLowering::Legal:
4249 if (!TLI.isTypeLegal(NewOutTy))
4250 break; // Can't use this datatype.
4251 // FALL THROUGH.
4252 case TargetLowering::Custom:
4253 OpToUse = ISD::FP_TO_SINT;
4254 break;
4255 }
4256 if (OpToUse) break;
4257
4258 // If the target supports FP_TO_UINT of this type, use it.
4259 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4260 default: break;
4261 case TargetLowering::Legal:
4262 if (!TLI.isTypeLegal(NewOutTy))
4263 break; // Can't use this datatype.
4264 // FALL THROUGH.
4265 case TargetLowering::Custom:
4266 OpToUse = ISD::FP_TO_UINT;
4267 break;
4268 }
4269 if (OpToUse) break;
4270
4271 // Otherwise, try a larger type.
4272 }
4273
4274 // Okay, we found the operation and type to use. Truncate the result of the
4275 // extended FP_TO_*INT operation to the desired size.
4276 return DAG.getNode(ISD::TRUNCATE, DestVT,
4277 DAG.getNode(OpToUse, NewOutTy, LegalOp));
4278}
4279
4280/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4281///
4282SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4283 MVT::ValueType VT = Op.getValueType();
4284 MVT::ValueType SHVT = TLI.getShiftAmountTy();
4285 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4286 switch (VT) {
4287 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4288 case MVT::i16:
4289 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4290 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4291 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4292 case MVT::i32:
4293 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4294 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4295 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4296 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4297 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4298 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4299 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4300 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4301 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4302 case MVT::i64:
4303 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4304 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4305 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4306 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4307 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4308 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4309 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4310 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4311 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4312 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4313 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4314 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4315 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4316 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4317 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4318 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4319 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4320 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4321 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4322 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4323 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4324 }
4325}
4326
4327/// ExpandBitCount - Expand the specified bitcount instruction into operations.
4328///
4329SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4330 switch (Opc) {
4331 default: assert(0 && "Cannot expand this yet!");
4332 case ISD::CTPOP: {
4333 static const uint64_t mask[6] = {
4334 0x5555555555555555ULL, 0x3333333333333333ULL,
4335 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4336 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4337 };
4338 MVT::ValueType VT = Op.getValueType();
4339 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4340 unsigned len = getSizeInBits(VT);
4341 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4342 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4343 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4344 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4345 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4346 DAG.getNode(ISD::AND, VT,
4347 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4348 }
4349 return Op;
4350 }
4351 case ISD::CTLZ: {
4352 // for now, we do this:
4353 // x = x | (x >> 1);
4354 // x = x | (x >> 2);
4355 // ...
4356 // x = x | (x >>16);
4357 // x = x | (x >>32); // for 64-bit input
4358 // return popcount(~x);
4359 //
4360 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4361 MVT::ValueType VT = Op.getValueType();
4362 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4363 unsigned len = getSizeInBits(VT);
4364 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4365 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4366 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4367 }
4368 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4369 return DAG.getNode(ISD::CTPOP, VT, Op);
4370 }
4371 case ISD::CTTZ: {
4372 // for now, we use: { return popcount(~x & (x - 1)); }
4373 // unless the target has ctlz but not ctpop, in which case we use:
4374 // { return 32 - nlz(~x & (x-1)); }
4375 // see also http://www.hackersdelight.org/HDcode/ntz.cc
4376 MVT::ValueType VT = Op.getValueType();
4377 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4378 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4379 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4380 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4381 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4382 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4383 TLI.isOperationLegal(ISD::CTLZ, VT))
4384 return DAG.getNode(ISD::SUB, VT,
4385 DAG.getConstant(getSizeInBits(VT), VT),
4386 DAG.getNode(ISD::CTLZ, VT, Tmp3));
4387 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4388 }
4389 }
4390}
Chris Lattnere34b3962005-01-19 04:19:40 +00004391
Chris Lattner3e928bb2005-01-07 07:47:09 +00004392/// ExpandOp - Expand the specified SDOperand into its two component pieces
4393/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
4394/// LegalizeNodes map is filled in for any results that are not expanded, the
4395/// ExpandedNodes map is filled in for any results that are expanded, and the
4396/// Lo/Hi values are returned.
4397void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4398 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00004399 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004400 SDNode *Node = Op.Val;
4401 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004402 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
4403 VT == MVT::Vector) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00004404 "Cannot expand to FP value or to larger int value!");
4405
Chris Lattner6fdcb252005-09-02 20:32:45 +00004406 // See if we already expanded it.
4407 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4408 = ExpandedNodes.find(Op);
4409 if (I != ExpandedNodes.end()) {
4410 Lo = I->second.first;
4411 Hi = I->second.second;
4412 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004413 }
4414
Chris Lattner3e928bb2005-01-07 07:47:09 +00004415 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004416 case ISD::CopyFromReg:
4417 assert(0 && "CopyFromReg must be legal!");
4418 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004419#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +00004420 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004421#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00004422 assert(0 && "Do not know how to expand this operator!");
4423 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004424 case ISD::UNDEF:
4425 Lo = DAG.getNode(ISD::UNDEF, NVT);
4426 Hi = DAG.getNode(ISD::UNDEF, NVT);
4427 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004428 case ISD::Constant: {
4429 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4430 Lo = DAG.getConstant(Cst, NVT);
4431 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
4432 break;
4433 }
Evan Cheng00495212006-12-12 21:32:44 +00004434 case ISD::ConstantFP: {
4435 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Evan Cheng279101e2006-12-12 22:19:28 +00004436 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00004437 if (getTypeAction(Lo.getValueType()) == Expand)
4438 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00004439 break;
4440 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004441 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00004442 // Return the operands.
4443 Lo = Node->getOperand(0);
4444 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004445 break;
Chris Lattner58f79632005-12-12 22:27:43 +00004446
4447 case ISD::SIGN_EXTEND_INREG:
4448 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00004449 // sext_inreg the low part if needed.
4450 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
4451
4452 // The high part gets the sign extension from the lo-part. This handles
4453 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00004454 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4455 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
4456 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00004457 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004458
Nate Begemand88fc032006-01-14 03:14:10 +00004459 case ISD::BSWAP: {
4460 ExpandOp(Node->getOperand(0), Lo, Hi);
4461 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
4462 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
4463 Lo = TempLo;
4464 break;
4465 }
4466
Chris Lattneredb1add2005-05-11 04:51:16 +00004467 case ISD::CTPOP:
4468 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00004469 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
4470 DAG.getNode(ISD::CTPOP, NVT, Lo),
4471 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00004472 Hi = DAG.getConstant(0, NVT);
4473 break;
4474
Chris Lattner39a8f332005-05-12 19:05:01 +00004475 case ISD::CTLZ: {
4476 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004477 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004478 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4479 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004480 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
4481 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004482 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
4483 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
4484
4485 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
4486 Hi = DAG.getConstant(0, NVT);
4487 break;
4488 }
4489
4490 case ISD::CTTZ: {
4491 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004492 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004493 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4494 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004495 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
4496 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004497 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
4498 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
4499
4500 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
4501 Hi = DAG.getConstant(0, NVT);
4502 break;
4503 }
Chris Lattneredb1add2005-05-11 04:51:16 +00004504
Nate Begemanacc398c2006-01-25 18:21:52 +00004505 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004506 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4507 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00004508 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
4509 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
4510
4511 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004512 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00004513 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
4514 if (!TLI.isLittleEndian())
4515 std::swap(Lo, Hi);
4516 break;
4517 }
4518
Chris Lattner3e928bb2005-01-07 07:47:09 +00004519 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00004520 LoadSDNode *LD = cast<LoadSDNode>(Node);
4521 SDOperand Ch = LD->getChain(); // Legalize the chain.
4522 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
4523 ISD::LoadExtType ExtType = LD->getExtensionType();
Chris Lattner3e928bb2005-01-07 07:47:09 +00004524
Evan Cheng466685d2006-10-09 20:57:25 +00004525 if (ExtType == ISD::NON_EXTLOAD) {
4526 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
Evan Cheng00495212006-12-12 21:32:44 +00004527 if (VT == MVT::f32 || VT == MVT::f64) {
4528 // f32->i32 or f64->i64 one to one expansion.
4529 // Remember that we legalized the chain.
4530 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00004531 // Recursively expand the new load.
4532 if (getTypeAction(NVT) == Expand)
4533 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00004534 break;
4535 }
Chris Lattnerec39a452005-01-19 18:02:17 +00004536
Evan Cheng466685d2006-10-09 20:57:25 +00004537 // Increment the pointer to the other half.
4538 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
4539 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4540 getIntPtrConstant(IncrementSize));
4541 // FIXME: This creates a bogus srcvalue!
4542 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
Misha Brukmanedf128a2005-04-21 22:36:52 +00004543
Evan Cheng466685d2006-10-09 20:57:25 +00004544 // Build a factor node to remember that this load is independent of the
4545 // other one.
4546 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4547 Hi.getValue(1));
4548
4549 // Remember that we legalized the chain.
4550 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
4551 if (!TLI.isLittleEndian())
4552 std::swap(Lo, Hi);
4553 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00004554 MVT::ValueType EVT = LD->getLoadedVT();
Evan Cheng548f6112006-12-13 03:19:57 +00004555
4556 if (VT == MVT::f64 && EVT == MVT::f32) {
4557 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
4558 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
4559 LD->getSrcValueOffset());
4560 // Remember that we legalized the chain.
4561 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
4562 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
4563 break;
4564 }
Evan Cheng466685d2006-10-09 20:57:25 +00004565
4566 if (EVT == NVT)
4567 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
4568 LD->getSrcValueOffset());
4569 else
4570 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
4571 LD->getSrcValueOffset(), EVT);
4572
4573 // Remember that we legalized the chain.
4574 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
4575
4576 if (ExtType == ISD::SEXTLOAD) {
4577 // The high part is obtained by SRA'ing all but one of the bits of the
4578 // lo part.
4579 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
4580 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4581 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
4582 } else if (ExtType == ISD::ZEXTLOAD) {
4583 // The high part is just a zero.
4584 Hi = DAG.getConstant(0, NVT);
4585 } else /* if (ExtType == ISD::EXTLOAD) */ {
4586 // The high part is undefined.
4587 Hi = DAG.getNode(ISD::UNDEF, NVT);
4588 }
4589 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004590 break;
4591 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004592 case ISD::AND:
4593 case ISD::OR:
4594 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
4595 SDOperand LL, LH, RL, RH;
4596 ExpandOp(Node->getOperand(0), LL, LH);
4597 ExpandOp(Node->getOperand(1), RL, RH);
4598 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
4599 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
4600 break;
4601 }
4602 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00004603 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004604 ExpandOp(Node->getOperand(1), LL, LH);
4605 ExpandOp(Node->getOperand(2), RL, RH);
Chris Lattner456a93a2006-01-28 07:39:30 +00004606 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
4607 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004608 break;
4609 }
Nate Begeman9373a812005-08-10 20:51:12 +00004610 case ISD::SELECT_CC: {
4611 SDOperand TL, TH, FL, FH;
4612 ExpandOp(Node->getOperand(2), TL, TH);
4613 ExpandOp(Node->getOperand(3), FL, FH);
4614 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4615 Node->getOperand(1), TL, FL, Node->getOperand(4));
4616 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4617 Node->getOperand(1), TH, FH, Node->getOperand(4));
4618 break;
4619 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004620 case ISD::ANY_EXTEND:
4621 // The low part is any extension of the input (which degenerates to a copy).
4622 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
4623 // The high part is undefined.
4624 Hi = DAG.getNode(ISD::UNDEF, NVT);
4625 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004626 case ISD::SIGN_EXTEND: {
4627 // The low part is just a sign extension of the input (which degenerates to
4628 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004629 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004630
Chris Lattner3e928bb2005-01-07 07:47:09 +00004631 // The high part is obtained by SRA'ing all but one of the bits of the lo
4632 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00004633 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00004634 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4635 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00004636 break;
4637 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004638 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00004639 // The low part is just a zero extension of the input (which degenerates to
4640 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004641 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004642
Chris Lattner3e928bb2005-01-07 07:47:09 +00004643 // The high part is just a zero.
4644 Hi = DAG.getConstant(0, NVT);
4645 break;
Chris Lattner35481892005-12-23 00:16:34 +00004646
4647 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004648 SDOperand Tmp;
4649 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
4650 // If the target wants to, allow it to lower this itself.
4651 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4652 case Expand: assert(0 && "cannot expand FP!");
4653 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
4654 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
4655 }
4656 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
4657 }
4658
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004659 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00004660 if (VT == MVT::f32 || VT == MVT::f64) {
4661 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng7b2b5c82006-12-12 19:53:13 +00004662 break;
4663 }
4664
4665 // If source operand will be expanded to the same type as VT, i.e.
4666 // i64 <- f64, i32 <- f32, expand the source operand instead.
4667 MVT::ValueType VT0 = Node->getOperand(0).getValueType();
4668 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
4669 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004670 break;
4671 }
4672
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004673 // Turn this into a load/store pair by default.
4674 if (Tmp.Val == 0)
Evan Cheng13acce32006-12-11 19:27:14 +00004675 Tmp = ExpandBIT_CONVERT(VT, Node->getOperand(0));
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004676
Chris Lattner35481892005-12-23 00:16:34 +00004677 ExpandOp(Tmp, Lo, Hi);
4678 break;
4679 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004680
Chris Lattner8137c9e2006-01-28 05:07:51 +00004681 case ISD::READCYCLECOUNTER:
Chris Lattner308575b2005-11-20 22:56:56 +00004682 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
4683 TargetLowering::Custom &&
4684 "Must custom expand ReadCycleCounter");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004685 Lo = TLI.LowerOperation(Op, DAG);
4686 assert(Lo.Val && "Node must be custom expanded!");
4687 Hi = Lo.getValue(1);
Chris Lattner308575b2005-11-20 22:56:56 +00004688 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004689 LegalizeOp(Lo.getValue(2)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004690 break;
4691
Chris Lattner4e6c7462005-01-08 19:27:05 +00004692 // These operators cannot be expanded directly, emit them as calls to
4693 // library functions.
4694 case ISD::FP_TO_SINT:
Chris Lattner80a3e942005-07-29 00:33:32 +00004695 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00004696 SDOperand Op;
4697 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4698 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004699 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4700 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00004701 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004702
Chris Lattnerf20d1832005-07-30 01:40:57 +00004703 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
4704
Chris Lattner80a3e942005-07-29 00:33:32 +00004705 // Now that the custom expander is done, expand the result, which is still
4706 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00004707 if (Op.Val) {
4708 ExpandOp(Op, Lo, Hi);
4709 break;
4710 }
Chris Lattner80a3e942005-07-29 00:33:32 +00004711 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004712
Chris Lattner4e6c7462005-01-08 19:27:05 +00004713 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00004714 Lo = ExpandLibCall("__fixsfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004715 else
Chris Lattner77e77a62005-01-21 06:05:23 +00004716 Lo = ExpandLibCall("__fixdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004717 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004718
Chris Lattner4e6c7462005-01-08 19:27:05 +00004719 case ISD::FP_TO_UINT:
Chris Lattner80a3e942005-07-29 00:33:32 +00004720 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004721 SDOperand Op;
4722 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4723 case Expand: assert(0 && "cannot expand FP!");
4724 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4725 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
4726 }
4727
4728 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
4729
4730 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00004731 if (Op.Val) {
4732 ExpandOp(Op, Lo, Hi);
4733 break;
4734 }
Chris Lattner80a3e942005-07-29 00:33:32 +00004735 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004736
Chris Lattner4e6c7462005-01-08 19:27:05 +00004737 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00004738 Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004739 else
Chris Lattner77e77a62005-01-21 06:05:23 +00004740 Lo = ExpandLibCall("__fixunsdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004741 break;
4742
Evan Cheng05a2d562006-01-09 18:31:59 +00004743 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004744 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004745 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004746 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004747 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004748 Op = TLI.LowerOperation(Op, DAG);
4749 if (Op.Val) {
4750 // Now that the custom expander is done, expand the result, which is
4751 // still VT.
4752 ExpandOp(Op, Lo, Hi);
4753 break;
4754 }
4755 }
4756
Chris Lattner79980b02006-09-13 03:50:39 +00004757 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
4758 // this X << 1 as X+X.
4759 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
4760 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
4761 TLI.isOperationLegal(ISD::ADDE, NVT)) {
4762 SDOperand LoOps[2], HiOps[3];
4763 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
4764 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
4765 LoOps[1] = LoOps[0];
4766 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
4767
4768 HiOps[1] = HiOps[0];
4769 HiOps[2] = Lo.getValue(1);
4770 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
4771 break;
4772 }
4773 }
4774
Chris Lattnere34b3962005-01-19 04:19:40 +00004775 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004776 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004777 break;
Chris Lattner47599822005-04-02 03:38:53 +00004778
4779 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004780 TargetLowering::LegalizeAction Action =
4781 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
4782 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4783 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004784 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004785 break;
4786 }
4787
Chris Lattnere34b3962005-01-19 04:19:40 +00004788 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004789 Lo = ExpandLibCall("__ashldi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004790 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004791 }
Chris Lattnere34b3962005-01-19 04:19:40 +00004792
Evan Cheng05a2d562006-01-09 18:31:59 +00004793 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004794 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004795 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004796 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004797 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004798 Op = TLI.LowerOperation(Op, DAG);
4799 if (Op.Val) {
4800 // Now that the custom expander is done, expand the result, which is
4801 // still VT.
4802 ExpandOp(Op, Lo, Hi);
4803 break;
4804 }
4805 }
4806
Chris Lattnere34b3962005-01-19 04:19:40 +00004807 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004808 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004809 break;
Chris Lattner47599822005-04-02 03:38:53 +00004810
4811 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004812 TargetLowering::LegalizeAction Action =
4813 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
4814 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4815 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004816 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004817 break;
4818 }
4819
Chris Lattnere34b3962005-01-19 04:19:40 +00004820 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004821 Lo = ExpandLibCall("__ashrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004822 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004823 }
4824
4825 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004826 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004827 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004828 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004829 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004830 Op = TLI.LowerOperation(Op, DAG);
4831 if (Op.Val) {
4832 // Now that the custom expander is done, expand the result, which is
4833 // still VT.
4834 ExpandOp(Op, Lo, Hi);
4835 break;
4836 }
4837 }
4838
Chris Lattnere34b3962005-01-19 04:19:40 +00004839 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004840 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004841 break;
Chris Lattner47599822005-04-02 03:38:53 +00004842
4843 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004844 TargetLowering::LegalizeAction Action =
4845 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
4846 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4847 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004848 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004849 break;
4850 }
4851
Chris Lattnere34b3962005-01-19 04:19:40 +00004852 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004853 Lo = ExpandLibCall("__lshrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004854 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004855 }
Chris Lattnere34b3962005-01-19 04:19:40 +00004856
Misha Brukmanedf128a2005-04-21 22:36:52 +00004857 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00004858 case ISD::SUB: {
4859 // If the target wants to custom expand this, let them.
4860 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
4861 TargetLowering::Custom) {
4862 Op = TLI.LowerOperation(Op, DAG);
4863 if (Op.Val) {
4864 ExpandOp(Op, Lo, Hi);
4865 break;
4866 }
4867 }
4868
4869 // Expand the subcomponents.
4870 SDOperand LHSL, LHSH, RHSL, RHSH;
4871 ExpandOp(Node->getOperand(0), LHSL, LHSH);
4872 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00004873 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
4874 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004875 LoOps[0] = LHSL;
4876 LoOps[1] = RHSL;
4877 HiOps[0] = LHSH;
4878 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00004879 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00004880 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004881 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00004882 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00004883 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00004884 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004885 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00004886 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00004887 }
Chris Lattner84f67882005-01-20 18:52:28 +00004888 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00004889 }
Nate Begemanc7c16572005-04-11 03:01:51 +00004890 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00004891 // If the target wants to custom expand this, let them.
4892 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00004893 SDOperand New = TLI.LowerOperation(Op, DAG);
4894 if (New.Val) {
4895 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00004896 break;
4897 }
4898 }
4899
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004900 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
4901 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004902 if (HasMULHS || HasMULHU) {
Nate Begemanc7c16572005-04-11 03:01:51 +00004903 SDOperand LL, LH, RL, RH;
4904 ExpandOp(Node->getOperand(0), LL, LH);
4905 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman56eb8682005-08-30 02:44:00 +00004906 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
Nate Begeman2cbba892006-12-11 02:23:46 +00004907 // FIXME: Move this to the dag combiner.
Nate Begeman56eb8682005-08-30 02:44:00 +00004908 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
4909 // extended the sign bit of the low half through the upper half, and if so
4910 // emit a MULHS instead of the alternate sequence that is valid for any
4911 // i64 x i64 multiply.
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004912 if (HasMULHS &&
Nate Begeman56eb8682005-08-30 02:44:00 +00004913 // is RH an extension of the sign bit of RL?
4914 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
4915 RH.getOperand(1).getOpcode() == ISD::Constant &&
4916 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
4917 // is LH an extension of the sign bit of LL?
4918 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
4919 LH.getOperand(1).getOpcode() == ISD::Constant &&
4920 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
Chris Lattnera89654b2006-09-16 00:21:44 +00004921 // Low part:
4922 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4923 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00004924 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
Chris Lattnera89654b2006-09-16 00:21:44 +00004925 break;
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004926 } else if (HasMULHU) {
Chris Lattnera89654b2006-09-16 00:21:44 +00004927 // Low part:
4928 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4929
4930 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00004931 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
4932 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
4933 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
4934 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
4935 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00004936 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00004937 }
Nate Begemanc7c16572005-04-11 03:01:51 +00004938 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004939
Chris Lattnera89654b2006-09-16 00:21:44 +00004940 Lo = ExpandLibCall("__muldi3" , Node, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00004941 break;
4942 }
Chris Lattner77e77a62005-01-21 06:05:23 +00004943 case ISD::SDIV: Lo = ExpandLibCall("__divdi3" , Node, Hi); break;
4944 case ISD::UDIV: Lo = ExpandLibCall("__udivdi3", Node, Hi); break;
4945 case ISD::SREM: Lo = ExpandLibCall("__moddi3" , Node, Hi); break;
4946 case ISD::UREM: Lo = ExpandLibCall("__umoddi3", Node, Hi); break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00004947
4948 case ISD::FNEG:
4949 Lo = ExpandLibCall(((VT == MVT::f32) ? "__negsf2" : "__negdf2"), Node, Hi);
4950 break;
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004951 case ISD::FADD:
4952 Lo = ExpandLibCall(((VT == MVT::f32) ? "__addsf3" : "__adddf3"), Node, Hi);
4953 break;
4954 case ISD::FSUB:
4955 Lo = ExpandLibCall(((VT == MVT::f32) ? "__subsf3" : "__subdf3"), Node, Hi);
4956 break;
4957 case ISD::FMUL:
4958 Lo = ExpandLibCall(((VT == MVT::f32) ? "__mulsf3" : "__muldf3"), Node, Hi);
4959 break;
4960 case ISD::FDIV:
4961 Lo = ExpandLibCall(((VT == MVT::f32) ? "__divsf3" : "__divdf3"), Node, Hi);
4962 break;
4963 case ISD::FP_EXTEND:
4964 Lo = ExpandLibCall("__extendsfdf2", Node, Hi);
4965 break;
4966 case ISD::FP_ROUND:
4967 Lo = ExpandLibCall("__truncdfsf2", Node, Hi);
4968 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00004969 case ISD::SINT_TO_FP: {
4970 const char *FnName = 0;
Evan Cheng5c9ce182006-12-12 21:51:17 +00004971 if (Node->getOperand(0).getValueType() == MVT::i64)
Evan Cheng98ff3b92006-12-13 02:38:13 +00004972 FnName = (VT == MVT::f32) ? "__floatdisf" : "__floatdidf";
Evan Cheng5c9ce182006-12-12 21:51:17 +00004973 else
Evan Cheng98ff3b92006-12-13 02:38:13 +00004974 FnName = (VT == MVT::f32) ? "__floatsisf" : "__floatsidf";
4975 Lo = ExpandLibCall(FnName, Node, Hi);
Evan Cheng5c9ce182006-12-12 21:51:17 +00004976 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00004977 }
4978 case ISD::UINT_TO_FP: {
4979 const char *FnName = 0;
Evan Cheng5c9ce182006-12-12 21:51:17 +00004980 if (Node->getOperand(0).getValueType() == MVT::i64)
Evan Cheng98ff3b92006-12-13 02:38:13 +00004981 FnName = (VT == MVT::f32) ? "__floatundisf" : "__floatundidf";
Evan Cheng5c9ce182006-12-12 21:51:17 +00004982 else
Evan Cheng98ff3b92006-12-13 02:38:13 +00004983 FnName = (VT == MVT::f32) ? "__floatunsisf" : "__floatunsidf";
4984 Lo = ExpandLibCall(FnName, Node, Hi);
Evan Cheng5c9ce182006-12-12 21:51:17 +00004985 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004986 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00004987 case ISD::FSQRT:
4988 case ISD::FSIN:
4989 case ISD::FCOS: {
4990 const char *FnName = 0;
4991 switch(Node->getOpcode()) {
4992 case ISD::FSQRT: FnName = (VT == MVT::f32) ? "sqrtf" : "sqrt"; break;
4993 case ISD::FSIN: FnName = (VT == MVT::f32) ? "sinf" : "sin"; break;
4994 case ISD::FCOS: FnName = (VT == MVT::f32) ? "cosf" : "cos"; break;
4995 default: assert(0 && "Unreachable!");
4996 }
4997 Lo = ExpandLibCall(FnName, Node, Hi);
4998 break;
4999 }
5000 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005001
Chris Lattner83397362005-12-21 18:02:52 +00005002 // Make sure the resultant values have been legalized themselves, unless this
5003 // is a type that requires multi-step expansion.
5004 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
5005 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00005006 if (Hi.Val)
5007 // Don't legalize the high part if it is expanded to a single node.
5008 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00005009 }
Evan Cheng05a2d562006-01-09 18:31:59 +00005010
5011 // Remember in a map if the values will be reused later.
5012 bool isNew =
5013 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
5014 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005015}
5016
Chris Lattnerc7029802006-03-18 01:44:44 +00005017/// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
5018/// two smaller values of MVT::Vector type.
5019void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
5020 SDOperand &Hi) {
5021 assert(Op.getValueType() == MVT::Vector && "Cannot split non-vector type!");
5022 SDNode *Node = Op.Val;
5023 unsigned NumElements = cast<ConstantSDNode>(*(Node->op_end()-2))->getValue();
5024 assert(NumElements > 1 && "Cannot split a single element vector!");
5025 unsigned NewNumElts = NumElements/2;
5026 SDOperand NewNumEltsNode = DAG.getConstant(NewNumElts, MVT::i32);
5027 SDOperand TypeNode = *(Node->op_end()-1);
5028
5029 // See if we already split it.
5030 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
5031 = SplitNodes.find(Op);
5032 if (I != SplitNodes.end()) {
5033 Lo = I->second.first;
5034 Hi = I->second.second;
5035 return;
5036 }
5037
5038 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005039 default:
5040#ifndef NDEBUG
5041 Node->dump();
5042#endif
5043 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerb2827b02006-03-19 00:52:58 +00005044 case ISD::VBUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005045 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
5046 Node->op_begin()+NewNumElts);
Chris Lattnerc7029802006-03-18 01:44:44 +00005047 LoOps.push_back(NewNumEltsNode);
5048 LoOps.push_back(TypeNode);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005049 Lo = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00005050
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005051 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts,
5052 Node->op_end()-2);
Chris Lattnerc7029802006-03-18 01:44:44 +00005053 HiOps.push_back(NewNumEltsNode);
5054 HiOps.push_back(TypeNode);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005055 Hi = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00005056 break;
5057 }
5058 case ISD::VADD:
5059 case ISD::VSUB:
5060 case ISD::VMUL:
5061 case ISD::VSDIV:
5062 case ISD::VUDIV:
5063 case ISD::VAND:
5064 case ISD::VOR:
5065 case ISD::VXOR: {
5066 SDOperand LL, LH, RL, RH;
5067 SplitVectorOp(Node->getOperand(0), LL, LH);
5068 SplitVectorOp(Node->getOperand(1), RL, RH);
5069
5070 Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, LL, RL,
5071 NewNumEltsNode, TypeNode);
5072 Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, LH, RH,
5073 NewNumEltsNode, TypeNode);
5074 break;
5075 }
5076 case ISD::VLOAD: {
5077 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5078 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
5079 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
5080
5081 Lo = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
5082 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(EVT)/8;
5083 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
5084 getIntPtrConstant(IncrementSize));
5085 // FIXME: This creates a bogus srcvalue!
5086 Hi = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
5087
5088 // Build a factor node to remember that this load is independent of the
5089 // other one.
5090 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5091 Hi.getValue(1));
5092
5093 // Remember that we legalized the chain.
5094 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00005095 break;
5096 }
Chris Lattner7692eb42006-03-23 21:16:34 +00005097 case ISD::VBIT_CONVERT: {
5098 // We know the result is a vector. The input may be either a vector or a
5099 // scalar value.
5100 if (Op.getOperand(0).getValueType() != MVT::Vector) {
5101 // Lower to a store/load. FIXME: this could be improved probably.
5102 SDOperand Ptr = CreateStackTemporary(Op.getOperand(0).getValueType());
5103
Evan Cheng786225a2006-10-05 23:01:46 +00005104 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005105 Op.getOperand(0), Ptr, NULL, 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00005106 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
5107 St = DAG.getVecLoad(NumElements, EVT, St, Ptr, DAG.getSrcValue(0));
5108 SplitVectorOp(St, Lo, Hi);
5109 } else {
5110 // If the input is a vector type, we have to either scalarize it, pack it
5111 // or convert it based on whether the input vector type is legal.
5112 SDNode *InVal = Node->getOperand(0).Val;
5113 unsigned NumElems =
5114 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5115 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5116
5117 // If the input is from a single element vector, scalarize the vector,
5118 // then treat like a scalar.
5119 if (NumElems == 1) {
5120 SDOperand Scalar = PackVectorOp(Op.getOperand(0), EVT);
5121 Scalar = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Scalar,
5122 Op.getOperand(1), Op.getOperand(2));
5123 SplitVectorOp(Scalar, Lo, Hi);
5124 } else {
5125 // Split the input vector.
5126 SplitVectorOp(Op.getOperand(0), Lo, Hi);
5127
5128 // Convert each of the pieces now.
5129 Lo = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Lo,
5130 NewNumEltsNode, TypeNode);
5131 Hi = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Hi,
5132 NewNumEltsNode, TypeNode);
5133 }
5134 break;
5135 }
5136 }
Chris Lattnerc7029802006-03-18 01:44:44 +00005137 }
5138
5139 // Remember in a map if the values will be reused later.
5140 bool isNew =
5141 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
5142 assert(isNew && "Value already expanded?!?");
5143}
5144
5145
5146/// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
5147/// equivalent operation that returns a scalar (e.g. F32) or packed value
5148/// (e.g. MVT::V4F32). When this is called, we know that PackedVT is the right
5149/// type for the result.
5150SDOperand SelectionDAGLegalize::PackVectorOp(SDOperand Op,
5151 MVT::ValueType NewVT) {
5152 assert(Op.getValueType() == MVT::Vector && "Bad PackVectorOp invocation!");
5153 SDNode *Node = Op.Val;
5154
5155 // See if we already packed it.
5156 std::map<SDOperand, SDOperand>::iterator I = PackedNodes.find(Op);
5157 if (I != PackedNodes.end()) return I->second;
5158
5159 SDOperand Result;
5160 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00005161 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005162#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +00005163 Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005164#endif
Chris Lattner2332b9f2006-03-19 01:17:20 +00005165 assert(0 && "Unknown vector operation in PackVectorOp!");
Chris Lattnerc7029802006-03-18 01:44:44 +00005166 case ISD::VADD:
5167 case ISD::VSUB:
5168 case ISD::VMUL:
5169 case ISD::VSDIV:
5170 case ISD::VUDIV:
5171 case ISD::VAND:
5172 case ISD::VOR:
5173 case ISD::VXOR:
5174 Result = DAG.getNode(getScalarizedOpcode(Node->getOpcode(), NewVT),
5175 NewVT,
5176 PackVectorOp(Node->getOperand(0), NewVT),
5177 PackVectorOp(Node->getOperand(1), NewVT));
5178 break;
5179 case ISD::VLOAD: {
Chris Lattner4794a6b2006-03-19 00:07:49 +00005180 SDOperand Ch = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
5181 SDOperand Ptr = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00005182
Evan Cheng466685d2006-10-09 20:57:25 +00005183 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
5184 Result = DAG.getLoad(NewVT, Ch, Ptr, SV->getValue(), SV->getOffset());
Chris Lattnerc7029802006-03-18 01:44:44 +00005185
5186 // Remember that we legalized the chain.
5187 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
5188 break;
5189 }
Chris Lattnerb2827b02006-03-19 00:52:58 +00005190 case ISD::VBUILD_VECTOR:
Chris Lattner70c2a612006-03-31 02:06:56 +00005191 if (Node->getOperand(0).getValueType() == NewVT) {
Chris Lattnerb2827b02006-03-19 00:52:58 +00005192 // Returning a scalar?
Chris Lattnerc7029802006-03-18 01:44:44 +00005193 Result = Node->getOperand(0);
5194 } else {
Chris Lattnerb2827b02006-03-19 00:52:58 +00005195 // Returning a BUILD_VECTOR?
Chris Lattner17614ea2006-04-08 05:34:25 +00005196
5197 // If all elements of the build_vector are undefs, return an undef.
5198 bool AllUndef = true;
5199 for (unsigned i = 0, e = Node->getNumOperands()-2; i != e; ++i)
5200 if (Node->getOperand(i).getOpcode() != ISD::UNDEF) {
5201 AllUndef = false;
5202 break;
5203 }
5204 if (AllUndef) {
5205 Result = DAG.getNode(ISD::UNDEF, NewVT);
5206 } else {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005207 Result = DAG.getNode(ISD::BUILD_VECTOR, NewVT, Node->op_begin(),
5208 Node->getNumOperands()-2);
Chris Lattner17614ea2006-04-08 05:34:25 +00005209 }
Chris Lattnerc7029802006-03-18 01:44:44 +00005210 }
5211 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00005212 case ISD::VINSERT_VECTOR_ELT:
5213 if (!MVT::isVector(NewVT)) {
5214 // Returning a scalar? Must be the inserted element.
5215 Result = Node->getOperand(1);
5216 } else {
5217 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT,
5218 PackVectorOp(Node->getOperand(0), NewVT),
5219 Node->getOperand(1), Node->getOperand(2));
5220 }
5221 break;
Chris Lattner5b2316e2006-03-28 20:24:43 +00005222 case ISD::VVECTOR_SHUFFLE:
5223 if (!MVT::isVector(NewVT)) {
5224 // Returning a scalar? Figure out if it is the LHS or RHS and return it.
5225 SDOperand EltNum = Node->getOperand(2).getOperand(0);
5226 if (cast<ConstantSDNode>(EltNum)->getValue())
5227 Result = PackVectorOp(Node->getOperand(1), NewVT);
5228 else
5229 Result = PackVectorOp(Node->getOperand(0), NewVT);
5230 } else {
5231 // Otherwise, return a VECTOR_SHUFFLE node. First convert the index
5232 // vector from a VBUILD_VECTOR to a BUILD_VECTOR.
5233 std::vector<SDOperand> BuildVecIdx(Node->getOperand(2).Val->op_begin(),
5234 Node->getOperand(2).Val->op_end()-2);
5235 MVT::ValueType BVT = MVT::getIntVectorWithNumElements(BuildVecIdx.size());
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005236 SDOperand BV = DAG.getNode(ISD::BUILD_VECTOR, BVT,
5237 Node->getOperand(2).Val->op_begin(),
5238 Node->getOperand(2).Val->getNumOperands()-2);
Chris Lattner5b2316e2006-03-28 20:24:43 +00005239
5240 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT,
5241 PackVectorOp(Node->getOperand(0), NewVT),
5242 PackVectorOp(Node->getOperand(1), NewVT), BV);
5243 }
5244 break;
Chris Lattnere25ca692006-03-22 20:09:35 +00005245 case ISD::VBIT_CONVERT:
5246 if (Op.getOperand(0).getValueType() != MVT::Vector)
5247 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
5248 else {
5249 // If the input is a vector type, we have to either scalarize it, pack it
5250 // or convert it based on whether the input vector type is legal.
5251 SDNode *InVal = Node->getOperand(0).Val;
5252 unsigned NumElems =
5253 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5254 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5255
5256 // Figure out if there is a Packed type corresponding to this Vector
5257 // type. If so, convert to the packed type.
5258 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
5259 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
5260 // Turn this into a bit convert of the packed input.
5261 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5262 PackVectorOp(Node->getOperand(0), TVT));
5263 break;
5264 } else if (NumElems == 1) {
5265 // Turn this into a bit convert of the scalar input.
5266 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5267 PackVectorOp(Node->getOperand(0), EVT));
5268 break;
5269 } else {
5270 // FIXME: UNIMP!
5271 assert(0 && "Cast from unsupported vector type not implemented yet!");
5272 }
5273 }
Evan Chengdb3c6262006-04-10 18:54:36 +00005274 break;
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005275 case ISD::VSELECT:
5276 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
5277 PackVectorOp(Op.getOperand(1), NewVT),
5278 PackVectorOp(Op.getOperand(2), NewVT));
5279 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00005280 }
5281
5282 if (TLI.isTypeLegal(NewVT))
5283 Result = LegalizeOp(Result);
5284 bool isNew = PackedNodes.insert(std::make_pair(Op, Result)).second;
5285 assert(isNew && "Value already packed?");
5286 return Result;
5287}
5288
Chris Lattner3e928bb2005-01-07 07:47:09 +00005289
5290// SelectionDAG::Legalize - This is the entry point for the file.
5291//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005292void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00005293 if (ViewLegalizeDAGs) viewGraph();
5294
Chris Lattner3e928bb2005-01-07 07:47:09 +00005295 /// run - This is the main entry point to this class.
5296 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00005297 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005298}
5299