blob: 9507e4be844aeef1efe07ada37e92a73b11a4cfe [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"
Chris Lattner0f69b292005-01-15 06:18:18 +000019#include "llvm/Target/TargetOptions.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000020#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000021#include "llvm/Constants.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000022#include "llvm/Support/MathExtras.h"
23#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000024#include "llvm/Support/Compiler.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000025#include "llvm/ADT/SmallVector.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000026#include <iostream>
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
491
Chris Lattnerc7029802006-03-18 01:44:44 +0000492/// LegalizeOp - We know that the specified value has a legal type.
493/// Recursively ensure that the operands have legal types, then return the
494/// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000495SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000496 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000497 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000498 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000499
Chris Lattner3e928bb2005-01-07 07:47:09 +0000500 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000501 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000502 if (Node->getNumValues() > 1) {
503 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000504 if (getTypeAction(Node->getValueType(i)) != Legal) {
505 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000506 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000507 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000508 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000509 }
510 }
511
Chris Lattner45982da2005-05-12 16:53:42 +0000512 // Note that LegalizeOp may be reentered even from single-use nodes, which
513 // means that we always must cache transformed nodes.
Chris Lattnere1bd8222005-01-11 05:57:22 +0000514 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
515 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000516
Nate Begeman9373a812005-08-10 20:51:12 +0000517 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000518 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000519 bool isCustom = false;
520
Chris Lattner3e928bb2005-01-07 07:47:09 +0000521 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000522 case ISD::FrameIndex:
523 case ISD::EntryToken:
524 case ISD::Register:
525 case ISD::BasicBlock:
526 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000527 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000528 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000529 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000530 case ISD::TargetConstantPool:
531 case ISD::TargetGlobalAddress:
532 case ISD::TargetExternalSymbol:
533 case ISD::VALUETYPE:
534 case ISD::SRCVALUE:
535 case ISD::STRING:
536 case ISD::CONDCODE:
537 // Primitives must all be legal.
538 assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
539 "This must be legal!");
540 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000541 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000542 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
543 // If this is a target node, legalize it by legalizing the operands then
544 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000545 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000546 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000547 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000548
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000549 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000550
551 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
552 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
553 return Result.getValue(Op.ResNo);
554 }
555 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000556#ifndef NDEBUG
Chris Lattner3e928bb2005-01-07 07:47:09 +0000557 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000558#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000559 assert(0 && "Do not know how to legalize this operator!");
560 abort();
Andrew Lenharthbeec30e2006-09-24 19:45:58 +0000561 case ISD::JumpTableRelocBase:
562 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
563 case TargetLowering::Custom:
564 Tmp1 = TLI.LowerOperation(Op, DAG);
565 if (Tmp1.Val) Result = Tmp1;
566 break;
567 default:
568 Result = LegalizeOp(Node->getOperand(0));
569 break;
570 }
571 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000572 case ISD::GlobalAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000573 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000574 case ISD::ConstantPool:
575 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000576 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
577 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000578 case TargetLowering::Custom:
579 Tmp1 = TLI.LowerOperation(Op, DAG);
580 if (Tmp1.Val) Result = Tmp1;
581 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000582 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000583 break;
584 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000585 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000586 case ISD::AssertSext:
587 case ISD::AssertZext:
588 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000589 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000590 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000591 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000592 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000593 Result = Node->getOperand(Op.ResNo);
594 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000595 case ISD::CopyFromReg:
596 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000597 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000598 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000599 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000600 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000601 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000602 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000603 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000604 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
605 } else {
606 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
607 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000608 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
609 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000610 // Since CopyFromReg produces two values, make sure to remember that we
611 // legalized both of them.
612 AddLegalizedOperand(Op.getValue(0), Result);
613 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
614 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000615 case ISD::UNDEF: {
616 MVT::ValueType VT = Op.getValueType();
617 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000618 default: assert(0 && "This action is not supported yet!");
619 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000620 if (MVT::isInteger(VT))
621 Result = DAG.getConstant(0, VT);
622 else if (MVT::isFloatingPoint(VT))
623 Result = DAG.getConstantFP(0, VT);
624 else
625 assert(0 && "Unknown value type!");
626 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000627 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000628 break;
629 }
630 break;
631 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000632
Chris Lattner48b61a72006-03-28 00:40:33 +0000633 case ISD::INTRINSIC_W_CHAIN:
634 case ISD::INTRINSIC_WO_CHAIN:
635 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000636 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000637 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
638 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000639 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +0000640
641 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +0000642 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +0000643 TargetLowering::Custom) {
644 Tmp3 = TLI.LowerOperation(Result, DAG);
645 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +0000646 }
647
648 if (Result.Val->getNumValues() == 1) break;
649
650 // Must have return value and chain result.
651 assert(Result.Val->getNumValues() == 2 &&
652 "Cannot return more than two values!");
653
654 // Since loads produce two values, make sure to remember that we
655 // legalized both of them.
656 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
657 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
658 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000659 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000660
661 case ISD::LOCATION:
662 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
663 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
664
665 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
666 case TargetLowering::Promote:
667 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000668 case TargetLowering::Expand: {
Jim Laskeyb2efb852006-01-04 22:28:25 +0000669 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000670 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
671 bool useDEBUG_LABEL = TLI.isOperationLegal(ISD::DEBUG_LABEL, MVT::Other);
672
673 if (DebugInfo && (useDEBUG_LOC || useDEBUG_LABEL)) {
674 const std::string &FName =
675 cast<StringSDNode>(Node->getOperand(3))->getValue();
676 const std::string &DirName =
677 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey063e7652006-01-17 17:31:53 +0000678 unsigned SrcFile = DebugInfo->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000679
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000680 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +0000681 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +0000682 SDOperand LineOp = Node->getOperand(1);
683 SDOperand ColOp = Node->getOperand(2);
684
685 if (useDEBUG_LOC) {
686 Ops.push_back(LineOp); // line #
687 Ops.push_back(ColOp); // col #
688 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000689 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000690 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +0000691 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
692 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000693 unsigned ID = DebugInfo->RecordLabel(Line, Col, SrcFile);
694 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000695 Result = DAG.getNode(ISD::DEBUG_LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000696 }
Jim Laskeye81aecb2005-12-21 20:51:37 +0000697 } else {
698 Result = Tmp1; // chain
699 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000700 break;
Chris Lattnere7736732005-12-18 23:54:29 +0000701 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000702 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +0000703 if (Tmp1 != Node->getOperand(0) ||
704 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000705 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +0000706 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +0000707 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
708 Ops.push_back(Node->getOperand(1)); // line # must be legal.
709 Ops.push_back(Node->getOperand(2)); // col # must be legal.
710 } else {
711 // Otherwise promote them.
712 Ops.push_back(PromoteOp(Node->getOperand(1)));
713 Ops.push_back(PromoteOp(Node->getOperand(2)));
714 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000715 Ops.push_back(Node->getOperand(3)); // filename must be legal.
716 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000717 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +0000718 }
719 break;
720 }
721 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000722
723 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +0000724 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000725 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000726 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +0000727 case TargetLowering::Legal:
728 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
729 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
730 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
731 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000732 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000733 break;
734 }
735 break;
736
737 case ISD::DEBUG_LABEL:
738 assert(Node->getNumOperands() == 2 && "Invalid DEBUG_LABEL node!");
739 switch (TLI.getOperationAction(ISD::DEBUG_LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000740 default: assert(0 && "This action is not supported yet!");
741 case TargetLowering::Legal:
742 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
743 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000744 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000745 break;
746 }
Nate Begeman551bf3f2006-02-17 05:43:56 +0000747 break;
Chris Lattner36ce6912005-11-29 06:21:05 +0000748
Chris Lattner3e928bb2005-01-07 07:47:09 +0000749 case ISD::Constant:
750 // We know we don't need to expand constants here, constants only have one
751 // value and we check that it is fine above.
752
753 // FIXME: Maybe we should handle things like targets that don't support full
754 // 32-bit immediates?
755 break;
756 case ISD::ConstantFP: {
757 // Spill FP immediates to the constant pool if the target cannot directly
758 // codegen them. Targets often have some immediate values that can be
759 // efficiently generated into an FP register without a load. We explicitly
760 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000761 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
762
763 // Check to see if this FP immediate is already legal.
764 bool isLegal = false;
765 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
766 E = TLI.legal_fpimm_end(); I != E; ++I)
767 if (CFP->isExactlyValue(*I)) {
768 isLegal = true;
769 break;
770 }
771
Chris Lattner3181a772006-01-29 06:26:56 +0000772 // If this is a legal constant, turn it into a TargetConstantFP node.
773 if (isLegal) {
774 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
775 break;
776 }
777
778 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
779 default: assert(0 && "This action is not supported yet!");
780 case TargetLowering::Custom:
781 Tmp3 = TLI.LowerOperation(Result, DAG);
782 if (Tmp3.Val) {
783 Result = Tmp3;
784 break;
785 }
786 // FALLTHROUGH
787 case TargetLowering::Expand:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000788 // Otherwise we need to spill the constant to memory.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000789 bool Extend = false;
790
Chris Lattner456a93a2006-01-28 07:39:30 +0000791 // If a FP immediate is precise when represented as a float and if the
792 // target can do an extending load from float to double, we put it into
793 // the constant pool as a float, even if it's is statically typed as a
794 // double.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000795 MVT::ValueType VT = CFP->getValueType(0);
796 bool isDouble = VT == MVT::f64;
797 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
798 Type::FloatTy, CFP->getValue());
Chris Lattner99939d32005-01-28 22:58:25 +0000799 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
800 // Only do this if the target has a native EXTLOAD instruction from
801 // f32.
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000802 TLI.isOperationLegal(ISD::EXTLOAD, MVT::f32)) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000803 LLVMC = cast<ConstantFP>(ConstantExpr::getCast(LLVMC, Type::FloatTy));
804 VT = MVT::f32;
805 Extend = true;
806 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000807
Chris Lattner456a93a2006-01-28 07:39:30 +0000808 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Chris Lattnerf8161d82005-01-16 05:06:12 +0000809 if (Extend) {
Chris Lattner5f056bf2005-07-10 01:55:33 +0000810 Result = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
811 CPIdx, DAG.getSrcValue(NULL), MVT::f32);
Chris Lattnerf8161d82005-01-16 05:06:12 +0000812 } else {
Chris Lattner52d08bd2005-05-09 20:23:03 +0000813 Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
814 DAG.getSrcValue(NULL));
Chris Lattnerf8161d82005-01-16 05:06:12 +0000815 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000816 }
817 break;
818 }
Chris Lattner040c11c2005-11-09 18:48:57 +0000819 case ISD::TokenFactor:
820 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000821 Tmp1 = LegalizeOp(Node->getOperand(0));
822 Tmp2 = LegalizeOp(Node->getOperand(1));
823 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
824 } else if (Node->getNumOperands() == 3) {
825 Tmp1 = LegalizeOp(Node->getOperand(0));
826 Tmp2 = LegalizeOp(Node->getOperand(1));
827 Tmp3 = LegalizeOp(Node->getOperand(2));
828 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +0000829 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000830 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +0000831 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000832 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
833 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000834 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +0000835 }
Chris Lattnera385e9b2005-01-13 17:59:25 +0000836 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000837
838 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000839 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +0000840 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +0000841 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
842 assert(Tmp3.Val && "Target didn't custom lower this node!");
843 assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
844 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +0000845
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000846 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +0000847 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +0000848 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
849 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +0000850 if (Op.ResNo == i)
851 Tmp2 = Tmp1;
852 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
853 }
854 return Tmp2;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000855
Chris Lattnerb2827b02006-03-19 00:52:58 +0000856 case ISD::BUILD_VECTOR:
857 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +0000858 default: assert(0 && "This action is not supported yet!");
859 case TargetLowering::Custom:
860 Tmp3 = TLI.LowerOperation(Result, DAG);
861 if (Tmp3.Val) {
862 Result = Tmp3;
863 break;
864 }
865 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +0000866 case TargetLowering::Expand:
867 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +0000868 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +0000869 }
Chris Lattner2332b9f2006-03-19 01:17:20 +0000870 break;
871 case ISD::INSERT_VECTOR_ELT:
872 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
873 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
874 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
875 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
876
877 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
878 Node->getValueType(0))) {
879 default: assert(0 && "This action is not supported yet!");
880 case TargetLowering::Legal:
881 break;
882 case TargetLowering::Custom:
883 Tmp3 = TLI.LowerOperation(Result, DAG);
884 if (Tmp3.Val) {
885 Result = Tmp3;
886 break;
887 }
888 // FALLTHROUGH
889 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +0000890 // If the insert index is a constant, codegen this as a scalar_to_vector,
891 // then a shuffle that inserts it into the right position in the vector.
892 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
893 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
894 Tmp1.getValueType(), Tmp2);
895
896 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
897 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
898 MVT::ValueType ShufMaskEltVT = MVT::getVectorBaseType(ShufMaskVT);
899
900 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
901 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
902 // the RHS.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000903 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner8d5a8942006-04-17 19:21:01 +0000904 for (unsigned i = 0; i != NumElts; ++i) {
905 if (i != InsertPos->getValue())
906 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
907 else
908 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
909 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000910 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
911 &ShufOps[0], ShufOps.size());
Chris Lattner8d5a8942006-04-17 19:21:01 +0000912
913 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
914 Tmp1, ScVec, ShufMask);
915 Result = LegalizeOp(Result);
916 break;
917 }
918
Chris Lattner2332b9f2006-03-19 01:17:20 +0000919 // If the target doesn't support this, we have to spill the input vector
920 // to a temporary stack slot, update the element, then reload it. This is
921 // badness. We could also load the value into a vector register (either
922 // with a "move to register" or "extload into register" instruction, then
923 // permute it into place, if the idx is a constant and if the idx is
924 // supported by the target.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000925 MVT::ValueType VT = Tmp1.getValueType();
926 MVT::ValueType EltVT = Tmp2.getValueType();
927 MVT::ValueType IdxVT = Tmp3.getValueType();
928 MVT::ValueType PtrVT = TLI.getPointerTy();
929 SDOperand StackPtr = CreateStackTemporary(VT);
Evan Chengeb0b4612006-03-31 01:27:51 +0000930 // Store the vector.
931 SDOperand Ch = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
932 Tmp1, StackPtr, DAG.getSrcValue(NULL));
933
934 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000935 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
936 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +0000937 // Add the offset to the index.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000938 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
939 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
940 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Chengeb0b4612006-03-31 01:27:51 +0000941 // Store the scalar value.
942 Ch = DAG.getNode(ISD::STORE, MVT::Other, Ch,
943 Tmp2, StackPtr2, DAG.getSrcValue(NULL));
944 // Load the updated vector.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000945 Result = DAG.getLoad(VT, Ch, StackPtr, DAG.getSrcValue(NULL));
Chris Lattner2332b9f2006-03-19 01:17:20 +0000946 break;
947 }
948 }
949 break;
Chris Lattnerce872152006-03-19 06:31:19 +0000950 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +0000951 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
952 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
953 break;
954 }
955
Chris Lattnerce872152006-03-19 06:31:19 +0000956 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
957 Result = DAG.UpdateNodeOperands(Result, Tmp1);
958 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
959 Node->getValueType(0))) {
960 default: assert(0 && "This action is not supported yet!");
961 case TargetLowering::Legal:
962 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +0000963 case TargetLowering::Custom:
964 Tmp3 = TLI.LowerOperation(Result, DAG);
965 if (Tmp3.Val) {
966 Result = Tmp3;
967 break;
968 }
969 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +0000970 case TargetLowering::Expand:
971 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +0000972 break;
973 }
Chris Lattnerce872152006-03-19 06:31:19 +0000974 break;
Chris Lattner87100e02006-03-20 01:52:29 +0000975 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +0000976 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
977 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
978 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
979
980 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +0000981 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
982 default: assert(0 && "Unknown operation action!");
983 case TargetLowering::Legal:
984 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
985 "vector shuffle should not be created if not legal!");
986 break;
987 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +0000988 Tmp3 = TLI.LowerOperation(Result, DAG);
989 if (Tmp3.Val) {
990 Result = Tmp3;
991 break;
992 }
993 // FALLTHROUGH
994 case TargetLowering::Expand: {
995 MVT::ValueType VT = Node->getValueType(0);
996 MVT::ValueType EltVT = MVT::getVectorBaseType(VT);
997 MVT::ValueType PtrVT = TLI.getPointerTy();
998 SDOperand Mask = Node->getOperand(2);
999 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001000 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001001 for (unsigned i = 0; i != NumElems; ++i) {
1002 SDOperand Arg = Mask.getOperand(i);
1003 if (Arg.getOpcode() == ISD::UNDEF) {
1004 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1005 } else {
1006 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1007 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1008 if (Idx < NumElems)
1009 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1010 DAG.getConstant(Idx, PtrVT)));
1011 else
1012 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1013 DAG.getConstant(Idx - NumElems, PtrVT)));
1014 }
1015 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001016 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001017 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001018 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001019 case TargetLowering::Promote: {
1020 // Change base type to a different vector type.
1021 MVT::ValueType OVT = Node->getValueType(0);
1022 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1023
1024 // Cast the two input vectors.
1025 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1026 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1027
1028 // Convert the shuffle mask to the right # elements.
1029 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1030 assert(Tmp3.Val && "Shuffle not legal?");
1031 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1032 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1033 break;
1034 }
Chris Lattner87100e02006-03-20 01:52:29 +00001035 }
1036 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001037
1038 case ISD::EXTRACT_VECTOR_ELT:
1039 Tmp1 = LegalizeOp(Node->getOperand(0));
1040 Tmp2 = LegalizeOp(Node->getOperand(1));
1041 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattnere35c2182006-03-21 21:02:03 +00001042
1043 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT,
1044 Tmp1.getValueType())) {
1045 default: assert(0 && "This action is not supported yet!");
1046 case TargetLowering::Legal:
1047 break;
1048 case TargetLowering::Custom:
1049 Tmp3 = TLI.LowerOperation(Result, DAG);
1050 if (Tmp3.Val) {
1051 Result = Tmp3;
1052 break;
1053 }
1054 // FALLTHROUGH
Chris Lattner4aab2f42006-04-02 05:06:04 +00001055 case TargetLowering::Expand:
1056 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattnere35c2182006-03-21 21:02:03 +00001057 break;
1058 }
Chris Lattner384504c2006-03-21 20:44:12 +00001059 break;
1060
Chris Lattner15972212006-03-31 17:55:51 +00001061 case ISD::VEXTRACT_VECTOR_ELT:
1062 Result = LegalizeOp(LowerVEXTRACT_VECTOR_ELT(Op));
Chris Lattner384504c2006-03-21 20:44:12 +00001063 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001064
Chris Lattner6831a812006-02-13 09:18:02 +00001065 case ISD::CALLSEQ_START: {
1066 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1067
1068 // Recursively Legalize all of the inputs of the call end that do not lead
1069 // to this call start. This ensures that any libcalls that need be inserted
1070 // are inserted *before* the CALLSEQ_START.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001071 {std::set<SDNode*> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001072 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001073 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1074 NodesLeadingTo);
1075 }
Chris Lattner6831a812006-02-13 09:18:02 +00001076
1077 // Now that we legalized all of the inputs (which may have inserted
1078 // libcalls) create the new CALLSEQ_START node.
1079 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1080
1081 // Merge in the last call, to ensure that this call start after the last
1082 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001083 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001084 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1085 Tmp1 = LegalizeOp(Tmp1);
1086 }
Chris Lattner6831a812006-02-13 09:18:02 +00001087
1088 // Do not try to legalize the target-specific arguments (#1+).
1089 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001090 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001091 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001092 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001093 }
1094
1095 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001096 AddLegalizedOperand(Op.getValue(0), Result);
1097 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1098 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1099
Chris Lattner6831a812006-02-13 09:18:02 +00001100 // Now that the callseq_start and all of the non-call nodes above this call
1101 // sequence have been legalized, legalize the call itself. During this
1102 // process, no libcalls can/will be inserted, guaranteeing that no calls
1103 // can overlap.
1104 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1105 SDOperand InCallSEQ = LastCALLSEQ_END;
1106 // Note that we are selecting this call!
1107 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1108 IsLegalizingCall = true;
1109
1110 // Legalize the call, starting from the CALLSEQ_END.
1111 LegalizeOp(LastCALLSEQ_END);
1112 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1113 return Result;
1114 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001115 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001116 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1117 // will cause this node to be legalized as well as handling libcalls right.
1118 if (LastCALLSEQ_END.Val != Node) {
1119 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
1120 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
1121 assert(I != LegalizedNodes.end() &&
1122 "Legalizing the call start should have legalized this node!");
1123 return I->second;
1124 }
1125
1126 // Otherwise, the call start has been legalized and everything is going
1127 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001128 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001129 // Do not try to legalize the target-specific arguments (#1+), except for
1130 // an optional flag input.
1131 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1132 if (Tmp1 != Node->getOperand(0)) {
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;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001135 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001136 }
1137 } else {
1138 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1139 if (Tmp1 != Node->getOperand(0) ||
1140 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001141 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001142 Ops[0] = Tmp1;
1143 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001144 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001145 }
Chris Lattner6a542892006-01-24 05:48:21 +00001146 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001147 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001148 // This finishes up call legalization.
1149 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001150
1151 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1152 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1153 if (Node->getNumValues() == 2)
1154 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1155 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001156 case ISD::DYNAMIC_STACKALLOC: {
Chris Lattnerfa404e82005-01-09 19:03:49 +00001157 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1158 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1159 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001160 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001161
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001162 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001163 Tmp2 = Result.getValue(1);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001164 switch (TLI.getOperationAction(Node->getOpcode(),
1165 Node->getValueType(0))) {
1166 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001167 case TargetLowering::Expand: {
1168 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1169 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1170 " not tell us which reg is the stack pointer!");
1171 SDOperand Chain = Tmp1.getOperand(0);
1172 SDOperand Size = Tmp2.getOperand(1);
1173 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
1174 Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size); // Value
1175 Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1); // Output chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001176 Tmp1 = LegalizeOp(Tmp1);
1177 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001178 break;
1179 }
1180 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001181 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1182 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001183 Tmp1 = LegalizeOp(Tmp3);
1184 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001185 }
Chris Lattner903d2782006-01-15 08:54:32 +00001186 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001187 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001188 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001189 }
Chris Lattner903d2782006-01-15 08:54:32 +00001190 // Since this op produce two values, make sure to remember that we
1191 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001192 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1193 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001194 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001195 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001196 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001197 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001198 bool Changed = false;
1199 // Legalize all of the operands of the inline asm, in case they are nodes
1200 // that need to be expanded or something. Note we skip the asm string and
1201 // all of the TargetConstant flags.
1202 SDOperand Op = LegalizeOp(Ops[0]);
1203 Changed = Op != Ops[0];
1204 Ops[0] = Op;
1205
1206 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1207 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1208 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1209 for (++i; NumVals; ++i, --NumVals) {
1210 SDOperand Op = LegalizeOp(Ops[i]);
1211 if (Op != Ops[i]) {
1212 Changed = true;
1213 Ops[i] = Op;
1214 }
1215 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001216 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001217
1218 if (HasInFlag) {
1219 Op = LegalizeOp(Ops.back());
1220 Changed |= Op != Ops.back();
1221 Ops.back() = Op;
1222 }
1223
1224 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001225 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001226
1227 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001228 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001229 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1230 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001231 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001232 case ISD::BR:
1233 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001234 // Ensure that libcalls are emitted before a branch.
1235 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1236 Tmp1 = LegalizeOp(Tmp1);
1237 LastCALLSEQ_END = DAG.getEntryNode();
1238
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001239 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001240 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001241 case ISD::BRIND:
1242 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1243 // Ensure that libcalls are emitted before a branch.
1244 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1245 Tmp1 = LegalizeOp(Tmp1);
1246 LastCALLSEQ_END = DAG.getEntryNode();
1247
1248 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1249 default: assert(0 && "Indirect target must be legal type (pointer)!");
1250 case Legal:
1251 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1252 break;
1253 }
1254 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1255 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001256 case ISD::BRCOND:
1257 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001258 // Ensure that libcalls are emitted before a return.
1259 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1260 Tmp1 = LegalizeOp(Tmp1);
1261 LastCALLSEQ_END = DAG.getEntryNode();
1262
Chris Lattner47e92232005-01-18 19:27:06 +00001263 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1264 case Expand: assert(0 && "It's impossible to expand bools");
1265 case Legal:
1266 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1267 break;
1268 case Promote:
1269 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
1270 break;
1271 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001272
1273 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001274 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001275
1276 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1277 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001278 case TargetLowering::Legal: break;
1279 case TargetLowering::Custom:
1280 Tmp1 = TLI.LowerOperation(Result, DAG);
1281 if (Tmp1.Val) Result = Tmp1;
1282 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001283 case TargetLowering::Expand:
1284 // Expand brcond's setcc into its constituent parts and create a BR_CC
1285 // Node.
1286 if (Tmp2.getOpcode() == ISD::SETCC) {
1287 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1288 Tmp2.getOperand(0), Tmp2.getOperand(1),
1289 Node->getOperand(2));
1290 } else {
Chris Lattner550b1e52005-08-21 18:03:09 +00001291 // Make sure the condition is either zero or one. It may have been
1292 // promoted from something else.
Chris Lattner19c5c4c2006-01-31 05:04:52 +00001293 unsigned NumBits = MVT::getSizeInBits(Tmp2.getValueType());
1294 if (!TLI.MaskedValueIsZero(Tmp2, (~0ULL >> (64-NumBits))^1))
1295 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner550b1e52005-08-21 18:03:09 +00001296
Nate Begeman7cbd5252005-08-16 19:49:35 +00001297 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1298 DAG.getCondCode(ISD::SETNE), Tmp2,
1299 DAG.getConstant(0, Tmp2.getValueType()),
1300 Node->getOperand(2));
1301 }
1302 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001303 }
1304 break;
1305 case ISD::BR_CC:
1306 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001307 // Ensure that libcalls are emitted before a branch.
1308 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1309 Tmp1 = LegalizeOp(Tmp1);
1310 LastCALLSEQ_END = DAG.getEntryNode();
1311
Nate Begeman750ac1b2006-02-01 07:19:44 +00001312 Tmp2 = Node->getOperand(2); // LHS
1313 Tmp3 = Node->getOperand(3); // RHS
1314 Tmp4 = Node->getOperand(1); // CC
1315
1316 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1317
1318 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1319 // the LHS is a legal SETCC itself. In this case, we need to compare
1320 // the result against zero to select between true and false values.
1321 if (Tmp3.Val == 0) {
1322 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1323 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001324 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001325
1326 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1327 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001328
Chris Lattner181b7a32005-12-17 23:46:46 +00001329 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1330 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001331 case TargetLowering::Legal: break;
1332 case TargetLowering::Custom:
1333 Tmp4 = TLI.LowerOperation(Result, DAG);
1334 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001335 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001336 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001337 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001338 case ISD::LOAD: {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001339 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1340 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001341
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001342 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001343 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001344 Tmp3 = Result.getValue(0);
1345 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001346
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001347 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1348 default: assert(0 && "This action is not supported yet!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001349 case TargetLowering::Legal: break;
Chris Lattner456a93a2006-01-28 07:39:30 +00001350 case TargetLowering::Custom:
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001351 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00001352 if (Tmp1.Val) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001353 Tmp3 = LegalizeOp(Tmp1);
1354 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001355 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001356 break;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001357 case TargetLowering::Promote: {
1358 // Only promote a load of vector type to another.
1359 assert(MVT::isVector(VT) && "Cannot promote this load!");
1360 // Change base type to a different vector type.
1361 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1362
1363 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, Node->getOperand(2));
1364 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1365 Tmp4 = LegalizeOp(Tmp1.getValue(1));
1366 break;
1367 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001368 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001369 // Since loads produce two values, make sure to remember that we
1370 // legalized both of them.
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001371 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1372 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1373 return Op.ResNo ? Tmp4 : Tmp3;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001374 }
Chris Lattner0f69b292005-01-15 06:18:18 +00001375 case ISD::EXTLOAD:
1376 case ISD::SEXTLOAD:
Chris Lattner01ff7212005-04-10 22:54:25 +00001377 case ISD::ZEXTLOAD: {
Chris Lattner0f69b292005-01-15 06:18:18 +00001378 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1379 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattner0f69b292005-01-15 06:18:18 +00001380
Chris Lattner5f056bf2005-07-10 01:55:33 +00001381 MVT::ValueType SrcVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
Chris Lattner01ff7212005-04-10 22:54:25 +00001382 switch (TLI.getOperationAction(Node->getOpcode(), SrcVT)) {
Chris Lattner01ff7212005-04-10 22:54:25 +00001383 default: assert(0 && "This action is not supported yet!");
Chris Lattner1c51c6a2005-04-12 20:30:10 +00001384 case TargetLowering::Promote:
1385 assert(SrcVT == MVT::i1 && "Can only promote EXTLOAD from i1 -> i8!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001386 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
1387 DAG.getValueType(MVT::i8));
1388 Tmp1 = Result.getValue(0);
1389 Tmp2 = Result.getValue(1);
1390 break;
Chris Lattner456a93a2006-01-28 07:39:30 +00001391 case TargetLowering::Custom:
1392 isCustom = true;
1393 // FALLTHROUGH
Chris Lattner01ff7212005-04-10 22:54:25 +00001394 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001395 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
1396 Node->getOperand(3));
1397 Tmp1 = Result.getValue(0);
1398 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001399
1400 if (isCustom) {
1401 Tmp3 = TLI.LowerOperation(Tmp3, DAG);
1402 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001403 Tmp1 = LegalizeOp(Tmp3);
1404 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001405 }
1406 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001407 break;
Chris Lattner01ff7212005-04-10 22:54:25 +00001408 case TargetLowering::Expand:
Chris Lattner69a889e2005-12-20 00:53:54 +00001409 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001410 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1411 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, Node->getOperand(2));
Andrew Lenharth31559082005-06-30 19:32:57 +00001412 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001413 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1414 Tmp2 = LegalizeOp(Load.getValue(1));
1415 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001416 }
Chris Lattner01ff7212005-04-10 22:54:25 +00001417 assert(Node->getOpcode() != ISD::EXTLOAD &&
1418 "EXTLOAD should always be supported!");
1419 // Turn the unsupported load into an EXTLOAD followed by an explicit
1420 // zero/sign extend inreg.
Chris Lattner5f056bf2005-07-10 01:55:33 +00001421 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1422 Tmp1, Tmp2, Node->getOperand(2), SrcVT);
Chris Lattner23993562005-04-13 02:38:47 +00001423 SDOperand ValRes;
1424 if (Node->getOpcode() == ISD::SEXTLOAD)
1425 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00001426 Result, DAG.getValueType(SrcVT));
Chris Lattner23993562005-04-13 02:38:47 +00001427 else
1428 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001429 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1430 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1431 break;
Chris Lattner01ff7212005-04-10 22:54:25 +00001432 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001433 // Since loads produce two values, make sure to remember that we legalized
1434 // both of them.
1435 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1436 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1437 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00001438 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001439 case ISD::EXTRACT_ELEMENT: {
1440 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1441 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001442 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00001443 case Legal:
1444 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1445 // 1 -> Hi
1446 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1447 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1448 TLI.getShiftAmountTy()));
1449 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1450 } else {
1451 // 0 -> Lo
1452 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1453 Node->getOperand(0));
1454 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001455 break;
1456 case Expand:
1457 // Get both the low and high parts.
1458 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1459 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1460 Result = Tmp2; // 1 -> Hi
1461 else
1462 Result = Tmp1; // 0 -> Lo
1463 break;
1464 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001465 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00001466 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001467
1468 case ISD::CopyToReg:
1469 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00001470
Chris Lattnerc9c60f62005-08-24 16:35:28 +00001471 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001472 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00001473 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001474 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001475 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001476 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001477 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001478 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001479 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001480 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001481 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1482 Tmp3);
1483 } else {
1484 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001485 }
1486
1487 // Since this produces two values, make sure to remember that we legalized
1488 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001489 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001490 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001491 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00001492 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001493 break;
1494
1495 case ISD::RET:
1496 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001497
1498 // Ensure that libcalls are emitted before a return.
1499 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1500 Tmp1 = LegalizeOp(Tmp1);
1501 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00001502
Chris Lattner3e928bb2005-01-07 07:47:09 +00001503 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00001504 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00001505 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001506 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00001507 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001508 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00001509 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001510 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00001511 case Expand:
1512 if (Tmp2.getValueType() != MVT::Vector) {
1513 SDOperand Lo, Hi;
1514 ExpandOp(Tmp2, Lo, Hi);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001515 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00001516 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001517 } else {
1518 SDNode *InVal = Tmp2.Val;
1519 unsigned NumElems =
1520 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1521 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1522
1523 // Figure out if there is a Packed type corresponding to this Vector
1524 // type. If so, convert to the packed type.
1525 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1526 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1527 // Turn this into a return of the packed type.
1528 Tmp2 = PackVectorOp(Tmp2, TVT);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001529 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001530 } else if (NumElems == 1) {
1531 // Turn this into a return of the scalar type.
1532 Tmp2 = PackVectorOp(Tmp2, EVT);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001533 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001534
1535 // FIXME: Returns of gcc generic vectors smaller than a legal type
1536 // should be returned in integer registers!
1537
Chris Lattnerf87324e2006-04-11 01:31:51 +00001538 // The scalarized value type may not be legal, e.g. it might require
1539 // promotion or expansion. Relegalize the return.
1540 Result = LegalizeOp(Result);
1541 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001542 // FIXME: Returns of gcc generic vectors larger than a legal vector
1543 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00001544 SDOperand Lo, Hi;
1545 SplitVectorOp(Tmp2, Lo, Hi);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001546 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001547 Result = LegalizeOp(Result);
1548 }
1549 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001550 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001551 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001552 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001553 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001554 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001555 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001556 }
1557 break;
1558 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001559 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001560 break;
1561 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001562 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001563 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001564 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00001565 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1566 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00001567 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001568 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001569 break;
1570 case Expand: {
1571 SDOperand Lo, Hi;
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001572 assert(Node->getOperand(i).getValueType() != MVT::Vector &&
1573 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001574 ExpandOp(Node->getOperand(i), Lo, Hi);
1575 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001576 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001577 NewValues.push_back(Hi);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001578 NewValues.push_back(Node->getOperand(i+1));
Misha Brukmanedf128a2005-04-21 22:36:52 +00001579 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001580 }
1581 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001582 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001583 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001584
1585 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001586 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001587 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001588 Result = DAG.getNode(ISD::RET, MVT::Other,
1589 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00001590 break;
1591 }
1592 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001593
Chris Lattner6862dbc2006-01-29 21:02:23 +00001594 if (Result.getOpcode() == ISD::RET) {
1595 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1596 default: assert(0 && "This action is not supported yet!");
1597 case TargetLowering::Legal: break;
1598 case TargetLowering::Custom:
1599 Tmp1 = TLI.LowerOperation(Result, DAG);
1600 if (Tmp1.Val) Result = Tmp1;
1601 break;
1602 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001603 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001604 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001605 case ISD::STORE: {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001606 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1607 Tmp2 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
1608
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001609 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Chris Lattner456a93a2006-01-28 07:39:30 +00001610 // FIXME: We shouldn't do this for TargetConstantFP's.
Chris Lattner06ac6ab2006-03-15 22:19:18 +00001611 // FIXME: move this to the DAG Combiner!
Chris Lattner03c85462005-01-15 05:21:40 +00001612 if (ConstantFPSDNode *CFP =dyn_cast<ConstantFPSDNode>(Node->getOperand(1))){
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001613 if (CFP->getValueType(0) == MVT::f32) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001614 Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001615 } else {
1616 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001617 Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001618 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001619 Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Tmp3, Tmp2,
1620 Node->getOperand(3));
Chris Lattner6a542892006-01-24 05:48:21 +00001621 break;
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001622 }
1623
Chris Lattner3e928bb2005-01-07 07:47:09 +00001624 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1625 case Legal: {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001626 Tmp3 = LegalizeOp(Node->getOperand(1));
1627 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1628 Node->getOperand(3));
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001629
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001630 MVT::ValueType VT = Tmp3.getValueType();
Chris Lattner456a93a2006-01-28 07:39:30 +00001631 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1632 default: assert(0 && "This action is not supported yet!");
1633 case TargetLowering::Legal: break;
1634 case TargetLowering::Custom:
1635 Tmp1 = TLI.LowerOperation(Result, DAG);
1636 if (Tmp1.Val) Result = Tmp1;
1637 break;
Chris Lattner2efce0a2006-04-16 01:36:45 +00001638 case TargetLowering::Promote:
1639 assert(MVT::isVector(VT) && "Unknown legal promote case!");
1640 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
1641 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
1642 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1643 Node->getOperand(3));
1644 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001645 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001646 break;
1647 }
1648 case Promote:
Chris Lattner03c85462005-01-15 05:21:40 +00001649 // Truncate the value and store the result.
1650 Tmp3 = PromoteOp(Node->getOperand(1));
1651 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp3, Tmp2,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001652 Node->getOperand(3),
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001653 DAG.getValueType(Node->getOperand(1).getValueType()));
Chris Lattner03c85462005-01-15 05:21:40 +00001654 break;
1655
Chris Lattner3e928bb2005-01-07 07:47:09 +00001656 case Expand:
Chris Lattnerc7029802006-03-18 01:44:44 +00001657 unsigned IncrementSize = 0;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001658 SDOperand Lo, Hi;
Chris Lattnerc7029802006-03-18 01:44:44 +00001659
1660 // If this is a vector type, then we have to calculate the increment as
1661 // the product of the element size in bytes, and the number of elements
1662 // in the high half of the vector.
1663 if (Node->getOperand(1).getValueType() == MVT::Vector) {
1664 SDNode *InVal = Node->getOperand(1).Val;
1665 unsigned NumElems =
1666 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1667 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1668
1669 // Figure out if there is a Packed type corresponding to this Vector
1670 // type. If so, convert to the packed type.
1671 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1672 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1673 // Turn this into a normal store of the packed type.
1674 Tmp3 = PackVectorOp(Node->getOperand(1), TVT);
1675 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1676 Node->getOperand(3));
Chris Lattner2efce0a2006-04-16 01:36:45 +00001677 Result = LegalizeOp(Result);
Chris Lattnerc7029802006-03-18 01:44:44 +00001678 break;
1679 } else if (NumElems == 1) {
1680 // Turn this into a normal store of the scalar type.
1681 Tmp3 = PackVectorOp(Node->getOperand(1), EVT);
1682 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1683 Node->getOperand(3));
Chris Lattner2ae2e982006-03-31 17:37:22 +00001684 // The scalarized value type may not be legal, e.g. it might require
1685 // promotion or expansion. Relegalize the scalar store.
1686 Result = LegalizeOp(Result);
Chris Lattnerc7029802006-03-18 01:44:44 +00001687 break;
1688 } else {
1689 SplitVectorOp(Node->getOperand(1), Lo, Hi);
1690 IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
1691 }
1692 } else {
1693 ExpandOp(Node->getOperand(1), Lo, Hi);
1694 IncrementSize = MVT::getSizeInBits(Hi.getValueType())/8;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001695
Chris Lattnerd9731af2006-03-31 18:20:46 +00001696 if (!TLI.isLittleEndian())
1697 std::swap(Lo, Hi);
1698 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001699
Chris Lattneredb1add2005-05-11 04:51:16 +00001700 Lo = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Lo, Tmp2,
1701 Node->getOperand(3));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001702 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1703 getIntPtrConstant(IncrementSize));
1704 assert(isTypeLegal(Tmp2.getValueType()) &&
1705 "Pointers must be legal!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001706 // FIXME: This sets the srcvalue of both halves to be the same, which is
1707 // wrong.
Chris Lattneredb1add2005-05-11 04:51:16 +00001708 Hi = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Hi, Tmp2,
1709 Node->getOperand(3));
Chris Lattnerec39a452005-01-19 18:02:17 +00001710 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1711 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001712 }
1713 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001714 }
Andrew Lenharth95762122005-03-31 21:24:06 +00001715 case ISD::PCMARKER:
1716 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001717 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00001718 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001719 case ISD::STACKSAVE:
1720 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001721 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1722 Tmp1 = Result.getValue(0);
1723 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001724
Chris Lattner140d53c2006-01-13 02:50:02 +00001725 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1726 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001727 case TargetLowering::Legal: break;
1728 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001729 Tmp3 = TLI.LowerOperation(Result, DAG);
1730 if (Tmp3.Val) {
1731 Tmp1 = LegalizeOp(Tmp3);
1732 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00001733 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001734 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001735 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001736 // Expand to CopyFromReg if the target set
1737 // StackPointerRegisterToSaveRestore.
1738 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001739 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001740 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001741 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001742 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001743 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1744 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001745 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001746 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001747 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001748
1749 // Since stacksave produce two values, make sure to remember that we
1750 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001751 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1752 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1753 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00001754
Chris Lattner140d53c2006-01-13 02:50:02 +00001755 case ISD::STACKRESTORE:
1756 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1757 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001758 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00001759
1760 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1761 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001762 case TargetLowering::Legal: break;
1763 case TargetLowering::Custom:
1764 Tmp1 = TLI.LowerOperation(Result, DAG);
1765 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00001766 break;
1767 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001768 // Expand to CopyToReg if the target set
1769 // StackPointerRegisterToSaveRestore.
1770 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1771 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1772 } else {
1773 Result = Tmp1;
1774 }
Chris Lattner140d53c2006-01-13 02:50:02 +00001775 break;
1776 }
1777 break;
1778
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001779 case ISD::READCYCLECOUNTER:
1780 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001781 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth49c709f2005-12-02 04:56:24 +00001782
1783 // Since rdcc produce two values, make sure to remember that we legalized
1784 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001785 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Andrew Lenharth49c709f2005-12-02 04:56:24 +00001786 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001787 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00001788
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001789 case ISD::TRUNCSTORE: {
Chris Lattner0f69b292005-01-15 06:18:18 +00001790 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1791 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
1792
Chris Lattner456a93a2006-01-28 07:39:30 +00001793 assert(isTypeLegal(Node->getOperand(1).getValueType()) &&
1794 "Cannot handle illegal TRUNCSTORE yet!");
1795 Tmp2 = LegalizeOp(Node->getOperand(1));
1796
1797 // The only promote case we handle is TRUNCSTORE:i1 X into
1798 // -> TRUNCSTORE:i8 (and X, 1)
1799 if (cast<VTSDNode>(Node->getOperand(4))->getVT() == MVT::i1 &&
1800 TLI.getOperationAction(ISD::TRUNCSTORE, MVT::i1) ==
1801 TargetLowering::Promote) {
1802 // Promote the bool to a mask then store.
1803 Tmp2 = DAG.getNode(ISD::AND, Tmp2.getValueType(), Tmp2,
1804 DAG.getConstant(1, Tmp2.getValueType()));
1805 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp2, Tmp3,
1806 Node->getOperand(3), DAG.getValueType(MVT::i8));
Chris Lattner13d58e72005-09-10 00:20:18 +00001807
Chris Lattner456a93a2006-01-28 07:39:30 +00001808 } else if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) ||
1809 Tmp3 != Node->getOperand(2)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001810 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
1811 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001812 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001813
Chris Lattner456a93a2006-01-28 07:39:30 +00001814 MVT::ValueType StVT = cast<VTSDNode>(Result.Val->getOperand(4))->getVT();
1815 switch (TLI.getOperationAction(Result.Val->getOpcode(), StVT)) {
1816 default: assert(0 && "This action is not supported yet!");
1817 case TargetLowering::Legal: break;
1818 case TargetLowering::Custom:
1819 Tmp1 = TLI.LowerOperation(Result, DAG);
1820 if (Tmp1.Val) Result = Tmp1;
Chris Lattner0f69b292005-01-15 06:18:18 +00001821 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00001822 }
1823 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001824 }
Chris Lattner2ee743f2005-01-14 22:08:15 +00001825 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00001826 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1827 case Expand: assert(0 && "It's impossible to expand bools");
1828 case Legal:
1829 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1830 break;
1831 case Promote:
1832 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
1833 break;
1834 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001835 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00001836 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001837
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001838 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00001839
Nate Begemanb942a3d2005-08-23 04:29:48 +00001840 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001841 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001842 case TargetLowering::Legal: break;
1843 case TargetLowering::Custom: {
1844 Tmp1 = TLI.LowerOperation(Result, DAG);
1845 if (Tmp1.Val) Result = Tmp1;
1846 break;
1847 }
Nate Begeman9373a812005-08-10 20:51:12 +00001848 case TargetLowering::Expand:
1849 if (Tmp1.getOpcode() == ISD::SETCC) {
1850 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
1851 Tmp2, Tmp3,
1852 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1853 } else {
Chris Lattner550b1e52005-08-21 18:03:09 +00001854 // Make sure the condition is either zero or one. It may have been
1855 // promoted from something else.
Chris Lattner0e753d62006-01-30 04:22:28 +00001856 unsigned NumBits = MVT::getSizeInBits(Tmp1.getValueType());
1857 if (!TLI.MaskedValueIsZero(Tmp1, (~0ULL >> (64-NumBits))^1))
1858 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Nate Begeman9373a812005-08-10 20:51:12 +00001859 Result = DAG.getSelectCC(Tmp1,
1860 DAG.getConstant(0, Tmp1.getValueType()),
1861 Tmp2, Tmp3, ISD::SETNE);
1862 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001863 break;
1864 case TargetLowering::Promote: {
1865 MVT::ValueType NVT =
1866 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1867 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001868 if (MVT::isVector(Tmp2.getValueType())) {
1869 ExtOp = ISD::BIT_CONVERT;
1870 TruncOp = ISD::BIT_CONVERT;
1871 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001872 ExtOp = ISD::ANY_EXTEND;
1873 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001874 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00001875 ExtOp = ISD::FP_EXTEND;
1876 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001877 }
1878 // Promote each of the values to the new type.
1879 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
1880 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
1881 // Perform the larger operation, then round down.
1882 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
1883 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
1884 break;
1885 }
1886 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001887 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00001888 case ISD::SELECT_CC: {
1889 Tmp1 = Node->getOperand(0); // LHS
1890 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00001891 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
1892 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00001893 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00001894
Nate Begeman750ac1b2006-02-01 07:19:44 +00001895 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
1896
1897 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1898 // the LHS is a legal SETCC itself. In this case, we need to compare
1899 // the result against zero to select between true and false values.
1900 if (Tmp2.Val == 0) {
1901 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
1902 CC = DAG.getCondCode(ISD::SETNE);
1903 }
1904 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
1905
1906 // Everything is legal, see if we should expand this op or something.
1907 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
1908 default: assert(0 && "This action is not supported yet!");
1909 case TargetLowering::Legal: break;
1910 case TargetLowering::Custom:
1911 Tmp1 = TLI.LowerOperation(Result, DAG);
1912 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00001913 break;
Nate Begeman9373a812005-08-10 20:51:12 +00001914 }
1915 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00001916 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001917 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00001918 Tmp1 = Node->getOperand(0);
1919 Tmp2 = Node->getOperand(1);
1920 Tmp3 = Node->getOperand(2);
1921 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
1922
1923 // If we had to Expand the SetCC operands into a SELECT node, then it may
1924 // not always be possible to return a true LHS & RHS. In this case, just
1925 // return the value we legalized, returned in the LHS
1926 if (Tmp2.Val == 0) {
1927 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001928 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001929 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00001930
Chris Lattner73e142f2006-01-30 22:43:50 +00001931 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001932 default: assert(0 && "Cannot handle this action for SETCC yet!");
1933 case TargetLowering::Custom:
1934 isCustom = true;
1935 // FALLTHROUGH.
1936 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001937 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00001938 if (isCustom) {
1939 Tmp3 = TLI.LowerOperation(Result, DAG);
1940 if (Tmp3.Val) Result = Tmp3;
1941 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00001942 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00001943 case TargetLowering::Promote: {
1944 // First step, figure out the appropriate operation to use.
1945 // Allow SETCC to not be supported for all legal data types
1946 // Mostly this targets FP
1947 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
1948 MVT::ValueType OldVT = NewInTy;
1949
1950 // Scan for the appropriate larger type to use.
1951 while (1) {
1952 NewInTy = (MVT::ValueType)(NewInTy+1);
1953
1954 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
1955 "Fell off of the edge of the integer world");
1956 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
1957 "Fell off of the edge of the floating point world");
1958
1959 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00001960 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00001961 break;
1962 }
1963 if (MVT::isInteger(NewInTy))
1964 assert(0 && "Cannot promote Legal Integer SETCC yet");
1965 else {
1966 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
1967 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
1968 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001969 Tmp1 = LegalizeOp(Tmp1);
1970 Tmp2 = LegalizeOp(Tmp2);
1971 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Cheng433f8ac2006-01-17 19:47:13 +00001972 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00001973 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00001974 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00001975 case TargetLowering::Expand:
1976 // Expand a setcc node into a select_cc of the same condition, lhs, and
1977 // rhs that selects between const 1 (true) and const 0 (false).
1978 MVT::ValueType VT = Node->getValueType(0);
1979 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
1980 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
1981 Node->getOperand(2));
Nate Begemanb942a3d2005-08-23 04:29:48 +00001982 break;
1983 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001984 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00001985 case ISD::MEMSET:
1986 case ISD::MEMCPY:
1987 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00001988 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00001989 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
1990
1991 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
1992 switch (getTypeAction(Node->getOperand(2).getValueType())) {
1993 case Expand: assert(0 && "Cannot expand a byte!");
1994 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00001995 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00001996 break;
1997 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00001998 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00001999 break;
2000 }
2001 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002002 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00002003 }
Chris Lattner272455b2005-02-02 03:44:41 +00002004
2005 SDOperand Tmp4;
2006 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00002007 case Expand: {
2008 // Length is too big, just take the lo-part of the length.
2009 SDOperand HiPart;
2010 ExpandOp(Node->getOperand(3), HiPart, Tmp4);
2011 break;
2012 }
Chris Lattnere5605212005-01-28 22:29:18 +00002013 case Legal:
2014 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00002015 break;
2016 case Promote:
2017 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00002018 break;
2019 }
2020
2021 SDOperand Tmp5;
2022 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2023 case Expand: assert(0 && "Cannot expand this yet!");
2024 case Legal:
2025 Tmp5 = LegalizeOp(Node->getOperand(4));
2026 break;
2027 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00002028 Tmp5 = PromoteOp(Node->getOperand(4));
2029 break;
2030 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002031
2032 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2033 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002034 case TargetLowering::Custom:
2035 isCustom = true;
2036 // FALLTHROUGH
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002037 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002038 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner456a93a2006-01-28 07:39:30 +00002039 if (isCustom) {
2040 Tmp1 = TLI.LowerOperation(Result, DAG);
2041 if (Tmp1.Val) Result = Tmp1;
2042 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002043 break;
2044 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00002045 // Otherwise, the target does not support this operation. Lower the
2046 // operation to an explicit libcall as appropriate.
2047 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00002048 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Chris Lattnere1bd8222005-01-11 05:57:22 +00002049 std::vector<std::pair<SDOperand, const Type*> > Args;
2050
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00002051 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002052 if (Node->getOpcode() == ISD::MEMSET) {
2053 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
Chris Lattnerdca7abe2006-02-20 06:38:35 +00002054 // Extend the (previously legalized) ubyte argument to be an int value
2055 // for the call.
2056 if (Tmp3.getValueType() > MVT::i32)
2057 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2058 else
2059 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002060 Args.push_back(std::make_pair(Tmp3, Type::IntTy));
2061 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2062
2063 FnName = "memset";
2064 } else if (Node->getOpcode() == ISD::MEMCPY ||
2065 Node->getOpcode() == ISD::MEMMOVE) {
2066 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
2067 Args.push_back(std::make_pair(Tmp3, IntPtrTy));
2068 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2069 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2070 } else {
2071 assert(0 && "Unknown op!");
2072 }
Chris Lattner45982da2005-05-12 16:53:42 +00002073
Chris Lattnere1bd8222005-01-11 05:57:22 +00002074 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattneradf6a962005-05-13 18:50:42 +00002075 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00002076 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00002077 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002078 break;
2079 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00002080 }
2081 break;
2082 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002083
Chris Lattner5b359c62005-04-02 04:00:59 +00002084 case ISD::SHL_PARTS:
2085 case ISD::SRA_PARTS:
2086 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002087 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002088 bool Changed = false;
2089 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2090 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2091 Changed |= Ops.back() != Node->getOperand(i);
2092 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002093 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002094 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002095
Evan Cheng05a2d562006-01-09 18:31:59 +00002096 switch (TLI.getOperationAction(Node->getOpcode(),
2097 Node->getValueType(0))) {
2098 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002099 case TargetLowering::Legal: break;
2100 case TargetLowering::Custom:
2101 Tmp1 = TLI.LowerOperation(Result, DAG);
2102 if (Tmp1.Val) {
2103 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002104 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002105 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002106 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2107 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002108 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002109 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002110 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002111 return RetVal;
2112 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002113 break;
2114 }
2115
Chris Lattner2c8086f2005-04-02 05:00:07 +00002116 // Since these produce multiple values, make sure to remember that we
2117 // legalized all of them.
2118 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2119 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2120 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002121 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002122
2123 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002124 case ISD::ADD:
2125 case ISD::SUB:
2126 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002127 case ISD::MULHS:
2128 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002129 case ISD::UDIV:
2130 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002131 case ISD::AND:
2132 case ISD::OR:
2133 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002134 case ISD::SHL:
2135 case ISD::SRL:
2136 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002137 case ISD::FADD:
2138 case ISD::FSUB:
2139 case ISD::FMUL:
2140 case ISD::FDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002141 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002142 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2143 case Expand: assert(0 && "Not possible");
2144 case Legal:
2145 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2146 break;
2147 case Promote:
2148 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2149 break;
2150 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002151
2152 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002153
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002154 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002155 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002156 case TargetLowering::Legal: break;
2157 case TargetLowering::Custom:
2158 Tmp1 = TLI.LowerOperation(Result, DAG);
2159 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002160 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002161 case TargetLowering::Expand: {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002162 if (Node->getValueType(0) == MVT::i32) {
2163 switch (Node->getOpcode()) {
2164 default: assert(0 && "Do not know how to expand this integer BinOp!");
2165 case ISD::UDIV:
2166 case ISD::SDIV:
2167 const char *FnName = Node->getOpcode() == ISD::UDIV
2168 ? "__udivsi3" : "__divsi3";
2169 SDOperand Dummy;
2170 Result = ExpandLibCall(FnName, Node, Dummy);
2171 };
2172 break;
2173 }
2174
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002175 assert(MVT::isVector(Node->getValueType(0)) &&
2176 "Cannot expand this binary operator!");
2177 // Expand the operation into a bunch of nasty scalar code.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002178 SmallVector<SDOperand, 8> Ops;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002179 MVT::ValueType EltVT = MVT::getVectorBaseType(Node->getValueType(0));
2180 MVT::ValueType PtrVT = TLI.getPointerTy();
2181 for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2182 i != e; ++i) {
2183 SDOperand Idx = DAG.getConstant(i, PtrVT);
2184 SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2185 SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2186 Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2187 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002188 Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0),
2189 &Ops[0], Ops.size());
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002190 break;
2191 }
Evan Chengcc987612006-04-12 21:20:24 +00002192 case TargetLowering::Promote: {
2193 switch (Node->getOpcode()) {
2194 default: assert(0 && "Do not know how to promote this BinOp!");
2195 case ISD::AND:
2196 case ISD::OR:
2197 case ISD::XOR: {
2198 MVT::ValueType OVT = Node->getValueType(0);
2199 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2200 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2201 // Bit convert each of the values to the new type.
2202 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2203 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2204 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2205 // Bit convert the result back the original type.
2206 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2207 break;
2208 }
2209 }
2210 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002211 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002212 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002213
2214 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2215 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2216 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2217 case Expand: assert(0 && "Not possible");
2218 case Legal:
2219 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2220 break;
2221 case Promote:
2222 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2223 break;
2224 }
2225
2226 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2227
2228 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2229 default: assert(0 && "Operation not supported");
2230 case TargetLowering::Custom:
2231 Tmp1 = TLI.LowerOperation(Result, DAG);
2232 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00002233 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002234 case TargetLowering::Legal: break;
2235 case TargetLowering::Expand:
Chris Lattner8f4191d2006-03-13 06:08:38 +00002236 // If this target supports fabs/fneg natively, do this efficiently.
2237 if (TLI.isOperationLegal(ISD::FABS, Tmp1.getValueType()) &&
2238 TLI.isOperationLegal(ISD::FNEG, Tmp1.getValueType())) {
2239 // Get the sign bit of the RHS.
2240 MVT::ValueType IVT =
2241 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2242 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2243 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2244 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2245 // Get the absolute value of the result.
2246 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2247 // Select between the nabs and abs value based on the sign bit of
2248 // the input.
2249 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2250 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2251 AbsVal),
2252 AbsVal);
2253 Result = LegalizeOp(Result);
2254 break;
2255 }
2256
2257 // Otherwise, do bitwise ops!
2258
2259 // copysign -> copysignf/copysign libcall.
Chris Lattnera09f8482006-03-05 05:09:38 +00002260 const char *FnName;
2261 if (Node->getValueType(0) == MVT::f32) {
2262 FnName = "copysignf";
2263 if (Tmp2.getValueType() != MVT::f32) // Force operands to match type.
2264 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2265 DAG.getNode(ISD::FP_ROUND, MVT::f32, Tmp2));
2266 } else {
2267 FnName = "copysign";
2268 if (Tmp2.getValueType() != MVT::f64) // Force operands to match type.
2269 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2270 DAG.getNode(ISD::FP_EXTEND, MVT::f64, Tmp2));
2271 }
2272 SDOperand Dummy;
2273 Result = ExpandLibCall(FnName, Node, Dummy);
2274 break;
2275 }
2276 break;
2277
Nate Begeman551bf3f2006-02-17 05:43:56 +00002278 case ISD::ADDC:
2279 case ISD::SUBC:
2280 Tmp1 = LegalizeOp(Node->getOperand(0));
2281 Tmp2 = LegalizeOp(Node->getOperand(1));
2282 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2283 // Since this produces two values, make sure to remember that we legalized
2284 // both of them.
2285 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2286 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2287 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002288
Nate Begeman551bf3f2006-02-17 05:43:56 +00002289 case ISD::ADDE:
2290 case ISD::SUBE:
2291 Tmp1 = LegalizeOp(Node->getOperand(0));
2292 Tmp2 = LegalizeOp(Node->getOperand(1));
2293 Tmp3 = LegalizeOp(Node->getOperand(2));
2294 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2295 // Since this produces two values, make sure to remember that we legalized
2296 // both of them.
2297 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2298 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2299 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002300
Nate Begeman419f8b62005-10-18 00:27:41 +00002301 case ISD::BUILD_PAIR: {
2302 MVT::ValueType PairTy = Node->getValueType(0);
2303 // TODO: handle the case where the Lo and Hi operands are not of legal type
2304 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2305 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2306 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002307 case TargetLowering::Promote:
2308 case TargetLowering::Custom:
2309 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00002310 case TargetLowering::Legal:
2311 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2312 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2313 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00002314 case TargetLowering::Expand:
2315 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2316 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2317 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2318 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2319 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00002320 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00002321 break;
2322 }
2323 break;
2324 }
2325
Nate Begemanc105e192005-04-06 00:23:54 +00002326 case ISD::UREM:
2327 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002328 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00002329 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2330 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002331
Nate Begemanc105e192005-04-06 00:23:54 +00002332 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002333 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2334 case TargetLowering::Custom:
2335 isCustom = true;
2336 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00002337 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002338 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002339 if (isCustom) {
2340 Tmp1 = TLI.LowerOperation(Result, DAG);
2341 if (Tmp1.Val) Result = Tmp1;
2342 }
Nate Begemanc105e192005-04-06 00:23:54 +00002343 break;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002344 case TargetLowering::Expand:
Evan Cheng6b5578f2006-09-18 23:28:33 +00002345 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002346 if (MVT::isInteger(Node->getValueType(0))) {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002347 if (TLI.getOperationAction(DivOpc, Node->getValueType(0)) ==
2348 TargetLowering::Legal) {
2349 // X % Y -> X-X/Y*Y
2350 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng6b5578f2006-09-18 23:28:33 +00002351 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002352 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2353 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2354 } else {
2355 assert(Node->getValueType(0) == MVT::i32 &&
2356 "Cannot expand this binary operator!");
2357 const char *FnName = Node->getOpcode() == ISD::UREM
2358 ? "__umodsi3" : "__modsi3";
2359 SDOperand Dummy;
2360 Result = ExpandLibCall(FnName, Node, Dummy);
2361 }
Chris Lattner4c64dd72005-08-03 20:31:37 +00002362 } else {
2363 // Floating point mod -> fmod libcall.
2364 const char *FnName = Node->getValueType(0) == MVT::f32 ? "fmodf":"fmod";
2365 SDOperand Dummy;
Chris Lattner9c6b4b82006-01-28 04:28:26 +00002366 Result = ExpandLibCall(FnName, Node, Dummy);
Nate Begemanc105e192005-04-06 00:23:54 +00002367 }
2368 break;
2369 }
2370 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00002371 case ISD::VAARG: {
2372 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2373 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2374
Chris Lattner5c62f332006-01-28 07:42:08 +00002375 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00002376 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2377 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002378 case TargetLowering::Custom:
2379 isCustom = true;
2380 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002381 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002382 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2383 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002384 Tmp1 = Result.getValue(1);
2385
2386 if (isCustom) {
2387 Tmp2 = TLI.LowerOperation(Result, DAG);
2388 if (Tmp2.Val) {
2389 Result = LegalizeOp(Tmp2);
2390 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2391 }
2392 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002393 break;
2394 case TargetLowering::Expand: {
2395 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
2396 Node->getOperand(2));
2397 // Increment the pointer, VAList, to the next vaarg
2398 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2399 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2400 TLI.getPointerTy()));
2401 // Store the incremented VAList to the legalized pointer
2402 Tmp3 = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), Tmp3, Tmp2,
2403 Node->getOperand(2));
2404 // Load the actual argument out of the pointer VAList
2405 Result = DAG.getLoad(VT, Tmp3, VAList, DAG.getSrcValue(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002406 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00002407 Result = LegalizeOp(Result);
2408 break;
2409 }
2410 }
2411 // Since VAARG produces two values, make sure to remember that we
2412 // legalized both of them.
2413 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00002414 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2415 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00002416 }
2417
2418 case ISD::VACOPY:
2419 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2420 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2421 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
2422
2423 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2424 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002425 case TargetLowering::Custom:
2426 isCustom = true;
2427 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002428 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002429 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2430 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00002431 if (isCustom) {
2432 Tmp1 = TLI.LowerOperation(Result, DAG);
2433 if (Tmp1.Val) Result = Tmp1;
2434 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002435 break;
2436 case TargetLowering::Expand:
2437 // This defaults to loading a pointer from the input and storing it to the
2438 // output, returning the chain.
2439 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, Node->getOperand(3));
2440 Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp4.getValue(1), Tmp4, Tmp2,
2441 Node->getOperand(4));
Nate Begemanacc398c2006-01-25 18:21:52 +00002442 break;
2443 }
2444 break;
2445
2446 case ISD::VAEND:
2447 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2448 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2449
2450 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2451 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002452 case TargetLowering::Custom:
2453 isCustom = true;
2454 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002455 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002456 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00002457 if (isCustom) {
2458 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2459 if (Tmp1.Val) Result = Tmp1;
2460 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002461 break;
2462 case TargetLowering::Expand:
2463 Result = Tmp1; // Default to a no-op, return the chain
2464 break;
2465 }
2466 break;
2467
2468 case ISD::VASTART:
2469 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2470 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2471
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002472 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2473
Nate Begemanacc398c2006-01-25 18:21:52 +00002474 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2475 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002476 case TargetLowering::Legal: break;
2477 case TargetLowering::Custom:
2478 Tmp1 = TLI.LowerOperation(Result, DAG);
2479 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00002480 break;
2481 }
2482 break;
2483
Nate Begeman35ef9132006-01-11 21:21:00 +00002484 case ISD::ROTL:
2485 case ISD::ROTR:
2486 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2487 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002488
2489 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
2490 "Cannot handle this yet!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002491 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Nate Begeman35ef9132006-01-11 21:21:00 +00002492 break;
2493
Nate Begemand88fc032006-01-14 03:14:10 +00002494 case ISD::BSWAP:
2495 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2496 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002497 case TargetLowering::Custom:
2498 assert(0 && "Cannot custom legalize this yet!");
2499 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002500 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002501 break;
2502 case TargetLowering::Promote: {
2503 MVT::ValueType OVT = Tmp1.getValueType();
2504 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2505 unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00002506
Chris Lattner456a93a2006-01-28 07:39:30 +00002507 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2508 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2509 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2510 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2511 break;
2512 }
2513 case TargetLowering::Expand:
2514 Result = ExpandBSWAP(Tmp1);
2515 break;
Nate Begemand88fc032006-01-14 03:14:10 +00002516 }
2517 break;
2518
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002519 case ISD::CTPOP:
2520 case ISD::CTTZ:
2521 case ISD::CTLZ:
2522 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2523 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002524 case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002525 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002526 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002527 break;
2528 case TargetLowering::Promote: {
2529 MVT::ValueType OVT = Tmp1.getValueType();
2530 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00002531
2532 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002533 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2534 // Perform the larger operation, then subtract if needed.
2535 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002536 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002537 case ISD::CTPOP:
2538 Result = Tmp1;
2539 break;
2540 case ISD::CTTZ:
2541 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002542 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2543 DAG.getConstant(getSizeInBits(NVT), NVT),
2544 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00002545 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002546 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2547 break;
2548 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00002549 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00002550 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2551 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002552 getSizeInBits(OVT), NVT));
2553 break;
2554 }
2555 break;
2556 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002557 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002558 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002559 break;
2560 }
2561 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00002562
Chris Lattner2c8086f2005-04-02 05:00:07 +00002563 // Unary operators
2564 case ISD::FABS:
2565 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00002566 case ISD::FSQRT:
2567 case ISD::FSIN:
2568 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002569 Tmp1 = LegalizeOp(Node->getOperand(0));
2570 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002571 case TargetLowering::Promote:
2572 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00002573 isCustom = true;
2574 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00002575 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002576 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00002577 if (isCustom) {
2578 Tmp1 = TLI.LowerOperation(Result, DAG);
2579 if (Tmp1.Val) Result = Tmp1;
2580 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002581 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00002582 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002583 switch (Node->getOpcode()) {
2584 default: assert(0 && "Unreachable!");
2585 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002586 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2587 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002588 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002589 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002590 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002591 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2592 MVT::ValueType VT = Node->getValueType(0);
2593 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002594 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002595 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2596 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002597 break;
2598 }
2599 case ISD::FSQRT:
2600 case ISD::FSIN:
2601 case ISD::FCOS: {
2602 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002603 const char *FnName = 0;
2604 switch(Node->getOpcode()) {
2605 case ISD::FSQRT: FnName = VT == MVT::f32 ? "sqrtf" : "sqrt"; break;
2606 case ISD::FSIN: FnName = VT == MVT::f32 ? "sinf" : "sin"; break;
2607 case ISD::FCOS: FnName = VT == MVT::f32 ? "cosf" : "cos"; break;
2608 default: assert(0 && "Unreachable!");
2609 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00002610 SDOperand Dummy;
Chris Lattner9c6b4b82006-01-28 04:28:26 +00002611 Result = ExpandLibCall(FnName, Node, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002612 break;
2613 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002614 }
2615 break;
2616 }
2617 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002618 case ISD::FPOWI: {
2619 // We always lower FPOWI into a libcall. No target support it yet.
2620 const char *FnName = Node->getValueType(0) == MVT::f32
2621 ? "__powisf2" : "__powidf2";
2622 SDOperand Dummy;
2623 Result = ExpandLibCall(FnName, Node, Dummy);
2624 break;
2625 }
Chris Lattner35481892005-12-23 00:16:34 +00002626 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00002627 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner35481892005-12-23 00:16:34 +00002628 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Chris Lattner67993f72006-01-23 07:30:46 +00002629 } else {
Chris Lattner35481892005-12-23 00:16:34 +00002630 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2631 Node->getOperand(0).getValueType())) {
2632 default: assert(0 && "Unknown operation action!");
2633 case TargetLowering::Expand:
2634 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2635 break;
2636 case TargetLowering::Legal:
2637 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002638 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00002639 break;
2640 }
2641 }
2642 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00002643 case ISD::VBIT_CONVERT: {
2644 assert(Op.getOperand(0).getValueType() == MVT::Vector &&
2645 "Can only have VBIT_CONVERT where input or output is MVT::Vector!");
2646
2647 // The input has to be a vector type, we have to either scalarize it, pack
2648 // it, or convert it based on whether the input vector type is legal.
2649 SDNode *InVal = Node->getOperand(0).Val;
2650 unsigned NumElems =
2651 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
2652 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
2653
2654 // Figure out if there is a Packed type corresponding to this Vector
2655 // type. If so, convert to the packed type.
2656 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
2657 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
2658 // Turn this into a bit convert of the packed input.
2659 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2660 PackVectorOp(Node->getOperand(0), TVT));
2661 break;
2662 } else if (NumElems == 1) {
2663 // Turn this into a bit convert of the scalar input.
2664 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2665 PackVectorOp(Node->getOperand(0), EVT));
2666 break;
2667 } else {
2668 // FIXME: UNIMP! Store then reload
2669 assert(0 && "Cast from unsupported vector type not implemented yet!");
2670 }
2671 }
2672
Chris Lattner2c8086f2005-04-02 05:00:07 +00002673 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00002674 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002675 case ISD::UINT_TO_FP: {
2676 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002677 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2678 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002679 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002680 Node->getOperand(0).getValueType())) {
2681 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002682 case TargetLowering::Custom:
2683 isCustom = true;
2684 // FALLTHROUGH
2685 case TargetLowering::Legal:
2686 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002687 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002688 if (isCustom) {
2689 Tmp1 = TLI.LowerOperation(Result, DAG);
2690 if (Tmp1.Val) Result = Tmp1;
2691 }
2692 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002693 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00002694 Result = ExpandLegalINT_TO_FP(isSigned,
2695 LegalizeOp(Node->getOperand(0)),
2696 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002697 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002698 case TargetLowering::Promote:
2699 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2700 Node->getValueType(0),
2701 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002702 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00002703 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002704 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00002705 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002706 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2707 Node->getValueType(0), Node->getOperand(0));
2708 break;
2709 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002710 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002711 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002712 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2713 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002714 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002715 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2716 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00002717 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002718 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2719 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002720 break;
2721 }
2722 break;
2723 }
2724 case ISD::TRUNCATE:
2725 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2726 case Legal:
2727 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002728 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002729 break;
2730 case Expand:
2731 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2732
2733 // Since the result is legal, we should just be able to truncate the low
2734 // part of the source.
2735 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2736 break;
2737 case Promote:
2738 Result = PromoteOp(Node->getOperand(0));
2739 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2740 break;
2741 }
2742 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002743
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002744 case ISD::FP_TO_SINT:
2745 case ISD::FP_TO_UINT:
2746 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2747 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00002748 Tmp1 = LegalizeOp(Node->getOperand(0));
2749
Chris Lattner1618beb2005-07-29 00:11:56 +00002750 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2751 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002752 case TargetLowering::Custom:
2753 isCustom = true;
2754 // FALLTHROUGH
2755 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002756 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002757 if (isCustom) {
2758 Tmp1 = TLI.LowerOperation(Result, DAG);
2759 if (Tmp1.Val) Result = Tmp1;
2760 }
2761 break;
2762 case TargetLowering::Promote:
2763 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2764 Node->getOpcode() == ISD::FP_TO_SINT);
2765 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00002766 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00002767 if (Node->getOpcode() == ISD::FP_TO_UINT) {
2768 SDOperand True, False;
2769 MVT::ValueType VT = Node->getOperand(0).getValueType();
2770 MVT::ValueType NVT = Node->getValueType(0);
2771 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2772 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2773 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2774 Node->getOperand(0), Tmp2, ISD::SETLT);
2775 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2776 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00002777 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00002778 Tmp2));
2779 False = DAG.getNode(ISD::XOR, NVT, False,
2780 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00002781 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2782 break;
Nate Begemand2558e32005-08-14 01:20:53 +00002783 } else {
2784 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2785 }
2786 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00002787 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002788 break;
2789 case Expand:
2790 assert(0 && "Shouldn't need to expand other operators here!");
2791 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002792 Tmp1 = PromoteOp(Node->getOperand(0));
2793 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2794 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002795 break;
2796 }
2797 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002798
Chris Lattner13c78e22005-09-02 00:18:10 +00002799 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002800 case ISD::ZERO_EXTEND:
2801 case ISD::SIGN_EXTEND:
2802 case ISD::FP_EXTEND:
2803 case ISD::FP_ROUND:
2804 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002805 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002806 case Legal:
2807 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002808 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002809 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002810 case Promote:
2811 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00002812 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002813 Tmp1 = PromoteOp(Node->getOperand(0));
2814 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00002815 break;
Chris Lattner1713e732005-01-16 00:38:00 +00002816 case ISD::ZERO_EXTEND:
2817 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002818 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00002819 Result = DAG.getZeroExtendInReg(Result,
2820 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00002821 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002822 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00002823 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002824 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00002825 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00002826 Result,
2827 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00002828 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002829 case ISD::FP_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00002830 Result = PromoteOp(Node->getOperand(0));
2831 if (Result.getValueType() != Op.getValueType())
2832 // Dynamically dead while we have only 2 FP types.
2833 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
2834 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002835 case ISD::FP_ROUND:
Chris Lattnerf8161d82005-01-16 05:06:12 +00002836 Result = PromoteOp(Node->getOperand(0));
2837 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
2838 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002839 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002840 }
2841 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00002842 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00002843 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00002844 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00002845 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00002846
2847 // If this operation is not supported, convert it to a shl/shr or load/store
2848 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002849 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
2850 default: assert(0 && "This action not supported for this op yet!");
2851 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002852 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002853 break;
2854 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00002855 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00002856 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00002857 // NOTE: we could fall back on load/store here too for targets without
2858 // SAR. However, it is doubtful that any exist.
2859 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
2860 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00002861 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00002862 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
2863 Node->getOperand(0), ShiftCst);
2864 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
2865 Result, ShiftCst);
2866 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
2867 // The only way we can lower this is to turn it into a STORETRUNC,
2868 // EXTLOAD pair, targetting a temporary location (a stack slot).
2869
2870 // NOTE: there is a choice here between constantly creating new stack
2871 // slots and always reusing the same one. We currently always create
2872 // new ones, as reuse may inhibit scheduling.
2873 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Owen Andersona69571c2006-05-03 01:29:57 +00002874 unsigned TySize = (unsigned)TLI.getTargetData()->getTypeSize(Ty);
2875 unsigned Align = TLI.getTargetData()->getTypeAlignment(Ty);
Chris Lattner45b8caf2005-01-15 07:15:18 +00002876 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukmanedf128a2005-04-21 22:36:52 +00002877 int SSFI =
Chris Lattner45b8caf2005-01-15 07:15:18 +00002878 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
2879 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
2880 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, DAG.getEntryNode(),
Chris Lattner52d08bd2005-05-09 20:23:03 +00002881 Node->getOperand(0), StackSlot,
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002882 DAG.getSrcValue(NULL), DAG.getValueType(ExtraVT));
Chris Lattner5f056bf2005-07-10 01:55:33 +00002883 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2884 Result, StackSlot, DAG.getSrcValue(NULL),
2885 ExtraVT);
Chris Lattner45b8caf2005-01-15 07:15:18 +00002886 } else {
2887 assert(0 && "Unknown op");
2888 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002889 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00002890 }
Chris Lattner0f69b292005-01-15 06:18:18 +00002891 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002892 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00002893 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002894
Chris Lattner4ddd2832006-04-08 04:13:17 +00002895 assert(Result.getValueType() == Op.getValueType() &&
2896 "Bad legalization!");
2897
Chris Lattner456a93a2006-01-28 07:39:30 +00002898 // Make sure that the generated code is itself legal.
2899 if (Result != Op)
2900 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002901
Chris Lattner45982da2005-05-12 16:53:42 +00002902 // Note that LegalizeOp may be reentered even from single-use nodes, which
2903 // means that we always must cache transformed nodes.
2904 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002905 return Result;
2906}
2907
Chris Lattner8b6fa222005-01-15 22:16:26 +00002908/// PromoteOp - Given an operation that produces a value in an invalid type,
2909/// promote it to compute the value into a larger type. The produced value will
2910/// have the correct bits for the low portion of the register, but no guarantee
2911/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00002912SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
2913 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00002914 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00002915 assert(getTypeAction(VT) == Promote &&
2916 "Caller should expand or legalize operands that are not promotable!");
2917 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
2918 "Cannot promote to smaller type!");
2919
Chris Lattner03c85462005-01-15 05:21:40 +00002920 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00002921 SDOperand Result;
2922 SDNode *Node = Op.Val;
2923
Chris Lattner6fdcb252005-09-02 20:32:45 +00002924 std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
2925 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00002926
Chris Lattner03c85462005-01-15 05:21:40 +00002927 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002928 case ISD::CopyFromReg:
2929 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00002930 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00002931#ifndef NDEBUG
Chris Lattner03c85462005-01-15 05:21:40 +00002932 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00002933#endif
Chris Lattner03c85462005-01-15 05:21:40 +00002934 assert(0 && "Do not know how to promote this operator!");
2935 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00002936 case ISD::UNDEF:
2937 Result = DAG.getNode(ISD::UNDEF, NVT);
2938 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002939 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00002940 if (VT != MVT::i1)
2941 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
2942 else
2943 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00002944 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
2945 break;
2946 case ISD::ConstantFP:
2947 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
2948 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
2949 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00002950
Chris Lattner82fbfb62005-01-18 02:59:52 +00002951 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002952 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002953 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
2954 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00002955 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00002956
Chris Lattner03c85462005-01-15 05:21:40 +00002957 case ISD::TRUNCATE:
2958 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2959 case Legal:
2960 Result = LegalizeOp(Node->getOperand(0));
2961 assert(Result.getValueType() >= NVT &&
2962 "This truncation doesn't make sense!");
2963 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
2964 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
2965 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00002966 case Promote:
2967 // The truncation is not required, because we don't guarantee anything
2968 // about high bits anyway.
2969 Result = PromoteOp(Node->getOperand(0));
2970 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002971 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00002972 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2973 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00002974 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00002975 }
2976 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00002977 case ISD::SIGN_EXTEND:
2978 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00002979 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002980 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2981 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
2982 case Legal:
2983 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00002984 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002985 break;
2986 case Promote:
2987 // Promote the reg if it's smaller.
2988 Result = PromoteOp(Node->getOperand(0));
2989 // The high bits are not guaranteed to be anything. Insert an extend.
2990 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00002991 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00002992 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00002993 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00002994 Result = DAG.getZeroExtendInReg(Result,
2995 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00002996 break;
2997 }
2998 break;
Chris Lattner35481892005-12-23 00:16:34 +00002999 case ISD::BIT_CONVERT:
3000 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3001 Result = PromoteOp(Result);
3002 break;
3003
Chris Lattner8b6fa222005-01-15 22:16:26 +00003004 case ISD::FP_EXTEND:
3005 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
3006 case ISD::FP_ROUND:
3007 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3008 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3009 case Promote: assert(0 && "Unreachable with 2 FP types!");
3010 case Legal:
3011 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner456a93a2006-01-28 07:39:30 +00003012 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner15e4b012005-07-10 00:07:11 +00003013 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003014 break;
3015 }
3016 break;
3017
3018 case ISD::SINT_TO_FP:
3019 case ISD::UINT_TO_FP:
3020 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3021 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00003022 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00003023 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003024 break;
3025
3026 case Promote:
3027 Result = PromoteOp(Node->getOperand(0));
3028 if (Node->getOpcode() == ISD::SINT_TO_FP)
3029 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003030 Result,
3031 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003032 else
Chris Lattner23993562005-04-13 02:38:47 +00003033 Result = DAG.getZeroExtendInReg(Result,
3034 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003035 // No extra round required here.
3036 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003037 break;
3038 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00003039 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3040 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00003041 // Round if we cannot tolerate excess precision.
3042 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003043 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3044 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00003045 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003046 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003047 break;
3048
Chris Lattner5e3c5b42005-12-09 17:32:47 +00003049 case ISD::SIGN_EXTEND_INREG:
3050 Result = PromoteOp(Node->getOperand(0));
3051 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3052 Node->getOperand(1));
3053 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003054 case ISD::FP_TO_SINT:
3055 case ISD::FP_TO_UINT:
3056 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3057 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00003058 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003059 break;
3060 case Promote:
3061 // The input result is prerounded, so we don't have to do anything
3062 // special.
3063 Tmp1 = PromoteOp(Node->getOperand(0));
3064 break;
3065 case Expand:
3066 assert(0 && "not implemented");
3067 }
Nate Begemand2558e32005-08-14 01:20:53 +00003068 // If we're promoting a UINT to a larger size, check to see if the new node
3069 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3070 // we can use that instead. This allows us to generate better code for
3071 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3072 // legal, such as PowerPC.
3073 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003074 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00003075 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3076 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00003077 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3078 } else {
3079 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3080 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003081 break;
3082
Chris Lattner2c8086f2005-04-02 05:00:07 +00003083 case ISD::FABS:
3084 case ISD::FNEG:
3085 Tmp1 = PromoteOp(Node->getOperand(0));
3086 assert(Tmp1.getValueType() == NVT);
3087 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3088 // NOTE: we do not have to do any extra rounding here for
3089 // NoExcessFPPrecision, because we know the input will have the appropriate
3090 // precision, and these operations don't modify precision at all.
3091 break;
3092
Chris Lattnerda6ba872005-04-28 21:44:33 +00003093 case ISD::FSQRT:
3094 case ISD::FSIN:
3095 case ISD::FCOS:
3096 Tmp1 = PromoteOp(Node->getOperand(0));
3097 assert(Tmp1.getValueType() == NVT);
3098 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003099 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003100 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3101 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00003102 break;
3103
Chris Lattner03c85462005-01-15 05:21:40 +00003104 case ISD::AND:
3105 case ISD::OR:
3106 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00003107 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003108 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00003109 case ISD::MUL:
3110 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00003111 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00003112 // that too is okay if they are integer operations.
3113 Tmp1 = PromoteOp(Node->getOperand(0));
3114 Tmp2 = PromoteOp(Node->getOperand(1));
3115 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3116 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00003117 break;
3118 case ISD::FADD:
3119 case ISD::FSUB:
3120 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00003121 Tmp1 = PromoteOp(Node->getOperand(0));
3122 Tmp2 = PromoteOp(Node->getOperand(1));
3123 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3124 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3125
3126 // Floating point operations will give excess precision that we may not be
3127 // able to tolerate. If we DO allow excess precision, just leave it,
3128 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00003129 // FIXME: Why would we need to round FP ops more than integer ones?
3130 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00003131 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003132 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3133 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00003134 break;
3135
Chris Lattner8b6fa222005-01-15 22:16:26 +00003136 case ISD::SDIV:
3137 case ISD::SREM:
3138 // These operators require that their input be sign extended.
3139 Tmp1 = PromoteOp(Node->getOperand(0));
3140 Tmp2 = PromoteOp(Node->getOperand(1));
3141 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00003142 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3143 DAG.getValueType(VT));
3144 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3145 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003146 }
3147 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3148
3149 // Perform FP_ROUND: this is probably overly pessimistic.
3150 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003151 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3152 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003153 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00003154 case ISD::FDIV:
3155 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00003156 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00003157 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00003158 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3159 case Legal:
3160 Tmp1 = LegalizeOp(Node->getOperand(0));
3161 break;
3162 case Promote:
3163 Tmp1 = PromoteOp(Node->getOperand(0));
3164 break;
3165 case Expand:
3166 assert(0 && "not implemented");
3167 }
3168 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3169 case Legal:
3170 Tmp2 = LegalizeOp(Node->getOperand(1));
3171 break;
3172 case Promote:
3173 Tmp2 = PromoteOp(Node->getOperand(1));
3174 break;
3175 case Expand:
3176 assert(0 && "not implemented");
3177 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003178 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3179
3180 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00003181 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00003182 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3183 DAG.getValueType(VT));
3184 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003185
3186 case ISD::UDIV:
3187 case ISD::UREM:
3188 // These operators require that their input be zero extended.
3189 Tmp1 = PromoteOp(Node->getOperand(0));
3190 Tmp2 = PromoteOp(Node->getOperand(1));
3191 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00003192 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3193 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003194 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3195 break;
3196
3197 case ISD::SHL:
3198 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003199 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003200 break;
3201 case ISD::SRA:
3202 // The input value must be properly sign extended.
3203 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003204 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3205 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003206 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003207 break;
3208 case ISD::SRL:
3209 // The input value must be properly zero extended.
3210 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00003211 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00003212 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003213 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00003214
3215 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00003216 Tmp1 = Node->getOperand(0); // Get the chain.
3217 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00003218 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3219 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3220 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3221 } else {
3222 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
3223 Node->getOperand(2));
3224 // Increment the pointer, VAList, to the next vaarg
3225 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3226 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3227 TLI.getPointerTy()));
3228 // Store the incremented VAList to the legalized pointer
3229 Tmp3 = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), Tmp3, Tmp2,
3230 Node->getOperand(2));
3231 // Load the actual argument out of the pointer VAList
3232 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList,
3233 DAG.getSrcValue(0), VT);
3234 }
3235 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003236 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00003237 break;
3238
Chris Lattner03c85462005-01-15 05:21:40 +00003239 case ISD::LOAD:
Chris Lattner456a93a2006-01-28 07:39:30 +00003240 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Node->getOperand(0),
3241 Node->getOperand(1), Node->getOperand(2), VT);
Chris Lattner03c85462005-01-15 05:21:40 +00003242 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003243 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00003244 break;
Chris Lattner4c8f8f02005-10-13 20:07:41 +00003245 case ISD::SEXTLOAD:
3246 case ISD::ZEXTLOAD:
3247 case ISD::EXTLOAD:
Chris Lattner456a93a2006-01-28 07:39:30 +00003248 Result = DAG.getExtLoad(Node->getOpcode(), NVT, Node->getOperand(0),
3249 Node->getOperand(1), Node->getOperand(2),
Chris Lattner8136cda2005-10-15 20:24:07 +00003250 cast<VTSDNode>(Node->getOperand(3))->getVT());
Chris Lattner4c8f8f02005-10-13 20:07:41 +00003251 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003252 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner4c8f8f02005-10-13 20:07:41 +00003253 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003254 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00003255 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
3256 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00003257 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00003258 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003259 case ISD::SELECT_CC:
3260 Tmp2 = PromoteOp(Node->getOperand(2)); // True
3261 Tmp3 = PromoteOp(Node->getOperand(3)); // False
3262 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00003263 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00003264 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003265 case ISD::BSWAP:
3266 Tmp1 = Node->getOperand(0);
3267 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3268 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3269 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3270 DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
3271 TLI.getShiftAmountTy()));
3272 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003273 case ISD::CTPOP:
3274 case ISD::CTTZ:
3275 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003276 // Zero extend the argument
3277 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003278 // Perform the larger operation, then subtract if needed.
3279 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003280 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003281 case ISD::CTPOP:
3282 Result = Tmp1;
3283 break;
3284 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003285 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00003286 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003287 DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003288 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Chris Lattner456a93a2006-01-28 07:39:30 +00003289 DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003290 break;
3291 case ISD::CTLZ:
3292 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003293 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
3294 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003295 getSizeInBits(VT), NVT));
3296 break;
3297 }
3298 break;
Chris Lattner15972212006-03-31 17:55:51 +00003299 case ISD::VEXTRACT_VECTOR_ELT:
3300 Result = PromoteOp(LowerVEXTRACT_VECTOR_ELT(Op));
3301 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00003302 case ISD::EXTRACT_VECTOR_ELT:
3303 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3304 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003305 }
3306
3307 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003308
3309 // Make sure the result is itself legal.
3310 Result = LegalizeOp(Result);
3311
3312 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00003313 AddPromotedOperand(Op, Result);
3314 return Result;
3315}
Chris Lattner3e928bb2005-01-07 07:47:09 +00003316
Chris Lattner15972212006-03-31 17:55:51 +00003317/// LowerVEXTRACT_VECTOR_ELT - Lower a VEXTRACT_VECTOR_ELT operation into a
3318/// EXTRACT_VECTOR_ELT operation, to memory operations, or to scalar code based
3319/// on the vector type. The return type of this matches the element type of the
3320/// vector, which may not be legal for the target.
3321SDOperand SelectionDAGLegalize::LowerVEXTRACT_VECTOR_ELT(SDOperand Op) {
3322 // We know that operand #0 is the Vec vector. If the index is a constant
3323 // or if the invec is a supported hardware type, we can use it. Otherwise,
3324 // lower to a store then an indexed load.
3325 SDOperand Vec = Op.getOperand(0);
3326 SDOperand Idx = LegalizeOp(Op.getOperand(1));
3327
3328 SDNode *InVal = Vec.Val;
3329 unsigned NumElems = cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
3330 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
3331
3332 // Figure out if there is a Packed type corresponding to this Vector
3333 // type. If so, convert to the packed type.
3334 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3335 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
3336 // Turn this into a packed extract_vector_elt operation.
3337 Vec = PackVectorOp(Vec, TVT);
3338 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, Op.getValueType(), Vec, Idx);
3339 } else if (NumElems == 1) {
3340 // This must be an access of the only element. Return it.
3341 return PackVectorOp(Vec, EVT);
3342 } else if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
3343 SDOperand Lo, Hi;
3344 SplitVectorOp(Vec, Lo, Hi);
3345 if (CIdx->getValue() < NumElems/2) {
3346 Vec = Lo;
3347 } else {
3348 Vec = Hi;
3349 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3350 }
3351
3352 // It's now an extract from the appropriate high or low part. Recurse.
3353 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3354 return LowerVEXTRACT_VECTOR_ELT(Op);
3355 } else {
3356 // Variable index case for extract element.
3357 // FIXME: IMPLEMENT STORE/LOAD lowering. Need alignment of stack slot!!
3358 assert(0 && "unimp!");
3359 return SDOperand();
3360 }
3361}
3362
Chris Lattner4aab2f42006-04-02 05:06:04 +00003363/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3364/// memory traffic.
3365SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
3366 SDOperand Vector = Op.getOperand(0);
3367 SDOperand Idx = Op.getOperand(1);
3368
3369 // If the target doesn't support this, store the value to a temporary
3370 // stack slot, then LOAD the scalar element back out.
3371 SDOperand StackPtr = CreateStackTemporary(Vector.getValueType());
3372 SDOperand Ch = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3373 Vector, StackPtr, DAG.getSrcValue(NULL));
3374
3375 // Add the offset to the index.
3376 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3377 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3378 DAG.getConstant(EltSize, Idx.getValueType()));
3379 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3380
3381 return DAG.getLoad(Op.getValueType(), Ch, StackPtr, DAG.getSrcValue(NULL));
3382}
3383
Chris Lattner15972212006-03-31 17:55:51 +00003384
Nate Begeman750ac1b2006-02-01 07:19:44 +00003385/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3386/// with condition CC on the current target. This usually involves legalizing
3387/// or promoting the arguments. In the case where LHS and RHS must be expanded,
3388/// there may be no choice but to create a new SetCC node to represent the
3389/// legalized value of setcc lhs, rhs. In this case, the value is returned in
3390/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3391void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3392 SDOperand &RHS,
3393 SDOperand &CC) {
3394 SDOperand Tmp1, Tmp2, Result;
3395
3396 switch (getTypeAction(LHS.getValueType())) {
3397 case Legal:
3398 Tmp1 = LegalizeOp(LHS); // LHS
3399 Tmp2 = LegalizeOp(RHS); // RHS
3400 break;
3401 case Promote:
3402 Tmp1 = PromoteOp(LHS); // LHS
3403 Tmp2 = PromoteOp(RHS); // RHS
3404
3405 // If this is an FP compare, the operands have already been extended.
3406 if (MVT::isInteger(LHS.getValueType())) {
3407 MVT::ValueType VT = LHS.getValueType();
3408 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3409
3410 // Otherwise, we have to insert explicit sign or zero extends. Note
3411 // that we could insert sign extends for ALL conditions, but zero extend
3412 // is cheaper on many machines (an AND instead of two shifts), so prefer
3413 // it.
3414 switch (cast<CondCodeSDNode>(CC)->get()) {
3415 default: assert(0 && "Unknown integer comparison!");
3416 case ISD::SETEQ:
3417 case ISD::SETNE:
3418 case ISD::SETUGE:
3419 case ISD::SETUGT:
3420 case ISD::SETULE:
3421 case ISD::SETULT:
3422 // ALL of these operations will work if we either sign or zero extend
3423 // the operands (including the unsigned comparisons!). Zero extend is
3424 // usually a simpler/cheaper operation, so prefer it.
3425 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3426 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3427 break;
3428 case ISD::SETGE:
3429 case ISD::SETGT:
3430 case ISD::SETLT:
3431 case ISD::SETLE:
3432 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3433 DAG.getValueType(VT));
3434 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3435 DAG.getValueType(VT));
3436 break;
3437 }
3438 }
3439 break;
3440 case Expand:
3441 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
3442 ExpandOp(LHS, LHSLo, LHSHi);
3443 ExpandOp(RHS, RHSLo, RHSHi);
3444 switch (cast<CondCodeSDNode>(CC)->get()) {
3445 case ISD::SETEQ:
3446 case ISD::SETNE:
3447 if (RHSLo == RHSHi)
3448 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
3449 if (RHSCST->isAllOnesValue()) {
3450 // Comparison to -1.
3451 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
3452 Tmp2 = RHSLo;
3453 break;
3454 }
3455
3456 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
3457 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
3458 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3459 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3460 break;
3461 default:
3462 // If this is a comparison of the sign bit, just look at the top part.
3463 // X > -1, x < 0
3464 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
3465 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
3466 CST->getValue() == 0) || // X < 0
3467 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
3468 CST->isAllOnesValue())) { // X > -1
3469 Tmp1 = LHSHi;
3470 Tmp2 = RHSHi;
3471 break;
3472 }
3473
3474 // FIXME: This generated code sucks.
3475 ISD::CondCode LowCC;
3476 switch (cast<CondCodeSDNode>(CC)->get()) {
3477 default: assert(0 && "Unknown integer setcc!");
3478 case ISD::SETLT:
3479 case ISD::SETULT: LowCC = ISD::SETULT; break;
3480 case ISD::SETGT:
3481 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
3482 case ISD::SETLE:
3483 case ISD::SETULE: LowCC = ISD::SETULE; break;
3484 case ISD::SETGE:
3485 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
3486 }
3487
3488 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
3489 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
3490 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
3491
3492 // NOTE: on targets without efficient SELECT of bools, we can always use
3493 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
3494 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
3495 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
3496 Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
3497 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
3498 Result, Tmp1, Tmp2));
3499 Tmp1 = Result;
Nate Begemanda06e9e2006-02-01 19:05:15 +00003500 Tmp2 = SDOperand();
Nate Begeman750ac1b2006-02-01 07:19:44 +00003501 }
3502 }
3503 LHS = Tmp1;
3504 RHS = Tmp2;
3505}
3506
Chris Lattner35481892005-12-23 00:16:34 +00003507/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner232348d2005-12-23 00:52:30 +00003508/// The resultant code need not be legal. Note that SrcOp is the input operand
3509/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner35481892005-12-23 00:16:34 +00003510SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
3511 SDOperand SrcOp) {
3512 // Create the stack frame object.
Chris Lattnerce872152006-03-19 06:31:19 +00003513 SDOperand FIPtr = CreateStackTemporary(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00003514
3515 // Emit a store to the stack slot.
3516 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
Chris Lattnered7b5ba2005-12-23 00:50:25 +00003517 SrcOp, FIPtr, DAG.getSrcValue(NULL));
Chris Lattner35481892005-12-23 00:16:34 +00003518 // Result is a load from the stack slot.
3519 return DAG.getLoad(DestVT, Store, FIPtr, DAG.getSrcValue(0));
3520}
3521
Chris Lattner4352cc92006-04-04 17:23:26 +00003522SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
3523 // Create a vector sized/aligned stack slot, store the value to element #0,
3524 // then load the whole vector back out.
3525 SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
3526 SDOperand Ch = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3527 Node->getOperand(0), StackPtr,
3528 DAG.getSrcValue(NULL));
3529 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,DAG.getSrcValue(NULL));
3530}
3531
3532
Chris Lattnerce872152006-03-19 06:31:19 +00003533/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
3534/// support the operation, but do support the resultant packed vector type.
3535SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
3536
3537 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00003538 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00003539 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00003540 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00003541 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng033e6812006-03-24 01:17:21 +00003542 std::map<SDOperand, std::vector<unsigned> > Values;
3543 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003544 bool isConstant = true;
3545 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
3546 SplatValue.getOpcode() != ISD::UNDEF)
3547 isConstant = false;
3548
Evan Cheng033e6812006-03-24 01:17:21 +00003549 for (unsigned i = 1; i < NumElems; ++i) {
3550 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00003551 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00003552 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00003553 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00003554 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00003555 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003556
3557 // If this isn't a constant element or an undef, we can't use a constant
3558 // pool load.
3559 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
3560 V.getOpcode() != ISD::UNDEF)
3561 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00003562 }
3563
3564 if (isOnlyLowElement) {
3565 // If the low element is an undef too, then this whole things is an undef.
3566 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
3567 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
3568 // Otherwise, turn this into a scalar_to_vector node.
3569 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3570 Node->getOperand(0));
3571 }
3572
Chris Lattner2eb86532006-03-24 07:29:17 +00003573 // If all elements are constants, create a load from the constant pool.
3574 if (isConstant) {
3575 MVT::ValueType VT = Node->getValueType(0);
3576 const Type *OpNTy =
3577 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
3578 std::vector<Constant*> CV;
3579 for (unsigned i = 0, e = NumElems; i != e; ++i) {
3580 if (ConstantFPSDNode *V =
3581 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
3582 CV.push_back(ConstantFP::get(OpNTy, V->getValue()));
3583 } else if (ConstantSDNode *V =
3584 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
3585 CV.push_back(ConstantUInt::get(OpNTy, V->getValue()));
3586 } else {
3587 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
3588 CV.push_back(UndefValue::get(OpNTy));
3589 }
3590 }
3591 Constant *CP = ConstantPacked::get(CV);
3592 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
3593 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
3594 DAG.getSrcValue(NULL));
3595 }
3596
Chris Lattner87100e02006-03-20 01:52:29 +00003597 if (SplatValue.Val) { // Splat of one value?
3598 // Build the shuffle constant vector: <0, 0, 0, 0>
3599 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00003600 MVT::getIntVectorWithNumElements(NumElems);
Chris Lattner87100e02006-03-20 01:52:29 +00003601 SDOperand Zero = DAG.getConstant(0, MVT::getVectorBaseType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00003602 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003603 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3604 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00003605
3606 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003607 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00003608 // Get the splatted value into the low element of a vector register.
3609 SDOperand LowValVec =
3610 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
3611
3612 // Return shuffle(LowValVec, undef, <0,0,0,0>)
3613 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
3614 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
3615 SplatMask);
3616 }
3617 }
3618
Evan Cheng033e6812006-03-24 01:17:21 +00003619 // If there are only two unique elements, we may be able to turn this into a
3620 // vector shuffle.
3621 if (Values.size() == 2) {
3622 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
3623 MVT::ValueType MaskVT =
3624 MVT::getIntVectorWithNumElements(NumElems);
3625 std::vector<SDOperand> MaskVec(NumElems);
3626 unsigned i = 0;
3627 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3628 E = Values.end(); I != E; ++I) {
3629 for (std::vector<unsigned>::iterator II = I->second.begin(),
3630 EE = I->second.end(); II != EE; ++II)
3631 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorBaseType(MaskVT));
3632 i += NumElems;
3633 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003634 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3635 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00003636
3637 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003638 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
3639 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003640 SmallVector<SDOperand, 8> Ops;
Evan Cheng033e6812006-03-24 01:17:21 +00003641 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3642 E = Values.end(); I != E; ++I) {
3643 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3644 I->first);
3645 Ops.push_back(Op);
3646 }
3647 Ops.push_back(ShuffleMask);
3648
3649 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003650 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
3651 &Ops[0], Ops.size());
Evan Cheng033e6812006-03-24 01:17:21 +00003652 }
3653 }
Chris Lattnerce872152006-03-19 06:31:19 +00003654
3655 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
3656 // aligned object on the stack, store each element into it, then load
3657 // the result as a vector.
3658 MVT::ValueType VT = Node->getValueType(0);
3659 // Create the stack frame object.
3660 SDOperand FIPtr = CreateStackTemporary(VT);
3661
3662 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003663 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00003664 unsigned TypeByteSize =
3665 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
3666 unsigned VectorSize = MVT::getSizeInBits(VT)/8;
3667 // Store (in the right endianness) the elements to memory.
3668 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3669 // Ignore undef elements.
3670 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
3671
Chris Lattner841c8822006-03-22 01:46:54 +00003672 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00003673
3674 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
3675 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
3676
3677 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3678 Node->getOperand(i), Idx,
3679 DAG.getSrcValue(NULL)));
3680 }
3681
3682 SDOperand StoreChain;
3683 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003684 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3685 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00003686 else
3687 StoreChain = DAG.getEntryNode();
3688
3689 // Result is a load from the stack slot.
3690 return DAG.getLoad(VT, StoreChain, FIPtr, DAG.getSrcValue(0));
3691}
3692
3693/// CreateStackTemporary - Create a stack temporary, suitable for holding the
3694/// specified value type.
3695SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
3696 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3697 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
3698 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, ByteSize);
3699 return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
3700}
3701
Chris Lattner5b359c62005-04-02 04:00:59 +00003702void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
3703 SDOperand Op, SDOperand Amt,
3704 SDOperand &Lo, SDOperand &Hi) {
3705 // Expand the subcomponents.
3706 SDOperand LHSL, LHSH;
3707 ExpandOp(Op, LHSL, LHSH);
3708
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003709 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003710 MVT::ValueType VT = LHSL.getValueType();
3711 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00003712 Hi = Lo.getValue(1);
3713}
3714
3715
Chris Lattnere34b3962005-01-19 04:19:40 +00003716/// ExpandShift - Try to find a clever way to expand this shift operation out to
3717/// smaller elements. If we can't find a way that is more efficient than a
3718/// libcall on this target, return false. Otherwise, return true with the
3719/// low-parts expanded into Lo and Hi.
3720bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
3721 SDOperand &Lo, SDOperand &Hi) {
3722 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
3723 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003724
Chris Lattnere34b3962005-01-19 04:19:40 +00003725 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003726 SDOperand ShAmt = LegalizeOp(Amt);
3727 MVT::ValueType ShTy = ShAmt.getValueType();
3728 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
3729 unsigned NVTBits = MVT::getSizeInBits(NVT);
3730
3731 // Handle the case when Amt is an immediate. Other cases are currently broken
3732 // and are disabled.
3733 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
3734 unsigned Cst = CN->getValue();
3735 // Expand the incoming operand to be shifted, so that we have its parts
3736 SDOperand InL, InH;
3737 ExpandOp(Op, InL, InH);
3738 switch(Opc) {
3739 case ISD::SHL:
3740 if (Cst > VTBits) {
3741 Lo = DAG.getConstant(0, NVT);
3742 Hi = DAG.getConstant(0, NVT);
3743 } else if (Cst > NVTBits) {
3744 Lo = DAG.getConstant(0, NVT);
3745 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00003746 } else if (Cst == NVTBits) {
3747 Lo = DAG.getConstant(0, NVT);
3748 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003749 } else {
3750 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
3751 Hi = DAG.getNode(ISD::OR, NVT,
3752 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
3753 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
3754 }
3755 return true;
3756 case ISD::SRL:
3757 if (Cst > VTBits) {
3758 Lo = DAG.getConstant(0, NVT);
3759 Hi = DAG.getConstant(0, NVT);
3760 } else if (Cst > NVTBits) {
3761 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
3762 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00003763 } else if (Cst == NVTBits) {
3764 Lo = InH;
3765 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003766 } else {
3767 Lo = DAG.getNode(ISD::OR, NVT,
3768 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3769 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3770 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
3771 }
3772 return true;
3773 case ISD::SRA:
3774 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003775 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003776 DAG.getConstant(NVTBits-1, ShTy));
3777 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003778 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003779 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00003780 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003781 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00003782 } else if (Cst == NVTBits) {
3783 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003784 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00003785 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003786 } else {
3787 Lo = DAG.getNode(ISD::OR, NVT,
3788 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3789 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3790 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
3791 }
3792 return true;
3793 }
3794 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00003795
3796 // Okay, the shift amount isn't constant. However, if we can tell that it is
3797 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
3798 uint64_t Mask = NVTBits, KnownZero, KnownOne;
3799 TLI.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
3800
3801 // If we know that the high bit of the shift amount is one, then we can do
3802 // this as a couple of simple shifts.
3803 if (KnownOne & Mask) {
3804 // Mask out the high bit, which we know is set.
3805 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
3806 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3807
3808 // Expand the incoming operand to be shifted, so that we have its parts
3809 SDOperand InL, InH;
3810 ExpandOp(Op, InL, InH);
3811 switch(Opc) {
3812 case ISD::SHL:
3813 Lo = DAG.getConstant(0, NVT); // Low part is zero.
3814 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
3815 return true;
3816 case ISD::SRL:
3817 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
3818 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
3819 return true;
3820 case ISD::SRA:
3821 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
3822 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3823 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
3824 return true;
3825 }
3826 }
3827
3828 // If we know that the high bit of the shift amount is zero, then we can do
3829 // this as a couple of simple shifts.
3830 if (KnownZero & Mask) {
3831 // Compute 32-amt.
3832 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
3833 DAG.getConstant(NVTBits, Amt.getValueType()),
3834 Amt);
3835
3836 // Expand the incoming operand to be shifted, so that we have its parts
3837 SDOperand InL, InH;
3838 ExpandOp(Op, InL, InH);
3839 switch(Opc) {
3840 case ISD::SHL:
3841 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
3842 Hi = DAG.getNode(ISD::OR, NVT,
3843 DAG.getNode(ISD::SHL, NVT, InH, Amt),
3844 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
3845 return true;
3846 case ISD::SRL:
3847 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
3848 Lo = DAG.getNode(ISD::OR, NVT,
3849 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3850 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3851 return true;
3852 case ISD::SRA:
3853 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
3854 Lo = DAG.getNode(ISD::OR, NVT,
3855 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3856 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3857 return true;
3858 }
3859 }
3860
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003861 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00003862}
Chris Lattner77e77a62005-01-21 06:05:23 +00003863
Chris Lattner9c32d3b2005-01-23 04:42:50 +00003864
Chris Lattner77e77a62005-01-21 06:05:23 +00003865// ExpandLibCall - Expand a node into a call to a libcall. If the result value
3866// does not fit into a register, return the lo part and set the hi part to the
3867// by-reg argument. If it does fit into a single register, return the result
3868// and leave the Hi part unset.
3869SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
3870 SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00003871 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
3872 // The input chain to this libcall is the entry node of the function.
3873 // Legalizing the call will automatically add the previous call to the
3874 // dependence.
3875 SDOperand InChain = DAG.getEntryNode();
3876
Chris Lattner77e77a62005-01-21 06:05:23 +00003877 TargetLowering::ArgListTy Args;
3878 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3879 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
3880 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
3881 Args.push_back(std::make_pair(Node->getOperand(i), ArgTy));
3882 }
3883 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00003884
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003885 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00003886 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003887 std::pair<SDOperand,SDOperand> CallInfo =
Chris Lattneradf6a962005-05-13 18:50:42 +00003888 TLI.LowerCallTo(InChain, RetTy, false, CallingConv::C, false,
3889 Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00003890
Chris Lattner6831a812006-02-13 09:18:02 +00003891 // Legalize the call sequence, starting with the chain. This will advance
3892 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
3893 // was added by LowerCallTo (guaranteeing proper serialization of calls).
3894 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00003895 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003896 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00003897 default: assert(0 && "Unknown thing");
3898 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00003899 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00003900 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00003901 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00003902 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00003903 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00003904 }
Chris Lattner99c25b82005-09-02 20:26:58 +00003905 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00003906}
3907
Chris Lattner9c32d3b2005-01-23 04:42:50 +00003908
Chris Lattner77e77a62005-01-21 06:05:23 +00003909/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
3910/// destination type is legal.
3911SDOperand SelectionDAGLegalize::
3912ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003913 assert(isTypeLegal(DestTy) && "Destination type is not legal!");
Chris Lattner77e77a62005-01-21 06:05:23 +00003914 assert(getTypeAction(Source.getValueType()) == Expand &&
3915 "This is not an expansion!");
3916 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
3917
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003918 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00003919 assert(Source.getValueType() == MVT::i64 &&
3920 "This only works for 64-bit -> FP");
3921 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
3922 // incoming integer is set. To handle this, we dynamically test to see if
3923 // it is set, and, if so, add a fudge factor.
3924 SDOperand Lo, Hi;
3925 ExpandOp(Source, Lo, Hi);
3926
Chris Lattner66de05b2005-05-13 04:45:13 +00003927 // If this is unsigned, and not supported, first perform the conversion to
3928 // signed, then adjust the result if the sign bit is set.
3929 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
3930 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
3931
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003932 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
3933 DAG.getConstant(0, Hi.getValueType()),
3934 ISD::SETLT);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003935 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3936 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3937 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00003938 uint64_t FF = 0x5f800000ULL;
3939 if (TLI.isLittleEndian()) FF <<= 32;
3940 static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003941
Chris Lattner5839bf22005-08-26 17:15:30 +00003942 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00003943 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3944 SDOperand FudgeInReg;
3945 if (DestTy == MVT::f32)
Chris Lattner52d08bd2005-05-09 20:23:03 +00003946 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
3947 DAG.getSrcValue(NULL));
Chris Lattnere9c35e72005-04-13 05:09:42 +00003948 else {
3949 assert(DestTy == MVT::f64 && "Unexpected conversion");
Chris Lattner5f056bf2005-07-10 01:55:33 +00003950 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
3951 CPIdx, DAG.getSrcValue(NULL), MVT::f32);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003952 }
Chris Lattner473a9902005-09-29 06:44:39 +00003953 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00003954 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003955
Chris Lattnera88a2602005-05-14 05:33:54 +00003956 // Check to see if the target has a custom way to lower this. If so, use it.
3957 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
3958 default: assert(0 && "This action not implemented for this operation!");
3959 case TargetLowering::Legal:
3960 case TargetLowering::Expand:
3961 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00003962 case TargetLowering::Custom: {
3963 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
3964 Source), DAG);
3965 if (NV.Val)
3966 return LegalizeOp(NV);
3967 break; // The target decided this was legal after all
3968 }
Chris Lattnera88a2602005-05-14 05:33:54 +00003969 }
3970
Chris Lattner13689e22005-05-12 07:00:44 +00003971 // Expand the source, then glue it back together for the call. We must expand
3972 // the source in case it is shared (this pass of legalize must traverse it).
3973 SDOperand SrcLo, SrcHi;
3974 ExpandOp(Source, SrcLo, SrcHi);
3975 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
3976
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003977 const char *FnName = 0;
3978 if (DestTy == MVT::f32)
3979 FnName = "__floatdisf";
3980 else {
3981 assert(DestTy == MVT::f64 && "Unknown fp value type!");
3982 FnName = "__floatdidf";
3983 }
Chris Lattner6831a812006-02-13 09:18:02 +00003984
3985 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
3986 SDOperand UnusedHiPart;
Chris Lattner25125692006-02-17 04:32:33 +00003987 return ExpandLibCall(FnName, Source.Val, UnusedHiPart);
Chris Lattner77e77a62005-01-21 06:05:23 +00003988}
Misha Brukmanedf128a2005-04-21 22:36:52 +00003989
Chris Lattner22cde6a2006-01-28 08:25:58 +00003990/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
3991/// INT_TO_FP operation of the specified operand when the target requests that
3992/// we expand it. At this point, we know that the result and operand types are
3993/// legal for the target.
3994SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
3995 SDOperand Op0,
3996 MVT::ValueType DestVT) {
3997 if (Op0.getValueType() == MVT::i32) {
3998 // simple 32-bit [signed|unsigned] integer to float/double expansion
3999
4000 // get the stack frame index of a 8 byte buffer
4001 MachineFunction &MF = DAG.getMachineFunction();
4002 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
4003 // get address of 8 byte buffer
4004 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4005 // word offset constant for Hi/Lo address computation
4006 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
4007 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00004008 SDOperand Hi = StackSlot;
4009 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
4010 if (TLI.isLittleEndian())
4011 std::swap(Hi, Lo);
4012
Chris Lattner22cde6a2006-01-28 08:25:58 +00004013 // if signed map to unsigned space
4014 SDOperand Op0Mapped;
4015 if (isSigned) {
4016 // constant used to invert sign bit (signed to unsigned mapping)
4017 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
4018 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
4019 } else {
4020 Op0Mapped = Op0;
4021 }
4022 // store the lo of the constructed double - based on integer input
4023 SDOperand Store1 = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
4024 Op0Mapped, Lo, DAG.getSrcValue(NULL));
4025 // initial hi portion of constructed double
4026 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
4027 // store the hi of the constructed double - biased exponent
4028 SDOperand Store2 = DAG.getNode(ISD::STORE, MVT::Other, Store1,
4029 InitialHi, Hi, DAG.getSrcValue(NULL));
4030 // load the constructed double
4031 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot,
4032 DAG.getSrcValue(NULL));
4033 // FP constant to bias correct the final result
4034 SDOperand Bias = DAG.getConstantFP(isSigned ?
4035 BitsToDouble(0x4330000080000000ULL)
4036 : BitsToDouble(0x4330000000000000ULL),
4037 MVT::f64);
4038 // subtract the bias
4039 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
4040 // final result
4041 SDOperand Result;
4042 // handle final rounding
4043 if (DestVT == MVT::f64) {
4044 // do nothing
4045 Result = Sub;
4046 } else {
4047 // if f32 then cast to f32
4048 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
4049 }
4050 return Result;
4051 }
4052 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
4053 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
4054
4055 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
4056 DAG.getConstant(0, Op0.getValueType()),
4057 ISD::SETLT);
4058 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4059 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4060 SignSet, Four, Zero);
4061
4062 // If the sign bit of the integer is set, the large number will be treated
4063 // as a negative number. To counteract this, the dynamic code adds an
4064 // offset depending on the data type.
4065 uint64_t FF;
4066 switch (Op0.getValueType()) {
4067 default: assert(0 && "Unsupported integer type!");
4068 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
4069 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
4070 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
4071 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
4072 }
4073 if (TLI.isLittleEndian()) FF <<= 32;
4074 static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
4075
4076 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4077 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4078 SDOperand FudgeInReg;
4079 if (DestVT == MVT::f32)
4080 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
4081 DAG.getSrcValue(NULL));
4082 else {
4083 assert(DestVT == MVT::f64 && "Unexpected conversion");
4084 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
4085 DAG.getEntryNode(), CPIdx,
4086 DAG.getSrcValue(NULL), MVT::f32));
4087 }
4088
4089 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
4090}
4091
4092/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
4093/// *INT_TO_FP operation of the specified operand when the target requests that
4094/// we promote it. At this point, we know that the result and operand types are
4095/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
4096/// operation that takes a larger input.
4097SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
4098 MVT::ValueType DestVT,
4099 bool isSigned) {
4100 // First step, figure out the appropriate *INT_TO_FP operation to use.
4101 MVT::ValueType NewInTy = LegalOp.getValueType();
4102
4103 unsigned OpToUse = 0;
4104
4105 // Scan for the appropriate larger type to use.
4106 while (1) {
4107 NewInTy = (MVT::ValueType)(NewInTy+1);
4108 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
4109
4110 // If the target supports SINT_TO_FP of this type, use it.
4111 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4112 default: break;
4113 case TargetLowering::Legal:
4114 if (!TLI.isTypeLegal(NewInTy))
4115 break; // Can't use this datatype.
4116 // FALL THROUGH.
4117 case TargetLowering::Custom:
4118 OpToUse = ISD::SINT_TO_FP;
4119 break;
4120 }
4121 if (OpToUse) break;
4122 if (isSigned) continue;
4123
4124 // If the target supports UINT_TO_FP of this type, use it.
4125 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4126 default: break;
4127 case TargetLowering::Legal:
4128 if (!TLI.isTypeLegal(NewInTy))
4129 break; // Can't use this datatype.
4130 // FALL THROUGH.
4131 case TargetLowering::Custom:
4132 OpToUse = ISD::UINT_TO_FP;
4133 break;
4134 }
4135 if (OpToUse) break;
4136
4137 // Otherwise, try a larger type.
4138 }
4139
4140 // Okay, we found the operation and type to use. Zero extend our input to the
4141 // desired type then run the operation on it.
4142 return DAG.getNode(OpToUse, DestVT,
4143 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4144 NewInTy, LegalOp));
4145}
4146
4147/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4148/// FP_TO_*INT operation of the specified operand when the target requests that
4149/// we promote it. At this point, we know that the result and operand types are
4150/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4151/// operation that returns a larger result.
4152SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4153 MVT::ValueType DestVT,
4154 bool isSigned) {
4155 // First step, figure out the appropriate FP_TO*INT operation to use.
4156 MVT::ValueType NewOutTy = DestVT;
4157
4158 unsigned OpToUse = 0;
4159
4160 // Scan for the appropriate larger type to use.
4161 while (1) {
4162 NewOutTy = (MVT::ValueType)(NewOutTy+1);
4163 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4164
4165 // If the target supports FP_TO_SINT returning this type, use it.
4166 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4167 default: break;
4168 case TargetLowering::Legal:
4169 if (!TLI.isTypeLegal(NewOutTy))
4170 break; // Can't use this datatype.
4171 // FALL THROUGH.
4172 case TargetLowering::Custom:
4173 OpToUse = ISD::FP_TO_SINT;
4174 break;
4175 }
4176 if (OpToUse) break;
4177
4178 // If the target supports FP_TO_UINT of this type, use it.
4179 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4180 default: break;
4181 case TargetLowering::Legal:
4182 if (!TLI.isTypeLegal(NewOutTy))
4183 break; // Can't use this datatype.
4184 // FALL THROUGH.
4185 case TargetLowering::Custom:
4186 OpToUse = ISD::FP_TO_UINT;
4187 break;
4188 }
4189 if (OpToUse) break;
4190
4191 // Otherwise, try a larger type.
4192 }
4193
4194 // Okay, we found the operation and type to use. Truncate the result of the
4195 // extended FP_TO_*INT operation to the desired size.
4196 return DAG.getNode(ISD::TRUNCATE, DestVT,
4197 DAG.getNode(OpToUse, NewOutTy, LegalOp));
4198}
4199
4200/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4201///
4202SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4203 MVT::ValueType VT = Op.getValueType();
4204 MVT::ValueType SHVT = TLI.getShiftAmountTy();
4205 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4206 switch (VT) {
4207 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4208 case MVT::i16:
4209 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4210 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4211 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4212 case MVT::i32:
4213 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4214 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4215 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4216 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4217 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4218 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4219 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4220 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4221 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4222 case MVT::i64:
4223 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4224 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4225 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4226 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4227 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4228 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4229 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4230 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4231 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4232 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4233 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4234 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4235 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4236 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4237 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4238 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4239 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4240 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4241 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4242 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4243 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4244 }
4245}
4246
4247/// ExpandBitCount - Expand the specified bitcount instruction into operations.
4248///
4249SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4250 switch (Opc) {
4251 default: assert(0 && "Cannot expand this yet!");
4252 case ISD::CTPOP: {
4253 static const uint64_t mask[6] = {
4254 0x5555555555555555ULL, 0x3333333333333333ULL,
4255 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4256 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4257 };
4258 MVT::ValueType VT = Op.getValueType();
4259 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4260 unsigned len = getSizeInBits(VT);
4261 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4262 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4263 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4264 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4265 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4266 DAG.getNode(ISD::AND, VT,
4267 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4268 }
4269 return Op;
4270 }
4271 case ISD::CTLZ: {
4272 // for now, we do this:
4273 // x = x | (x >> 1);
4274 // x = x | (x >> 2);
4275 // ...
4276 // x = x | (x >>16);
4277 // x = x | (x >>32); // for 64-bit input
4278 // return popcount(~x);
4279 //
4280 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4281 MVT::ValueType VT = Op.getValueType();
4282 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4283 unsigned len = getSizeInBits(VT);
4284 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4285 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4286 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4287 }
4288 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4289 return DAG.getNode(ISD::CTPOP, VT, Op);
4290 }
4291 case ISD::CTTZ: {
4292 // for now, we use: { return popcount(~x & (x - 1)); }
4293 // unless the target has ctlz but not ctpop, in which case we use:
4294 // { return 32 - nlz(~x & (x-1)); }
4295 // see also http://www.hackersdelight.org/HDcode/ntz.cc
4296 MVT::ValueType VT = Op.getValueType();
4297 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4298 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4299 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4300 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4301 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4302 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4303 TLI.isOperationLegal(ISD::CTLZ, VT))
4304 return DAG.getNode(ISD::SUB, VT,
4305 DAG.getConstant(getSizeInBits(VT), VT),
4306 DAG.getNode(ISD::CTLZ, VT, Tmp3));
4307 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4308 }
4309 }
4310}
Chris Lattnere34b3962005-01-19 04:19:40 +00004311
Chris Lattner3e928bb2005-01-07 07:47:09 +00004312/// ExpandOp - Expand the specified SDOperand into its two component pieces
4313/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
4314/// LegalizeNodes map is filled in for any results that are not expanded, the
4315/// ExpandedNodes map is filled in for any results that are expanded, and the
4316/// Lo/Hi values are returned.
4317void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4318 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00004319 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004320 SDNode *Node = Op.Val;
4321 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Nate Begemanab48be32005-11-22 18:16:00 +00004322 assert((MVT::isInteger(VT) || VT == MVT::Vector) &&
4323 "Cannot expand FP values!");
4324 assert(((MVT::isInteger(NVT) && NVT < VT) || VT == MVT::Vector) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00004325 "Cannot expand to FP value or to larger int value!");
4326
Chris Lattner6fdcb252005-09-02 20:32:45 +00004327 // See if we already expanded it.
4328 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4329 = ExpandedNodes.find(Op);
4330 if (I != ExpandedNodes.end()) {
4331 Lo = I->second.first;
4332 Hi = I->second.second;
4333 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004334 }
4335
Chris Lattner3e928bb2005-01-07 07:47:09 +00004336 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004337 case ISD::CopyFromReg:
4338 assert(0 && "CopyFromReg must be legal!");
4339 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004340#ifndef NDEBUG
Chris Lattner3e928bb2005-01-07 07:47:09 +00004341 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004342#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00004343 assert(0 && "Do not know how to expand this operator!");
4344 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004345 case ISD::UNDEF:
4346 Lo = DAG.getNode(ISD::UNDEF, NVT);
4347 Hi = DAG.getNode(ISD::UNDEF, NVT);
4348 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004349 case ISD::Constant: {
4350 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4351 Lo = DAG.getConstant(Cst, NVT);
4352 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
4353 break;
4354 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004355 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00004356 // Return the operands.
4357 Lo = Node->getOperand(0);
4358 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004359 break;
Chris Lattner58f79632005-12-12 22:27:43 +00004360
4361 case ISD::SIGN_EXTEND_INREG:
4362 ExpandOp(Node->getOperand(0), Lo, Hi);
4363 // Sign extend the lo-part.
4364 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4365 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
4366 TLI.getShiftAmountTy()));
4367 // sext_inreg the low part if needed.
4368 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
4369 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004370
Nate Begemand88fc032006-01-14 03:14:10 +00004371 case ISD::BSWAP: {
4372 ExpandOp(Node->getOperand(0), Lo, Hi);
4373 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
4374 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
4375 Lo = TempLo;
4376 break;
4377 }
4378
Chris Lattneredb1add2005-05-11 04:51:16 +00004379 case ISD::CTPOP:
4380 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00004381 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
4382 DAG.getNode(ISD::CTPOP, NVT, Lo),
4383 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00004384 Hi = DAG.getConstant(0, NVT);
4385 break;
4386
Chris Lattner39a8f332005-05-12 19:05:01 +00004387 case ISD::CTLZ: {
4388 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004389 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004390 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4391 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004392 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
4393 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004394 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
4395 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
4396
4397 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
4398 Hi = DAG.getConstant(0, NVT);
4399 break;
4400 }
4401
4402 case ISD::CTTZ: {
4403 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004404 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004405 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4406 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004407 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
4408 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004409 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
4410 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
4411
4412 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
4413 Hi = DAG.getConstant(0, NVT);
4414 break;
4415 }
Chris Lattneredb1add2005-05-11 04:51:16 +00004416
Nate Begemanacc398c2006-01-25 18:21:52 +00004417 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004418 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4419 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00004420 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
4421 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
4422
4423 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004424 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00004425 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
4426 if (!TLI.isLittleEndian())
4427 std::swap(Lo, Hi);
4428 break;
4429 }
4430
Chris Lattner3e928bb2005-01-07 07:47:09 +00004431 case ISD::LOAD: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004432 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4433 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00004434 Lo = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
Chris Lattner3e928bb2005-01-07 07:47:09 +00004435
4436 // Increment the pointer to the other half.
Chris Lattner38d6be52005-01-09 19:43:23 +00004437 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004438 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4439 getIntPtrConstant(IncrementSize));
Chris Lattner8137c9e2006-01-28 05:07:51 +00004440 // FIXME: This creates a bogus srcvalue!
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00004441 Hi = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
Chris Lattnerec39a452005-01-19 18:02:17 +00004442
4443 // Build a factor node to remember that this load is independent of the
4444 // other one.
4445 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4446 Hi.getValue(1));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004447
Chris Lattner3e928bb2005-01-07 07:47:09 +00004448 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004449 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattner3e928bb2005-01-07 07:47:09 +00004450 if (!TLI.isLittleEndian())
4451 std::swap(Lo, Hi);
4452 break;
4453 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004454 case ISD::AND:
4455 case ISD::OR:
4456 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
4457 SDOperand LL, LH, RL, RH;
4458 ExpandOp(Node->getOperand(0), LL, LH);
4459 ExpandOp(Node->getOperand(1), RL, RH);
4460 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
4461 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
4462 break;
4463 }
4464 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00004465 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004466 ExpandOp(Node->getOperand(1), LL, LH);
4467 ExpandOp(Node->getOperand(2), RL, RH);
Chris Lattner456a93a2006-01-28 07:39:30 +00004468 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
4469 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004470 break;
4471 }
Nate Begeman9373a812005-08-10 20:51:12 +00004472 case ISD::SELECT_CC: {
4473 SDOperand TL, TH, FL, FH;
4474 ExpandOp(Node->getOperand(2), TL, TH);
4475 ExpandOp(Node->getOperand(3), FL, FH);
4476 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4477 Node->getOperand(1), TL, FL, Node->getOperand(4));
4478 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4479 Node->getOperand(1), TH, FH, Node->getOperand(4));
4480 break;
4481 }
Nate Begeman144ff662005-10-13 17:15:37 +00004482 case ISD::SEXTLOAD: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004483 SDOperand Chain = Node->getOperand(0);
4484 SDOperand Ptr = Node->getOperand(1);
Nate Begeman144ff662005-10-13 17:15:37 +00004485 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
4486
4487 if (EVT == NVT)
4488 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
4489 else
4490 Lo = DAG.getExtLoad(ISD::SEXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
4491 EVT);
Chris Lattner9ad84812005-10-13 21:44:47 +00004492
4493 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004494 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner9ad84812005-10-13 21:44:47 +00004495
Nate Begeman144ff662005-10-13 17:15:37 +00004496 // The high part is obtained by SRA'ing all but one of the bits of the lo
4497 // part.
4498 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
4499 Hi = DAG.getNode(ISD::SRA, NVT, Lo, DAG.getConstant(LoSize-1,
4500 TLI.getShiftAmountTy()));
Nate Begeman144ff662005-10-13 17:15:37 +00004501 break;
4502 }
4503 case ISD::ZEXTLOAD: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004504 SDOperand Chain = Node->getOperand(0);
4505 SDOperand Ptr = Node->getOperand(1);
Nate Begeman144ff662005-10-13 17:15:37 +00004506 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
4507
4508 if (EVT == NVT)
4509 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
4510 else
4511 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
4512 EVT);
Chris Lattner9ad84812005-10-13 21:44:47 +00004513
4514 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004515 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner9ad84812005-10-13 21:44:47 +00004516
Nate Begeman144ff662005-10-13 17:15:37 +00004517 // The high part is just a zero.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004518 Hi = DAG.getConstant(0, NVT);
Chris Lattner9ad84812005-10-13 21:44:47 +00004519 break;
4520 }
4521 case ISD::EXTLOAD: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004522 SDOperand Chain = Node->getOperand(0);
4523 SDOperand Ptr = Node->getOperand(1);
Chris Lattner9ad84812005-10-13 21:44:47 +00004524 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
4525
4526 if (EVT == NVT)
4527 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
4528 else
4529 Lo = DAG.getExtLoad(ISD::EXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
4530 EVT);
4531
4532 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004533 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner9ad84812005-10-13 21:44:47 +00004534
4535 // The high part is undefined.
Chris Lattner13c78e22005-09-02 00:18:10 +00004536 Hi = DAG.getNode(ISD::UNDEF, NVT);
4537 break;
4538 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004539 case ISD::ANY_EXTEND:
4540 // The low part is any extension of the input (which degenerates to a copy).
4541 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
4542 // The high part is undefined.
4543 Hi = DAG.getNode(ISD::UNDEF, NVT);
4544 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004545 case ISD::SIGN_EXTEND: {
4546 // The low part is just a sign extension of the input (which degenerates to
4547 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004548 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004549
Chris Lattner3e928bb2005-01-07 07:47:09 +00004550 // The high part is obtained by SRA'ing all but one of the bits of the lo
4551 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00004552 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00004553 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4554 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00004555 break;
4556 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004557 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00004558 // The low part is just a zero extension of the input (which degenerates to
4559 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004560 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004561
Chris Lattner3e928bb2005-01-07 07:47:09 +00004562 // The high part is just a zero.
4563 Hi = DAG.getConstant(0, NVT);
4564 break;
Chris Lattner35481892005-12-23 00:16:34 +00004565
4566 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004567 SDOperand Tmp;
4568 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
4569 // If the target wants to, allow it to lower this itself.
4570 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4571 case Expand: assert(0 && "cannot expand FP!");
4572 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
4573 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
4574 }
4575 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
4576 }
4577
4578 // Turn this into a load/store pair by default.
4579 if (Tmp.Val == 0)
4580 Tmp = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
4581
Chris Lattner35481892005-12-23 00:16:34 +00004582 ExpandOp(Tmp, Lo, Hi);
4583 break;
4584 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004585
Chris Lattner8137c9e2006-01-28 05:07:51 +00004586 case ISD::READCYCLECOUNTER:
Chris Lattner308575b2005-11-20 22:56:56 +00004587 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
4588 TargetLowering::Custom &&
4589 "Must custom expand ReadCycleCounter");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004590 Lo = TLI.LowerOperation(Op, DAG);
4591 assert(Lo.Val && "Node must be custom expanded!");
4592 Hi = Lo.getValue(1);
Chris Lattner308575b2005-11-20 22:56:56 +00004593 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004594 LegalizeOp(Lo.getValue(2)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004595 break;
4596
Chris Lattner4e6c7462005-01-08 19:27:05 +00004597 // These operators cannot be expanded directly, emit them as calls to
4598 // library functions.
4599 case ISD::FP_TO_SINT:
Chris Lattner80a3e942005-07-29 00:33:32 +00004600 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00004601 SDOperand Op;
4602 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4603 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004604 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4605 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00004606 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004607
Chris Lattnerf20d1832005-07-30 01:40:57 +00004608 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
4609
Chris Lattner80a3e942005-07-29 00:33:32 +00004610 // Now that the custom expander is done, expand the result, which is still
4611 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00004612 if (Op.Val) {
4613 ExpandOp(Op, Lo, Hi);
4614 break;
4615 }
Chris Lattner80a3e942005-07-29 00:33:32 +00004616 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004617
Chris Lattner4e6c7462005-01-08 19:27:05 +00004618 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00004619 Lo = ExpandLibCall("__fixsfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004620 else
Chris Lattner77e77a62005-01-21 06:05:23 +00004621 Lo = ExpandLibCall("__fixdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004622 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004623
Chris Lattner4e6c7462005-01-08 19:27:05 +00004624 case ISD::FP_TO_UINT:
Chris Lattner80a3e942005-07-29 00:33:32 +00004625 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004626 SDOperand Op;
4627 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4628 case Expand: assert(0 && "cannot expand FP!");
4629 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4630 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
4631 }
4632
4633 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
4634
4635 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00004636 if (Op.Val) {
4637 ExpandOp(Op, Lo, Hi);
4638 break;
4639 }
Chris Lattner80a3e942005-07-29 00:33:32 +00004640 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004641
Chris Lattner4e6c7462005-01-08 19:27:05 +00004642 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00004643 Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004644 else
Chris Lattner77e77a62005-01-21 06:05:23 +00004645 Lo = ExpandLibCall("__fixunsdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004646 break;
4647
Evan Cheng05a2d562006-01-09 18:31:59 +00004648 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004649 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004650 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004651 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004652 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004653 Op = TLI.LowerOperation(Op, DAG);
4654 if (Op.Val) {
4655 // Now that the custom expander is done, expand the result, which is
4656 // still VT.
4657 ExpandOp(Op, Lo, Hi);
4658 break;
4659 }
4660 }
4661
Chris Lattner79980b02006-09-13 03:50:39 +00004662 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
4663 // this X << 1 as X+X.
4664 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
4665 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
4666 TLI.isOperationLegal(ISD::ADDE, NVT)) {
4667 SDOperand LoOps[2], HiOps[3];
4668 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
4669 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
4670 LoOps[1] = LoOps[0];
4671 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
4672
4673 HiOps[1] = HiOps[0];
4674 HiOps[2] = Lo.getValue(1);
4675 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
4676 break;
4677 }
4678 }
4679
Chris Lattnere34b3962005-01-19 04:19:40 +00004680 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004681 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004682 break;
Chris Lattner47599822005-04-02 03:38:53 +00004683
4684 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004685 TargetLowering::LegalizeAction Action =
4686 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
4687 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4688 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004689 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004690 break;
4691 }
4692
Chris Lattnere34b3962005-01-19 04:19:40 +00004693 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004694 Lo = ExpandLibCall("__ashldi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004695 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004696 }
Chris Lattnere34b3962005-01-19 04:19:40 +00004697
Evan Cheng05a2d562006-01-09 18:31:59 +00004698 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004699 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004700 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004701 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004702 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004703 Op = TLI.LowerOperation(Op, DAG);
4704 if (Op.Val) {
4705 // Now that the custom expander is done, expand the result, which is
4706 // still VT.
4707 ExpandOp(Op, Lo, Hi);
4708 break;
4709 }
4710 }
4711
Chris Lattnere34b3962005-01-19 04:19:40 +00004712 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004713 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004714 break;
Chris Lattner47599822005-04-02 03:38:53 +00004715
4716 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004717 TargetLowering::LegalizeAction Action =
4718 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
4719 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4720 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004721 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004722 break;
4723 }
4724
Chris Lattnere34b3962005-01-19 04:19:40 +00004725 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004726 Lo = ExpandLibCall("__ashrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004727 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004728 }
4729
4730 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004731 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004732 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004733 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004734 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004735 Op = TLI.LowerOperation(Op, DAG);
4736 if (Op.Val) {
4737 // Now that the custom expander is done, expand the result, which is
4738 // still VT.
4739 ExpandOp(Op, Lo, Hi);
4740 break;
4741 }
4742 }
4743
Chris Lattnere34b3962005-01-19 04:19:40 +00004744 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004745 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004746 break;
Chris Lattner47599822005-04-02 03:38:53 +00004747
4748 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004749 TargetLowering::LegalizeAction Action =
4750 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
4751 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4752 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004753 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004754 break;
4755 }
4756
Chris Lattnere34b3962005-01-19 04:19:40 +00004757 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004758 Lo = ExpandLibCall("__lshrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004759 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004760 }
Chris Lattnere34b3962005-01-19 04:19:40 +00004761
Misha Brukmanedf128a2005-04-21 22:36:52 +00004762 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00004763 case ISD::SUB: {
4764 // If the target wants to custom expand this, let them.
4765 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
4766 TargetLowering::Custom) {
4767 Op = TLI.LowerOperation(Op, DAG);
4768 if (Op.Val) {
4769 ExpandOp(Op, Lo, Hi);
4770 break;
4771 }
4772 }
4773
4774 // Expand the subcomponents.
4775 SDOperand LHSL, LHSH, RHSL, RHSH;
4776 ExpandOp(Node->getOperand(0), LHSL, LHSH);
4777 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00004778 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
4779 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004780 LoOps[0] = LHSL;
4781 LoOps[1] = RHSL;
4782 HiOps[0] = LHSH;
4783 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00004784 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00004785 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004786 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00004787 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00004788 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00004789 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004790 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00004791 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00004792 }
Chris Lattner84f67882005-01-20 18:52:28 +00004793 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00004794 }
Nate Begemanc7c16572005-04-11 03:01:51 +00004795 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00004796 // If the target wants to custom expand this, let them.
4797 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00004798 SDOperand New = TLI.LowerOperation(Op, DAG);
4799 if (New.Val) {
4800 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00004801 break;
4802 }
4803 }
4804
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004805 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
4806 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
4807 bool UseLibCall = true;
4808 if (HasMULHS || HasMULHU) {
Nate Begemanc7c16572005-04-11 03:01:51 +00004809 SDOperand LL, LH, RL, RH;
4810 ExpandOp(Node->getOperand(0), LL, LH);
4811 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman56eb8682005-08-30 02:44:00 +00004812 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
4813 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
4814 // extended the sign bit of the low half through the upper half, and if so
4815 // emit a MULHS instead of the alternate sequence that is valid for any
4816 // i64 x i64 multiply.
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004817 if (HasMULHS &&
Nate Begeman56eb8682005-08-30 02:44:00 +00004818 // is RH an extension of the sign bit of RL?
4819 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
4820 RH.getOperand(1).getOpcode() == ISD::Constant &&
4821 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
4822 // is LH an extension of the sign bit of LL?
4823 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
4824 LH.getOperand(1).getOpcode() == ISD::Constant &&
4825 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
Chris Lattnera89654b2006-09-16 00:21:44 +00004826 // FIXME: Move this to the dag combiner.
4827
4828 // Low part:
4829 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4830 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00004831 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
Chris Lattnera89654b2006-09-16 00:21:44 +00004832 break;
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004833 } else if (HasMULHU) {
Chris Lattnera89654b2006-09-16 00:21:44 +00004834 // Low part:
4835 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4836
4837 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00004838 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
4839 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
4840 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
4841 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
4842 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00004843 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00004844 }
Nate Begemanc7c16572005-04-11 03:01:51 +00004845 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004846
Chris Lattnera89654b2006-09-16 00:21:44 +00004847 Lo = ExpandLibCall("__muldi3" , Node, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00004848 break;
4849 }
Chris Lattner77e77a62005-01-21 06:05:23 +00004850 case ISD::SDIV: Lo = ExpandLibCall("__divdi3" , Node, Hi); break;
4851 case ISD::UDIV: Lo = ExpandLibCall("__udivdi3", Node, Hi); break;
4852 case ISD::SREM: Lo = ExpandLibCall("__moddi3" , Node, Hi); break;
4853 case ISD::UREM: Lo = ExpandLibCall("__umoddi3", Node, Hi); break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004854 }
4855
Chris Lattner83397362005-12-21 18:02:52 +00004856 // Make sure the resultant values have been legalized themselves, unless this
4857 // is a type that requires multi-step expansion.
4858 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
4859 Lo = LegalizeOp(Lo);
4860 Hi = LegalizeOp(Hi);
4861 }
Evan Cheng05a2d562006-01-09 18:31:59 +00004862
4863 // Remember in a map if the values will be reused later.
4864 bool isNew =
4865 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4866 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00004867}
4868
Chris Lattnerc7029802006-03-18 01:44:44 +00004869/// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
4870/// two smaller values of MVT::Vector type.
4871void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
4872 SDOperand &Hi) {
4873 assert(Op.getValueType() == MVT::Vector && "Cannot split non-vector type!");
4874 SDNode *Node = Op.Val;
4875 unsigned NumElements = cast<ConstantSDNode>(*(Node->op_end()-2))->getValue();
4876 assert(NumElements > 1 && "Cannot split a single element vector!");
4877 unsigned NewNumElts = NumElements/2;
4878 SDOperand NewNumEltsNode = DAG.getConstant(NewNumElts, MVT::i32);
4879 SDOperand TypeNode = *(Node->op_end()-1);
4880
4881 // See if we already split it.
4882 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4883 = SplitNodes.find(Op);
4884 if (I != SplitNodes.end()) {
4885 Lo = I->second.first;
4886 Hi = I->second.second;
4887 return;
4888 }
4889
4890 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004891 default:
4892#ifndef NDEBUG
4893 Node->dump();
4894#endif
4895 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerb2827b02006-03-19 00:52:58 +00004896 case ISD::VBUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004897 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
4898 Node->op_begin()+NewNumElts);
Chris Lattnerc7029802006-03-18 01:44:44 +00004899 LoOps.push_back(NewNumEltsNode);
4900 LoOps.push_back(TypeNode);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004901 Lo = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00004902
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004903 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts,
4904 Node->op_end()-2);
Chris Lattnerc7029802006-03-18 01:44:44 +00004905 HiOps.push_back(NewNumEltsNode);
4906 HiOps.push_back(TypeNode);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004907 Hi = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00004908 break;
4909 }
4910 case ISD::VADD:
4911 case ISD::VSUB:
4912 case ISD::VMUL:
4913 case ISD::VSDIV:
4914 case ISD::VUDIV:
4915 case ISD::VAND:
4916 case ISD::VOR:
4917 case ISD::VXOR: {
4918 SDOperand LL, LH, RL, RH;
4919 SplitVectorOp(Node->getOperand(0), LL, LH);
4920 SplitVectorOp(Node->getOperand(1), RL, RH);
4921
4922 Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, LL, RL,
4923 NewNumEltsNode, TypeNode);
4924 Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, LH, RH,
4925 NewNumEltsNode, TypeNode);
4926 break;
4927 }
4928 case ISD::VLOAD: {
4929 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4930 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
4931 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4932
4933 Lo = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4934 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(EVT)/8;
4935 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4936 getIntPtrConstant(IncrementSize));
4937 // FIXME: This creates a bogus srcvalue!
4938 Hi = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4939
4940 // Build a factor node to remember that this load is independent of the
4941 // other one.
4942 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4943 Hi.getValue(1));
4944
4945 // Remember that we legalized the chain.
4946 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00004947 break;
4948 }
Chris Lattner7692eb42006-03-23 21:16:34 +00004949 case ISD::VBIT_CONVERT: {
4950 // We know the result is a vector. The input may be either a vector or a
4951 // scalar value.
4952 if (Op.getOperand(0).getValueType() != MVT::Vector) {
4953 // Lower to a store/load. FIXME: this could be improved probably.
4954 SDOperand Ptr = CreateStackTemporary(Op.getOperand(0).getValueType());
4955
4956 SDOperand St = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
4957 Op.getOperand(0), Ptr, DAG.getSrcValue(0));
4958 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4959 St = DAG.getVecLoad(NumElements, EVT, St, Ptr, DAG.getSrcValue(0));
4960 SplitVectorOp(St, Lo, Hi);
4961 } else {
4962 // If the input is a vector type, we have to either scalarize it, pack it
4963 // or convert it based on whether the input vector type is legal.
4964 SDNode *InVal = Node->getOperand(0).Val;
4965 unsigned NumElems =
4966 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
4967 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
4968
4969 // If the input is from a single element vector, scalarize the vector,
4970 // then treat like a scalar.
4971 if (NumElems == 1) {
4972 SDOperand Scalar = PackVectorOp(Op.getOperand(0), EVT);
4973 Scalar = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Scalar,
4974 Op.getOperand(1), Op.getOperand(2));
4975 SplitVectorOp(Scalar, Lo, Hi);
4976 } else {
4977 // Split the input vector.
4978 SplitVectorOp(Op.getOperand(0), Lo, Hi);
4979
4980 // Convert each of the pieces now.
4981 Lo = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Lo,
4982 NewNumEltsNode, TypeNode);
4983 Hi = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Hi,
4984 NewNumEltsNode, TypeNode);
4985 }
4986 break;
4987 }
4988 }
Chris Lattnerc7029802006-03-18 01:44:44 +00004989 }
4990
4991 // Remember in a map if the values will be reused later.
4992 bool isNew =
4993 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4994 assert(isNew && "Value already expanded?!?");
4995}
4996
4997
4998/// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
4999/// equivalent operation that returns a scalar (e.g. F32) or packed value
5000/// (e.g. MVT::V4F32). When this is called, we know that PackedVT is the right
5001/// type for the result.
5002SDOperand SelectionDAGLegalize::PackVectorOp(SDOperand Op,
5003 MVT::ValueType NewVT) {
5004 assert(Op.getValueType() == MVT::Vector && "Bad PackVectorOp invocation!");
5005 SDNode *Node = Op.Val;
5006
5007 // See if we already packed it.
5008 std::map<SDOperand, SDOperand>::iterator I = PackedNodes.find(Op);
5009 if (I != PackedNodes.end()) return I->second;
5010
5011 SDOperand Result;
5012 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00005013 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005014#ifndef NDEBUG
Chris Lattner2332b9f2006-03-19 01:17:20 +00005015 Node->dump(); std::cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005016#endif
Chris Lattner2332b9f2006-03-19 01:17:20 +00005017 assert(0 && "Unknown vector operation in PackVectorOp!");
Chris Lattnerc7029802006-03-18 01:44:44 +00005018 case ISD::VADD:
5019 case ISD::VSUB:
5020 case ISD::VMUL:
5021 case ISD::VSDIV:
5022 case ISD::VUDIV:
5023 case ISD::VAND:
5024 case ISD::VOR:
5025 case ISD::VXOR:
5026 Result = DAG.getNode(getScalarizedOpcode(Node->getOpcode(), NewVT),
5027 NewVT,
5028 PackVectorOp(Node->getOperand(0), NewVT),
5029 PackVectorOp(Node->getOperand(1), NewVT));
5030 break;
5031 case ISD::VLOAD: {
Chris Lattner4794a6b2006-03-19 00:07:49 +00005032 SDOperand Ch = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
5033 SDOperand Ptr = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00005034
Chris Lattner4794a6b2006-03-19 00:07:49 +00005035 Result = DAG.getLoad(NewVT, Ch, Ptr, Node->getOperand(2));
Chris Lattnerc7029802006-03-18 01:44:44 +00005036
5037 // Remember that we legalized the chain.
5038 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
5039 break;
5040 }
Chris Lattnerb2827b02006-03-19 00:52:58 +00005041 case ISD::VBUILD_VECTOR:
Chris Lattner70c2a612006-03-31 02:06:56 +00005042 if (Node->getOperand(0).getValueType() == NewVT) {
Chris Lattnerb2827b02006-03-19 00:52:58 +00005043 // Returning a scalar?
Chris Lattnerc7029802006-03-18 01:44:44 +00005044 Result = Node->getOperand(0);
5045 } else {
Chris Lattnerb2827b02006-03-19 00:52:58 +00005046 // Returning a BUILD_VECTOR?
Chris Lattner17614ea2006-04-08 05:34:25 +00005047
5048 // If all elements of the build_vector are undefs, return an undef.
5049 bool AllUndef = true;
5050 for (unsigned i = 0, e = Node->getNumOperands()-2; i != e; ++i)
5051 if (Node->getOperand(i).getOpcode() != ISD::UNDEF) {
5052 AllUndef = false;
5053 break;
5054 }
5055 if (AllUndef) {
5056 Result = DAG.getNode(ISD::UNDEF, NewVT);
5057 } else {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005058 Result = DAG.getNode(ISD::BUILD_VECTOR, NewVT, Node->op_begin(),
5059 Node->getNumOperands()-2);
Chris Lattner17614ea2006-04-08 05:34:25 +00005060 }
Chris Lattnerc7029802006-03-18 01:44:44 +00005061 }
5062 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00005063 case ISD::VINSERT_VECTOR_ELT:
5064 if (!MVT::isVector(NewVT)) {
5065 // Returning a scalar? Must be the inserted element.
5066 Result = Node->getOperand(1);
5067 } else {
5068 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT,
5069 PackVectorOp(Node->getOperand(0), NewVT),
5070 Node->getOperand(1), Node->getOperand(2));
5071 }
5072 break;
Chris Lattner5b2316e2006-03-28 20:24:43 +00005073 case ISD::VVECTOR_SHUFFLE:
5074 if (!MVT::isVector(NewVT)) {
5075 // Returning a scalar? Figure out if it is the LHS or RHS and return it.
5076 SDOperand EltNum = Node->getOperand(2).getOperand(0);
5077 if (cast<ConstantSDNode>(EltNum)->getValue())
5078 Result = PackVectorOp(Node->getOperand(1), NewVT);
5079 else
5080 Result = PackVectorOp(Node->getOperand(0), NewVT);
5081 } else {
5082 // Otherwise, return a VECTOR_SHUFFLE node. First convert the index
5083 // vector from a VBUILD_VECTOR to a BUILD_VECTOR.
5084 std::vector<SDOperand> BuildVecIdx(Node->getOperand(2).Val->op_begin(),
5085 Node->getOperand(2).Val->op_end()-2);
5086 MVT::ValueType BVT = MVT::getIntVectorWithNumElements(BuildVecIdx.size());
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005087 SDOperand BV = DAG.getNode(ISD::BUILD_VECTOR, BVT,
5088 Node->getOperand(2).Val->op_begin(),
5089 Node->getOperand(2).Val->getNumOperands()-2);
Chris Lattner5b2316e2006-03-28 20:24:43 +00005090
5091 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT,
5092 PackVectorOp(Node->getOperand(0), NewVT),
5093 PackVectorOp(Node->getOperand(1), NewVT), BV);
5094 }
5095 break;
Chris Lattnere25ca692006-03-22 20:09:35 +00005096 case ISD::VBIT_CONVERT:
5097 if (Op.getOperand(0).getValueType() != MVT::Vector)
5098 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
5099 else {
5100 // If the input is a vector type, we have to either scalarize it, pack it
5101 // or convert it based on whether the input vector type is legal.
5102 SDNode *InVal = Node->getOperand(0).Val;
5103 unsigned NumElems =
5104 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5105 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5106
5107 // Figure out if there is a Packed type corresponding to this Vector
5108 // type. If so, convert to the packed type.
5109 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
5110 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
5111 // Turn this into a bit convert of the packed input.
5112 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5113 PackVectorOp(Node->getOperand(0), TVT));
5114 break;
5115 } else if (NumElems == 1) {
5116 // Turn this into a bit convert of the scalar input.
5117 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5118 PackVectorOp(Node->getOperand(0), EVT));
5119 break;
5120 } else {
5121 // FIXME: UNIMP!
5122 assert(0 && "Cast from unsupported vector type not implemented yet!");
5123 }
5124 }
Evan Chengdb3c6262006-04-10 18:54:36 +00005125 break;
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005126 case ISD::VSELECT:
5127 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
5128 PackVectorOp(Op.getOperand(1), NewVT),
5129 PackVectorOp(Op.getOperand(2), NewVT));
5130 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00005131 }
5132
5133 if (TLI.isTypeLegal(NewVT))
5134 Result = LegalizeOp(Result);
5135 bool isNew = PackedNodes.insert(std::make_pair(Op, Result)).second;
5136 assert(isNew && "Value already packed?");
5137 return Result;
5138}
5139
Chris Lattner3e928bb2005-01-07 07:47:09 +00005140
5141// SelectionDAG::Legalize - This is the entry point for the file.
5142//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005143void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00005144 if (ViewLegalizeDAGs) viewGraph();
5145
Chris Lattner3e928bb2005-01-07 07:47:09 +00005146 /// run - This is the main entry point to this class.
5147 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00005148 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005149}
5150