blob: 4c22bfabb3ba4850b8661a499ca60e5b7a682b16 [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 Cheng00495212006-12-12 21:32:44 +0000491/// ExpandConstantFP - Expands the ConstantFP node by spilling the constant to
492/// memory.
493static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, SelectionDAG &DAG,
494 TargetLowering &TLI) {
495 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());
505 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
506 // Only do this if the target has a native EXTLOAD instruction from f32.
507 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
508 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC,Type::FloatTy));
509 VT = MVT::f32;
510 Extend = true;
511 }
512
513 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
514 if (Extend) {
515 return DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
516 CPIdx, NULL, 0, MVT::f32);
517 } else {
518 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
519 }
520}
521
Chris Lattner6831a812006-02-13 09:18:02 +0000522
Chris Lattnerc7029802006-03-18 01:44:44 +0000523/// LegalizeOp - We know that the specified value has a legal type.
524/// Recursively ensure that the operands have legal types, then return the
525/// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000526SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000527 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000528 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000529 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000530
Chris Lattner3e928bb2005-01-07 07:47:09 +0000531 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000532 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000533 if (Node->getNumValues() > 1) {
534 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000535 if (getTypeAction(Node->getValueType(i)) != Legal) {
536 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000537 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000538 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000539 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000540 }
541 }
542
Chris Lattner45982da2005-05-12 16:53:42 +0000543 // Note that LegalizeOp may be reentered even from single-use nodes, which
544 // means that we always must cache transformed nodes.
Chris Lattnere1bd8222005-01-11 05:57:22 +0000545 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
546 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000547
Nate Begeman9373a812005-08-10 20:51:12 +0000548 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000549 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000550 bool isCustom = false;
551
Chris Lattner3e928bb2005-01-07 07:47:09 +0000552 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000553 case ISD::FrameIndex:
554 case ISD::EntryToken:
555 case ISD::Register:
556 case ISD::BasicBlock:
557 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000558 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000559 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000560 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000561 case ISD::TargetConstantPool:
562 case ISD::TargetGlobalAddress:
563 case ISD::TargetExternalSymbol:
564 case ISD::VALUETYPE:
565 case ISD::SRCVALUE:
566 case ISD::STRING:
567 case ISD::CONDCODE:
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +0000568 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner948c1b12006-01-28 08:31:04 +0000569 // Primitives must all be legal.
570 assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
571 "This must be legal!");
572 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000573 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000574 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
575 // If this is a target node, legalize it by legalizing the operands then
576 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000577 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000578 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000579 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000580
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000581 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000582
583 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
584 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
585 return Result.getValue(Op.ResNo);
586 }
587 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000588#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +0000589 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000590#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000591 assert(0 && "Do not know how to legalize this operator!");
592 abort();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000593 case ISD::GlobalAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000594 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000595 case ISD::ConstantPool:
596 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000597 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
598 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000599 case TargetLowering::Custom:
600 Tmp1 = TLI.LowerOperation(Op, DAG);
601 if (Tmp1.Val) Result = Tmp1;
602 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000603 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000604 break;
605 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000606 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000607 case ISD::AssertSext:
608 case ISD::AssertZext:
609 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000610 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000611 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000612 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000613 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000614 Result = Node->getOperand(Op.ResNo);
615 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000616 case ISD::CopyFromReg:
617 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000618 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000619 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000620 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000621 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000622 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000623 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000624 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000625 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
626 } else {
627 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
628 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000629 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
630 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000631 // Since CopyFromReg produces two values, make sure to remember that we
632 // legalized both of them.
633 AddLegalizedOperand(Op.getValue(0), Result);
634 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
635 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000636 case ISD::UNDEF: {
637 MVT::ValueType VT = Op.getValueType();
638 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000639 default: assert(0 && "This action is not supported yet!");
640 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000641 if (MVT::isInteger(VT))
642 Result = DAG.getConstant(0, VT);
643 else if (MVT::isFloatingPoint(VT))
644 Result = DAG.getConstantFP(0, VT);
645 else
646 assert(0 && "Unknown value type!");
647 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000648 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000649 break;
650 }
651 break;
652 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000653
Chris Lattner48b61a72006-03-28 00:40:33 +0000654 case ISD::INTRINSIC_W_CHAIN:
655 case ISD::INTRINSIC_WO_CHAIN:
656 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000657 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000658 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
659 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000660 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +0000661
662 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +0000663 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +0000664 TargetLowering::Custom) {
665 Tmp3 = TLI.LowerOperation(Result, DAG);
666 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +0000667 }
668
669 if (Result.Val->getNumValues() == 1) break;
670
671 // Must have return value and chain result.
672 assert(Result.Val->getNumValues() == 2 &&
673 "Cannot return more than two values!");
674
675 // Since loads produce two values, make sure to remember that we
676 // legalized both of them.
677 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
678 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
679 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000680 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000681
682 case ISD::LOCATION:
683 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
684 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
685
686 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
687 case TargetLowering::Promote:
688 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000689 case TargetLowering::Expand: {
Jim Laskeyb2efb852006-01-04 22:28:25 +0000690 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000691 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
692 bool useDEBUG_LABEL = TLI.isOperationLegal(ISD::DEBUG_LABEL, MVT::Other);
693
694 if (DebugInfo && (useDEBUG_LOC || useDEBUG_LABEL)) {
695 const std::string &FName =
696 cast<StringSDNode>(Node->getOperand(3))->getValue();
697 const std::string &DirName =
698 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey063e7652006-01-17 17:31:53 +0000699 unsigned SrcFile = DebugInfo->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000700
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000701 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +0000702 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +0000703 SDOperand LineOp = Node->getOperand(1);
704 SDOperand ColOp = Node->getOperand(2);
705
706 if (useDEBUG_LOC) {
707 Ops.push_back(LineOp); // line #
708 Ops.push_back(ColOp); // col #
709 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000710 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000711 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +0000712 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
713 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000714 unsigned ID = DebugInfo->RecordLabel(Line, Col, SrcFile);
715 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000716 Result = DAG.getNode(ISD::DEBUG_LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000717 }
Jim Laskeye81aecb2005-12-21 20:51:37 +0000718 } else {
719 Result = Tmp1; // chain
720 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000721 break;
Chris Lattnere7736732005-12-18 23:54:29 +0000722 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000723 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +0000724 if (Tmp1 != Node->getOperand(0) ||
725 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000726 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +0000727 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +0000728 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
729 Ops.push_back(Node->getOperand(1)); // line # must be legal.
730 Ops.push_back(Node->getOperand(2)); // col # must be legal.
731 } else {
732 // Otherwise promote them.
733 Ops.push_back(PromoteOp(Node->getOperand(1)));
734 Ops.push_back(PromoteOp(Node->getOperand(2)));
735 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000736 Ops.push_back(Node->getOperand(3)); // filename must be legal.
737 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000738 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +0000739 }
740 break;
741 }
742 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000743
744 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +0000745 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000746 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000747 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +0000748 case TargetLowering::Legal:
749 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
750 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
751 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
752 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000753 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000754 break;
755 }
756 break;
757
758 case ISD::DEBUG_LABEL:
759 assert(Node->getNumOperands() == 2 && "Invalid DEBUG_LABEL node!");
760 switch (TLI.getOperationAction(ISD::DEBUG_LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000761 default: assert(0 && "This action is not supported yet!");
762 case TargetLowering::Legal:
763 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
764 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000765 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000766 break;
767 }
Nate Begeman551bf3f2006-02-17 05:43:56 +0000768 break;
Chris Lattner36ce6912005-11-29 06:21:05 +0000769
Chris Lattner3e928bb2005-01-07 07:47:09 +0000770 case ISD::Constant:
771 // We know we don't need to expand constants here, constants only have one
772 // value and we check that it is fine above.
773
774 // FIXME: Maybe we should handle things like targets that don't support full
775 // 32-bit immediates?
776 break;
777 case ISD::ConstantFP: {
778 // Spill FP immediates to the constant pool if the target cannot directly
779 // codegen them. Targets often have some immediate values that can be
780 // efficiently generated into an FP register without a load. We explicitly
781 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000782 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
783
784 // Check to see if this FP immediate is already legal.
785 bool isLegal = false;
786 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
787 E = TLI.legal_fpimm_end(); I != E; ++I)
788 if (CFP->isExactlyValue(*I)) {
789 isLegal = true;
790 break;
791 }
792
Chris Lattner3181a772006-01-29 06:26:56 +0000793 // If this is a legal constant, turn it into a TargetConstantFP node.
794 if (isLegal) {
795 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
796 break;
797 }
798
799 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
800 default: assert(0 && "This action is not supported yet!");
801 case TargetLowering::Custom:
802 Tmp3 = TLI.LowerOperation(Result, DAG);
803 if (Tmp3.Val) {
804 Result = Tmp3;
805 break;
806 }
807 // FALLTHROUGH
808 case TargetLowering::Expand:
Evan Cheng00495212006-12-12 21:32:44 +0000809 Result = ExpandConstantFP(CFP, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000810 }
811 break;
812 }
Chris Lattner040c11c2005-11-09 18:48:57 +0000813 case ISD::TokenFactor:
814 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000815 Tmp1 = LegalizeOp(Node->getOperand(0));
816 Tmp2 = LegalizeOp(Node->getOperand(1));
817 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
818 } else if (Node->getNumOperands() == 3) {
819 Tmp1 = LegalizeOp(Node->getOperand(0));
820 Tmp2 = LegalizeOp(Node->getOperand(1));
821 Tmp3 = LegalizeOp(Node->getOperand(2));
822 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +0000823 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000824 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +0000825 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000826 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
827 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000828 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +0000829 }
Chris Lattnera385e9b2005-01-13 17:59:25 +0000830 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000831
832 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000833 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +0000834 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +0000835 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
836 assert(Tmp3.Val && "Target didn't custom lower this node!");
837 assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
838 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +0000839
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000840 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +0000841 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +0000842 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
843 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +0000844 if (Op.ResNo == i)
845 Tmp2 = Tmp1;
846 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
847 }
848 return Tmp2;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000849
Chris Lattnerb2827b02006-03-19 00:52:58 +0000850 case ISD::BUILD_VECTOR:
851 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +0000852 default: assert(0 && "This action is not supported yet!");
853 case TargetLowering::Custom:
854 Tmp3 = TLI.LowerOperation(Result, DAG);
855 if (Tmp3.Val) {
856 Result = Tmp3;
857 break;
858 }
859 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +0000860 case TargetLowering::Expand:
861 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +0000862 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +0000863 }
Chris Lattner2332b9f2006-03-19 01:17:20 +0000864 break;
865 case ISD::INSERT_VECTOR_ELT:
866 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
867 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
868 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
869 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
870
871 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
872 Node->getValueType(0))) {
873 default: assert(0 && "This action is not supported yet!");
874 case TargetLowering::Legal:
875 break;
876 case TargetLowering::Custom:
877 Tmp3 = TLI.LowerOperation(Result, DAG);
878 if (Tmp3.Val) {
879 Result = Tmp3;
880 break;
881 }
882 // FALLTHROUGH
883 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +0000884 // If the insert index is a constant, codegen this as a scalar_to_vector,
885 // then a shuffle that inserts it into the right position in the vector.
886 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
887 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
888 Tmp1.getValueType(), Tmp2);
889
890 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
891 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
892 MVT::ValueType ShufMaskEltVT = MVT::getVectorBaseType(ShufMaskVT);
893
894 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
895 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
896 // the RHS.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000897 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner8d5a8942006-04-17 19:21:01 +0000898 for (unsigned i = 0; i != NumElts; ++i) {
899 if (i != InsertPos->getValue())
900 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
901 else
902 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
903 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000904 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
905 &ShufOps[0], ShufOps.size());
Chris Lattner8d5a8942006-04-17 19:21:01 +0000906
907 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
908 Tmp1, ScVec, ShufMask);
909 Result = LegalizeOp(Result);
910 break;
911 }
912
Chris Lattner2332b9f2006-03-19 01:17:20 +0000913 // If the target doesn't support this, we have to spill the input vector
914 // to a temporary stack slot, update the element, then reload it. This is
915 // badness. We could also load the value into a vector register (either
916 // with a "move to register" or "extload into register" instruction, then
917 // permute it into place, if the idx is a constant and if the idx is
918 // supported by the target.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000919 MVT::ValueType VT = Tmp1.getValueType();
920 MVT::ValueType EltVT = Tmp2.getValueType();
921 MVT::ValueType IdxVT = Tmp3.getValueType();
922 MVT::ValueType PtrVT = TLI.getPointerTy();
923 SDOperand StackPtr = CreateStackTemporary(VT);
Evan Chengeb0b4612006-03-31 01:27:51 +0000924 // Store the vector.
Evan Cheng8b2794a2006-10-13 21:14:26 +0000925 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +0000926
927 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000928 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
929 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +0000930 // Add the offset to the index.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000931 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
932 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
933 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Chengeb0b4612006-03-31 01:27:51 +0000934 // Store the scalar value.
Evan Cheng8b2794a2006-10-13 21:14:26 +0000935 Ch = DAG.getStore(Ch, Tmp2, StackPtr2, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +0000936 // Load the updated vector.
Evan Cheng466685d2006-10-09 20:57:25 +0000937 Result = DAG.getLoad(VT, Ch, StackPtr, NULL, 0);
Chris Lattner2332b9f2006-03-19 01:17:20 +0000938 break;
939 }
940 }
941 break;
Chris Lattnerce872152006-03-19 06:31:19 +0000942 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +0000943 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
944 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
945 break;
946 }
947
Chris Lattnerce872152006-03-19 06:31:19 +0000948 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
949 Result = DAG.UpdateNodeOperands(Result, Tmp1);
950 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
951 Node->getValueType(0))) {
952 default: assert(0 && "This action is not supported yet!");
953 case TargetLowering::Legal:
954 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +0000955 case TargetLowering::Custom:
956 Tmp3 = TLI.LowerOperation(Result, DAG);
957 if (Tmp3.Val) {
958 Result = Tmp3;
959 break;
960 }
961 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +0000962 case TargetLowering::Expand:
963 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +0000964 break;
965 }
Chris Lattnerce872152006-03-19 06:31:19 +0000966 break;
Chris Lattner87100e02006-03-20 01:52:29 +0000967 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +0000968 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
969 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
970 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
971
972 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +0000973 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
974 default: assert(0 && "Unknown operation action!");
975 case TargetLowering::Legal:
976 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
977 "vector shuffle should not be created if not legal!");
978 break;
979 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +0000980 Tmp3 = TLI.LowerOperation(Result, DAG);
981 if (Tmp3.Val) {
982 Result = Tmp3;
983 break;
984 }
985 // FALLTHROUGH
986 case TargetLowering::Expand: {
987 MVT::ValueType VT = Node->getValueType(0);
988 MVT::ValueType EltVT = MVT::getVectorBaseType(VT);
989 MVT::ValueType PtrVT = TLI.getPointerTy();
990 SDOperand Mask = Node->getOperand(2);
991 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000992 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +0000993 for (unsigned i = 0; i != NumElems; ++i) {
994 SDOperand Arg = Mask.getOperand(i);
995 if (Arg.getOpcode() == ISD::UNDEF) {
996 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
997 } else {
998 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
999 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1000 if (Idx < NumElems)
1001 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1002 DAG.getConstant(Idx, PtrVT)));
1003 else
1004 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1005 DAG.getConstant(Idx - NumElems, PtrVT)));
1006 }
1007 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001008 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001009 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001010 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001011 case TargetLowering::Promote: {
1012 // Change base type to a different vector type.
1013 MVT::ValueType OVT = Node->getValueType(0);
1014 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1015
1016 // Cast the two input vectors.
1017 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1018 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1019
1020 // Convert the shuffle mask to the right # elements.
1021 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1022 assert(Tmp3.Val && "Shuffle not legal?");
1023 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1024 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1025 break;
1026 }
Chris Lattner87100e02006-03-20 01:52:29 +00001027 }
1028 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001029
1030 case ISD::EXTRACT_VECTOR_ELT:
1031 Tmp1 = LegalizeOp(Node->getOperand(0));
1032 Tmp2 = LegalizeOp(Node->getOperand(1));
1033 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattnere35c2182006-03-21 21:02:03 +00001034
1035 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT,
1036 Tmp1.getValueType())) {
1037 default: assert(0 && "This action is not supported yet!");
1038 case TargetLowering::Legal:
1039 break;
1040 case TargetLowering::Custom:
1041 Tmp3 = TLI.LowerOperation(Result, DAG);
1042 if (Tmp3.Val) {
1043 Result = Tmp3;
1044 break;
1045 }
1046 // FALLTHROUGH
Chris Lattner4aab2f42006-04-02 05:06:04 +00001047 case TargetLowering::Expand:
1048 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattnere35c2182006-03-21 21:02:03 +00001049 break;
1050 }
Chris Lattner384504c2006-03-21 20:44:12 +00001051 break;
1052
Chris Lattner15972212006-03-31 17:55:51 +00001053 case ISD::VEXTRACT_VECTOR_ELT:
1054 Result = LegalizeOp(LowerVEXTRACT_VECTOR_ELT(Op));
Chris Lattner384504c2006-03-21 20:44:12 +00001055 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001056
Chris Lattner6831a812006-02-13 09:18:02 +00001057 case ISD::CALLSEQ_START: {
1058 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1059
1060 // Recursively Legalize all of the inputs of the call end that do not lead
1061 // to this call start. This ensures that any libcalls that need be inserted
1062 // are inserted *before* the CALLSEQ_START.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001063 {std::set<SDNode*> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001064 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001065 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1066 NodesLeadingTo);
1067 }
Chris Lattner6831a812006-02-13 09:18:02 +00001068
1069 // Now that we legalized all of the inputs (which may have inserted
1070 // libcalls) create the new CALLSEQ_START node.
1071 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1072
1073 // Merge in the last call, to ensure that this call start after the last
1074 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001075 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001076 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1077 Tmp1 = LegalizeOp(Tmp1);
1078 }
Chris Lattner6831a812006-02-13 09:18:02 +00001079
1080 // Do not try to legalize the target-specific arguments (#1+).
1081 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001082 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001083 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001084 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001085 }
1086
1087 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001088 AddLegalizedOperand(Op.getValue(0), Result);
1089 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1090 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1091
Chris Lattner6831a812006-02-13 09:18:02 +00001092 // Now that the callseq_start and all of the non-call nodes above this call
1093 // sequence have been legalized, legalize the call itself. During this
1094 // process, no libcalls can/will be inserted, guaranteeing that no calls
1095 // can overlap.
1096 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1097 SDOperand InCallSEQ = LastCALLSEQ_END;
1098 // Note that we are selecting this call!
1099 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1100 IsLegalizingCall = true;
1101
1102 // Legalize the call, starting from the CALLSEQ_END.
1103 LegalizeOp(LastCALLSEQ_END);
1104 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1105 return Result;
1106 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001107 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001108 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1109 // will cause this node to be legalized as well as handling libcalls right.
1110 if (LastCALLSEQ_END.Val != Node) {
1111 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
1112 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
1113 assert(I != LegalizedNodes.end() &&
1114 "Legalizing the call start should have legalized this node!");
1115 return I->second;
1116 }
1117
1118 // Otherwise, the call start has been legalized and everything is going
1119 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001120 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001121 // Do not try to legalize the target-specific arguments (#1+), except for
1122 // an optional flag input.
1123 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1124 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001125 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001126 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001127 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001128 }
1129 } else {
1130 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1131 if (Tmp1 != Node->getOperand(0) ||
1132 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001133 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001134 Ops[0] = Tmp1;
1135 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001136 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001137 }
Chris Lattner6a542892006-01-24 05:48:21 +00001138 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001139 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001140 // This finishes up call legalization.
1141 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001142
1143 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1144 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1145 if (Node->getNumValues() == 2)
1146 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1147 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001148 case ISD::DYNAMIC_STACKALLOC: {
Chris Lattnerfa404e82005-01-09 19:03:49 +00001149 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1150 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1151 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001152 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001153
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001154 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001155 Tmp2 = Result.getValue(1);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001156 switch (TLI.getOperationAction(Node->getOpcode(),
1157 Node->getValueType(0))) {
1158 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001159 case TargetLowering::Expand: {
1160 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1161 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1162 " not tell us which reg is the stack pointer!");
1163 SDOperand Chain = Tmp1.getOperand(0);
1164 SDOperand Size = Tmp2.getOperand(1);
1165 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
1166 Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size); // Value
1167 Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1); // Output chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001168 Tmp1 = LegalizeOp(Tmp1);
1169 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001170 break;
1171 }
1172 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001173 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1174 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001175 Tmp1 = LegalizeOp(Tmp3);
1176 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001177 }
Chris Lattner903d2782006-01-15 08:54:32 +00001178 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001179 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001180 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001181 }
Chris Lattner903d2782006-01-15 08:54:32 +00001182 // Since this op produce two values, make sure to remember that we
1183 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001184 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1185 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001186 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001187 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001188 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001189 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001190 bool Changed = false;
1191 // Legalize all of the operands of the inline asm, in case they are nodes
1192 // that need to be expanded or something. Note we skip the asm string and
1193 // all of the TargetConstant flags.
1194 SDOperand Op = LegalizeOp(Ops[0]);
1195 Changed = Op != Ops[0];
1196 Ops[0] = Op;
1197
1198 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1199 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1200 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1201 for (++i; NumVals; ++i, --NumVals) {
1202 SDOperand Op = LegalizeOp(Ops[i]);
1203 if (Op != Ops[i]) {
1204 Changed = true;
1205 Ops[i] = Op;
1206 }
1207 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001208 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001209
1210 if (HasInFlag) {
1211 Op = LegalizeOp(Ops.back());
1212 Changed |= Op != Ops.back();
1213 Ops.back() = Op;
1214 }
1215
1216 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001217 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001218
1219 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001220 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001221 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1222 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001223 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001224 case ISD::BR:
1225 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001226 // Ensure that libcalls are emitted before a branch.
1227 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1228 Tmp1 = LegalizeOp(Tmp1);
1229 LastCALLSEQ_END = DAG.getEntryNode();
1230
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001231 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001232 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001233 case ISD::BRIND:
1234 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1235 // Ensure that libcalls are emitted before a branch.
1236 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1237 Tmp1 = LegalizeOp(Tmp1);
1238 LastCALLSEQ_END = DAG.getEntryNode();
1239
1240 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1241 default: assert(0 && "Indirect target must be legal type (pointer)!");
1242 case Legal:
1243 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1244 break;
1245 }
1246 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1247 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001248 case ISD::BR_JT:
1249 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1250 // Ensure that libcalls are emitted before a branch.
1251 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1252 Tmp1 = LegalizeOp(Tmp1);
1253 LastCALLSEQ_END = DAG.getEntryNode();
1254
1255 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1256 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1257
1258 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1259 default: assert(0 && "This action is not supported yet!");
1260 case TargetLowering::Legal: break;
1261 case TargetLowering::Custom:
1262 Tmp1 = TLI.LowerOperation(Result, DAG);
1263 if (Tmp1.Val) Result = Tmp1;
1264 break;
1265 case TargetLowering::Expand: {
1266 SDOperand Chain = Result.getOperand(0);
1267 SDOperand Table = Result.getOperand(1);
1268 SDOperand Index = Result.getOperand(2);
1269
1270 MVT::ValueType PTy = TLI.getPointerTy();
1271 bool isPIC = TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_;
1272 // PIC jump table entries are 32-bit values.
1273 unsigned EntrySize = isPIC ? 4 : MVT::getSizeInBits(PTy)/8;
1274 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1275 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
1276 SDOperand LD = DAG.getLoad(isPIC ? MVT::i32 : PTy, Chain, Addr, NULL, 0);
1277 if (isPIC) {
1278 // For PIC, the sequence is:
1279 // BRIND(load(Jumptable + index) + RelocBase)
1280 // RelocBase is the JumpTable on PPC and X86, GOT on Alpha
1281 SDOperand Reloc;
1282 if (TLI.usesGlobalOffsetTable())
1283 Reloc = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, PTy);
1284 else
1285 Reloc = Table;
Evan Chengd0631892006-10-31 02:31:00 +00001286 Addr = (PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001287 Addr = DAG.getNode(ISD::ADD, PTy, Addr, Reloc);
1288 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
1289 } else {
1290 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD);
1291 }
1292 }
1293 }
1294 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001295 case ISD::BRCOND:
1296 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001297 // Ensure that libcalls are emitted before a return.
1298 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1299 Tmp1 = LegalizeOp(Tmp1);
1300 LastCALLSEQ_END = DAG.getEntryNode();
1301
Chris Lattner47e92232005-01-18 19:27:06 +00001302 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1303 case Expand: assert(0 && "It's impossible to expand bools");
1304 case Legal:
1305 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1306 break;
1307 case Promote:
1308 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001309
1310 // The top bits of the promoted condition are not necessarily zero, ensure
1311 // that the value is properly zero extended.
1312 if (!TLI.MaskedValueIsZero(Tmp2,
1313 MVT::getIntVTBitMask(Tmp2.getValueType())^1))
1314 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001315 break;
1316 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001317
1318 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001319 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001320
1321 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1322 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001323 case TargetLowering::Legal: break;
1324 case TargetLowering::Custom:
1325 Tmp1 = TLI.LowerOperation(Result, DAG);
1326 if (Tmp1.Val) Result = Tmp1;
1327 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001328 case TargetLowering::Expand:
1329 // Expand brcond's setcc into its constituent parts and create a BR_CC
1330 // Node.
1331 if (Tmp2.getOpcode() == ISD::SETCC) {
1332 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1333 Tmp2.getOperand(0), Tmp2.getOperand(1),
1334 Node->getOperand(2));
1335 } else {
1336 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1337 DAG.getCondCode(ISD::SETNE), Tmp2,
1338 DAG.getConstant(0, Tmp2.getValueType()),
1339 Node->getOperand(2));
1340 }
1341 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001342 }
1343 break;
1344 case ISD::BR_CC:
1345 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001346 // Ensure that libcalls are emitted before a branch.
1347 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1348 Tmp1 = LegalizeOp(Tmp1);
1349 LastCALLSEQ_END = DAG.getEntryNode();
1350
Nate Begeman750ac1b2006-02-01 07:19:44 +00001351 Tmp2 = Node->getOperand(2); // LHS
1352 Tmp3 = Node->getOperand(3); // RHS
1353 Tmp4 = Node->getOperand(1); // CC
1354
1355 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1356
1357 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1358 // the LHS is a legal SETCC itself. In this case, we need to compare
1359 // the result against zero to select between true and false values.
1360 if (Tmp3.Val == 0) {
1361 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1362 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001363 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001364
1365 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1366 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001367
Chris Lattner181b7a32005-12-17 23:46:46 +00001368 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1369 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001370 case TargetLowering::Legal: break;
1371 case TargetLowering::Custom:
1372 Tmp4 = TLI.LowerOperation(Result, DAG);
1373 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001374 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001375 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001376 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001377 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001378 LoadSDNode *LD = cast<LoadSDNode>(Node);
1379 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1380 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001381
Evan Cheng466685d2006-10-09 20:57:25 +00001382 ISD::LoadExtType ExtType = LD->getExtensionType();
1383 if (ExtType == ISD::NON_EXTLOAD) {
1384 MVT::ValueType VT = Node->getValueType(0);
1385 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1386 Tmp3 = Result.getValue(0);
1387 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001388
Evan Cheng466685d2006-10-09 20:57:25 +00001389 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1390 default: assert(0 && "This action is not supported yet!");
1391 case TargetLowering::Legal: break;
1392 case TargetLowering::Custom:
1393 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1394 if (Tmp1.Val) {
1395 Tmp3 = LegalizeOp(Tmp1);
1396 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001397 }
Evan Cheng466685d2006-10-09 20:57:25 +00001398 break;
1399 case TargetLowering::Promote: {
1400 // Only promote a load of vector type to another.
1401 assert(MVT::isVector(VT) && "Cannot promote this load!");
1402 // Change base type to a different vector type.
1403 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1404
1405 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
1406 LD->getSrcValueOffset());
1407 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1408 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001409 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001410 }
Evan Cheng466685d2006-10-09 20:57:25 +00001411 }
1412 // Since loads produce two values, make sure to remember that we
1413 // legalized both of them.
1414 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1415 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1416 return Op.ResNo ? Tmp4 : Tmp3;
1417 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00001418 MVT::ValueType SrcVT = LD->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001419 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1420 default: assert(0 && "This action is not supported yet!");
1421 case TargetLowering::Promote:
1422 assert(SrcVT == MVT::i1 &&
1423 "Can only promote extending LOAD from i1 -> i8!");
1424 Result = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1425 LD->getSrcValue(), LD->getSrcValueOffset(),
1426 MVT::i8);
1427 Tmp1 = Result.getValue(0);
1428 Tmp2 = Result.getValue(1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001429 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001430 case TargetLowering::Custom:
1431 isCustom = true;
1432 // FALLTHROUGH
1433 case TargetLowering::Legal:
1434 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1435 Tmp1 = Result.getValue(0);
1436 Tmp2 = Result.getValue(1);
1437
1438 if (isCustom) {
1439 Tmp3 = TLI.LowerOperation(Result, DAG);
1440 if (Tmp3.Val) {
1441 Tmp1 = LegalizeOp(Tmp3);
1442 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1443 }
1444 }
1445 break;
1446 case TargetLowering::Expand:
1447 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
1448 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1449 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
1450 LD->getSrcValueOffset());
1451 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
1452 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1453 Tmp2 = LegalizeOp(Load.getValue(1));
1454 break;
1455 }
1456 assert(ExtType != ISD::EXTLOAD && "EXTLOAD should always be supported!");
1457 // Turn the unsupported load into an EXTLOAD followed by an explicit
1458 // zero/sign extend inreg.
1459 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1460 Tmp1, Tmp2, LD->getSrcValue(),
1461 LD->getSrcValueOffset(), SrcVT);
1462 SDOperand ValRes;
1463 if (ExtType == ISD::SEXTLOAD)
1464 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1465 Result, DAG.getValueType(SrcVT));
1466 else
1467 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
1468 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1469 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1470 break;
1471 }
1472 // Since loads produce two values, make sure to remember that we legalized
1473 // both of them.
1474 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1475 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1476 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00001477 }
Chris Lattner01ff7212005-04-10 22:54:25 +00001478 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001479 case ISD::EXTRACT_ELEMENT: {
1480 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1481 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001482 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00001483 case Legal:
1484 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1485 // 1 -> Hi
1486 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1487 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1488 TLI.getShiftAmountTy()));
1489 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1490 } else {
1491 // 0 -> Lo
1492 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1493 Node->getOperand(0));
1494 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001495 break;
1496 case Expand:
1497 // Get both the low and high parts.
1498 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1499 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1500 Result = Tmp2; // 1 -> Hi
1501 else
1502 Result = Tmp1; // 0 -> Lo
1503 break;
1504 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001505 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00001506 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001507
1508 case ISD::CopyToReg:
1509 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00001510
Chris Lattnerc9c60f62005-08-24 16:35:28 +00001511 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001512 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00001513 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001514 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001515 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001516 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001517 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001518 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001519 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001520 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001521 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1522 Tmp3);
1523 } else {
1524 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001525 }
1526
1527 // Since this produces two values, make sure to remember that we legalized
1528 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001529 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001530 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001531 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00001532 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001533 break;
1534
1535 case ISD::RET:
1536 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001537
1538 // Ensure that libcalls are emitted before a return.
1539 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1540 Tmp1 = LegalizeOp(Tmp1);
1541 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00001542
Chris Lattner3e928bb2005-01-07 07:47:09 +00001543 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00001544 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00001545 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001546 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00001547 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001548 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00001549 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001550 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00001551 case Expand:
1552 if (Tmp2.getValueType() != MVT::Vector) {
1553 SDOperand Lo, Hi;
1554 ExpandOp(Tmp2, Lo, Hi);
Evan Cheng13acce32006-12-11 19:27:14 +00001555 if (Hi.Val)
1556 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
1557 else
1558 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00001559 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001560 } else {
1561 SDNode *InVal = Tmp2.Val;
1562 unsigned NumElems =
1563 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1564 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1565
1566 // Figure out if there is a Packed type corresponding to this Vector
1567 // type. If so, convert to the packed type.
1568 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1569 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1570 // Turn this into a return of the packed type.
1571 Tmp2 = PackVectorOp(Tmp2, TVT);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001572 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001573 } else if (NumElems == 1) {
1574 // Turn this into a return of the scalar type.
1575 Tmp2 = PackVectorOp(Tmp2, EVT);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001576 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001577
1578 // FIXME: Returns of gcc generic vectors smaller than a legal type
1579 // should be returned in integer registers!
1580
Chris Lattnerf87324e2006-04-11 01:31:51 +00001581 // The scalarized value type may not be legal, e.g. it might require
1582 // promotion or expansion. Relegalize the return.
1583 Result = LegalizeOp(Result);
1584 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001585 // FIXME: Returns of gcc generic vectors larger than a legal vector
1586 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00001587 SDOperand Lo, Hi;
1588 SplitVectorOp(Tmp2, Lo, Hi);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001589 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001590 Result = LegalizeOp(Result);
1591 }
1592 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001593 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001594 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001595 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001596 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001597 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001598 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001599 }
1600 break;
1601 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001602 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001603 break;
1604 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001605 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001606 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001607 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00001608 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1609 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00001610 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001611 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001612 break;
1613 case Expand: {
1614 SDOperand Lo, Hi;
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001615 assert(Node->getOperand(i).getValueType() != MVT::Vector &&
1616 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001617 ExpandOp(Node->getOperand(i), Lo, Hi);
1618 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001619 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00001620 if (Hi.Val) {
1621 NewValues.push_back(Hi);
1622 NewValues.push_back(Node->getOperand(i+1));
1623 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001624 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001625 }
1626 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001627 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001628 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001629
1630 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001631 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001632 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001633 Result = DAG.getNode(ISD::RET, MVT::Other,
1634 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00001635 break;
1636 }
1637 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001638
Chris Lattner6862dbc2006-01-29 21:02:23 +00001639 if (Result.getOpcode() == ISD::RET) {
1640 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1641 default: assert(0 && "This action is not supported yet!");
1642 case TargetLowering::Legal: break;
1643 case TargetLowering::Custom:
1644 Tmp1 = TLI.LowerOperation(Result, DAG);
1645 if (Tmp1.Val) Result = Tmp1;
1646 break;
1647 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001648 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001649 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001650 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00001651 StoreSDNode *ST = cast<StoreSDNode>(Node);
1652 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
1653 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001654
Evan Cheng8b2794a2006-10-13 21:14:26 +00001655 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00001656 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
1657 // FIXME: We shouldn't do this for TargetConstantFP's.
1658 // FIXME: move this to the DAG Combiner! Note that we can't regress due
1659 // to phase ordering between legalized code and the dag combiner. This
1660 // probably means that we need to integrate dag combiner and legalizer
1661 // together.
1662 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
1663 if (CFP->getValueType(0) == MVT::f32) {
1664 Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
1665 } else {
1666 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
1667 Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
1668 }
1669 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1670 ST->getSrcValueOffset());
1671 break;
1672 }
1673
Evan Cheng8b2794a2006-10-13 21:14:26 +00001674 switch (getTypeAction(ST->getStoredVT())) {
1675 case Legal: {
1676 Tmp3 = LegalizeOp(ST->getValue());
1677 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1678 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001679
Evan Cheng8b2794a2006-10-13 21:14:26 +00001680 MVT::ValueType VT = Tmp3.getValueType();
1681 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1682 default: assert(0 && "This action is not supported yet!");
1683 case TargetLowering::Legal: break;
1684 case TargetLowering::Custom:
1685 Tmp1 = TLI.LowerOperation(Result, DAG);
1686 if (Tmp1.Val) Result = Tmp1;
1687 break;
1688 case TargetLowering::Promote:
1689 assert(MVT::isVector(VT) && "Unknown legal promote case!");
1690 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
1691 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
1692 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
1693 ST->getSrcValue(), ST->getSrcValueOffset());
1694 break;
1695 }
1696 break;
1697 }
1698 case Promote:
1699 // Truncate the value and store the result.
1700 Tmp3 = PromoteOp(ST->getValue());
1701 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1702 ST->getSrcValueOffset(), ST->getStoredVT());
1703 break;
1704
1705 case Expand:
1706 unsigned IncrementSize = 0;
1707 SDOperand Lo, Hi;
1708
1709 // If this is a vector type, then we have to calculate the increment as
1710 // the product of the element size in bytes, and the number of elements
1711 // in the high half of the vector.
1712 if (ST->getValue().getValueType() == MVT::Vector) {
1713 SDNode *InVal = ST->getValue().Val;
1714 unsigned NumElems =
1715 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1716 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1717
1718 // Figure out if there is a Packed type corresponding to this Vector
1719 // type. If so, convert to the packed type.
1720 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1721 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1722 // Turn this into a normal store of the packed type.
1723 Tmp3 = PackVectorOp(Node->getOperand(1), TVT);
1724 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1725 ST->getSrcValueOffset());
1726 Result = LegalizeOp(Result);
1727 break;
1728 } else if (NumElems == 1) {
1729 // Turn this into a normal store of the scalar type.
1730 Tmp3 = PackVectorOp(Node->getOperand(1), EVT);
1731 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1732 ST->getSrcValueOffset());
1733 // The scalarized value type may not be legal, e.g. it might require
1734 // promotion or expansion. Relegalize the scalar store.
1735 Result = LegalizeOp(Result);
1736 break;
1737 } else {
1738 SplitVectorOp(Node->getOperand(1), Lo, Hi);
1739 IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
1740 }
1741 } else {
1742 ExpandOp(Node->getOperand(1), Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00001743 IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00001744
1745 if (!TLI.isLittleEndian())
1746 std::swap(Lo, Hi);
1747 }
1748
1749 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
1750 ST->getSrcValueOffset());
Evan Cheng7b2b5c82006-12-12 19:53:13 +00001751
1752 if (Hi.Val == NULL) {
1753 // Must be int <-> float one-to-one expansion.
1754 Result = Lo;
1755 break;
1756 }
1757
Evan Cheng8b2794a2006-10-13 21:14:26 +00001758 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1759 getIntPtrConstant(IncrementSize));
1760 assert(isTypeLegal(Tmp2.getValueType()) &&
1761 "Pointers must be legal!");
1762 // FIXME: This sets the srcvalue of both halves to be the same, which is
1763 // wrong.
1764 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
1765 ST->getSrcValueOffset());
1766 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1767 break;
1768 }
1769 } else {
1770 // Truncating store
1771 assert(isTypeLegal(ST->getValue().getValueType()) &&
1772 "Cannot handle illegal TRUNCSTORE yet!");
1773 Tmp3 = LegalizeOp(ST->getValue());
1774
1775 // The only promote case we handle is TRUNCSTORE:i1 X into
1776 // -> TRUNCSTORE:i8 (and X, 1)
1777 if (ST->getStoredVT() == MVT::i1 &&
1778 TLI.getStoreXAction(MVT::i1) == TargetLowering::Promote) {
1779 // Promote the bool to a mask then store.
1780 Tmp3 = DAG.getNode(ISD::AND, Tmp3.getValueType(), Tmp3,
1781 DAG.getConstant(1, Tmp3.getValueType()));
1782 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1783 ST->getSrcValueOffset(), MVT::i8);
1784 } else if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
1785 Tmp2 != ST->getBasePtr()) {
1786 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1787 ST->getOffset());
1788 }
1789
1790 MVT::ValueType StVT = cast<StoreSDNode>(Result.Val)->getStoredVT();
1791 switch (TLI.getStoreXAction(StVT)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001792 default: assert(0 && "This action is not supported yet!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00001793 case TargetLowering::Legal: break;
Chris Lattner456a93a2006-01-28 07:39:30 +00001794 case TargetLowering::Custom:
1795 Tmp1 = TLI.LowerOperation(Result, DAG);
1796 if (Tmp1.Val) Result = Tmp1;
1797 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001798 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001799 }
1800 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001801 }
Andrew Lenharth95762122005-03-31 21:24:06 +00001802 case ISD::PCMARKER:
1803 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001804 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00001805 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001806 case ISD::STACKSAVE:
1807 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001808 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1809 Tmp1 = Result.getValue(0);
1810 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001811
Chris Lattner140d53c2006-01-13 02:50:02 +00001812 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1813 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001814 case TargetLowering::Legal: break;
1815 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001816 Tmp3 = TLI.LowerOperation(Result, DAG);
1817 if (Tmp3.Val) {
1818 Tmp1 = LegalizeOp(Tmp3);
1819 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00001820 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001821 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001822 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001823 // Expand to CopyFromReg if the target set
1824 // StackPointerRegisterToSaveRestore.
1825 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001826 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001827 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001828 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001829 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001830 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1831 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001832 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001833 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001834 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001835
1836 // Since stacksave produce two values, make sure to remember that we
1837 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001838 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1839 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1840 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00001841
Chris Lattner140d53c2006-01-13 02:50:02 +00001842 case ISD::STACKRESTORE:
1843 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1844 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001845 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00001846
1847 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1848 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001849 case TargetLowering::Legal: break;
1850 case TargetLowering::Custom:
1851 Tmp1 = TLI.LowerOperation(Result, DAG);
1852 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00001853 break;
1854 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001855 // Expand to CopyToReg if the target set
1856 // StackPointerRegisterToSaveRestore.
1857 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1858 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1859 } else {
1860 Result = Tmp1;
1861 }
Chris Lattner140d53c2006-01-13 02:50:02 +00001862 break;
1863 }
1864 break;
1865
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001866 case ISD::READCYCLECOUNTER:
1867 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001868 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00001869 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
1870 Node->getValueType(0))) {
1871 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00001872 case TargetLowering::Legal:
1873 Tmp1 = Result.getValue(0);
1874 Tmp2 = Result.getValue(1);
1875 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00001876 case TargetLowering::Custom:
1877 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00001878 Tmp1 = LegalizeOp(Result.getValue(0));
1879 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00001880 break;
1881 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00001882
1883 // Since rdcc produce two values, make sure to remember that we legalized
1884 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00001885 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1886 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001887 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00001888
Chris Lattner2ee743f2005-01-14 22:08:15 +00001889 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00001890 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1891 case Expand: assert(0 && "It's impossible to expand bools");
1892 case Legal:
1893 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1894 break;
1895 case Promote:
1896 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00001897 // Make sure the condition is either zero or one.
1898 if (!TLI.MaskedValueIsZero(Tmp1,
1899 MVT::getIntVTBitMask(Tmp1.getValueType())^1))
1900 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001901 break;
1902 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001903 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00001904 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001905
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001906 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00001907
Nate Begemanb942a3d2005-08-23 04:29:48 +00001908 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001909 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001910 case TargetLowering::Legal: break;
1911 case TargetLowering::Custom: {
1912 Tmp1 = TLI.LowerOperation(Result, DAG);
1913 if (Tmp1.Val) Result = Tmp1;
1914 break;
1915 }
Nate Begeman9373a812005-08-10 20:51:12 +00001916 case TargetLowering::Expand:
1917 if (Tmp1.getOpcode() == ISD::SETCC) {
1918 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
1919 Tmp2, Tmp3,
1920 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1921 } else {
1922 Result = DAG.getSelectCC(Tmp1,
1923 DAG.getConstant(0, Tmp1.getValueType()),
1924 Tmp2, Tmp3, ISD::SETNE);
1925 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001926 break;
1927 case TargetLowering::Promote: {
1928 MVT::ValueType NVT =
1929 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1930 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001931 if (MVT::isVector(Tmp2.getValueType())) {
1932 ExtOp = ISD::BIT_CONVERT;
1933 TruncOp = ISD::BIT_CONVERT;
1934 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001935 ExtOp = ISD::ANY_EXTEND;
1936 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001937 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00001938 ExtOp = ISD::FP_EXTEND;
1939 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001940 }
1941 // Promote each of the values to the new type.
1942 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
1943 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
1944 // Perform the larger operation, then round down.
1945 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
1946 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
1947 break;
1948 }
1949 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001950 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00001951 case ISD::SELECT_CC: {
1952 Tmp1 = Node->getOperand(0); // LHS
1953 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00001954 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
1955 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00001956 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00001957
Nate Begeman750ac1b2006-02-01 07:19:44 +00001958 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
1959
1960 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1961 // the LHS is a legal SETCC itself. In this case, we need to compare
1962 // the result against zero to select between true and false values.
1963 if (Tmp2.Val == 0) {
1964 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
1965 CC = DAG.getCondCode(ISD::SETNE);
1966 }
1967 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
1968
1969 // Everything is legal, see if we should expand this op or something.
1970 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
1971 default: assert(0 && "This action is not supported yet!");
1972 case TargetLowering::Legal: break;
1973 case TargetLowering::Custom:
1974 Tmp1 = TLI.LowerOperation(Result, DAG);
1975 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00001976 break;
Nate Begeman9373a812005-08-10 20:51:12 +00001977 }
1978 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00001979 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001980 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00001981 Tmp1 = Node->getOperand(0);
1982 Tmp2 = Node->getOperand(1);
1983 Tmp3 = Node->getOperand(2);
1984 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
1985
1986 // If we had to Expand the SetCC operands into a SELECT node, then it may
1987 // not always be possible to return a true LHS & RHS. In this case, just
1988 // return the value we legalized, returned in the LHS
1989 if (Tmp2.Val == 0) {
1990 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001991 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001992 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00001993
Chris Lattner73e142f2006-01-30 22:43:50 +00001994 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001995 default: assert(0 && "Cannot handle this action for SETCC yet!");
1996 case TargetLowering::Custom:
1997 isCustom = true;
1998 // FALLTHROUGH.
1999 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002000 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00002001 if (isCustom) {
2002 Tmp3 = TLI.LowerOperation(Result, DAG);
2003 if (Tmp3.Val) Result = Tmp3;
2004 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002005 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002006 case TargetLowering::Promote: {
2007 // First step, figure out the appropriate operation to use.
2008 // Allow SETCC to not be supported for all legal data types
2009 // Mostly this targets FP
2010 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
2011 MVT::ValueType OldVT = NewInTy;
2012
2013 // Scan for the appropriate larger type to use.
2014 while (1) {
2015 NewInTy = (MVT::ValueType)(NewInTy+1);
2016
2017 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2018 "Fell off of the edge of the integer world");
2019 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2020 "Fell off of the edge of the floating point world");
2021
2022 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002023 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002024 break;
2025 }
2026 if (MVT::isInteger(NewInTy))
2027 assert(0 && "Cannot promote Legal Integer SETCC yet");
2028 else {
2029 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2030 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2031 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002032 Tmp1 = LegalizeOp(Tmp1);
2033 Tmp2 = LegalizeOp(Tmp2);
2034 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Cheng433f8ac2006-01-17 19:47:13 +00002035 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002036 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002037 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002038 case TargetLowering::Expand:
2039 // Expand a setcc node into a select_cc of the same condition, lhs, and
2040 // rhs that selects between const 1 (true) and const 0 (false).
2041 MVT::ValueType VT = Node->getValueType(0);
2042 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2043 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
2044 Node->getOperand(2));
Nate Begemanb942a3d2005-08-23 04:29:48 +00002045 break;
2046 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002047 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002048 case ISD::MEMSET:
2049 case ISD::MEMCPY:
2050 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002051 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00002052 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
2053
2054 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
2055 switch (getTypeAction(Node->getOperand(2).getValueType())) {
2056 case Expand: assert(0 && "Cannot expand a byte!");
2057 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002058 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002059 break;
2060 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002061 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002062 break;
2063 }
2064 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002065 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00002066 }
Chris Lattner272455b2005-02-02 03:44:41 +00002067
2068 SDOperand Tmp4;
2069 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00002070 case Expand: {
2071 // Length is too big, just take the lo-part of the length.
2072 SDOperand HiPart;
Chris Lattnerfa9aa2b2006-11-07 04:11:44 +00002073 ExpandOp(Node->getOperand(3), Tmp4, HiPart);
Chris Lattner6814f152005-07-13 01:42:45 +00002074 break;
2075 }
Chris Lattnere5605212005-01-28 22:29:18 +00002076 case Legal:
2077 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00002078 break;
2079 case Promote:
2080 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00002081 break;
2082 }
2083
2084 SDOperand Tmp5;
2085 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2086 case Expand: assert(0 && "Cannot expand this yet!");
2087 case Legal:
2088 Tmp5 = LegalizeOp(Node->getOperand(4));
2089 break;
2090 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00002091 Tmp5 = PromoteOp(Node->getOperand(4));
2092 break;
2093 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002094
2095 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2096 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002097 case TargetLowering::Custom:
2098 isCustom = true;
2099 // FALLTHROUGH
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002100 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002101 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner456a93a2006-01-28 07:39:30 +00002102 if (isCustom) {
2103 Tmp1 = TLI.LowerOperation(Result, DAG);
2104 if (Tmp1.Val) Result = Tmp1;
2105 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002106 break;
2107 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00002108 // Otherwise, the target does not support this operation. Lower the
2109 // operation to an explicit libcall as appropriate.
2110 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00002111 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Chris Lattnere1bd8222005-01-11 05:57:22 +00002112 std::vector<std::pair<SDOperand, const Type*> > Args;
2113
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00002114 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002115 if (Node->getOpcode() == ISD::MEMSET) {
2116 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
Chris Lattnerdca7abe2006-02-20 06:38:35 +00002117 // Extend the (previously legalized) ubyte argument to be an int value
2118 // for the call.
2119 if (Tmp3.getValueType() > MVT::i32)
2120 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2121 else
2122 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002123 Args.push_back(std::make_pair(Tmp3, Type::IntTy));
2124 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2125
2126 FnName = "memset";
2127 } else if (Node->getOpcode() == ISD::MEMCPY ||
2128 Node->getOpcode() == ISD::MEMMOVE) {
2129 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
2130 Args.push_back(std::make_pair(Tmp3, IntPtrTy));
2131 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2132 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2133 } else {
2134 assert(0 && "Unknown op!");
2135 }
Chris Lattner45982da2005-05-12 16:53:42 +00002136
Chris Lattnere1bd8222005-01-11 05:57:22 +00002137 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattneradf6a962005-05-13 18:50:42 +00002138 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00002139 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00002140 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002141 break;
2142 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00002143 }
2144 break;
2145 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002146
Chris Lattner5b359c62005-04-02 04:00:59 +00002147 case ISD::SHL_PARTS:
2148 case ISD::SRA_PARTS:
2149 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002150 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002151 bool Changed = false;
2152 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2153 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2154 Changed |= Ops.back() != Node->getOperand(i);
2155 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002156 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002157 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002158
Evan Cheng05a2d562006-01-09 18:31:59 +00002159 switch (TLI.getOperationAction(Node->getOpcode(),
2160 Node->getValueType(0))) {
2161 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002162 case TargetLowering::Legal: break;
2163 case TargetLowering::Custom:
2164 Tmp1 = TLI.LowerOperation(Result, DAG);
2165 if (Tmp1.Val) {
2166 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002167 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002168 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002169 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2170 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002171 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002172 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002173 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002174 return RetVal;
2175 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002176 break;
2177 }
2178
Chris Lattner2c8086f2005-04-02 05:00:07 +00002179 // Since these produce multiple values, make sure to remember that we
2180 // legalized all of them.
2181 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2182 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2183 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002184 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002185
2186 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002187 case ISD::ADD:
2188 case ISD::SUB:
2189 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002190 case ISD::MULHS:
2191 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002192 case ISD::UDIV:
2193 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002194 case ISD::AND:
2195 case ISD::OR:
2196 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002197 case ISD::SHL:
2198 case ISD::SRL:
2199 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002200 case ISD::FADD:
2201 case ISD::FSUB:
2202 case ISD::FMUL:
2203 case ISD::FDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002204 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002205 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2206 case Expand: assert(0 && "Not possible");
2207 case Legal:
2208 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2209 break;
2210 case Promote:
2211 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2212 break;
2213 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002214
2215 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002216
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002217 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002218 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002219 case TargetLowering::Legal: break;
2220 case TargetLowering::Custom:
2221 Tmp1 = TLI.LowerOperation(Result, DAG);
2222 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002223 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002224 case TargetLowering::Expand: {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002225 if (Node->getValueType(0) == MVT::i32) {
2226 switch (Node->getOpcode()) {
2227 default: assert(0 && "Do not know how to expand this integer BinOp!");
2228 case ISD::UDIV:
2229 case ISD::SDIV:
2230 const char *FnName = Node->getOpcode() == ISD::UDIV
2231 ? "__udivsi3" : "__divsi3";
2232 SDOperand Dummy;
2233 Result = ExpandLibCall(FnName, Node, Dummy);
2234 };
2235 break;
2236 }
2237
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002238 assert(MVT::isVector(Node->getValueType(0)) &&
2239 "Cannot expand this binary operator!");
2240 // Expand the operation into a bunch of nasty scalar code.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002241 SmallVector<SDOperand, 8> Ops;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002242 MVT::ValueType EltVT = MVT::getVectorBaseType(Node->getValueType(0));
2243 MVT::ValueType PtrVT = TLI.getPointerTy();
2244 for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2245 i != e; ++i) {
2246 SDOperand Idx = DAG.getConstant(i, PtrVT);
2247 SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2248 SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2249 Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2250 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002251 Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0),
2252 &Ops[0], Ops.size());
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002253 break;
2254 }
Evan Chengcc987612006-04-12 21:20:24 +00002255 case TargetLowering::Promote: {
2256 switch (Node->getOpcode()) {
2257 default: assert(0 && "Do not know how to promote this BinOp!");
2258 case ISD::AND:
2259 case ISD::OR:
2260 case ISD::XOR: {
2261 MVT::ValueType OVT = Node->getValueType(0);
2262 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2263 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2264 // Bit convert each of the values to the new type.
2265 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2266 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2267 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2268 // Bit convert the result back the original type.
2269 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2270 break;
2271 }
2272 }
2273 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002274 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002275 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002276
2277 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2278 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2279 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2280 case Expand: assert(0 && "Not possible");
2281 case Legal:
2282 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2283 break;
2284 case Promote:
2285 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2286 break;
2287 }
2288
2289 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2290
2291 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2292 default: assert(0 && "Operation not supported");
2293 case TargetLowering::Custom:
2294 Tmp1 = TLI.LowerOperation(Result, DAG);
2295 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00002296 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002297 case TargetLowering::Legal: break;
2298 case TargetLowering::Expand:
Chris Lattner8f4191d2006-03-13 06:08:38 +00002299 // If this target supports fabs/fneg natively, do this efficiently.
2300 if (TLI.isOperationLegal(ISD::FABS, Tmp1.getValueType()) &&
2301 TLI.isOperationLegal(ISD::FNEG, Tmp1.getValueType())) {
2302 // Get the sign bit of the RHS.
2303 MVT::ValueType IVT =
2304 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2305 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2306 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2307 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2308 // Get the absolute value of the result.
2309 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2310 // Select between the nabs and abs value based on the sign bit of
2311 // the input.
2312 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2313 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2314 AbsVal),
2315 AbsVal);
2316 Result = LegalizeOp(Result);
2317 break;
2318 }
2319
2320 // Otherwise, do bitwise ops!
2321
2322 // copysign -> copysignf/copysign libcall.
Chris Lattnera09f8482006-03-05 05:09:38 +00002323 const char *FnName;
2324 if (Node->getValueType(0) == MVT::f32) {
2325 FnName = "copysignf";
2326 if (Tmp2.getValueType() != MVT::f32) // Force operands to match type.
2327 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2328 DAG.getNode(ISD::FP_ROUND, MVT::f32, Tmp2));
2329 } else {
2330 FnName = "copysign";
2331 if (Tmp2.getValueType() != MVT::f64) // Force operands to match type.
2332 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2333 DAG.getNode(ISD::FP_EXTEND, MVT::f64, Tmp2));
2334 }
2335 SDOperand Dummy;
2336 Result = ExpandLibCall(FnName, Node, Dummy);
2337 break;
2338 }
2339 break;
2340
Nate Begeman551bf3f2006-02-17 05:43:56 +00002341 case ISD::ADDC:
2342 case ISD::SUBC:
2343 Tmp1 = LegalizeOp(Node->getOperand(0));
2344 Tmp2 = LegalizeOp(Node->getOperand(1));
2345 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2346 // Since this produces two values, make sure to remember that we legalized
2347 // both of them.
2348 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2349 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2350 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002351
Nate Begeman551bf3f2006-02-17 05:43:56 +00002352 case ISD::ADDE:
2353 case ISD::SUBE:
2354 Tmp1 = LegalizeOp(Node->getOperand(0));
2355 Tmp2 = LegalizeOp(Node->getOperand(1));
2356 Tmp3 = LegalizeOp(Node->getOperand(2));
2357 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2358 // Since this produces two values, make sure to remember that we legalized
2359 // both of them.
2360 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2361 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2362 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002363
Nate Begeman419f8b62005-10-18 00:27:41 +00002364 case ISD::BUILD_PAIR: {
2365 MVT::ValueType PairTy = Node->getValueType(0);
2366 // TODO: handle the case where the Lo and Hi operands are not of legal type
2367 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2368 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2369 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002370 case TargetLowering::Promote:
2371 case TargetLowering::Custom:
2372 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00002373 case TargetLowering::Legal:
2374 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2375 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2376 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00002377 case TargetLowering::Expand:
2378 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2379 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2380 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2381 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2382 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00002383 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00002384 break;
2385 }
2386 break;
2387 }
2388
Nate Begemanc105e192005-04-06 00:23:54 +00002389 case ISD::UREM:
2390 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002391 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00002392 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2393 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002394
Nate Begemanc105e192005-04-06 00:23:54 +00002395 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002396 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2397 case TargetLowering::Custom:
2398 isCustom = true;
2399 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00002400 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002401 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002402 if (isCustom) {
2403 Tmp1 = TLI.LowerOperation(Result, DAG);
2404 if (Tmp1.Val) Result = Tmp1;
2405 }
Nate Begemanc105e192005-04-06 00:23:54 +00002406 break;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002407 case TargetLowering::Expand:
Evan Cheng6b5578f2006-09-18 23:28:33 +00002408 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002409 if (MVT::isInteger(Node->getValueType(0))) {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002410 if (TLI.getOperationAction(DivOpc, Node->getValueType(0)) ==
2411 TargetLowering::Legal) {
2412 // X % Y -> X-X/Y*Y
2413 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng6b5578f2006-09-18 23:28:33 +00002414 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002415 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2416 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2417 } else {
2418 assert(Node->getValueType(0) == MVT::i32 &&
2419 "Cannot expand this binary operator!");
2420 const char *FnName = Node->getOpcode() == ISD::UREM
2421 ? "__umodsi3" : "__modsi3";
2422 SDOperand Dummy;
2423 Result = ExpandLibCall(FnName, Node, Dummy);
2424 }
Chris Lattner4c64dd72005-08-03 20:31:37 +00002425 } else {
2426 // Floating point mod -> fmod libcall.
2427 const char *FnName = Node->getValueType(0) == MVT::f32 ? "fmodf":"fmod";
2428 SDOperand Dummy;
Chris Lattner9c6b4b82006-01-28 04:28:26 +00002429 Result = ExpandLibCall(FnName, Node, Dummy);
Nate Begemanc105e192005-04-06 00:23:54 +00002430 }
2431 break;
2432 }
2433 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00002434 case ISD::VAARG: {
2435 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2436 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2437
Chris Lattner5c62f332006-01-28 07:42:08 +00002438 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00002439 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2440 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002441 case TargetLowering::Custom:
2442 isCustom = true;
2443 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002444 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002445 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2446 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002447 Tmp1 = Result.getValue(1);
2448
2449 if (isCustom) {
2450 Tmp2 = TLI.LowerOperation(Result, DAG);
2451 if (Tmp2.Val) {
2452 Result = LegalizeOp(Tmp2);
2453 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2454 }
2455 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002456 break;
2457 case TargetLowering::Expand: {
Evan Cheng466685d2006-10-09 20:57:25 +00002458 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00002459 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00002460 SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002461 // Increment the pointer, VAList, to the next vaarg
2462 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2463 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2464 TLI.getPointerTy()));
2465 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00002466 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
2467 SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002468 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00002469 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002470 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00002471 Result = LegalizeOp(Result);
2472 break;
2473 }
2474 }
2475 // Since VAARG produces two values, make sure to remember that we
2476 // legalized both of them.
2477 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00002478 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2479 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00002480 }
2481
2482 case ISD::VACOPY:
2483 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2484 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2485 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
2486
2487 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2488 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002489 case TargetLowering::Custom:
2490 isCustom = true;
2491 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002492 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002493 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2494 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00002495 if (isCustom) {
2496 Tmp1 = TLI.LowerOperation(Result, DAG);
2497 if (Tmp1.Val) Result = Tmp1;
2498 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002499 break;
2500 case TargetLowering::Expand:
2501 // This defaults to loading a pointer from the input and storing it to the
2502 // output, returning the chain.
Evan Cheng466685d2006-10-09 20:57:25 +00002503 SrcValueSDNode *SVD = cast<SrcValueSDNode>(Node->getOperand(3));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002504 SrcValueSDNode *SVS = cast<SrcValueSDNode>(Node->getOperand(4));
Evan Cheng466685d2006-10-09 20:57:25 +00002505 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, SVD->getValue(),
2506 SVD->getOffset());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002507 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, SVS->getValue(),
2508 SVS->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002509 break;
2510 }
2511 break;
2512
2513 case ISD::VAEND:
2514 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2515 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2516
2517 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2518 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002519 case TargetLowering::Custom:
2520 isCustom = true;
2521 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002522 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002523 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00002524 if (isCustom) {
2525 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2526 if (Tmp1.Val) Result = Tmp1;
2527 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002528 break;
2529 case TargetLowering::Expand:
2530 Result = Tmp1; // Default to a no-op, return the chain
2531 break;
2532 }
2533 break;
2534
2535 case ISD::VASTART:
2536 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2537 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2538
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002539 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2540
Nate Begemanacc398c2006-01-25 18:21:52 +00002541 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2542 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002543 case TargetLowering::Legal: break;
2544 case TargetLowering::Custom:
2545 Tmp1 = TLI.LowerOperation(Result, DAG);
2546 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00002547 break;
2548 }
2549 break;
2550
Nate Begeman35ef9132006-01-11 21:21:00 +00002551 case ISD::ROTL:
2552 case ISD::ROTR:
2553 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2554 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002555
2556 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
2557 "Cannot handle this yet!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002558 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Nate Begeman35ef9132006-01-11 21:21:00 +00002559 break;
2560
Nate Begemand88fc032006-01-14 03:14:10 +00002561 case ISD::BSWAP:
2562 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2563 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002564 case TargetLowering::Custom:
2565 assert(0 && "Cannot custom legalize this yet!");
2566 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002567 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002568 break;
2569 case TargetLowering::Promote: {
2570 MVT::ValueType OVT = Tmp1.getValueType();
2571 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2572 unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00002573
Chris Lattner456a93a2006-01-28 07:39:30 +00002574 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2575 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2576 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2577 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2578 break;
2579 }
2580 case TargetLowering::Expand:
2581 Result = ExpandBSWAP(Tmp1);
2582 break;
Nate Begemand88fc032006-01-14 03:14:10 +00002583 }
2584 break;
2585
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002586 case ISD::CTPOP:
2587 case ISD::CTTZ:
2588 case ISD::CTLZ:
2589 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2590 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002591 case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002592 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002593 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002594 break;
2595 case TargetLowering::Promote: {
2596 MVT::ValueType OVT = Tmp1.getValueType();
2597 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00002598
2599 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002600 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2601 // Perform the larger operation, then subtract if needed.
2602 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002603 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002604 case ISD::CTPOP:
2605 Result = Tmp1;
2606 break;
2607 case ISD::CTTZ:
2608 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002609 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2610 DAG.getConstant(getSizeInBits(NVT), NVT),
2611 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00002612 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002613 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2614 break;
2615 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00002616 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00002617 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2618 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002619 getSizeInBits(OVT), NVT));
2620 break;
2621 }
2622 break;
2623 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002624 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002625 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002626 break;
2627 }
2628 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00002629
Chris Lattner2c8086f2005-04-02 05:00:07 +00002630 // Unary operators
2631 case ISD::FABS:
2632 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00002633 case ISD::FSQRT:
2634 case ISD::FSIN:
2635 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002636 Tmp1 = LegalizeOp(Node->getOperand(0));
2637 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002638 case TargetLowering::Promote:
2639 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00002640 isCustom = true;
2641 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00002642 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002643 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00002644 if (isCustom) {
2645 Tmp1 = TLI.LowerOperation(Result, DAG);
2646 if (Tmp1.Val) Result = Tmp1;
2647 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002648 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00002649 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002650 switch (Node->getOpcode()) {
2651 default: assert(0 && "Unreachable!");
2652 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002653 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2654 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002655 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002656 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002657 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002658 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2659 MVT::ValueType VT = Node->getValueType(0);
2660 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002661 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002662 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2663 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002664 break;
2665 }
2666 case ISD::FSQRT:
2667 case ISD::FSIN:
2668 case ISD::FCOS: {
2669 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002670 const char *FnName = 0;
2671 switch(Node->getOpcode()) {
2672 case ISD::FSQRT: FnName = VT == MVT::f32 ? "sqrtf" : "sqrt"; break;
2673 case ISD::FSIN: FnName = VT == MVT::f32 ? "sinf" : "sin"; break;
2674 case ISD::FCOS: FnName = VT == MVT::f32 ? "cosf" : "cos"; break;
2675 default: assert(0 && "Unreachable!");
2676 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00002677 SDOperand Dummy;
Chris Lattner9c6b4b82006-01-28 04:28:26 +00002678 Result = ExpandLibCall(FnName, Node, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002679 break;
2680 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002681 }
2682 break;
2683 }
2684 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002685 case ISD::FPOWI: {
2686 // We always lower FPOWI into a libcall. No target support it yet.
2687 const char *FnName = Node->getValueType(0) == MVT::f32
2688 ? "__powisf2" : "__powidf2";
2689 SDOperand Dummy;
2690 Result = ExpandLibCall(FnName, Node, Dummy);
2691 break;
2692 }
Chris Lattner35481892005-12-23 00:16:34 +00002693 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00002694 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner35481892005-12-23 00:16:34 +00002695 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Chris Lattner67993f72006-01-23 07:30:46 +00002696 } else {
Chris Lattner35481892005-12-23 00:16:34 +00002697 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2698 Node->getOperand(0).getValueType())) {
2699 default: assert(0 && "Unknown operation action!");
2700 case TargetLowering::Expand:
2701 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2702 break;
2703 case TargetLowering::Legal:
2704 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002705 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00002706 break;
2707 }
2708 }
2709 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00002710 case ISD::VBIT_CONVERT: {
2711 assert(Op.getOperand(0).getValueType() == MVT::Vector &&
2712 "Can only have VBIT_CONVERT where input or output is MVT::Vector!");
2713
2714 // The input has to be a vector type, we have to either scalarize it, pack
2715 // it, or convert it based on whether the input vector type is legal.
2716 SDNode *InVal = Node->getOperand(0).Val;
2717 unsigned NumElems =
2718 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
2719 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
2720
2721 // Figure out if there is a Packed type corresponding to this Vector
2722 // type. If so, convert to the packed type.
2723 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
2724 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
2725 // Turn this into a bit convert of the packed input.
2726 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2727 PackVectorOp(Node->getOperand(0), TVT));
2728 break;
2729 } else if (NumElems == 1) {
2730 // Turn this into a bit convert of the scalar input.
2731 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2732 PackVectorOp(Node->getOperand(0), EVT));
2733 break;
2734 } else {
2735 // FIXME: UNIMP! Store then reload
2736 assert(0 && "Cast from unsupported vector type not implemented yet!");
2737 }
2738 }
2739
Chris Lattner2c8086f2005-04-02 05:00:07 +00002740 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00002741 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002742 case ISD::UINT_TO_FP: {
2743 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002744 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2745 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002746 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002747 Node->getOperand(0).getValueType())) {
2748 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002749 case TargetLowering::Custom:
2750 isCustom = true;
2751 // FALLTHROUGH
2752 case TargetLowering::Legal:
2753 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002754 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002755 if (isCustom) {
2756 Tmp1 = TLI.LowerOperation(Result, DAG);
2757 if (Tmp1.Val) Result = Tmp1;
2758 }
2759 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002760 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00002761 Result = ExpandLegalINT_TO_FP(isSigned,
2762 LegalizeOp(Node->getOperand(0)),
2763 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002764 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002765 case TargetLowering::Promote:
2766 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2767 Node->getValueType(0),
2768 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002769 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00002770 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002771 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00002772 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002773 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2774 Node->getValueType(0), Node->getOperand(0));
2775 break;
2776 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002777 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002778 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002779 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2780 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002781 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002782 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2783 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00002784 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002785 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2786 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002787 break;
2788 }
2789 break;
2790 }
2791 case ISD::TRUNCATE:
2792 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2793 case Legal:
2794 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002795 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002796 break;
2797 case Expand:
2798 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2799
2800 // Since the result is legal, we should just be able to truncate the low
2801 // part of the source.
2802 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2803 break;
2804 case Promote:
2805 Result = PromoteOp(Node->getOperand(0));
2806 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2807 break;
2808 }
2809 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002810
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002811 case ISD::FP_TO_SINT:
2812 case ISD::FP_TO_UINT:
2813 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2814 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00002815 Tmp1 = LegalizeOp(Node->getOperand(0));
2816
Chris Lattner1618beb2005-07-29 00:11:56 +00002817 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2818 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002819 case TargetLowering::Custom:
2820 isCustom = true;
2821 // FALLTHROUGH
2822 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002823 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002824 if (isCustom) {
2825 Tmp1 = TLI.LowerOperation(Result, DAG);
2826 if (Tmp1.Val) Result = Tmp1;
2827 }
2828 break;
2829 case TargetLowering::Promote:
2830 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2831 Node->getOpcode() == ISD::FP_TO_SINT);
2832 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00002833 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00002834 if (Node->getOpcode() == ISD::FP_TO_UINT) {
2835 SDOperand True, False;
2836 MVT::ValueType VT = Node->getOperand(0).getValueType();
2837 MVT::ValueType NVT = Node->getValueType(0);
2838 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2839 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2840 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2841 Node->getOperand(0), Tmp2, ISD::SETLT);
2842 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2843 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00002844 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00002845 Tmp2));
2846 False = DAG.getNode(ISD::XOR, NVT, False,
2847 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00002848 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2849 break;
Nate Begemand2558e32005-08-14 01:20:53 +00002850 } else {
2851 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2852 }
2853 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00002854 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002855 break;
2856 case Expand:
2857 assert(0 && "Shouldn't need to expand other operators here!");
2858 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002859 Tmp1 = PromoteOp(Node->getOperand(0));
2860 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2861 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002862 break;
2863 }
2864 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002865
Chris Lattner13c78e22005-09-02 00:18:10 +00002866 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002867 case ISD::ZERO_EXTEND:
2868 case ISD::SIGN_EXTEND:
2869 case ISD::FP_EXTEND:
2870 case ISD::FP_ROUND:
2871 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002872 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002873 case Legal:
2874 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002875 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002876 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002877 case Promote:
2878 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00002879 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002880 Tmp1 = PromoteOp(Node->getOperand(0));
2881 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00002882 break;
Chris Lattner1713e732005-01-16 00:38:00 +00002883 case ISD::ZERO_EXTEND:
2884 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002885 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00002886 Result = DAG.getZeroExtendInReg(Result,
2887 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00002888 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002889 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00002890 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002891 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00002892 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00002893 Result,
2894 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00002895 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002896 case ISD::FP_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00002897 Result = PromoteOp(Node->getOperand(0));
2898 if (Result.getValueType() != Op.getValueType())
2899 // Dynamically dead while we have only 2 FP types.
2900 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
2901 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002902 case ISD::FP_ROUND:
Chris Lattnerf8161d82005-01-16 05:06:12 +00002903 Result = PromoteOp(Node->getOperand(0));
2904 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
2905 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002906 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002907 }
2908 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00002909 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00002910 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00002911 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00002912 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00002913
2914 // If this operation is not supported, convert it to a shl/shr or load/store
2915 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002916 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
2917 default: assert(0 && "This action not supported for this op yet!");
2918 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002919 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002920 break;
2921 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00002922 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00002923 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00002924 // NOTE: we could fall back on load/store here too for targets without
2925 // SAR. However, it is doubtful that any exist.
2926 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
2927 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00002928 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00002929 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
2930 Node->getOperand(0), ShiftCst);
2931 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
2932 Result, ShiftCst);
2933 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00002934 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00002935 // EXTLOAD pair, targetting a temporary location (a stack slot).
2936
2937 // NOTE: there is a choice here between constantly creating new stack
2938 // slots and always reusing the same one. We currently always create
2939 // new ones, as reuse may inhibit scheduling.
2940 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Owen Andersona69571c2006-05-03 01:29:57 +00002941 unsigned TySize = (unsigned)TLI.getTargetData()->getTypeSize(Ty);
2942 unsigned Align = TLI.getTargetData()->getTypeAlignment(Ty);
Chris Lattner45b8caf2005-01-15 07:15:18 +00002943 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukmanedf128a2005-04-21 22:36:52 +00002944 int SSFI =
Chris Lattner45b8caf2005-01-15 07:15:18 +00002945 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
2946 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002947 Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
2948 StackSlot, NULL, 0, ExtraVT);
Chris Lattner5f056bf2005-07-10 01:55:33 +00002949 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
Evan Cheng466685d2006-10-09 20:57:25 +00002950 Result, StackSlot, NULL, 0, ExtraVT);
Chris Lattner45b8caf2005-01-15 07:15:18 +00002951 } else {
2952 assert(0 && "Unknown op");
2953 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002954 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00002955 }
Chris Lattner0f69b292005-01-15 06:18:18 +00002956 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002957 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00002958 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002959
Chris Lattner4ddd2832006-04-08 04:13:17 +00002960 assert(Result.getValueType() == Op.getValueType() &&
2961 "Bad legalization!");
2962
Chris Lattner456a93a2006-01-28 07:39:30 +00002963 // Make sure that the generated code is itself legal.
2964 if (Result != Op)
2965 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002966
Chris Lattner45982da2005-05-12 16:53:42 +00002967 // Note that LegalizeOp may be reentered even from single-use nodes, which
2968 // means that we always must cache transformed nodes.
2969 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002970 return Result;
2971}
2972
Chris Lattner8b6fa222005-01-15 22:16:26 +00002973/// PromoteOp - Given an operation that produces a value in an invalid type,
2974/// promote it to compute the value into a larger type. The produced value will
2975/// have the correct bits for the low portion of the register, but no guarantee
2976/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00002977SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
2978 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00002979 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00002980 assert(getTypeAction(VT) == Promote &&
2981 "Caller should expand or legalize operands that are not promotable!");
2982 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
2983 "Cannot promote to smaller type!");
2984
Chris Lattner03c85462005-01-15 05:21:40 +00002985 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00002986 SDOperand Result;
2987 SDNode *Node = Op.Val;
2988
Chris Lattner6fdcb252005-09-02 20:32:45 +00002989 std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
2990 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00002991
Chris Lattner03c85462005-01-15 05:21:40 +00002992 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002993 case ISD::CopyFromReg:
2994 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00002995 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00002996#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +00002997 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00002998#endif
Chris Lattner03c85462005-01-15 05:21:40 +00002999 assert(0 && "Do not know how to promote this operator!");
3000 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003001 case ISD::UNDEF:
3002 Result = DAG.getNode(ISD::UNDEF, NVT);
3003 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003004 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00003005 if (VT != MVT::i1)
3006 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
3007 else
3008 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00003009 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
3010 break;
3011 case ISD::ConstantFP:
3012 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
3013 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
3014 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00003015
Chris Lattner82fbfb62005-01-18 02:59:52 +00003016 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003017 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003018 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
3019 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00003020 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00003021
Chris Lattner03c85462005-01-15 05:21:40 +00003022 case ISD::TRUNCATE:
3023 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3024 case Legal:
3025 Result = LegalizeOp(Node->getOperand(0));
3026 assert(Result.getValueType() >= NVT &&
3027 "This truncation doesn't make sense!");
3028 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
3029 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
3030 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00003031 case Promote:
3032 // The truncation is not required, because we don't guarantee anything
3033 // about high bits anyway.
3034 Result = PromoteOp(Node->getOperand(0));
3035 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003036 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00003037 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3038 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00003039 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00003040 }
3041 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003042 case ISD::SIGN_EXTEND:
3043 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00003044 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003045 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3046 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
3047 case Legal:
3048 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00003049 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003050 break;
3051 case Promote:
3052 // Promote the reg if it's smaller.
3053 Result = PromoteOp(Node->getOperand(0));
3054 // The high bits are not guaranteed to be anything. Insert an extend.
3055 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00003056 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00003057 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00003058 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00003059 Result = DAG.getZeroExtendInReg(Result,
3060 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00003061 break;
3062 }
3063 break;
Chris Lattner35481892005-12-23 00:16:34 +00003064 case ISD::BIT_CONVERT:
3065 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3066 Result = PromoteOp(Result);
3067 break;
3068
Chris Lattner8b6fa222005-01-15 22:16:26 +00003069 case ISD::FP_EXTEND:
3070 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
3071 case ISD::FP_ROUND:
3072 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3073 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3074 case Promote: assert(0 && "Unreachable with 2 FP types!");
3075 case Legal:
3076 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner456a93a2006-01-28 07:39:30 +00003077 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner15e4b012005-07-10 00:07:11 +00003078 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003079 break;
3080 }
3081 break;
3082
3083 case ISD::SINT_TO_FP:
3084 case ISD::UINT_TO_FP:
3085 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3086 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00003087 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00003088 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003089 break;
3090
3091 case Promote:
3092 Result = PromoteOp(Node->getOperand(0));
3093 if (Node->getOpcode() == ISD::SINT_TO_FP)
3094 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003095 Result,
3096 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003097 else
Chris Lattner23993562005-04-13 02:38:47 +00003098 Result = DAG.getZeroExtendInReg(Result,
3099 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003100 // No extra round required here.
3101 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003102 break;
3103 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00003104 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3105 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00003106 // Round if we cannot tolerate excess precision.
3107 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003108 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3109 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00003110 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003111 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003112 break;
3113
Chris Lattner5e3c5b42005-12-09 17:32:47 +00003114 case ISD::SIGN_EXTEND_INREG:
3115 Result = PromoteOp(Node->getOperand(0));
3116 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3117 Node->getOperand(1));
3118 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003119 case ISD::FP_TO_SINT:
3120 case ISD::FP_TO_UINT:
3121 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3122 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00003123 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003124 break;
3125 case Promote:
3126 // The input result is prerounded, so we don't have to do anything
3127 // special.
3128 Tmp1 = PromoteOp(Node->getOperand(0));
3129 break;
3130 case Expand:
3131 assert(0 && "not implemented");
3132 }
Nate Begemand2558e32005-08-14 01:20:53 +00003133 // If we're promoting a UINT to a larger size, check to see if the new node
3134 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3135 // we can use that instead. This allows us to generate better code for
3136 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3137 // legal, such as PowerPC.
3138 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003139 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00003140 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3141 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00003142 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3143 } else {
3144 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3145 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003146 break;
3147
Chris Lattner2c8086f2005-04-02 05:00:07 +00003148 case ISD::FABS:
3149 case ISD::FNEG:
3150 Tmp1 = PromoteOp(Node->getOperand(0));
3151 assert(Tmp1.getValueType() == NVT);
3152 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3153 // NOTE: we do not have to do any extra rounding here for
3154 // NoExcessFPPrecision, because we know the input will have the appropriate
3155 // precision, and these operations don't modify precision at all.
3156 break;
3157
Chris Lattnerda6ba872005-04-28 21:44:33 +00003158 case ISD::FSQRT:
3159 case ISD::FSIN:
3160 case ISD::FCOS:
3161 Tmp1 = PromoteOp(Node->getOperand(0));
3162 assert(Tmp1.getValueType() == NVT);
3163 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003164 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003165 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3166 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00003167 break;
3168
Chris Lattner03c85462005-01-15 05:21:40 +00003169 case ISD::AND:
3170 case ISD::OR:
3171 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00003172 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003173 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00003174 case ISD::MUL:
3175 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00003176 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00003177 // that too is okay if they are integer operations.
3178 Tmp1 = PromoteOp(Node->getOperand(0));
3179 Tmp2 = PromoteOp(Node->getOperand(1));
3180 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3181 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00003182 break;
3183 case ISD::FADD:
3184 case ISD::FSUB:
3185 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00003186 Tmp1 = PromoteOp(Node->getOperand(0));
3187 Tmp2 = PromoteOp(Node->getOperand(1));
3188 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3189 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3190
3191 // Floating point operations will give excess precision that we may not be
3192 // able to tolerate. If we DO allow excess precision, just leave it,
3193 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00003194 // FIXME: Why would we need to round FP ops more than integer ones?
3195 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00003196 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003197 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3198 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00003199 break;
3200
Chris Lattner8b6fa222005-01-15 22:16:26 +00003201 case ISD::SDIV:
3202 case ISD::SREM:
3203 // These operators require that their input be sign extended.
3204 Tmp1 = PromoteOp(Node->getOperand(0));
3205 Tmp2 = PromoteOp(Node->getOperand(1));
3206 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00003207 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3208 DAG.getValueType(VT));
3209 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3210 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003211 }
3212 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3213
3214 // Perform FP_ROUND: this is probably overly pessimistic.
3215 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003216 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3217 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003218 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00003219 case ISD::FDIV:
3220 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00003221 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00003222 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00003223 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3224 case Legal:
3225 Tmp1 = LegalizeOp(Node->getOperand(0));
3226 break;
3227 case Promote:
3228 Tmp1 = PromoteOp(Node->getOperand(0));
3229 break;
3230 case Expand:
3231 assert(0 && "not implemented");
3232 }
3233 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3234 case Legal:
3235 Tmp2 = LegalizeOp(Node->getOperand(1));
3236 break;
3237 case Promote:
3238 Tmp2 = PromoteOp(Node->getOperand(1));
3239 break;
3240 case Expand:
3241 assert(0 && "not implemented");
3242 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003243 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3244
3245 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00003246 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00003247 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3248 DAG.getValueType(VT));
3249 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003250
3251 case ISD::UDIV:
3252 case ISD::UREM:
3253 // These operators require that their input be zero extended.
3254 Tmp1 = PromoteOp(Node->getOperand(0));
3255 Tmp2 = PromoteOp(Node->getOperand(1));
3256 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00003257 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3258 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003259 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3260 break;
3261
3262 case ISD::SHL:
3263 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003264 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003265 break;
3266 case ISD::SRA:
3267 // The input value must be properly sign extended.
3268 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003269 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3270 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003271 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003272 break;
3273 case ISD::SRL:
3274 // The input value must be properly zero extended.
3275 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00003276 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00003277 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003278 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00003279
3280 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00003281 Tmp1 = Node->getOperand(0); // Get the chain.
3282 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00003283 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3284 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3285 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3286 } else {
Evan Cheng466685d2006-10-09 20:57:25 +00003287 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begeman0aed7842006-01-28 03:14:31 +00003288 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00003289 SV->getValue(), SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003290 // Increment the pointer, VAList, to the next vaarg
3291 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3292 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3293 TLI.getPointerTy()));
3294 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00003295 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
3296 SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003297 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003298 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00003299 }
3300 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003301 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00003302 break;
3303
Evan Cheng466685d2006-10-09 20:57:25 +00003304 case ISD::LOAD: {
3305 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00003306 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
3307 ? ISD::EXTLOAD : LD->getExtensionType();
3308 Result = DAG.getExtLoad(ExtType, NVT,
3309 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00003310 LD->getSrcValue(), LD->getSrcValueOffset(),
Evan Cheng2e49f092006-10-11 07:10:22 +00003311 LD->getLoadedVT());
Chris Lattner03c85462005-01-15 05:21:40 +00003312 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003313 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00003314 break;
Evan Cheng466685d2006-10-09 20:57:25 +00003315 }
Chris Lattner03c85462005-01-15 05:21:40 +00003316 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00003317 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
3318 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00003319 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00003320 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003321 case ISD::SELECT_CC:
3322 Tmp2 = PromoteOp(Node->getOperand(2)); // True
3323 Tmp3 = PromoteOp(Node->getOperand(3)); // False
3324 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00003325 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00003326 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003327 case ISD::BSWAP:
3328 Tmp1 = Node->getOperand(0);
3329 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3330 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3331 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3332 DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
3333 TLI.getShiftAmountTy()));
3334 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003335 case ISD::CTPOP:
3336 case ISD::CTTZ:
3337 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003338 // Zero extend the argument
3339 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003340 // Perform the larger operation, then subtract if needed.
3341 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003342 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003343 case ISD::CTPOP:
3344 Result = Tmp1;
3345 break;
3346 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003347 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00003348 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003349 DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003350 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Chris Lattner456a93a2006-01-28 07:39:30 +00003351 DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003352 break;
3353 case ISD::CTLZ:
3354 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003355 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
3356 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003357 getSizeInBits(VT), NVT));
3358 break;
3359 }
3360 break;
Chris Lattner15972212006-03-31 17:55:51 +00003361 case ISD::VEXTRACT_VECTOR_ELT:
3362 Result = PromoteOp(LowerVEXTRACT_VECTOR_ELT(Op));
3363 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00003364 case ISD::EXTRACT_VECTOR_ELT:
3365 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3366 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003367 }
3368
3369 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003370
3371 // Make sure the result is itself legal.
3372 Result = LegalizeOp(Result);
3373
3374 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00003375 AddPromotedOperand(Op, Result);
3376 return Result;
3377}
Chris Lattner3e928bb2005-01-07 07:47:09 +00003378
Chris Lattner15972212006-03-31 17:55:51 +00003379/// LowerVEXTRACT_VECTOR_ELT - Lower a VEXTRACT_VECTOR_ELT operation into a
3380/// EXTRACT_VECTOR_ELT operation, to memory operations, or to scalar code based
3381/// on the vector type. The return type of this matches the element type of the
3382/// vector, which may not be legal for the target.
3383SDOperand SelectionDAGLegalize::LowerVEXTRACT_VECTOR_ELT(SDOperand Op) {
3384 // We know that operand #0 is the Vec vector. If the index is a constant
3385 // or if the invec is a supported hardware type, we can use it. Otherwise,
3386 // lower to a store then an indexed load.
3387 SDOperand Vec = Op.getOperand(0);
3388 SDOperand Idx = LegalizeOp(Op.getOperand(1));
3389
3390 SDNode *InVal = Vec.Val;
3391 unsigned NumElems = cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
3392 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
3393
3394 // Figure out if there is a Packed type corresponding to this Vector
3395 // type. If so, convert to the packed type.
3396 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3397 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
3398 // Turn this into a packed extract_vector_elt operation.
3399 Vec = PackVectorOp(Vec, TVT);
3400 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, Op.getValueType(), Vec, Idx);
3401 } else if (NumElems == 1) {
3402 // This must be an access of the only element. Return it.
3403 return PackVectorOp(Vec, EVT);
3404 } else if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
3405 SDOperand Lo, Hi;
3406 SplitVectorOp(Vec, Lo, Hi);
3407 if (CIdx->getValue() < NumElems/2) {
3408 Vec = Lo;
3409 } else {
3410 Vec = Hi;
3411 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3412 }
3413
3414 // It's now an extract from the appropriate high or low part. Recurse.
3415 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3416 return LowerVEXTRACT_VECTOR_ELT(Op);
3417 } else {
3418 // Variable index case for extract element.
3419 // FIXME: IMPLEMENT STORE/LOAD lowering. Need alignment of stack slot!!
3420 assert(0 && "unimp!");
3421 return SDOperand();
3422 }
3423}
3424
Chris Lattner4aab2f42006-04-02 05:06:04 +00003425/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3426/// memory traffic.
3427SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
3428 SDOperand Vector = Op.getOperand(0);
3429 SDOperand Idx = Op.getOperand(1);
3430
3431 // If the target doesn't support this, store the value to a temporary
3432 // stack slot, then LOAD the scalar element back out.
3433 SDOperand StackPtr = CreateStackTemporary(Vector.getValueType());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003434 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vector, StackPtr, NULL, 0);
Chris Lattner4aab2f42006-04-02 05:06:04 +00003435
3436 // Add the offset to the index.
3437 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3438 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3439 DAG.getConstant(EltSize, Idx.getValueType()));
3440 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3441
Evan Cheng466685d2006-10-09 20:57:25 +00003442 return DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner4aab2f42006-04-02 05:06:04 +00003443}
3444
Chris Lattner15972212006-03-31 17:55:51 +00003445
Nate Begeman750ac1b2006-02-01 07:19:44 +00003446/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3447/// with condition CC on the current target. This usually involves legalizing
3448/// or promoting the arguments. In the case where LHS and RHS must be expanded,
3449/// there may be no choice but to create a new SetCC node to represent the
3450/// legalized value of setcc lhs, rhs. In this case, the value is returned in
3451/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3452void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3453 SDOperand &RHS,
3454 SDOperand &CC) {
3455 SDOperand Tmp1, Tmp2, Result;
3456
3457 switch (getTypeAction(LHS.getValueType())) {
3458 case Legal:
3459 Tmp1 = LegalizeOp(LHS); // LHS
3460 Tmp2 = LegalizeOp(RHS); // RHS
3461 break;
3462 case Promote:
3463 Tmp1 = PromoteOp(LHS); // LHS
3464 Tmp2 = PromoteOp(RHS); // RHS
3465
3466 // If this is an FP compare, the operands have already been extended.
3467 if (MVT::isInteger(LHS.getValueType())) {
3468 MVT::ValueType VT = LHS.getValueType();
3469 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3470
3471 // Otherwise, we have to insert explicit sign or zero extends. Note
3472 // that we could insert sign extends for ALL conditions, but zero extend
3473 // is cheaper on many machines (an AND instead of two shifts), so prefer
3474 // it.
3475 switch (cast<CondCodeSDNode>(CC)->get()) {
3476 default: assert(0 && "Unknown integer comparison!");
3477 case ISD::SETEQ:
3478 case ISD::SETNE:
3479 case ISD::SETUGE:
3480 case ISD::SETUGT:
3481 case ISD::SETULE:
3482 case ISD::SETULT:
3483 // ALL of these operations will work if we either sign or zero extend
3484 // the operands (including the unsigned comparisons!). Zero extend is
3485 // usually a simpler/cheaper operation, so prefer it.
3486 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3487 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3488 break;
3489 case ISD::SETGE:
3490 case ISD::SETGT:
3491 case ISD::SETLT:
3492 case ISD::SETLE:
3493 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3494 DAG.getValueType(VT));
3495 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3496 DAG.getValueType(VT));
3497 break;
3498 }
3499 }
3500 break;
3501 case Expand:
3502 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
3503 ExpandOp(LHS, LHSLo, LHSHi);
3504 ExpandOp(RHS, RHSLo, RHSHi);
3505 switch (cast<CondCodeSDNode>(CC)->get()) {
3506 case ISD::SETEQ:
3507 case ISD::SETNE:
3508 if (RHSLo == RHSHi)
3509 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
3510 if (RHSCST->isAllOnesValue()) {
3511 // Comparison to -1.
3512 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
3513 Tmp2 = RHSLo;
3514 break;
3515 }
3516
3517 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
3518 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
3519 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3520 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3521 break;
3522 default:
3523 // If this is a comparison of the sign bit, just look at the top part.
3524 // X > -1, x < 0
3525 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
3526 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
3527 CST->getValue() == 0) || // X < 0
3528 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
3529 CST->isAllOnesValue())) { // X > -1
3530 Tmp1 = LHSHi;
3531 Tmp2 = RHSHi;
3532 break;
3533 }
3534
3535 // FIXME: This generated code sucks.
3536 ISD::CondCode LowCC;
3537 switch (cast<CondCodeSDNode>(CC)->get()) {
3538 default: assert(0 && "Unknown integer setcc!");
3539 case ISD::SETLT:
3540 case ISD::SETULT: LowCC = ISD::SETULT; break;
3541 case ISD::SETGT:
3542 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
3543 case ISD::SETLE:
3544 case ISD::SETULE: LowCC = ISD::SETULE; break;
3545 case ISD::SETGE:
3546 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
3547 }
3548
3549 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
3550 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
3551 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
3552
3553 // NOTE: on targets without efficient SELECT of bools, we can always use
3554 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
3555 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
3556 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
3557 Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
3558 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
3559 Result, Tmp1, Tmp2));
3560 Tmp1 = Result;
Nate Begemanda06e9e2006-02-01 19:05:15 +00003561 Tmp2 = SDOperand();
Nate Begeman750ac1b2006-02-01 07:19:44 +00003562 }
3563 }
3564 LHS = Tmp1;
3565 RHS = Tmp2;
3566}
3567
Chris Lattner35481892005-12-23 00:16:34 +00003568/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner232348d2005-12-23 00:52:30 +00003569/// The resultant code need not be legal. Note that SrcOp is the input operand
3570/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner35481892005-12-23 00:16:34 +00003571SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
3572 SDOperand SrcOp) {
3573 // Create the stack frame object.
Chris Lattnerce872152006-03-19 06:31:19 +00003574 SDOperand FIPtr = CreateStackTemporary(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00003575
3576 // Emit a store to the stack slot.
Evan Cheng8b2794a2006-10-13 21:14:26 +00003577 SDOperand Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00003578 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00003579 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00003580}
3581
Chris Lattner4352cc92006-04-04 17:23:26 +00003582SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
3583 // Create a vector sized/aligned stack slot, store the value to element #0,
3584 // then load the whole vector back out.
3585 SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
Evan Cheng786225a2006-10-05 23:01:46 +00003586 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003587 NULL, 0);
Evan Cheng466685d2006-10-09 20:57:25 +00003588 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, NULL, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00003589}
3590
3591
Chris Lattnerce872152006-03-19 06:31:19 +00003592/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
3593/// support the operation, but do support the resultant packed vector type.
3594SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
3595
3596 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00003597 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00003598 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00003599 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00003600 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng033e6812006-03-24 01:17:21 +00003601 std::map<SDOperand, std::vector<unsigned> > Values;
3602 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003603 bool isConstant = true;
3604 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
3605 SplatValue.getOpcode() != ISD::UNDEF)
3606 isConstant = false;
3607
Evan Cheng033e6812006-03-24 01:17:21 +00003608 for (unsigned i = 1; i < NumElems; ++i) {
3609 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00003610 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00003611 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00003612 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00003613 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00003614 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003615
3616 // If this isn't a constant element or an undef, we can't use a constant
3617 // pool load.
3618 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
3619 V.getOpcode() != ISD::UNDEF)
3620 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00003621 }
3622
3623 if (isOnlyLowElement) {
3624 // If the low element is an undef too, then this whole things is an undef.
3625 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
3626 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
3627 // Otherwise, turn this into a scalar_to_vector node.
3628 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3629 Node->getOperand(0));
3630 }
3631
Chris Lattner2eb86532006-03-24 07:29:17 +00003632 // If all elements are constants, create a load from the constant pool.
3633 if (isConstant) {
3634 MVT::ValueType VT = Node->getValueType(0);
3635 const Type *OpNTy =
3636 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
3637 std::vector<Constant*> CV;
3638 for (unsigned i = 0, e = NumElems; i != e; ++i) {
3639 if (ConstantFPSDNode *V =
3640 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
3641 CV.push_back(ConstantFP::get(OpNTy, V->getValue()));
3642 } else if (ConstantSDNode *V =
3643 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencerb83eb642006-10-20 07:07:24 +00003644 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00003645 } else {
3646 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
3647 CV.push_back(UndefValue::get(OpNTy));
3648 }
3649 }
3650 Constant *CP = ConstantPacked::get(CV);
3651 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng466685d2006-10-09 20:57:25 +00003652 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003653 }
3654
Chris Lattner87100e02006-03-20 01:52:29 +00003655 if (SplatValue.Val) { // Splat of one value?
3656 // Build the shuffle constant vector: <0, 0, 0, 0>
3657 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00003658 MVT::getIntVectorWithNumElements(NumElems);
Chris Lattner87100e02006-03-20 01:52:29 +00003659 SDOperand Zero = DAG.getConstant(0, MVT::getVectorBaseType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00003660 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003661 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3662 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00003663
3664 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003665 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00003666 // Get the splatted value into the low element of a vector register.
3667 SDOperand LowValVec =
3668 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
3669
3670 // Return shuffle(LowValVec, undef, <0,0,0,0>)
3671 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
3672 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
3673 SplatMask);
3674 }
3675 }
3676
Evan Cheng033e6812006-03-24 01:17:21 +00003677 // If there are only two unique elements, we may be able to turn this into a
3678 // vector shuffle.
3679 if (Values.size() == 2) {
3680 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
3681 MVT::ValueType MaskVT =
3682 MVT::getIntVectorWithNumElements(NumElems);
3683 std::vector<SDOperand> MaskVec(NumElems);
3684 unsigned i = 0;
3685 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3686 E = Values.end(); I != E; ++I) {
3687 for (std::vector<unsigned>::iterator II = I->second.begin(),
3688 EE = I->second.end(); II != EE; ++II)
3689 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorBaseType(MaskVT));
3690 i += NumElems;
3691 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003692 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3693 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00003694
3695 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003696 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
3697 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003698 SmallVector<SDOperand, 8> Ops;
Evan Cheng033e6812006-03-24 01:17:21 +00003699 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3700 E = Values.end(); I != E; ++I) {
3701 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3702 I->first);
3703 Ops.push_back(Op);
3704 }
3705 Ops.push_back(ShuffleMask);
3706
3707 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003708 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
3709 &Ops[0], Ops.size());
Evan Cheng033e6812006-03-24 01:17:21 +00003710 }
3711 }
Chris Lattnerce872152006-03-19 06:31:19 +00003712
3713 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
3714 // aligned object on the stack, store each element into it, then load
3715 // the result as a vector.
3716 MVT::ValueType VT = Node->getValueType(0);
3717 // Create the stack frame object.
3718 SDOperand FIPtr = CreateStackTemporary(VT);
3719
3720 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003721 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00003722 unsigned TypeByteSize =
3723 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00003724 // Store (in the right endianness) the elements to memory.
3725 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3726 // Ignore undef elements.
3727 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
3728
Chris Lattner841c8822006-03-22 01:46:54 +00003729 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00003730
3731 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
3732 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
3733
Evan Cheng786225a2006-10-05 23:01:46 +00003734 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003735 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00003736 }
3737
3738 SDOperand StoreChain;
3739 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003740 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3741 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00003742 else
3743 StoreChain = DAG.getEntryNode();
3744
3745 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00003746 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00003747}
3748
3749/// CreateStackTemporary - Create a stack temporary, suitable for holding the
3750/// specified value type.
3751SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
3752 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3753 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
3754 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, ByteSize);
3755 return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
3756}
3757
Chris Lattner5b359c62005-04-02 04:00:59 +00003758void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
3759 SDOperand Op, SDOperand Amt,
3760 SDOperand &Lo, SDOperand &Hi) {
3761 // Expand the subcomponents.
3762 SDOperand LHSL, LHSH;
3763 ExpandOp(Op, LHSL, LHSH);
3764
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003765 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003766 MVT::ValueType VT = LHSL.getValueType();
3767 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00003768 Hi = Lo.getValue(1);
3769}
3770
3771
Chris Lattnere34b3962005-01-19 04:19:40 +00003772/// ExpandShift - Try to find a clever way to expand this shift operation out to
3773/// smaller elements. If we can't find a way that is more efficient than a
3774/// libcall on this target, return false. Otherwise, return true with the
3775/// low-parts expanded into Lo and Hi.
3776bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
3777 SDOperand &Lo, SDOperand &Hi) {
3778 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
3779 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003780
Chris Lattnere34b3962005-01-19 04:19:40 +00003781 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003782 SDOperand ShAmt = LegalizeOp(Amt);
3783 MVT::ValueType ShTy = ShAmt.getValueType();
3784 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
3785 unsigned NVTBits = MVT::getSizeInBits(NVT);
3786
3787 // Handle the case when Amt is an immediate. Other cases are currently broken
3788 // and are disabled.
3789 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
3790 unsigned Cst = CN->getValue();
3791 // Expand the incoming operand to be shifted, so that we have its parts
3792 SDOperand InL, InH;
3793 ExpandOp(Op, InL, InH);
3794 switch(Opc) {
3795 case ISD::SHL:
3796 if (Cst > VTBits) {
3797 Lo = DAG.getConstant(0, NVT);
3798 Hi = DAG.getConstant(0, NVT);
3799 } else if (Cst > NVTBits) {
3800 Lo = DAG.getConstant(0, NVT);
3801 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00003802 } else if (Cst == NVTBits) {
3803 Lo = DAG.getConstant(0, NVT);
3804 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003805 } else {
3806 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
3807 Hi = DAG.getNode(ISD::OR, NVT,
3808 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
3809 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
3810 }
3811 return true;
3812 case ISD::SRL:
3813 if (Cst > VTBits) {
3814 Lo = DAG.getConstant(0, NVT);
3815 Hi = DAG.getConstant(0, NVT);
3816 } else if (Cst > NVTBits) {
3817 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
3818 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00003819 } else if (Cst == NVTBits) {
3820 Lo = InH;
3821 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003822 } else {
3823 Lo = DAG.getNode(ISD::OR, NVT,
3824 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3825 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3826 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
3827 }
3828 return true;
3829 case ISD::SRA:
3830 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003831 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003832 DAG.getConstant(NVTBits-1, ShTy));
3833 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003834 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003835 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00003836 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003837 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00003838 } else if (Cst == NVTBits) {
3839 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003840 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00003841 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003842 } else {
3843 Lo = DAG.getNode(ISD::OR, NVT,
3844 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3845 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3846 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
3847 }
3848 return true;
3849 }
3850 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00003851
3852 // Okay, the shift amount isn't constant. However, if we can tell that it is
3853 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
3854 uint64_t Mask = NVTBits, KnownZero, KnownOne;
3855 TLI.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
3856
3857 // If we know that the high bit of the shift amount is one, then we can do
3858 // this as a couple of simple shifts.
3859 if (KnownOne & Mask) {
3860 // Mask out the high bit, which we know is set.
3861 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
3862 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3863
3864 // Expand the incoming operand to be shifted, so that we have its parts
3865 SDOperand InL, InH;
3866 ExpandOp(Op, InL, InH);
3867 switch(Opc) {
3868 case ISD::SHL:
3869 Lo = DAG.getConstant(0, NVT); // Low part is zero.
3870 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
3871 return true;
3872 case ISD::SRL:
3873 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
3874 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
3875 return true;
3876 case ISD::SRA:
3877 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
3878 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3879 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
3880 return true;
3881 }
3882 }
3883
3884 // If we know that the high bit of the shift amount is zero, then we can do
3885 // this as a couple of simple shifts.
3886 if (KnownZero & Mask) {
3887 // Compute 32-amt.
3888 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
3889 DAG.getConstant(NVTBits, Amt.getValueType()),
3890 Amt);
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.getNode(ISD::SHL, NVT, InL, Amt);
3898 Hi = DAG.getNode(ISD::OR, NVT,
3899 DAG.getNode(ISD::SHL, NVT, InH, Amt),
3900 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
3901 return true;
3902 case ISD::SRL:
3903 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
3904 Lo = DAG.getNode(ISD::OR, NVT,
3905 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3906 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3907 return true;
3908 case ISD::SRA:
3909 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
3910 Lo = DAG.getNode(ISD::OR, NVT,
3911 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3912 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3913 return true;
3914 }
3915 }
3916
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003917 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00003918}
Chris Lattner77e77a62005-01-21 06:05:23 +00003919
Chris Lattner9c32d3b2005-01-23 04:42:50 +00003920
Chris Lattner77e77a62005-01-21 06:05:23 +00003921// ExpandLibCall - Expand a node into a call to a libcall. If the result value
3922// does not fit into a register, return the lo part and set the hi part to the
3923// by-reg argument. If it does fit into a single register, return the result
3924// and leave the Hi part unset.
3925SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
3926 SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00003927 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
3928 // The input chain to this libcall is the entry node of the function.
3929 // Legalizing the call will automatically add the previous call to the
3930 // dependence.
3931 SDOperand InChain = DAG.getEntryNode();
3932
Chris Lattner77e77a62005-01-21 06:05:23 +00003933 TargetLowering::ArgListTy Args;
3934 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3935 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
3936 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
3937 Args.push_back(std::make_pair(Node->getOperand(i), ArgTy));
3938 }
3939 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00003940
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003941 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00003942 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003943 std::pair<SDOperand,SDOperand> CallInfo =
Chris Lattneradf6a962005-05-13 18:50:42 +00003944 TLI.LowerCallTo(InChain, RetTy, false, CallingConv::C, false,
3945 Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00003946
Chris Lattner6831a812006-02-13 09:18:02 +00003947 // Legalize the call sequence, starting with the chain. This will advance
3948 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
3949 // was added by LowerCallTo (guaranteeing proper serialization of calls).
3950 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00003951 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003952 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00003953 default: assert(0 && "Unknown thing");
3954 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00003955 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00003956 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00003957 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00003958 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00003959 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00003960 }
Chris Lattner99c25b82005-09-02 20:26:58 +00003961 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00003962}
3963
Chris Lattner9c32d3b2005-01-23 04:42:50 +00003964
Chris Lattner77e77a62005-01-21 06:05:23 +00003965/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
3966/// destination type is legal.
3967SDOperand SelectionDAGLegalize::
3968ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003969 assert(isTypeLegal(DestTy) && "Destination type is not legal!");
Chris Lattner77e77a62005-01-21 06:05:23 +00003970 assert(getTypeAction(Source.getValueType()) == Expand &&
3971 "This is not an expansion!");
3972 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
3973
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003974 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00003975 assert(Source.getValueType() == MVT::i64 &&
3976 "This only works for 64-bit -> FP");
3977 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
3978 // incoming integer is set. To handle this, we dynamically test to see if
3979 // it is set, and, if so, add a fudge factor.
3980 SDOperand Lo, Hi;
3981 ExpandOp(Source, Lo, Hi);
3982
Chris Lattner66de05b2005-05-13 04:45:13 +00003983 // If this is unsigned, and not supported, first perform the conversion to
3984 // signed, then adjust the result if the sign bit is set.
3985 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
3986 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
3987
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003988 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
3989 DAG.getConstant(0, Hi.getValueType()),
3990 ISD::SETLT);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003991 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3992 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3993 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00003994 uint64_t FF = 0x5f800000ULL;
3995 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencerb83eb642006-10-20 07:07:24 +00003996 static Constant *FudgeFactor = ConstantInt::get(Type::ULongTy, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003997
Chris Lattner5839bf22005-08-26 17:15:30 +00003998 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00003999 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4000 SDOperand FudgeInReg;
4001 if (DestTy == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004002 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004003 else {
4004 assert(DestTy == MVT::f64 && "Unexpected conversion");
Chris Lattner5f056bf2005-07-10 01:55:33 +00004005 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Cheng466685d2006-10-09 20:57:25 +00004006 CPIdx, NULL, 0, MVT::f32);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004007 }
Chris Lattner473a9902005-09-29 06:44:39 +00004008 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00004009 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004010
Chris Lattnera88a2602005-05-14 05:33:54 +00004011 // Check to see if the target has a custom way to lower this. If so, use it.
4012 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
4013 default: assert(0 && "This action not implemented for this operation!");
4014 case TargetLowering::Legal:
4015 case TargetLowering::Expand:
4016 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00004017 case TargetLowering::Custom: {
4018 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
4019 Source), DAG);
4020 if (NV.Val)
4021 return LegalizeOp(NV);
4022 break; // The target decided this was legal after all
4023 }
Chris Lattnera88a2602005-05-14 05:33:54 +00004024 }
4025
Chris Lattner13689e22005-05-12 07:00:44 +00004026 // Expand the source, then glue it back together for the call. We must expand
4027 // the source in case it is shared (this pass of legalize must traverse it).
4028 SDOperand SrcLo, SrcHi;
4029 ExpandOp(Source, SrcLo, SrcHi);
4030 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
4031
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004032 const char *FnName = 0;
4033 if (DestTy == MVT::f32)
4034 FnName = "__floatdisf";
4035 else {
4036 assert(DestTy == MVT::f64 && "Unknown fp value type!");
4037 FnName = "__floatdidf";
4038 }
Chris Lattner6831a812006-02-13 09:18:02 +00004039
4040 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
4041 SDOperand UnusedHiPart;
Chris Lattner25125692006-02-17 04:32:33 +00004042 return ExpandLibCall(FnName, Source.Val, UnusedHiPart);
Chris Lattner77e77a62005-01-21 06:05:23 +00004043}
Misha Brukmanedf128a2005-04-21 22:36:52 +00004044
Chris Lattner22cde6a2006-01-28 08:25:58 +00004045/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
4046/// INT_TO_FP operation of the specified operand when the target requests that
4047/// we expand it. At this point, we know that the result and operand types are
4048/// legal for the target.
4049SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
4050 SDOperand Op0,
4051 MVT::ValueType DestVT) {
4052 if (Op0.getValueType() == MVT::i32) {
4053 // simple 32-bit [signed|unsigned] integer to float/double expansion
4054
4055 // get the stack frame index of a 8 byte buffer
4056 MachineFunction &MF = DAG.getMachineFunction();
4057 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
4058 // get address of 8 byte buffer
4059 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4060 // word offset constant for Hi/Lo address computation
4061 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
4062 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00004063 SDOperand Hi = StackSlot;
4064 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
4065 if (TLI.isLittleEndian())
4066 std::swap(Hi, Lo);
4067
Chris Lattner22cde6a2006-01-28 08:25:58 +00004068 // if signed map to unsigned space
4069 SDOperand Op0Mapped;
4070 if (isSigned) {
4071 // constant used to invert sign bit (signed to unsigned mapping)
4072 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
4073 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
4074 } else {
4075 Op0Mapped = Op0;
4076 }
4077 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00004078 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004079 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004080 // initial hi portion of constructed double
4081 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
4082 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00004083 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004084 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00004085 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004086 // FP constant to bias correct the final result
4087 SDOperand Bias = DAG.getConstantFP(isSigned ?
4088 BitsToDouble(0x4330000080000000ULL)
4089 : BitsToDouble(0x4330000000000000ULL),
4090 MVT::f64);
4091 // subtract the bias
4092 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
4093 // final result
4094 SDOperand Result;
4095 // handle final rounding
4096 if (DestVT == MVT::f64) {
4097 // do nothing
4098 Result = Sub;
4099 } else {
4100 // if f32 then cast to f32
4101 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
4102 }
4103 return Result;
4104 }
4105 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
4106 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
4107
4108 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
4109 DAG.getConstant(0, Op0.getValueType()),
4110 ISD::SETLT);
4111 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4112 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4113 SignSet, Four, Zero);
4114
4115 // If the sign bit of the integer is set, the large number will be treated
4116 // as a negative number. To counteract this, the dynamic code adds an
4117 // offset depending on the data type.
4118 uint64_t FF;
4119 switch (Op0.getValueType()) {
4120 default: assert(0 && "Unsupported integer type!");
4121 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
4122 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
4123 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
4124 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
4125 }
4126 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencerb83eb642006-10-20 07:07:24 +00004127 static Constant *FudgeFactor = ConstantInt::get(Type::ULongTy, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004128
4129 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4130 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4131 SDOperand FudgeInReg;
4132 if (DestVT == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004133 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004134 else {
4135 assert(DestVT == MVT::f64 && "Unexpected conversion");
4136 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
4137 DAG.getEntryNode(), CPIdx,
Evan Cheng466685d2006-10-09 20:57:25 +00004138 NULL, 0, MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00004139 }
4140
4141 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
4142}
4143
4144/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
4145/// *INT_TO_FP operation of the specified operand when the target requests that
4146/// we promote it. At this point, we know that the result and operand types are
4147/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
4148/// operation that takes a larger input.
4149SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
4150 MVT::ValueType DestVT,
4151 bool isSigned) {
4152 // First step, figure out the appropriate *INT_TO_FP operation to use.
4153 MVT::ValueType NewInTy = LegalOp.getValueType();
4154
4155 unsigned OpToUse = 0;
4156
4157 // Scan for the appropriate larger type to use.
4158 while (1) {
4159 NewInTy = (MVT::ValueType)(NewInTy+1);
4160 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
4161
4162 // If the target supports SINT_TO_FP of this type, use it.
4163 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4164 default: break;
4165 case TargetLowering::Legal:
4166 if (!TLI.isTypeLegal(NewInTy))
4167 break; // Can't use this datatype.
4168 // FALL THROUGH.
4169 case TargetLowering::Custom:
4170 OpToUse = ISD::SINT_TO_FP;
4171 break;
4172 }
4173 if (OpToUse) break;
4174 if (isSigned) continue;
4175
4176 // If the target supports UINT_TO_FP of this type, use it.
4177 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4178 default: break;
4179 case TargetLowering::Legal:
4180 if (!TLI.isTypeLegal(NewInTy))
4181 break; // Can't use this datatype.
4182 // FALL THROUGH.
4183 case TargetLowering::Custom:
4184 OpToUse = ISD::UINT_TO_FP;
4185 break;
4186 }
4187 if (OpToUse) break;
4188
4189 // Otherwise, try a larger type.
4190 }
4191
4192 // Okay, we found the operation and type to use. Zero extend our input to the
4193 // desired type then run the operation on it.
4194 return DAG.getNode(OpToUse, DestVT,
4195 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4196 NewInTy, LegalOp));
4197}
4198
4199/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4200/// FP_TO_*INT operation of the specified operand when the target requests that
4201/// we promote it. At this point, we know that the result and operand types are
4202/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4203/// operation that returns a larger result.
4204SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4205 MVT::ValueType DestVT,
4206 bool isSigned) {
4207 // First step, figure out the appropriate FP_TO*INT operation to use.
4208 MVT::ValueType NewOutTy = DestVT;
4209
4210 unsigned OpToUse = 0;
4211
4212 // Scan for the appropriate larger type to use.
4213 while (1) {
4214 NewOutTy = (MVT::ValueType)(NewOutTy+1);
4215 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4216
4217 // If the target supports FP_TO_SINT returning this type, use it.
4218 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4219 default: break;
4220 case TargetLowering::Legal:
4221 if (!TLI.isTypeLegal(NewOutTy))
4222 break; // Can't use this datatype.
4223 // FALL THROUGH.
4224 case TargetLowering::Custom:
4225 OpToUse = ISD::FP_TO_SINT;
4226 break;
4227 }
4228 if (OpToUse) break;
4229
4230 // If the target supports FP_TO_UINT of this type, use it.
4231 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4232 default: break;
4233 case TargetLowering::Legal:
4234 if (!TLI.isTypeLegal(NewOutTy))
4235 break; // Can't use this datatype.
4236 // FALL THROUGH.
4237 case TargetLowering::Custom:
4238 OpToUse = ISD::FP_TO_UINT;
4239 break;
4240 }
4241 if (OpToUse) break;
4242
4243 // Otherwise, try a larger type.
4244 }
4245
4246 // Okay, we found the operation and type to use. Truncate the result of the
4247 // extended FP_TO_*INT operation to the desired size.
4248 return DAG.getNode(ISD::TRUNCATE, DestVT,
4249 DAG.getNode(OpToUse, NewOutTy, LegalOp));
4250}
4251
4252/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4253///
4254SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4255 MVT::ValueType VT = Op.getValueType();
4256 MVT::ValueType SHVT = TLI.getShiftAmountTy();
4257 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4258 switch (VT) {
4259 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4260 case MVT::i16:
4261 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4262 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4263 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4264 case MVT::i32:
4265 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4266 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4267 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4268 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4269 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4270 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4271 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4272 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4273 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4274 case MVT::i64:
4275 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4276 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4277 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4278 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4279 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4280 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4281 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4282 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4283 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4284 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4285 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4286 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4287 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4288 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4289 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4290 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4291 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4292 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4293 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4294 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4295 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4296 }
4297}
4298
4299/// ExpandBitCount - Expand the specified bitcount instruction into operations.
4300///
4301SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4302 switch (Opc) {
4303 default: assert(0 && "Cannot expand this yet!");
4304 case ISD::CTPOP: {
4305 static const uint64_t mask[6] = {
4306 0x5555555555555555ULL, 0x3333333333333333ULL,
4307 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4308 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4309 };
4310 MVT::ValueType VT = Op.getValueType();
4311 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4312 unsigned len = getSizeInBits(VT);
4313 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4314 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4315 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4316 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4317 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4318 DAG.getNode(ISD::AND, VT,
4319 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4320 }
4321 return Op;
4322 }
4323 case ISD::CTLZ: {
4324 // for now, we do this:
4325 // x = x | (x >> 1);
4326 // x = x | (x >> 2);
4327 // ...
4328 // x = x | (x >>16);
4329 // x = x | (x >>32); // for 64-bit input
4330 // return popcount(~x);
4331 //
4332 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4333 MVT::ValueType VT = Op.getValueType();
4334 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4335 unsigned len = getSizeInBits(VT);
4336 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4337 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4338 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4339 }
4340 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4341 return DAG.getNode(ISD::CTPOP, VT, Op);
4342 }
4343 case ISD::CTTZ: {
4344 // for now, we use: { return popcount(~x & (x - 1)); }
4345 // unless the target has ctlz but not ctpop, in which case we use:
4346 // { return 32 - nlz(~x & (x-1)); }
4347 // see also http://www.hackersdelight.org/HDcode/ntz.cc
4348 MVT::ValueType VT = Op.getValueType();
4349 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4350 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4351 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4352 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4353 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4354 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4355 TLI.isOperationLegal(ISD::CTLZ, VT))
4356 return DAG.getNode(ISD::SUB, VT,
4357 DAG.getConstant(getSizeInBits(VT), VT),
4358 DAG.getNode(ISD::CTLZ, VT, Tmp3));
4359 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4360 }
4361 }
4362}
Chris Lattnere34b3962005-01-19 04:19:40 +00004363
Chris Lattner3e928bb2005-01-07 07:47:09 +00004364/// ExpandOp - Expand the specified SDOperand into its two component pieces
4365/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
4366/// LegalizeNodes map is filled in for any results that are not expanded, the
4367/// ExpandedNodes map is filled in for any results that are expanded, and the
4368/// Lo/Hi values are returned.
4369void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4370 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00004371 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004372 SDNode *Node = Op.Val;
4373 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004374 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
4375 VT == MVT::Vector) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00004376 "Cannot expand to FP value or to larger int value!");
4377
Chris Lattner6fdcb252005-09-02 20:32:45 +00004378 // See if we already expanded it.
4379 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4380 = ExpandedNodes.find(Op);
4381 if (I != ExpandedNodes.end()) {
4382 Lo = I->second.first;
4383 Hi = I->second.second;
4384 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004385 }
4386
Chris Lattner3e928bb2005-01-07 07:47:09 +00004387 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004388 case ISD::CopyFromReg:
4389 assert(0 && "CopyFromReg must be legal!");
4390 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004391#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +00004392 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004393#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00004394 assert(0 && "Do not know how to expand this operator!");
4395 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004396 case ISD::UNDEF:
4397 Lo = DAG.getNode(ISD::UNDEF, NVT);
4398 Hi = DAG.getNode(ISD::UNDEF, NVT);
4399 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004400 case ISD::Constant: {
4401 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4402 Lo = DAG.getConstant(Cst, NVT);
4403 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
4404 break;
4405 }
Evan Cheng00495212006-12-12 21:32:44 +00004406 case ISD::ConstantFP: {
4407 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
4408 SDOperand Tmp = ExpandConstantFP(CFP, DAG, TLI);
4409 ExpandOp(Tmp, Lo, Hi);
4410 break;
4411 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004412 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00004413 // Return the operands.
4414 Lo = Node->getOperand(0);
4415 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004416 break;
Chris Lattner58f79632005-12-12 22:27:43 +00004417
4418 case ISD::SIGN_EXTEND_INREG:
4419 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00004420 // sext_inreg the low part if needed.
4421 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
4422
4423 // The high part gets the sign extension from the lo-part. This handles
4424 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00004425 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4426 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
4427 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00004428 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004429
Nate Begemand88fc032006-01-14 03:14:10 +00004430 case ISD::BSWAP: {
4431 ExpandOp(Node->getOperand(0), Lo, Hi);
4432 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
4433 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
4434 Lo = TempLo;
4435 break;
4436 }
4437
Chris Lattneredb1add2005-05-11 04:51:16 +00004438 case ISD::CTPOP:
4439 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00004440 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
4441 DAG.getNode(ISD::CTPOP, NVT, Lo),
4442 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00004443 Hi = DAG.getConstant(0, NVT);
4444 break;
4445
Chris Lattner39a8f332005-05-12 19:05:01 +00004446 case ISD::CTLZ: {
4447 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004448 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004449 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4450 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004451 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
4452 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004453 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
4454 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
4455
4456 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
4457 Hi = DAG.getConstant(0, NVT);
4458 break;
4459 }
4460
4461 case ISD::CTTZ: {
4462 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004463 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004464 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4465 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004466 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
4467 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004468 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
4469 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
4470
4471 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
4472 Hi = DAG.getConstant(0, NVT);
4473 break;
4474 }
Chris Lattneredb1add2005-05-11 04:51:16 +00004475
Nate Begemanacc398c2006-01-25 18:21:52 +00004476 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004477 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4478 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00004479 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
4480 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
4481
4482 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004483 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00004484 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
4485 if (!TLI.isLittleEndian())
4486 std::swap(Lo, Hi);
4487 break;
4488 }
4489
Chris Lattner3e928bb2005-01-07 07:47:09 +00004490 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00004491 LoadSDNode *LD = cast<LoadSDNode>(Node);
4492 SDOperand Ch = LD->getChain(); // Legalize the chain.
4493 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
4494 ISD::LoadExtType ExtType = LD->getExtensionType();
Chris Lattner3e928bb2005-01-07 07:47:09 +00004495
Evan Cheng466685d2006-10-09 20:57:25 +00004496 if (ExtType == ISD::NON_EXTLOAD) {
4497 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
Evan Cheng00495212006-12-12 21:32:44 +00004498 if (VT == MVT::f32 || VT == MVT::f64) {
4499 // f32->i32 or f64->i64 one to one expansion.
4500 // Remember that we legalized the chain.
4501 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
4502 break;
4503 }
Chris Lattnerec39a452005-01-19 18:02:17 +00004504
Evan Cheng466685d2006-10-09 20:57:25 +00004505 // Increment the pointer to the other half.
4506 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
4507 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4508 getIntPtrConstant(IncrementSize));
4509 // FIXME: This creates a bogus srcvalue!
4510 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
Misha Brukmanedf128a2005-04-21 22:36:52 +00004511
Evan Cheng466685d2006-10-09 20:57:25 +00004512 // Build a factor node to remember that this load is independent of the
4513 // other one.
4514 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4515 Hi.getValue(1));
4516
4517 // Remember that we legalized the chain.
4518 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
4519 if (!TLI.isLittleEndian())
4520 std::swap(Lo, Hi);
4521 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00004522 MVT::ValueType EVT = LD->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00004523
4524 if (EVT == NVT)
4525 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
4526 LD->getSrcValueOffset());
4527 else
4528 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
4529 LD->getSrcValueOffset(), EVT);
4530
4531 // Remember that we legalized the chain.
4532 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
4533
4534 if (ExtType == ISD::SEXTLOAD) {
4535 // The high part is obtained by SRA'ing all but one of the bits of the
4536 // lo part.
4537 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
4538 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4539 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
4540 } else if (ExtType == ISD::ZEXTLOAD) {
4541 // The high part is just a zero.
4542 Hi = DAG.getConstant(0, NVT);
4543 } else /* if (ExtType == ISD::EXTLOAD) */ {
4544 // The high part is undefined.
4545 Hi = DAG.getNode(ISD::UNDEF, NVT);
4546 }
4547 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004548 break;
4549 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004550 case ISD::AND:
4551 case ISD::OR:
4552 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
4553 SDOperand LL, LH, RL, RH;
4554 ExpandOp(Node->getOperand(0), LL, LH);
4555 ExpandOp(Node->getOperand(1), RL, RH);
4556 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
4557 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
4558 break;
4559 }
4560 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00004561 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004562 ExpandOp(Node->getOperand(1), LL, LH);
4563 ExpandOp(Node->getOperand(2), RL, RH);
Chris Lattner456a93a2006-01-28 07:39:30 +00004564 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
4565 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004566 break;
4567 }
Nate Begeman9373a812005-08-10 20:51:12 +00004568 case ISD::SELECT_CC: {
4569 SDOperand TL, TH, FL, FH;
4570 ExpandOp(Node->getOperand(2), TL, TH);
4571 ExpandOp(Node->getOperand(3), FL, FH);
4572 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4573 Node->getOperand(1), TL, FL, Node->getOperand(4));
4574 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4575 Node->getOperand(1), TH, FH, Node->getOperand(4));
4576 break;
4577 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004578 case ISD::ANY_EXTEND:
4579 // The low part is any extension of the input (which degenerates to a copy).
4580 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
4581 // The high part is undefined.
4582 Hi = DAG.getNode(ISD::UNDEF, NVT);
4583 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004584 case ISD::SIGN_EXTEND: {
4585 // The low part is just a sign extension of the input (which degenerates to
4586 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004587 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004588
Chris Lattner3e928bb2005-01-07 07:47:09 +00004589 // The high part is obtained by SRA'ing all but one of the bits of the lo
4590 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00004591 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00004592 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4593 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00004594 break;
4595 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004596 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00004597 // The low part is just a zero extension of the input (which degenerates to
4598 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004599 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004600
Chris Lattner3e928bb2005-01-07 07:47:09 +00004601 // The high part is just a zero.
4602 Hi = DAG.getConstant(0, NVT);
4603 break;
Chris Lattner35481892005-12-23 00:16:34 +00004604
4605 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004606 SDOperand Tmp;
4607 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
4608 // If the target wants to, allow it to lower this itself.
4609 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4610 case Expand: assert(0 && "cannot expand FP!");
4611 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
4612 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
4613 }
4614 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
4615 }
4616
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004617 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00004618 if (VT == MVT::f32 || VT == MVT::f64) {
4619 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng7b2b5c82006-12-12 19:53:13 +00004620 break;
4621 }
4622
4623 // If source operand will be expanded to the same type as VT, i.e.
4624 // i64 <- f64, i32 <- f32, expand the source operand instead.
4625 MVT::ValueType VT0 = Node->getOperand(0).getValueType();
4626 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
4627 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004628 break;
4629 }
4630
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004631 // Turn this into a load/store pair by default.
4632 if (Tmp.Val == 0)
Evan Cheng13acce32006-12-11 19:27:14 +00004633 Tmp = ExpandBIT_CONVERT(VT, Node->getOperand(0));
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004634
Chris Lattner35481892005-12-23 00:16:34 +00004635 ExpandOp(Tmp, Lo, Hi);
4636 break;
4637 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004638
Chris Lattner8137c9e2006-01-28 05:07:51 +00004639 case ISD::READCYCLECOUNTER:
Chris Lattner308575b2005-11-20 22:56:56 +00004640 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
4641 TargetLowering::Custom &&
4642 "Must custom expand ReadCycleCounter");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004643 Lo = TLI.LowerOperation(Op, DAG);
4644 assert(Lo.Val && "Node must be custom expanded!");
4645 Hi = Lo.getValue(1);
Chris Lattner308575b2005-11-20 22:56:56 +00004646 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004647 LegalizeOp(Lo.getValue(2)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004648 break;
4649
Chris Lattner4e6c7462005-01-08 19:27:05 +00004650 // These operators cannot be expanded directly, emit them as calls to
4651 // library functions.
4652 case ISD::FP_TO_SINT:
Chris Lattner80a3e942005-07-29 00:33:32 +00004653 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00004654 SDOperand Op;
4655 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4656 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004657 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4658 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00004659 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004660
Chris Lattnerf20d1832005-07-30 01:40:57 +00004661 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
4662
Chris Lattner80a3e942005-07-29 00:33:32 +00004663 // Now that the custom expander is done, expand the result, which is still
4664 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00004665 if (Op.Val) {
4666 ExpandOp(Op, Lo, Hi);
4667 break;
4668 }
Chris Lattner80a3e942005-07-29 00:33:32 +00004669 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004670
Chris Lattner4e6c7462005-01-08 19:27:05 +00004671 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00004672 Lo = ExpandLibCall("__fixsfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004673 else
Chris Lattner77e77a62005-01-21 06:05:23 +00004674 Lo = ExpandLibCall("__fixdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004675 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004676
Chris Lattner4e6c7462005-01-08 19:27:05 +00004677 case ISD::FP_TO_UINT:
Chris Lattner80a3e942005-07-29 00:33:32 +00004678 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004679 SDOperand Op;
4680 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4681 case Expand: assert(0 && "cannot expand FP!");
4682 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4683 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
4684 }
4685
4686 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
4687
4688 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00004689 if (Op.Val) {
4690 ExpandOp(Op, Lo, Hi);
4691 break;
4692 }
Chris Lattner80a3e942005-07-29 00:33:32 +00004693 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004694
Chris Lattner4e6c7462005-01-08 19:27:05 +00004695 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00004696 Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004697 else
Chris Lattner77e77a62005-01-21 06:05:23 +00004698 Lo = ExpandLibCall("__fixunsdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004699 break;
4700
Evan Cheng05a2d562006-01-09 18:31:59 +00004701 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004702 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004703 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004704 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004705 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004706 Op = TLI.LowerOperation(Op, DAG);
4707 if (Op.Val) {
4708 // Now that the custom expander is done, expand the result, which is
4709 // still VT.
4710 ExpandOp(Op, Lo, Hi);
4711 break;
4712 }
4713 }
4714
Chris Lattner79980b02006-09-13 03:50:39 +00004715 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
4716 // this X << 1 as X+X.
4717 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
4718 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
4719 TLI.isOperationLegal(ISD::ADDE, NVT)) {
4720 SDOperand LoOps[2], HiOps[3];
4721 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
4722 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
4723 LoOps[1] = LoOps[0];
4724 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
4725
4726 HiOps[1] = HiOps[0];
4727 HiOps[2] = Lo.getValue(1);
4728 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
4729 break;
4730 }
4731 }
4732
Chris Lattnere34b3962005-01-19 04:19:40 +00004733 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004734 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004735 break;
Chris Lattner47599822005-04-02 03:38:53 +00004736
4737 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004738 TargetLowering::LegalizeAction Action =
4739 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
4740 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4741 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004742 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004743 break;
4744 }
4745
Chris Lattnere34b3962005-01-19 04:19:40 +00004746 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004747 Lo = ExpandLibCall("__ashldi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004748 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004749 }
Chris Lattnere34b3962005-01-19 04:19:40 +00004750
Evan Cheng05a2d562006-01-09 18:31:59 +00004751 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004752 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004753 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004754 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004755 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004756 Op = TLI.LowerOperation(Op, DAG);
4757 if (Op.Val) {
4758 // Now that the custom expander is done, expand the result, which is
4759 // still VT.
4760 ExpandOp(Op, Lo, Hi);
4761 break;
4762 }
4763 }
4764
Chris Lattnere34b3962005-01-19 04:19:40 +00004765 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004766 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004767 break;
Chris Lattner47599822005-04-02 03:38:53 +00004768
4769 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004770 TargetLowering::LegalizeAction Action =
4771 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
4772 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4773 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004774 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004775 break;
4776 }
4777
Chris Lattnere34b3962005-01-19 04:19:40 +00004778 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004779 Lo = ExpandLibCall("__ashrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004780 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004781 }
4782
4783 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004784 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004785 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004786 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004787 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004788 Op = TLI.LowerOperation(Op, DAG);
4789 if (Op.Val) {
4790 // Now that the custom expander is done, expand the result, which is
4791 // still VT.
4792 ExpandOp(Op, Lo, Hi);
4793 break;
4794 }
4795 }
4796
Chris Lattnere34b3962005-01-19 04:19:40 +00004797 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004798 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004799 break;
Chris Lattner47599822005-04-02 03:38:53 +00004800
4801 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004802 TargetLowering::LegalizeAction Action =
4803 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
4804 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4805 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004806 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004807 break;
4808 }
4809
Chris Lattnere34b3962005-01-19 04:19:40 +00004810 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004811 Lo = ExpandLibCall("__lshrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004812 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004813 }
Chris Lattnere34b3962005-01-19 04:19:40 +00004814
Misha Brukmanedf128a2005-04-21 22:36:52 +00004815 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00004816 case ISD::SUB: {
4817 // If the target wants to custom expand this, let them.
4818 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
4819 TargetLowering::Custom) {
4820 Op = TLI.LowerOperation(Op, DAG);
4821 if (Op.Val) {
4822 ExpandOp(Op, Lo, Hi);
4823 break;
4824 }
4825 }
4826
4827 // Expand the subcomponents.
4828 SDOperand LHSL, LHSH, RHSL, RHSH;
4829 ExpandOp(Node->getOperand(0), LHSL, LHSH);
4830 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00004831 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
4832 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004833 LoOps[0] = LHSL;
4834 LoOps[1] = RHSL;
4835 HiOps[0] = LHSH;
4836 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00004837 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00004838 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004839 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00004840 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00004841 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00004842 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004843 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00004844 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00004845 }
Chris Lattner84f67882005-01-20 18:52:28 +00004846 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00004847 }
Nate Begemanc7c16572005-04-11 03:01:51 +00004848 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00004849 // If the target wants to custom expand this, let them.
4850 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00004851 SDOperand New = TLI.LowerOperation(Op, DAG);
4852 if (New.Val) {
4853 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00004854 break;
4855 }
4856 }
4857
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004858 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
4859 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004860 if (HasMULHS || HasMULHU) {
Nate Begemanc7c16572005-04-11 03:01:51 +00004861 SDOperand LL, LH, RL, RH;
4862 ExpandOp(Node->getOperand(0), LL, LH);
4863 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman56eb8682005-08-30 02:44:00 +00004864 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
Nate Begeman2cbba892006-12-11 02:23:46 +00004865 // FIXME: Move this to the dag combiner.
Nate Begeman56eb8682005-08-30 02:44:00 +00004866 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
4867 // extended the sign bit of the low half through the upper half, and if so
4868 // emit a MULHS instead of the alternate sequence that is valid for any
4869 // i64 x i64 multiply.
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004870 if (HasMULHS &&
Nate Begeman56eb8682005-08-30 02:44:00 +00004871 // is RH an extension of the sign bit of RL?
4872 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
4873 RH.getOperand(1).getOpcode() == ISD::Constant &&
4874 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
4875 // is LH an extension of the sign bit of LL?
4876 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
4877 LH.getOperand(1).getOpcode() == ISD::Constant &&
4878 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
Chris Lattnera89654b2006-09-16 00:21:44 +00004879 // Low part:
4880 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4881 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00004882 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
Chris Lattnera89654b2006-09-16 00:21:44 +00004883 break;
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004884 } else if (HasMULHU) {
Chris Lattnera89654b2006-09-16 00:21:44 +00004885 // Low part:
4886 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4887
4888 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00004889 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
4890 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
4891 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
4892 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
4893 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00004894 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00004895 }
Nate Begemanc7c16572005-04-11 03:01:51 +00004896 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004897
Chris Lattnera89654b2006-09-16 00:21:44 +00004898 Lo = ExpandLibCall("__muldi3" , Node, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00004899 break;
4900 }
Chris Lattner77e77a62005-01-21 06:05:23 +00004901 case ISD::SDIV: Lo = ExpandLibCall("__divdi3" , Node, Hi); break;
4902 case ISD::UDIV: Lo = ExpandLibCall("__udivdi3", Node, Hi); break;
4903 case ISD::SREM: Lo = ExpandLibCall("__moddi3" , Node, Hi); break;
4904 case ISD::UREM: Lo = ExpandLibCall("__umoddi3", Node, Hi); break;
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004905
4906 case ISD::FADD:
4907 Lo = ExpandLibCall(((VT == MVT::f32) ? "__addsf3" : "__adddf3"), Node, Hi);
4908 break;
4909 case ISD::FSUB:
4910 Lo = ExpandLibCall(((VT == MVT::f32) ? "__subsf3" : "__subdf3"), Node, Hi);
4911 break;
4912 case ISD::FMUL:
4913 Lo = ExpandLibCall(((VT == MVT::f32) ? "__mulsf3" : "__muldf3"), Node, Hi);
4914 break;
4915 case ISD::FDIV:
4916 Lo = ExpandLibCall(((VT == MVT::f32) ? "__divsf3" : "__divdf3"), Node, Hi);
4917 break;
4918 case ISD::FP_EXTEND:
4919 Lo = ExpandLibCall("__extendsfdf2", Node, Hi);
4920 break;
4921 case ISD::FP_ROUND:
4922 Lo = ExpandLibCall("__truncdfsf2", Node, Hi);
4923 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004924 }
4925
Chris Lattner83397362005-12-21 18:02:52 +00004926 // Make sure the resultant values have been legalized themselves, unless this
4927 // is a type that requires multi-step expansion.
4928 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
4929 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00004930 if (Hi.Val)
4931 // Don't legalize the high part if it is expanded to a single node.
4932 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00004933 }
Evan Cheng05a2d562006-01-09 18:31:59 +00004934
4935 // Remember in a map if the values will be reused later.
4936 bool isNew =
4937 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4938 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00004939}
4940
Chris Lattnerc7029802006-03-18 01:44:44 +00004941/// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
4942/// two smaller values of MVT::Vector type.
4943void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
4944 SDOperand &Hi) {
4945 assert(Op.getValueType() == MVT::Vector && "Cannot split non-vector type!");
4946 SDNode *Node = Op.Val;
4947 unsigned NumElements = cast<ConstantSDNode>(*(Node->op_end()-2))->getValue();
4948 assert(NumElements > 1 && "Cannot split a single element vector!");
4949 unsigned NewNumElts = NumElements/2;
4950 SDOperand NewNumEltsNode = DAG.getConstant(NewNumElts, MVT::i32);
4951 SDOperand TypeNode = *(Node->op_end()-1);
4952
4953 // See if we already split it.
4954 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4955 = SplitNodes.find(Op);
4956 if (I != SplitNodes.end()) {
4957 Lo = I->second.first;
4958 Hi = I->second.second;
4959 return;
4960 }
4961
4962 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004963 default:
4964#ifndef NDEBUG
4965 Node->dump();
4966#endif
4967 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerb2827b02006-03-19 00:52:58 +00004968 case ISD::VBUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004969 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
4970 Node->op_begin()+NewNumElts);
Chris Lattnerc7029802006-03-18 01:44:44 +00004971 LoOps.push_back(NewNumEltsNode);
4972 LoOps.push_back(TypeNode);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004973 Lo = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00004974
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004975 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts,
4976 Node->op_end()-2);
Chris Lattnerc7029802006-03-18 01:44:44 +00004977 HiOps.push_back(NewNumEltsNode);
4978 HiOps.push_back(TypeNode);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004979 Hi = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00004980 break;
4981 }
4982 case ISD::VADD:
4983 case ISD::VSUB:
4984 case ISD::VMUL:
4985 case ISD::VSDIV:
4986 case ISD::VUDIV:
4987 case ISD::VAND:
4988 case ISD::VOR:
4989 case ISD::VXOR: {
4990 SDOperand LL, LH, RL, RH;
4991 SplitVectorOp(Node->getOperand(0), LL, LH);
4992 SplitVectorOp(Node->getOperand(1), RL, RH);
4993
4994 Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, LL, RL,
4995 NewNumEltsNode, TypeNode);
4996 Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, LH, RH,
4997 NewNumEltsNode, TypeNode);
4998 break;
4999 }
5000 case ISD::VLOAD: {
5001 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5002 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
5003 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
5004
5005 Lo = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
5006 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(EVT)/8;
5007 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
5008 getIntPtrConstant(IncrementSize));
5009 // FIXME: This creates a bogus srcvalue!
5010 Hi = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
5011
5012 // Build a factor node to remember that this load is independent of the
5013 // other one.
5014 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5015 Hi.getValue(1));
5016
5017 // Remember that we legalized the chain.
5018 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00005019 break;
5020 }
Chris Lattner7692eb42006-03-23 21:16:34 +00005021 case ISD::VBIT_CONVERT: {
5022 // We know the result is a vector. The input may be either a vector or a
5023 // scalar value.
5024 if (Op.getOperand(0).getValueType() != MVT::Vector) {
5025 // Lower to a store/load. FIXME: this could be improved probably.
5026 SDOperand Ptr = CreateStackTemporary(Op.getOperand(0).getValueType());
5027
Evan Cheng786225a2006-10-05 23:01:46 +00005028 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005029 Op.getOperand(0), Ptr, NULL, 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00005030 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
5031 St = DAG.getVecLoad(NumElements, EVT, St, Ptr, DAG.getSrcValue(0));
5032 SplitVectorOp(St, Lo, Hi);
5033 } else {
5034 // If the input is a vector type, we have to either scalarize it, pack it
5035 // or convert it based on whether the input vector type is legal.
5036 SDNode *InVal = Node->getOperand(0).Val;
5037 unsigned NumElems =
5038 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5039 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5040
5041 // If the input is from a single element vector, scalarize the vector,
5042 // then treat like a scalar.
5043 if (NumElems == 1) {
5044 SDOperand Scalar = PackVectorOp(Op.getOperand(0), EVT);
5045 Scalar = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Scalar,
5046 Op.getOperand(1), Op.getOperand(2));
5047 SplitVectorOp(Scalar, Lo, Hi);
5048 } else {
5049 // Split the input vector.
5050 SplitVectorOp(Op.getOperand(0), Lo, Hi);
5051
5052 // Convert each of the pieces now.
5053 Lo = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Lo,
5054 NewNumEltsNode, TypeNode);
5055 Hi = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Hi,
5056 NewNumEltsNode, TypeNode);
5057 }
5058 break;
5059 }
5060 }
Chris Lattnerc7029802006-03-18 01:44:44 +00005061 }
5062
5063 // Remember in a map if the values will be reused later.
5064 bool isNew =
5065 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
5066 assert(isNew && "Value already expanded?!?");
5067}
5068
5069
5070/// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
5071/// equivalent operation that returns a scalar (e.g. F32) or packed value
5072/// (e.g. MVT::V4F32). When this is called, we know that PackedVT is the right
5073/// type for the result.
5074SDOperand SelectionDAGLegalize::PackVectorOp(SDOperand Op,
5075 MVT::ValueType NewVT) {
5076 assert(Op.getValueType() == MVT::Vector && "Bad PackVectorOp invocation!");
5077 SDNode *Node = Op.Val;
5078
5079 // See if we already packed it.
5080 std::map<SDOperand, SDOperand>::iterator I = PackedNodes.find(Op);
5081 if (I != PackedNodes.end()) return I->second;
5082
5083 SDOperand Result;
5084 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00005085 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005086#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +00005087 Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005088#endif
Chris Lattner2332b9f2006-03-19 01:17:20 +00005089 assert(0 && "Unknown vector operation in PackVectorOp!");
Chris Lattnerc7029802006-03-18 01:44:44 +00005090 case ISD::VADD:
5091 case ISD::VSUB:
5092 case ISD::VMUL:
5093 case ISD::VSDIV:
5094 case ISD::VUDIV:
5095 case ISD::VAND:
5096 case ISD::VOR:
5097 case ISD::VXOR:
5098 Result = DAG.getNode(getScalarizedOpcode(Node->getOpcode(), NewVT),
5099 NewVT,
5100 PackVectorOp(Node->getOperand(0), NewVT),
5101 PackVectorOp(Node->getOperand(1), NewVT));
5102 break;
5103 case ISD::VLOAD: {
Chris Lattner4794a6b2006-03-19 00:07:49 +00005104 SDOperand Ch = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
5105 SDOperand Ptr = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00005106
Evan Cheng466685d2006-10-09 20:57:25 +00005107 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
5108 Result = DAG.getLoad(NewVT, Ch, Ptr, SV->getValue(), SV->getOffset());
Chris Lattnerc7029802006-03-18 01:44:44 +00005109
5110 // Remember that we legalized the chain.
5111 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
5112 break;
5113 }
Chris Lattnerb2827b02006-03-19 00:52:58 +00005114 case ISD::VBUILD_VECTOR:
Chris Lattner70c2a612006-03-31 02:06:56 +00005115 if (Node->getOperand(0).getValueType() == NewVT) {
Chris Lattnerb2827b02006-03-19 00:52:58 +00005116 // Returning a scalar?
Chris Lattnerc7029802006-03-18 01:44:44 +00005117 Result = Node->getOperand(0);
5118 } else {
Chris Lattnerb2827b02006-03-19 00:52:58 +00005119 // Returning a BUILD_VECTOR?
Chris Lattner17614ea2006-04-08 05:34:25 +00005120
5121 // If all elements of the build_vector are undefs, return an undef.
5122 bool AllUndef = true;
5123 for (unsigned i = 0, e = Node->getNumOperands()-2; i != e; ++i)
5124 if (Node->getOperand(i).getOpcode() != ISD::UNDEF) {
5125 AllUndef = false;
5126 break;
5127 }
5128 if (AllUndef) {
5129 Result = DAG.getNode(ISD::UNDEF, NewVT);
5130 } else {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005131 Result = DAG.getNode(ISD::BUILD_VECTOR, NewVT, Node->op_begin(),
5132 Node->getNumOperands()-2);
Chris Lattner17614ea2006-04-08 05:34:25 +00005133 }
Chris Lattnerc7029802006-03-18 01:44:44 +00005134 }
5135 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00005136 case ISD::VINSERT_VECTOR_ELT:
5137 if (!MVT::isVector(NewVT)) {
5138 // Returning a scalar? Must be the inserted element.
5139 Result = Node->getOperand(1);
5140 } else {
5141 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT,
5142 PackVectorOp(Node->getOperand(0), NewVT),
5143 Node->getOperand(1), Node->getOperand(2));
5144 }
5145 break;
Chris Lattner5b2316e2006-03-28 20:24:43 +00005146 case ISD::VVECTOR_SHUFFLE:
5147 if (!MVT::isVector(NewVT)) {
5148 // Returning a scalar? Figure out if it is the LHS or RHS and return it.
5149 SDOperand EltNum = Node->getOperand(2).getOperand(0);
5150 if (cast<ConstantSDNode>(EltNum)->getValue())
5151 Result = PackVectorOp(Node->getOperand(1), NewVT);
5152 else
5153 Result = PackVectorOp(Node->getOperand(0), NewVT);
5154 } else {
5155 // Otherwise, return a VECTOR_SHUFFLE node. First convert the index
5156 // vector from a VBUILD_VECTOR to a BUILD_VECTOR.
5157 std::vector<SDOperand> BuildVecIdx(Node->getOperand(2).Val->op_begin(),
5158 Node->getOperand(2).Val->op_end()-2);
5159 MVT::ValueType BVT = MVT::getIntVectorWithNumElements(BuildVecIdx.size());
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005160 SDOperand BV = DAG.getNode(ISD::BUILD_VECTOR, BVT,
5161 Node->getOperand(2).Val->op_begin(),
5162 Node->getOperand(2).Val->getNumOperands()-2);
Chris Lattner5b2316e2006-03-28 20:24:43 +00005163
5164 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT,
5165 PackVectorOp(Node->getOperand(0), NewVT),
5166 PackVectorOp(Node->getOperand(1), NewVT), BV);
5167 }
5168 break;
Chris Lattnere25ca692006-03-22 20:09:35 +00005169 case ISD::VBIT_CONVERT:
5170 if (Op.getOperand(0).getValueType() != MVT::Vector)
5171 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
5172 else {
5173 // If the input is a vector type, we have to either scalarize it, pack it
5174 // or convert it based on whether the input vector type is legal.
5175 SDNode *InVal = Node->getOperand(0).Val;
5176 unsigned NumElems =
5177 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5178 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5179
5180 // Figure out if there is a Packed type corresponding to this Vector
5181 // type. If so, convert to the packed type.
5182 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
5183 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
5184 // Turn this into a bit convert of the packed input.
5185 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5186 PackVectorOp(Node->getOperand(0), TVT));
5187 break;
5188 } else if (NumElems == 1) {
5189 // Turn this into a bit convert of the scalar input.
5190 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5191 PackVectorOp(Node->getOperand(0), EVT));
5192 break;
5193 } else {
5194 // FIXME: UNIMP!
5195 assert(0 && "Cast from unsupported vector type not implemented yet!");
5196 }
5197 }
Evan Chengdb3c6262006-04-10 18:54:36 +00005198 break;
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005199 case ISD::VSELECT:
5200 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
5201 PackVectorOp(Op.getOperand(1), NewVT),
5202 PackVectorOp(Op.getOperand(2), NewVT));
5203 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00005204 }
5205
5206 if (TLI.isTypeLegal(NewVT))
5207 Result = LegalizeOp(Result);
5208 bool isNew = PackedNodes.insert(std::make_pair(Op, Result)).second;
5209 assert(isNew && "Value already packed?");
5210 return Result;
5211}
5212
Chris Lattner3e928bb2005-01-07 07:47:09 +00005213
5214// SelectionDAG::Legalize - This is the entry point for the file.
5215//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005216void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00005217 if (ViewLegalizeDAGs) viewGraph();
5218
Chris Lattner3e928bb2005-01-07 07:47:09 +00005219 /// run - This is the main entry point to this class.
5220 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00005221 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005222}
5223