blob: 70686d398a63ee3130c2726dea69e28a032023fb [file] [log] [blame]
Chris Lattnerdc750592005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukman835702a2005-04-21 22:36:52 +00002//
Chris Lattnerdc750592005-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 Brukman835702a2005-04-21 22:36:52 +00007//
Chris Lattnerdc750592005-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 Lattnerdc750592005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner99222f72005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000017#include "llvm/Target/TargetLowering.h"
Chris Lattner85d70c62005-01-11 05:57:22 +000018#include "llvm/Target/TargetData.h"
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +000019#include "llvm/Target/TargetOptions.h"
Chris Lattner2e77db62005-05-13 18:50:42 +000020#include "llvm/CallingConv.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000021#include "llvm/Constants.h"
Chris Lattneref598052006-04-02 03:07:27 +000022#include "llvm/Support/MathExtras.h"
23#include "llvm/Support/CommandLine.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000024#include "llvm/Support/Compiler.h"
Chris Lattner97af9d52006-08-08 01:09:31 +000025#include "llvm/ADT/SmallVector.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000026#include <iostream>
Evan Cheng1d2e9952006-03-24 01:17:21 +000027#include <map>
Chris Lattnerdc750592005-01-07 07:47:09 +000028using namespace llvm;
29
Chris Lattneref598052006-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 Lattnerdc750592005-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 Lattner54a34cd2006-06-28 21:58:30 +000051class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattnerdc750592005-01-07 07:47:09 +000052 TargetLowering &TLI;
53 SelectionDAG &DAG;
54
Chris Lattner462505f2006-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 Lattnerdc750592005-01-07 07:47:09 +000067 enum LegalizeAction {
Chris Lattner2c748af2006-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 Lattneraa2372562006-05-24 17:04:05 +000070 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattnerdc750592005-01-07 07:47:09 +000071 };
Chris Lattner462505f2006-02-13 09:18:02 +000072
Chris Lattnerdc750592005-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 Lattner2c748af2006-01-29 08:42:06 +000076 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattnerdc750592005-01-07 07:47:09 +000077
Chris Lattnerdc750592005-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 Lattner1f2c9d82005-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 Lattner32206f52006-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 Lattnerdc750592005-01-07 07:47:09 +000091 std::map<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
92
Chris Lattner32206f52006-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 Lattnerea4ca942005-01-07 22:28:47 +0000103 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner2af3ee42005-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 Lattnerea4ca942005-01-07 22:28:47 +0000108 }
Chris Lattner1f2c9d82005-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 Lattner2af3ee42005-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 Lattner1f2c9d82005-01-15 05:21:40 +0000114 }
Chris Lattnerea4ca942005-01-07 22:28:47 +0000115
Chris Lattnerdc750592005-01-07 07:47:09 +0000116public:
117
Chris Lattner4add7e32005-01-23 04:42:50 +0000118 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattnerdc750592005-01-07 07:47:09 +0000119
Chris Lattnerdc750592005-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 Lattner2c748af2006-01-29 08:42:06 +0000124 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattnerdc750592005-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 Lattnerdc750592005-01-07 07:47:09 +0000133 void LegalizeDAG();
134
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000135private:
Chris Lattner32206f52006-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 Lattnerdc750592005-01-07 07:47:09 +0000143 SDOperand LegalizeOp(SDOperand O);
Chris Lattner32206f52006-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 Lattner1f2c9d82005-01-15 05:21:40 +0000150 SDOperand PromoteOp(SDOperand O);
Chris Lattnerdc750592005-01-07 07:47:09 +0000151
Chris Lattner32206f52006-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 Lattner6be79822006-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 Lattner4488f0c2006-07-26 23:55:56 +0000181 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
182 std::set<SDNode*> &NodesLeadingTo);
Chris Lattner462505f2006-02-13 09:18:02 +0000183
Nate Begeman7e7f4392006-02-01 07:19:44 +0000184 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
185
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000186 SDOperand CreateStackTemporary(MVT::ValueType VT);
187
Chris Lattneraac464e2005-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 Lattnere3e847b2005-07-16 00:19:57 +0000192
Chris Lattner36e663d2005-12-23 00:16:34 +0000193 SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000194 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner6be79822006-04-04 17:23:26 +0000195 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskeyf2516a92005-08-17 00:39:29 +0000196 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
197 SDOperand LegalOp,
198 MVT::ValueType DestVT);
Nate Begeman7e74c832005-07-16 02:02:34 +0000199 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
200 bool isSigned);
Chris Lattner44fe26f2005-07-29 00:11:56 +0000201 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
202 bool isSigned);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000203
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000204 SDOperand ExpandBSWAP(SDOperand Op);
205 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattner2a7f8a92005-01-19 04:19:40 +0000206 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
207 SDOperand &Lo, SDOperand &Hi);
Chris Lattner4157c412005-04-02 04:00:59 +0000208 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
209 SDOperand &Lo, SDOperand &Hi);
Chris Lattnera5bf1032005-05-12 04:49:08 +0000210
Chris Lattner6f423252006-03-31 17:55:51 +0000211 SDOperand LowerVEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner42a5fca2006-04-02 05:06:04 +0000212 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner6f423252006-03-31 17:55:51 +0000213
Chris Lattnerdc750592005-01-07 07:47:09 +0000214 SDOperand getIntPtrConstant(uint64_t Val) {
215 return DAG.getConstant(Val, TLI.getPointerTy());
216 }
217};
218}
219
Chris Lattner6be79822006-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 Lattnerc24a1d32006-08-08 02:23:42 +0000244 SmallVector<SDOperand, 8> Ops;
Chris Lattner6be79822006-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 Lattnerc24a1d32006-08-08 02:23:42 +0000256 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner6be79822006-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 Lattner32206f52006-03-18 01:44:44 +0000265/// getScalarizedOpcode - Return the scalar opcode that corresponds to the
266/// specified vector opcode.
Chris Lattner301015a2005-11-19 05:51:46 +0000267static unsigned getScalarizedOpcode(unsigned VecOp, MVT::ValueType VT) {
Nate Begemanb2e089c2005-11-19 00:36:38 +0000268 switch (VecOp) {
269 default: assert(0 && "Don't know how to scalarize this opcode!");
Evan Cheng3bf916d2006-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 Begemanb2e089c2005-11-19 00:36:38 +0000278 }
279}
Chris Lattnerdc750592005-01-07 07:47:09 +0000280
Chris Lattner4add7e32005-01-23 04:42:50 +0000281SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
282 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
283 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman89b049a2005-11-29 05:45:29 +0000284 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattnerdc750592005-01-07 07:47:09 +0000285 "Too many value types for ValueTypeActions to hold!");
Chris Lattnerdc750592005-01-07 07:47:09 +0000286}
287
Chris Lattner4bbbb9e2005-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 Lattner4bbbb9e2005-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 Lattner44fe26f2005-07-29 00:11:56 +0000308
Chris Lattnerdc750592005-01-07 07:47:09 +0000309void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner462505f2006-02-13 09:18:02 +0000310 LastCALLSEQ_END = DAG.getEntryNode();
311 IsLegalizingCall = false;
312
Chris Lattner9cfccfb2005-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 Lattner4bbbb9e2005-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 Lattner9cfccfb2005-10-02 17:49:46 +0000321
Chris Lattner4bbbb9e2005-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 Lattnerbf4f23322005-11-09 23:47:37 +0000326 if (I->getNumOperands() == 0) {
327 Visited[I] = 0 - 1U;
328 ComputeTopDownOrdering(I, Order, Visited);
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000329 }
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000330 }
331
Chris Lattnerbf4f23322005-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 Lattner4bbbb9e2005-10-06 01:20:27 +0000335 "Error: DAG is cyclic!");
336 Visited.clear();
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000337
Chris Lattner32206f52006-03-18 01:44:44 +0000338 for (unsigned i = 0, e = Order.size(); i != e; ++i)
339 HandleOp(SDOperand(Order[i], 0));
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000340
341 // Finally, it's possible the root changed. Get the new root.
Chris Lattnerdc750592005-01-07 07:47:09 +0000342 SDOperand OldRoot = DAG.getRoot();
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000343 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
344 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattnerdc750592005-01-07 07:47:09 +0000345
346 ExpandedNodes.clear();
347 LegalizedNodes.clear();
Chris Lattner87a769c2005-01-16 01:11:45 +0000348 PromotedNodes.clear();
Chris Lattner32206f52006-03-18 01:44:44 +0000349 SplitNodes.clear();
350 PackedNodes.clear();
Chris Lattnerdc750592005-01-07 07:47:09 +0000351
352 // Remove dead nodes now.
Chris Lattner8927c872006-08-04 17:45:20 +0000353 DAG.RemoveDeadNodes();
Chris Lattnerdc750592005-01-07 07:47:09 +0000354}
355
Chris Lattner462505f2006-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 Lattner4488f0c2006-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 Lattner462505f2006-02-13 09:18:02 +0000417 if (N == Dest) return true; // N certainly leads to Dest :)
418
Chris Lattner4488f0c2006-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 Lattner462505f2006-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 Lattner4488f0c2006-07-26 23:55:56 +0000442 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner462505f2006-02-13 09:18:02 +0000443
Chris Lattner4488f0c2006-07-26 23:55:56 +0000444 if (OperandsLeadToDest) {
445 NodesLeadingTo.insert(N);
446 return true;
447 }
Chris Lattner462505f2006-02-13 09:18:02 +0000448
449 // Okay, this node looks safe, legalize it and return false.
Chris Lattner916ae072006-04-17 22:10:08 +0000450 HandleOp(SDOperand(N, 0));
Chris Lattner462505f2006-02-13 09:18:02 +0000451 return false;
452}
453
Chris Lattner32206f52006-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 Lattner93640542006-03-19 00:07:49 +0000484 SplitVectorOp(Op, X, Y);
Chris Lattner32206f52006-03-18 01:44:44 +0000485 }
486 }
487 break;
488 }
489}
Chris Lattner462505f2006-02-13 09:18:02 +0000490
491
Chris Lattner32206f52006-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 Lattnerdc750592005-01-07 07:47:09 +0000495SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattnerf12eb4d2005-08-24 16:35:28 +0000496 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnerc0f31c52005-01-08 20:35:13 +0000497 "Caller should expand or promote operands that are not legal!");
Chris Lattnerb5a78e02005-05-12 16:53:42 +0000498 SDNode *Node = Op.Val;
Chris Lattnerc0f31c52005-01-08 20:35:13 +0000499
Chris Lattnerdc750592005-01-07 07:47:09 +0000500 // If this operation defines any values that cannot be represented in a
Chris Lattnerc0f31c52005-01-08 20:35:13 +0000501 // register on this target, make sure to expand or promote them.
Chris Lattnerb5a78e02005-05-12 16:53:42 +0000502 if (Node->getNumValues() > 1) {
503 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattner32206f52006-03-18 01:44:44 +0000504 if (getTypeAction(Node->getValueType(i)) != Legal) {
505 HandleOp(Op.getValue(i));
Chris Lattnerdc750592005-01-07 07:47:09 +0000506 assert(LegalizedNodes.count(Op) &&
Chris Lattner32206f52006-03-18 01:44:44 +0000507 "Handling didn't add legal operands!");
Chris Lattner1f2c9d82005-01-15 05:21:40 +0000508 return LegalizedNodes[Op];
Chris Lattnerdc750592005-01-07 07:47:09 +0000509 }
510 }
511
Chris Lattnerb5a78e02005-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 Lattner85d70c62005-01-11 05:57:22 +0000514 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
515 if (I != LegalizedNodes.end()) return I->second;
Chris Lattnerdc750592005-01-07 07:47:09 +0000516
Nate Begemane5b86d72005-08-10 20:51:12 +0000517 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerdc750592005-01-07 07:47:09 +0000518 SDOperand Result = Op;
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000519 bool isCustom = false;
520
Chris Lattnerdc750592005-01-07 07:47:09 +0000521 switch (Node->getOpcode()) {
Chris Lattnereb637512006-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 Begeman4ca2ea52006-04-22 18:53:45 +0000527 case ISD::TargetJumpTable:
Chris Lattnereb637512006-01-28 08:31:04 +0000528 case ISD::TargetConstant:
Chris Lattner758b0ac2006-01-29 06:26:56 +0000529 case ISD::TargetConstantFP:
Chris Lattnereb637512006-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 Lattnerdc750592005-01-07 07:47:09 +0000541 default:
Chris Lattner3eb86932005-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 Lattner97af9d52006-08-08 01:09:31 +0000545 SmallVector<SDOperand, 8> Ops;
Chris Lattner62f1b832006-05-17 18:00:08 +0000546 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattner3eb86932005-05-14 06:34:48 +0000547 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner62f1b832006-05-17 18:00:08 +0000548
Chris Lattner97af9d52006-08-08 01:09:31 +0000549 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattner3eb86932005-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 Laskeyc3d341e2006-07-11 17:58:07 +0000556#ifndef NDEBUG
Chris Lattnerdc750592005-01-07 07:47:09 +0000557 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +0000558#endif
Chris Lattnerdc750592005-01-07 07:47:09 +0000559 assert(0 && "Do not know how to legalize this operator!");
560 abort();
Chris Lattnerdc750592005-01-07 07:47:09 +0000561 case ISD::GlobalAddress:
Chris Lattner32f20bf2005-01-07 21:45:56 +0000562 case ISD::ExternalSymbol:
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000563 case ISD::ConstantPool:
564 case ISD::JumpTable: // Nothing to do.
Chris Lattner45ca1c02005-11-17 06:41:44 +0000565 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
566 default: assert(0 && "This action is not supported yet!");
Chris Lattnereb637512006-01-28 08:31:04 +0000567 case TargetLowering::Custom:
568 Tmp1 = TLI.LowerOperation(Op, DAG);
569 if (Tmp1.Val) Result = Tmp1;
570 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner45ca1c02005-11-17 06:41:44 +0000571 case TargetLowering::Legal:
Chris Lattner45ca1c02005-11-17 06:41:44 +0000572 break;
573 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000574 break;
Chris Lattnerd9af1aa2005-09-02 01:15:01 +0000575 case ISD::AssertSext:
576 case ISD::AssertZext:
577 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +0000578 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerd9af1aa2005-09-02 01:15:01 +0000579 break;
Chris Lattner44c28c22005-11-20 22:56:56 +0000580 case ISD::MERGE_VALUES:
Chris Lattnerd02b0542006-01-28 10:58:55 +0000581 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000582 Result = Node->getOperand(Op.ResNo);
583 break;
Chris Lattner3b8e7192005-01-14 22:38:01 +0000584 case ISD::CopyFromReg:
585 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnere3c67e92005-12-18 15:27:43 +0000586 Result = Op.getValue(0);
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000587 if (Node->getNumValues() == 2) {
Chris Lattnerd02b0542006-01-28 10:58:55 +0000588 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnere3c67e92005-12-18 15:27:43 +0000589 } else {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000590 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerd02b0542006-01-28 10:58:55 +0000591 if (Node->getNumOperands() == 3) {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000592 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerd02b0542006-01-28 10:58:55 +0000593 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
594 } else {
595 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
596 }
Chris Lattnere3c67e92005-12-18 15:27:43 +0000597 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
598 }
Chris Lattnereb6614d2005-01-28 06:27:38 +0000599 // Since CopyFromReg produces two values, make sure to remember that we
600 // legalized both of them.
601 AddLegalizedOperand(Op.getValue(0), Result);
602 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
603 return Result.getValue(Op.ResNo);
Nate Begemancda9aa72005-04-01 22:34:39 +0000604 case ISD::UNDEF: {
605 MVT::ValueType VT = Op.getValueType();
606 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begeman69d39432005-04-02 00:41:14 +0000607 default: assert(0 && "This action is not supported yet!");
608 case TargetLowering::Expand:
Nate Begemancda9aa72005-04-01 22:34:39 +0000609 if (MVT::isInteger(VT))
610 Result = DAG.getConstant(0, VT);
611 else if (MVT::isFloatingPoint(VT))
612 Result = DAG.getConstantFP(0, VT);
613 else
614 assert(0 && "Unknown value type!");
615 break;
Nate Begeman69d39432005-04-02 00:41:14 +0000616 case TargetLowering::Legal:
Nate Begemancda9aa72005-04-01 22:34:39 +0000617 break;
618 }
619 break;
620 }
Chris Lattnera4f68052006-03-24 02:26:29 +0000621
Chris Lattnere55d1712006-03-28 00:40:33 +0000622 case ISD::INTRINSIC_W_CHAIN:
623 case ISD::INTRINSIC_WO_CHAIN:
624 case ISD::INTRINSIC_VOID: {
Chris Lattner97af9d52006-08-08 01:09:31 +0000625 SmallVector<SDOperand, 8> Ops;
Chris Lattnera4f68052006-03-24 02:26:29 +0000626 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
627 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner97af9d52006-08-08 01:09:31 +0000628 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner30ee7252006-03-26 09:12:51 +0000629
630 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattnere55d1712006-03-28 00:40:33 +0000631 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner30ee7252006-03-26 09:12:51 +0000632 TargetLowering::Custom) {
633 Tmp3 = TLI.LowerOperation(Result, DAG);
634 if (Tmp3.Val) Result = Tmp3;
Chris Lattnerd5f94c92006-03-27 20:28:29 +0000635 }
636
637 if (Result.Val->getNumValues() == 1) break;
638
639 // Must have return value and chain result.
640 assert(Result.Val->getNumValues() == 2 &&
641 "Cannot return more than two values!");
642
643 // Since loads produce two values, make sure to remember that we
644 // legalized both of them.
645 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
646 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
647 return Result.getValue(Op.ResNo);
Chris Lattnera4f68052006-03-24 02:26:29 +0000648 }
Chris Lattner435b4022005-11-29 06:21:05 +0000649
650 case ISD::LOCATION:
651 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
652 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
653
654 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
655 case TargetLowering::Promote:
656 default: assert(0 && "This action is not supported yet!");
Jim Laskey7c462762005-12-16 22:45:29 +0000657 case TargetLowering::Expand: {
Jim Laskey219d5592006-01-04 22:28:25 +0000658 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskey762e9ec2006-01-05 01:25:28 +0000659 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
660 bool useDEBUG_LABEL = TLI.isOperationLegal(ISD::DEBUG_LABEL, MVT::Other);
661
662 if (DebugInfo && (useDEBUG_LOC || useDEBUG_LABEL)) {
663 const std::string &FName =
664 cast<StringSDNode>(Node->getOperand(3))->getValue();
665 const std::string &DirName =
666 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskeyb9966022006-01-17 17:31:53 +0000667 unsigned SrcFile = DebugInfo->RecordSource(DirName, FName);
Jim Laskey762e9ec2006-01-05 01:25:28 +0000668
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000669 SmallVector<SDOperand, 8> Ops;
Jim Laskey9e296be2005-12-21 20:51:37 +0000670 Ops.push_back(Tmp1); // chain
Jim Laskey762e9ec2006-01-05 01:25:28 +0000671 SDOperand LineOp = Node->getOperand(1);
672 SDOperand ColOp = Node->getOperand(2);
673
674 if (useDEBUG_LOC) {
675 Ops.push_back(LineOp); // line #
676 Ops.push_back(ColOp); // col #
677 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000678 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskey762e9ec2006-01-05 01:25:28 +0000679 } else {
Jim Laskey2eea4362006-02-15 19:34:44 +0000680 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
681 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskey762e9ec2006-01-05 01:25:28 +0000682 unsigned ID = DebugInfo->RecordLabel(Line, Col, SrcFile);
683 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000684 Result = DAG.getNode(ISD::DEBUG_LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskey762e9ec2006-01-05 01:25:28 +0000685 }
Jim Laskey9e296be2005-12-21 20:51:37 +0000686 } else {
687 Result = Tmp1; // chain
688 }
Chris Lattner435b4022005-11-29 06:21:05 +0000689 break;
Chris Lattnerc06da622005-12-18 23:54:29 +0000690 }
Chris Lattner435b4022005-11-29 06:21:05 +0000691 case TargetLowering::Legal:
Chris Lattner05b0b452005-12-01 18:21:35 +0000692 if (Tmp1 != Node->getOperand(0) ||
693 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattner97af9d52006-08-08 01:09:31 +0000694 SmallVector<SDOperand, 8> Ops;
Chris Lattner435b4022005-11-29 06:21:05 +0000695 Ops.push_back(Tmp1);
Chris Lattner05b0b452005-12-01 18:21:35 +0000696 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
697 Ops.push_back(Node->getOperand(1)); // line # must be legal.
698 Ops.push_back(Node->getOperand(2)); // col # must be legal.
699 } else {
700 // Otherwise promote them.
701 Ops.push_back(PromoteOp(Node->getOperand(1)));
702 Ops.push_back(PromoteOp(Node->getOperand(2)));
703 }
Chris Lattner435b4022005-11-29 06:21:05 +0000704 Ops.push_back(Node->getOperand(3)); // filename must be legal.
705 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattner97af9d52006-08-08 01:09:31 +0000706 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner435b4022005-11-29 06:21:05 +0000707 }
708 break;
709 }
710 break;
Jim Laskey7c462762005-12-16 22:45:29 +0000711
712 case ISD::DEBUG_LOC:
Jim Laskey762e9ec2006-01-05 01:25:28 +0000713 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskey7c462762005-12-16 22:45:29 +0000714 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskey7c462762005-12-16 22:45:29 +0000715 default: assert(0 && "This action is not supported yet!");
Jim Laskey762e9ec2006-01-05 01:25:28 +0000716 case TargetLowering::Legal:
717 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
718 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
719 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
720 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000721 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskey762e9ec2006-01-05 01:25:28 +0000722 break;
723 }
724 break;
725
726 case ISD::DEBUG_LABEL:
727 assert(Node->getNumOperands() == 2 && "Invalid DEBUG_LABEL node!");
728 switch (TLI.getOperationAction(ISD::DEBUG_LABEL, MVT::Other)) {
Jim Laskey762e9ec2006-01-05 01:25:28 +0000729 default: assert(0 && "This action is not supported yet!");
730 case TargetLowering::Legal:
731 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
732 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000733 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskey7c462762005-12-16 22:45:29 +0000734 break;
735 }
Nate Begeman5965bd12006-02-17 05:43:56 +0000736 break;
Chris Lattner435b4022005-11-29 06:21:05 +0000737
Chris Lattnerdc750592005-01-07 07:47:09 +0000738 case ISD::Constant:
739 // We know we don't need to expand constants here, constants only have one
740 // value and we check that it is fine above.
741
742 // FIXME: Maybe we should handle things like targets that don't support full
743 // 32-bit immediates?
744 break;
745 case ISD::ConstantFP: {
746 // Spill FP immediates to the constant pool if the target cannot directly
747 // codegen them. Targets often have some immediate values that can be
748 // efficiently generated into an FP register without a load. We explicitly
749 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattnerdc750592005-01-07 07:47:09 +0000750 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
751
752 // Check to see if this FP immediate is already legal.
753 bool isLegal = false;
754 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
755 E = TLI.legal_fpimm_end(); I != E; ++I)
756 if (CFP->isExactlyValue(*I)) {
757 isLegal = true;
758 break;
759 }
760
Chris Lattner758b0ac2006-01-29 06:26:56 +0000761 // If this is a legal constant, turn it into a TargetConstantFP node.
762 if (isLegal) {
763 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
764 break;
765 }
766
767 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
768 default: assert(0 && "This action is not supported yet!");
769 case TargetLowering::Custom:
770 Tmp3 = TLI.LowerOperation(Result, DAG);
771 if (Tmp3.Val) {
772 Result = Tmp3;
773 break;
774 }
775 // FALLTHROUGH
776 case TargetLowering::Expand:
Chris Lattnerdc750592005-01-07 07:47:09 +0000777 // Otherwise we need to spill the constant to memory.
Chris Lattnerdc750592005-01-07 07:47:09 +0000778 bool Extend = false;
779
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000780 // If a FP immediate is precise when represented as a float and if the
781 // target can do an extending load from float to double, we put it into
782 // the constant pool as a float, even if it's is statically typed as a
783 // double.
Chris Lattnerdc750592005-01-07 07:47:09 +0000784 MVT::ValueType VT = CFP->getValueType(0);
785 bool isDouble = VT == MVT::f64;
786 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
787 Type::FloatTy, CFP->getValue());
Chris Lattnerbc7497d2005-01-28 22:58:25 +0000788 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
789 // Only do this if the target has a native EXTLOAD instruction from
790 // f32.
Chris Lattnerf12eb4d2005-08-24 16:35:28 +0000791 TLI.isOperationLegal(ISD::EXTLOAD, MVT::f32)) {
Chris Lattnerdc750592005-01-07 07:47:09 +0000792 LLVMC = cast<ConstantFP>(ConstantExpr::getCast(LLVMC, Type::FloatTy));
793 VT = MVT::f32;
794 Extend = true;
795 }
Misha Brukman835702a2005-04-21 22:36:52 +0000796
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000797 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Chris Lattner3ba56b32005-01-16 05:06:12 +0000798 if (Extend) {
Chris Lattnerde0a4b12005-07-10 01:55:33 +0000799 Result = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
800 CPIdx, DAG.getSrcValue(NULL), MVT::f32);
Chris Lattner3ba56b32005-01-16 05:06:12 +0000801 } else {
Chris Lattner5385db52005-05-09 20:23:03 +0000802 Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
803 DAG.getSrcValue(NULL));
Chris Lattner3ba56b32005-01-16 05:06:12 +0000804 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000805 }
806 break;
807 }
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000808 case ISD::TokenFactor:
809 if (Node->getNumOperands() == 2) {
Chris Lattnerd02b0542006-01-28 10:58:55 +0000810 Tmp1 = LegalizeOp(Node->getOperand(0));
811 Tmp2 = LegalizeOp(Node->getOperand(1));
812 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
813 } else if (Node->getNumOperands() == 3) {
814 Tmp1 = LegalizeOp(Node->getOperand(0));
815 Tmp2 = LegalizeOp(Node->getOperand(1));
816 Tmp3 = LegalizeOp(Node->getOperand(2));
817 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000818 } else {
Chris Lattner97af9d52006-08-08 01:09:31 +0000819 SmallVector<SDOperand, 8> Ops;
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000820 // Legalize the operands.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000821 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
822 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner97af9d52006-08-08 01:09:31 +0000823 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner05b4e372005-01-13 17:59:25 +0000824 }
Chris Lattner05b4e372005-01-13 17:59:25 +0000825 break;
Chris Lattnerd3b504a2006-04-12 16:20:43 +0000826
827 case ISD::FORMAL_ARGUMENTS:
Chris Lattneraaa23d92006-05-16 22:53:20 +0000828 case ISD::CALL:
Chris Lattnerd3b504a2006-04-12 16:20:43 +0000829 // The only option for this is to custom lower it.
Chris Lattnera1cec012006-05-17 17:55:45 +0000830 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
831 assert(Tmp3.Val && "Target didn't custom lower this node!");
832 assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
833 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattner5f0edfb2006-05-16 05:49:56 +0000834
Chris Lattneraaa23d92006-05-16 22:53:20 +0000835 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattner5f0edfb2006-05-16 05:49:56 +0000836 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnera1cec012006-05-17 17:55:45 +0000837 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
838 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattner5f0edfb2006-05-16 05:49:56 +0000839 if (Op.ResNo == i)
840 Tmp2 = Tmp1;
841 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
842 }
843 return Tmp2;
Chris Lattnerd3b504a2006-04-12 16:20:43 +0000844
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000845 case ISD::BUILD_VECTOR:
846 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner29b23012006-03-19 01:17:20 +0000847 default: assert(0 && "This action is not supported yet!");
848 case TargetLowering::Custom:
849 Tmp3 = TLI.LowerOperation(Result, DAG);
850 if (Tmp3.Val) {
851 Result = Tmp3;
852 break;
853 }
854 // FALLTHROUGH
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000855 case TargetLowering::Expand:
856 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000857 break;
Chris Lattner29b23012006-03-19 01:17:20 +0000858 }
Chris Lattner29b23012006-03-19 01:17:20 +0000859 break;
860 case ISD::INSERT_VECTOR_ELT:
861 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
862 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
863 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
864 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
865
866 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
867 Node->getValueType(0))) {
868 default: assert(0 && "This action is not supported yet!");
869 case TargetLowering::Legal:
870 break;
871 case TargetLowering::Custom:
872 Tmp3 = TLI.LowerOperation(Result, DAG);
873 if (Tmp3.Val) {
874 Result = Tmp3;
875 break;
876 }
877 // FALLTHROUGH
878 case TargetLowering::Expand: {
Chris Lattner326870b2006-04-17 19:21:01 +0000879 // If the insert index is a constant, codegen this as a scalar_to_vector,
880 // then a shuffle that inserts it into the right position in the vector.
881 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
882 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
883 Tmp1.getValueType(), Tmp2);
884
885 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
886 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
887 MVT::ValueType ShufMaskEltVT = MVT::getVectorBaseType(ShufMaskVT);
888
889 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
890 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
891 // the RHS.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000892 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner326870b2006-04-17 19:21:01 +0000893 for (unsigned i = 0; i != NumElts; ++i) {
894 if (i != InsertPos->getValue())
895 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
896 else
897 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
898 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000899 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
900 &ShufOps[0], ShufOps.size());
Chris Lattner326870b2006-04-17 19:21:01 +0000901
902 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
903 Tmp1, ScVec, ShufMask);
904 Result = LegalizeOp(Result);
905 break;
906 }
907
Chris Lattner29b23012006-03-19 01:17:20 +0000908 // If the target doesn't support this, we have to spill the input vector
909 // to a temporary stack slot, update the element, then reload it. This is
910 // badness. We could also load the value into a vector register (either
911 // with a "move to register" or "extload into register" instruction, then
912 // permute it into place, if the idx is a constant and if the idx is
913 // supported by the target.
Evan Cheng78e3d562006-04-08 01:46:37 +0000914 MVT::ValueType VT = Tmp1.getValueType();
915 MVT::ValueType EltVT = Tmp2.getValueType();
916 MVT::ValueType IdxVT = Tmp3.getValueType();
917 MVT::ValueType PtrVT = TLI.getPointerTy();
918 SDOperand StackPtr = CreateStackTemporary(VT);
Evan Cheng168e45b2006-03-31 01:27:51 +0000919 // Store the vector.
920 SDOperand Ch = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
921 Tmp1, StackPtr, DAG.getSrcValue(NULL));
922
923 // Truncate or zero extend offset to target pointer type.
Evan Cheng78e3d562006-04-08 01:46:37 +0000924 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
925 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Cheng168e45b2006-03-31 01:27:51 +0000926 // Add the offset to the index.
Evan Cheng78e3d562006-04-08 01:46:37 +0000927 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
928 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
929 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Cheng168e45b2006-03-31 01:27:51 +0000930 // Store the scalar value.
931 Ch = DAG.getNode(ISD::STORE, MVT::Other, Ch,
932 Tmp2, StackPtr2, DAG.getSrcValue(NULL));
933 // Load the updated vector.
Evan Cheng78e3d562006-04-08 01:46:37 +0000934 Result = DAG.getLoad(VT, Ch, StackPtr, DAG.getSrcValue(NULL));
Chris Lattner29b23012006-03-19 01:17:20 +0000935 break;
936 }
937 }
938 break;
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000939 case ISD::SCALAR_TO_VECTOR:
Chris Lattner6be79822006-04-04 17:23:26 +0000940 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
941 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
942 break;
943 }
944
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000945 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
946 Result = DAG.UpdateNodeOperands(Result, Tmp1);
947 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
948 Node->getValueType(0))) {
949 default: assert(0 && "This action is not supported yet!");
950 case TargetLowering::Legal:
951 break;
Chris Lattner79fb91c2006-03-19 06:47:21 +0000952 case TargetLowering::Custom:
953 Tmp3 = TLI.LowerOperation(Result, DAG);
954 if (Tmp3.Val) {
955 Result = Tmp3;
956 break;
957 }
958 // FALLTHROUGH
Chris Lattner6be79822006-04-04 17:23:26 +0000959 case TargetLowering::Expand:
960 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000961 break;
962 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000963 break;
Chris Lattner21e68c82006-03-20 01:52:29 +0000964 case ISD::VECTOR_SHUFFLE:
Chris Lattner21e68c82006-03-20 01:52:29 +0000965 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
966 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
967 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
968
969 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner6be79822006-04-04 17:23:26 +0000970 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
971 default: assert(0 && "Unknown operation action!");
972 case TargetLowering::Legal:
973 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
974 "vector shuffle should not be created if not legal!");
975 break;
976 case TargetLowering::Custom:
Evan Cheng9fa89592006-04-05 06:07:11 +0000977 Tmp3 = TLI.LowerOperation(Result, DAG);
978 if (Tmp3.Val) {
979 Result = Tmp3;
980 break;
981 }
982 // FALLTHROUGH
983 case TargetLowering::Expand: {
984 MVT::ValueType VT = Node->getValueType(0);
985 MVT::ValueType EltVT = MVT::getVectorBaseType(VT);
986 MVT::ValueType PtrVT = TLI.getPointerTy();
987 SDOperand Mask = Node->getOperand(2);
988 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000989 SmallVector<SDOperand,8> Ops;
Evan Cheng9fa89592006-04-05 06:07:11 +0000990 for (unsigned i = 0; i != NumElems; ++i) {
991 SDOperand Arg = Mask.getOperand(i);
992 if (Arg.getOpcode() == ISD::UNDEF) {
993 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
994 } else {
995 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
996 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
997 if (Idx < NumElems)
998 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
999 DAG.getConstant(Idx, PtrVT)));
1000 else
1001 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1002 DAG.getConstant(Idx - NumElems, PtrVT)));
1003 }
1004 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001005 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6be79822006-04-04 17:23:26 +00001006 break;
Evan Cheng9fa89592006-04-05 06:07:11 +00001007 }
Chris Lattner6be79822006-04-04 17:23:26 +00001008 case TargetLowering::Promote: {
1009 // Change base type to a different vector type.
1010 MVT::ValueType OVT = Node->getValueType(0);
1011 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1012
1013 // Cast the two input vectors.
1014 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1015 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1016
1017 // Convert the shuffle mask to the right # elements.
1018 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1019 assert(Tmp3.Val && "Shuffle not legal?");
1020 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1021 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1022 break;
1023 }
Chris Lattner21e68c82006-03-20 01:52:29 +00001024 }
1025 break;
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001026
1027 case ISD::EXTRACT_VECTOR_ELT:
1028 Tmp1 = LegalizeOp(Node->getOperand(0));
1029 Tmp2 = LegalizeOp(Node->getOperand(1));
1030 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner340a6b52006-03-21 21:02:03 +00001031
1032 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT,
1033 Tmp1.getValueType())) {
1034 default: assert(0 && "This action is not supported yet!");
1035 case TargetLowering::Legal:
1036 break;
1037 case TargetLowering::Custom:
1038 Tmp3 = TLI.LowerOperation(Result, DAG);
1039 if (Tmp3.Val) {
1040 Result = Tmp3;
1041 break;
1042 }
1043 // FALLTHROUGH
Chris Lattner42a5fca2006-04-02 05:06:04 +00001044 case TargetLowering::Expand:
1045 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner340a6b52006-03-21 21:02:03 +00001046 break;
1047 }
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001048 break;
1049
Chris Lattner6f423252006-03-31 17:55:51 +00001050 case ISD::VEXTRACT_VECTOR_ELT:
1051 Result = LegalizeOp(LowerVEXTRACT_VECTOR_ELT(Op));
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001052 break;
Chris Lattner21e68c82006-03-20 01:52:29 +00001053
Chris Lattner462505f2006-02-13 09:18:02 +00001054 case ISD::CALLSEQ_START: {
1055 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1056
1057 // Recursively Legalize all of the inputs of the call end that do not lead
1058 // to this call start. This ensures that any libcalls that need be inserted
1059 // are inserted *before* the CALLSEQ_START.
Chris Lattner4488f0c2006-07-26 23:55:56 +00001060 {std::set<SDNode*> NodesLeadingTo;
Chris Lattner462505f2006-02-13 09:18:02 +00001061 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattner4488f0c2006-07-26 23:55:56 +00001062 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1063 NodesLeadingTo);
1064 }
Chris Lattner462505f2006-02-13 09:18:02 +00001065
1066 // Now that we legalized all of the inputs (which may have inserted
1067 // libcalls) create the new CALLSEQ_START node.
1068 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1069
1070 // Merge in the last call, to ensure that this call start after the last
1071 // call ended.
Chris Lattner62f1b832006-05-17 18:00:08 +00001072 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnera1cec012006-05-17 17:55:45 +00001073 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1074 Tmp1 = LegalizeOp(Tmp1);
1075 }
Chris Lattner462505f2006-02-13 09:18:02 +00001076
1077 // Do not try to legalize the target-specific arguments (#1+).
1078 if (Tmp1 != Node->getOperand(0)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001079 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner462505f2006-02-13 09:18:02 +00001080 Ops[0] = Tmp1;
Chris Lattner97af9d52006-08-08 01:09:31 +00001081 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner462505f2006-02-13 09:18:02 +00001082 }
1083
1084 // Remember that the CALLSEQ_START is legalized.
Chris Lattner8e2ee732006-02-14 00:55:02 +00001085 AddLegalizedOperand(Op.getValue(0), Result);
1086 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1087 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1088
Chris Lattner462505f2006-02-13 09:18:02 +00001089 // Now that the callseq_start and all of the non-call nodes above this call
1090 // sequence have been legalized, legalize the call itself. During this
1091 // process, no libcalls can/will be inserted, guaranteeing that no calls
1092 // can overlap.
1093 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1094 SDOperand InCallSEQ = LastCALLSEQ_END;
1095 // Note that we are selecting this call!
1096 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1097 IsLegalizingCall = true;
1098
1099 // Legalize the call, starting from the CALLSEQ_END.
1100 LegalizeOp(LastCALLSEQ_END);
1101 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1102 return Result;
1103 }
Chris Lattner2dce7032005-05-12 23:24:06 +00001104 case ISD::CALLSEQ_END:
Chris Lattner462505f2006-02-13 09:18:02 +00001105 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1106 // will cause this node to be legalized as well as handling libcalls right.
1107 if (LastCALLSEQ_END.Val != Node) {
1108 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
1109 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
1110 assert(I != LegalizedNodes.end() &&
1111 "Legalizing the call start should have legalized this node!");
1112 return I->second;
1113 }
1114
1115 // Otherwise, the call start has been legalized and everything is going
1116 // according to plan. Just legalize ourselves normally here.
Chris Lattnerdc750592005-01-07 07:47:09 +00001117 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerccb44762006-01-29 07:58:15 +00001118 // Do not try to legalize the target-specific arguments (#1+), except for
1119 // an optional flag input.
1120 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1121 if (Tmp1 != Node->getOperand(0)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001122 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattnerccb44762006-01-29 07:58:15 +00001123 Ops[0] = Tmp1;
Chris Lattner97af9d52006-08-08 01:09:31 +00001124 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerccb44762006-01-29 07:58:15 +00001125 }
1126 } else {
1127 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1128 if (Tmp1 != Node->getOperand(0) ||
1129 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001130 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattnerccb44762006-01-29 07:58:15 +00001131 Ops[0] = Tmp1;
1132 Ops.back() = Tmp2;
Chris Lattner97af9d52006-08-08 01:09:31 +00001133 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerccb44762006-01-29 07:58:15 +00001134 }
Chris Lattnerf9a1e3a2006-01-24 05:48:21 +00001135 }
Chris Lattner8e2ee732006-02-14 00:55:02 +00001136 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner462505f2006-02-13 09:18:02 +00001137 // This finishes up call legalization.
1138 IsLegalizingCall = false;
Chris Lattner8e2ee732006-02-14 00:55:02 +00001139
1140 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1141 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1142 if (Node->getNumValues() == 2)
1143 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1144 return Result.getValue(Op.ResNo);
Evan Cheng7f4ec822006-01-11 22:14:47 +00001145 case ISD::DYNAMIC_STACKALLOC: {
Chris Lattnerec26b482005-01-09 19:03:49 +00001146 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1147 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1148 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001149 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerec26b482005-01-09 19:03:49 +00001150
Chris Lattnerd02b0542006-01-28 10:58:55 +00001151 Tmp1 = Result.getValue(0);
Chris Lattner2d591422006-01-15 08:43:08 +00001152 Tmp2 = Result.getValue(1);
Evan Cheng7f4ec822006-01-11 22:14:47 +00001153 switch (TLI.getOperationAction(Node->getOpcode(),
1154 Node->getValueType(0))) {
1155 default: assert(0 && "This action is not supported yet!");
Chris Lattner59b82f92006-01-15 08:54:32 +00001156 case TargetLowering::Expand: {
1157 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1158 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1159 " not tell us which reg is the stack pointer!");
1160 SDOperand Chain = Tmp1.getOperand(0);
1161 SDOperand Size = Tmp2.getOperand(1);
1162 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
1163 Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size); // Value
1164 Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1); // Output chain
Chris Lattnerd02b0542006-01-28 10:58:55 +00001165 Tmp1 = LegalizeOp(Tmp1);
1166 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner59b82f92006-01-15 08:54:32 +00001167 break;
1168 }
1169 case TargetLowering::Custom:
Chris Lattner2d591422006-01-15 08:43:08 +00001170 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1171 if (Tmp3.Val) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001172 Tmp1 = LegalizeOp(Tmp3);
1173 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Cheng7f4ec822006-01-11 22:14:47 +00001174 }
Chris Lattner59b82f92006-01-15 08:54:32 +00001175 break;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001176 case TargetLowering::Legal:
Chris Lattner59b82f92006-01-15 08:54:32 +00001177 break;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001178 }
Chris Lattner59b82f92006-01-15 08:54:32 +00001179 // Since this op produce two values, make sure to remember that we
1180 // legalized both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001181 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1182 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner59b82f92006-01-15 08:54:32 +00001183 return Op.ResNo ? Tmp2 : Tmp1;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001184 }
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001185 case ISD::INLINEASM: {
Chris Lattner97af9d52006-08-08 01:09:31 +00001186 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001187 bool Changed = false;
1188 // Legalize all of the operands of the inline asm, in case they are nodes
1189 // that need to be expanded or something. Note we skip the asm string and
1190 // all of the TargetConstant flags.
1191 SDOperand Op = LegalizeOp(Ops[0]);
1192 Changed = Op != Ops[0];
1193 Ops[0] = Op;
1194
1195 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1196 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1197 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1198 for (++i; NumVals; ++i, --NumVals) {
1199 SDOperand Op = LegalizeOp(Ops[i]);
1200 if (Op != Ops[i]) {
1201 Changed = true;
1202 Ops[i] = Op;
1203 }
1204 }
Chris Lattner476e67b2006-01-26 22:24:51 +00001205 }
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001206
1207 if (HasInFlag) {
1208 Op = LegalizeOp(Ops.back());
1209 Changed |= Op != Ops.back();
1210 Ops.back() = Op;
1211 }
1212
1213 if (Changed)
Chris Lattner97af9d52006-08-08 01:09:31 +00001214 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner476e67b2006-01-26 22:24:51 +00001215
1216 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001217 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner476e67b2006-01-26 22:24:51 +00001218 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1219 return Result.getValue(Op.ResNo);
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001220 }
Chris Lattner68a12142005-01-07 22:12:08 +00001221 case ISD::BR:
1222 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001223 // Ensure that libcalls are emitted before a branch.
1224 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1225 Tmp1 = LegalizeOp(Tmp1);
1226 LastCALLSEQ_END = DAG.getEntryNode();
1227
Chris Lattnerd02b0542006-01-28 10:58:55 +00001228 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner68a12142005-01-07 22:12:08 +00001229 break;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001230 case ISD::BRIND:
1231 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1232 // Ensure that libcalls are emitted before a branch.
1233 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1234 Tmp1 = LegalizeOp(Tmp1);
1235 LastCALLSEQ_END = DAG.getEntryNode();
1236
1237 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1238 default: assert(0 && "Indirect target must be legal type (pointer)!");
1239 case Legal:
1240 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1241 break;
1242 }
1243 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1244 break;
Chris Lattnerec3fe7c2005-01-07 08:19:42 +00001245 case ISD::BRCOND:
1246 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001247 // Ensure that libcalls are emitted before a return.
1248 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1249 Tmp1 = LegalizeOp(Tmp1);
1250 LastCALLSEQ_END = DAG.getEntryNode();
1251
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001252 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1253 case Expand: assert(0 && "It's impossible to expand bools");
1254 case Legal:
1255 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1256 break;
1257 case Promote:
1258 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
1259 break;
1260 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001261
1262 // Basic block destination (Op#2) is always legal.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001263 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman371e4952005-08-16 19:49:35 +00001264
1265 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1266 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001267 case TargetLowering::Legal: break;
1268 case TargetLowering::Custom:
1269 Tmp1 = TLI.LowerOperation(Result, DAG);
1270 if (Tmp1.Val) Result = Tmp1;
1271 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001272 case TargetLowering::Expand:
1273 // Expand brcond's setcc into its constituent parts and create a BR_CC
1274 // Node.
1275 if (Tmp2.getOpcode() == ISD::SETCC) {
1276 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1277 Tmp2.getOperand(0), Tmp2.getOperand(1),
1278 Node->getOperand(2));
1279 } else {
Chris Lattner539c3fa2005-08-21 18:03:09 +00001280 // Make sure the condition is either zero or one. It may have been
1281 // promoted from something else.
Chris Lattnere9721b22006-01-31 05:04:52 +00001282 unsigned NumBits = MVT::getSizeInBits(Tmp2.getValueType());
1283 if (!TLI.MaskedValueIsZero(Tmp2, (~0ULL >> (64-NumBits))^1))
1284 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner539c3fa2005-08-21 18:03:09 +00001285
Nate Begeman371e4952005-08-16 19:49:35 +00001286 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1287 DAG.getCondCode(ISD::SETNE), Tmp2,
1288 DAG.getConstant(0, Tmp2.getValueType()),
1289 Node->getOperand(2));
1290 }
1291 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001292 }
1293 break;
1294 case ISD::BR_CC:
1295 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001296 // Ensure that libcalls are emitted before a branch.
1297 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1298 Tmp1 = LegalizeOp(Tmp1);
1299 LastCALLSEQ_END = DAG.getEntryNode();
1300
Nate Begeman7e7f4392006-02-01 07:19:44 +00001301 Tmp2 = Node->getOperand(2); // LHS
1302 Tmp3 = Node->getOperand(3); // RHS
1303 Tmp4 = Node->getOperand(1); // CC
1304
1305 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1306
1307 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1308 // the LHS is a legal SETCC itself. In this case, we need to compare
1309 // the result against zero to select between true and false values.
1310 if (Tmp3.Val == 0) {
1311 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1312 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001313 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00001314
1315 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1316 Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001317
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001318 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1319 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001320 case TargetLowering::Legal: break;
1321 case TargetLowering::Custom:
1322 Tmp4 = TLI.LowerOperation(Result, DAG);
1323 if (Tmp4.Val) Result = Tmp4;
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001324 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001325 }
Chris Lattnerec3fe7c2005-01-07 08:19:42 +00001326 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001327 case ISD::LOAD: {
Chris Lattnerdc750592005-01-07 07:47:09 +00001328 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1329 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00001330
Evan Cheng31d15fa2005-12-23 07:29:34 +00001331 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001332 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Chengbe8a8932006-04-12 16:33:18 +00001333 Tmp3 = Result.getValue(0);
1334 Tmp4 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001335
Evan Cheng31d15fa2005-12-23 07:29:34 +00001336 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1337 default: assert(0 && "This action is not supported yet!");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001338 case TargetLowering::Legal: break;
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001339 case TargetLowering::Custom:
Evan Chengbe8a8932006-04-12 16:33:18 +00001340 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001341 if (Tmp1.Val) {
Evan Chengbe8a8932006-04-12 16:33:18 +00001342 Tmp3 = LegalizeOp(Tmp1);
1343 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Evan Cheng31d15fa2005-12-23 07:29:34 +00001344 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001345 break;
Evan Chengbe8a8932006-04-12 16:33:18 +00001346 case TargetLowering::Promote: {
1347 // Only promote a load of vector type to another.
1348 assert(MVT::isVector(VT) && "Cannot promote this load!");
1349 // Change base type to a different vector type.
1350 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1351
1352 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, Node->getOperand(2));
1353 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1354 Tmp4 = LegalizeOp(Tmp1.getValue(1));
1355 break;
1356 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00001357 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001358 // Since loads produce two values, make sure to remember that we
1359 // legalized both of them.
Evan Chengbe8a8932006-04-12 16:33:18 +00001360 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1361 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1362 return Op.ResNo ? Tmp4 : Tmp3;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001363 }
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001364 case ISD::EXTLOAD:
1365 case ISD::SEXTLOAD:
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001366 case ISD::ZEXTLOAD: {
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001367 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1368 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001369
Chris Lattnerde0a4b12005-07-10 01:55:33 +00001370 MVT::ValueType SrcVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001371 switch (TLI.getOperationAction(Node->getOpcode(), SrcVT)) {
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001372 default: assert(0 && "This action is not supported yet!");
Chris Lattner0b73a6d2005-04-12 20:30:10 +00001373 case TargetLowering::Promote:
1374 assert(SrcVT == MVT::i1 && "Can only promote EXTLOAD from i1 -> i8!");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001375 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
1376 DAG.getValueType(MVT::i8));
1377 Tmp1 = Result.getValue(0);
1378 Tmp2 = Result.getValue(1);
1379 break;
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001380 case TargetLowering::Custom:
1381 isCustom = true;
1382 // FALLTHROUGH
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001383 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001384 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
1385 Node->getOperand(3));
1386 Tmp1 = Result.getValue(0);
1387 Tmp2 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001388
1389 if (isCustom) {
1390 Tmp3 = TLI.LowerOperation(Tmp3, DAG);
1391 if (Tmp3.Val) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001392 Tmp1 = LegalizeOp(Tmp3);
1393 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001394 }
1395 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001396 break;
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001397 case TargetLowering::Expand:
Chris Lattner2af3ee42005-12-20 00:53:54 +00001398 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Andrew Lenharthb5597e32005-06-30 19:22:37 +00001399 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1400 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, Node->getOperand(2));
Andrew Lenharth0a370f42005-06-30 19:32:57 +00001401 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001402 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1403 Tmp2 = LegalizeOp(Load.getValue(1));
1404 break;
Andrew Lenharthb5597e32005-06-30 19:22:37 +00001405 }
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001406 assert(Node->getOpcode() != ISD::EXTLOAD &&
1407 "EXTLOAD should always be supported!");
1408 // Turn the unsupported load into an EXTLOAD followed by an explicit
1409 // zero/sign extend inreg.
Chris Lattnerde0a4b12005-07-10 01:55:33 +00001410 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1411 Tmp1, Tmp2, Node->getOperand(2), SrcVT);
Chris Lattner0e852af2005-04-13 02:38:47 +00001412 SDOperand ValRes;
1413 if (Node->getOpcode() == ISD::SEXTLOAD)
1414 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00001415 Result, DAG.getValueType(SrcVT));
Chris Lattner0e852af2005-04-13 02:38:47 +00001416 else
1417 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001418 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1419 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1420 break;
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001421 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001422 // Since loads produce two values, make sure to remember that we legalized
1423 // both of them.
1424 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1425 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1426 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001427 }
Nate Begeman5172ce62005-10-19 00:06:56 +00001428 case ISD::EXTRACT_ELEMENT: {
1429 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1430 switch (getTypeAction(OpTy)) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001431 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5172ce62005-10-19 00:06:56 +00001432 case Legal:
1433 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1434 // 1 -> Hi
1435 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1436 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1437 TLI.getShiftAmountTy()));
1438 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1439 } else {
1440 // 0 -> Lo
1441 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1442 Node->getOperand(0));
1443 }
Nate Begeman5172ce62005-10-19 00:06:56 +00001444 break;
1445 case Expand:
1446 // Get both the low and high parts.
1447 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1448 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1449 Result = Tmp2; // 1 -> Hi
1450 else
1451 Result = Tmp1; // 0 -> Lo
1452 break;
1453 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001454 break;
Nate Begeman5172ce62005-10-19 00:06:56 +00001455 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001456
1457 case ISD::CopyToReg:
1458 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukman835702a2005-04-21 22:36:52 +00001459
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00001460 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattner33182322005-08-16 21:55:35 +00001461 "Register type must be legal!");
Chris Lattnere3c67e92005-12-18 15:27:43 +00001462 // Legalize the incoming value (must be a legal type).
Chris Lattner33182322005-08-16 21:55:35 +00001463 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001464 if (Node->getNumValues() == 1) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001465 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattnere3c67e92005-12-18 15:27:43 +00001466 } else {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001467 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001468 if (Node->getNumOperands() == 4) {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001469 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001470 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1471 Tmp3);
1472 } else {
1473 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattnere3c67e92005-12-18 15:27:43 +00001474 }
1475
1476 // Since this produces two values, make sure to remember that we legalized
1477 // both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001478 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnere3c67e92005-12-18 15:27:43 +00001479 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001480 return Result;
Chris Lattnere3c67e92005-12-18 15:27:43 +00001481 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001482 break;
1483
1484 case ISD::RET:
1485 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001486
1487 // Ensure that libcalls are emitted before a return.
1488 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1489 Tmp1 = LegalizeOp(Tmp1);
1490 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001491
Chris Lattnerdc750592005-01-07 07:47:09 +00001492 switch (Node->getNumOperands()) {
Evan Chenga2e99532006-05-26 23:09:09 +00001493 case 3: // ret val
Evan Cheng7256b0a2006-04-11 06:33:39 +00001494 Tmp2 = Node->getOperand(1);
Evan Chenga2e99532006-05-26 23:09:09 +00001495 Tmp3 = Node->getOperand(2); // Signness
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001496 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattnerdc750592005-01-07 07:47:09 +00001497 case Legal:
Evan Chenga2e99532006-05-26 23:09:09 +00001498 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattnerdc750592005-01-07 07:47:09 +00001499 break;
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001500 case Expand:
1501 if (Tmp2.getValueType() != MVT::Vector) {
1502 SDOperand Lo, Hi;
1503 ExpandOp(Tmp2, Lo, Hi);
Evan Chenga2e99532006-05-26 23:09:09 +00001504 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattner451b0992006-08-21 20:24:53 +00001505 Result = LegalizeOp(Result);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001506 } else {
1507 SDNode *InVal = Tmp2.Val;
1508 unsigned NumElems =
1509 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1510 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1511
1512 // Figure out if there is a Packed type corresponding to this Vector
1513 // type. If so, convert to the packed type.
1514 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1515 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1516 // Turn this into a return of the packed type.
1517 Tmp2 = PackVectorOp(Tmp2, TVT);
Evan Chenga2e99532006-05-26 23:09:09 +00001518 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001519 } else if (NumElems == 1) {
1520 // Turn this into a return of the scalar type.
1521 Tmp2 = PackVectorOp(Tmp2, EVT);
Evan Chenga2e99532006-05-26 23:09:09 +00001522 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00001523
1524 // FIXME: Returns of gcc generic vectors smaller than a legal type
1525 // should be returned in integer registers!
1526
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001527 // The scalarized value type may not be legal, e.g. it might require
1528 // promotion or expansion. Relegalize the return.
1529 Result = LegalizeOp(Result);
1530 } else {
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00001531 // FIXME: Returns of gcc generic vectors larger than a legal vector
1532 // type should be returned by reference!
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001533 SDOperand Lo, Hi;
1534 SplitVectorOp(Tmp2, Lo, Hi);
Evan Chenga2e99532006-05-26 23:09:09 +00001535 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001536 Result = LegalizeOp(Result);
1537 }
1538 }
Misha Brukman835702a2005-04-21 22:36:52 +00001539 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001540 case Promote:
Chris Lattner4d978642005-01-15 22:16:26 +00001541 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Chenga2e99532006-05-26 23:09:09 +00001542 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001543 Result = LegalizeOp(Result);
Chris Lattner4d978642005-01-15 22:16:26 +00001544 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001545 }
1546 break;
1547 case 1: // ret void
Chris Lattnerd02b0542006-01-28 10:58:55 +00001548 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerdc750592005-01-07 07:47:09 +00001549 break;
1550 default: { // ret <values>
Chris Lattner97af9d52006-08-08 01:09:31 +00001551 SmallVector<SDOperand, 8> NewValues;
Chris Lattnerdc750592005-01-07 07:47:09 +00001552 NewValues.push_back(Tmp1);
Evan Chenga2e99532006-05-26 23:09:09 +00001553 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattnerdc750592005-01-07 07:47:09 +00001554 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1555 case Legal:
Chris Lattner7e6eeba2005-01-08 19:27:05 +00001556 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Chenga2e99532006-05-26 23:09:09 +00001557 NewValues.push_back(Node->getOperand(i+1));
Chris Lattnerdc750592005-01-07 07:47:09 +00001558 break;
1559 case Expand: {
1560 SDOperand Lo, Hi;
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00001561 assert(Node->getOperand(i).getValueType() != MVT::Vector &&
1562 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001563 ExpandOp(Node->getOperand(i), Lo, Hi);
1564 NewValues.push_back(Lo);
Evan Chenga2e99532006-05-26 23:09:09 +00001565 NewValues.push_back(Node->getOperand(i+1));
Chris Lattnerdc750592005-01-07 07:47:09 +00001566 NewValues.push_back(Hi);
Evan Chenga2e99532006-05-26 23:09:09 +00001567 NewValues.push_back(Node->getOperand(i+1));
Misha Brukman835702a2005-04-21 22:36:52 +00001568 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001569 }
1570 case Promote:
Chris Lattner4d978642005-01-15 22:16:26 +00001571 assert(0 && "Can't promote multiple return value yet!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001572 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001573
1574 if (NewValues.size() == Node->getNumOperands())
Chris Lattner97af9d52006-08-08 01:09:31 +00001575 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerd02b0542006-01-28 10:58:55 +00001576 else
Chris Lattner97af9d52006-08-08 01:09:31 +00001577 Result = DAG.getNode(ISD::RET, MVT::Other,
1578 &NewValues[0], NewValues.size());
Chris Lattnerdc750592005-01-07 07:47:09 +00001579 break;
1580 }
1581 }
Evan Chengf35b1c82006-01-06 00:41:43 +00001582
Chris Lattner4d1ea712006-01-29 21:02:23 +00001583 if (Result.getOpcode() == ISD::RET) {
1584 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1585 default: assert(0 && "This action is not supported yet!");
1586 case TargetLowering::Legal: break;
1587 case TargetLowering::Custom:
1588 Tmp1 = TLI.LowerOperation(Result, DAG);
1589 if (Tmp1.Val) Result = Tmp1;
1590 break;
1591 }
Evan Chengf35b1c82006-01-06 00:41:43 +00001592 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001593 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001594 case ISD::STORE: {
Chris Lattnerdc750592005-01-07 07:47:09 +00001595 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1596 Tmp2 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
1597
Chris Lattnere69daaf2005-01-08 06:25:56 +00001598 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001599 // FIXME: We shouldn't do this for TargetConstantFP's.
Chris Lattnercad70c32006-03-15 22:19:18 +00001600 // FIXME: move this to the DAG Combiner!
Chris Lattner1f2c9d82005-01-15 05:21:40 +00001601 if (ConstantFPSDNode *CFP =dyn_cast<ConstantFPSDNode>(Node->getOperand(1))){
Chris Lattnere69daaf2005-01-08 06:25:56 +00001602 if (CFP->getValueType(0) == MVT::f32) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001603 Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
Chris Lattnere69daaf2005-01-08 06:25:56 +00001604 } else {
1605 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001606 Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
Chris Lattnere69daaf2005-01-08 06:25:56 +00001607 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001608 Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Tmp3, Tmp2,
1609 Node->getOperand(3));
Chris Lattnerf9a1e3a2006-01-24 05:48:21 +00001610 break;
Chris Lattnere69daaf2005-01-08 06:25:56 +00001611 }
1612
Chris Lattnerdc750592005-01-07 07:47:09 +00001613 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1614 case Legal: {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001615 Tmp3 = LegalizeOp(Node->getOperand(1));
1616 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1617 Node->getOperand(3));
Evan Cheng31d15fa2005-12-23 07:29:34 +00001618
Chris Lattnerd02b0542006-01-28 10:58:55 +00001619 MVT::ValueType VT = Tmp3.getValueType();
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001620 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1621 default: assert(0 && "This action is not supported yet!");
1622 case TargetLowering::Legal: break;
1623 case TargetLowering::Custom:
1624 Tmp1 = TLI.LowerOperation(Result, DAG);
1625 if (Tmp1.Val) Result = Tmp1;
1626 break;
Chris Lattner91226e52006-04-16 01:36:45 +00001627 case TargetLowering::Promote:
1628 assert(MVT::isVector(VT) && "Unknown legal promote case!");
1629 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
1630 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
1631 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1632 Node->getOperand(3));
1633 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001634 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001635 break;
1636 }
1637 case Promote:
Chris Lattner1f2c9d82005-01-15 05:21:40 +00001638 // Truncate the value and store the result.
1639 Tmp3 = PromoteOp(Node->getOperand(1));
1640 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp3, Tmp2,
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00001641 Node->getOperand(3),
Chris Lattner36db1ed2005-07-10 00:29:18 +00001642 DAG.getValueType(Node->getOperand(1).getValueType()));
Chris Lattner1f2c9d82005-01-15 05:21:40 +00001643 break;
1644
Chris Lattnerdc750592005-01-07 07:47:09 +00001645 case Expand:
Chris Lattner32206f52006-03-18 01:44:44 +00001646 unsigned IncrementSize = 0;
Chris Lattnerdc750592005-01-07 07:47:09 +00001647 SDOperand Lo, Hi;
Chris Lattner32206f52006-03-18 01:44:44 +00001648
1649 // If this is a vector type, then we have to calculate the increment as
1650 // the product of the element size in bytes, and the number of elements
1651 // in the high half of the vector.
1652 if (Node->getOperand(1).getValueType() == MVT::Vector) {
1653 SDNode *InVal = Node->getOperand(1).Val;
1654 unsigned NumElems =
1655 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1656 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1657
1658 // Figure out if there is a Packed type corresponding to this Vector
1659 // type. If so, convert to the packed type.
1660 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1661 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1662 // Turn this into a normal store of the packed type.
1663 Tmp3 = PackVectorOp(Node->getOperand(1), TVT);
1664 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1665 Node->getOperand(3));
Chris Lattner91226e52006-04-16 01:36:45 +00001666 Result = LegalizeOp(Result);
Chris Lattner32206f52006-03-18 01:44:44 +00001667 break;
1668 } else if (NumElems == 1) {
1669 // Turn this into a normal store of the scalar type.
1670 Tmp3 = PackVectorOp(Node->getOperand(1), EVT);
1671 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1672 Node->getOperand(3));
Chris Lattner8e1fcab2006-03-31 17:37:22 +00001673 // The scalarized value type may not be legal, e.g. it might require
1674 // promotion or expansion. Relegalize the scalar store.
1675 Result = LegalizeOp(Result);
Chris Lattner32206f52006-03-18 01:44:44 +00001676 break;
1677 } else {
1678 SplitVectorOp(Node->getOperand(1), Lo, Hi);
1679 IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
1680 }
1681 } else {
1682 ExpandOp(Node->getOperand(1), Lo, Hi);
1683 IncrementSize = MVT::getSizeInBits(Hi.getValueType())/8;
Chris Lattnerdc750592005-01-07 07:47:09 +00001684
Chris Lattner8d90f522006-03-31 18:20:46 +00001685 if (!TLI.isLittleEndian())
1686 std::swap(Lo, Hi);
1687 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001688
Chris Lattner55e9cde2005-05-11 04:51:16 +00001689 Lo = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Lo, Tmp2,
1690 Node->getOperand(3));
Chris Lattnerdc750592005-01-07 07:47:09 +00001691 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1692 getIntPtrConstant(IncrementSize));
1693 assert(isTypeLegal(Tmp2.getValueType()) &&
1694 "Pointers must be legal!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001695 // FIXME: This sets the srcvalue of both halves to be the same, which is
1696 // wrong.
Chris Lattner55e9cde2005-05-11 04:51:16 +00001697 Hi = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Hi, Tmp2,
1698 Node->getOperand(3));
Chris Lattner0d03eb42005-01-19 18:02:17 +00001699 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1700 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001701 }
1702 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001703 }
Andrew Lenharthdec53922005-03-31 21:24:06 +00001704 case ISD::PCMARKER:
1705 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001706 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharthdec53922005-03-31 21:24:06 +00001707 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001708 case ISD::STACKSAVE:
1709 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001710 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1711 Tmp1 = Result.getValue(0);
1712 Tmp2 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001713
Chris Lattnerb3266452006-01-13 02:50:02 +00001714 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1715 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001716 case TargetLowering::Legal: break;
1717 case TargetLowering::Custom:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001718 Tmp3 = TLI.LowerOperation(Result, DAG);
1719 if (Tmp3.Val) {
1720 Tmp1 = LegalizeOp(Tmp3);
1721 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattnerb3266452006-01-13 02:50:02 +00001722 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001723 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001724 case TargetLowering::Expand:
Chris Lattnered9b3e12006-01-13 17:48:44 +00001725 // Expand to CopyFromReg if the target set
1726 // StackPointerRegisterToSaveRestore.
1727 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001728 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattnered9b3e12006-01-13 17:48:44 +00001729 Node->getValueType(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001730 Tmp2 = Tmp1.getValue(1);
Chris Lattnered9b3e12006-01-13 17:48:44 +00001731 } else {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001732 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1733 Tmp2 = Node->getOperand(0);
Chris Lattnered9b3e12006-01-13 17:48:44 +00001734 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001735 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001736 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001737
1738 // Since stacksave produce two values, make sure to remember that we
1739 // legalized both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001740 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1741 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1742 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001743
Chris Lattnerb3266452006-01-13 02:50:02 +00001744 case ISD::STACKRESTORE:
1745 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1746 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001747 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattnerb3266452006-01-13 02:50:02 +00001748
1749 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1750 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001751 case TargetLowering::Legal: break;
1752 case TargetLowering::Custom:
1753 Tmp1 = TLI.LowerOperation(Result, DAG);
1754 if (Tmp1.Val) Result = Tmp1;
Chris Lattnerb3266452006-01-13 02:50:02 +00001755 break;
1756 case TargetLowering::Expand:
Chris Lattnered9b3e12006-01-13 17:48:44 +00001757 // Expand to CopyToReg if the target set
1758 // StackPointerRegisterToSaveRestore.
1759 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1760 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1761 } else {
1762 Result = Tmp1;
1763 }
Chris Lattnerb3266452006-01-13 02:50:02 +00001764 break;
1765 }
1766 break;
1767
Andrew Lenharth01aa5632005-11-11 16:47:30 +00001768 case ISD::READCYCLECOUNTER:
1769 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerd02b0542006-01-28 10:58:55 +00001770 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth73420b32005-12-02 04:56:24 +00001771
1772 // Since rdcc produce two values, make sure to remember that we legalized
1773 // both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001774 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Andrew Lenharth73420b32005-12-02 04:56:24 +00001775 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001776 return Result;
Andrew Lenharth627cbd42005-11-20 21:32:07 +00001777
Evan Cheng31d15fa2005-12-23 07:29:34 +00001778 case ISD::TRUNCSTORE: {
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001779 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1780 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
1781
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001782 assert(isTypeLegal(Node->getOperand(1).getValueType()) &&
1783 "Cannot handle illegal TRUNCSTORE yet!");
1784 Tmp2 = LegalizeOp(Node->getOperand(1));
1785
1786 // The only promote case we handle is TRUNCSTORE:i1 X into
1787 // -> TRUNCSTORE:i8 (and X, 1)
1788 if (cast<VTSDNode>(Node->getOperand(4))->getVT() == MVT::i1 &&
1789 TLI.getOperationAction(ISD::TRUNCSTORE, MVT::i1) ==
1790 TargetLowering::Promote) {
1791 // Promote the bool to a mask then store.
1792 Tmp2 = DAG.getNode(ISD::AND, Tmp2.getValueType(), Tmp2,
1793 DAG.getConstant(1, Tmp2.getValueType()));
1794 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp2, Tmp3,
1795 Node->getOperand(3), DAG.getValueType(MVT::i8));
Chris Lattner2d454bf2005-09-10 00:20:18 +00001796
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001797 } else if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) ||
1798 Tmp3 != Node->getOperand(2)) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001799 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
1800 Node->getOperand(3), Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001801 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00001802
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001803 MVT::ValueType StVT = cast<VTSDNode>(Result.Val->getOperand(4))->getVT();
1804 switch (TLI.getOperationAction(Result.Val->getOpcode(), StVT)) {
1805 default: assert(0 && "This action is not supported yet!");
1806 case TargetLowering::Legal: break;
1807 case TargetLowering::Custom:
1808 Tmp1 = TLI.LowerOperation(Result, DAG);
1809 if (Tmp1.Val) Result = Tmp1;
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001810 break;
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001811 }
1812 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001813 }
Chris Lattner39c67442005-01-14 22:08:15 +00001814 case ISD::SELECT:
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001815 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1816 case Expand: assert(0 && "It's impossible to expand bools");
1817 case Legal:
1818 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1819 break;
1820 case Promote:
1821 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
1822 break;
1823 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001824 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner39c67442005-01-14 22:08:15 +00001825 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner3c0dd462005-01-16 07:29:19 +00001826
Chris Lattnerd02b0542006-01-28 10:58:55 +00001827 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001828
Nate Begeman987121a2005-08-23 04:29:48 +00001829 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner3c0dd462005-01-16 07:29:19 +00001830 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001831 case TargetLowering::Legal: break;
1832 case TargetLowering::Custom: {
1833 Tmp1 = TLI.LowerOperation(Result, DAG);
1834 if (Tmp1.Val) Result = Tmp1;
1835 break;
1836 }
Nate Begemane5b86d72005-08-10 20:51:12 +00001837 case TargetLowering::Expand:
1838 if (Tmp1.getOpcode() == ISD::SETCC) {
1839 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
1840 Tmp2, Tmp3,
1841 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1842 } else {
Chris Lattner539c3fa2005-08-21 18:03:09 +00001843 // Make sure the condition is either zero or one. It may have been
1844 // promoted from something else.
Chris Lattnerd6f5ae42006-01-30 04:22:28 +00001845 unsigned NumBits = MVT::getSizeInBits(Tmp1.getValueType());
1846 if (!TLI.MaskedValueIsZero(Tmp1, (~0ULL >> (64-NumBits))^1))
1847 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Nate Begemane5b86d72005-08-10 20:51:12 +00001848 Result = DAG.getSelectCC(Tmp1,
1849 DAG.getConstant(0, Tmp1.getValueType()),
1850 Tmp2, Tmp3, ISD::SETNE);
1851 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00001852 break;
1853 case TargetLowering::Promote: {
1854 MVT::ValueType NVT =
1855 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1856 unsigned ExtOp, TruncOp;
Evan Chengbe8a8932006-04-12 16:33:18 +00001857 if (MVT::isVector(Tmp2.getValueType())) {
1858 ExtOp = ISD::BIT_CONVERT;
1859 TruncOp = ISD::BIT_CONVERT;
1860 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001861 ExtOp = ISD::ANY_EXTEND;
1862 TruncOp = ISD::TRUNCATE;
Chris Lattner3c0dd462005-01-16 07:29:19 +00001863 } else {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001864 ExtOp = ISD::FP_EXTEND;
1865 TruncOp = ISD::FP_ROUND;
Chris Lattner3c0dd462005-01-16 07:29:19 +00001866 }
1867 // Promote each of the values to the new type.
1868 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
1869 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
1870 // Perform the larger operation, then round down.
1871 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
1872 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
1873 break;
1874 }
1875 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001876 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +00001877 case ISD::SELECT_CC: {
1878 Tmp1 = Node->getOperand(0); // LHS
1879 Tmp2 = Node->getOperand(1); // RHS
Nate Begemane5b86d72005-08-10 20:51:12 +00001880 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
1881 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman7e7f4392006-02-01 07:19:44 +00001882 SDOperand CC = Node->getOperand(4);
Nate Begemane5b86d72005-08-10 20:51:12 +00001883
Nate Begeman7e7f4392006-02-01 07:19:44 +00001884 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
1885
1886 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1887 // the LHS is a legal SETCC itself. In this case, we need to compare
1888 // the result against zero to select between true and false values.
1889 if (Tmp2.Val == 0) {
1890 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
1891 CC = DAG.getCondCode(ISD::SETNE);
1892 }
1893 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
1894
1895 // Everything is legal, see if we should expand this op or something.
1896 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
1897 default: assert(0 && "This action is not supported yet!");
1898 case TargetLowering::Legal: break;
1899 case TargetLowering::Custom:
1900 Tmp1 = TLI.LowerOperation(Result, DAG);
1901 if (Tmp1.Val) Result = Tmp1;
Nate Begemane5b86d72005-08-10 20:51:12 +00001902 break;
Nate Begemane5b86d72005-08-10 20:51:12 +00001903 }
1904 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +00001905 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001906 case ISD::SETCC:
Nate Begeman7e7f4392006-02-01 07:19:44 +00001907 Tmp1 = Node->getOperand(0);
1908 Tmp2 = Node->getOperand(1);
1909 Tmp3 = Node->getOperand(2);
1910 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
1911
1912 // If we had to Expand the SetCC operands into a SELECT node, then it may
1913 // not always be possible to return a true LHS & RHS. In this case, just
1914 // return the value we legalized, returned in the LHS
1915 if (Tmp2.Val == 0) {
1916 Result = Tmp1;
Chris Lattnerdc750592005-01-07 07:47:09 +00001917 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001918 }
Nate Begeman987121a2005-08-23 04:29:48 +00001919
Chris Lattnerf263a232006-01-30 22:43:50 +00001920 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001921 default: assert(0 && "Cannot handle this action for SETCC yet!");
1922 case TargetLowering::Custom:
1923 isCustom = true;
1924 // FALLTHROUGH.
1925 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001926 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001927 if (isCustom) {
1928 Tmp3 = TLI.LowerOperation(Result, DAG);
1929 if (Tmp3.Val) Result = Tmp3;
1930 }
Nate Begeman987121a2005-08-23 04:29:48 +00001931 break;
Andrew Lenharth6ee85662005-11-30 17:12:26 +00001932 case TargetLowering::Promote: {
1933 // First step, figure out the appropriate operation to use.
1934 // Allow SETCC to not be supported for all legal data types
1935 // Mostly this targets FP
1936 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
1937 MVT::ValueType OldVT = NewInTy;
1938
1939 // Scan for the appropriate larger type to use.
1940 while (1) {
1941 NewInTy = (MVT::ValueType)(NewInTy+1);
1942
1943 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
1944 "Fell off of the edge of the integer world");
1945 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
1946 "Fell off of the edge of the floating point world");
1947
1948 // If the target supports SETCC of this type, use it.
Chris Lattner1408c052005-12-22 05:23:45 +00001949 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharth6ee85662005-11-30 17:12:26 +00001950 break;
1951 }
1952 if (MVT::isInteger(NewInTy))
1953 assert(0 && "Cannot promote Legal Integer SETCC yet");
1954 else {
1955 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
1956 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
1957 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001958 Tmp1 = LegalizeOp(Tmp1);
1959 Tmp2 = LegalizeOp(Tmp2);
1960 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Cheng6f86a7d2006-01-17 19:47:13 +00001961 Result = LegalizeOp(Result);
Andrew Lenharth835cbb32005-08-29 20:46:51 +00001962 break;
Andrew Lenharth6ee85662005-11-30 17:12:26 +00001963 }
Nate Begeman987121a2005-08-23 04:29:48 +00001964 case TargetLowering::Expand:
1965 // Expand a setcc node into a select_cc of the same condition, lhs, and
1966 // rhs that selects between const 1 (true) and const 0 (false).
1967 MVT::ValueType VT = Node->getValueType(0);
1968 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
1969 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
1970 Node->getOperand(2));
Nate Begeman987121a2005-08-23 04:29:48 +00001971 break;
1972 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001973 break;
Chris Lattner85d70c62005-01-11 05:57:22 +00001974 case ISD::MEMSET:
1975 case ISD::MEMCPY:
1976 case ISD::MEMMOVE: {
Chris Lattner4487b2e2005-02-01 18:38:28 +00001977 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001978 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
1979
1980 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
1981 switch (getTypeAction(Node->getOperand(2).getValueType())) {
1982 case Expand: assert(0 && "Cannot expand a byte!");
1983 case Legal:
Chris Lattner4487b2e2005-02-01 18:38:28 +00001984 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001985 break;
1986 case Promote:
Chris Lattner4487b2e2005-02-01 18:38:28 +00001987 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001988 break;
1989 }
1990 } else {
Misha Brukman835702a2005-04-21 22:36:52 +00001991 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001992 }
Chris Lattner5aa75e42005-02-02 03:44:41 +00001993
1994 SDOperand Tmp4;
1995 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattnerba08a332005-07-13 01:42:45 +00001996 case Expand: {
1997 // Length is too big, just take the lo-part of the length.
1998 SDOperand HiPart;
1999 ExpandOp(Node->getOperand(3), HiPart, Tmp4);
2000 break;
2001 }
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002002 case Legal:
2003 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002004 break;
2005 case Promote:
2006 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner5aa75e42005-02-02 03:44:41 +00002007 break;
2008 }
2009
2010 SDOperand Tmp5;
2011 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2012 case Expand: assert(0 && "Cannot expand this yet!");
2013 case Legal:
2014 Tmp5 = LegalizeOp(Node->getOperand(4));
2015 break;
2016 case Promote:
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002017 Tmp5 = PromoteOp(Node->getOperand(4));
2018 break;
2019 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002020
2021 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2022 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002023 case TargetLowering::Custom:
2024 isCustom = true;
2025 // FALLTHROUGH
Chris Lattner3c0dd462005-01-16 07:29:19 +00002026 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002027 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002028 if (isCustom) {
2029 Tmp1 = TLI.LowerOperation(Result, DAG);
2030 if (Tmp1.Val) Result = Tmp1;
2031 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002032 break;
2033 case TargetLowering::Expand: {
Chris Lattner85d70c62005-01-11 05:57:22 +00002034 // Otherwise, the target does not support this operation. Lower the
2035 // operation to an explicit libcall as appropriate.
2036 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Anderson20a631f2006-05-03 01:29:57 +00002037 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Chris Lattner85d70c62005-01-11 05:57:22 +00002038 std::vector<std::pair<SDOperand, const Type*> > Args;
2039
Reid Spencer6dced922005-01-12 14:53:45 +00002040 const char *FnName = 0;
Chris Lattner85d70c62005-01-11 05:57:22 +00002041 if (Node->getOpcode() == ISD::MEMSET) {
2042 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
Chris Lattner486d1bc2006-02-20 06:38:35 +00002043 // Extend the (previously legalized) ubyte argument to be an int value
2044 // for the call.
2045 if (Tmp3.getValueType() > MVT::i32)
2046 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2047 else
2048 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Chris Lattner85d70c62005-01-11 05:57:22 +00002049 Args.push_back(std::make_pair(Tmp3, Type::IntTy));
2050 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2051
2052 FnName = "memset";
2053 } else if (Node->getOpcode() == ISD::MEMCPY ||
2054 Node->getOpcode() == ISD::MEMMOVE) {
2055 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
2056 Args.push_back(std::make_pair(Tmp3, IntPtrTy));
2057 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2058 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2059 } else {
2060 assert(0 && "Unknown op!");
2061 }
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002062
Chris Lattner85d70c62005-01-11 05:57:22 +00002063 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattner2e77db62005-05-13 18:50:42 +00002064 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, CallingConv::C, false,
Chris Lattner85d70c62005-01-11 05:57:22 +00002065 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002066 Result = CallResult.second;
Chris Lattner3c0dd462005-01-16 07:29:19 +00002067 break;
2068 }
Chris Lattner85d70c62005-01-11 05:57:22 +00002069 }
2070 break;
2071 }
Chris Lattner5385db52005-05-09 20:23:03 +00002072
Chris Lattner4157c412005-04-02 04:00:59 +00002073 case ISD::SHL_PARTS:
2074 case ISD::SRA_PARTS:
2075 case ISD::SRL_PARTS: {
Chris Lattner97af9d52006-08-08 01:09:31 +00002076 SmallVector<SDOperand, 8> Ops;
Chris Lattnerb3f83b282005-01-20 18:52:28 +00002077 bool Changed = false;
2078 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2079 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2080 Changed |= Ops.back() != Node->getOperand(i);
2081 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002082 if (Changed)
Chris Lattner97af9d52006-08-08 01:09:31 +00002083 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner13fe99c2005-04-02 05:00:07 +00002084
Evan Cheng870e4f82006-01-09 18:31:59 +00002085 switch (TLI.getOperationAction(Node->getOpcode(),
2086 Node->getValueType(0))) {
2087 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002088 case TargetLowering::Legal: break;
2089 case TargetLowering::Custom:
2090 Tmp1 = TLI.LowerOperation(Result, DAG);
2091 if (Tmp1.Val) {
2092 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng870e4f82006-01-09 18:31:59 +00002093 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002094 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng870e4f82006-01-09 18:31:59 +00002095 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2096 if (i == Op.ResNo)
Evan Cheng13e8c9d2006-01-19 04:54:52 +00002097 RetVal = Tmp2;
Evan Cheng870e4f82006-01-09 18:31:59 +00002098 }
Chris Lattnerfb5f4652006-01-10 19:43:26 +00002099 assert(RetVal.Val && "Illegal result number");
Evan Cheng870e4f82006-01-09 18:31:59 +00002100 return RetVal;
2101 }
Evan Cheng870e4f82006-01-09 18:31:59 +00002102 break;
2103 }
2104
Chris Lattner13fe99c2005-04-02 05:00:07 +00002105 // Since these produce multiple values, make sure to remember that we
2106 // legalized all of them.
2107 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2108 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2109 return Result.getValue(Op.ResNo);
Chris Lattnerb3f83b282005-01-20 18:52:28 +00002110 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002111
2112 // Binary operators
Chris Lattnerdc750592005-01-07 07:47:09 +00002113 case ISD::ADD:
2114 case ISD::SUB:
2115 case ISD::MUL:
Nate Begemanadd0c632005-04-11 03:01:51 +00002116 case ISD::MULHS:
2117 case ISD::MULHU:
Chris Lattnerdc750592005-01-07 07:47:09 +00002118 case ISD::UDIV:
2119 case ISD::SDIV:
Chris Lattnerdc750592005-01-07 07:47:09 +00002120 case ISD::AND:
2121 case ISD::OR:
2122 case ISD::XOR:
Chris Lattner32f20bf2005-01-07 21:45:56 +00002123 case ISD::SHL:
2124 case ISD::SRL:
2125 case ISD::SRA:
Chris Lattner6f3b5772005-09-28 22:28:18 +00002126 case ISD::FADD:
2127 case ISD::FSUB:
2128 case ISD::FMUL:
2129 case ISD::FDIV:
Chris Lattnerdc750592005-01-07 07:47:09 +00002130 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharth80fe4112005-07-05 19:52:39 +00002131 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2132 case Expand: assert(0 && "Not possible");
2133 case Legal:
2134 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2135 break;
2136 case Promote:
2137 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2138 break;
2139 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002140
2141 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002142
Andrew Lenharth72594262005-12-24 23:42:32 +00002143 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner87f08092006-04-02 03:57:31 +00002144 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002145 case TargetLowering::Legal: break;
2146 case TargetLowering::Custom:
2147 Tmp1 = TLI.LowerOperation(Result, DAG);
2148 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth30db2ec2005-12-25 01:07:37 +00002149 break;
Chris Lattner87f08092006-04-02 03:57:31 +00002150 case TargetLowering::Expand: {
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00002151 if (Node->getValueType(0) == MVT::i32) {
2152 switch (Node->getOpcode()) {
2153 default: assert(0 && "Do not know how to expand this integer BinOp!");
2154 case ISD::UDIV:
2155 case ISD::SDIV:
2156 const char *FnName = Node->getOpcode() == ISD::UDIV
2157 ? "__udivsi3" : "__divsi3";
2158 SDOperand Dummy;
2159 Result = ExpandLibCall(FnName, Node, Dummy);
2160 };
2161 break;
2162 }
2163
Chris Lattner87f08092006-04-02 03:57:31 +00002164 assert(MVT::isVector(Node->getValueType(0)) &&
2165 "Cannot expand this binary operator!");
2166 // Expand the operation into a bunch of nasty scalar code.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002167 SmallVector<SDOperand, 8> Ops;
Chris Lattner87f08092006-04-02 03:57:31 +00002168 MVT::ValueType EltVT = MVT::getVectorBaseType(Node->getValueType(0));
2169 MVT::ValueType PtrVT = TLI.getPointerTy();
2170 for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2171 i != e; ++i) {
2172 SDOperand Idx = DAG.getConstant(i, PtrVT);
2173 SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2174 SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2175 Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2176 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002177 Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0),
2178 &Ops[0], Ops.size());
Chris Lattner87f08092006-04-02 03:57:31 +00002179 break;
2180 }
Evan Cheng119266e2006-04-12 21:20:24 +00002181 case TargetLowering::Promote: {
2182 switch (Node->getOpcode()) {
2183 default: assert(0 && "Do not know how to promote this BinOp!");
2184 case ISD::AND:
2185 case ISD::OR:
2186 case ISD::XOR: {
2187 MVT::ValueType OVT = Node->getValueType(0);
2188 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2189 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2190 // Bit convert each of the values to the new type.
2191 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2192 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2193 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2194 // Bit convert the result back the original type.
2195 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2196 break;
2197 }
2198 }
2199 }
Andrew Lenharth72594262005-12-24 23:42:32 +00002200 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002201 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00002202
2203 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2204 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2205 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2206 case Expand: assert(0 && "Not possible");
2207 case Legal:
2208 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2209 break;
2210 case Promote:
2211 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2212 break;
2213 }
2214
2215 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2216
2217 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2218 default: assert(0 && "Operation not supported");
2219 case TargetLowering::Custom:
2220 Tmp1 = TLI.LowerOperation(Result, DAG);
2221 if (Tmp1.Val) Result = Tmp1;
Chris Lattner994d8e62006-03-13 06:08:38 +00002222 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00002223 case TargetLowering::Legal: break;
2224 case TargetLowering::Expand:
Chris Lattner994d8e62006-03-13 06:08:38 +00002225 // If this target supports fabs/fneg natively, do this efficiently.
2226 if (TLI.isOperationLegal(ISD::FABS, Tmp1.getValueType()) &&
2227 TLI.isOperationLegal(ISD::FNEG, Tmp1.getValueType())) {
2228 // Get the sign bit of the RHS.
2229 MVT::ValueType IVT =
2230 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2231 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2232 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2233 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2234 // Get the absolute value of the result.
2235 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2236 // Select between the nabs and abs value based on the sign bit of
2237 // the input.
2238 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2239 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2240 AbsVal),
2241 AbsVal);
2242 Result = LegalizeOp(Result);
2243 break;
2244 }
2245
2246 // Otherwise, do bitwise ops!
2247
2248 // copysign -> copysignf/copysign libcall.
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00002249 const char *FnName;
2250 if (Node->getValueType(0) == MVT::f32) {
2251 FnName = "copysignf";
2252 if (Tmp2.getValueType() != MVT::f32) // Force operands to match type.
2253 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2254 DAG.getNode(ISD::FP_ROUND, MVT::f32, Tmp2));
2255 } else {
2256 FnName = "copysign";
2257 if (Tmp2.getValueType() != MVT::f64) // Force operands to match type.
2258 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2259 DAG.getNode(ISD::FP_EXTEND, MVT::f64, Tmp2));
2260 }
2261 SDOperand Dummy;
2262 Result = ExpandLibCall(FnName, Node, Dummy);
2263 break;
2264 }
2265 break;
2266
Nate Begeman5965bd12006-02-17 05:43:56 +00002267 case ISD::ADDC:
2268 case ISD::SUBC:
2269 Tmp1 = LegalizeOp(Node->getOperand(0));
2270 Tmp2 = LegalizeOp(Node->getOperand(1));
2271 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2272 // Since this produces two values, make sure to remember that we legalized
2273 // both of them.
2274 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2275 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2276 return Result;
Misha Brukman835702a2005-04-21 22:36:52 +00002277
Nate Begeman5965bd12006-02-17 05:43:56 +00002278 case ISD::ADDE:
2279 case ISD::SUBE:
2280 Tmp1 = LegalizeOp(Node->getOperand(0));
2281 Tmp2 = LegalizeOp(Node->getOperand(1));
2282 Tmp3 = LegalizeOp(Node->getOperand(2));
2283 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2284 // Since this produces two values, make sure to remember that we legalized
2285 // both of them.
2286 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2287 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2288 return Result;
Nate Begeman5965bd12006-02-17 05:43:56 +00002289
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002290 case ISD::BUILD_PAIR: {
2291 MVT::ValueType PairTy = Node->getValueType(0);
2292 // TODO: handle the case where the Lo and Hi operands are not of legal type
2293 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2294 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2295 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002296 case TargetLowering::Promote:
2297 case TargetLowering::Custom:
2298 assert(0 && "Cannot promote/custom this yet!");
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002299 case TargetLowering::Legal:
2300 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2301 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2302 break;
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002303 case TargetLowering::Expand:
2304 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2305 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2306 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2307 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2308 TLI.getShiftAmountTy()));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002309 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002310 break;
2311 }
2312 break;
2313 }
2314
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002315 case ISD::UREM:
2316 case ISD::SREM:
Chris Lattner6f3b5772005-09-28 22:28:18 +00002317 case ISD::FREM:
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002318 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2319 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002320
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002321 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002322 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2323 case TargetLowering::Custom:
2324 isCustom = true;
2325 // FALLTHROUGH
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002326 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002327 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002328 if (isCustom) {
2329 Tmp1 = TLI.LowerOperation(Result, DAG);
2330 if (Tmp1.Val) Result = Tmp1;
2331 }
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002332 break;
Chris Lattner81914422005-08-03 20:31:37 +00002333 case TargetLowering::Expand:
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00002334 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SREM;
Chris Lattner81914422005-08-03 20:31:37 +00002335 if (MVT::isInteger(Node->getValueType(0))) {
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00002336 if (TLI.getOperationAction(DivOpc, Node->getValueType(0)) ==
2337 TargetLowering::Legal) {
2338 // X % Y -> X-X/Y*Y
2339 MVT::ValueType VT = Node->getValueType(0);
2340 unsigned Opc = Node->getOpcode() == ISD::UREM ? ISD::UDIV : ISD::SDIV;
2341 Result = DAG.getNode(Opc, VT, Tmp1, Tmp2);
2342 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2343 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2344 } else {
2345 assert(Node->getValueType(0) == MVT::i32 &&
2346 "Cannot expand this binary operator!");
2347 const char *FnName = Node->getOpcode() == ISD::UREM
2348 ? "__umodsi3" : "__modsi3";
2349 SDOperand Dummy;
2350 Result = ExpandLibCall(FnName, Node, Dummy);
2351 }
Chris Lattner81914422005-08-03 20:31:37 +00002352 } else {
2353 // Floating point mod -> fmod libcall.
2354 const char *FnName = Node->getValueType(0) == MVT::f32 ? "fmodf":"fmod";
2355 SDOperand Dummy;
Chris Lattner10f67752006-01-28 04:28:26 +00002356 Result = ExpandLibCall(FnName, Node, Dummy);
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002357 }
2358 break;
2359 }
2360 break;
Nate Begemane74795c2006-01-25 18:21:52 +00002361 case ISD::VAARG: {
2362 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2363 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2364
Chris Lattner364b89a2006-01-28 07:42:08 +00002365 MVT::ValueType VT = Node->getValueType(0);
Nate Begemane74795c2006-01-25 18:21:52 +00002366 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2367 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002368 case TargetLowering::Custom:
2369 isCustom = true;
2370 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00002371 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002372 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2373 Result = Result.getValue(0);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002374 Tmp1 = Result.getValue(1);
2375
2376 if (isCustom) {
2377 Tmp2 = TLI.LowerOperation(Result, DAG);
2378 if (Tmp2.Val) {
2379 Result = LegalizeOp(Tmp2);
2380 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2381 }
2382 }
Nate Begemane74795c2006-01-25 18:21:52 +00002383 break;
2384 case TargetLowering::Expand: {
2385 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
2386 Node->getOperand(2));
2387 // Increment the pointer, VAList, to the next vaarg
2388 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2389 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2390 TLI.getPointerTy()));
2391 // Store the incremented VAList to the legalized pointer
2392 Tmp3 = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), Tmp3, Tmp2,
2393 Node->getOperand(2));
2394 // Load the actual argument out of the pointer VAList
2395 Result = DAG.getLoad(VT, Tmp3, VAList, DAG.getSrcValue(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002396 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemane74795c2006-01-25 18:21:52 +00002397 Result = LegalizeOp(Result);
2398 break;
2399 }
2400 }
2401 // Since VAARG produces two values, make sure to remember that we
2402 // legalized both of them.
2403 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002404 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2405 return Op.ResNo ? Tmp1 : Result;
Nate Begemane74795c2006-01-25 18:21:52 +00002406 }
2407
2408 case ISD::VACOPY:
2409 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2410 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2411 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
2412
2413 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2414 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002415 case TargetLowering::Custom:
2416 isCustom = true;
2417 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00002418 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002419 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2420 Node->getOperand(3), Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002421 if (isCustom) {
2422 Tmp1 = TLI.LowerOperation(Result, DAG);
2423 if (Tmp1.Val) Result = Tmp1;
2424 }
Nate Begemane74795c2006-01-25 18:21:52 +00002425 break;
2426 case TargetLowering::Expand:
2427 // This defaults to loading a pointer from the input and storing it to the
2428 // output, returning the chain.
2429 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, Node->getOperand(3));
2430 Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp4.getValue(1), Tmp4, Tmp2,
2431 Node->getOperand(4));
Nate Begemane74795c2006-01-25 18:21:52 +00002432 break;
2433 }
2434 break;
2435
2436 case ISD::VAEND:
2437 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2438 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2439
2440 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2441 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002442 case TargetLowering::Custom:
2443 isCustom = true;
2444 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00002445 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002446 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002447 if (isCustom) {
2448 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2449 if (Tmp1.Val) Result = Tmp1;
2450 }
Nate Begemane74795c2006-01-25 18:21:52 +00002451 break;
2452 case TargetLowering::Expand:
2453 Result = Tmp1; // Default to a no-op, return the chain
2454 break;
2455 }
2456 break;
2457
2458 case ISD::VASTART:
2459 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2460 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2461
Chris Lattnerd02b0542006-01-28 10:58:55 +00002462 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2463
Nate Begemane74795c2006-01-25 18:21:52 +00002464 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2465 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002466 case TargetLowering::Legal: break;
2467 case TargetLowering::Custom:
2468 Tmp1 = TLI.LowerOperation(Result, DAG);
2469 if (Tmp1.Val) Result = Tmp1;
Nate Begemane74795c2006-01-25 18:21:52 +00002470 break;
2471 }
2472 break;
2473
Nate Begeman1b8121b2006-01-11 21:21:00 +00002474 case ISD::ROTL:
2475 case ISD::ROTR:
2476 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2477 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002478
2479 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
2480 "Cannot handle this yet!");
Chris Lattnerd02b0542006-01-28 10:58:55 +00002481 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Nate Begeman1b8121b2006-01-11 21:21:00 +00002482 break;
2483
Nate Begeman2fba8a32006-01-14 03:14:10 +00002484 case ISD::BSWAP:
2485 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2486 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002487 case TargetLowering::Custom:
2488 assert(0 && "Cannot custom legalize this yet!");
2489 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002490 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002491 break;
2492 case TargetLowering::Promote: {
2493 MVT::ValueType OVT = Tmp1.getValueType();
2494 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2495 unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
Nate Begeman2fba8a32006-01-14 03:14:10 +00002496
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002497 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2498 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2499 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2500 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2501 break;
2502 }
2503 case TargetLowering::Expand:
2504 Result = ExpandBSWAP(Tmp1);
2505 break;
Nate Begeman2fba8a32006-01-14 03:14:10 +00002506 }
2507 break;
2508
Andrew Lenharth5e177822005-05-03 17:19:30 +00002509 case ISD::CTPOP:
2510 case ISD::CTTZ:
2511 case ISD::CTLZ:
2512 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2513 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002514 case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
Andrew Lenharth5e177822005-05-03 17:19:30 +00002515 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002516 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth5e177822005-05-03 17:19:30 +00002517 break;
2518 case TargetLowering::Promote: {
2519 MVT::ValueType OVT = Tmp1.getValueType();
2520 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner55e9cde2005-05-11 04:51:16 +00002521
2522 // Zero extend the argument.
Andrew Lenharth5e177822005-05-03 17:19:30 +00002523 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2524 // Perform the larger operation, then subtract if needed.
2525 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002526 switch (Node->getOpcode()) {
Andrew Lenharth5e177822005-05-03 17:19:30 +00002527 case ISD::CTPOP:
2528 Result = Tmp1;
2529 break;
2530 case ISD::CTTZ:
2531 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattnerd47675e2005-08-09 20:20:18 +00002532 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2533 DAG.getConstant(getSizeInBits(NVT), NVT),
2534 ISD::SETEQ);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002535 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Andrew Lenharth5e177822005-05-03 17:19:30 +00002536 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2537 break;
2538 case ISD::CTLZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002539 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002540 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2541 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharth5e177822005-05-03 17:19:30 +00002542 getSizeInBits(OVT), NVT));
2543 break;
2544 }
2545 break;
2546 }
Andrew Lenharth5e177822005-05-03 17:19:30 +00002547 case TargetLowering::Expand:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002548 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth5e177822005-05-03 17:19:30 +00002549 break;
2550 }
2551 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002552
Chris Lattner13fe99c2005-04-02 05:00:07 +00002553 // Unary operators
2554 case ISD::FABS:
2555 case ISD::FNEG:
Chris Lattner9d6fa982005-04-28 21:44:33 +00002556 case ISD::FSQRT:
2557 case ISD::FSIN:
2558 case ISD::FCOS:
Chris Lattner13fe99c2005-04-02 05:00:07 +00002559 Tmp1 = LegalizeOp(Node->getOperand(0));
2560 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002561 case TargetLowering::Promote:
2562 case TargetLowering::Custom:
Evan Cheng2443ab92006-01-31 18:14:25 +00002563 isCustom = true;
2564 // FALLTHROUGH
Chris Lattner13fe99c2005-04-02 05:00:07 +00002565 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002566 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng2443ab92006-01-31 18:14:25 +00002567 if (isCustom) {
2568 Tmp1 = TLI.LowerOperation(Result, DAG);
2569 if (Tmp1.Val) Result = Tmp1;
2570 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002571 break;
Chris Lattner13fe99c2005-04-02 05:00:07 +00002572 case TargetLowering::Expand:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002573 switch (Node->getOpcode()) {
2574 default: assert(0 && "Unreachable!");
2575 case ISD::FNEG:
Chris Lattner13fe99c2005-04-02 05:00:07 +00002576 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2577 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002578 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattner80026402005-04-30 04:43:14 +00002579 break;
Chris Lattner80026402005-04-30 04:43:14 +00002580 case ISD::FABS: {
Chris Lattnera0c72cf2005-04-02 05:26:37 +00002581 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2582 MVT::ValueType VT = Node->getValueType(0);
2583 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattnerd47675e2005-08-09 20:20:18 +00002584 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattnera0c72cf2005-04-02 05:26:37 +00002585 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2586 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattner80026402005-04-30 04:43:14 +00002587 break;
2588 }
2589 case ISD::FSQRT:
2590 case ISD::FSIN:
2591 case ISD::FCOS: {
2592 MVT::ValueType VT = Node->getValueType(0);
Chris Lattner80026402005-04-30 04:43:14 +00002593 const char *FnName = 0;
2594 switch(Node->getOpcode()) {
2595 case ISD::FSQRT: FnName = VT == MVT::f32 ? "sqrtf" : "sqrt"; break;
2596 case ISD::FSIN: FnName = VT == MVT::f32 ? "sinf" : "sin"; break;
2597 case ISD::FCOS: FnName = VT == MVT::f32 ? "cosf" : "cos"; break;
2598 default: assert(0 && "Unreachable!");
2599 }
Nate Begeman77558da2005-08-04 21:43:28 +00002600 SDOperand Dummy;
Chris Lattner10f67752006-01-28 04:28:26 +00002601 Result = ExpandLibCall(FnName, Node, Dummy);
Chris Lattner80026402005-04-30 04:43:14 +00002602 break;
2603 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002604 }
2605 break;
2606 }
2607 break;
Chris Lattnerf0359b32006-09-09 06:03:30 +00002608 case ISD::FPOWI: {
2609 // We always lower FPOWI into a libcall. No target support it yet.
2610 const char *FnName = Node->getValueType(0) == MVT::f32
2611 ? "__powisf2" : "__powidf2";
2612 SDOperand Dummy;
2613 Result = ExpandLibCall(FnName, Node, Dummy);
2614 break;
2615 }
Chris Lattner36e663d2005-12-23 00:16:34 +00002616 case ISD::BIT_CONVERT:
Chris Lattner763dfd72006-01-23 07:30:46 +00002617 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner36e663d2005-12-23 00:16:34 +00002618 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Chris Lattner763dfd72006-01-23 07:30:46 +00002619 } else {
Chris Lattner36e663d2005-12-23 00:16:34 +00002620 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2621 Node->getOperand(0).getValueType())) {
2622 default: assert(0 && "Unknown operation action!");
2623 case TargetLowering::Expand:
2624 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2625 break;
2626 case TargetLowering::Legal:
2627 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002628 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner36e663d2005-12-23 00:16:34 +00002629 break;
2630 }
2631 }
2632 break;
Chris Lattnera4f68052006-03-24 02:26:29 +00002633 case ISD::VBIT_CONVERT: {
2634 assert(Op.getOperand(0).getValueType() == MVT::Vector &&
2635 "Can only have VBIT_CONVERT where input or output is MVT::Vector!");
2636
2637 // The input has to be a vector type, we have to either scalarize it, pack
2638 // it, or convert it based on whether the input vector type is legal.
2639 SDNode *InVal = Node->getOperand(0).Val;
2640 unsigned NumElems =
2641 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
2642 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
2643
2644 // Figure out if there is a Packed type corresponding to this Vector
2645 // type. If so, convert to the packed type.
2646 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
2647 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
2648 // Turn this into a bit convert of the packed input.
2649 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2650 PackVectorOp(Node->getOperand(0), TVT));
2651 break;
2652 } else if (NumElems == 1) {
2653 // Turn this into a bit convert of the scalar input.
2654 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2655 PackVectorOp(Node->getOperand(0), EVT));
2656 break;
2657 } else {
2658 // FIXME: UNIMP! Store then reload
2659 assert(0 && "Cast from unsupported vector type not implemented yet!");
2660 }
2661 }
2662
Chris Lattner13fe99c2005-04-02 05:00:07 +00002663 // Conversion operators. The source and destination have different types.
Chris Lattner2a6db3c2005-01-08 08:08:56 +00002664 case ISD::SINT_TO_FP:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002665 case ISD::UINT_TO_FP: {
2666 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattnerdc750592005-01-07 07:47:09 +00002667 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2668 case Legal:
Jeff Cohen546fd592005-07-30 18:33:25 +00002669 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002670 Node->getOperand(0).getValueType())) {
2671 default: assert(0 && "Unknown operation action!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002672 case TargetLowering::Custom:
2673 isCustom = true;
2674 // FALLTHROUGH
2675 case TargetLowering::Legal:
2676 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002677 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002678 if (isCustom) {
2679 Tmp1 = TLI.LowerOperation(Result, DAG);
2680 if (Tmp1.Val) Result = Tmp1;
2681 }
2682 break;
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002683 case TargetLowering::Expand:
Jim Laskeyf2516a92005-08-17 00:39:29 +00002684 Result = ExpandLegalINT_TO_FP(isSigned,
2685 LegalizeOp(Node->getOperand(0)),
2686 Node->getValueType(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002687 break;
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002688 case TargetLowering::Promote:
2689 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2690 Node->getValueType(0),
2691 isSigned);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002692 break;
Andrew Lenharth8d17c702005-11-30 06:43:03 +00002693 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002694 break;
Chris Lattnera65a2f02005-01-07 22:37:48 +00002695 case Expand:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002696 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2697 Node->getValueType(0), Node->getOperand(0));
2698 break;
2699 case Promote:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002700 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002701 if (isSigned) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002702 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2703 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002704 } else {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002705 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2706 Node->getOperand(0).getValueType());
Chris Lattneraac464e2005-01-21 06:05:23 +00002707 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002708 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2709 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002710 break;
2711 }
2712 break;
2713 }
2714 case ISD::TRUNCATE:
2715 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2716 case Legal:
2717 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002718 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002719 break;
2720 case Expand:
2721 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2722
2723 // Since the result is legal, we should just be able to truncate the low
2724 // part of the source.
2725 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2726 break;
2727 case Promote:
2728 Result = PromoteOp(Node->getOperand(0));
2729 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2730 break;
2731 }
2732 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00002733
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002734 case ISD::FP_TO_SINT:
2735 case ISD::FP_TO_UINT:
2736 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2737 case Legal:
Chris Lattnerf59b2da2005-07-30 00:04:12 +00002738 Tmp1 = LegalizeOp(Node->getOperand(0));
2739
Chris Lattner44fe26f2005-07-29 00:11:56 +00002740 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2741 default: assert(0 && "Unknown operation action!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002742 case TargetLowering::Custom:
2743 isCustom = true;
2744 // FALLTHROUGH
2745 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002746 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002747 if (isCustom) {
2748 Tmp1 = TLI.LowerOperation(Result, DAG);
2749 if (Tmp1.Val) Result = Tmp1;
2750 }
2751 break;
2752 case TargetLowering::Promote:
2753 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2754 Node->getOpcode() == ISD::FP_TO_SINT);
2755 break;
Chris Lattner44fe26f2005-07-29 00:11:56 +00002756 case TargetLowering::Expand:
Nate Begeman36853ee2005-08-14 01:20:53 +00002757 if (Node->getOpcode() == ISD::FP_TO_UINT) {
2758 SDOperand True, False;
2759 MVT::ValueType VT = Node->getOperand(0).getValueType();
2760 MVT::ValueType NVT = Node->getValueType(0);
2761 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2762 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2763 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2764 Node->getOperand(0), Tmp2, ISD::SETLT);
2765 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2766 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner6f3b5772005-09-28 22:28:18 +00002767 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begeman36853ee2005-08-14 01:20:53 +00002768 Tmp2));
2769 False = DAG.getNode(ISD::XOR, NVT, False,
2770 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002771 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2772 break;
Nate Begeman36853ee2005-08-14 01:20:53 +00002773 } else {
2774 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2775 }
2776 break;
Chris Lattnerdff50ca2005-08-26 00:14:16 +00002777 }
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002778 break;
2779 case Expand:
2780 assert(0 && "Shouldn't need to expand other operators here!");
2781 case Promote:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002782 Tmp1 = PromoteOp(Node->getOperand(0));
2783 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2784 Result = LegalizeOp(Result);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002785 break;
2786 }
2787 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00002788
Chris Lattner7753f172005-09-02 00:18:10 +00002789 case ISD::ANY_EXTEND:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002790 case ISD::ZERO_EXTEND:
2791 case ISD::SIGN_EXTEND:
2792 case ISD::FP_EXTEND:
2793 case ISD::FP_ROUND:
2794 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002795 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002796 case Legal:
2797 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002798 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002799 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002800 case Promote:
2801 switch (Node->getOpcode()) {
Chris Lattner7753f172005-09-02 00:18:10 +00002802 case ISD::ANY_EXTEND:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002803 Tmp1 = PromoteOp(Node->getOperand(0));
2804 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner7753f172005-09-02 00:18:10 +00002805 break;
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002806 case ISD::ZERO_EXTEND:
2807 Result = PromoteOp(Node->getOperand(0));
Chris Lattner7753f172005-09-02 00:18:10 +00002808 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner0e852af2005-04-13 02:38:47 +00002809 Result = DAG.getZeroExtendInReg(Result,
2810 Node->getOperand(0).getValueType());
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002811 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002812 case ISD::SIGN_EXTEND:
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002813 Result = PromoteOp(Node->getOperand(0));
Chris Lattner7753f172005-09-02 00:18:10 +00002814 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002815 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00002816 Result,
2817 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002818 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002819 case ISD::FP_EXTEND:
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002820 Result = PromoteOp(Node->getOperand(0));
2821 if (Result.getValueType() != Op.getValueType())
2822 // Dynamically dead while we have only 2 FP types.
2823 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
2824 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002825 case ISD::FP_ROUND:
Chris Lattner3ba56b32005-01-16 05:06:12 +00002826 Result = PromoteOp(Node->getOperand(0));
2827 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
2828 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002829 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002830 }
2831 break;
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002832 case ISD::FP_ROUND_INREG:
Chris Lattner0e852af2005-04-13 02:38:47 +00002833 case ISD::SIGN_EXTEND_INREG: {
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002834 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0b6ba902005-07-10 00:07:11 +00002835 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner99222f72005-01-15 07:15:18 +00002836
2837 // If this operation is not supported, convert it to a shl/shr or load/store
2838 // pair.
Chris Lattner3c0dd462005-01-16 07:29:19 +00002839 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
2840 default: assert(0 && "This action not supported for this op yet!");
2841 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002842 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner3c0dd462005-01-16 07:29:19 +00002843 break;
2844 case TargetLowering::Expand:
Chris Lattner99222f72005-01-15 07:15:18 +00002845 // If this is an integer extend and shifts are supported, do that.
Chris Lattner0e852af2005-04-13 02:38:47 +00002846 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner99222f72005-01-15 07:15:18 +00002847 // NOTE: we could fall back on load/store here too for targets without
2848 // SAR. However, it is doubtful that any exist.
2849 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
2850 MVT::getSizeInBits(ExtraVT);
Chris Lattnerec218372005-01-22 00:31:52 +00002851 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner99222f72005-01-15 07:15:18 +00002852 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
2853 Node->getOperand(0), ShiftCst);
2854 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
2855 Result, ShiftCst);
2856 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
2857 // The only way we can lower this is to turn it into a STORETRUNC,
2858 // EXTLOAD pair, targetting a temporary location (a stack slot).
2859
2860 // NOTE: there is a choice here between constantly creating new stack
2861 // slots and always reusing the same one. We currently always create
2862 // new ones, as reuse may inhibit scheduling.
2863 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Owen Anderson20a631f2006-05-03 01:29:57 +00002864 unsigned TySize = (unsigned)TLI.getTargetData()->getTypeSize(Ty);
2865 unsigned Align = TLI.getTargetData()->getTypeAlignment(Ty);
Chris Lattner99222f72005-01-15 07:15:18 +00002866 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukman835702a2005-04-21 22:36:52 +00002867 int SSFI =
Chris Lattner99222f72005-01-15 07:15:18 +00002868 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
2869 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
2870 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, DAG.getEntryNode(),
Chris Lattner5385db52005-05-09 20:23:03 +00002871 Node->getOperand(0), StackSlot,
Chris Lattner36db1ed2005-07-10 00:29:18 +00002872 DAG.getSrcValue(NULL), DAG.getValueType(ExtraVT));
Chris Lattnerde0a4b12005-07-10 01:55:33 +00002873 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2874 Result, StackSlot, DAG.getSrcValue(NULL),
2875 ExtraVT);
Chris Lattner99222f72005-01-15 07:15:18 +00002876 } else {
2877 assert(0 && "Unknown op");
2878 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002879 break;
Chris Lattner99222f72005-01-15 07:15:18 +00002880 }
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002881 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00002882 }
Chris Lattner99222f72005-01-15 07:15:18 +00002883 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002884
Chris Lattner101ea662006-04-08 04:13:17 +00002885 assert(Result.getValueType() == Op.getValueType() &&
2886 "Bad legalization!");
2887
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002888 // Make sure that the generated code is itself legal.
2889 if (Result != Op)
2890 Result = LegalizeOp(Result);
Chris Lattnerdc750592005-01-07 07:47:09 +00002891
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002892 // Note that LegalizeOp may be reentered even from single-use nodes, which
2893 // means that we always must cache transformed nodes.
2894 AddLegalizedOperand(Op, Result);
Chris Lattnerdc750592005-01-07 07:47:09 +00002895 return Result;
2896}
2897
Chris Lattner4d978642005-01-15 22:16:26 +00002898/// PromoteOp - Given an operation that produces a value in an invalid type,
2899/// promote it to compute the value into a larger type. The produced value will
2900/// have the correct bits for the low portion of the register, but no guarantee
2901/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002902SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
2903 MVT::ValueType VT = Op.getValueType();
Chris Lattner87a769c2005-01-16 01:11:45 +00002904 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002905 assert(getTypeAction(VT) == Promote &&
2906 "Caller should expand or legalize operands that are not promotable!");
2907 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
2908 "Cannot promote to smaller type!");
2909
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002910 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002911 SDOperand Result;
2912 SDNode *Node = Op.Val;
2913
Chris Lattner1a570f12005-09-02 20:32:45 +00002914 std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
2915 if (I != PromotedNodes.end()) return I->second;
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002916
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002917 switch (Node->getOpcode()) {
Chris Lattner33182322005-08-16 21:55:35 +00002918 case ISD::CopyFromReg:
2919 assert(0 && "CopyFromReg must be legal!");
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002920 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00002921#ifndef NDEBUG
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002922 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00002923#endif
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002924 assert(0 && "Do not know how to promote this operator!");
2925 abort();
Nate Begemancda9aa72005-04-01 22:34:39 +00002926 case ISD::UNDEF:
2927 Result = DAG.getNode(ISD::UNDEF, NVT);
2928 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002929 case ISD::Constant:
Chris Lattner9a4ad482005-08-30 16:56:19 +00002930 if (VT != MVT::i1)
2931 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
2932 else
2933 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002934 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
2935 break;
2936 case ISD::ConstantFP:
2937 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
2938 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
2939 break;
Chris Lattner9f2c4a52005-01-18 17:54:55 +00002940
Chris Lattner2cb338d2005-01-18 02:59:52 +00002941 case ISD::SETCC:
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00002942 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattnerd47675e2005-08-09 20:20:18 +00002943 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
2944 Node->getOperand(1), Node->getOperand(2));
Chris Lattner2cb338d2005-01-18 02:59:52 +00002945 break;
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002946
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002947 case ISD::TRUNCATE:
2948 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2949 case Legal:
2950 Result = LegalizeOp(Node->getOperand(0));
2951 assert(Result.getValueType() >= NVT &&
2952 "This truncation doesn't make sense!");
2953 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
2954 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
2955 break;
Chris Lattnerbf8c1ad2005-01-28 22:52:50 +00002956 case Promote:
2957 // The truncation is not required, because we don't guarantee anything
2958 // about high bits anyway.
2959 Result = PromoteOp(Node->getOperand(0));
2960 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002961 case Expand:
Nate Begemancc00a7c2005-04-04 00:57:08 +00002962 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2963 // Truncate the low part of the expanded value to the result type
Chris Lattner4398daf2005-08-01 18:16:37 +00002964 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002965 }
2966 break;
Chris Lattner4d978642005-01-15 22:16:26 +00002967 case ISD::SIGN_EXTEND:
2968 case ISD::ZERO_EXTEND:
Chris Lattner7753f172005-09-02 00:18:10 +00002969 case ISD::ANY_EXTEND:
Chris Lattner4d978642005-01-15 22:16:26 +00002970 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2971 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
2972 case Legal:
2973 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002974 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner4d978642005-01-15 22:16:26 +00002975 break;
2976 case Promote:
2977 // Promote the reg if it's smaller.
2978 Result = PromoteOp(Node->getOperand(0));
2979 // The high bits are not guaranteed to be anything. Insert an extend.
2980 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner05596912005-02-04 18:39:19 +00002981 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner0b6ba902005-07-10 00:07:11 +00002982 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner7753f172005-09-02 00:18:10 +00002983 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner0e852af2005-04-13 02:38:47 +00002984 Result = DAG.getZeroExtendInReg(Result,
2985 Node->getOperand(0).getValueType());
Chris Lattner4d978642005-01-15 22:16:26 +00002986 break;
2987 }
2988 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00002989 case ISD::BIT_CONVERT:
2990 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2991 Result = PromoteOp(Result);
2992 break;
2993
Chris Lattner4d978642005-01-15 22:16:26 +00002994 case ISD::FP_EXTEND:
2995 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
2996 case ISD::FP_ROUND:
2997 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2998 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
2999 case Promote: assert(0 && "Unreachable with 2 FP types!");
3000 case Legal:
3001 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003002 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner0b6ba902005-07-10 00:07:11 +00003003 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00003004 break;
3005 }
3006 break;
3007
3008 case ISD::SINT_TO_FP:
3009 case ISD::UINT_TO_FP:
3010 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3011 case Legal:
Chris Lattneraac464e2005-01-21 06:05:23 +00003012 // No extra round required here.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003013 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner4d978642005-01-15 22:16:26 +00003014 break;
3015
3016 case Promote:
3017 Result = PromoteOp(Node->getOperand(0));
3018 if (Node->getOpcode() == ISD::SINT_TO_FP)
3019 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00003020 Result,
3021 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner4d978642005-01-15 22:16:26 +00003022 else
Chris Lattner0e852af2005-04-13 02:38:47 +00003023 Result = DAG.getZeroExtendInReg(Result,
3024 Node->getOperand(0).getValueType());
Chris Lattneraac464e2005-01-21 06:05:23 +00003025 // No extra round required here.
3026 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner4d978642005-01-15 22:16:26 +00003027 break;
3028 case Expand:
Chris Lattneraac464e2005-01-21 06:05:23 +00003029 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3030 Node->getOperand(0));
Chris Lattneraac464e2005-01-21 06:05:23 +00003031 // Round if we cannot tolerate excess precision.
3032 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003033 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3034 DAG.getValueType(VT));
Chris Lattneraac464e2005-01-21 06:05:23 +00003035 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003036 }
Chris Lattner4d978642005-01-15 22:16:26 +00003037 break;
3038
Chris Lattner268d4572005-12-09 17:32:47 +00003039 case ISD::SIGN_EXTEND_INREG:
3040 Result = PromoteOp(Node->getOperand(0));
3041 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3042 Node->getOperand(1));
3043 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003044 case ISD::FP_TO_SINT:
3045 case ISD::FP_TO_UINT:
3046 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3047 case Legal:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003048 Tmp1 = Node->getOperand(0);
Chris Lattner4d978642005-01-15 22:16:26 +00003049 break;
3050 case Promote:
3051 // The input result is prerounded, so we don't have to do anything
3052 // special.
3053 Tmp1 = PromoteOp(Node->getOperand(0));
3054 break;
3055 case Expand:
3056 assert(0 && "not implemented");
3057 }
Nate Begeman36853ee2005-08-14 01:20:53 +00003058 // If we're promoting a UINT to a larger size, check to see if the new node
3059 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3060 // we can use that instead. This allows us to generate better code for
3061 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3062 // legal, such as PowerPC.
3063 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00003064 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemand8f2a1a2005-10-25 23:47:25 +00003065 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3066 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begeman36853ee2005-08-14 01:20:53 +00003067 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3068 } else {
3069 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3070 }
Chris Lattner4d978642005-01-15 22:16:26 +00003071 break;
3072
Chris Lattner13fe99c2005-04-02 05:00:07 +00003073 case ISD::FABS:
3074 case ISD::FNEG:
3075 Tmp1 = PromoteOp(Node->getOperand(0));
3076 assert(Tmp1.getValueType() == NVT);
3077 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3078 // NOTE: we do not have to do any extra rounding here for
3079 // NoExcessFPPrecision, because we know the input will have the appropriate
3080 // precision, and these operations don't modify precision at all.
3081 break;
3082
Chris Lattner9d6fa982005-04-28 21:44:33 +00003083 case ISD::FSQRT:
3084 case ISD::FSIN:
3085 case ISD::FCOS:
3086 Tmp1 = PromoteOp(Node->getOperand(0));
3087 assert(Tmp1.getValueType() == NVT);
3088 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003089 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003090 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3091 DAG.getValueType(VT));
Chris Lattner9d6fa982005-04-28 21:44:33 +00003092 break;
3093
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003094 case ISD::AND:
3095 case ISD::OR:
3096 case ISD::XOR:
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003097 case ISD::ADD:
Chris Lattner4d978642005-01-15 22:16:26 +00003098 case ISD::SUB:
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003099 case ISD::MUL:
3100 // The input may have strange things in the top bits of the registers, but
Chris Lattner6f3b5772005-09-28 22:28:18 +00003101 // these operations don't care. They may have weird bits going out, but
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003102 // that too is okay if they are integer operations.
3103 Tmp1 = PromoteOp(Node->getOperand(0));
3104 Tmp2 = PromoteOp(Node->getOperand(1));
3105 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3106 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner6f3b5772005-09-28 22:28:18 +00003107 break;
3108 case ISD::FADD:
3109 case ISD::FSUB:
3110 case ISD::FMUL:
Chris Lattner6f3b5772005-09-28 22:28:18 +00003111 Tmp1 = PromoteOp(Node->getOperand(0));
3112 Tmp2 = PromoteOp(Node->getOperand(1));
3113 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3114 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3115
3116 // Floating point operations will give excess precision that we may not be
3117 // able to tolerate. If we DO allow excess precision, just leave it,
3118 // otherwise excise it.
Chris Lattner4d978642005-01-15 22:16:26 +00003119 // FIXME: Why would we need to round FP ops more than integer ones?
3120 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner6f3b5772005-09-28 22:28:18 +00003121 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003122 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3123 DAG.getValueType(VT));
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003124 break;
3125
Chris Lattner4d978642005-01-15 22:16:26 +00003126 case ISD::SDIV:
3127 case ISD::SREM:
3128 // These operators require that their input be sign extended.
3129 Tmp1 = PromoteOp(Node->getOperand(0));
3130 Tmp2 = PromoteOp(Node->getOperand(1));
3131 if (MVT::isInteger(NVT)) {
Chris Lattner0b6ba902005-07-10 00:07:11 +00003132 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3133 DAG.getValueType(VT));
3134 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3135 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00003136 }
3137 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3138
3139 // Perform FP_ROUND: this is probably overly pessimistic.
3140 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003141 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3142 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00003143 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00003144 case ISD::FDIV:
3145 case ISD::FREM:
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003146 case ISD::FCOPYSIGN:
Chris Lattner6f3b5772005-09-28 22:28:18 +00003147 // These operators require that their input be fp extended.
Nate Begeman1a225d22006-05-09 18:20:51 +00003148 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3149 case Legal:
3150 Tmp1 = LegalizeOp(Node->getOperand(0));
3151 break;
3152 case Promote:
3153 Tmp1 = PromoteOp(Node->getOperand(0));
3154 break;
3155 case Expand:
3156 assert(0 && "not implemented");
3157 }
3158 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3159 case Legal:
3160 Tmp2 = LegalizeOp(Node->getOperand(1));
3161 break;
3162 case Promote:
3163 Tmp2 = PromoteOp(Node->getOperand(1));
3164 break;
3165 case Expand:
3166 assert(0 && "not implemented");
3167 }
Chris Lattner6f3b5772005-09-28 22:28:18 +00003168 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3169
3170 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003171 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner6f3b5772005-09-28 22:28:18 +00003172 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3173 DAG.getValueType(VT));
3174 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003175
3176 case ISD::UDIV:
3177 case ISD::UREM:
3178 // These operators require that their input be zero extended.
3179 Tmp1 = PromoteOp(Node->getOperand(0));
3180 Tmp2 = PromoteOp(Node->getOperand(1));
3181 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner0e852af2005-04-13 02:38:47 +00003182 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3183 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner4d978642005-01-15 22:16:26 +00003184 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3185 break;
3186
3187 case ISD::SHL:
3188 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003189 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00003190 break;
3191 case ISD::SRA:
3192 // The input value must be properly sign extended.
3193 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0b6ba902005-07-10 00:07:11 +00003194 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3195 DAG.getValueType(VT));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003196 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00003197 break;
3198 case ISD::SRL:
3199 // The input value must be properly zero extended.
3200 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0e852af2005-04-13 02:38:47 +00003201 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003202 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00003203 break;
Nate Begeman595ec732006-01-28 03:14:31 +00003204
3205 case ISD::VAARG:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003206 Tmp1 = Node->getOperand(0); // Get the chain.
3207 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman595ec732006-01-28 03:14:31 +00003208 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3209 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3210 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3211 } else {
3212 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
3213 Node->getOperand(2));
3214 // Increment the pointer, VAList, to the next vaarg
3215 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3216 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3217 TLI.getPointerTy()));
3218 // Store the incremented VAList to the legalized pointer
3219 Tmp3 = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), Tmp3, Tmp2,
3220 Node->getOperand(2));
3221 // Load the actual argument out of the pointer VAList
3222 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList,
3223 DAG.getSrcValue(0), VT);
3224 }
3225 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003226 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman595ec732006-01-28 03:14:31 +00003227 break;
3228
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003229 case ISD::LOAD:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003230 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Node->getOperand(0),
3231 Node->getOperand(1), Node->getOperand(2), VT);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003232 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003233 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003234 break;
Chris Lattnerd23f4b72005-10-13 20:07:41 +00003235 case ISD::SEXTLOAD:
3236 case ISD::ZEXTLOAD:
3237 case ISD::EXTLOAD:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003238 Result = DAG.getExtLoad(Node->getOpcode(), NVT, Node->getOperand(0),
3239 Node->getOperand(1), Node->getOperand(2),
Chris Lattnerb986f472005-10-15 20:24:07 +00003240 cast<VTSDNode>(Node->getOperand(3))->getVT());
Chris Lattnerd23f4b72005-10-13 20:07:41 +00003241 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003242 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattnerd23f4b72005-10-13 20:07:41 +00003243 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003244 case ISD::SELECT:
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003245 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
3246 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003247 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003248 break;
Nate Begemane5b86d72005-08-10 20:51:12 +00003249 case ISD::SELECT_CC:
3250 Tmp2 = PromoteOp(Node->getOperand(2)); // True
3251 Tmp3 = PromoteOp(Node->getOperand(3)); // False
3252 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003253 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begemane5b86d72005-08-10 20:51:12 +00003254 break;
Nate Begeman2fba8a32006-01-14 03:14:10 +00003255 case ISD::BSWAP:
3256 Tmp1 = Node->getOperand(0);
3257 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3258 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3259 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3260 DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
3261 TLI.getShiftAmountTy()));
3262 break;
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003263 case ISD::CTPOP:
3264 case ISD::CTTZ:
3265 case ISD::CTLZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003266 // Zero extend the argument
3267 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003268 // Perform the larger operation, then subtract if needed.
3269 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003270 switch(Node->getOpcode()) {
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003271 case ISD::CTPOP:
3272 Result = Tmp1;
3273 break;
3274 case ISD::CTTZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003275 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begeman36853ee2005-08-14 01:20:53 +00003276 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Chris Lattnerd47675e2005-08-09 20:20:18 +00003277 DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003278 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003279 DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003280 break;
3281 case ISD::CTLZ:
3282 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003283 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
3284 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003285 getSizeInBits(VT), NVT));
3286 break;
3287 }
3288 break;
Chris Lattner6f423252006-03-31 17:55:51 +00003289 case ISD::VEXTRACT_VECTOR_ELT:
3290 Result = PromoteOp(LowerVEXTRACT_VECTOR_ELT(Op));
3291 break;
Chris Lattner42a5fca2006-04-02 05:06:04 +00003292 case ISD::EXTRACT_VECTOR_ELT:
3293 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3294 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003295 }
3296
3297 assert(Result.Val && "Didn't set a result!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003298
3299 // Make sure the result is itself legal.
3300 Result = LegalizeOp(Result);
3301
3302 // Remember that we promoted this!
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003303 AddPromotedOperand(Op, Result);
3304 return Result;
3305}
Chris Lattnerdc750592005-01-07 07:47:09 +00003306
Chris Lattner6f423252006-03-31 17:55:51 +00003307/// LowerVEXTRACT_VECTOR_ELT - Lower a VEXTRACT_VECTOR_ELT operation into a
3308/// EXTRACT_VECTOR_ELT operation, to memory operations, or to scalar code based
3309/// on the vector type. The return type of this matches the element type of the
3310/// vector, which may not be legal for the target.
3311SDOperand SelectionDAGLegalize::LowerVEXTRACT_VECTOR_ELT(SDOperand Op) {
3312 // We know that operand #0 is the Vec vector. If the index is a constant
3313 // or if the invec is a supported hardware type, we can use it. Otherwise,
3314 // lower to a store then an indexed load.
3315 SDOperand Vec = Op.getOperand(0);
3316 SDOperand Idx = LegalizeOp(Op.getOperand(1));
3317
3318 SDNode *InVal = Vec.Val;
3319 unsigned NumElems = cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
3320 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
3321
3322 // Figure out if there is a Packed type corresponding to this Vector
3323 // type. If so, convert to the packed type.
3324 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3325 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
3326 // Turn this into a packed extract_vector_elt operation.
3327 Vec = PackVectorOp(Vec, TVT);
3328 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, Op.getValueType(), Vec, Idx);
3329 } else if (NumElems == 1) {
3330 // This must be an access of the only element. Return it.
3331 return PackVectorOp(Vec, EVT);
3332 } else if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
3333 SDOperand Lo, Hi;
3334 SplitVectorOp(Vec, Lo, Hi);
3335 if (CIdx->getValue() < NumElems/2) {
3336 Vec = Lo;
3337 } else {
3338 Vec = Hi;
3339 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3340 }
3341
3342 // It's now an extract from the appropriate high or low part. Recurse.
3343 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3344 return LowerVEXTRACT_VECTOR_ELT(Op);
3345 } else {
3346 // Variable index case for extract element.
3347 // FIXME: IMPLEMENT STORE/LOAD lowering. Need alignment of stack slot!!
3348 assert(0 && "unimp!");
3349 return SDOperand();
3350 }
3351}
3352
Chris Lattner42a5fca2006-04-02 05:06:04 +00003353/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3354/// memory traffic.
3355SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
3356 SDOperand Vector = Op.getOperand(0);
3357 SDOperand Idx = Op.getOperand(1);
3358
3359 // If the target doesn't support this, store the value to a temporary
3360 // stack slot, then LOAD the scalar element back out.
3361 SDOperand StackPtr = CreateStackTemporary(Vector.getValueType());
3362 SDOperand Ch = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3363 Vector, StackPtr, DAG.getSrcValue(NULL));
3364
3365 // Add the offset to the index.
3366 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3367 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3368 DAG.getConstant(EltSize, Idx.getValueType()));
3369 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3370
3371 return DAG.getLoad(Op.getValueType(), Ch, StackPtr, DAG.getSrcValue(NULL));
3372}
3373
Chris Lattner6f423252006-03-31 17:55:51 +00003374
Nate Begeman7e7f4392006-02-01 07:19:44 +00003375/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3376/// with condition CC on the current target. This usually involves legalizing
3377/// or promoting the arguments. In the case where LHS and RHS must be expanded,
3378/// there may be no choice but to create a new SetCC node to represent the
3379/// legalized value of setcc lhs, rhs. In this case, the value is returned in
3380/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3381void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3382 SDOperand &RHS,
3383 SDOperand &CC) {
3384 SDOperand Tmp1, Tmp2, Result;
3385
3386 switch (getTypeAction(LHS.getValueType())) {
3387 case Legal:
3388 Tmp1 = LegalizeOp(LHS); // LHS
3389 Tmp2 = LegalizeOp(RHS); // RHS
3390 break;
3391 case Promote:
3392 Tmp1 = PromoteOp(LHS); // LHS
3393 Tmp2 = PromoteOp(RHS); // RHS
3394
3395 // If this is an FP compare, the operands have already been extended.
3396 if (MVT::isInteger(LHS.getValueType())) {
3397 MVT::ValueType VT = LHS.getValueType();
3398 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3399
3400 // Otherwise, we have to insert explicit sign or zero extends. Note
3401 // that we could insert sign extends for ALL conditions, but zero extend
3402 // is cheaper on many machines (an AND instead of two shifts), so prefer
3403 // it.
3404 switch (cast<CondCodeSDNode>(CC)->get()) {
3405 default: assert(0 && "Unknown integer comparison!");
3406 case ISD::SETEQ:
3407 case ISD::SETNE:
3408 case ISD::SETUGE:
3409 case ISD::SETUGT:
3410 case ISD::SETULE:
3411 case ISD::SETULT:
3412 // ALL of these operations will work if we either sign or zero extend
3413 // the operands (including the unsigned comparisons!). Zero extend is
3414 // usually a simpler/cheaper operation, so prefer it.
3415 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3416 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3417 break;
3418 case ISD::SETGE:
3419 case ISD::SETGT:
3420 case ISD::SETLT:
3421 case ISD::SETLE:
3422 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3423 DAG.getValueType(VT));
3424 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3425 DAG.getValueType(VT));
3426 break;
3427 }
3428 }
3429 break;
3430 case Expand:
3431 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
3432 ExpandOp(LHS, LHSLo, LHSHi);
3433 ExpandOp(RHS, RHSLo, RHSHi);
3434 switch (cast<CondCodeSDNode>(CC)->get()) {
3435 case ISD::SETEQ:
3436 case ISD::SETNE:
3437 if (RHSLo == RHSHi)
3438 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
3439 if (RHSCST->isAllOnesValue()) {
3440 // Comparison to -1.
3441 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
3442 Tmp2 = RHSLo;
3443 break;
3444 }
3445
3446 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
3447 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
3448 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3449 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3450 break;
3451 default:
3452 // If this is a comparison of the sign bit, just look at the top part.
3453 // X > -1, x < 0
3454 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
3455 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
3456 CST->getValue() == 0) || // X < 0
3457 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
3458 CST->isAllOnesValue())) { // X > -1
3459 Tmp1 = LHSHi;
3460 Tmp2 = RHSHi;
3461 break;
3462 }
3463
3464 // FIXME: This generated code sucks.
3465 ISD::CondCode LowCC;
3466 switch (cast<CondCodeSDNode>(CC)->get()) {
3467 default: assert(0 && "Unknown integer setcc!");
3468 case ISD::SETLT:
3469 case ISD::SETULT: LowCC = ISD::SETULT; break;
3470 case ISD::SETGT:
3471 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
3472 case ISD::SETLE:
3473 case ISD::SETULE: LowCC = ISD::SETULE; break;
3474 case ISD::SETGE:
3475 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
3476 }
3477
3478 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
3479 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
3480 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
3481
3482 // NOTE: on targets without efficient SELECT of bools, we can always use
3483 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
3484 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
3485 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
3486 Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
3487 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
3488 Result, Tmp1, Tmp2));
3489 Tmp1 = Result;
Nate Begeman01bd9d92006-02-01 19:05:15 +00003490 Tmp2 = SDOperand();
Nate Begeman7e7f4392006-02-01 07:19:44 +00003491 }
3492 }
3493 LHS = Tmp1;
3494 RHS = Tmp2;
3495}
3496
Chris Lattner36e663d2005-12-23 00:16:34 +00003497/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner884eb3ad2005-12-23 00:52:30 +00003498/// The resultant code need not be legal. Note that SrcOp is the input operand
3499/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner36e663d2005-12-23 00:16:34 +00003500SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
3501 SDOperand SrcOp) {
3502 // Create the stack frame object.
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003503 SDOperand FIPtr = CreateStackTemporary(DestVT);
Chris Lattner36e663d2005-12-23 00:16:34 +00003504
3505 // Emit a store to the stack slot.
3506 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
Chris Lattner9eae8d52005-12-23 00:50:25 +00003507 SrcOp, FIPtr, DAG.getSrcValue(NULL));
Chris Lattner36e663d2005-12-23 00:16:34 +00003508 // Result is a load from the stack slot.
3509 return DAG.getLoad(DestVT, Store, FIPtr, DAG.getSrcValue(0));
3510}
3511
Chris Lattner6be79822006-04-04 17:23:26 +00003512SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
3513 // Create a vector sized/aligned stack slot, store the value to element #0,
3514 // then load the whole vector back out.
3515 SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
3516 SDOperand Ch = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3517 Node->getOperand(0), StackPtr,
3518 DAG.getSrcValue(NULL));
3519 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,DAG.getSrcValue(NULL));
3520}
3521
3522
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003523/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
3524/// support the operation, but do support the resultant packed vector type.
3525SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
3526
3527 // If the only non-undef value is the low element, turn this into a
Chris Lattner21e68c82006-03-20 01:52:29 +00003528 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng1d2e9952006-03-24 01:17:21 +00003529 unsigned NumElems = Node->getNumOperands();
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003530 bool isOnlyLowElement = true;
Chris Lattner21e68c82006-03-20 01:52:29 +00003531 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng1d2e9952006-03-24 01:17:21 +00003532 std::map<SDOperand, std::vector<unsigned> > Values;
3533 Values[SplatValue].push_back(0);
Chris Lattner77e271c2006-03-24 07:29:17 +00003534 bool isConstant = true;
3535 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
3536 SplatValue.getOpcode() != ISD::UNDEF)
3537 isConstant = false;
3538
Evan Cheng1d2e9952006-03-24 01:17:21 +00003539 for (unsigned i = 1; i < NumElems; ++i) {
3540 SDOperand V = Node->getOperand(i);
Chris Lattner73eb58e2006-04-19 23:17:50 +00003541 Values[V].push_back(i);
Evan Cheng1d2e9952006-03-24 01:17:21 +00003542 if (V.getOpcode() != ISD::UNDEF)
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003543 isOnlyLowElement = false;
Evan Cheng1d2e9952006-03-24 01:17:21 +00003544 if (SplatValue != V)
Chris Lattner21e68c82006-03-20 01:52:29 +00003545 SplatValue = SDOperand(0,0);
Chris Lattner77e271c2006-03-24 07:29:17 +00003546
3547 // If this isn't a constant element or an undef, we can't use a constant
3548 // pool load.
3549 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
3550 V.getOpcode() != ISD::UNDEF)
3551 isConstant = false;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003552 }
3553
3554 if (isOnlyLowElement) {
3555 // If the low element is an undef too, then this whole things is an undef.
3556 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
3557 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
3558 // Otherwise, turn this into a scalar_to_vector node.
3559 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3560 Node->getOperand(0));
3561 }
3562
Chris Lattner77e271c2006-03-24 07:29:17 +00003563 // If all elements are constants, create a load from the constant pool.
3564 if (isConstant) {
3565 MVT::ValueType VT = Node->getValueType(0);
3566 const Type *OpNTy =
3567 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
3568 std::vector<Constant*> CV;
3569 for (unsigned i = 0, e = NumElems; i != e; ++i) {
3570 if (ConstantFPSDNode *V =
3571 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
3572 CV.push_back(ConstantFP::get(OpNTy, V->getValue()));
3573 } else if (ConstantSDNode *V =
3574 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
3575 CV.push_back(ConstantUInt::get(OpNTy, V->getValue()));
3576 } else {
3577 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
3578 CV.push_back(UndefValue::get(OpNTy));
3579 }
3580 }
3581 Constant *CP = ConstantPacked::get(CV);
3582 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
3583 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
3584 DAG.getSrcValue(NULL));
3585 }
3586
Chris Lattner21e68c82006-03-20 01:52:29 +00003587 if (SplatValue.Val) { // Splat of one value?
3588 // Build the shuffle constant vector: <0, 0, 0, 0>
3589 MVT::ValueType MaskVT =
Evan Cheng1d2e9952006-03-24 01:17:21 +00003590 MVT::getIntVectorWithNumElements(NumElems);
Chris Lattner21e68c82006-03-20 01:52:29 +00003591 SDOperand Zero = DAG.getConstant(0, MVT::getVectorBaseType(MaskVT));
Evan Cheng1d2e9952006-03-24 01:17:21 +00003592 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003593 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3594 &ZeroVec[0], ZeroVec.size());
Chris Lattner21e68c82006-03-20 01:52:29 +00003595
3596 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner6be79822006-04-04 17:23:26 +00003597 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner21e68c82006-03-20 01:52:29 +00003598 // Get the splatted value into the low element of a vector register.
3599 SDOperand LowValVec =
3600 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
3601
3602 // Return shuffle(LowValVec, undef, <0,0,0,0>)
3603 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
3604 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
3605 SplatMask);
3606 }
3607 }
3608
Evan Cheng1d2e9952006-03-24 01:17:21 +00003609 // If there are only two unique elements, we may be able to turn this into a
3610 // vector shuffle.
3611 if (Values.size() == 2) {
3612 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
3613 MVT::ValueType MaskVT =
3614 MVT::getIntVectorWithNumElements(NumElems);
3615 std::vector<SDOperand> MaskVec(NumElems);
3616 unsigned i = 0;
3617 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3618 E = Values.end(); I != E; ++I) {
3619 for (std::vector<unsigned>::iterator II = I->second.begin(),
3620 EE = I->second.end(); II != EE; ++II)
3621 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorBaseType(MaskVT));
3622 i += NumElems;
3623 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003624 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3625 &MaskVec[0], MaskVec.size());
Evan Cheng1d2e9952006-03-24 01:17:21 +00003626
3627 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner6be79822006-04-04 17:23:26 +00003628 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
3629 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003630 SmallVector<SDOperand, 8> Ops;
Evan Cheng1d2e9952006-03-24 01:17:21 +00003631 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3632 E = Values.end(); I != E; ++I) {
3633 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3634 I->first);
3635 Ops.push_back(Op);
3636 }
3637 Ops.push_back(ShuffleMask);
3638
3639 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003640 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
3641 &Ops[0], Ops.size());
Evan Cheng1d2e9952006-03-24 01:17:21 +00003642 }
3643 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003644
3645 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
3646 // aligned object on the stack, store each element into it, then load
3647 // the result as a vector.
3648 MVT::ValueType VT = Node->getValueType(0);
3649 // Create the stack frame object.
3650 SDOperand FIPtr = CreateStackTemporary(VT);
3651
3652 // Emit a store of each element to the stack slot.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003653 SmallVector<SDOperand, 8> Stores;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003654 unsigned TypeByteSize =
3655 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
3656 unsigned VectorSize = MVT::getSizeInBits(VT)/8;
3657 // Store (in the right endianness) the elements to memory.
3658 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3659 // Ignore undef elements.
3660 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
3661
Chris Lattner8fa445a2006-03-22 01:46:54 +00003662 unsigned Offset = TypeByteSize*i;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003663
3664 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
3665 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
3666
3667 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3668 Node->getOperand(i), Idx,
3669 DAG.getSrcValue(NULL)));
3670 }
3671
3672 SDOperand StoreChain;
3673 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003674 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3675 &Stores[0], Stores.size());
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003676 else
3677 StoreChain = DAG.getEntryNode();
3678
3679 // Result is a load from the stack slot.
3680 return DAG.getLoad(VT, StoreChain, FIPtr, DAG.getSrcValue(0));
3681}
3682
3683/// CreateStackTemporary - Create a stack temporary, suitable for holding the
3684/// specified value type.
3685SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
3686 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3687 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
3688 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, ByteSize);
3689 return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
3690}
3691
Chris Lattner4157c412005-04-02 04:00:59 +00003692void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
3693 SDOperand Op, SDOperand Amt,
3694 SDOperand &Lo, SDOperand &Hi) {
3695 // Expand the subcomponents.
3696 SDOperand LHSL, LHSH;
3697 ExpandOp(Op, LHSL, LHSH);
3698
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003699 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerbd887772006-08-14 23:53:35 +00003700 MVT::ValueType VT = LHSL.getValueType();
3701 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner4157c412005-04-02 04:00:59 +00003702 Hi = Lo.getValue(1);
3703}
3704
3705
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003706/// ExpandShift - Try to find a clever way to expand this shift operation out to
3707/// smaller elements. If we can't find a way that is more efficient than a
3708/// libcall on this target, return false. Otherwise, return true with the
3709/// low-parts expanded into Lo and Hi.
3710bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
3711 SDOperand &Lo, SDOperand &Hi) {
3712 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
3713 "This is not a shift!");
Nate Begemanb0674922005-04-06 21:13:14 +00003714
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003715 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanb0674922005-04-06 21:13:14 +00003716 SDOperand ShAmt = LegalizeOp(Amt);
3717 MVT::ValueType ShTy = ShAmt.getValueType();
3718 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
3719 unsigned NVTBits = MVT::getSizeInBits(NVT);
3720
3721 // Handle the case when Amt is an immediate. Other cases are currently broken
3722 // and are disabled.
3723 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
3724 unsigned Cst = CN->getValue();
3725 // Expand the incoming operand to be shifted, so that we have its parts
3726 SDOperand InL, InH;
3727 ExpandOp(Op, InL, InH);
3728 switch(Opc) {
3729 case ISD::SHL:
3730 if (Cst > VTBits) {
3731 Lo = DAG.getConstant(0, NVT);
3732 Hi = DAG.getConstant(0, NVT);
3733 } else if (Cst > NVTBits) {
3734 Lo = DAG.getConstant(0, NVT);
3735 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneredd19702005-04-11 20:08:52 +00003736 } else if (Cst == NVTBits) {
3737 Lo = DAG.getConstant(0, NVT);
3738 Hi = InL;
Nate Begemanb0674922005-04-06 21:13:14 +00003739 } else {
3740 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
3741 Hi = DAG.getNode(ISD::OR, NVT,
3742 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
3743 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
3744 }
3745 return true;
3746 case ISD::SRL:
3747 if (Cst > VTBits) {
3748 Lo = DAG.getConstant(0, NVT);
3749 Hi = DAG.getConstant(0, NVT);
3750 } else if (Cst > NVTBits) {
3751 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
3752 Hi = DAG.getConstant(0, NVT);
Chris Lattneredd19702005-04-11 20:08:52 +00003753 } else if (Cst == NVTBits) {
3754 Lo = InH;
3755 Hi = DAG.getConstant(0, NVT);
Nate Begemanb0674922005-04-06 21:13:14 +00003756 } else {
3757 Lo = DAG.getNode(ISD::OR, NVT,
3758 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3759 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3760 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
3761 }
3762 return true;
3763 case ISD::SRA:
3764 if (Cst > VTBits) {
Misha Brukman835702a2005-04-21 22:36:52 +00003765 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00003766 DAG.getConstant(NVTBits-1, ShTy));
3767 } else if (Cst > NVTBits) {
Misha Brukman835702a2005-04-21 22:36:52 +00003768 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00003769 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukman835702a2005-04-21 22:36:52 +00003770 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00003771 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneredd19702005-04-11 20:08:52 +00003772 } else if (Cst == NVTBits) {
3773 Lo = InH;
Misha Brukman835702a2005-04-21 22:36:52 +00003774 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneredd19702005-04-11 20:08:52 +00003775 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanb0674922005-04-06 21:13:14 +00003776 } else {
3777 Lo = DAG.getNode(ISD::OR, NVT,
3778 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3779 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3780 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
3781 }
3782 return true;
3783 }
3784 }
Nate Begemanb0674922005-04-06 21:13:14 +00003785 return false;
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003786}
Chris Lattneraac464e2005-01-21 06:05:23 +00003787
Chris Lattner4add7e32005-01-23 04:42:50 +00003788
Chris Lattneraac464e2005-01-21 06:05:23 +00003789// ExpandLibCall - Expand a node into a call to a libcall. If the result value
3790// does not fit into a register, return the lo part and set the hi part to the
3791// by-reg argument. If it does fit into a single register, return the result
3792// and leave the Hi part unset.
3793SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
3794 SDOperand &Hi) {
Chris Lattner462505f2006-02-13 09:18:02 +00003795 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
3796 // The input chain to this libcall is the entry node of the function.
3797 // Legalizing the call will automatically add the previous call to the
3798 // dependence.
3799 SDOperand InChain = DAG.getEntryNode();
3800
Chris Lattneraac464e2005-01-21 06:05:23 +00003801 TargetLowering::ArgListTy Args;
3802 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3803 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
3804 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
3805 Args.push_back(std::make_pair(Node->getOperand(i), ArgTy));
3806 }
3807 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukman835702a2005-04-21 22:36:52 +00003808
Chris Lattner06bbeb62005-05-11 19:02:11 +00003809 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattneraac464e2005-01-21 06:05:23 +00003810 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner06bbeb62005-05-11 19:02:11 +00003811 std::pair<SDOperand,SDOperand> CallInfo =
Chris Lattner2e77db62005-05-13 18:50:42 +00003812 TLI.LowerCallTo(InChain, RetTy, false, CallingConv::C, false,
3813 Callee, Args, DAG);
Chris Lattnera5bf1032005-05-12 04:49:08 +00003814
Chris Lattner462505f2006-02-13 09:18:02 +00003815 // Legalize the call sequence, starting with the chain. This will advance
3816 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
3817 // was added by LowerCallTo (guaranteeing proper serialization of calls).
3818 LegalizeOp(CallInfo.second);
Chris Lattner63022662005-09-02 20:26:58 +00003819 SDOperand Result;
Chris Lattner06bbeb62005-05-11 19:02:11 +00003820 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattneraac464e2005-01-21 06:05:23 +00003821 default: assert(0 && "Unknown thing");
3822 case Legal:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003823 Result = CallInfo.first;
Chris Lattner63022662005-09-02 20:26:58 +00003824 break;
Chris Lattneraac464e2005-01-21 06:05:23 +00003825 case Expand:
Chris Lattner63022662005-09-02 20:26:58 +00003826 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner63022662005-09-02 20:26:58 +00003827 break;
Chris Lattneraac464e2005-01-21 06:05:23 +00003828 }
Chris Lattner63022662005-09-02 20:26:58 +00003829 return Result;
Chris Lattneraac464e2005-01-21 06:05:23 +00003830}
3831
Chris Lattner4add7e32005-01-23 04:42:50 +00003832
Chris Lattneraac464e2005-01-21 06:05:23 +00003833/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
3834/// destination type is legal.
3835SDOperand SelectionDAGLegalize::
3836ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00003837 assert(isTypeLegal(DestTy) && "Destination type is not legal!");
Chris Lattneraac464e2005-01-21 06:05:23 +00003838 assert(getTypeAction(Source.getValueType()) == Expand &&
3839 "This is not an expansion!");
3840 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
3841
Chris Lattner06bbeb62005-05-11 19:02:11 +00003842 if (!isSigned) {
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003843 assert(Source.getValueType() == MVT::i64 &&
3844 "This only works for 64-bit -> FP");
3845 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
3846 // incoming integer is set. To handle this, we dynamically test to see if
3847 // it is set, and, if so, add a fudge factor.
3848 SDOperand Lo, Hi;
3849 ExpandOp(Source, Lo, Hi);
3850
Chris Lattner2a4f7312005-05-13 04:45:13 +00003851 // If this is unsigned, and not supported, first perform the conversion to
3852 // signed, then adjust the result if the sign bit is set.
3853 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
3854 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
3855
Chris Lattnerd47675e2005-08-09 20:20:18 +00003856 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
3857 DAG.getConstant(0, Hi.getValueType()),
3858 ISD::SETLT);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003859 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3860 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3861 SignSet, Four, Zero);
Chris Lattner26f03172005-05-12 18:52:34 +00003862 uint64_t FF = 0x5f800000ULL;
3863 if (TLI.isLittleEndian()) FF <<= 32;
3864 static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003865
Chris Lattnerc30405e2005-08-26 17:15:30 +00003866 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003867 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3868 SDOperand FudgeInReg;
3869 if (DestTy == MVT::f32)
Chris Lattner5385db52005-05-09 20:23:03 +00003870 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
3871 DAG.getSrcValue(NULL));
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003872 else {
3873 assert(DestTy == MVT::f64 && "Unexpected conversion");
Chris Lattnerde0a4b12005-07-10 01:55:33 +00003874 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
3875 CPIdx, DAG.getSrcValue(NULL), MVT::f32);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003876 }
Chris Lattner5b2be1f2005-09-29 06:44:39 +00003877 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattneraac464e2005-01-21 06:05:23 +00003878 }
Chris Lattner06bbeb62005-05-11 19:02:11 +00003879
Chris Lattnerd3cc9962005-05-14 05:33:54 +00003880 // Check to see if the target has a custom way to lower this. If so, use it.
3881 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
3882 default: assert(0 && "This action not implemented for this operation!");
3883 case TargetLowering::Legal:
3884 case TargetLowering::Expand:
3885 break; // This case is handled below.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00003886 case TargetLowering::Custom: {
3887 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
3888 Source), DAG);
3889 if (NV.Val)
3890 return LegalizeOp(NV);
3891 break; // The target decided this was legal after all
3892 }
Chris Lattnerd3cc9962005-05-14 05:33:54 +00003893 }
3894
Chris Lattner153587e2005-05-12 07:00:44 +00003895 // Expand the source, then glue it back together for the call. We must expand
3896 // the source in case it is shared (this pass of legalize must traverse it).
3897 SDOperand SrcLo, SrcHi;
3898 ExpandOp(Source, SrcLo, SrcHi);
3899 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
3900
Chris Lattner06bbeb62005-05-11 19:02:11 +00003901 const char *FnName = 0;
3902 if (DestTy == MVT::f32)
3903 FnName = "__floatdisf";
3904 else {
3905 assert(DestTy == MVT::f64 && "Unknown fp value type!");
3906 FnName = "__floatdidf";
3907 }
Chris Lattner462505f2006-02-13 09:18:02 +00003908
3909 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
3910 SDOperand UnusedHiPart;
Chris Lattner9ec392b2006-02-17 04:32:33 +00003911 return ExpandLibCall(FnName, Source.Val, UnusedHiPart);
Chris Lattneraac464e2005-01-21 06:05:23 +00003912}
Misha Brukman835702a2005-04-21 22:36:52 +00003913
Chris Lattner689bdcc2006-01-28 08:25:58 +00003914/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
3915/// INT_TO_FP operation of the specified operand when the target requests that
3916/// we expand it. At this point, we know that the result and operand types are
3917/// legal for the target.
3918SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
3919 SDOperand Op0,
3920 MVT::ValueType DestVT) {
3921 if (Op0.getValueType() == MVT::i32) {
3922 // simple 32-bit [signed|unsigned] integer to float/double expansion
3923
3924 // get the stack frame index of a 8 byte buffer
3925 MachineFunction &MF = DAG.getMachineFunction();
3926 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
3927 // get address of 8 byte buffer
3928 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
3929 // word offset constant for Hi/Lo address computation
3930 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
3931 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner9ea1b3f2006-03-23 05:29:04 +00003932 SDOperand Hi = StackSlot;
3933 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
3934 if (TLI.isLittleEndian())
3935 std::swap(Hi, Lo);
3936
Chris Lattner689bdcc2006-01-28 08:25:58 +00003937 // if signed map to unsigned space
3938 SDOperand Op0Mapped;
3939 if (isSigned) {
3940 // constant used to invert sign bit (signed to unsigned mapping)
3941 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
3942 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
3943 } else {
3944 Op0Mapped = Op0;
3945 }
3946 // store the lo of the constructed double - based on integer input
3947 SDOperand Store1 = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3948 Op0Mapped, Lo, DAG.getSrcValue(NULL));
3949 // initial hi portion of constructed double
3950 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
3951 // store the hi of the constructed double - biased exponent
3952 SDOperand Store2 = DAG.getNode(ISD::STORE, MVT::Other, Store1,
3953 InitialHi, Hi, DAG.getSrcValue(NULL));
3954 // load the constructed double
3955 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot,
3956 DAG.getSrcValue(NULL));
3957 // FP constant to bias correct the final result
3958 SDOperand Bias = DAG.getConstantFP(isSigned ?
3959 BitsToDouble(0x4330000080000000ULL)
3960 : BitsToDouble(0x4330000000000000ULL),
3961 MVT::f64);
3962 // subtract the bias
3963 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
3964 // final result
3965 SDOperand Result;
3966 // handle final rounding
3967 if (DestVT == MVT::f64) {
3968 // do nothing
3969 Result = Sub;
3970 } else {
3971 // if f32 then cast to f32
3972 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
3973 }
3974 return Result;
3975 }
3976 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
3977 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
3978
3979 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
3980 DAG.getConstant(0, Op0.getValueType()),
3981 ISD::SETLT);
3982 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3983 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3984 SignSet, Four, Zero);
3985
3986 // If the sign bit of the integer is set, the large number will be treated
3987 // as a negative number. To counteract this, the dynamic code adds an
3988 // offset depending on the data type.
3989 uint64_t FF;
3990 switch (Op0.getValueType()) {
3991 default: assert(0 && "Unsupported integer type!");
3992 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
3993 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
3994 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
3995 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
3996 }
3997 if (TLI.isLittleEndian()) FF <<= 32;
3998 static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
3999
4000 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4001 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4002 SDOperand FudgeInReg;
4003 if (DestVT == MVT::f32)
4004 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
4005 DAG.getSrcValue(NULL));
4006 else {
4007 assert(DestVT == MVT::f64 && "Unexpected conversion");
4008 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
4009 DAG.getEntryNode(), CPIdx,
4010 DAG.getSrcValue(NULL), MVT::f32));
4011 }
4012
4013 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
4014}
4015
4016/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
4017/// *INT_TO_FP operation of the specified operand when the target requests that
4018/// we promote it. At this point, we know that the result and operand types are
4019/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
4020/// operation that takes a larger input.
4021SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
4022 MVT::ValueType DestVT,
4023 bool isSigned) {
4024 // First step, figure out the appropriate *INT_TO_FP operation to use.
4025 MVT::ValueType NewInTy = LegalOp.getValueType();
4026
4027 unsigned OpToUse = 0;
4028
4029 // Scan for the appropriate larger type to use.
4030 while (1) {
4031 NewInTy = (MVT::ValueType)(NewInTy+1);
4032 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
4033
4034 // If the target supports SINT_TO_FP of this type, use it.
4035 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4036 default: break;
4037 case TargetLowering::Legal:
4038 if (!TLI.isTypeLegal(NewInTy))
4039 break; // Can't use this datatype.
4040 // FALL THROUGH.
4041 case TargetLowering::Custom:
4042 OpToUse = ISD::SINT_TO_FP;
4043 break;
4044 }
4045 if (OpToUse) break;
4046 if (isSigned) continue;
4047
4048 // If the target supports UINT_TO_FP of this type, use it.
4049 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4050 default: break;
4051 case TargetLowering::Legal:
4052 if (!TLI.isTypeLegal(NewInTy))
4053 break; // Can't use this datatype.
4054 // FALL THROUGH.
4055 case TargetLowering::Custom:
4056 OpToUse = ISD::UINT_TO_FP;
4057 break;
4058 }
4059 if (OpToUse) break;
4060
4061 // Otherwise, try a larger type.
4062 }
4063
4064 // Okay, we found the operation and type to use. Zero extend our input to the
4065 // desired type then run the operation on it.
4066 return DAG.getNode(OpToUse, DestVT,
4067 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4068 NewInTy, LegalOp));
4069}
4070
4071/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4072/// FP_TO_*INT operation of the specified operand when the target requests that
4073/// we promote it. At this point, we know that the result and operand types are
4074/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4075/// operation that returns a larger result.
4076SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4077 MVT::ValueType DestVT,
4078 bool isSigned) {
4079 // First step, figure out the appropriate FP_TO*INT operation to use.
4080 MVT::ValueType NewOutTy = DestVT;
4081
4082 unsigned OpToUse = 0;
4083
4084 // Scan for the appropriate larger type to use.
4085 while (1) {
4086 NewOutTy = (MVT::ValueType)(NewOutTy+1);
4087 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4088
4089 // If the target supports FP_TO_SINT returning this type, use it.
4090 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4091 default: break;
4092 case TargetLowering::Legal:
4093 if (!TLI.isTypeLegal(NewOutTy))
4094 break; // Can't use this datatype.
4095 // FALL THROUGH.
4096 case TargetLowering::Custom:
4097 OpToUse = ISD::FP_TO_SINT;
4098 break;
4099 }
4100 if (OpToUse) break;
4101
4102 // If the target supports FP_TO_UINT of this type, use it.
4103 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4104 default: break;
4105 case TargetLowering::Legal:
4106 if (!TLI.isTypeLegal(NewOutTy))
4107 break; // Can't use this datatype.
4108 // FALL THROUGH.
4109 case TargetLowering::Custom:
4110 OpToUse = ISD::FP_TO_UINT;
4111 break;
4112 }
4113 if (OpToUse) break;
4114
4115 // Otherwise, try a larger type.
4116 }
4117
4118 // Okay, we found the operation and type to use. Truncate the result of the
4119 // extended FP_TO_*INT operation to the desired size.
4120 return DAG.getNode(ISD::TRUNCATE, DestVT,
4121 DAG.getNode(OpToUse, NewOutTy, LegalOp));
4122}
4123
4124/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4125///
4126SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4127 MVT::ValueType VT = Op.getValueType();
4128 MVT::ValueType SHVT = TLI.getShiftAmountTy();
4129 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4130 switch (VT) {
4131 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4132 case MVT::i16:
4133 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4134 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4135 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4136 case MVT::i32:
4137 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4138 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4139 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4140 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4141 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4142 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4143 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4144 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4145 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4146 case MVT::i64:
4147 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4148 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4149 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4150 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4151 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4152 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4153 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4154 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4155 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4156 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4157 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4158 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4159 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4160 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4161 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4162 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4163 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4164 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4165 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4166 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4167 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4168 }
4169}
4170
4171/// ExpandBitCount - Expand the specified bitcount instruction into operations.
4172///
4173SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4174 switch (Opc) {
4175 default: assert(0 && "Cannot expand this yet!");
4176 case ISD::CTPOP: {
4177 static const uint64_t mask[6] = {
4178 0x5555555555555555ULL, 0x3333333333333333ULL,
4179 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4180 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4181 };
4182 MVT::ValueType VT = Op.getValueType();
4183 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4184 unsigned len = getSizeInBits(VT);
4185 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4186 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4187 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4188 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4189 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4190 DAG.getNode(ISD::AND, VT,
4191 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4192 }
4193 return Op;
4194 }
4195 case ISD::CTLZ: {
4196 // for now, we do this:
4197 // x = x | (x >> 1);
4198 // x = x | (x >> 2);
4199 // ...
4200 // x = x | (x >>16);
4201 // x = x | (x >>32); // for 64-bit input
4202 // return popcount(~x);
4203 //
4204 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4205 MVT::ValueType VT = Op.getValueType();
4206 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4207 unsigned len = getSizeInBits(VT);
4208 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4209 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4210 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4211 }
4212 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4213 return DAG.getNode(ISD::CTPOP, VT, Op);
4214 }
4215 case ISD::CTTZ: {
4216 // for now, we use: { return popcount(~x & (x - 1)); }
4217 // unless the target has ctlz but not ctpop, in which case we use:
4218 // { return 32 - nlz(~x & (x-1)); }
4219 // see also http://www.hackersdelight.org/HDcode/ntz.cc
4220 MVT::ValueType VT = Op.getValueType();
4221 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4222 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4223 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4224 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4225 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4226 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4227 TLI.isOperationLegal(ISD::CTLZ, VT))
4228 return DAG.getNode(ISD::SUB, VT,
4229 DAG.getConstant(getSizeInBits(VT), VT),
4230 DAG.getNode(ISD::CTLZ, VT, Tmp3));
4231 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4232 }
4233 }
4234}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004235
Chris Lattnerdc750592005-01-07 07:47:09 +00004236/// ExpandOp - Expand the specified SDOperand into its two component pieces
4237/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
4238/// LegalizeNodes map is filled in for any results that are not expanded, the
4239/// ExpandedNodes map is filled in for any results that are expanded, and the
4240/// Lo/Hi values are returned.
4241void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4242 MVT::ValueType VT = Op.getValueType();
Chris Lattner87a769c2005-01-16 01:11:45 +00004243 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattnerdc750592005-01-07 07:47:09 +00004244 SDNode *Node = Op.Val;
4245 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Nate Begemand37c1312005-11-22 18:16:00 +00004246 assert((MVT::isInteger(VT) || VT == MVT::Vector) &&
4247 "Cannot expand FP values!");
4248 assert(((MVT::isInteger(NVT) && NVT < VT) || VT == MVT::Vector) &&
Chris Lattnerdc750592005-01-07 07:47:09 +00004249 "Cannot expand to FP value or to larger int value!");
4250
Chris Lattner1a570f12005-09-02 20:32:45 +00004251 // See if we already expanded it.
4252 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4253 = ExpandedNodes.find(Op);
4254 if (I != ExpandedNodes.end()) {
4255 Lo = I->second.first;
4256 Hi = I->second.second;
4257 return;
Chris Lattnerdc750592005-01-07 07:47:09 +00004258 }
4259
Chris Lattnerdc750592005-01-07 07:47:09 +00004260 switch (Node->getOpcode()) {
Chris Lattner44cab002006-01-21 04:27:00 +00004261 case ISD::CopyFromReg:
4262 assert(0 && "CopyFromReg must be legal!");
4263 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004264#ifndef NDEBUG
Chris Lattnerdc750592005-01-07 07:47:09 +00004265 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004266#endif
Chris Lattnerdc750592005-01-07 07:47:09 +00004267 assert(0 && "Do not know how to expand this operator!");
4268 abort();
Nate Begemancda9aa72005-04-01 22:34:39 +00004269 case ISD::UNDEF:
4270 Lo = DAG.getNode(ISD::UNDEF, NVT);
4271 Hi = DAG.getNode(ISD::UNDEF, NVT);
4272 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00004273 case ISD::Constant: {
4274 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4275 Lo = DAG.getConstant(Cst, NVT);
4276 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
4277 break;
4278 }
Chris Lattner32e08b72005-03-28 22:03:13 +00004279 case ISD::BUILD_PAIR:
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004280 // Return the operands.
4281 Lo = Node->getOperand(0);
4282 Hi = Node->getOperand(1);
Chris Lattner32e08b72005-03-28 22:03:13 +00004283 break;
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00004284
4285 case ISD::SIGN_EXTEND_INREG:
4286 ExpandOp(Node->getOperand(0), Lo, Hi);
4287 // Sign extend the lo-part.
4288 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4289 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
4290 TLI.getShiftAmountTy()));
4291 // sext_inreg the low part if needed.
4292 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
4293 break;
Chris Lattner32e08b72005-03-28 22:03:13 +00004294
Nate Begeman2fba8a32006-01-14 03:14:10 +00004295 case ISD::BSWAP: {
4296 ExpandOp(Node->getOperand(0), Lo, Hi);
4297 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
4298 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
4299 Lo = TempLo;
4300 break;
4301 }
4302
Chris Lattner55e9cde2005-05-11 04:51:16 +00004303 case ISD::CTPOP:
4304 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner3740f392005-05-11 05:09:47 +00004305 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
4306 DAG.getNode(ISD::CTPOP, NVT, Lo),
4307 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattner55e9cde2005-05-11 04:51:16 +00004308 Hi = DAG.getConstant(0, NVT);
4309 break;
4310
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004311 case ISD::CTLZ: {
4312 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner0bfd1772005-05-12 19:27:51 +00004313 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004314 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4315 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattnerd47675e2005-08-09 20:20:18 +00004316 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
4317 ISD::SETNE);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004318 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
4319 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
4320
4321 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
4322 Hi = DAG.getConstant(0, NVT);
4323 break;
4324 }
4325
4326 case ISD::CTTZ: {
4327 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner0bfd1772005-05-12 19:27:51 +00004328 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004329 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4330 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattnerd47675e2005-08-09 20:20:18 +00004331 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
4332 ISD::SETNE);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004333 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
4334 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
4335
4336 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
4337 Hi = DAG.getConstant(0, NVT);
4338 break;
4339 }
Chris Lattner55e9cde2005-05-11 04:51:16 +00004340
Nate Begemane74795c2006-01-25 18:21:52 +00004341 case ISD::VAARG: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004342 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4343 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemane74795c2006-01-25 18:21:52 +00004344 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
4345 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
4346
4347 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004348 Hi = LegalizeOp(Hi);
Nate Begemane74795c2006-01-25 18:21:52 +00004349 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
4350 if (!TLI.isLittleEndian())
4351 std::swap(Lo, Hi);
4352 break;
4353 }
4354
Chris Lattnerdc750592005-01-07 07:47:09 +00004355 case ISD::LOAD: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004356 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4357 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00004358 Lo = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
Chris Lattnerdc750592005-01-07 07:47:09 +00004359
4360 // Increment the pointer to the other half.
Chris Lattner9242c502005-01-09 19:43:23 +00004361 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
Chris Lattnerdc750592005-01-07 07:47:09 +00004362 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4363 getIntPtrConstant(IncrementSize));
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004364 // FIXME: This creates a bogus srcvalue!
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00004365 Hi = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
Chris Lattner0d03eb42005-01-19 18:02:17 +00004366
4367 // Build a factor node to remember that this load is independent of the
4368 // other one.
4369 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4370 Hi.getValue(1));
Misha Brukman835702a2005-04-21 22:36:52 +00004371
Chris Lattnerdc750592005-01-07 07:47:09 +00004372 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004373 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerdc750592005-01-07 07:47:09 +00004374 if (!TLI.isLittleEndian())
4375 std::swap(Lo, Hi);
4376 break;
4377 }
Chris Lattnerdc750592005-01-07 07:47:09 +00004378 case ISD::AND:
4379 case ISD::OR:
4380 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
4381 SDOperand LL, LH, RL, RH;
4382 ExpandOp(Node->getOperand(0), LL, LH);
4383 ExpandOp(Node->getOperand(1), RL, RH);
4384 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
4385 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
4386 break;
4387 }
4388 case ISD::SELECT: {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004389 SDOperand LL, LH, RL, RH;
Chris Lattnerdc750592005-01-07 07:47:09 +00004390 ExpandOp(Node->getOperand(1), LL, LH);
4391 ExpandOp(Node->getOperand(2), RL, RH);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004392 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
4393 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattnerdc750592005-01-07 07:47:09 +00004394 break;
4395 }
Nate Begemane5b86d72005-08-10 20:51:12 +00004396 case ISD::SELECT_CC: {
4397 SDOperand TL, TH, FL, FH;
4398 ExpandOp(Node->getOperand(2), TL, TH);
4399 ExpandOp(Node->getOperand(3), FL, FH);
4400 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4401 Node->getOperand(1), TL, FL, Node->getOperand(4));
4402 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4403 Node->getOperand(1), TH, FH, Node->getOperand(4));
4404 break;
4405 }
Nate Begemanc3a89c52005-10-13 17:15:37 +00004406 case ISD::SEXTLOAD: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004407 SDOperand Chain = Node->getOperand(0);
4408 SDOperand Ptr = Node->getOperand(1);
Nate Begemanc3a89c52005-10-13 17:15:37 +00004409 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
4410
4411 if (EVT == NVT)
4412 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
4413 else
4414 Lo = DAG.getExtLoad(ISD::SEXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
4415 EVT);
Chris Lattner258521d2005-10-13 21:44:47 +00004416
4417 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004418 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner258521d2005-10-13 21:44:47 +00004419
Nate Begemanc3a89c52005-10-13 17:15:37 +00004420 // The high part is obtained by SRA'ing all but one of the bits of the lo
4421 // part.
4422 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
4423 Hi = DAG.getNode(ISD::SRA, NVT, Lo, DAG.getConstant(LoSize-1,
4424 TLI.getShiftAmountTy()));
Nate Begemanc3a89c52005-10-13 17:15:37 +00004425 break;
4426 }
4427 case ISD::ZEXTLOAD: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004428 SDOperand Chain = Node->getOperand(0);
4429 SDOperand Ptr = Node->getOperand(1);
Nate Begemanc3a89c52005-10-13 17:15:37 +00004430 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
4431
4432 if (EVT == NVT)
4433 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
4434 else
4435 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
4436 EVT);
Chris Lattner258521d2005-10-13 21:44:47 +00004437
4438 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004439 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner258521d2005-10-13 21:44:47 +00004440
Nate Begemanc3a89c52005-10-13 17:15:37 +00004441 // The high part is just a zero.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004442 Hi = DAG.getConstant(0, NVT);
Chris Lattner258521d2005-10-13 21:44:47 +00004443 break;
4444 }
4445 case ISD::EXTLOAD: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004446 SDOperand Chain = Node->getOperand(0);
4447 SDOperand Ptr = Node->getOperand(1);
Chris Lattner258521d2005-10-13 21:44:47 +00004448 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
4449
4450 if (EVT == NVT)
4451 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
4452 else
4453 Lo = DAG.getExtLoad(ISD::EXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
4454 EVT);
4455
4456 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004457 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner258521d2005-10-13 21:44:47 +00004458
4459 // The high part is undefined.
Chris Lattner7753f172005-09-02 00:18:10 +00004460 Hi = DAG.getNode(ISD::UNDEF, NVT);
4461 break;
4462 }
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004463 case ISD::ANY_EXTEND:
4464 // The low part is any extension of the input (which degenerates to a copy).
4465 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
4466 // The high part is undefined.
4467 Hi = DAG.getNode(ISD::UNDEF, NVT);
4468 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00004469 case ISD::SIGN_EXTEND: {
4470 // The low part is just a sign extension of the input (which degenerates to
4471 // a copy).
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004472 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00004473
Chris Lattnerdc750592005-01-07 07:47:09 +00004474 // The high part is obtained by SRA'ing all but one of the bits of the lo
4475 // part.
Chris Lattner9864b082005-01-12 18:19:52 +00004476 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004477 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4478 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattnerdc750592005-01-07 07:47:09 +00004479 break;
4480 }
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004481 case ISD::ZERO_EXTEND:
Chris Lattnerdc750592005-01-07 07:47:09 +00004482 // The low part is just a zero extension of the input (which degenerates to
4483 // a copy).
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004484 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00004485
Chris Lattnerdc750592005-01-07 07:47:09 +00004486 // The high part is just a zero.
4487 Hi = DAG.getConstant(0, NVT);
4488 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00004489
4490 case ISD::BIT_CONVERT: {
Chris Lattnere4bbb6c2006-09-09 00:20:27 +00004491 SDOperand Tmp;
4492 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
4493 // If the target wants to, allow it to lower this itself.
4494 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4495 case Expand: assert(0 && "cannot expand FP!");
4496 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
4497 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
4498 }
4499 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
4500 }
4501
4502 // Turn this into a load/store pair by default.
4503 if (Tmp.Val == 0)
4504 Tmp = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
4505
Chris Lattner36e663d2005-12-23 00:16:34 +00004506 ExpandOp(Tmp, Lo, Hi);
4507 break;
4508 }
Andrew Lenharth627cbd42005-11-20 21:32:07 +00004509
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004510 case ISD::READCYCLECOUNTER:
Chris Lattner44c28c22005-11-20 22:56:56 +00004511 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
4512 TargetLowering::Custom &&
4513 "Must custom expand ReadCycleCounter");
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004514 Lo = TLI.LowerOperation(Op, DAG);
4515 assert(Lo.Val && "Node must be custom expanded!");
4516 Hi = Lo.getValue(1);
Chris Lattner44c28c22005-11-20 22:56:56 +00004517 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004518 LegalizeOp(Lo.getValue(2)));
Andrew Lenharth627cbd42005-11-20 21:32:07 +00004519 break;
4520
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004521 // These operators cannot be expanded directly, emit them as calls to
4522 // library functions.
4523 case ISD::FP_TO_SINT:
Chris Lattnerfe68d752005-07-29 00:33:32 +00004524 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattner941d84a2005-07-30 01:40:57 +00004525 SDOperand Op;
4526 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4527 case Expand: assert(0 && "cannot expand FP!");
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004528 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4529 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattner941d84a2005-07-30 01:40:57 +00004530 }
Jeff Cohen546fd592005-07-30 18:33:25 +00004531
Chris Lattner941d84a2005-07-30 01:40:57 +00004532 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
4533
Chris Lattnerfe68d752005-07-29 00:33:32 +00004534 // Now that the custom expander is done, expand the result, which is still
4535 // VT.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00004536 if (Op.Val) {
4537 ExpandOp(Op, Lo, Hi);
4538 break;
4539 }
Chris Lattnerfe68d752005-07-29 00:33:32 +00004540 }
Jeff Cohen546fd592005-07-30 18:33:25 +00004541
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004542 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattneraac464e2005-01-21 06:05:23 +00004543 Lo = ExpandLibCall("__fixsfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004544 else
Chris Lattneraac464e2005-01-21 06:05:23 +00004545 Lo = ExpandLibCall("__fixdfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004546 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00004547
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004548 case ISD::FP_TO_UINT:
Chris Lattnerfe68d752005-07-29 00:33:32 +00004549 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004550 SDOperand Op;
4551 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4552 case Expand: assert(0 && "cannot expand FP!");
4553 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4554 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
4555 }
4556
4557 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
4558
4559 // Now that the custom expander is done, expand the result.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00004560 if (Op.Val) {
4561 ExpandOp(Op, Lo, Hi);
4562 break;
4563 }
Chris Lattnerfe68d752005-07-29 00:33:32 +00004564 }
Jeff Cohen546fd592005-07-30 18:33:25 +00004565
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004566 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattneraac464e2005-01-21 06:05:23 +00004567 Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004568 else
Chris Lattneraac464e2005-01-21 06:05:23 +00004569 Lo = ExpandLibCall("__fixunsdfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004570 break;
4571
Evan Cheng870e4f82006-01-09 18:31:59 +00004572 case ISD::SHL: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004573 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00004574 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004575 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004576 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004577 Op = TLI.LowerOperation(Op, DAG);
4578 if (Op.Val) {
4579 // Now that the custom expander is done, expand the result, which is
4580 // still VT.
4581 ExpandOp(Op, Lo, Hi);
4582 break;
4583 }
4584 }
4585
Chris Lattner72b503b2006-09-13 03:50:39 +00004586 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
4587 // this X << 1 as X+X.
4588 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
4589 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
4590 TLI.isOperationLegal(ISD::ADDE, NVT)) {
4591 SDOperand LoOps[2], HiOps[3];
4592 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
4593 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
4594 LoOps[1] = LoOps[0];
4595 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
4596
4597 HiOps[1] = HiOps[0];
4598 HiOps[2] = Lo.getValue(1);
4599 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
4600 break;
4601 }
4602 }
4603
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004604 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00004605 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004606 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00004607
4608 // If this target supports SHL_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00004609 TargetLowering::LegalizeAction Action =
4610 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
4611 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4612 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00004613 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00004614 break;
4615 }
4616
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004617 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00004618 Lo = ExpandLibCall("__ashldi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004619 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00004620 }
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004621
Evan Cheng870e4f82006-01-09 18:31:59 +00004622 case ISD::SRA: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004623 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00004624 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004625 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004626 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004627 Op = TLI.LowerOperation(Op, DAG);
4628 if (Op.Val) {
4629 // Now that the custom expander is done, expand the result, which is
4630 // still VT.
4631 ExpandOp(Op, Lo, Hi);
4632 break;
4633 }
4634 }
4635
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004636 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00004637 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004638 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00004639
4640 // If this target supports SRA_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00004641 TargetLowering::LegalizeAction Action =
4642 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
4643 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4644 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00004645 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00004646 break;
4647 }
4648
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004649 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00004650 Lo = ExpandLibCall("__ashrdi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004651 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00004652 }
4653
4654 case ISD::SRL: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004655 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00004656 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004657 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004658 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004659 Op = TLI.LowerOperation(Op, DAG);
4660 if (Op.Val) {
4661 // Now that the custom expander is done, expand the result, which is
4662 // still VT.
4663 ExpandOp(Op, Lo, Hi);
4664 break;
4665 }
4666 }
4667
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004668 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00004669 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004670 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00004671
4672 // If this target supports SRL_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00004673 TargetLowering::LegalizeAction Action =
4674 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
4675 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4676 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00004677 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00004678 break;
4679 }
4680
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004681 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00004682 Lo = ExpandLibCall("__lshrdi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004683 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00004684 }
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004685
Misha Brukman835702a2005-04-21 22:36:52 +00004686 case ISD::ADD:
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004687 case ISD::SUB: {
4688 // If the target wants to custom expand this, let them.
4689 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
4690 TargetLowering::Custom) {
4691 Op = TLI.LowerOperation(Op, DAG);
4692 if (Op.Val) {
4693 ExpandOp(Op, Lo, Hi);
4694 break;
4695 }
4696 }
4697
4698 // Expand the subcomponents.
4699 SDOperand LHSL, LHSH, RHSL, RHSH;
4700 ExpandOp(Node->getOperand(0), LHSL, LHSH);
4701 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner72b503b2006-09-13 03:50:39 +00004702 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
4703 SDOperand LoOps[2], HiOps[3];
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004704 LoOps[0] = LHSL;
4705 LoOps[1] = RHSL;
4706 HiOps[0] = LHSH;
4707 HiOps[1] = RHSH;
Nate Begeman5965bd12006-02-17 05:43:56 +00004708 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner72b503b2006-09-13 03:50:39 +00004709 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004710 HiOps[2] = Lo.getValue(1);
Chris Lattner72b503b2006-09-13 03:50:39 +00004711 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman5965bd12006-02-17 05:43:56 +00004712 } else {
Chris Lattner72b503b2006-09-13 03:50:39 +00004713 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004714 HiOps[2] = Lo.getValue(1);
Chris Lattner72b503b2006-09-13 03:50:39 +00004715 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman5965bd12006-02-17 05:43:56 +00004716 }
Chris Lattnerb3f83b282005-01-20 18:52:28 +00004717 break;
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004718 }
Nate Begemanadd0c632005-04-11 03:01:51 +00004719 case ISD::MUL: {
Chris Lattnerfbadbda2006-09-16 00:09:24 +00004720 // If the target wants to custom expand this, let them.
4721 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattnere50f5d12006-09-16 05:08:34 +00004722 SDOperand New = TLI.LowerOperation(Op, DAG);
4723 if (New.Val) {
4724 ExpandOp(New, Lo, Hi);
Chris Lattnerfbadbda2006-09-16 00:09:24 +00004725 break;
4726 }
4727 }
4728
Evan Chenge93762d2006-09-01 18:17:58 +00004729 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
4730 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
4731 bool UseLibCall = true;
4732 if (HasMULHS || HasMULHU) {
Nate Begemanadd0c632005-04-11 03:01:51 +00004733 SDOperand LL, LH, RL, RH;
4734 ExpandOp(Node->getOperand(0), LL, LH);
4735 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman43144a22005-08-30 02:44:00 +00004736 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
4737 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
4738 // extended the sign bit of the low half through the upper half, and if so
4739 // emit a MULHS instead of the alternate sequence that is valid for any
4740 // i64 x i64 multiply.
Evan Chenge93762d2006-09-01 18:17:58 +00004741 if (HasMULHS &&
Nate Begeman43144a22005-08-30 02:44:00 +00004742 // is RH an extension of the sign bit of RL?
4743 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
4744 RH.getOperand(1).getOpcode() == ISD::Constant &&
4745 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
4746 // is LH an extension of the sign bit of LL?
4747 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
4748 LH.getOperand(1).getOpcode() == ISD::Constant &&
4749 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
Chris Lattner1b633912006-09-16 00:21:44 +00004750 // FIXME: Move this to the dag combiner.
4751
4752 // Low part:
4753 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4754 // High part:
Nate Begeman43144a22005-08-30 02:44:00 +00004755 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
Chris Lattner1b633912006-09-16 00:21:44 +00004756 break;
Evan Chenge93762d2006-09-01 18:17:58 +00004757 } else if (HasMULHU) {
Chris Lattner1b633912006-09-16 00:21:44 +00004758 // Low part:
4759 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4760
4761 // High part:
Nate Begeman43144a22005-08-30 02:44:00 +00004762 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
4763 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
4764 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
4765 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
4766 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattner1b633912006-09-16 00:21:44 +00004767 break;
Nate Begeman43144a22005-08-30 02:44:00 +00004768 }
Nate Begemanadd0c632005-04-11 03:01:51 +00004769 }
Evan Chenge93762d2006-09-01 18:17:58 +00004770
Chris Lattner1b633912006-09-16 00:21:44 +00004771 Lo = ExpandLibCall("__muldi3" , Node, Hi);
Nate Begemanadd0c632005-04-11 03:01:51 +00004772 break;
4773 }
Chris Lattneraac464e2005-01-21 06:05:23 +00004774 case ISD::SDIV: Lo = ExpandLibCall("__divdi3" , Node, Hi); break;
4775 case ISD::UDIV: Lo = ExpandLibCall("__udivdi3", Node, Hi); break;
4776 case ISD::SREM: Lo = ExpandLibCall("__moddi3" , Node, Hi); break;
4777 case ISD::UREM: Lo = ExpandLibCall("__umoddi3", Node, Hi); break;
Chris Lattnerdc750592005-01-07 07:47:09 +00004778 }
4779
Chris Lattnerac12f682005-12-21 18:02:52 +00004780 // Make sure the resultant values have been legalized themselves, unless this
4781 // is a type that requires multi-step expansion.
4782 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
4783 Lo = LegalizeOp(Lo);
4784 Hi = LegalizeOp(Hi);
4785 }
Evan Cheng870e4f82006-01-09 18:31:59 +00004786
4787 // Remember in a map if the values will be reused later.
4788 bool isNew =
4789 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4790 assert(isNew && "Value already expanded?!?");
Chris Lattnerdc750592005-01-07 07:47:09 +00004791}
4792
Chris Lattner32206f52006-03-18 01:44:44 +00004793/// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
4794/// two smaller values of MVT::Vector type.
4795void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
4796 SDOperand &Hi) {
4797 assert(Op.getValueType() == MVT::Vector && "Cannot split non-vector type!");
4798 SDNode *Node = Op.Val;
4799 unsigned NumElements = cast<ConstantSDNode>(*(Node->op_end()-2))->getValue();
4800 assert(NumElements > 1 && "Cannot split a single element vector!");
4801 unsigned NewNumElts = NumElements/2;
4802 SDOperand NewNumEltsNode = DAG.getConstant(NewNumElts, MVT::i32);
4803 SDOperand TypeNode = *(Node->op_end()-1);
4804
4805 // See if we already split it.
4806 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4807 = SplitNodes.find(Op);
4808 if (I != SplitNodes.end()) {
4809 Lo = I->second.first;
4810 Hi = I->second.second;
4811 return;
4812 }
4813
4814 switch (Node->getOpcode()) {
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004815 default:
4816#ifndef NDEBUG
4817 Node->dump();
4818#endif
4819 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerf4e1a532006-03-19 00:52:58 +00004820 case ISD::VBUILD_VECTOR: {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004821 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
4822 Node->op_begin()+NewNumElts);
Chris Lattner32206f52006-03-18 01:44:44 +00004823 LoOps.push_back(NewNumEltsNode);
4824 LoOps.push_back(TypeNode);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004825 Lo = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &LoOps[0], LoOps.size());
Chris Lattner32206f52006-03-18 01:44:44 +00004826
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004827 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts,
4828 Node->op_end()-2);
Chris Lattner32206f52006-03-18 01:44:44 +00004829 HiOps.push_back(NewNumEltsNode);
4830 HiOps.push_back(TypeNode);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004831 Hi = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &HiOps[0], HiOps.size());
Chris Lattner32206f52006-03-18 01:44:44 +00004832 break;
4833 }
4834 case ISD::VADD:
4835 case ISD::VSUB:
4836 case ISD::VMUL:
4837 case ISD::VSDIV:
4838 case ISD::VUDIV:
4839 case ISD::VAND:
4840 case ISD::VOR:
4841 case ISD::VXOR: {
4842 SDOperand LL, LH, RL, RH;
4843 SplitVectorOp(Node->getOperand(0), LL, LH);
4844 SplitVectorOp(Node->getOperand(1), RL, RH);
4845
4846 Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, LL, RL,
4847 NewNumEltsNode, TypeNode);
4848 Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, LH, RH,
4849 NewNumEltsNode, TypeNode);
4850 break;
4851 }
4852 case ISD::VLOAD: {
4853 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4854 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
4855 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4856
4857 Lo = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4858 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(EVT)/8;
4859 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4860 getIntPtrConstant(IncrementSize));
4861 // FIXME: This creates a bogus srcvalue!
4862 Hi = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4863
4864 // Build a factor node to remember that this load is independent of the
4865 // other one.
4866 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4867 Hi.getValue(1));
4868
4869 // Remember that we legalized the chain.
4870 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattner32206f52006-03-18 01:44:44 +00004871 break;
4872 }
Chris Lattnerd7c4e7d2006-03-23 21:16:34 +00004873 case ISD::VBIT_CONVERT: {
4874 // We know the result is a vector. The input may be either a vector or a
4875 // scalar value.
4876 if (Op.getOperand(0).getValueType() != MVT::Vector) {
4877 // Lower to a store/load. FIXME: this could be improved probably.
4878 SDOperand Ptr = CreateStackTemporary(Op.getOperand(0).getValueType());
4879
4880 SDOperand St = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
4881 Op.getOperand(0), Ptr, DAG.getSrcValue(0));
4882 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4883 St = DAG.getVecLoad(NumElements, EVT, St, Ptr, DAG.getSrcValue(0));
4884 SplitVectorOp(St, Lo, Hi);
4885 } else {
4886 // If the input is a vector type, we have to either scalarize it, pack it
4887 // or convert it based on whether the input vector type is legal.
4888 SDNode *InVal = Node->getOperand(0).Val;
4889 unsigned NumElems =
4890 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
4891 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
4892
4893 // If the input is from a single element vector, scalarize the vector,
4894 // then treat like a scalar.
4895 if (NumElems == 1) {
4896 SDOperand Scalar = PackVectorOp(Op.getOperand(0), EVT);
4897 Scalar = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Scalar,
4898 Op.getOperand(1), Op.getOperand(2));
4899 SplitVectorOp(Scalar, Lo, Hi);
4900 } else {
4901 // Split the input vector.
4902 SplitVectorOp(Op.getOperand(0), Lo, Hi);
4903
4904 // Convert each of the pieces now.
4905 Lo = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Lo,
4906 NewNumEltsNode, TypeNode);
4907 Hi = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Hi,
4908 NewNumEltsNode, TypeNode);
4909 }
4910 break;
4911 }
4912 }
Chris Lattner32206f52006-03-18 01:44:44 +00004913 }
4914
4915 // Remember in a map if the values will be reused later.
4916 bool isNew =
4917 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4918 assert(isNew && "Value already expanded?!?");
4919}
4920
4921
4922/// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
4923/// equivalent operation that returns a scalar (e.g. F32) or packed value
4924/// (e.g. MVT::V4F32). When this is called, we know that PackedVT is the right
4925/// type for the result.
4926SDOperand SelectionDAGLegalize::PackVectorOp(SDOperand Op,
4927 MVT::ValueType NewVT) {
4928 assert(Op.getValueType() == MVT::Vector && "Bad PackVectorOp invocation!");
4929 SDNode *Node = Op.Val;
4930
4931 // See if we already packed it.
4932 std::map<SDOperand, SDOperand>::iterator I = PackedNodes.find(Op);
4933 if (I != PackedNodes.end()) return I->second;
4934
4935 SDOperand Result;
4936 switch (Node->getOpcode()) {
Chris Lattner29b23012006-03-19 01:17:20 +00004937 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004938#ifndef NDEBUG
Chris Lattner29b23012006-03-19 01:17:20 +00004939 Node->dump(); std::cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004940#endif
Chris Lattner29b23012006-03-19 01:17:20 +00004941 assert(0 && "Unknown vector operation in PackVectorOp!");
Chris Lattner32206f52006-03-18 01:44:44 +00004942 case ISD::VADD:
4943 case ISD::VSUB:
4944 case ISD::VMUL:
4945 case ISD::VSDIV:
4946 case ISD::VUDIV:
4947 case ISD::VAND:
4948 case ISD::VOR:
4949 case ISD::VXOR:
4950 Result = DAG.getNode(getScalarizedOpcode(Node->getOpcode(), NewVT),
4951 NewVT,
4952 PackVectorOp(Node->getOperand(0), NewVT),
4953 PackVectorOp(Node->getOperand(1), NewVT));
4954 break;
4955 case ISD::VLOAD: {
Chris Lattner93640542006-03-19 00:07:49 +00004956 SDOperand Ch = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
4957 SDOperand Ptr = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattner32206f52006-03-18 01:44:44 +00004958
Chris Lattner93640542006-03-19 00:07:49 +00004959 Result = DAG.getLoad(NewVT, Ch, Ptr, Node->getOperand(2));
Chris Lattner32206f52006-03-18 01:44:44 +00004960
4961 // Remember that we legalized the chain.
4962 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4963 break;
4964 }
Chris Lattnerf4e1a532006-03-19 00:52:58 +00004965 case ISD::VBUILD_VECTOR:
Chris Lattner5fe1f542006-03-31 02:06:56 +00004966 if (Node->getOperand(0).getValueType() == NewVT) {
Chris Lattnerf4e1a532006-03-19 00:52:58 +00004967 // Returning a scalar?
Chris Lattner32206f52006-03-18 01:44:44 +00004968 Result = Node->getOperand(0);
4969 } else {
Chris Lattnerf4e1a532006-03-19 00:52:58 +00004970 // Returning a BUILD_VECTOR?
Chris Lattnere1401e32006-04-08 05:34:25 +00004971
4972 // If all elements of the build_vector are undefs, return an undef.
4973 bool AllUndef = true;
4974 for (unsigned i = 0, e = Node->getNumOperands()-2; i != e; ++i)
4975 if (Node->getOperand(i).getOpcode() != ISD::UNDEF) {
4976 AllUndef = false;
4977 break;
4978 }
4979 if (AllUndef) {
4980 Result = DAG.getNode(ISD::UNDEF, NewVT);
4981 } else {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004982 Result = DAG.getNode(ISD::BUILD_VECTOR, NewVT, Node->op_begin(),
4983 Node->getNumOperands()-2);
Chris Lattnere1401e32006-04-08 05:34:25 +00004984 }
Chris Lattner32206f52006-03-18 01:44:44 +00004985 }
4986 break;
Chris Lattner29b23012006-03-19 01:17:20 +00004987 case ISD::VINSERT_VECTOR_ELT:
4988 if (!MVT::isVector(NewVT)) {
4989 // Returning a scalar? Must be the inserted element.
4990 Result = Node->getOperand(1);
4991 } else {
4992 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT,
4993 PackVectorOp(Node->getOperand(0), NewVT),
4994 Node->getOperand(1), Node->getOperand(2));
4995 }
4996 break;
Chris Lattnerf6f94d32006-03-28 20:24:43 +00004997 case ISD::VVECTOR_SHUFFLE:
4998 if (!MVT::isVector(NewVT)) {
4999 // Returning a scalar? Figure out if it is the LHS or RHS and return it.
5000 SDOperand EltNum = Node->getOperand(2).getOperand(0);
5001 if (cast<ConstantSDNode>(EltNum)->getValue())
5002 Result = PackVectorOp(Node->getOperand(1), NewVT);
5003 else
5004 Result = PackVectorOp(Node->getOperand(0), NewVT);
5005 } else {
5006 // Otherwise, return a VECTOR_SHUFFLE node. First convert the index
5007 // vector from a VBUILD_VECTOR to a BUILD_VECTOR.
5008 std::vector<SDOperand> BuildVecIdx(Node->getOperand(2).Val->op_begin(),
5009 Node->getOperand(2).Val->op_end()-2);
5010 MVT::ValueType BVT = MVT::getIntVectorWithNumElements(BuildVecIdx.size());
Chris Lattnerc24a1d32006-08-08 02:23:42 +00005011 SDOperand BV = DAG.getNode(ISD::BUILD_VECTOR, BVT,
5012 Node->getOperand(2).Val->op_begin(),
5013 Node->getOperand(2).Val->getNumOperands()-2);
Chris Lattnerf6f94d32006-03-28 20:24:43 +00005014
5015 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT,
5016 PackVectorOp(Node->getOperand(0), NewVT),
5017 PackVectorOp(Node->getOperand(1), NewVT), BV);
5018 }
5019 break;
Chris Lattner2f4119a2006-03-22 20:09:35 +00005020 case ISD::VBIT_CONVERT:
5021 if (Op.getOperand(0).getValueType() != MVT::Vector)
5022 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
5023 else {
5024 // If the input is a vector type, we have to either scalarize it, pack it
5025 // or convert it based on whether the input vector type is legal.
5026 SDNode *InVal = Node->getOperand(0).Val;
5027 unsigned NumElems =
5028 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5029 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5030
5031 // Figure out if there is a Packed type corresponding to this Vector
5032 // type. If so, convert to the packed type.
5033 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
5034 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
5035 // Turn this into a bit convert of the packed input.
5036 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5037 PackVectorOp(Node->getOperand(0), TVT));
5038 break;
5039 } else if (NumElems == 1) {
5040 // Turn this into a bit convert of the scalar input.
5041 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5042 PackVectorOp(Node->getOperand(0), EVT));
5043 break;
5044 } else {
5045 // FIXME: UNIMP!
5046 assert(0 && "Cast from unsupported vector type not implemented yet!");
5047 }
5048 }
Evan Chengcb73b8d2006-04-10 18:54:36 +00005049 break;
Chris Lattner02274a52006-04-08 22:22:57 +00005050 case ISD::VSELECT:
5051 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
5052 PackVectorOp(Op.getOperand(1), NewVT),
5053 PackVectorOp(Op.getOperand(2), NewVT));
5054 break;
Chris Lattner32206f52006-03-18 01:44:44 +00005055 }
5056
5057 if (TLI.isTypeLegal(NewVT))
5058 Result = LegalizeOp(Result);
5059 bool isNew = PackedNodes.insert(std::make_pair(Op, Result)).second;
5060 assert(isNew && "Value already packed?");
5061 return Result;
5062}
5063
Chris Lattnerdc750592005-01-07 07:47:09 +00005064
5065// SelectionDAG::Legalize - This is the entry point for the file.
5066//
Chris Lattner4add7e32005-01-23 04:42:50 +00005067void SelectionDAG::Legalize() {
Chris Lattneref598052006-04-02 03:07:27 +00005068 if (ViewLegalizeDAGs) viewGraph();
5069
Chris Lattnerdc750592005-01-07 07:47:09 +00005070 /// run - This is the main entry point to this class.
5071 ///
Chris Lattner9dcce6d2006-01-28 07:39:30 +00005072 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattnerdc750592005-01-07 07:47:09 +00005073}
5074