blob: 699d5b1574beeead7db28ac6547b5be4d1db9f4e [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();
Andrew Lenharth783a4a92006-09-24 19:45:58 +0000561 case ISD::JumpTableRelocBase:
562 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
563 case TargetLowering::Custom:
564 Tmp1 = TLI.LowerOperation(Op, DAG);
565 if (Tmp1.Val) Result = Tmp1;
566 break;
567 default:
568 Result = LegalizeOp(Node->getOperand(0));
569 break;
570 }
571 break;
Chris Lattnerdc750592005-01-07 07:47:09 +0000572 case ISD::GlobalAddress:
Chris Lattner32f20bf2005-01-07 21:45:56 +0000573 case ISD::ExternalSymbol:
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000574 case ISD::ConstantPool:
575 case ISD::JumpTable: // Nothing to do.
Chris Lattner45ca1c02005-11-17 06:41:44 +0000576 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
577 default: assert(0 && "This action is not supported yet!");
Chris Lattnereb637512006-01-28 08:31:04 +0000578 case TargetLowering::Custom:
579 Tmp1 = TLI.LowerOperation(Op, DAG);
580 if (Tmp1.Val) Result = Tmp1;
581 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner45ca1c02005-11-17 06:41:44 +0000582 case TargetLowering::Legal:
Chris Lattner45ca1c02005-11-17 06:41:44 +0000583 break;
584 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000585 break;
Chris Lattnerd9af1aa2005-09-02 01:15:01 +0000586 case ISD::AssertSext:
587 case ISD::AssertZext:
588 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +0000589 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerd9af1aa2005-09-02 01:15:01 +0000590 break;
Chris Lattner44c28c22005-11-20 22:56:56 +0000591 case ISD::MERGE_VALUES:
Chris Lattnerd02b0542006-01-28 10:58:55 +0000592 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000593 Result = Node->getOperand(Op.ResNo);
594 break;
Chris Lattner3b8e7192005-01-14 22:38:01 +0000595 case ISD::CopyFromReg:
596 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnere3c67e92005-12-18 15:27:43 +0000597 Result = Op.getValue(0);
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000598 if (Node->getNumValues() == 2) {
Chris Lattnerd02b0542006-01-28 10:58:55 +0000599 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnere3c67e92005-12-18 15:27:43 +0000600 } else {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000601 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerd02b0542006-01-28 10:58:55 +0000602 if (Node->getNumOperands() == 3) {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000603 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerd02b0542006-01-28 10:58:55 +0000604 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
605 } else {
606 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
607 }
Chris Lattnere3c67e92005-12-18 15:27:43 +0000608 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
609 }
Chris Lattnereb6614d2005-01-28 06:27:38 +0000610 // Since CopyFromReg produces two values, make sure to remember that we
611 // legalized both of them.
612 AddLegalizedOperand(Op.getValue(0), Result);
613 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
614 return Result.getValue(Op.ResNo);
Nate Begemancda9aa72005-04-01 22:34:39 +0000615 case ISD::UNDEF: {
616 MVT::ValueType VT = Op.getValueType();
617 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begeman69d39432005-04-02 00:41:14 +0000618 default: assert(0 && "This action is not supported yet!");
619 case TargetLowering::Expand:
Nate Begemancda9aa72005-04-01 22:34:39 +0000620 if (MVT::isInteger(VT))
621 Result = DAG.getConstant(0, VT);
622 else if (MVT::isFloatingPoint(VT))
623 Result = DAG.getConstantFP(0, VT);
624 else
625 assert(0 && "Unknown value type!");
626 break;
Nate Begeman69d39432005-04-02 00:41:14 +0000627 case TargetLowering::Legal:
Nate Begemancda9aa72005-04-01 22:34:39 +0000628 break;
629 }
630 break;
631 }
Chris Lattnera4f68052006-03-24 02:26:29 +0000632
Chris Lattnere55d1712006-03-28 00:40:33 +0000633 case ISD::INTRINSIC_W_CHAIN:
634 case ISD::INTRINSIC_WO_CHAIN:
635 case ISD::INTRINSIC_VOID: {
Chris Lattner97af9d52006-08-08 01:09:31 +0000636 SmallVector<SDOperand, 8> Ops;
Chris Lattnera4f68052006-03-24 02:26:29 +0000637 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
638 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner97af9d52006-08-08 01:09:31 +0000639 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner30ee7252006-03-26 09:12:51 +0000640
641 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattnere55d1712006-03-28 00:40:33 +0000642 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner30ee7252006-03-26 09:12:51 +0000643 TargetLowering::Custom) {
644 Tmp3 = TLI.LowerOperation(Result, DAG);
645 if (Tmp3.Val) Result = Tmp3;
Chris Lattnerd5f94c92006-03-27 20:28:29 +0000646 }
647
648 if (Result.Val->getNumValues() == 1) break;
649
650 // Must have return value and chain result.
651 assert(Result.Val->getNumValues() == 2 &&
652 "Cannot return more than two values!");
653
654 // Since loads produce two values, make sure to remember that we
655 // legalized both of them.
656 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
657 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
658 return Result.getValue(Op.ResNo);
Chris Lattnera4f68052006-03-24 02:26:29 +0000659 }
Chris Lattner435b4022005-11-29 06:21:05 +0000660
661 case ISD::LOCATION:
662 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
663 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
664
665 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
666 case TargetLowering::Promote:
667 default: assert(0 && "This action is not supported yet!");
Jim Laskey7c462762005-12-16 22:45:29 +0000668 case TargetLowering::Expand: {
Jim Laskey219d5592006-01-04 22:28:25 +0000669 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskey762e9ec2006-01-05 01:25:28 +0000670 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
671 bool useDEBUG_LABEL = TLI.isOperationLegal(ISD::DEBUG_LABEL, MVT::Other);
672
673 if (DebugInfo && (useDEBUG_LOC || useDEBUG_LABEL)) {
674 const std::string &FName =
675 cast<StringSDNode>(Node->getOperand(3))->getValue();
676 const std::string &DirName =
677 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskeyb9966022006-01-17 17:31:53 +0000678 unsigned SrcFile = DebugInfo->RecordSource(DirName, FName);
Jim Laskey762e9ec2006-01-05 01:25:28 +0000679
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000680 SmallVector<SDOperand, 8> Ops;
Jim Laskey9e296be2005-12-21 20:51:37 +0000681 Ops.push_back(Tmp1); // chain
Jim Laskey762e9ec2006-01-05 01:25:28 +0000682 SDOperand LineOp = Node->getOperand(1);
683 SDOperand ColOp = Node->getOperand(2);
684
685 if (useDEBUG_LOC) {
686 Ops.push_back(LineOp); // line #
687 Ops.push_back(ColOp); // col #
688 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000689 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskey762e9ec2006-01-05 01:25:28 +0000690 } else {
Jim Laskey2eea4362006-02-15 19:34:44 +0000691 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
692 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskey762e9ec2006-01-05 01:25:28 +0000693 unsigned ID = DebugInfo->RecordLabel(Line, Col, SrcFile);
694 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000695 Result = DAG.getNode(ISD::DEBUG_LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskey762e9ec2006-01-05 01:25:28 +0000696 }
Jim Laskey9e296be2005-12-21 20:51:37 +0000697 } else {
698 Result = Tmp1; // chain
699 }
Chris Lattner435b4022005-11-29 06:21:05 +0000700 break;
Chris Lattnerc06da622005-12-18 23:54:29 +0000701 }
Chris Lattner435b4022005-11-29 06:21:05 +0000702 case TargetLowering::Legal:
Chris Lattner05b0b452005-12-01 18:21:35 +0000703 if (Tmp1 != Node->getOperand(0) ||
704 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattner97af9d52006-08-08 01:09:31 +0000705 SmallVector<SDOperand, 8> Ops;
Chris Lattner435b4022005-11-29 06:21:05 +0000706 Ops.push_back(Tmp1);
Chris Lattner05b0b452005-12-01 18:21:35 +0000707 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
708 Ops.push_back(Node->getOperand(1)); // line # must be legal.
709 Ops.push_back(Node->getOperand(2)); // col # must be legal.
710 } else {
711 // Otherwise promote them.
712 Ops.push_back(PromoteOp(Node->getOperand(1)));
713 Ops.push_back(PromoteOp(Node->getOperand(2)));
714 }
Chris Lattner435b4022005-11-29 06:21:05 +0000715 Ops.push_back(Node->getOperand(3)); // filename must be legal.
716 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattner97af9d52006-08-08 01:09:31 +0000717 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner435b4022005-11-29 06:21:05 +0000718 }
719 break;
720 }
721 break;
Jim Laskey7c462762005-12-16 22:45:29 +0000722
723 case ISD::DEBUG_LOC:
Jim Laskey762e9ec2006-01-05 01:25:28 +0000724 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskey7c462762005-12-16 22:45:29 +0000725 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskey7c462762005-12-16 22:45:29 +0000726 default: assert(0 && "This action is not supported yet!");
Jim Laskey762e9ec2006-01-05 01:25:28 +0000727 case TargetLowering::Legal:
728 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
729 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
730 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
731 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000732 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskey762e9ec2006-01-05 01:25:28 +0000733 break;
734 }
735 break;
736
737 case ISD::DEBUG_LABEL:
738 assert(Node->getNumOperands() == 2 && "Invalid DEBUG_LABEL node!");
739 switch (TLI.getOperationAction(ISD::DEBUG_LABEL, MVT::Other)) {
Jim Laskey762e9ec2006-01-05 01:25:28 +0000740 default: assert(0 && "This action is not supported yet!");
741 case TargetLowering::Legal:
742 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
743 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000744 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskey7c462762005-12-16 22:45:29 +0000745 break;
746 }
Nate Begeman5965bd12006-02-17 05:43:56 +0000747 break;
Chris Lattner435b4022005-11-29 06:21:05 +0000748
Chris Lattnerdc750592005-01-07 07:47:09 +0000749 case ISD::Constant:
750 // We know we don't need to expand constants here, constants only have one
751 // value and we check that it is fine above.
752
753 // FIXME: Maybe we should handle things like targets that don't support full
754 // 32-bit immediates?
755 break;
756 case ISD::ConstantFP: {
757 // Spill FP immediates to the constant pool if the target cannot directly
758 // codegen them. Targets often have some immediate values that can be
759 // efficiently generated into an FP register without a load. We explicitly
760 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattnerdc750592005-01-07 07:47:09 +0000761 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
762
763 // Check to see if this FP immediate is already legal.
764 bool isLegal = false;
765 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
766 E = TLI.legal_fpimm_end(); I != E; ++I)
767 if (CFP->isExactlyValue(*I)) {
768 isLegal = true;
769 break;
770 }
771
Chris Lattner758b0ac2006-01-29 06:26:56 +0000772 // If this is a legal constant, turn it into a TargetConstantFP node.
773 if (isLegal) {
774 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
775 break;
776 }
777
778 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
779 default: assert(0 && "This action is not supported yet!");
780 case TargetLowering::Custom:
781 Tmp3 = TLI.LowerOperation(Result, DAG);
782 if (Tmp3.Val) {
783 Result = Tmp3;
784 break;
785 }
786 // FALLTHROUGH
787 case TargetLowering::Expand:
Chris Lattnerdc750592005-01-07 07:47:09 +0000788 // Otherwise we need to spill the constant to memory.
Chris Lattnerdc750592005-01-07 07:47:09 +0000789 bool Extend = false;
790
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000791 // If a FP immediate is precise when represented as a float and if the
792 // target can do an extending load from float to double, we put it into
793 // the constant pool as a float, even if it's is statically typed as a
794 // double.
Chris Lattnerdc750592005-01-07 07:47:09 +0000795 MVT::ValueType VT = CFP->getValueType(0);
796 bool isDouble = VT == MVT::f64;
797 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
798 Type::FloatTy, CFP->getValue());
Chris Lattnerbc7497d2005-01-28 22:58:25 +0000799 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
800 // Only do this if the target has a native EXTLOAD instruction from
801 // f32.
Evan Cheng5d9fd972006-10-04 00:56:09 +0000802 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
Chris Lattnerdc750592005-01-07 07:47:09 +0000803 LLVMC = cast<ConstantFP>(ConstantExpr::getCast(LLVMC, Type::FloatTy));
804 VT = MVT::f32;
805 Extend = true;
806 }
Misha Brukman835702a2005-04-21 22:36:52 +0000807
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000808 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Chris Lattner3ba56b32005-01-16 05:06:12 +0000809 if (Extend) {
Chris Lattnerde0a4b12005-07-10 01:55:33 +0000810 Result = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Chenge71fe34d2006-10-09 20:57:25 +0000811 CPIdx, NULL, 0, MVT::f32);
Chris Lattner3ba56b32005-01-16 05:06:12 +0000812 } else {
Evan Chenge71fe34d2006-10-09 20:57:25 +0000813 Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner3ba56b32005-01-16 05:06:12 +0000814 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000815 }
816 break;
817 }
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000818 case ISD::TokenFactor:
819 if (Node->getNumOperands() == 2) {
Chris Lattnerd02b0542006-01-28 10:58:55 +0000820 Tmp1 = LegalizeOp(Node->getOperand(0));
821 Tmp2 = LegalizeOp(Node->getOperand(1));
822 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
823 } else if (Node->getNumOperands() == 3) {
824 Tmp1 = LegalizeOp(Node->getOperand(0));
825 Tmp2 = LegalizeOp(Node->getOperand(1));
826 Tmp3 = LegalizeOp(Node->getOperand(2));
827 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000828 } else {
Chris Lattner97af9d52006-08-08 01:09:31 +0000829 SmallVector<SDOperand, 8> Ops;
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000830 // Legalize the operands.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000831 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
832 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner97af9d52006-08-08 01:09:31 +0000833 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner05b4e372005-01-13 17:59:25 +0000834 }
Chris Lattner05b4e372005-01-13 17:59:25 +0000835 break;
Chris Lattnerd3b504a2006-04-12 16:20:43 +0000836
837 case ISD::FORMAL_ARGUMENTS:
Chris Lattneraaa23d92006-05-16 22:53:20 +0000838 case ISD::CALL:
Chris Lattnerd3b504a2006-04-12 16:20:43 +0000839 // The only option for this is to custom lower it.
Chris Lattnera1cec012006-05-17 17:55:45 +0000840 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
841 assert(Tmp3.Val && "Target didn't custom lower this node!");
842 assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
843 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattner5f0edfb2006-05-16 05:49:56 +0000844
Chris Lattneraaa23d92006-05-16 22:53:20 +0000845 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattner5f0edfb2006-05-16 05:49:56 +0000846 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnera1cec012006-05-17 17:55:45 +0000847 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
848 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattner5f0edfb2006-05-16 05:49:56 +0000849 if (Op.ResNo == i)
850 Tmp2 = Tmp1;
851 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
852 }
853 return Tmp2;
Chris Lattnerd3b504a2006-04-12 16:20:43 +0000854
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000855 case ISD::BUILD_VECTOR:
856 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner29b23012006-03-19 01:17:20 +0000857 default: assert(0 && "This action is not supported yet!");
858 case TargetLowering::Custom:
859 Tmp3 = TLI.LowerOperation(Result, DAG);
860 if (Tmp3.Val) {
861 Result = Tmp3;
862 break;
863 }
864 // FALLTHROUGH
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000865 case TargetLowering::Expand:
866 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000867 break;
Chris Lattner29b23012006-03-19 01:17:20 +0000868 }
Chris Lattner29b23012006-03-19 01:17:20 +0000869 break;
870 case ISD::INSERT_VECTOR_ELT:
871 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
872 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
873 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
874 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
875
876 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
877 Node->getValueType(0))) {
878 default: assert(0 && "This action is not supported yet!");
879 case TargetLowering::Legal:
880 break;
881 case TargetLowering::Custom:
882 Tmp3 = TLI.LowerOperation(Result, DAG);
883 if (Tmp3.Val) {
884 Result = Tmp3;
885 break;
886 }
887 // FALLTHROUGH
888 case TargetLowering::Expand: {
Chris Lattner326870b2006-04-17 19:21:01 +0000889 // If the insert index is a constant, codegen this as a scalar_to_vector,
890 // then a shuffle that inserts it into the right position in the vector.
891 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
892 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
893 Tmp1.getValueType(), Tmp2);
894
895 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
896 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
897 MVT::ValueType ShufMaskEltVT = MVT::getVectorBaseType(ShufMaskVT);
898
899 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
900 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
901 // the RHS.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000902 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner326870b2006-04-17 19:21:01 +0000903 for (unsigned i = 0; i != NumElts; ++i) {
904 if (i != InsertPos->getValue())
905 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
906 else
907 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
908 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000909 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
910 &ShufOps[0], ShufOps.size());
Chris Lattner326870b2006-04-17 19:21:01 +0000911
912 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
913 Tmp1, ScVec, ShufMask);
914 Result = LegalizeOp(Result);
915 break;
916 }
917
Chris Lattner29b23012006-03-19 01:17:20 +0000918 // If the target doesn't support this, we have to spill the input vector
919 // to a temporary stack slot, update the element, then reload it. This is
920 // badness. We could also load the value into a vector register (either
921 // with a "move to register" or "extload into register" instruction, then
922 // permute it into place, if the idx is a constant and if the idx is
923 // supported by the target.
Evan Cheng78e3d562006-04-08 01:46:37 +0000924 MVT::ValueType VT = Tmp1.getValueType();
925 MVT::ValueType EltVT = Tmp2.getValueType();
926 MVT::ValueType IdxVT = Tmp3.getValueType();
927 MVT::ValueType PtrVT = TLI.getPointerTy();
928 SDOperand StackPtr = CreateStackTemporary(VT);
Evan Cheng168e45b2006-03-31 01:27:51 +0000929 // Store the vector.
Evan Chengdf9ac472006-10-05 23:01:46 +0000930 SDOperand Ch = DAG.getStore(DAG.getEntryNode(),
931 Tmp1, StackPtr, DAG.getSrcValue(NULL));
Evan Cheng168e45b2006-03-31 01:27:51 +0000932
933 // Truncate or zero extend offset to target pointer type.
Evan Cheng78e3d562006-04-08 01:46:37 +0000934 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
935 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Cheng168e45b2006-03-31 01:27:51 +0000936 // Add the offset to the index.
Evan Cheng78e3d562006-04-08 01:46:37 +0000937 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
938 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
939 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Cheng168e45b2006-03-31 01:27:51 +0000940 // Store the scalar value.
Evan Chengdf9ac472006-10-05 23:01:46 +0000941 Ch = DAG.getStore(Ch, Tmp2, StackPtr2, DAG.getSrcValue(NULL));
Evan Cheng168e45b2006-03-31 01:27:51 +0000942 // Load the updated vector.
Evan Chenge71fe34d2006-10-09 20:57:25 +0000943 Result = DAG.getLoad(VT, Ch, StackPtr, NULL, 0);
Chris Lattner29b23012006-03-19 01:17:20 +0000944 break;
945 }
946 }
947 break;
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000948 case ISD::SCALAR_TO_VECTOR:
Chris Lattner6be79822006-04-04 17:23:26 +0000949 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
950 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
951 break;
952 }
953
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000954 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
955 Result = DAG.UpdateNodeOperands(Result, Tmp1);
956 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
957 Node->getValueType(0))) {
958 default: assert(0 && "This action is not supported yet!");
959 case TargetLowering::Legal:
960 break;
Chris Lattner79fb91c2006-03-19 06:47:21 +0000961 case TargetLowering::Custom:
962 Tmp3 = TLI.LowerOperation(Result, DAG);
963 if (Tmp3.Val) {
964 Result = Tmp3;
965 break;
966 }
967 // FALLTHROUGH
Chris Lattner6be79822006-04-04 17:23:26 +0000968 case TargetLowering::Expand:
969 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000970 break;
971 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000972 break;
Chris Lattner21e68c82006-03-20 01:52:29 +0000973 case ISD::VECTOR_SHUFFLE:
Chris Lattner21e68c82006-03-20 01:52:29 +0000974 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
975 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
976 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
977
978 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner6be79822006-04-04 17:23:26 +0000979 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
980 default: assert(0 && "Unknown operation action!");
981 case TargetLowering::Legal:
982 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
983 "vector shuffle should not be created if not legal!");
984 break;
985 case TargetLowering::Custom:
Evan Cheng9fa89592006-04-05 06:07:11 +0000986 Tmp3 = TLI.LowerOperation(Result, DAG);
987 if (Tmp3.Val) {
988 Result = Tmp3;
989 break;
990 }
991 // FALLTHROUGH
992 case TargetLowering::Expand: {
993 MVT::ValueType VT = Node->getValueType(0);
994 MVT::ValueType EltVT = MVT::getVectorBaseType(VT);
995 MVT::ValueType PtrVT = TLI.getPointerTy();
996 SDOperand Mask = Node->getOperand(2);
997 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000998 SmallVector<SDOperand,8> Ops;
Evan Cheng9fa89592006-04-05 06:07:11 +0000999 for (unsigned i = 0; i != NumElems; ++i) {
1000 SDOperand Arg = Mask.getOperand(i);
1001 if (Arg.getOpcode() == ISD::UNDEF) {
1002 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1003 } else {
1004 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1005 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1006 if (Idx < NumElems)
1007 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1008 DAG.getConstant(Idx, PtrVT)));
1009 else
1010 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1011 DAG.getConstant(Idx - NumElems, PtrVT)));
1012 }
1013 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001014 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6be79822006-04-04 17:23:26 +00001015 break;
Evan Cheng9fa89592006-04-05 06:07:11 +00001016 }
Chris Lattner6be79822006-04-04 17:23:26 +00001017 case TargetLowering::Promote: {
1018 // Change base type to a different vector type.
1019 MVT::ValueType OVT = Node->getValueType(0);
1020 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1021
1022 // Cast the two input vectors.
1023 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1024 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1025
1026 // Convert the shuffle mask to the right # elements.
1027 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1028 assert(Tmp3.Val && "Shuffle not legal?");
1029 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1030 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1031 break;
1032 }
Chris Lattner21e68c82006-03-20 01:52:29 +00001033 }
1034 break;
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001035
1036 case ISD::EXTRACT_VECTOR_ELT:
1037 Tmp1 = LegalizeOp(Node->getOperand(0));
1038 Tmp2 = LegalizeOp(Node->getOperand(1));
1039 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner340a6b52006-03-21 21:02:03 +00001040
1041 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT,
1042 Tmp1.getValueType())) {
1043 default: assert(0 && "This action is not supported yet!");
1044 case TargetLowering::Legal:
1045 break;
1046 case TargetLowering::Custom:
1047 Tmp3 = TLI.LowerOperation(Result, DAG);
1048 if (Tmp3.Val) {
1049 Result = Tmp3;
1050 break;
1051 }
1052 // FALLTHROUGH
Chris Lattner42a5fca2006-04-02 05:06:04 +00001053 case TargetLowering::Expand:
1054 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner340a6b52006-03-21 21:02:03 +00001055 break;
1056 }
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001057 break;
1058
Chris Lattner6f423252006-03-31 17:55:51 +00001059 case ISD::VEXTRACT_VECTOR_ELT:
1060 Result = LegalizeOp(LowerVEXTRACT_VECTOR_ELT(Op));
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001061 break;
Chris Lattner21e68c82006-03-20 01:52:29 +00001062
Chris Lattner462505f2006-02-13 09:18:02 +00001063 case ISD::CALLSEQ_START: {
1064 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1065
1066 // Recursively Legalize all of the inputs of the call end that do not lead
1067 // to this call start. This ensures that any libcalls that need be inserted
1068 // are inserted *before* the CALLSEQ_START.
Chris Lattner4488f0c2006-07-26 23:55:56 +00001069 {std::set<SDNode*> NodesLeadingTo;
Chris Lattner462505f2006-02-13 09:18:02 +00001070 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattner4488f0c2006-07-26 23:55:56 +00001071 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1072 NodesLeadingTo);
1073 }
Chris Lattner462505f2006-02-13 09:18:02 +00001074
1075 // Now that we legalized all of the inputs (which may have inserted
1076 // libcalls) create the new CALLSEQ_START node.
1077 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1078
1079 // Merge in the last call, to ensure that this call start after the last
1080 // call ended.
Chris Lattner62f1b832006-05-17 18:00:08 +00001081 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnera1cec012006-05-17 17:55:45 +00001082 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1083 Tmp1 = LegalizeOp(Tmp1);
1084 }
Chris Lattner462505f2006-02-13 09:18:02 +00001085
1086 // Do not try to legalize the target-specific arguments (#1+).
1087 if (Tmp1 != Node->getOperand(0)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001088 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner462505f2006-02-13 09:18:02 +00001089 Ops[0] = Tmp1;
Chris Lattner97af9d52006-08-08 01:09:31 +00001090 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner462505f2006-02-13 09:18:02 +00001091 }
1092
1093 // Remember that the CALLSEQ_START is legalized.
Chris Lattner8e2ee732006-02-14 00:55:02 +00001094 AddLegalizedOperand(Op.getValue(0), Result);
1095 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1096 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1097
Chris Lattner462505f2006-02-13 09:18:02 +00001098 // Now that the callseq_start and all of the non-call nodes above this call
1099 // sequence have been legalized, legalize the call itself. During this
1100 // process, no libcalls can/will be inserted, guaranteeing that no calls
1101 // can overlap.
1102 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1103 SDOperand InCallSEQ = LastCALLSEQ_END;
1104 // Note that we are selecting this call!
1105 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1106 IsLegalizingCall = true;
1107
1108 // Legalize the call, starting from the CALLSEQ_END.
1109 LegalizeOp(LastCALLSEQ_END);
1110 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1111 return Result;
1112 }
Chris Lattner2dce7032005-05-12 23:24:06 +00001113 case ISD::CALLSEQ_END:
Chris Lattner462505f2006-02-13 09:18:02 +00001114 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1115 // will cause this node to be legalized as well as handling libcalls right.
1116 if (LastCALLSEQ_END.Val != Node) {
1117 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
1118 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
1119 assert(I != LegalizedNodes.end() &&
1120 "Legalizing the call start should have legalized this node!");
1121 return I->second;
1122 }
1123
1124 // Otherwise, the call start has been legalized and everything is going
1125 // according to plan. Just legalize ourselves normally here.
Chris Lattnerdc750592005-01-07 07:47:09 +00001126 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerccb44762006-01-29 07:58:15 +00001127 // Do not try to legalize the target-specific arguments (#1+), except for
1128 // an optional flag input.
1129 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1130 if (Tmp1 != Node->getOperand(0)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001131 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattnerccb44762006-01-29 07:58:15 +00001132 Ops[0] = Tmp1;
Chris Lattner97af9d52006-08-08 01:09:31 +00001133 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerccb44762006-01-29 07:58:15 +00001134 }
1135 } else {
1136 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1137 if (Tmp1 != Node->getOperand(0) ||
1138 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001139 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattnerccb44762006-01-29 07:58:15 +00001140 Ops[0] = Tmp1;
1141 Ops.back() = Tmp2;
Chris Lattner97af9d52006-08-08 01:09:31 +00001142 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerccb44762006-01-29 07:58:15 +00001143 }
Chris Lattnerf9a1e3a2006-01-24 05:48:21 +00001144 }
Chris Lattner8e2ee732006-02-14 00:55:02 +00001145 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner462505f2006-02-13 09:18:02 +00001146 // This finishes up call legalization.
1147 IsLegalizingCall = false;
Chris Lattner8e2ee732006-02-14 00:55:02 +00001148
1149 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1150 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1151 if (Node->getNumValues() == 2)
1152 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1153 return Result.getValue(Op.ResNo);
Evan Cheng7f4ec822006-01-11 22:14:47 +00001154 case ISD::DYNAMIC_STACKALLOC: {
Chris Lattnerec26b482005-01-09 19:03:49 +00001155 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1156 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1157 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001158 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerec26b482005-01-09 19:03:49 +00001159
Chris Lattnerd02b0542006-01-28 10:58:55 +00001160 Tmp1 = Result.getValue(0);
Chris Lattner2d591422006-01-15 08:43:08 +00001161 Tmp2 = Result.getValue(1);
Evan Cheng7f4ec822006-01-11 22:14:47 +00001162 switch (TLI.getOperationAction(Node->getOpcode(),
1163 Node->getValueType(0))) {
1164 default: assert(0 && "This action is not supported yet!");
Chris Lattner59b82f92006-01-15 08:54:32 +00001165 case TargetLowering::Expand: {
1166 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1167 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1168 " not tell us which reg is the stack pointer!");
1169 SDOperand Chain = Tmp1.getOperand(0);
1170 SDOperand Size = Tmp2.getOperand(1);
1171 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
1172 Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size); // Value
1173 Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1); // Output chain
Chris Lattnerd02b0542006-01-28 10:58:55 +00001174 Tmp1 = LegalizeOp(Tmp1);
1175 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner59b82f92006-01-15 08:54:32 +00001176 break;
1177 }
1178 case TargetLowering::Custom:
Chris Lattner2d591422006-01-15 08:43:08 +00001179 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1180 if (Tmp3.Val) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001181 Tmp1 = LegalizeOp(Tmp3);
1182 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Cheng7f4ec822006-01-11 22:14:47 +00001183 }
Chris Lattner59b82f92006-01-15 08:54:32 +00001184 break;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001185 case TargetLowering::Legal:
Chris Lattner59b82f92006-01-15 08:54:32 +00001186 break;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001187 }
Chris Lattner59b82f92006-01-15 08:54:32 +00001188 // Since this op produce two values, make sure to remember that we
1189 // legalized both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001190 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1191 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner59b82f92006-01-15 08:54:32 +00001192 return Op.ResNo ? Tmp2 : Tmp1;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001193 }
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001194 case ISD::INLINEASM: {
Chris Lattner97af9d52006-08-08 01:09:31 +00001195 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001196 bool Changed = false;
1197 // Legalize all of the operands of the inline asm, in case they are nodes
1198 // that need to be expanded or something. Note we skip the asm string and
1199 // all of the TargetConstant flags.
1200 SDOperand Op = LegalizeOp(Ops[0]);
1201 Changed = Op != Ops[0];
1202 Ops[0] = Op;
1203
1204 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1205 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1206 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1207 for (++i; NumVals; ++i, --NumVals) {
1208 SDOperand Op = LegalizeOp(Ops[i]);
1209 if (Op != Ops[i]) {
1210 Changed = true;
1211 Ops[i] = Op;
1212 }
1213 }
Chris Lattner476e67b2006-01-26 22:24:51 +00001214 }
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001215
1216 if (HasInFlag) {
1217 Op = LegalizeOp(Ops.back());
1218 Changed |= Op != Ops.back();
1219 Ops.back() = Op;
1220 }
1221
1222 if (Changed)
Chris Lattner97af9d52006-08-08 01:09:31 +00001223 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner476e67b2006-01-26 22:24:51 +00001224
1225 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001226 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner476e67b2006-01-26 22:24:51 +00001227 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1228 return Result.getValue(Op.ResNo);
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001229 }
Chris Lattner68a12142005-01-07 22:12:08 +00001230 case ISD::BR:
1231 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001232 // 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
Chris Lattnerd02b0542006-01-28 10:58:55 +00001237 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner68a12142005-01-07 22:12:08 +00001238 break;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001239 case ISD::BRIND:
1240 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1241 // Ensure that libcalls are emitted before a branch.
1242 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1243 Tmp1 = LegalizeOp(Tmp1);
1244 LastCALLSEQ_END = DAG.getEntryNode();
1245
1246 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1247 default: assert(0 && "Indirect target must be legal type (pointer)!");
1248 case Legal:
1249 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1250 break;
1251 }
1252 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1253 break;
Chris Lattnerec3fe7c2005-01-07 08:19:42 +00001254 case ISD::BRCOND:
1255 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001256 // Ensure that libcalls are emitted before a return.
1257 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1258 Tmp1 = LegalizeOp(Tmp1);
1259 LastCALLSEQ_END = DAG.getEntryNode();
1260
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001261 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1262 case Expand: assert(0 && "It's impossible to expand bools");
1263 case Legal:
1264 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1265 break;
1266 case Promote:
1267 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
1268 break;
1269 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001270
1271 // Basic block destination (Op#2) is always legal.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001272 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman371e4952005-08-16 19:49:35 +00001273
1274 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1275 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001276 case TargetLowering::Legal: break;
1277 case TargetLowering::Custom:
1278 Tmp1 = TLI.LowerOperation(Result, DAG);
1279 if (Tmp1.Val) Result = Tmp1;
1280 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001281 case TargetLowering::Expand:
1282 // Expand brcond's setcc into its constituent parts and create a BR_CC
1283 // Node.
1284 if (Tmp2.getOpcode() == ISD::SETCC) {
1285 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1286 Tmp2.getOperand(0), Tmp2.getOperand(1),
1287 Node->getOperand(2));
1288 } else {
Chris Lattner539c3fa2005-08-21 18:03:09 +00001289 // Make sure the condition is either zero or one. It may have been
1290 // promoted from something else.
Chris Lattnere9721b22006-01-31 05:04:52 +00001291 unsigned NumBits = MVT::getSizeInBits(Tmp2.getValueType());
1292 if (!TLI.MaskedValueIsZero(Tmp2, (~0ULL >> (64-NumBits))^1))
1293 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner539c3fa2005-08-21 18:03:09 +00001294
Nate Begeman371e4952005-08-16 19:49:35 +00001295 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1296 DAG.getCondCode(ISD::SETNE), Tmp2,
1297 DAG.getConstant(0, Tmp2.getValueType()),
1298 Node->getOperand(2));
1299 }
1300 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001301 }
1302 break;
1303 case ISD::BR_CC:
1304 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001305 // Ensure that libcalls are emitted before a branch.
1306 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1307 Tmp1 = LegalizeOp(Tmp1);
1308 LastCALLSEQ_END = DAG.getEntryNode();
1309
Nate Begeman7e7f4392006-02-01 07:19:44 +00001310 Tmp2 = Node->getOperand(2); // LHS
1311 Tmp3 = Node->getOperand(3); // RHS
1312 Tmp4 = Node->getOperand(1); // CC
1313
1314 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1315
1316 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1317 // the LHS is a legal SETCC itself. In this case, we need to compare
1318 // the result against zero to select between true and false values.
1319 if (Tmp3.Val == 0) {
1320 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1321 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001322 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00001323
1324 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1325 Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001326
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001327 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1328 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001329 case TargetLowering::Legal: break;
1330 case TargetLowering::Custom:
1331 Tmp4 = TLI.LowerOperation(Result, DAG);
1332 if (Tmp4.Val) Result = Tmp4;
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001333 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001334 }
Chris Lattnerec3fe7c2005-01-07 08:19:42 +00001335 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001336 case ISD::LOAD: {
Evan Chenge71fe34d2006-10-09 20:57:25 +00001337 LoadSDNode *LD = cast<LoadSDNode>(Node);
1338 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1339 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00001340
Evan Chenge71fe34d2006-10-09 20:57:25 +00001341 ISD::LoadExtType ExtType = LD->getExtensionType();
1342 if (ExtType == ISD::NON_EXTLOAD) {
1343 MVT::ValueType VT = Node->getValueType(0);
1344 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1345 Tmp3 = Result.getValue(0);
1346 Tmp4 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001347
Evan Chenge71fe34d2006-10-09 20:57:25 +00001348 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1349 default: assert(0 && "This action is not supported yet!");
1350 case TargetLowering::Legal: break;
1351 case TargetLowering::Custom:
1352 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1353 if (Tmp1.Val) {
1354 Tmp3 = LegalizeOp(Tmp1);
1355 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001356 }
Evan Chenge71fe34d2006-10-09 20:57:25 +00001357 break;
1358 case TargetLowering::Promote: {
1359 // Only promote a load of vector type to another.
1360 assert(MVT::isVector(VT) && "Cannot promote this load!");
1361 // Change base type to a different vector type.
1362 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1363
1364 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
1365 LD->getSrcValueOffset());
1366 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1367 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001368 break;
Andrew Lenharthb5597e32005-06-30 19:22:37 +00001369 }
Evan Chenge71fe34d2006-10-09 20:57:25 +00001370 }
1371 // Since loads produce two values, make sure to remember that we
1372 // legalized both of them.
1373 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1374 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1375 return Op.ResNo ? Tmp4 : Tmp3;
1376 } else {
1377 MVT::ValueType SrcVT = LD->getLoadVT();
1378 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1379 default: assert(0 && "This action is not supported yet!");
1380 case TargetLowering::Promote:
1381 assert(SrcVT == MVT::i1 &&
1382 "Can only promote extending LOAD from i1 -> i8!");
1383 Result = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1384 LD->getSrcValue(), LD->getSrcValueOffset(),
1385 MVT::i8);
1386 Tmp1 = Result.getValue(0);
1387 Tmp2 = Result.getValue(1);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001388 break;
Evan Chenge71fe34d2006-10-09 20:57:25 +00001389 case TargetLowering::Custom:
1390 isCustom = true;
1391 // FALLTHROUGH
1392 case TargetLowering::Legal:
1393 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1394 Tmp1 = Result.getValue(0);
1395 Tmp2 = Result.getValue(1);
1396
1397 if (isCustom) {
1398 Tmp3 = TLI.LowerOperation(Result, DAG);
1399 if (Tmp3.Val) {
1400 Tmp1 = LegalizeOp(Tmp3);
1401 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1402 }
1403 }
1404 break;
1405 case TargetLowering::Expand:
1406 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
1407 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1408 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
1409 LD->getSrcValueOffset());
1410 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
1411 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1412 Tmp2 = LegalizeOp(Load.getValue(1));
1413 break;
1414 }
1415 assert(ExtType != ISD::EXTLOAD && "EXTLOAD should always be supported!");
1416 // Turn the unsupported load into an EXTLOAD followed by an explicit
1417 // zero/sign extend inreg.
1418 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1419 Tmp1, Tmp2, LD->getSrcValue(),
1420 LD->getSrcValueOffset(), SrcVT);
1421 SDOperand ValRes;
1422 if (ExtType == ISD::SEXTLOAD)
1423 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1424 Result, DAG.getValueType(SrcVT));
1425 else
1426 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
1427 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1428 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1429 break;
1430 }
1431 // Since loads produce two values, make sure to remember that we legalized
1432 // both of them.
1433 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1434 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1435 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001436 }
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001437 }
Nate Begeman5172ce62005-10-19 00:06:56 +00001438 case ISD::EXTRACT_ELEMENT: {
1439 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1440 switch (getTypeAction(OpTy)) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001441 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5172ce62005-10-19 00:06:56 +00001442 case Legal:
1443 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1444 // 1 -> Hi
1445 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1446 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1447 TLI.getShiftAmountTy()));
1448 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1449 } else {
1450 // 0 -> Lo
1451 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1452 Node->getOperand(0));
1453 }
Nate Begeman5172ce62005-10-19 00:06:56 +00001454 break;
1455 case Expand:
1456 // Get both the low and high parts.
1457 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1458 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1459 Result = Tmp2; // 1 -> Hi
1460 else
1461 Result = Tmp1; // 0 -> Lo
1462 break;
1463 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001464 break;
Nate Begeman5172ce62005-10-19 00:06:56 +00001465 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001466
1467 case ISD::CopyToReg:
1468 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukman835702a2005-04-21 22:36:52 +00001469
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00001470 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattner33182322005-08-16 21:55:35 +00001471 "Register type must be legal!");
Chris Lattnere3c67e92005-12-18 15:27:43 +00001472 // Legalize the incoming value (must be a legal type).
Chris Lattner33182322005-08-16 21:55:35 +00001473 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001474 if (Node->getNumValues() == 1) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001475 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattnere3c67e92005-12-18 15:27:43 +00001476 } else {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001477 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001478 if (Node->getNumOperands() == 4) {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001479 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001480 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1481 Tmp3);
1482 } else {
1483 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattnere3c67e92005-12-18 15:27:43 +00001484 }
1485
1486 // Since this produces two values, make sure to remember that we legalized
1487 // both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001488 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnere3c67e92005-12-18 15:27:43 +00001489 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001490 return Result;
Chris Lattnere3c67e92005-12-18 15:27:43 +00001491 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001492 break;
1493
1494 case ISD::RET:
1495 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001496
1497 // Ensure that libcalls are emitted before a return.
1498 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1499 Tmp1 = LegalizeOp(Tmp1);
1500 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001501
Chris Lattnerdc750592005-01-07 07:47:09 +00001502 switch (Node->getNumOperands()) {
Evan Chenga2e99532006-05-26 23:09:09 +00001503 case 3: // ret val
Evan Cheng7256b0a2006-04-11 06:33:39 +00001504 Tmp2 = Node->getOperand(1);
Evan Chenga2e99532006-05-26 23:09:09 +00001505 Tmp3 = Node->getOperand(2); // Signness
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001506 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattnerdc750592005-01-07 07:47:09 +00001507 case Legal:
Evan Chenga2e99532006-05-26 23:09:09 +00001508 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattnerdc750592005-01-07 07:47:09 +00001509 break;
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001510 case Expand:
1511 if (Tmp2.getValueType() != MVT::Vector) {
1512 SDOperand Lo, Hi;
1513 ExpandOp(Tmp2, Lo, Hi);
Evan Chenga2e99532006-05-26 23:09:09 +00001514 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattner451b0992006-08-21 20:24:53 +00001515 Result = LegalizeOp(Result);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001516 } else {
1517 SDNode *InVal = Tmp2.Val;
1518 unsigned NumElems =
1519 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1520 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1521
1522 // Figure out if there is a Packed type corresponding to this Vector
1523 // type. If so, convert to the packed type.
1524 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1525 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1526 // Turn this into a return of the packed type.
1527 Tmp2 = PackVectorOp(Tmp2, TVT);
Evan Chenga2e99532006-05-26 23:09:09 +00001528 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001529 } else if (NumElems == 1) {
1530 // Turn this into a return of the scalar type.
1531 Tmp2 = PackVectorOp(Tmp2, EVT);
Evan Chenga2e99532006-05-26 23:09:09 +00001532 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00001533
1534 // FIXME: Returns of gcc generic vectors smaller than a legal type
1535 // should be returned in integer registers!
1536
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001537 // The scalarized value type may not be legal, e.g. it might require
1538 // promotion or expansion. Relegalize the return.
1539 Result = LegalizeOp(Result);
1540 } else {
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00001541 // FIXME: Returns of gcc generic vectors larger than a legal vector
1542 // type should be returned by reference!
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001543 SDOperand Lo, Hi;
1544 SplitVectorOp(Tmp2, Lo, Hi);
Evan Chenga2e99532006-05-26 23:09:09 +00001545 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001546 Result = LegalizeOp(Result);
1547 }
1548 }
Misha Brukman835702a2005-04-21 22:36:52 +00001549 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001550 case Promote:
Chris Lattner4d978642005-01-15 22:16:26 +00001551 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Chenga2e99532006-05-26 23:09:09 +00001552 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001553 Result = LegalizeOp(Result);
Chris Lattner4d978642005-01-15 22:16:26 +00001554 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001555 }
1556 break;
1557 case 1: // ret void
Chris Lattnerd02b0542006-01-28 10:58:55 +00001558 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerdc750592005-01-07 07:47:09 +00001559 break;
1560 default: { // ret <values>
Chris Lattner97af9d52006-08-08 01:09:31 +00001561 SmallVector<SDOperand, 8> NewValues;
Chris Lattnerdc750592005-01-07 07:47:09 +00001562 NewValues.push_back(Tmp1);
Evan Chenga2e99532006-05-26 23:09:09 +00001563 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattnerdc750592005-01-07 07:47:09 +00001564 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1565 case Legal:
Chris Lattner7e6eeba2005-01-08 19:27:05 +00001566 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Chenga2e99532006-05-26 23:09:09 +00001567 NewValues.push_back(Node->getOperand(i+1));
Chris Lattnerdc750592005-01-07 07:47:09 +00001568 break;
1569 case Expand: {
1570 SDOperand Lo, Hi;
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00001571 assert(Node->getOperand(i).getValueType() != MVT::Vector &&
1572 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001573 ExpandOp(Node->getOperand(i), Lo, Hi);
1574 NewValues.push_back(Lo);
Evan Chenga2e99532006-05-26 23:09:09 +00001575 NewValues.push_back(Node->getOperand(i+1));
Chris Lattnerdc750592005-01-07 07:47:09 +00001576 NewValues.push_back(Hi);
Evan Chenga2e99532006-05-26 23:09:09 +00001577 NewValues.push_back(Node->getOperand(i+1));
Misha Brukman835702a2005-04-21 22:36:52 +00001578 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001579 }
1580 case Promote:
Chris Lattner4d978642005-01-15 22:16:26 +00001581 assert(0 && "Can't promote multiple return value yet!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001582 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001583
1584 if (NewValues.size() == Node->getNumOperands())
Chris Lattner97af9d52006-08-08 01:09:31 +00001585 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerd02b0542006-01-28 10:58:55 +00001586 else
Chris Lattner97af9d52006-08-08 01:09:31 +00001587 Result = DAG.getNode(ISD::RET, MVT::Other,
1588 &NewValues[0], NewValues.size());
Chris Lattnerdc750592005-01-07 07:47:09 +00001589 break;
1590 }
1591 }
Evan Chengf35b1c82006-01-06 00:41:43 +00001592
Chris Lattner4d1ea712006-01-29 21:02:23 +00001593 if (Result.getOpcode() == ISD::RET) {
1594 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1595 default: assert(0 && "This action is not supported yet!");
1596 case TargetLowering::Legal: break;
1597 case TargetLowering::Custom:
1598 Tmp1 = TLI.LowerOperation(Result, DAG);
1599 if (Tmp1.Val) Result = Tmp1;
1600 break;
1601 }
Evan Chengf35b1c82006-01-06 00:41:43 +00001602 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001603 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001604 case ISD::STORE: {
Chris Lattnerdc750592005-01-07 07:47:09 +00001605 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1606 Tmp2 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
1607
Chris Lattnere69daaf2005-01-08 06:25:56 +00001608 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001609 // FIXME: We shouldn't do this for TargetConstantFP's.
Chris Lattnercad70c32006-03-15 22:19:18 +00001610 // FIXME: move this to the DAG Combiner!
Chris Lattner1f2c9d82005-01-15 05:21:40 +00001611 if (ConstantFPSDNode *CFP =dyn_cast<ConstantFPSDNode>(Node->getOperand(1))){
Chris Lattnere69daaf2005-01-08 06:25:56 +00001612 if (CFP->getValueType(0) == MVT::f32) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001613 Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
Chris Lattnere69daaf2005-01-08 06:25:56 +00001614 } else {
1615 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001616 Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
Chris Lattnere69daaf2005-01-08 06:25:56 +00001617 }
Evan Chengdf9ac472006-10-05 23:01:46 +00001618 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, Node->getOperand(3));
Chris Lattnerf9a1e3a2006-01-24 05:48:21 +00001619 break;
Chris Lattnere69daaf2005-01-08 06:25:56 +00001620 }
1621
Chris Lattnerdc750592005-01-07 07:47:09 +00001622 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1623 case Legal: {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001624 Tmp3 = LegalizeOp(Node->getOperand(1));
1625 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1626 Node->getOperand(3));
Evan Cheng31d15fa2005-12-23 07:29:34 +00001627
Chris Lattnerd02b0542006-01-28 10:58:55 +00001628 MVT::ValueType VT = Tmp3.getValueType();
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001629 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1630 default: assert(0 && "This action is not supported yet!");
1631 case TargetLowering::Legal: break;
1632 case TargetLowering::Custom:
1633 Tmp1 = TLI.LowerOperation(Result, DAG);
1634 if (Tmp1.Val) Result = Tmp1;
1635 break;
Chris Lattner91226e52006-04-16 01:36:45 +00001636 case TargetLowering::Promote:
1637 assert(MVT::isVector(VT) && "Unknown legal promote case!");
1638 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
1639 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
1640 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1641 Node->getOperand(3));
1642 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001643 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001644 break;
1645 }
1646 case Promote:
Chris Lattner1f2c9d82005-01-15 05:21:40 +00001647 // Truncate the value and store the result.
1648 Tmp3 = PromoteOp(Node->getOperand(1));
1649 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp3, Tmp2,
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00001650 Node->getOperand(3),
Chris Lattner36db1ed2005-07-10 00:29:18 +00001651 DAG.getValueType(Node->getOperand(1).getValueType()));
Chris Lattner1f2c9d82005-01-15 05:21:40 +00001652 break;
1653
Chris Lattnerdc750592005-01-07 07:47:09 +00001654 case Expand:
Chris Lattner32206f52006-03-18 01:44:44 +00001655 unsigned IncrementSize = 0;
Chris Lattnerdc750592005-01-07 07:47:09 +00001656 SDOperand Lo, Hi;
Chris Lattner32206f52006-03-18 01:44:44 +00001657
1658 // If this is a vector type, then we have to calculate the increment as
1659 // the product of the element size in bytes, and the number of elements
1660 // in the high half of the vector.
1661 if (Node->getOperand(1).getValueType() == MVT::Vector) {
1662 SDNode *InVal = Node->getOperand(1).Val;
1663 unsigned NumElems =
1664 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1665 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1666
1667 // Figure out if there is a Packed type corresponding to this Vector
1668 // type. If so, convert to the packed type.
1669 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1670 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1671 // Turn this into a normal store of the packed type.
1672 Tmp3 = PackVectorOp(Node->getOperand(1), TVT);
1673 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1674 Node->getOperand(3));
Chris Lattner91226e52006-04-16 01:36:45 +00001675 Result = LegalizeOp(Result);
Chris Lattner32206f52006-03-18 01:44:44 +00001676 break;
1677 } else if (NumElems == 1) {
1678 // Turn this into a normal store of the scalar type.
1679 Tmp3 = PackVectorOp(Node->getOperand(1), EVT);
1680 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1681 Node->getOperand(3));
Chris Lattner8e1fcab2006-03-31 17:37:22 +00001682 // The scalarized value type may not be legal, e.g. it might require
1683 // promotion or expansion. Relegalize the scalar store.
1684 Result = LegalizeOp(Result);
Chris Lattner32206f52006-03-18 01:44:44 +00001685 break;
1686 } else {
1687 SplitVectorOp(Node->getOperand(1), Lo, Hi);
1688 IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
1689 }
1690 } else {
1691 ExpandOp(Node->getOperand(1), Lo, Hi);
1692 IncrementSize = MVT::getSizeInBits(Hi.getValueType())/8;
Chris Lattnerdc750592005-01-07 07:47:09 +00001693
Chris Lattner8d90f522006-03-31 18:20:46 +00001694 if (!TLI.isLittleEndian())
1695 std::swap(Lo, Hi);
1696 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001697
Evan Chengdf9ac472006-10-05 23:01:46 +00001698 Lo = DAG.getStore(Tmp1, Lo, Tmp2, Node->getOperand(3));
Chris Lattnerdc750592005-01-07 07:47:09 +00001699 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1700 getIntPtrConstant(IncrementSize));
1701 assert(isTypeLegal(Tmp2.getValueType()) &&
1702 "Pointers must be legal!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001703 // FIXME: This sets the srcvalue of both halves to be the same, which is
1704 // wrong.
Evan Chengdf9ac472006-10-05 23:01:46 +00001705 Hi = DAG.getStore(Tmp1, Hi, Tmp2, Node->getOperand(3));
Chris Lattner0d03eb42005-01-19 18:02:17 +00001706 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1707 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001708 }
1709 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001710 }
Andrew Lenharthdec53922005-03-31 21:24:06 +00001711 case ISD::PCMARKER:
1712 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001713 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharthdec53922005-03-31 21:24:06 +00001714 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001715 case ISD::STACKSAVE:
1716 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001717 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1718 Tmp1 = Result.getValue(0);
1719 Tmp2 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001720
Chris Lattnerb3266452006-01-13 02:50:02 +00001721 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1722 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001723 case TargetLowering::Legal: break;
1724 case TargetLowering::Custom:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001725 Tmp3 = TLI.LowerOperation(Result, DAG);
1726 if (Tmp3.Val) {
1727 Tmp1 = LegalizeOp(Tmp3);
1728 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattnerb3266452006-01-13 02:50:02 +00001729 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001730 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001731 case TargetLowering::Expand:
Chris Lattnered9b3e12006-01-13 17:48:44 +00001732 // Expand to CopyFromReg if the target set
1733 // StackPointerRegisterToSaveRestore.
1734 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001735 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattnered9b3e12006-01-13 17:48:44 +00001736 Node->getValueType(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001737 Tmp2 = Tmp1.getValue(1);
Chris Lattnered9b3e12006-01-13 17:48:44 +00001738 } else {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001739 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1740 Tmp2 = Node->getOperand(0);
Chris Lattnered9b3e12006-01-13 17:48:44 +00001741 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001742 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001743 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001744
1745 // Since stacksave produce two values, make sure to remember that we
1746 // legalized both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001747 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1748 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1749 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001750
Chris Lattnerb3266452006-01-13 02:50:02 +00001751 case ISD::STACKRESTORE:
1752 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1753 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001754 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattnerb3266452006-01-13 02:50:02 +00001755
1756 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1757 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001758 case TargetLowering::Legal: break;
1759 case TargetLowering::Custom:
1760 Tmp1 = TLI.LowerOperation(Result, DAG);
1761 if (Tmp1.Val) Result = Tmp1;
Chris Lattnerb3266452006-01-13 02:50:02 +00001762 break;
1763 case TargetLowering::Expand:
Chris Lattnered9b3e12006-01-13 17:48:44 +00001764 // Expand to CopyToReg if the target set
1765 // StackPointerRegisterToSaveRestore.
1766 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1767 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1768 } else {
1769 Result = Tmp1;
1770 }
Chris Lattnerb3266452006-01-13 02:50:02 +00001771 break;
1772 }
1773 break;
1774
Andrew Lenharth01aa5632005-11-11 16:47:30 +00001775 case ISD::READCYCLECOUNTER:
1776 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerd02b0542006-01-28 10:58:55 +00001777 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth73420b32005-12-02 04:56:24 +00001778
1779 // Since rdcc produce two values, make sure to remember that we legalized
1780 // both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001781 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Andrew Lenharth73420b32005-12-02 04:56:24 +00001782 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001783 return Result;
Andrew Lenharth627cbd42005-11-20 21:32:07 +00001784
Evan Cheng31d15fa2005-12-23 07:29:34 +00001785 case ISD::TRUNCSTORE: {
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001786 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1787 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
1788
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001789 assert(isTypeLegal(Node->getOperand(1).getValueType()) &&
1790 "Cannot handle illegal TRUNCSTORE yet!");
1791 Tmp2 = LegalizeOp(Node->getOperand(1));
1792
1793 // The only promote case we handle is TRUNCSTORE:i1 X into
1794 // -> TRUNCSTORE:i8 (and X, 1)
1795 if (cast<VTSDNode>(Node->getOperand(4))->getVT() == MVT::i1 &&
1796 TLI.getOperationAction(ISD::TRUNCSTORE, MVT::i1) ==
1797 TargetLowering::Promote) {
1798 // Promote the bool to a mask then store.
1799 Tmp2 = DAG.getNode(ISD::AND, Tmp2.getValueType(), Tmp2,
1800 DAG.getConstant(1, Tmp2.getValueType()));
1801 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp2, Tmp3,
1802 Node->getOperand(3), DAG.getValueType(MVT::i8));
Chris Lattner2d454bf2005-09-10 00:20:18 +00001803
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001804 } else if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) ||
1805 Tmp3 != Node->getOperand(2)) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001806 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
1807 Node->getOperand(3), Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001808 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00001809
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001810 MVT::ValueType StVT = cast<VTSDNode>(Result.Val->getOperand(4))->getVT();
1811 switch (TLI.getOperationAction(Result.Val->getOpcode(), StVT)) {
1812 default: assert(0 && "This action is not supported yet!");
1813 case TargetLowering::Legal: break;
1814 case TargetLowering::Custom:
1815 Tmp1 = TLI.LowerOperation(Result, DAG);
1816 if (Tmp1.Val) Result = Tmp1;
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001817 break;
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001818 }
1819 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001820 }
Chris Lattner39c67442005-01-14 22:08:15 +00001821 case ISD::SELECT:
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001822 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1823 case Expand: assert(0 && "It's impossible to expand bools");
1824 case Legal:
1825 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1826 break;
1827 case Promote:
1828 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
1829 break;
1830 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001831 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner39c67442005-01-14 22:08:15 +00001832 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner3c0dd462005-01-16 07:29:19 +00001833
Chris Lattnerd02b0542006-01-28 10:58:55 +00001834 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001835
Nate Begeman987121a2005-08-23 04:29:48 +00001836 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner3c0dd462005-01-16 07:29:19 +00001837 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001838 case TargetLowering::Legal: break;
1839 case TargetLowering::Custom: {
1840 Tmp1 = TLI.LowerOperation(Result, DAG);
1841 if (Tmp1.Val) Result = Tmp1;
1842 break;
1843 }
Nate Begemane5b86d72005-08-10 20:51:12 +00001844 case TargetLowering::Expand:
1845 if (Tmp1.getOpcode() == ISD::SETCC) {
1846 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
1847 Tmp2, Tmp3,
1848 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1849 } else {
Chris Lattner539c3fa2005-08-21 18:03:09 +00001850 // Make sure the condition is either zero or one. It may have been
1851 // promoted from something else.
Chris Lattnerd6f5ae42006-01-30 04:22:28 +00001852 unsigned NumBits = MVT::getSizeInBits(Tmp1.getValueType());
1853 if (!TLI.MaskedValueIsZero(Tmp1, (~0ULL >> (64-NumBits))^1))
1854 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Nate Begemane5b86d72005-08-10 20:51:12 +00001855 Result = DAG.getSelectCC(Tmp1,
1856 DAG.getConstant(0, Tmp1.getValueType()),
1857 Tmp2, Tmp3, ISD::SETNE);
1858 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00001859 break;
1860 case TargetLowering::Promote: {
1861 MVT::ValueType NVT =
1862 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1863 unsigned ExtOp, TruncOp;
Evan Chengbe8a8932006-04-12 16:33:18 +00001864 if (MVT::isVector(Tmp2.getValueType())) {
1865 ExtOp = ISD::BIT_CONVERT;
1866 TruncOp = ISD::BIT_CONVERT;
1867 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001868 ExtOp = ISD::ANY_EXTEND;
1869 TruncOp = ISD::TRUNCATE;
Chris Lattner3c0dd462005-01-16 07:29:19 +00001870 } else {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001871 ExtOp = ISD::FP_EXTEND;
1872 TruncOp = ISD::FP_ROUND;
Chris Lattner3c0dd462005-01-16 07:29:19 +00001873 }
1874 // Promote each of the values to the new type.
1875 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
1876 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
1877 // Perform the larger operation, then round down.
1878 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
1879 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
1880 break;
1881 }
1882 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001883 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +00001884 case ISD::SELECT_CC: {
1885 Tmp1 = Node->getOperand(0); // LHS
1886 Tmp2 = Node->getOperand(1); // RHS
Nate Begemane5b86d72005-08-10 20:51:12 +00001887 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
1888 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman7e7f4392006-02-01 07:19:44 +00001889 SDOperand CC = Node->getOperand(4);
Nate Begemane5b86d72005-08-10 20:51:12 +00001890
Nate Begeman7e7f4392006-02-01 07:19:44 +00001891 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
1892
1893 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1894 // the LHS is a legal SETCC itself. In this case, we need to compare
1895 // the result against zero to select between true and false values.
1896 if (Tmp2.Val == 0) {
1897 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
1898 CC = DAG.getCondCode(ISD::SETNE);
1899 }
1900 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
1901
1902 // Everything is legal, see if we should expand this op or something.
1903 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
1904 default: assert(0 && "This action is not supported yet!");
1905 case TargetLowering::Legal: break;
1906 case TargetLowering::Custom:
1907 Tmp1 = TLI.LowerOperation(Result, DAG);
1908 if (Tmp1.Val) Result = Tmp1;
Nate Begemane5b86d72005-08-10 20:51:12 +00001909 break;
Nate Begemane5b86d72005-08-10 20:51:12 +00001910 }
1911 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +00001912 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001913 case ISD::SETCC:
Nate Begeman7e7f4392006-02-01 07:19:44 +00001914 Tmp1 = Node->getOperand(0);
1915 Tmp2 = Node->getOperand(1);
1916 Tmp3 = Node->getOperand(2);
1917 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
1918
1919 // If we had to Expand the SetCC operands into a SELECT node, then it may
1920 // not always be possible to return a true LHS & RHS. In this case, just
1921 // return the value we legalized, returned in the LHS
1922 if (Tmp2.Val == 0) {
1923 Result = Tmp1;
Chris Lattnerdc750592005-01-07 07:47:09 +00001924 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001925 }
Nate Begeman987121a2005-08-23 04:29:48 +00001926
Chris Lattnerf263a232006-01-30 22:43:50 +00001927 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001928 default: assert(0 && "Cannot handle this action for SETCC yet!");
1929 case TargetLowering::Custom:
1930 isCustom = true;
1931 // FALLTHROUGH.
1932 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001933 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001934 if (isCustom) {
1935 Tmp3 = TLI.LowerOperation(Result, DAG);
1936 if (Tmp3.Val) Result = Tmp3;
1937 }
Nate Begeman987121a2005-08-23 04:29:48 +00001938 break;
Andrew Lenharth6ee85662005-11-30 17:12:26 +00001939 case TargetLowering::Promote: {
1940 // First step, figure out the appropriate operation to use.
1941 // Allow SETCC to not be supported for all legal data types
1942 // Mostly this targets FP
1943 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
1944 MVT::ValueType OldVT = NewInTy;
1945
1946 // Scan for the appropriate larger type to use.
1947 while (1) {
1948 NewInTy = (MVT::ValueType)(NewInTy+1);
1949
1950 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
1951 "Fell off of the edge of the integer world");
1952 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
1953 "Fell off of the edge of the floating point world");
1954
1955 // If the target supports SETCC of this type, use it.
Chris Lattner1408c052005-12-22 05:23:45 +00001956 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharth6ee85662005-11-30 17:12:26 +00001957 break;
1958 }
1959 if (MVT::isInteger(NewInTy))
1960 assert(0 && "Cannot promote Legal Integer SETCC yet");
1961 else {
1962 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
1963 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
1964 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001965 Tmp1 = LegalizeOp(Tmp1);
1966 Tmp2 = LegalizeOp(Tmp2);
1967 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Cheng6f86a7d2006-01-17 19:47:13 +00001968 Result = LegalizeOp(Result);
Andrew Lenharth835cbb32005-08-29 20:46:51 +00001969 break;
Andrew Lenharth6ee85662005-11-30 17:12:26 +00001970 }
Nate Begeman987121a2005-08-23 04:29:48 +00001971 case TargetLowering::Expand:
1972 // Expand a setcc node into a select_cc of the same condition, lhs, and
1973 // rhs that selects between const 1 (true) and const 0 (false).
1974 MVT::ValueType VT = Node->getValueType(0);
1975 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
1976 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
1977 Node->getOperand(2));
Nate Begeman987121a2005-08-23 04:29:48 +00001978 break;
1979 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001980 break;
Chris Lattner85d70c62005-01-11 05:57:22 +00001981 case ISD::MEMSET:
1982 case ISD::MEMCPY:
1983 case ISD::MEMMOVE: {
Chris Lattner4487b2e2005-02-01 18:38:28 +00001984 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001985 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
1986
1987 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
1988 switch (getTypeAction(Node->getOperand(2).getValueType())) {
1989 case Expand: assert(0 && "Cannot expand a byte!");
1990 case Legal:
Chris Lattner4487b2e2005-02-01 18:38:28 +00001991 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001992 break;
1993 case Promote:
Chris Lattner4487b2e2005-02-01 18:38:28 +00001994 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001995 break;
1996 }
1997 } else {
Misha Brukman835702a2005-04-21 22:36:52 +00001998 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001999 }
Chris Lattner5aa75e42005-02-02 03:44:41 +00002000
2001 SDOperand Tmp4;
2002 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattnerba08a332005-07-13 01:42:45 +00002003 case Expand: {
2004 // Length is too big, just take the lo-part of the length.
2005 SDOperand HiPart;
2006 ExpandOp(Node->getOperand(3), HiPart, Tmp4);
2007 break;
2008 }
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002009 case Legal:
2010 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002011 break;
2012 case Promote:
2013 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner5aa75e42005-02-02 03:44:41 +00002014 break;
2015 }
2016
2017 SDOperand Tmp5;
2018 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2019 case Expand: assert(0 && "Cannot expand this yet!");
2020 case Legal:
2021 Tmp5 = LegalizeOp(Node->getOperand(4));
2022 break;
2023 case Promote:
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002024 Tmp5 = PromoteOp(Node->getOperand(4));
2025 break;
2026 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002027
2028 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2029 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002030 case TargetLowering::Custom:
2031 isCustom = true;
2032 // FALLTHROUGH
Chris Lattner3c0dd462005-01-16 07:29:19 +00002033 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002034 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002035 if (isCustom) {
2036 Tmp1 = TLI.LowerOperation(Result, DAG);
2037 if (Tmp1.Val) Result = Tmp1;
2038 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002039 break;
2040 case TargetLowering::Expand: {
Chris Lattner85d70c62005-01-11 05:57:22 +00002041 // Otherwise, the target does not support this operation. Lower the
2042 // operation to an explicit libcall as appropriate.
2043 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Anderson20a631f2006-05-03 01:29:57 +00002044 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Chris Lattner85d70c62005-01-11 05:57:22 +00002045 std::vector<std::pair<SDOperand, const Type*> > Args;
2046
Reid Spencer6dced922005-01-12 14:53:45 +00002047 const char *FnName = 0;
Chris Lattner85d70c62005-01-11 05:57:22 +00002048 if (Node->getOpcode() == ISD::MEMSET) {
2049 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
Chris Lattner486d1bc2006-02-20 06:38:35 +00002050 // Extend the (previously legalized) ubyte argument to be an int value
2051 // for the call.
2052 if (Tmp3.getValueType() > MVT::i32)
2053 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2054 else
2055 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Chris Lattner85d70c62005-01-11 05:57:22 +00002056 Args.push_back(std::make_pair(Tmp3, Type::IntTy));
2057 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2058
2059 FnName = "memset";
2060 } else if (Node->getOpcode() == ISD::MEMCPY ||
2061 Node->getOpcode() == ISD::MEMMOVE) {
2062 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
2063 Args.push_back(std::make_pair(Tmp3, IntPtrTy));
2064 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2065 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2066 } else {
2067 assert(0 && "Unknown op!");
2068 }
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002069
Chris Lattner85d70c62005-01-11 05:57:22 +00002070 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattner2e77db62005-05-13 18:50:42 +00002071 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, CallingConv::C, false,
Chris Lattner85d70c62005-01-11 05:57:22 +00002072 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002073 Result = CallResult.second;
Chris Lattner3c0dd462005-01-16 07:29:19 +00002074 break;
2075 }
Chris Lattner85d70c62005-01-11 05:57:22 +00002076 }
2077 break;
2078 }
Chris Lattner5385db52005-05-09 20:23:03 +00002079
Chris Lattner4157c412005-04-02 04:00:59 +00002080 case ISD::SHL_PARTS:
2081 case ISD::SRA_PARTS:
2082 case ISD::SRL_PARTS: {
Chris Lattner97af9d52006-08-08 01:09:31 +00002083 SmallVector<SDOperand, 8> Ops;
Chris Lattnerb3f83b282005-01-20 18:52:28 +00002084 bool Changed = false;
2085 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2086 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2087 Changed |= Ops.back() != Node->getOperand(i);
2088 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002089 if (Changed)
Chris Lattner97af9d52006-08-08 01:09:31 +00002090 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner13fe99c2005-04-02 05:00:07 +00002091
Evan Cheng870e4f82006-01-09 18:31:59 +00002092 switch (TLI.getOperationAction(Node->getOpcode(),
2093 Node->getValueType(0))) {
2094 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002095 case TargetLowering::Legal: break;
2096 case TargetLowering::Custom:
2097 Tmp1 = TLI.LowerOperation(Result, DAG);
2098 if (Tmp1.Val) {
2099 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng870e4f82006-01-09 18:31:59 +00002100 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002101 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng870e4f82006-01-09 18:31:59 +00002102 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2103 if (i == Op.ResNo)
Evan Cheng13e8c9d2006-01-19 04:54:52 +00002104 RetVal = Tmp2;
Evan Cheng870e4f82006-01-09 18:31:59 +00002105 }
Chris Lattnerfb5f4652006-01-10 19:43:26 +00002106 assert(RetVal.Val && "Illegal result number");
Evan Cheng870e4f82006-01-09 18:31:59 +00002107 return RetVal;
2108 }
Evan Cheng870e4f82006-01-09 18:31:59 +00002109 break;
2110 }
2111
Chris Lattner13fe99c2005-04-02 05:00:07 +00002112 // Since these produce multiple values, make sure to remember that we
2113 // legalized all of them.
2114 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2115 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2116 return Result.getValue(Op.ResNo);
Chris Lattnerb3f83b282005-01-20 18:52:28 +00002117 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002118
2119 // Binary operators
Chris Lattnerdc750592005-01-07 07:47:09 +00002120 case ISD::ADD:
2121 case ISD::SUB:
2122 case ISD::MUL:
Nate Begemanadd0c632005-04-11 03:01:51 +00002123 case ISD::MULHS:
2124 case ISD::MULHU:
Chris Lattnerdc750592005-01-07 07:47:09 +00002125 case ISD::UDIV:
2126 case ISD::SDIV:
Chris Lattnerdc750592005-01-07 07:47:09 +00002127 case ISD::AND:
2128 case ISD::OR:
2129 case ISD::XOR:
Chris Lattner32f20bf2005-01-07 21:45:56 +00002130 case ISD::SHL:
2131 case ISD::SRL:
2132 case ISD::SRA:
Chris Lattner6f3b5772005-09-28 22:28:18 +00002133 case ISD::FADD:
2134 case ISD::FSUB:
2135 case ISD::FMUL:
2136 case ISD::FDIV:
Chris Lattnerdc750592005-01-07 07:47:09 +00002137 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharth80fe4112005-07-05 19:52:39 +00002138 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2139 case Expand: assert(0 && "Not possible");
2140 case Legal:
2141 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2142 break;
2143 case Promote:
2144 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2145 break;
2146 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002147
2148 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002149
Andrew Lenharth72594262005-12-24 23:42:32 +00002150 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner87f08092006-04-02 03:57:31 +00002151 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002152 case TargetLowering::Legal: break;
2153 case TargetLowering::Custom:
2154 Tmp1 = TLI.LowerOperation(Result, DAG);
2155 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth30db2ec2005-12-25 01:07:37 +00002156 break;
Chris Lattner87f08092006-04-02 03:57:31 +00002157 case TargetLowering::Expand: {
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00002158 if (Node->getValueType(0) == MVT::i32) {
2159 switch (Node->getOpcode()) {
2160 default: assert(0 && "Do not know how to expand this integer BinOp!");
2161 case ISD::UDIV:
2162 case ISD::SDIV:
2163 const char *FnName = Node->getOpcode() == ISD::UDIV
2164 ? "__udivsi3" : "__divsi3";
2165 SDOperand Dummy;
2166 Result = ExpandLibCall(FnName, Node, Dummy);
2167 };
2168 break;
2169 }
2170
Chris Lattner87f08092006-04-02 03:57:31 +00002171 assert(MVT::isVector(Node->getValueType(0)) &&
2172 "Cannot expand this binary operator!");
2173 // Expand the operation into a bunch of nasty scalar code.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002174 SmallVector<SDOperand, 8> Ops;
Chris Lattner87f08092006-04-02 03:57:31 +00002175 MVT::ValueType EltVT = MVT::getVectorBaseType(Node->getValueType(0));
2176 MVT::ValueType PtrVT = TLI.getPointerTy();
2177 for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2178 i != e; ++i) {
2179 SDOperand Idx = DAG.getConstant(i, PtrVT);
2180 SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2181 SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2182 Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2183 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002184 Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0),
2185 &Ops[0], Ops.size());
Chris Lattner87f08092006-04-02 03:57:31 +00002186 break;
2187 }
Evan Cheng119266e2006-04-12 21:20:24 +00002188 case TargetLowering::Promote: {
2189 switch (Node->getOpcode()) {
2190 default: assert(0 && "Do not know how to promote this BinOp!");
2191 case ISD::AND:
2192 case ISD::OR:
2193 case ISD::XOR: {
2194 MVT::ValueType OVT = Node->getValueType(0);
2195 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2196 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2197 // Bit convert each of the values to the new type.
2198 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2199 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2200 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2201 // Bit convert the result back the original type.
2202 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2203 break;
2204 }
2205 }
2206 }
Andrew Lenharth72594262005-12-24 23:42:32 +00002207 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002208 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00002209
2210 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2211 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2212 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2213 case Expand: assert(0 && "Not possible");
2214 case Legal:
2215 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2216 break;
2217 case Promote:
2218 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2219 break;
2220 }
2221
2222 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2223
2224 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2225 default: assert(0 && "Operation not supported");
2226 case TargetLowering::Custom:
2227 Tmp1 = TLI.LowerOperation(Result, DAG);
2228 if (Tmp1.Val) Result = Tmp1;
Chris Lattner994d8e62006-03-13 06:08:38 +00002229 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00002230 case TargetLowering::Legal: break;
2231 case TargetLowering::Expand:
Chris Lattner994d8e62006-03-13 06:08:38 +00002232 // If this target supports fabs/fneg natively, do this efficiently.
2233 if (TLI.isOperationLegal(ISD::FABS, Tmp1.getValueType()) &&
2234 TLI.isOperationLegal(ISD::FNEG, Tmp1.getValueType())) {
2235 // Get the sign bit of the RHS.
2236 MVT::ValueType IVT =
2237 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2238 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2239 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2240 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2241 // Get the absolute value of the result.
2242 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2243 // Select between the nabs and abs value based on the sign bit of
2244 // the input.
2245 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2246 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2247 AbsVal),
2248 AbsVal);
2249 Result = LegalizeOp(Result);
2250 break;
2251 }
2252
2253 // Otherwise, do bitwise ops!
2254
2255 // copysign -> copysignf/copysign libcall.
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00002256 const char *FnName;
2257 if (Node->getValueType(0) == MVT::f32) {
2258 FnName = "copysignf";
2259 if (Tmp2.getValueType() != MVT::f32) // Force operands to match type.
2260 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2261 DAG.getNode(ISD::FP_ROUND, MVT::f32, Tmp2));
2262 } else {
2263 FnName = "copysign";
2264 if (Tmp2.getValueType() != MVT::f64) // Force operands to match type.
2265 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2266 DAG.getNode(ISD::FP_EXTEND, MVT::f64, Tmp2));
2267 }
2268 SDOperand Dummy;
2269 Result = ExpandLibCall(FnName, Node, Dummy);
2270 break;
2271 }
2272 break;
2273
Nate Begeman5965bd12006-02-17 05:43:56 +00002274 case ISD::ADDC:
2275 case ISD::SUBC:
2276 Tmp1 = LegalizeOp(Node->getOperand(0));
2277 Tmp2 = LegalizeOp(Node->getOperand(1));
2278 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2279 // Since this produces two values, make sure to remember that we legalized
2280 // both of them.
2281 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2282 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2283 return Result;
Misha Brukman835702a2005-04-21 22:36:52 +00002284
Nate Begeman5965bd12006-02-17 05:43:56 +00002285 case ISD::ADDE:
2286 case ISD::SUBE:
2287 Tmp1 = LegalizeOp(Node->getOperand(0));
2288 Tmp2 = LegalizeOp(Node->getOperand(1));
2289 Tmp3 = LegalizeOp(Node->getOperand(2));
2290 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2291 // Since this produces two values, make sure to remember that we legalized
2292 // both of them.
2293 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2294 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2295 return Result;
Nate Begeman5965bd12006-02-17 05:43:56 +00002296
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002297 case ISD::BUILD_PAIR: {
2298 MVT::ValueType PairTy = Node->getValueType(0);
2299 // TODO: handle the case where the Lo and Hi operands are not of legal type
2300 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2301 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2302 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002303 case TargetLowering::Promote:
2304 case TargetLowering::Custom:
2305 assert(0 && "Cannot promote/custom this yet!");
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002306 case TargetLowering::Legal:
2307 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2308 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2309 break;
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002310 case TargetLowering::Expand:
2311 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2312 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2313 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2314 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2315 TLI.getShiftAmountTy()));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002316 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002317 break;
2318 }
2319 break;
2320 }
2321
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002322 case ISD::UREM:
2323 case ISD::SREM:
Chris Lattner6f3b5772005-09-28 22:28:18 +00002324 case ISD::FREM:
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002325 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2326 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002327
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002328 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002329 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2330 case TargetLowering::Custom:
2331 isCustom = true;
2332 // FALLTHROUGH
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002333 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002334 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002335 if (isCustom) {
2336 Tmp1 = TLI.LowerOperation(Result, DAG);
2337 if (Tmp1.Val) Result = Tmp1;
2338 }
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002339 break;
Chris Lattner81914422005-08-03 20:31:37 +00002340 case TargetLowering::Expand:
Evan Cheng1fc7c362006-09-18 23:28:33 +00002341 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Chris Lattner81914422005-08-03 20:31:37 +00002342 if (MVT::isInteger(Node->getValueType(0))) {
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00002343 if (TLI.getOperationAction(DivOpc, Node->getValueType(0)) ==
2344 TargetLowering::Legal) {
2345 // X % Y -> X-X/Y*Y
2346 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng1fc7c362006-09-18 23:28:33 +00002347 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00002348 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2349 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2350 } else {
2351 assert(Node->getValueType(0) == MVT::i32 &&
2352 "Cannot expand this binary operator!");
2353 const char *FnName = Node->getOpcode() == ISD::UREM
2354 ? "__umodsi3" : "__modsi3";
2355 SDOperand Dummy;
2356 Result = ExpandLibCall(FnName, Node, Dummy);
2357 }
Chris Lattner81914422005-08-03 20:31:37 +00002358 } else {
2359 // Floating point mod -> fmod libcall.
2360 const char *FnName = Node->getValueType(0) == MVT::f32 ? "fmodf":"fmod";
2361 SDOperand Dummy;
Chris Lattner10f67752006-01-28 04:28:26 +00002362 Result = ExpandLibCall(FnName, Node, Dummy);
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002363 }
2364 break;
2365 }
2366 break;
Nate Begemane74795c2006-01-25 18:21:52 +00002367 case ISD::VAARG: {
2368 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2369 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2370
Chris Lattner364b89a2006-01-28 07:42:08 +00002371 MVT::ValueType VT = Node->getValueType(0);
Nate Begemane74795c2006-01-25 18:21:52 +00002372 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2373 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002374 case TargetLowering::Custom:
2375 isCustom = true;
2376 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00002377 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002378 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2379 Result = Result.getValue(0);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002380 Tmp1 = Result.getValue(1);
2381
2382 if (isCustom) {
2383 Tmp2 = TLI.LowerOperation(Result, DAG);
2384 if (Tmp2.Val) {
2385 Result = LegalizeOp(Tmp2);
2386 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2387 }
2388 }
Nate Begemane74795c2006-01-25 18:21:52 +00002389 break;
2390 case TargetLowering::Expand: {
Evan Chenge71fe34d2006-10-09 20:57:25 +00002391 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begemane74795c2006-01-25 18:21:52 +00002392 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Chenge71fe34d2006-10-09 20:57:25 +00002393 SV->getValue(), SV->getOffset());
Nate Begemane74795c2006-01-25 18:21:52 +00002394 // Increment the pointer, VAList, to the next vaarg
2395 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2396 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2397 TLI.getPointerTy()));
2398 // Store the incremented VAList to the legalized pointer
Evan Chengdf9ac472006-10-05 23:01:46 +00002399 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, Node->getOperand(2));
Nate Begemane74795c2006-01-25 18:21:52 +00002400 // Load the actual argument out of the pointer VAList
Evan Chenge71fe34d2006-10-09 20:57:25 +00002401 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002402 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemane74795c2006-01-25 18:21:52 +00002403 Result = LegalizeOp(Result);
2404 break;
2405 }
2406 }
2407 // Since VAARG produces two values, make sure to remember that we
2408 // legalized both of them.
2409 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002410 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2411 return Op.ResNo ? Tmp1 : Result;
Nate Begemane74795c2006-01-25 18:21:52 +00002412 }
2413
2414 case ISD::VACOPY:
2415 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2416 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2417 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
2418
2419 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2420 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002421 case TargetLowering::Custom:
2422 isCustom = true;
2423 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00002424 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002425 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2426 Node->getOperand(3), Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002427 if (isCustom) {
2428 Tmp1 = TLI.LowerOperation(Result, DAG);
2429 if (Tmp1.Val) Result = Tmp1;
2430 }
Nate Begemane74795c2006-01-25 18:21:52 +00002431 break;
2432 case TargetLowering::Expand:
2433 // This defaults to loading a pointer from the input and storing it to the
2434 // output, returning the chain.
Evan Chenge71fe34d2006-10-09 20:57:25 +00002435 SrcValueSDNode *SVD = cast<SrcValueSDNode>(Node->getOperand(3));
Evan Chenge71fe34d2006-10-09 20:57:25 +00002436 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, SVD->getValue(),
2437 SVD->getOffset());
Evan Chengdf9ac472006-10-05 23:01:46 +00002438 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, Node->getOperand(4));
Nate Begemane74795c2006-01-25 18:21:52 +00002439 break;
2440 }
2441 break;
2442
2443 case ISD::VAEND:
2444 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2445 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2446
2447 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2448 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002449 case TargetLowering::Custom:
2450 isCustom = true;
2451 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00002452 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002453 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002454 if (isCustom) {
2455 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2456 if (Tmp1.Val) Result = Tmp1;
2457 }
Nate Begemane74795c2006-01-25 18:21:52 +00002458 break;
2459 case TargetLowering::Expand:
2460 Result = Tmp1; // Default to a no-op, return the chain
2461 break;
2462 }
2463 break;
2464
2465 case ISD::VASTART:
2466 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2467 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2468
Chris Lattnerd02b0542006-01-28 10:58:55 +00002469 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2470
Nate Begemane74795c2006-01-25 18:21:52 +00002471 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2472 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002473 case TargetLowering::Legal: break;
2474 case TargetLowering::Custom:
2475 Tmp1 = TLI.LowerOperation(Result, DAG);
2476 if (Tmp1.Val) Result = Tmp1;
Nate Begemane74795c2006-01-25 18:21:52 +00002477 break;
2478 }
2479 break;
2480
Nate Begeman1b8121b2006-01-11 21:21:00 +00002481 case ISD::ROTL:
2482 case ISD::ROTR:
2483 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2484 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002485
2486 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
2487 "Cannot handle this yet!");
Chris Lattnerd02b0542006-01-28 10:58:55 +00002488 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Nate Begeman1b8121b2006-01-11 21:21:00 +00002489 break;
2490
Nate Begeman2fba8a32006-01-14 03:14:10 +00002491 case ISD::BSWAP:
2492 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2493 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002494 case TargetLowering::Custom:
2495 assert(0 && "Cannot custom legalize this yet!");
2496 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002497 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002498 break;
2499 case TargetLowering::Promote: {
2500 MVT::ValueType OVT = Tmp1.getValueType();
2501 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2502 unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
Nate Begeman2fba8a32006-01-14 03:14:10 +00002503
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002504 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2505 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2506 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2507 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2508 break;
2509 }
2510 case TargetLowering::Expand:
2511 Result = ExpandBSWAP(Tmp1);
2512 break;
Nate Begeman2fba8a32006-01-14 03:14:10 +00002513 }
2514 break;
2515
Andrew Lenharth5e177822005-05-03 17:19:30 +00002516 case ISD::CTPOP:
2517 case ISD::CTTZ:
2518 case ISD::CTLZ:
2519 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2520 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002521 case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
Andrew Lenharth5e177822005-05-03 17:19:30 +00002522 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002523 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth5e177822005-05-03 17:19:30 +00002524 break;
2525 case TargetLowering::Promote: {
2526 MVT::ValueType OVT = Tmp1.getValueType();
2527 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner55e9cde2005-05-11 04:51:16 +00002528
2529 // Zero extend the argument.
Andrew Lenharth5e177822005-05-03 17:19:30 +00002530 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2531 // Perform the larger operation, then subtract if needed.
2532 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002533 switch (Node->getOpcode()) {
Andrew Lenharth5e177822005-05-03 17:19:30 +00002534 case ISD::CTPOP:
2535 Result = Tmp1;
2536 break;
2537 case ISD::CTTZ:
2538 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattnerd47675e2005-08-09 20:20:18 +00002539 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2540 DAG.getConstant(getSizeInBits(NVT), NVT),
2541 ISD::SETEQ);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002542 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Andrew Lenharth5e177822005-05-03 17:19:30 +00002543 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2544 break;
2545 case ISD::CTLZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002546 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002547 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2548 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharth5e177822005-05-03 17:19:30 +00002549 getSizeInBits(OVT), NVT));
2550 break;
2551 }
2552 break;
2553 }
Andrew Lenharth5e177822005-05-03 17:19:30 +00002554 case TargetLowering::Expand:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002555 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth5e177822005-05-03 17:19:30 +00002556 break;
2557 }
2558 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002559
Chris Lattner13fe99c2005-04-02 05:00:07 +00002560 // Unary operators
2561 case ISD::FABS:
2562 case ISD::FNEG:
Chris Lattner9d6fa982005-04-28 21:44:33 +00002563 case ISD::FSQRT:
2564 case ISD::FSIN:
2565 case ISD::FCOS:
Chris Lattner13fe99c2005-04-02 05:00:07 +00002566 Tmp1 = LegalizeOp(Node->getOperand(0));
2567 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002568 case TargetLowering::Promote:
2569 case TargetLowering::Custom:
Evan Cheng2443ab92006-01-31 18:14:25 +00002570 isCustom = true;
2571 // FALLTHROUGH
Chris Lattner13fe99c2005-04-02 05:00:07 +00002572 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002573 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng2443ab92006-01-31 18:14:25 +00002574 if (isCustom) {
2575 Tmp1 = TLI.LowerOperation(Result, DAG);
2576 if (Tmp1.Val) Result = Tmp1;
2577 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002578 break;
Chris Lattner13fe99c2005-04-02 05:00:07 +00002579 case TargetLowering::Expand:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002580 switch (Node->getOpcode()) {
2581 default: assert(0 && "Unreachable!");
2582 case ISD::FNEG:
Chris Lattner13fe99c2005-04-02 05:00:07 +00002583 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2584 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002585 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattner80026402005-04-30 04:43:14 +00002586 break;
Chris Lattner80026402005-04-30 04:43:14 +00002587 case ISD::FABS: {
Chris Lattnera0c72cf2005-04-02 05:26:37 +00002588 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2589 MVT::ValueType VT = Node->getValueType(0);
2590 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattnerd47675e2005-08-09 20:20:18 +00002591 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattnera0c72cf2005-04-02 05:26:37 +00002592 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2593 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattner80026402005-04-30 04:43:14 +00002594 break;
2595 }
2596 case ISD::FSQRT:
2597 case ISD::FSIN:
2598 case ISD::FCOS: {
2599 MVT::ValueType VT = Node->getValueType(0);
Chris Lattner80026402005-04-30 04:43:14 +00002600 const char *FnName = 0;
2601 switch(Node->getOpcode()) {
2602 case ISD::FSQRT: FnName = VT == MVT::f32 ? "sqrtf" : "sqrt"; break;
2603 case ISD::FSIN: FnName = VT == MVT::f32 ? "sinf" : "sin"; break;
2604 case ISD::FCOS: FnName = VT == MVT::f32 ? "cosf" : "cos"; break;
2605 default: assert(0 && "Unreachable!");
2606 }
Nate Begeman77558da2005-08-04 21:43:28 +00002607 SDOperand Dummy;
Chris Lattner10f67752006-01-28 04:28:26 +00002608 Result = ExpandLibCall(FnName, Node, Dummy);
Chris Lattner80026402005-04-30 04:43:14 +00002609 break;
2610 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002611 }
2612 break;
2613 }
2614 break;
Chris Lattnerf0359b32006-09-09 06:03:30 +00002615 case ISD::FPOWI: {
2616 // We always lower FPOWI into a libcall. No target support it yet.
2617 const char *FnName = Node->getValueType(0) == MVT::f32
2618 ? "__powisf2" : "__powidf2";
2619 SDOperand Dummy;
2620 Result = ExpandLibCall(FnName, Node, Dummy);
2621 break;
2622 }
Chris Lattner36e663d2005-12-23 00:16:34 +00002623 case ISD::BIT_CONVERT:
Chris Lattner763dfd72006-01-23 07:30:46 +00002624 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner36e663d2005-12-23 00:16:34 +00002625 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Chris Lattner763dfd72006-01-23 07:30:46 +00002626 } else {
Chris Lattner36e663d2005-12-23 00:16:34 +00002627 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2628 Node->getOperand(0).getValueType())) {
2629 default: assert(0 && "Unknown operation action!");
2630 case TargetLowering::Expand:
2631 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2632 break;
2633 case TargetLowering::Legal:
2634 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002635 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner36e663d2005-12-23 00:16:34 +00002636 break;
2637 }
2638 }
2639 break;
Chris Lattnera4f68052006-03-24 02:26:29 +00002640 case ISD::VBIT_CONVERT: {
2641 assert(Op.getOperand(0).getValueType() == MVT::Vector &&
2642 "Can only have VBIT_CONVERT where input or output is MVT::Vector!");
2643
2644 // The input has to be a vector type, we have to either scalarize it, pack
2645 // it, or convert it based on whether the input vector type is legal.
2646 SDNode *InVal = Node->getOperand(0).Val;
2647 unsigned NumElems =
2648 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
2649 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
2650
2651 // Figure out if there is a Packed type corresponding to this Vector
2652 // type. If so, convert to the packed type.
2653 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
2654 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
2655 // Turn this into a bit convert of the packed input.
2656 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2657 PackVectorOp(Node->getOperand(0), TVT));
2658 break;
2659 } else if (NumElems == 1) {
2660 // Turn this into a bit convert of the scalar input.
2661 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2662 PackVectorOp(Node->getOperand(0), EVT));
2663 break;
2664 } else {
2665 // FIXME: UNIMP! Store then reload
2666 assert(0 && "Cast from unsupported vector type not implemented yet!");
2667 }
2668 }
2669
Chris Lattner13fe99c2005-04-02 05:00:07 +00002670 // Conversion operators. The source and destination have different types.
Chris Lattner2a6db3c2005-01-08 08:08:56 +00002671 case ISD::SINT_TO_FP:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002672 case ISD::UINT_TO_FP: {
2673 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattnerdc750592005-01-07 07:47:09 +00002674 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2675 case Legal:
Jeff Cohen546fd592005-07-30 18:33:25 +00002676 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002677 Node->getOperand(0).getValueType())) {
2678 default: assert(0 && "Unknown operation action!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002679 case TargetLowering::Custom:
2680 isCustom = true;
2681 // FALLTHROUGH
2682 case TargetLowering::Legal:
2683 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002684 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002685 if (isCustom) {
2686 Tmp1 = TLI.LowerOperation(Result, DAG);
2687 if (Tmp1.Val) Result = Tmp1;
2688 }
2689 break;
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002690 case TargetLowering::Expand:
Jim Laskeyf2516a92005-08-17 00:39:29 +00002691 Result = ExpandLegalINT_TO_FP(isSigned,
2692 LegalizeOp(Node->getOperand(0)),
2693 Node->getValueType(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002694 break;
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002695 case TargetLowering::Promote:
2696 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2697 Node->getValueType(0),
2698 isSigned);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002699 break;
Andrew Lenharth8d17c702005-11-30 06:43:03 +00002700 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002701 break;
Chris Lattnera65a2f02005-01-07 22:37:48 +00002702 case Expand:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002703 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2704 Node->getValueType(0), Node->getOperand(0));
2705 break;
2706 case Promote:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002707 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002708 if (isSigned) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002709 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2710 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002711 } else {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002712 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2713 Node->getOperand(0).getValueType());
Chris Lattneraac464e2005-01-21 06:05:23 +00002714 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002715 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2716 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002717 break;
2718 }
2719 break;
2720 }
2721 case ISD::TRUNCATE:
2722 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2723 case Legal:
2724 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002725 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002726 break;
2727 case Expand:
2728 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2729
2730 // Since the result is legal, we should just be able to truncate the low
2731 // part of the source.
2732 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2733 break;
2734 case Promote:
2735 Result = PromoteOp(Node->getOperand(0));
2736 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2737 break;
2738 }
2739 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00002740
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002741 case ISD::FP_TO_SINT:
2742 case ISD::FP_TO_UINT:
2743 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2744 case Legal:
Chris Lattnerf59b2da2005-07-30 00:04:12 +00002745 Tmp1 = LegalizeOp(Node->getOperand(0));
2746
Chris Lattner44fe26f2005-07-29 00:11:56 +00002747 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2748 default: assert(0 && "Unknown operation action!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002749 case TargetLowering::Custom:
2750 isCustom = true;
2751 // FALLTHROUGH
2752 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002753 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002754 if (isCustom) {
2755 Tmp1 = TLI.LowerOperation(Result, DAG);
2756 if (Tmp1.Val) Result = Tmp1;
2757 }
2758 break;
2759 case TargetLowering::Promote:
2760 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2761 Node->getOpcode() == ISD::FP_TO_SINT);
2762 break;
Chris Lattner44fe26f2005-07-29 00:11:56 +00002763 case TargetLowering::Expand:
Nate Begeman36853ee2005-08-14 01:20:53 +00002764 if (Node->getOpcode() == ISD::FP_TO_UINT) {
2765 SDOperand True, False;
2766 MVT::ValueType VT = Node->getOperand(0).getValueType();
2767 MVT::ValueType NVT = Node->getValueType(0);
2768 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2769 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2770 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2771 Node->getOperand(0), Tmp2, ISD::SETLT);
2772 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2773 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner6f3b5772005-09-28 22:28:18 +00002774 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begeman36853ee2005-08-14 01:20:53 +00002775 Tmp2));
2776 False = DAG.getNode(ISD::XOR, NVT, False,
2777 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002778 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2779 break;
Nate Begeman36853ee2005-08-14 01:20:53 +00002780 } else {
2781 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2782 }
2783 break;
Chris Lattnerdff50ca2005-08-26 00:14:16 +00002784 }
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002785 break;
2786 case Expand:
2787 assert(0 && "Shouldn't need to expand other operators here!");
2788 case Promote:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002789 Tmp1 = PromoteOp(Node->getOperand(0));
2790 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2791 Result = LegalizeOp(Result);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002792 break;
2793 }
2794 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00002795
Chris Lattner7753f172005-09-02 00:18:10 +00002796 case ISD::ANY_EXTEND:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002797 case ISD::ZERO_EXTEND:
2798 case ISD::SIGN_EXTEND:
2799 case ISD::FP_EXTEND:
2800 case ISD::FP_ROUND:
2801 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002802 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002803 case Legal:
2804 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002805 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002806 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002807 case Promote:
2808 switch (Node->getOpcode()) {
Chris Lattner7753f172005-09-02 00:18:10 +00002809 case ISD::ANY_EXTEND:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002810 Tmp1 = PromoteOp(Node->getOperand(0));
2811 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner7753f172005-09-02 00:18:10 +00002812 break;
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002813 case ISD::ZERO_EXTEND:
2814 Result = PromoteOp(Node->getOperand(0));
Chris Lattner7753f172005-09-02 00:18:10 +00002815 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner0e852af2005-04-13 02:38:47 +00002816 Result = DAG.getZeroExtendInReg(Result,
2817 Node->getOperand(0).getValueType());
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002818 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002819 case ISD::SIGN_EXTEND:
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002820 Result = PromoteOp(Node->getOperand(0));
Chris Lattner7753f172005-09-02 00:18:10 +00002821 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002822 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00002823 Result,
2824 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002825 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002826 case ISD::FP_EXTEND:
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002827 Result = PromoteOp(Node->getOperand(0));
2828 if (Result.getValueType() != Op.getValueType())
2829 // Dynamically dead while we have only 2 FP types.
2830 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
2831 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002832 case ISD::FP_ROUND:
Chris Lattner3ba56b32005-01-16 05:06:12 +00002833 Result = PromoteOp(Node->getOperand(0));
2834 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
2835 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002836 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002837 }
2838 break;
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002839 case ISD::FP_ROUND_INREG:
Chris Lattner0e852af2005-04-13 02:38:47 +00002840 case ISD::SIGN_EXTEND_INREG: {
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002841 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0b6ba902005-07-10 00:07:11 +00002842 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner99222f72005-01-15 07:15:18 +00002843
2844 // If this operation is not supported, convert it to a shl/shr or load/store
2845 // pair.
Chris Lattner3c0dd462005-01-16 07:29:19 +00002846 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
2847 default: assert(0 && "This action not supported for this op yet!");
2848 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002849 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner3c0dd462005-01-16 07:29:19 +00002850 break;
2851 case TargetLowering::Expand:
Chris Lattner99222f72005-01-15 07:15:18 +00002852 // If this is an integer extend and shifts are supported, do that.
Chris Lattner0e852af2005-04-13 02:38:47 +00002853 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner99222f72005-01-15 07:15:18 +00002854 // NOTE: we could fall back on load/store here too for targets without
2855 // SAR. However, it is doubtful that any exist.
2856 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
2857 MVT::getSizeInBits(ExtraVT);
Chris Lattnerec218372005-01-22 00:31:52 +00002858 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner99222f72005-01-15 07:15:18 +00002859 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
2860 Node->getOperand(0), ShiftCst);
2861 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
2862 Result, ShiftCst);
2863 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
2864 // The only way we can lower this is to turn it into a STORETRUNC,
2865 // EXTLOAD pair, targetting a temporary location (a stack slot).
2866
2867 // NOTE: there is a choice here between constantly creating new stack
2868 // slots and always reusing the same one. We currently always create
2869 // new ones, as reuse may inhibit scheduling.
2870 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Owen Anderson20a631f2006-05-03 01:29:57 +00002871 unsigned TySize = (unsigned)TLI.getTargetData()->getTypeSize(Ty);
2872 unsigned Align = TLI.getTargetData()->getTypeAlignment(Ty);
Chris Lattner99222f72005-01-15 07:15:18 +00002873 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukman835702a2005-04-21 22:36:52 +00002874 int SSFI =
Chris Lattner99222f72005-01-15 07:15:18 +00002875 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
2876 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
2877 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, DAG.getEntryNode(),
Chris Lattner5385db52005-05-09 20:23:03 +00002878 Node->getOperand(0), StackSlot,
Chris Lattner36db1ed2005-07-10 00:29:18 +00002879 DAG.getSrcValue(NULL), DAG.getValueType(ExtraVT));
Chris Lattnerde0a4b12005-07-10 01:55:33 +00002880 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
Evan Chenge71fe34d2006-10-09 20:57:25 +00002881 Result, StackSlot, NULL, 0, ExtraVT);
Chris Lattner99222f72005-01-15 07:15:18 +00002882 } else {
2883 assert(0 && "Unknown op");
2884 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002885 break;
Chris Lattner99222f72005-01-15 07:15:18 +00002886 }
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002887 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00002888 }
Chris Lattner99222f72005-01-15 07:15:18 +00002889 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002890
Chris Lattner101ea662006-04-08 04:13:17 +00002891 assert(Result.getValueType() == Op.getValueType() &&
2892 "Bad legalization!");
2893
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002894 // Make sure that the generated code is itself legal.
2895 if (Result != Op)
2896 Result = LegalizeOp(Result);
Chris Lattnerdc750592005-01-07 07:47:09 +00002897
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002898 // Note that LegalizeOp may be reentered even from single-use nodes, which
2899 // means that we always must cache transformed nodes.
2900 AddLegalizedOperand(Op, Result);
Chris Lattnerdc750592005-01-07 07:47:09 +00002901 return Result;
2902}
2903
Chris Lattner4d978642005-01-15 22:16:26 +00002904/// PromoteOp - Given an operation that produces a value in an invalid type,
2905/// promote it to compute the value into a larger type. The produced value will
2906/// have the correct bits for the low portion of the register, but no guarantee
2907/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002908SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
2909 MVT::ValueType VT = Op.getValueType();
Chris Lattner87a769c2005-01-16 01:11:45 +00002910 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002911 assert(getTypeAction(VT) == Promote &&
2912 "Caller should expand or legalize operands that are not promotable!");
2913 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
2914 "Cannot promote to smaller type!");
2915
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002916 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002917 SDOperand Result;
2918 SDNode *Node = Op.Val;
2919
Chris Lattner1a570f12005-09-02 20:32:45 +00002920 std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
2921 if (I != PromotedNodes.end()) return I->second;
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002922
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002923 switch (Node->getOpcode()) {
Chris Lattner33182322005-08-16 21:55:35 +00002924 case ISD::CopyFromReg:
2925 assert(0 && "CopyFromReg must be legal!");
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002926 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00002927#ifndef NDEBUG
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002928 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00002929#endif
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002930 assert(0 && "Do not know how to promote this operator!");
2931 abort();
Nate Begemancda9aa72005-04-01 22:34:39 +00002932 case ISD::UNDEF:
2933 Result = DAG.getNode(ISD::UNDEF, NVT);
2934 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002935 case ISD::Constant:
Chris Lattner9a4ad482005-08-30 16:56:19 +00002936 if (VT != MVT::i1)
2937 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
2938 else
2939 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002940 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
2941 break;
2942 case ISD::ConstantFP:
2943 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
2944 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
2945 break;
Chris Lattner9f2c4a52005-01-18 17:54:55 +00002946
Chris Lattner2cb338d2005-01-18 02:59:52 +00002947 case ISD::SETCC:
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00002948 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattnerd47675e2005-08-09 20:20:18 +00002949 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
2950 Node->getOperand(1), Node->getOperand(2));
Chris Lattner2cb338d2005-01-18 02:59:52 +00002951 break;
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002952
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002953 case ISD::TRUNCATE:
2954 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2955 case Legal:
2956 Result = LegalizeOp(Node->getOperand(0));
2957 assert(Result.getValueType() >= NVT &&
2958 "This truncation doesn't make sense!");
2959 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
2960 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
2961 break;
Chris Lattnerbf8c1ad2005-01-28 22:52:50 +00002962 case Promote:
2963 // The truncation is not required, because we don't guarantee anything
2964 // about high bits anyway.
2965 Result = PromoteOp(Node->getOperand(0));
2966 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002967 case Expand:
Nate Begemancc00a7c2005-04-04 00:57:08 +00002968 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2969 // Truncate the low part of the expanded value to the result type
Chris Lattner4398daf2005-08-01 18:16:37 +00002970 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002971 }
2972 break;
Chris Lattner4d978642005-01-15 22:16:26 +00002973 case ISD::SIGN_EXTEND:
2974 case ISD::ZERO_EXTEND:
Chris Lattner7753f172005-09-02 00:18:10 +00002975 case ISD::ANY_EXTEND:
Chris Lattner4d978642005-01-15 22:16:26 +00002976 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2977 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
2978 case Legal:
2979 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002980 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner4d978642005-01-15 22:16:26 +00002981 break;
2982 case Promote:
2983 // Promote the reg if it's smaller.
2984 Result = PromoteOp(Node->getOperand(0));
2985 // The high bits are not guaranteed to be anything. Insert an extend.
2986 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner05596912005-02-04 18:39:19 +00002987 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner0b6ba902005-07-10 00:07:11 +00002988 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner7753f172005-09-02 00:18:10 +00002989 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner0e852af2005-04-13 02:38:47 +00002990 Result = DAG.getZeroExtendInReg(Result,
2991 Node->getOperand(0).getValueType());
Chris Lattner4d978642005-01-15 22:16:26 +00002992 break;
2993 }
2994 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00002995 case ISD::BIT_CONVERT:
2996 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2997 Result = PromoteOp(Result);
2998 break;
2999
Chris Lattner4d978642005-01-15 22:16:26 +00003000 case ISD::FP_EXTEND:
3001 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
3002 case ISD::FP_ROUND:
3003 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3004 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3005 case Promote: assert(0 && "Unreachable with 2 FP types!");
3006 case Legal:
3007 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003008 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner0b6ba902005-07-10 00:07:11 +00003009 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00003010 break;
3011 }
3012 break;
3013
3014 case ISD::SINT_TO_FP:
3015 case ISD::UINT_TO_FP:
3016 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3017 case Legal:
Chris Lattneraac464e2005-01-21 06:05:23 +00003018 // No extra round required here.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003019 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner4d978642005-01-15 22:16:26 +00003020 break;
3021
3022 case Promote:
3023 Result = PromoteOp(Node->getOperand(0));
3024 if (Node->getOpcode() == ISD::SINT_TO_FP)
3025 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00003026 Result,
3027 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner4d978642005-01-15 22:16:26 +00003028 else
Chris Lattner0e852af2005-04-13 02:38:47 +00003029 Result = DAG.getZeroExtendInReg(Result,
3030 Node->getOperand(0).getValueType());
Chris Lattneraac464e2005-01-21 06:05:23 +00003031 // No extra round required here.
3032 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner4d978642005-01-15 22:16:26 +00003033 break;
3034 case Expand:
Chris Lattneraac464e2005-01-21 06:05:23 +00003035 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3036 Node->getOperand(0));
Chris Lattneraac464e2005-01-21 06:05:23 +00003037 // Round if we cannot tolerate excess precision.
3038 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003039 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3040 DAG.getValueType(VT));
Chris Lattneraac464e2005-01-21 06:05:23 +00003041 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003042 }
Chris Lattner4d978642005-01-15 22:16:26 +00003043 break;
3044
Chris Lattner268d4572005-12-09 17:32:47 +00003045 case ISD::SIGN_EXTEND_INREG:
3046 Result = PromoteOp(Node->getOperand(0));
3047 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3048 Node->getOperand(1));
3049 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003050 case ISD::FP_TO_SINT:
3051 case ISD::FP_TO_UINT:
3052 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3053 case Legal:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003054 Tmp1 = Node->getOperand(0);
Chris Lattner4d978642005-01-15 22:16:26 +00003055 break;
3056 case Promote:
3057 // The input result is prerounded, so we don't have to do anything
3058 // special.
3059 Tmp1 = PromoteOp(Node->getOperand(0));
3060 break;
3061 case Expand:
3062 assert(0 && "not implemented");
3063 }
Nate Begeman36853ee2005-08-14 01:20:53 +00003064 // If we're promoting a UINT to a larger size, check to see if the new node
3065 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3066 // we can use that instead. This allows us to generate better code for
3067 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3068 // legal, such as PowerPC.
3069 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00003070 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemand8f2a1a2005-10-25 23:47:25 +00003071 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3072 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begeman36853ee2005-08-14 01:20:53 +00003073 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3074 } else {
3075 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3076 }
Chris Lattner4d978642005-01-15 22:16:26 +00003077 break;
3078
Chris Lattner13fe99c2005-04-02 05:00:07 +00003079 case ISD::FABS:
3080 case ISD::FNEG:
3081 Tmp1 = PromoteOp(Node->getOperand(0));
3082 assert(Tmp1.getValueType() == NVT);
3083 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3084 // NOTE: we do not have to do any extra rounding here for
3085 // NoExcessFPPrecision, because we know the input will have the appropriate
3086 // precision, and these operations don't modify precision at all.
3087 break;
3088
Chris Lattner9d6fa982005-04-28 21:44:33 +00003089 case ISD::FSQRT:
3090 case ISD::FSIN:
3091 case ISD::FCOS:
3092 Tmp1 = PromoteOp(Node->getOperand(0));
3093 assert(Tmp1.getValueType() == NVT);
3094 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003095 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003096 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3097 DAG.getValueType(VT));
Chris Lattner9d6fa982005-04-28 21:44:33 +00003098 break;
3099
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003100 case ISD::AND:
3101 case ISD::OR:
3102 case ISD::XOR:
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003103 case ISD::ADD:
Chris Lattner4d978642005-01-15 22:16:26 +00003104 case ISD::SUB:
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003105 case ISD::MUL:
3106 // The input may have strange things in the top bits of the registers, but
Chris Lattner6f3b5772005-09-28 22:28:18 +00003107 // these operations don't care. They may have weird bits going out, but
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003108 // that too is okay if they are integer operations.
3109 Tmp1 = PromoteOp(Node->getOperand(0));
3110 Tmp2 = PromoteOp(Node->getOperand(1));
3111 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3112 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner6f3b5772005-09-28 22:28:18 +00003113 break;
3114 case ISD::FADD:
3115 case ISD::FSUB:
3116 case ISD::FMUL:
Chris Lattner6f3b5772005-09-28 22:28:18 +00003117 Tmp1 = PromoteOp(Node->getOperand(0));
3118 Tmp2 = PromoteOp(Node->getOperand(1));
3119 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3120 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3121
3122 // Floating point operations will give excess precision that we may not be
3123 // able to tolerate. If we DO allow excess precision, just leave it,
3124 // otherwise excise it.
Chris Lattner4d978642005-01-15 22:16:26 +00003125 // FIXME: Why would we need to round FP ops more than integer ones?
3126 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner6f3b5772005-09-28 22:28:18 +00003127 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003128 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3129 DAG.getValueType(VT));
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003130 break;
3131
Chris Lattner4d978642005-01-15 22:16:26 +00003132 case ISD::SDIV:
3133 case ISD::SREM:
3134 // These operators require that their input be sign extended.
3135 Tmp1 = PromoteOp(Node->getOperand(0));
3136 Tmp2 = PromoteOp(Node->getOperand(1));
3137 if (MVT::isInteger(NVT)) {
Chris Lattner0b6ba902005-07-10 00:07:11 +00003138 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3139 DAG.getValueType(VT));
3140 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3141 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00003142 }
3143 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3144
3145 // Perform FP_ROUND: this is probably overly pessimistic.
3146 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003147 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3148 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00003149 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00003150 case ISD::FDIV:
3151 case ISD::FREM:
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003152 case ISD::FCOPYSIGN:
Chris Lattner6f3b5772005-09-28 22:28:18 +00003153 // These operators require that their input be fp extended.
Nate Begeman1a225d22006-05-09 18:20:51 +00003154 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3155 case Legal:
3156 Tmp1 = LegalizeOp(Node->getOperand(0));
3157 break;
3158 case Promote:
3159 Tmp1 = PromoteOp(Node->getOperand(0));
3160 break;
3161 case Expand:
3162 assert(0 && "not implemented");
3163 }
3164 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3165 case Legal:
3166 Tmp2 = LegalizeOp(Node->getOperand(1));
3167 break;
3168 case Promote:
3169 Tmp2 = PromoteOp(Node->getOperand(1));
3170 break;
3171 case Expand:
3172 assert(0 && "not implemented");
3173 }
Chris Lattner6f3b5772005-09-28 22:28:18 +00003174 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3175
3176 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003177 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner6f3b5772005-09-28 22:28:18 +00003178 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3179 DAG.getValueType(VT));
3180 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003181
3182 case ISD::UDIV:
3183 case ISD::UREM:
3184 // These operators require that their input be zero extended.
3185 Tmp1 = PromoteOp(Node->getOperand(0));
3186 Tmp2 = PromoteOp(Node->getOperand(1));
3187 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner0e852af2005-04-13 02:38:47 +00003188 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3189 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner4d978642005-01-15 22:16:26 +00003190 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3191 break;
3192
3193 case ISD::SHL:
3194 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003195 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00003196 break;
3197 case ISD::SRA:
3198 // The input value must be properly sign extended.
3199 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0b6ba902005-07-10 00:07:11 +00003200 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3201 DAG.getValueType(VT));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003202 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00003203 break;
3204 case ISD::SRL:
3205 // The input value must be properly zero extended.
3206 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0e852af2005-04-13 02:38:47 +00003207 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003208 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00003209 break;
Nate Begeman595ec732006-01-28 03:14:31 +00003210
3211 case ISD::VAARG:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003212 Tmp1 = Node->getOperand(0); // Get the chain.
3213 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman595ec732006-01-28 03:14:31 +00003214 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3215 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3216 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3217 } else {
Evan Chenge71fe34d2006-10-09 20:57:25 +00003218 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begeman595ec732006-01-28 03:14:31 +00003219 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Chenge71fe34d2006-10-09 20:57:25 +00003220 SV->getValue(), SV->getOffset());
Nate Begeman595ec732006-01-28 03:14:31 +00003221 // Increment the pointer, VAList, to the next vaarg
3222 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3223 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3224 TLI.getPointerTy()));
3225 // Store the incremented VAList to the legalized pointer
Evan Chengdf9ac472006-10-05 23:01:46 +00003226 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, Node->getOperand(2));
Nate Begeman595ec732006-01-28 03:14:31 +00003227 // Load the actual argument out of the pointer VAList
Evan Chenge71fe34d2006-10-09 20:57:25 +00003228 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman595ec732006-01-28 03:14:31 +00003229 }
3230 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003231 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman595ec732006-01-28 03:14:31 +00003232 break;
3233
Evan Chenge71fe34d2006-10-09 20:57:25 +00003234 case ISD::LOAD: {
3235 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Chengdc6a3aa2006-10-10 07:51:21 +00003236 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
3237 ? ISD::EXTLOAD : LD->getExtensionType();
3238 Result = DAG.getExtLoad(ExtType, NVT,
3239 LD->getChain(), LD->getBasePtr(),
Evan Chenge71fe34d2006-10-09 20:57:25 +00003240 LD->getSrcValue(), LD->getSrcValueOffset(), VT);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003241 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003242 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003243 break;
Evan Chenge71fe34d2006-10-09 20:57:25 +00003244 }
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003245 case ISD::SELECT:
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003246 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
3247 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003248 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003249 break;
Nate Begemane5b86d72005-08-10 20:51:12 +00003250 case ISD::SELECT_CC:
3251 Tmp2 = PromoteOp(Node->getOperand(2)); // True
3252 Tmp3 = PromoteOp(Node->getOperand(3)); // False
3253 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003254 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begemane5b86d72005-08-10 20:51:12 +00003255 break;
Nate Begeman2fba8a32006-01-14 03:14:10 +00003256 case ISD::BSWAP:
3257 Tmp1 = Node->getOperand(0);
3258 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3259 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3260 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3261 DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
3262 TLI.getShiftAmountTy()));
3263 break;
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003264 case ISD::CTPOP:
3265 case ISD::CTTZ:
3266 case ISD::CTLZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003267 // Zero extend the argument
3268 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003269 // Perform the larger operation, then subtract if needed.
3270 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003271 switch(Node->getOpcode()) {
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003272 case ISD::CTPOP:
3273 Result = Tmp1;
3274 break;
3275 case ISD::CTTZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003276 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begeman36853ee2005-08-14 01:20:53 +00003277 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Chris Lattnerd47675e2005-08-09 20:20:18 +00003278 DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003279 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003280 DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003281 break;
3282 case ISD::CTLZ:
3283 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003284 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
3285 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003286 getSizeInBits(VT), NVT));
3287 break;
3288 }
3289 break;
Chris Lattner6f423252006-03-31 17:55:51 +00003290 case ISD::VEXTRACT_VECTOR_ELT:
3291 Result = PromoteOp(LowerVEXTRACT_VECTOR_ELT(Op));
3292 break;
Chris Lattner42a5fca2006-04-02 05:06:04 +00003293 case ISD::EXTRACT_VECTOR_ELT:
3294 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3295 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003296 }
3297
3298 assert(Result.Val && "Didn't set a result!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003299
3300 // Make sure the result is itself legal.
3301 Result = LegalizeOp(Result);
3302
3303 // Remember that we promoted this!
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003304 AddPromotedOperand(Op, Result);
3305 return Result;
3306}
Chris Lattnerdc750592005-01-07 07:47:09 +00003307
Chris Lattner6f423252006-03-31 17:55:51 +00003308/// LowerVEXTRACT_VECTOR_ELT - Lower a VEXTRACT_VECTOR_ELT operation into a
3309/// EXTRACT_VECTOR_ELT operation, to memory operations, or to scalar code based
3310/// on the vector type. The return type of this matches the element type of the
3311/// vector, which may not be legal for the target.
3312SDOperand SelectionDAGLegalize::LowerVEXTRACT_VECTOR_ELT(SDOperand Op) {
3313 // We know that operand #0 is the Vec vector. If the index is a constant
3314 // or if the invec is a supported hardware type, we can use it. Otherwise,
3315 // lower to a store then an indexed load.
3316 SDOperand Vec = Op.getOperand(0);
3317 SDOperand Idx = LegalizeOp(Op.getOperand(1));
3318
3319 SDNode *InVal = Vec.Val;
3320 unsigned NumElems = cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
3321 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
3322
3323 // Figure out if there is a Packed type corresponding to this Vector
3324 // type. If so, convert to the packed type.
3325 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3326 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
3327 // Turn this into a packed extract_vector_elt operation.
3328 Vec = PackVectorOp(Vec, TVT);
3329 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, Op.getValueType(), Vec, Idx);
3330 } else if (NumElems == 1) {
3331 // This must be an access of the only element. Return it.
3332 return PackVectorOp(Vec, EVT);
3333 } else if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
3334 SDOperand Lo, Hi;
3335 SplitVectorOp(Vec, Lo, Hi);
3336 if (CIdx->getValue() < NumElems/2) {
3337 Vec = Lo;
3338 } else {
3339 Vec = Hi;
3340 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3341 }
3342
3343 // It's now an extract from the appropriate high or low part. Recurse.
3344 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3345 return LowerVEXTRACT_VECTOR_ELT(Op);
3346 } else {
3347 // Variable index case for extract element.
3348 // FIXME: IMPLEMENT STORE/LOAD lowering. Need alignment of stack slot!!
3349 assert(0 && "unimp!");
3350 return SDOperand();
3351 }
3352}
3353
Chris Lattner42a5fca2006-04-02 05:06:04 +00003354/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3355/// memory traffic.
3356SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
3357 SDOperand Vector = Op.getOperand(0);
3358 SDOperand Idx = Op.getOperand(1);
3359
3360 // If the target doesn't support this, store the value to a temporary
3361 // stack slot, then LOAD the scalar element back out.
3362 SDOperand StackPtr = CreateStackTemporary(Vector.getValueType());
Evan Chengdf9ac472006-10-05 23:01:46 +00003363 SDOperand Ch = DAG.getStore(DAG.getEntryNode(),
3364 Vector, StackPtr, DAG.getSrcValue(NULL));
Chris Lattner42a5fca2006-04-02 05:06:04 +00003365
3366 // Add the offset to the index.
3367 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3368 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3369 DAG.getConstant(EltSize, Idx.getValueType()));
3370 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3371
Evan Chenge71fe34d2006-10-09 20:57:25 +00003372 return DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner42a5fca2006-04-02 05:06:04 +00003373}
3374
Chris Lattner6f423252006-03-31 17:55:51 +00003375
Nate Begeman7e7f4392006-02-01 07:19:44 +00003376/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3377/// with condition CC on the current target. This usually involves legalizing
3378/// or promoting the arguments. In the case where LHS and RHS must be expanded,
3379/// there may be no choice but to create a new SetCC node to represent the
3380/// legalized value of setcc lhs, rhs. In this case, the value is returned in
3381/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3382void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3383 SDOperand &RHS,
3384 SDOperand &CC) {
3385 SDOperand Tmp1, Tmp2, Result;
3386
3387 switch (getTypeAction(LHS.getValueType())) {
3388 case Legal:
3389 Tmp1 = LegalizeOp(LHS); // LHS
3390 Tmp2 = LegalizeOp(RHS); // RHS
3391 break;
3392 case Promote:
3393 Tmp1 = PromoteOp(LHS); // LHS
3394 Tmp2 = PromoteOp(RHS); // RHS
3395
3396 // If this is an FP compare, the operands have already been extended.
3397 if (MVT::isInteger(LHS.getValueType())) {
3398 MVT::ValueType VT = LHS.getValueType();
3399 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3400
3401 // Otherwise, we have to insert explicit sign or zero extends. Note
3402 // that we could insert sign extends for ALL conditions, but zero extend
3403 // is cheaper on many machines (an AND instead of two shifts), so prefer
3404 // it.
3405 switch (cast<CondCodeSDNode>(CC)->get()) {
3406 default: assert(0 && "Unknown integer comparison!");
3407 case ISD::SETEQ:
3408 case ISD::SETNE:
3409 case ISD::SETUGE:
3410 case ISD::SETUGT:
3411 case ISD::SETULE:
3412 case ISD::SETULT:
3413 // ALL of these operations will work if we either sign or zero extend
3414 // the operands (including the unsigned comparisons!). Zero extend is
3415 // usually a simpler/cheaper operation, so prefer it.
3416 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3417 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3418 break;
3419 case ISD::SETGE:
3420 case ISD::SETGT:
3421 case ISD::SETLT:
3422 case ISD::SETLE:
3423 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3424 DAG.getValueType(VT));
3425 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3426 DAG.getValueType(VT));
3427 break;
3428 }
3429 }
3430 break;
3431 case Expand:
3432 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
3433 ExpandOp(LHS, LHSLo, LHSHi);
3434 ExpandOp(RHS, RHSLo, RHSHi);
3435 switch (cast<CondCodeSDNode>(CC)->get()) {
3436 case ISD::SETEQ:
3437 case ISD::SETNE:
3438 if (RHSLo == RHSHi)
3439 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
3440 if (RHSCST->isAllOnesValue()) {
3441 // Comparison to -1.
3442 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
3443 Tmp2 = RHSLo;
3444 break;
3445 }
3446
3447 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
3448 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
3449 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3450 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3451 break;
3452 default:
3453 // If this is a comparison of the sign bit, just look at the top part.
3454 // X > -1, x < 0
3455 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
3456 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
3457 CST->getValue() == 0) || // X < 0
3458 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
3459 CST->isAllOnesValue())) { // X > -1
3460 Tmp1 = LHSHi;
3461 Tmp2 = RHSHi;
3462 break;
3463 }
3464
3465 // FIXME: This generated code sucks.
3466 ISD::CondCode LowCC;
3467 switch (cast<CondCodeSDNode>(CC)->get()) {
3468 default: assert(0 && "Unknown integer setcc!");
3469 case ISD::SETLT:
3470 case ISD::SETULT: LowCC = ISD::SETULT; break;
3471 case ISD::SETGT:
3472 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
3473 case ISD::SETLE:
3474 case ISD::SETULE: LowCC = ISD::SETULE; break;
3475 case ISD::SETGE:
3476 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
3477 }
3478
3479 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
3480 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
3481 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
3482
3483 // NOTE: on targets without efficient SELECT of bools, we can always use
3484 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
3485 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
3486 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
3487 Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
3488 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
3489 Result, Tmp1, Tmp2));
3490 Tmp1 = Result;
Nate Begeman01bd9d92006-02-01 19:05:15 +00003491 Tmp2 = SDOperand();
Nate Begeman7e7f4392006-02-01 07:19:44 +00003492 }
3493 }
3494 LHS = Tmp1;
3495 RHS = Tmp2;
3496}
3497
Chris Lattner36e663d2005-12-23 00:16:34 +00003498/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner884eb3ad2005-12-23 00:52:30 +00003499/// The resultant code need not be legal. Note that SrcOp is the input operand
3500/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner36e663d2005-12-23 00:16:34 +00003501SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
3502 SDOperand SrcOp) {
3503 // Create the stack frame object.
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003504 SDOperand FIPtr = CreateStackTemporary(DestVT);
Chris Lattner36e663d2005-12-23 00:16:34 +00003505
3506 // Emit a store to the stack slot.
Evan Chengdf9ac472006-10-05 23:01:46 +00003507 SDOperand Store = DAG.getStore(DAG.getEntryNode(),
3508 SrcOp, FIPtr, DAG.getSrcValue(NULL));
Chris Lattner36e663d2005-12-23 00:16:34 +00003509 // Result is a load from the stack slot.
Evan Chenge71fe34d2006-10-09 20:57:25 +00003510 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
Chris Lattner36e663d2005-12-23 00:16:34 +00003511}
3512
Chris Lattner6be79822006-04-04 17:23:26 +00003513SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
3514 // Create a vector sized/aligned stack slot, store the value to element #0,
3515 // then load the whole vector back out.
3516 SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
Evan Chengdf9ac472006-10-05 23:01:46 +00003517 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
3518 DAG.getSrcValue(NULL));
Evan Chenge71fe34d2006-10-09 20:57:25 +00003519 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, NULL, 0);
Chris Lattner6be79822006-04-04 17:23:26 +00003520}
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());
Evan Chenge71fe34d2006-10-09 20:57:25 +00003583 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner77e271c2006-03-24 07:29:17 +00003584 }
3585
Chris Lattner21e68c82006-03-20 01:52:29 +00003586 if (SplatValue.Val) { // Splat of one value?
3587 // Build the shuffle constant vector: <0, 0, 0, 0>
3588 MVT::ValueType MaskVT =
Evan Cheng1d2e9952006-03-24 01:17:21 +00003589 MVT::getIntVectorWithNumElements(NumElems);
Chris Lattner21e68c82006-03-20 01:52:29 +00003590 SDOperand Zero = DAG.getConstant(0, MVT::getVectorBaseType(MaskVT));
Evan Cheng1d2e9952006-03-24 01:17:21 +00003591 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003592 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3593 &ZeroVec[0], ZeroVec.size());
Chris Lattner21e68c82006-03-20 01:52:29 +00003594
3595 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner6be79822006-04-04 17:23:26 +00003596 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner21e68c82006-03-20 01:52:29 +00003597 // Get the splatted value into the low element of a vector register.
3598 SDOperand LowValVec =
3599 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
3600
3601 // Return shuffle(LowValVec, undef, <0,0,0,0>)
3602 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
3603 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
3604 SplatMask);
3605 }
3606 }
3607
Evan Cheng1d2e9952006-03-24 01:17:21 +00003608 // If there are only two unique elements, we may be able to turn this into a
3609 // vector shuffle.
3610 if (Values.size() == 2) {
3611 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
3612 MVT::ValueType MaskVT =
3613 MVT::getIntVectorWithNumElements(NumElems);
3614 std::vector<SDOperand> MaskVec(NumElems);
3615 unsigned i = 0;
3616 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3617 E = Values.end(); I != E; ++I) {
3618 for (std::vector<unsigned>::iterator II = I->second.begin(),
3619 EE = I->second.end(); II != EE; ++II)
3620 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorBaseType(MaskVT));
3621 i += NumElems;
3622 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003623 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3624 &MaskVec[0], MaskVec.size());
Evan Cheng1d2e9952006-03-24 01:17:21 +00003625
3626 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner6be79822006-04-04 17:23:26 +00003627 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
3628 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003629 SmallVector<SDOperand, 8> Ops;
Evan Cheng1d2e9952006-03-24 01:17:21 +00003630 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3631 E = Values.end(); I != E; ++I) {
3632 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3633 I->first);
3634 Ops.push_back(Op);
3635 }
3636 Ops.push_back(ShuffleMask);
3637
3638 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003639 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
3640 &Ops[0], Ops.size());
Evan Cheng1d2e9952006-03-24 01:17:21 +00003641 }
3642 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003643
3644 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
3645 // aligned object on the stack, store each element into it, then load
3646 // the result as a vector.
3647 MVT::ValueType VT = Node->getValueType(0);
3648 // Create the stack frame object.
3649 SDOperand FIPtr = CreateStackTemporary(VT);
3650
3651 // Emit a store of each element to the stack slot.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003652 SmallVector<SDOperand, 8> Stores;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003653 unsigned TypeByteSize =
3654 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
3655 unsigned VectorSize = MVT::getSizeInBits(VT)/8;
3656 // Store (in the right endianness) the elements to memory.
3657 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3658 // Ignore undef elements.
3659 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
3660
Chris Lattner8fa445a2006-03-22 01:46:54 +00003661 unsigned Offset = TypeByteSize*i;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003662
3663 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
3664 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
3665
Evan Chengdf9ac472006-10-05 23:01:46 +00003666 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
3667 DAG.getSrcValue(NULL)));
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003668 }
3669
3670 SDOperand StoreChain;
3671 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003672 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3673 &Stores[0], Stores.size());
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003674 else
3675 StoreChain = DAG.getEntryNode();
3676
3677 // Result is a load from the stack slot.
Evan Chenge71fe34d2006-10-09 20:57:25 +00003678 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003679}
3680
3681/// CreateStackTemporary - Create a stack temporary, suitable for holding the
3682/// specified value type.
3683SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
3684 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3685 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
3686 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, ByteSize);
3687 return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
3688}
3689
Chris Lattner4157c412005-04-02 04:00:59 +00003690void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
3691 SDOperand Op, SDOperand Amt,
3692 SDOperand &Lo, SDOperand &Hi) {
3693 // Expand the subcomponents.
3694 SDOperand LHSL, LHSH;
3695 ExpandOp(Op, LHSL, LHSH);
3696
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003697 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerbd887772006-08-14 23:53:35 +00003698 MVT::ValueType VT = LHSL.getValueType();
3699 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner4157c412005-04-02 04:00:59 +00003700 Hi = Lo.getValue(1);
3701}
3702
3703
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003704/// ExpandShift - Try to find a clever way to expand this shift operation out to
3705/// smaller elements. If we can't find a way that is more efficient than a
3706/// libcall on this target, return false. Otherwise, return true with the
3707/// low-parts expanded into Lo and Hi.
3708bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
3709 SDOperand &Lo, SDOperand &Hi) {
3710 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
3711 "This is not a shift!");
Nate Begemanb0674922005-04-06 21:13:14 +00003712
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003713 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanb0674922005-04-06 21:13:14 +00003714 SDOperand ShAmt = LegalizeOp(Amt);
3715 MVT::ValueType ShTy = ShAmt.getValueType();
3716 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
3717 unsigned NVTBits = MVT::getSizeInBits(NVT);
3718
3719 // Handle the case when Amt is an immediate. Other cases are currently broken
3720 // and are disabled.
3721 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
3722 unsigned Cst = CN->getValue();
3723 // Expand the incoming operand to be shifted, so that we have its parts
3724 SDOperand InL, InH;
3725 ExpandOp(Op, InL, InH);
3726 switch(Opc) {
3727 case ISD::SHL:
3728 if (Cst > VTBits) {
3729 Lo = DAG.getConstant(0, NVT);
3730 Hi = DAG.getConstant(0, NVT);
3731 } else if (Cst > NVTBits) {
3732 Lo = DAG.getConstant(0, NVT);
3733 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneredd19702005-04-11 20:08:52 +00003734 } else if (Cst == NVTBits) {
3735 Lo = DAG.getConstant(0, NVT);
3736 Hi = InL;
Nate Begemanb0674922005-04-06 21:13:14 +00003737 } else {
3738 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
3739 Hi = DAG.getNode(ISD::OR, NVT,
3740 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
3741 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
3742 }
3743 return true;
3744 case ISD::SRL:
3745 if (Cst > VTBits) {
3746 Lo = DAG.getConstant(0, NVT);
3747 Hi = DAG.getConstant(0, NVT);
3748 } else if (Cst > NVTBits) {
3749 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
3750 Hi = DAG.getConstant(0, NVT);
Chris Lattneredd19702005-04-11 20:08:52 +00003751 } else if (Cst == NVTBits) {
3752 Lo = InH;
3753 Hi = DAG.getConstant(0, NVT);
Nate Begemanb0674922005-04-06 21:13:14 +00003754 } else {
3755 Lo = DAG.getNode(ISD::OR, NVT,
3756 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3757 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3758 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
3759 }
3760 return true;
3761 case ISD::SRA:
3762 if (Cst > VTBits) {
Misha Brukman835702a2005-04-21 22:36:52 +00003763 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00003764 DAG.getConstant(NVTBits-1, ShTy));
3765 } else if (Cst > NVTBits) {
Misha Brukman835702a2005-04-21 22:36:52 +00003766 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00003767 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukman835702a2005-04-21 22:36:52 +00003768 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00003769 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneredd19702005-04-11 20:08:52 +00003770 } else if (Cst == NVTBits) {
3771 Lo = InH;
Misha Brukman835702a2005-04-21 22:36:52 +00003772 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneredd19702005-04-11 20:08:52 +00003773 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanb0674922005-04-06 21:13:14 +00003774 } else {
3775 Lo = DAG.getNode(ISD::OR, NVT,
3776 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3777 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3778 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
3779 }
3780 return true;
3781 }
3782 }
Chris Lattner875ea0c2006-09-20 03:38:48 +00003783
3784 // Okay, the shift amount isn't constant. However, if we can tell that it is
3785 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
3786 uint64_t Mask = NVTBits, KnownZero, KnownOne;
3787 TLI.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
3788
3789 // If we know that the high bit of the shift amount is one, then we can do
3790 // this as a couple of simple shifts.
3791 if (KnownOne & Mask) {
3792 // Mask out the high bit, which we know is set.
3793 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
3794 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3795
3796 // Expand the incoming operand to be shifted, so that we have its parts
3797 SDOperand InL, InH;
3798 ExpandOp(Op, InL, InH);
3799 switch(Opc) {
3800 case ISD::SHL:
3801 Lo = DAG.getConstant(0, NVT); // Low part is zero.
3802 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
3803 return true;
3804 case ISD::SRL:
3805 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
3806 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
3807 return true;
3808 case ISD::SRA:
3809 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
3810 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3811 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
3812 return true;
3813 }
3814 }
3815
3816 // If we know that the high bit of the shift amount is zero, then we can do
3817 // this as a couple of simple shifts.
3818 if (KnownZero & Mask) {
3819 // Compute 32-amt.
3820 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
3821 DAG.getConstant(NVTBits, Amt.getValueType()),
3822 Amt);
3823
3824 // Expand the incoming operand to be shifted, so that we have its parts
3825 SDOperand InL, InH;
3826 ExpandOp(Op, InL, InH);
3827 switch(Opc) {
3828 case ISD::SHL:
3829 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
3830 Hi = DAG.getNode(ISD::OR, NVT,
3831 DAG.getNode(ISD::SHL, NVT, InH, Amt),
3832 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
3833 return true;
3834 case ISD::SRL:
3835 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
3836 Lo = DAG.getNode(ISD::OR, NVT,
3837 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3838 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3839 return true;
3840 case ISD::SRA:
3841 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
3842 Lo = DAG.getNode(ISD::OR, NVT,
3843 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3844 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3845 return true;
3846 }
3847 }
3848
Nate Begemanb0674922005-04-06 21:13:14 +00003849 return false;
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003850}
Chris Lattneraac464e2005-01-21 06:05:23 +00003851
Chris Lattner4add7e32005-01-23 04:42:50 +00003852
Chris Lattneraac464e2005-01-21 06:05:23 +00003853// ExpandLibCall - Expand a node into a call to a libcall. If the result value
3854// does not fit into a register, return the lo part and set the hi part to the
3855// by-reg argument. If it does fit into a single register, return the result
3856// and leave the Hi part unset.
3857SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
3858 SDOperand &Hi) {
Chris Lattner462505f2006-02-13 09:18:02 +00003859 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
3860 // The input chain to this libcall is the entry node of the function.
3861 // Legalizing the call will automatically add the previous call to the
3862 // dependence.
3863 SDOperand InChain = DAG.getEntryNode();
3864
Chris Lattneraac464e2005-01-21 06:05:23 +00003865 TargetLowering::ArgListTy Args;
3866 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3867 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
3868 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
3869 Args.push_back(std::make_pair(Node->getOperand(i), ArgTy));
3870 }
3871 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukman835702a2005-04-21 22:36:52 +00003872
Chris Lattner06bbeb62005-05-11 19:02:11 +00003873 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattneraac464e2005-01-21 06:05:23 +00003874 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner06bbeb62005-05-11 19:02:11 +00003875 std::pair<SDOperand,SDOperand> CallInfo =
Chris Lattner2e77db62005-05-13 18:50:42 +00003876 TLI.LowerCallTo(InChain, RetTy, false, CallingConv::C, false,
3877 Callee, Args, DAG);
Chris Lattnera5bf1032005-05-12 04:49:08 +00003878
Chris Lattner462505f2006-02-13 09:18:02 +00003879 // Legalize the call sequence, starting with the chain. This will advance
3880 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
3881 // was added by LowerCallTo (guaranteeing proper serialization of calls).
3882 LegalizeOp(CallInfo.second);
Chris Lattner63022662005-09-02 20:26:58 +00003883 SDOperand Result;
Chris Lattner06bbeb62005-05-11 19:02:11 +00003884 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattneraac464e2005-01-21 06:05:23 +00003885 default: assert(0 && "Unknown thing");
3886 case Legal:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003887 Result = CallInfo.first;
Chris Lattner63022662005-09-02 20:26:58 +00003888 break;
Chris Lattneraac464e2005-01-21 06:05:23 +00003889 case Expand:
Chris Lattner63022662005-09-02 20:26:58 +00003890 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner63022662005-09-02 20:26:58 +00003891 break;
Chris Lattneraac464e2005-01-21 06:05:23 +00003892 }
Chris Lattner63022662005-09-02 20:26:58 +00003893 return Result;
Chris Lattneraac464e2005-01-21 06:05:23 +00003894}
3895
Chris Lattner4add7e32005-01-23 04:42:50 +00003896
Chris Lattneraac464e2005-01-21 06:05:23 +00003897/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
3898/// destination type is legal.
3899SDOperand SelectionDAGLegalize::
3900ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00003901 assert(isTypeLegal(DestTy) && "Destination type is not legal!");
Chris Lattneraac464e2005-01-21 06:05:23 +00003902 assert(getTypeAction(Source.getValueType()) == Expand &&
3903 "This is not an expansion!");
3904 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
3905
Chris Lattner06bbeb62005-05-11 19:02:11 +00003906 if (!isSigned) {
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003907 assert(Source.getValueType() == MVT::i64 &&
3908 "This only works for 64-bit -> FP");
3909 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
3910 // incoming integer is set. To handle this, we dynamically test to see if
3911 // it is set, and, if so, add a fudge factor.
3912 SDOperand Lo, Hi;
3913 ExpandOp(Source, Lo, Hi);
3914
Chris Lattner2a4f7312005-05-13 04:45:13 +00003915 // If this is unsigned, and not supported, first perform the conversion to
3916 // signed, then adjust the result if the sign bit is set.
3917 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
3918 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
3919
Chris Lattnerd47675e2005-08-09 20:20:18 +00003920 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
3921 DAG.getConstant(0, Hi.getValueType()),
3922 ISD::SETLT);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003923 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3924 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3925 SignSet, Four, Zero);
Chris Lattner26f03172005-05-12 18:52:34 +00003926 uint64_t FF = 0x5f800000ULL;
3927 if (TLI.isLittleEndian()) FF <<= 32;
3928 static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003929
Chris Lattnerc30405e2005-08-26 17:15:30 +00003930 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003931 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3932 SDOperand FudgeInReg;
3933 if (DestTy == MVT::f32)
Evan Chenge71fe34d2006-10-09 20:57:25 +00003934 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003935 else {
3936 assert(DestTy == MVT::f64 && "Unexpected conversion");
Chris Lattnerde0a4b12005-07-10 01:55:33 +00003937 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Chenge71fe34d2006-10-09 20:57:25 +00003938 CPIdx, NULL, 0, MVT::f32);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003939 }
Chris Lattner5b2be1f2005-09-29 06:44:39 +00003940 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattneraac464e2005-01-21 06:05:23 +00003941 }
Chris Lattner06bbeb62005-05-11 19:02:11 +00003942
Chris Lattnerd3cc9962005-05-14 05:33:54 +00003943 // Check to see if the target has a custom way to lower this. If so, use it.
3944 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
3945 default: assert(0 && "This action not implemented for this operation!");
3946 case TargetLowering::Legal:
3947 case TargetLowering::Expand:
3948 break; // This case is handled below.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00003949 case TargetLowering::Custom: {
3950 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
3951 Source), DAG);
3952 if (NV.Val)
3953 return LegalizeOp(NV);
3954 break; // The target decided this was legal after all
3955 }
Chris Lattnerd3cc9962005-05-14 05:33:54 +00003956 }
3957
Chris Lattner153587e2005-05-12 07:00:44 +00003958 // Expand the source, then glue it back together for the call. We must expand
3959 // the source in case it is shared (this pass of legalize must traverse it).
3960 SDOperand SrcLo, SrcHi;
3961 ExpandOp(Source, SrcLo, SrcHi);
3962 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
3963
Chris Lattner06bbeb62005-05-11 19:02:11 +00003964 const char *FnName = 0;
3965 if (DestTy == MVT::f32)
3966 FnName = "__floatdisf";
3967 else {
3968 assert(DestTy == MVT::f64 && "Unknown fp value type!");
3969 FnName = "__floatdidf";
3970 }
Chris Lattner462505f2006-02-13 09:18:02 +00003971
3972 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
3973 SDOperand UnusedHiPart;
Chris Lattner9ec392b2006-02-17 04:32:33 +00003974 return ExpandLibCall(FnName, Source.Val, UnusedHiPart);
Chris Lattneraac464e2005-01-21 06:05:23 +00003975}
Misha Brukman835702a2005-04-21 22:36:52 +00003976
Chris Lattner689bdcc2006-01-28 08:25:58 +00003977/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
3978/// INT_TO_FP operation of the specified operand when the target requests that
3979/// we expand it. At this point, we know that the result and operand types are
3980/// legal for the target.
3981SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
3982 SDOperand Op0,
3983 MVT::ValueType DestVT) {
3984 if (Op0.getValueType() == MVT::i32) {
3985 // simple 32-bit [signed|unsigned] integer to float/double expansion
3986
3987 // get the stack frame index of a 8 byte buffer
3988 MachineFunction &MF = DAG.getMachineFunction();
3989 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
3990 // get address of 8 byte buffer
3991 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
3992 // word offset constant for Hi/Lo address computation
3993 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
3994 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner9ea1b3f2006-03-23 05:29:04 +00003995 SDOperand Hi = StackSlot;
3996 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
3997 if (TLI.isLittleEndian())
3998 std::swap(Hi, Lo);
3999
Chris Lattner689bdcc2006-01-28 08:25:58 +00004000 // if signed map to unsigned space
4001 SDOperand Op0Mapped;
4002 if (isSigned) {
4003 // constant used to invert sign bit (signed to unsigned mapping)
4004 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
4005 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
4006 } else {
4007 Op0Mapped = Op0;
4008 }
4009 // store the lo of the constructed double - based on integer input
Evan Chengdf9ac472006-10-05 23:01:46 +00004010 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
4011 Op0Mapped, Lo, DAG.getSrcValue(NULL));
Chris Lattner689bdcc2006-01-28 08:25:58 +00004012 // initial hi portion of constructed double
4013 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
4014 // store the hi of the constructed double - biased exponent
Evan Chengdf9ac472006-10-05 23:01:46 +00004015 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, DAG.getSrcValue(NULL));
Chris Lattner689bdcc2006-01-28 08:25:58 +00004016 // load the constructed double
Evan Chenge71fe34d2006-10-09 20:57:25 +00004017 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00004018 // FP constant to bias correct the final result
4019 SDOperand Bias = DAG.getConstantFP(isSigned ?
4020 BitsToDouble(0x4330000080000000ULL)
4021 : BitsToDouble(0x4330000000000000ULL),
4022 MVT::f64);
4023 // subtract the bias
4024 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
4025 // final result
4026 SDOperand Result;
4027 // handle final rounding
4028 if (DestVT == MVT::f64) {
4029 // do nothing
4030 Result = Sub;
4031 } else {
4032 // if f32 then cast to f32
4033 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
4034 }
4035 return Result;
4036 }
4037 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
4038 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
4039
4040 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
4041 DAG.getConstant(0, Op0.getValueType()),
4042 ISD::SETLT);
4043 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4044 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4045 SignSet, Four, Zero);
4046
4047 // If the sign bit of the integer is set, the large number will be treated
4048 // as a negative number. To counteract this, the dynamic code adds an
4049 // offset depending on the data type.
4050 uint64_t FF;
4051 switch (Op0.getValueType()) {
4052 default: assert(0 && "Unsupported integer type!");
4053 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
4054 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
4055 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
4056 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
4057 }
4058 if (TLI.isLittleEndian()) FF <<= 32;
4059 static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
4060
4061 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4062 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4063 SDOperand FudgeInReg;
4064 if (DestVT == MVT::f32)
Evan Chenge71fe34d2006-10-09 20:57:25 +00004065 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00004066 else {
4067 assert(DestVT == MVT::f64 && "Unexpected conversion");
4068 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
4069 DAG.getEntryNode(), CPIdx,
Evan Chenge71fe34d2006-10-09 20:57:25 +00004070 NULL, 0, MVT::f32));
Chris Lattner689bdcc2006-01-28 08:25:58 +00004071 }
4072
4073 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
4074}
4075
4076/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
4077/// *INT_TO_FP operation of the specified operand when the target requests that
4078/// we promote it. At this point, we know that the result and operand types are
4079/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
4080/// operation that takes a larger input.
4081SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
4082 MVT::ValueType DestVT,
4083 bool isSigned) {
4084 // First step, figure out the appropriate *INT_TO_FP operation to use.
4085 MVT::ValueType NewInTy = LegalOp.getValueType();
4086
4087 unsigned OpToUse = 0;
4088
4089 // Scan for the appropriate larger type to use.
4090 while (1) {
4091 NewInTy = (MVT::ValueType)(NewInTy+1);
4092 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
4093
4094 // If the target supports SINT_TO_FP of this type, use it.
4095 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4096 default: break;
4097 case TargetLowering::Legal:
4098 if (!TLI.isTypeLegal(NewInTy))
4099 break; // Can't use this datatype.
4100 // FALL THROUGH.
4101 case TargetLowering::Custom:
4102 OpToUse = ISD::SINT_TO_FP;
4103 break;
4104 }
4105 if (OpToUse) break;
4106 if (isSigned) continue;
4107
4108 // If the target supports UINT_TO_FP of this type, use it.
4109 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4110 default: break;
4111 case TargetLowering::Legal:
4112 if (!TLI.isTypeLegal(NewInTy))
4113 break; // Can't use this datatype.
4114 // FALL THROUGH.
4115 case TargetLowering::Custom:
4116 OpToUse = ISD::UINT_TO_FP;
4117 break;
4118 }
4119 if (OpToUse) break;
4120
4121 // Otherwise, try a larger type.
4122 }
4123
4124 // Okay, we found the operation and type to use. Zero extend our input to the
4125 // desired type then run the operation on it.
4126 return DAG.getNode(OpToUse, DestVT,
4127 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4128 NewInTy, LegalOp));
4129}
4130
4131/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4132/// FP_TO_*INT operation of the specified operand when the target requests that
4133/// we promote it. At this point, we know that the result and operand types are
4134/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4135/// operation that returns a larger result.
4136SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4137 MVT::ValueType DestVT,
4138 bool isSigned) {
4139 // First step, figure out the appropriate FP_TO*INT operation to use.
4140 MVT::ValueType NewOutTy = DestVT;
4141
4142 unsigned OpToUse = 0;
4143
4144 // Scan for the appropriate larger type to use.
4145 while (1) {
4146 NewOutTy = (MVT::ValueType)(NewOutTy+1);
4147 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4148
4149 // If the target supports FP_TO_SINT returning this type, use it.
4150 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4151 default: break;
4152 case TargetLowering::Legal:
4153 if (!TLI.isTypeLegal(NewOutTy))
4154 break; // Can't use this datatype.
4155 // FALL THROUGH.
4156 case TargetLowering::Custom:
4157 OpToUse = ISD::FP_TO_SINT;
4158 break;
4159 }
4160 if (OpToUse) break;
4161
4162 // If the target supports FP_TO_UINT of this type, use it.
4163 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4164 default: break;
4165 case TargetLowering::Legal:
4166 if (!TLI.isTypeLegal(NewOutTy))
4167 break; // Can't use this datatype.
4168 // FALL THROUGH.
4169 case TargetLowering::Custom:
4170 OpToUse = ISD::FP_TO_UINT;
4171 break;
4172 }
4173 if (OpToUse) break;
4174
4175 // Otherwise, try a larger type.
4176 }
4177
4178 // Okay, we found the operation and type to use. Truncate the result of the
4179 // extended FP_TO_*INT operation to the desired size.
4180 return DAG.getNode(ISD::TRUNCATE, DestVT,
4181 DAG.getNode(OpToUse, NewOutTy, LegalOp));
4182}
4183
4184/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4185///
4186SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4187 MVT::ValueType VT = Op.getValueType();
4188 MVT::ValueType SHVT = TLI.getShiftAmountTy();
4189 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4190 switch (VT) {
4191 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4192 case MVT::i16:
4193 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4194 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4195 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4196 case MVT::i32:
4197 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4198 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4199 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4200 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4201 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4202 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4203 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4204 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4205 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4206 case MVT::i64:
4207 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4208 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4209 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4210 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4211 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4212 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4213 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4214 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4215 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4216 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4217 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4218 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4219 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4220 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4221 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4222 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4223 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4224 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4225 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4226 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4227 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4228 }
4229}
4230
4231/// ExpandBitCount - Expand the specified bitcount instruction into operations.
4232///
4233SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4234 switch (Opc) {
4235 default: assert(0 && "Cannot expand this yet!");
4236 case ISD::CTPOP: {
4237 static const uint64_t mask[6] = {
4238 0x5555555555555555ULL, 0x3333333333333333ULL,
4239 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4240 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4241 };
4242 MVT::ValueType VT = Op.getValueType();
4243 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4244 unsigned len = getSizeInBits(VT);
4245 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4246 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4247 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4248 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4249 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4250 DAG.getNode(ISD::AND, VT,
4251 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4252 }
4253 return Op;
4254 }
4255 case ISD::CTLZ: {
4256 // for now, we do this:
4257 // x = x | (x >> 1);
4258 // x = x | (x >> 2);
4259 // ...
4260 // x = x | (x >>16);
4261 // x = x | (x >>32); // for 64-bit input
4262 // return popcount(~x);
4263 //
4264 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4265 MVT::ValueType VT = Op.getValueType();
4266 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4267 unsigned len = getSizeInBits(VT);
4268 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4269 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4270 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4271 }
4272 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4273 return DAG.getNode(ISD::CTPOP, VT, Op);
4274 }
4275 case ISD::CTTZ: {
4276 // for now, we use: { return popcount(~x & (x - 1)); }
4277 // unless the target has ctlz but not ctpop, in which case we use:
4278 // { return 32 - nlz(~x & (x-1)); }
4279 // see also http://www.hackersdelight.org/HDcode/ntz.cc
4280 MVT::ValueType VT = Op.getValueType();
4281 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4282 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4283 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4284 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4285 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4286 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4287 TLI.isOperationLegal(ISD::CTLZ, VT))
4288 return DAG.getNode(ISD::SUB, VT,
4289 DAG.getConstant(getSizeInBits(VT), VT),
4290 DAG.getNode(ISD::CTLZ, VT, Tmp3));
4291 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4292 }
4293 }
4294}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004295
Chris Lattnerdc750592005-01-07 07:47:09 +00004296/// ExpandOp - Expand the specified SDOperand into its two component pieces
4297/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
4298/// LegalizeNodes map is filled in for any results that are not expanded, the
4299/// ExpandedNodes map is filled in for any results that are expanded, and the
4300/// Lo/Hi values are returned.
4301void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4302 MVT::ValueType VT = Op.getValueType();
Chris Lattner87a769c2005-01-16 01:11:45 +00004303 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattnerdc750592005-01-07 07:47:09 +00004304 SDNode *Node = Op.Val;
4305 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Nate Begemand37c1312005-11-22 18:16:00 +00004306 assert((MVT::isInteger(VT) || VT == MVT::Vector) &&
4307 "Cannot expand FP values!");
4308 assert(((MVT::isInteger(NVT) && NVT < VT) || VT == MVT::Vector) &&
Chris Lattnerdc750592005-01-07 07:47:09 +00004309 "Cannot expand to FP value or to larger int value!");
4310
Chris Lattner1a570f12005-09-02 20:32:45 +00004311 // See if we already expanded it.
4312 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4313 = ExpandedNodes.find(Op);
4314 if (I != ExpandedNodes.end()) {
4315 Lo = I->second.first;
4316 Hi = I->second.second;
4317 return;
Chris Lattnerdc750592005-01-07 07:47:09 +00004318 }
4319
Chris Lattnerdc750592005-01-07 07:47:09 +00004320 switch (Node->getOpcode()) {
Chris Lattner44cab002006-01-21 04:27:00 +00004321 case ISD::CopyFromReg:
4322 assert(0 && "CopyFromReg must be legal!");
4323 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004324#ifndef NDEBUG
Chris Lattnerdc750592005-01-07 07:47:09 +00004325 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004326#endif
Chris Lattnerdc750592005-01-07 07:47:09 +00004327 assert(0 && "Do not know how to expand this operator!");
4328 abort();
Nate Begemancda9aa72005-04-01 22:34:39 +00004329 case ISD::UNDEF:
4330 Lo = DAG.getNode(ISD::UNDEF, NVT);
4331 Hi = DAG.getNode(ISD::UNDEF, NVT);
4332 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00004333 case ISD::Constant: {
4334 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4335 Lo = DAG.getConstant(Cst, NVT);
4336 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
4337 break;
4338 }
Chris Lattner32e08b72005-03-28 22:03:13 +00004339 case ISD::BUILD_PAIR:
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004340 // Return the operands.
4341 Lo = Node->getOperand(0);
4342 Hi = Node->getOperand(1);
Chris Lattner32e08b72005-03-28 22:03:13 +00004343 break;
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00004344
4345 case ISD::SIGN_EXTEND_INREG:
4346 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnerf5839a02006-10-06 17:34:12 +00004347 // sext_inreg the low part if needed.
4348 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
4349
4350 // The high part gets the sign extension from the lo-part. This handles
4351 // things like sextinreg V:i64 from i8.
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00004352 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4353 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
4354 TLI.getShiftAmountTy()));
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00004355 break;
Chris Lattner32e08b72005-03-28 22:03:13 +00004356
Nate Begeman2fba8a32006-01-14 03:14:10 +00004357 case ISD::BSWAP: {
4358 ExpandOp(Node->getOperand(0), Lo, Hi);
4359 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
4360 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
4361 Lo = TempLo;
4362 break;
4363 }
4364
Chris Lattner55e9cde2005-05-11 04:51:16 +00004365 case ISD::CTPOP:
4366 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner3740f392005-05-11 05:09:47 +00004367 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
4368 DAG.getNode(ISD::CTPOP, NVT, Lo),
4369 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattner55e9cde2005-05-11 04:51:16 +00004370 Hi = DAG.getConstant(0, NVT);
4371 break;
4372
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004373 case ISD::CTLZ: {
4374 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner0bfd1772005-05-12 19:27:51 +00004375 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004376 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4377 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattnerd47675e2005-08-09 20:20:18 +00004378 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
4379 ISD::SETNE);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004380 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
4381 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
4382
4383 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
4384 Hi = DAG.getConstant(0, NVT);
4385 break;
4386 }
4387
4388 case ISD::CTTZ: {
4389 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner0bfd1772005-05-12 19:27:51 +00004390 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004391 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4392 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattnerd47675e2005-08-09 20:20:18 +00004393 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
4394 ISD::SETNE);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004395 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
4396 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
4397
4398 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
4399 Hi = DAG.getConstant(0, NVT);
4400 break;
4401 }
Chris Lattner55e9cde2005-05-11 04:51:16 +00004402
Nate Begemane74795c2006-01-25 18:21:52 +00004403 case ISD::VAARG: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004404 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4405 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemane74795c2006-01-25 18:21:52 +00004406 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
4407 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
4408
4409 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004410 Hi = LegalizeOp(Hi);
Nate Begemane74795c2006-01-25 18:21:52 +00004411 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
4412 if (!TLI.isLittleEndian())
4413 std::swap(Lo, Hi);
4414 break;
4415 }
4416
Chris Lattnerdc750592005-01-07 07:47:09 +00004417 case ISD::LOAD: {
Evan Chenge71fe34d2006-10-09 20:57:25 +00004418 LoadSDNode *LD = cast<LoadSDNode>(Node);
4419 SDOperand Ch = LD->getChain(); // Legalize the chain.
4420 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
4421 ISD::LoadExtType ExtType = LD->getExtensionType();
Chris Lattnerdc750592005-01-07 07:47:09 +00004422
Evan Chenge71fe34d2006-10-09 20:57:25 +00004423 if (ExtType == ISD::NON_EXTLOAD) {
4424 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
Chris Lattner0d03eb42005-01-19 18:02:17 +00004425
Evan Chenge71fe34d2006-10-09 20:57:25 +00004426 // Increment the pointer to the other half.
4427 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
4428 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4429 getIntPtrConstant(IncrementSize));
4430 // FIXME: This creates a bogus srcvalue!
4431 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
Misha Brukman835702a2005-04-21 22:36:52 +00004432
Evan Chenge71fe34d2006-10-09 20:57:25 +00004433 // Build a factor node to remember that this load is independent of the
4434 // other one.
4435 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4436 Hi.getValue(1));
4437
4438 // Remember that we legalized the chain.
4439 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
4440 if (!TLI.isLittleEndian())
4441 std::swap(Lo, Hi);
4442 } else {
4443 MVT::ValueType EVT = LD->getLoadVT();
4444
4445 if (EVT == NVT)
4446 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
4447 LD->getSrcValueOffset());
4448 else
4449 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
4450 LD->getSrcValueOffset(), EVT);
4451
4452 // Remember that we legalized the chain.
4453 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
4454
4455 if (ExtType == ISD::SEXTLOAD) {
4456 // The high part is obtained by SRA'ing all but one of the bits of the
4457 // lo part.
4458 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
4459 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4460 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
4461 } else if (ExtType == ISD::ZEXTLOAD) {
4462 // The high part is just a zero.
4463 Hi = DAG.getConstant(0, NVT);
4464 } else /* if (ExtType == ISD::EXTLOAD) */ {
4465 // The high part is undefined.
4466 Hi = DAG.getNode(ISD::UNDEF, NVT);
4467 }
4468 }
Chris Lattnerdc750592005-01-07 07:47:09 +00004469 break;
4470 }
Chris Lattnerdc750592005-01-07 07:47:09 +00004471 case ISD::AND:
4472 case ISD::OR:
4473 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
4474 SDOperand LL, LH, RL, RH;
4475 ExpandOp(Node->getOperand(0), LL, LH);
4476 ExpandOp(Node->getOperand(1), RL, RH);
4477 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
4478 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
4479 break;
4480 }
4481 case ISD::SELECT: {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004482 SDOperand LL, LH, RL, RH;
Chris Lattnerdc750592005-01-07 07:47:09 +00004483 ExpandOp(Node->getOperand(1), LL, LH);
4484 ExpandOp(Node->getOperand(2), RL, RH);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004485 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
4486 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattnerdc750592005-01-07 07:47:09 +00004487 break;
4488 }
Nate Begemane5b86d72005-08-10 20:51:12 +00004489 case ISD::SELECT_CC: {
4490 SDOperand TL, TH, FL, FH;
4491 ExpandOp(Node->getOperand(2), TL, TH);
4492 ExpandOp(Node->getOperand(3), FL, FH);
4493 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4494 Node->getOperand(1), TL, FL, Node->getOperand(4));
4495 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4496 Node->getOperand(1), TH, FH, Node->getOperand(4));
4497 break;
4498 }
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004499 case ISD::ANY_EXTEND:
4500 // The low part is any extension of the input (which degenerates to a copy).
4501 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
4502 // The high part is undefined.
4503 Hi = DAG.getNode(ISD::UNDEF, NVT);
4504 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00004505 case ISD::SIGN_EXTEND: {
4506 // The low part is just a sign extension of the input (which degenerates to
4507 // a copy).
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004508 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00004509
Chris Lattnerdc750592005-01-07 07:47:09 +00004510 // The high part is obtained by SRA'ing all but one of the bits of the lo
4511 // part.
Chris Lattner9864b082005-01-12 18:19:52 +00004512 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004513 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4514 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattnerdc750592005-01-07 07:47:09 +00004515 break;
4516 }
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004517 case ISD::ZERO_EXTEND:
Chris Lattnerdc750592005-01-07 07:47:09 +00004518 // The low part is just a zero extension of the input (which degenerates to
4519 // a copy).
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004520 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00004521
Chris Lattnerdc750592005-01-07 07:47:09 +00004522 // The high part is just a zero.
4523 Hi = DAG.getConstant(0, NVT);
4524 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00004525
4526 case ISD::BIT_CONVERT: {
Chris Lattnere4bbb6c2006-09-09 00:20:27 +00004527 SDOperand Tmp;
4528 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
4529 // If the target wants to, allow it to lower this itself.
4530 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4531 case Expand: assert(0 && "cannot expand FP!");
4532 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
4533 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
4534 }
4535 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
4536 }
4537
4538 // Turn this into a load/store pair by default.
4539 if (Tmp.Val == 0)
4540 Tmp = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
4541
Chris Lattner36e663d2005-12-23 00:16:34 +00004542 ExpandOp(Tmp, Lo, Hi);
4543 break;
4544 }
Andrew Lenharth627cbd42005-11-20 21:32:07 +00004545
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004546 case ISD::READCYCLECOUNTER:
Chris Lattner44c28c22005-11-20 22:56:56 +00004547 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
4548 TargetLowering::Custom &&
4549 "Must custom expand ReadCycleCounter");
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004550 Lo = TLI.LowerOperation(Op, DAG);
4551 assert(Lo.Val && "Node must be custom expanded!");
4552 Hi = Lo.getValue(1);
Chris Lattner44c28c22005-11-20 22:56:56 +00004553 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004554 LegalizeOp(Lo.getValue(2)));
Andrew Lenharth627cbd42005-11-20 21:32:07 +00004555 break;
4556
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004557 // These operators cannot be expanded directly, emit them as calls to
4558 // library functions.
4559 case ISD::FP_TO_SINT:
Chris Lattnerfe68d752005-07-29 00:33:32 +00004560 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattner941d84a2005-07-30 01:40:57 +00004561 SDOperand Op;
4562 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4563 case Expand: assert(0 && "cannot expand FP!");
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004564 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4565 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattner941d84a2005-07-30 01:40:57 +00004566 }
Jeff Cohen546fd592005-07-30 18:33:25 +00004567
Chris Lattner941d84a2005-07-30 01:40:57 +00004568 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
4569
Chris Lattnerfe68d752005-07-29 00:33:32 +00004570 // Now that the custom expander is done, expand the result, which is still
4571 // VT.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00004572 if (Op.Val) {
4573 ExpandOp(Op, Lo, Hi);
4574 break;
4575 }
Chris Lattnerfe68d752005-07-29 00:33:32 +00004576 }
Jeff Cohen546fd592005-07-30 18:33:25 +00004577
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004578 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattneraac464e2005-01-21 06:05:23 +00004579 Lo = ExpandLibCall("__fixsfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004580 else
Chris Lattneraac464e2005-01-21 06:05:23 +00004581 Lo = ExpandLibCall("__fixdfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004582 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00004583
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004584 case ISD::FP_TO_UINT:
Chris Lattnerfe68d752005-07-29 00:33:32 +00004585 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004586 SDOperand Op;
4587 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4588 case Expand: assert(0 && "cannot expand FP!");
4589 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4590 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
4591 }
4592
4593 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
4594
4595 // Now that the custom expander is done, expand the result.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00004596 if (Op.Val) {
4597 ExpandOp(Op, Lo, Hi);
4598 break;
4599 }
Chris Lattnerfe68d752005-07-29 00:33:32 +00004600 }
Jeff Cohen546fd592005-07-30 18:33:25 +00004601
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004602 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattneraac464e2005-01-21 06:05:23 +00004603 Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004604 else
Chris Lattneraac464e2005-01-21 06:05:23 +00004605 Lo = ExpandLibCall("__fixunsdfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004606 break;
4607
Evan Cheng870e4f82006-01-09 18:31:59 +00004608 case ISD::SHL: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004609 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00004610 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004611 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004612 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004613 Op = TLI.LowerOperation(Op, DAG);
4614 if (Op.Val) {
4615 // Now that the custom expander is done, expand the result, which is
4616 // still VT.
4617 ExpandOp(Op, Lo, Hi);
4618 break;
4619 }
4620 }
4621
Chris Lattner72b503b2006-09-13 03:50:39 +00004622 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
4623 // this X << 1 as X+X.
4624 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
4625 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
4626 TLI.isOperationLegal(ISD::ADDE, NVT)) {
4627 SDOperand LoOps[2], HiOps[3];
4628 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
4629 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
4630 LoOps[1] = LoOps[0];
4631 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
4632
4633 HiOps[1] = HiOps[0];
4634 HiOps[2] = Lo.getValue(1);
4635 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
4636 break;
4637 }
4638 }
4639
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004640 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00004641 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004642 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00004643
4644 // If this target supports SHL_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00004645 TargetLowering::LegalizeAction Action =
4646 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
4647 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4648 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00004649 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00004650 break;
4651 }
4652
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004653 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00004654 Lo = ExpandLibCall("__ashldi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004655 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00004656 }
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004657
Evan Cheng870e4f82006-01-09 18:31:59 +00004658 case ISD::SRA: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004659 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00004660 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004661 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004662 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004663 Op = TLI.LowerOperation(Op, DAG);
4664 if (Op.Val) {
4665 // Now that the custom expander is done, expand the result, which is
4666 // still VT.
4667 ExpandOp(Op, Lo, Hi);
4668 break;
4669 }
4670 }
4671
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004672 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00004673 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004674 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00004675
4676 // If this target supports SRA_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00004677 TargetLowering::LegalizeAction Action =
4678 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
4679 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4680 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00004681 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00004682 break;
4683 }
4684
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004685 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00004686 Lo = ExpandLibCall("__ashrdi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004687 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00004688 }
4689
4690 case ISD::SRL: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004691 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00004692 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004693 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004694 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004695 Op = TLI.LowerOperation(Op, DAG);
4696 if (Op.Val) {
4697 // Now that the custom expander is done, expand the result, which is
4698 // still VT.
4699 ExpandOp(Op, Lo, Hi);
4700 break;
4701 }
4702 }
4703
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004704 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00004705 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004706 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00004707
4708 // If this target supports SRL_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00004709 TargetLowering::LegalizeAction Action =
4710 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
4711 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4712 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00004713 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00004714 break;
4715 }
4716
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004717 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00004718 Lo = ExpandLibCall("__lshrdi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004719 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00004720 }
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004721
Misha Brukman835702a2005-04-21 22:36:52 +00004722 case ISD::ADD:
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004723 case ISD::SUB: {
4724 // If the target wants to custom expand this, let them.
4725 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
4726 TargetLowering::Custom) {
4727 Op = TLI.LowerOperation(Op, DAG);
4728 if (Op.Val) {
4729 ExpandOp(Op, Lo, Hi);
4730 break;
4731 }
4732 }
4733
4734 // Expand the subcomponents.
4735 SDOperand LHSL, LHSH, RHSL, RHSH;
4736 ExpandOp(Node->getOperand(0), LHSL, LHSH);
4737 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner72b503b2006-09-13 03:50:39 +00004738 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
4739 SDOperand LoOps[2], HiOps[3];
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004740 LoOps[0] = LHSL;
4741 LoOps[1] = RHSL;
4742 HiOps[0] = LHSH;
4743 HiOps[1] = RHSH;
Nate Begeman5965bd12006-02-17 05:43:56 +00004744 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner72b503b2006-09-13 03:50:39 +00004745 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004746 HiOps[2] = Lo.getValue(1);
Chris Lattner72b503b2006-09-13 03:50:39 +00004747 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman5965bd12006-02-17 05:43:56 +00004748 } else {
Chris Lattner72b503b2006-09-13 03:50:39 +00004749 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004750 HiOps[2] = Lo.getValue(1);
Chris Lattner72b503b2006-09-13 03:50:39 +00004751 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman5965bd12006-02-17 05:43:56 +00004752 }
Chris Lattnerb3f83b282005-01-20 18:52:28 +00004753 break;
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004754 }
Nate Begemanadd0c632005-04-11 03:01:51 +00004755 case ISD::MUL: {
Chris Lattnerfbadbda2006-09-16 00:09:24 +00004756 // If the target wants to custom expand this, let them.
4757 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattnere50f5d12006-09-16 05:08:34 +00004758 SDOperand New = TLI.LowerOperation(Op, DAG);
4759 if (New.Val) {
4760 ExpandOp(New, Lo, Hi);
Chris Lattnerfbadbda2006-09-16 00:09:24 +00004761 break;
4762 }
4763 }
4764
Evan Chenge93762d2006-09-01 18:17:58 +00004765 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
4766 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
4767 bool UseLibCall = true;
4768 if (HasMULHS || HasMULHU) {
Nate Begemanadd0c632005-04-11 03:01:51 +00004769 SDOperand LL, LH, RL, RH;
4770 ExpandOp(Node->getOperand(0), LL, LH);
4771 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman43144a22005-08-30 02:44:00 +00004772 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
4773 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
4774 // extended the sign bit of the low half through the upper half, and if so
4775 // emit a MULHS instead of the alternate sequence that is valid for any
4776 // i64 x i64 multiply.
Evan Chenge93762d2006-09-01 18:17:58 +00004777 if (HasMULHS &&
Nate Begeman43144a22005-08-30 02:44:00 +00004778 // is RH an extension of the sign bit of RL?
4779 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
4780 RH.getOperand(1).getOpcode() == ISD::Constant &&
4781 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
4782 // is LH an extension of the sign bit of LL?
4783 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
4784 LH.getOperand(1).getOpcode() == ISD::Constant &&
4785 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
Chris Lattner1b633912006-09-16 00:21:44 +00004786 // FIXME: Move this to the dag combiner.
4787
4788 // Low part:
4789 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4790 // High part:
Nate Begeman43144a22005-08-30 02:44:00 +00004791 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
Chris Lattner1b633912006-09-16 00:21:44 +00004792 break;
Evan Chenge93762d2006-09-01 18:17:58 +00004793 } else if (HasMULHU) {
Chris Lattner1b633912006-09-16 00:21:44 +00004794 // Low part:
4795 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4796
4797 // High part:
Nate Begeman43144a22005-08-30 02:44:00 +00004798 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
4799 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
4800 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
4801 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
4802 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattner1b633912006-09-16 00:21:44 +00004803 break;
Nate Begeman43144a22005-08-30 02:44:00 +00004804 }
Nate Begemanadd0c632005-04-11 03:01:51 +00004805 }
Evan Chenge93762d2006-09-01 18:17:58 +00004806
Chris Lattner1b633912006-09-16 00:21:44 +00004807 Lo = ExpandLibCall("__muldi3" , Node, Hi);
Nate Begemanadd0c632005-04-11 03:01:51 +00004808 break;
4809 }
Chris Lattneraac464e2005-01-21 06:05:23 +00004810 case ISD::SDIV: Lo = ExpandLibCall("__divdi3" , Node, Hi); break;
4811 case ISD::UDIV: Lo = ExpandLibCall("__udivdi3", Node, Hi); break;
4812 case ISD::SREM: Lo = ExpandLibCall("__moddi3" , Node, Hi); break;
4813 case ISD::UREM: Lo = ExpandLibCall("__umoddi3", Node, Hi); break;
Chris Lattnerdc750592005-01-07 07:47:09 +00004814 }
4815
Chris Lattnerac12f682005-12-21 18:02:52 +00004816 // Make sure the resultant values have been legalized themselves, unless this
4817 // is a type that requires multi-step expansion.
4818 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
4819 Lo = LegalizeOp(Lo);
4820 Hi = LegalizeOp(Hi);
4821 }
Evan Cheng870e4f82006-01-09 18:31:59 +00004822
4823 // Remember in a map if the values will be reused later.
4824 bool isNew =
4825 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4826 assert(isNew && "Value already expanded?!?");
Chris Lattnerdc750592005-01-07 07:47:09 +00004827}
4828
Chris Lattner32206f52006-03-18 01:44:44 +00004829/// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
4830/// two smaller values of MVT::Vector type.
4831void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
4832 SDOperand &Hi) {
4833 assert(Op.getValueType() == MVT::Vector && "Cannot split non-vector type!");
4834 SDNode *Node = Op.Val;
4835 unsigned NumElements = cast<ConstantSDNode>(*(Node->op_end()-2))->getValue();
4836 assert(NumElements > 1 && "Cannot split a single element vector!");
4837 unsigned NewNumElts = NumElements/2;
4838 SDOperand NewNumEltsNode = DAG.getConstant(NewNumElts, MVT::i32);
4839 SDOperand TypeNode = *(Node->op_end()-1);
4840
4841 // See if we already split it.
4842 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4843 = SplitNodes.find(Op);
4844 if (I != SplitNodes.end()) {
4845 Lo = I->second.first;
4846 Hi = I->second.second;
4847 return;
4848 }
4849
4850 switch (Node->getOpcode()) {
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004851 default:
4852#ifndef NDEBUG
4853 Node->dump();
4854#endif
4855 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerf4e1a532006-03-19 00:52:58 +00004856 case ISD::VBUILD_VECTOR: {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004857 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
4858 Node->op_begin()+NewNumElts);
Chris Lattner32206f52006-03-18 01:44:44 +00004859 LoOps.push_back(NewNumEltsNode);
4860 LoOps.push_back(TypeNode);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004861 Lo = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &LoOps[0], LoOps.size());
Chris Lattner32206f52006-03-18 01:44:44 +00004862
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004863 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts,
4864 Node->op_end()-2);
Chris Lattner32206f52006-03-18 01:44:44 +00004865 HiOps.push_back(NewNumEltsNode);
4866 HiOps.push_back(TypeNode);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004867 Hi = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &HiOps[0], HiOps.size());
Chris Lattner32206f52006-03-18 01:44:44 +00004868 break;
4869 }
4870 case ISD::VADD:
4871 case ISD::VSUB:
4872 case ISD::VMUL:
4873 case ISD::VSDIV:
4874 case ISD::VUDIV:
4875 case ISD::VAND:
4876 case ISD::VOR:
4877 case ISD::VXOR: {
4878 SDOperand LL, LH, RL, RH;
4879 SplitVectorOp(Node->getOperand(0), LL, LH);
4880 SplitVectorOp(Node->getOperand(1), RL, RH);
4881
4882 Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, LL, RL,
4883 NewNumEltsNode, TypeNode);
4884 Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, LH, RH,
4885 NewNumEltsNode, TypeNode);
4886 break;
4887 }
4888 case ISD::VLOAD: {
4889 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4890 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
4891 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4892
4893 Lo = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4894 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(EVT)/8;
4895 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4896 getIntPtrConstant(IncrementSize));
4897 // FIXME: This creates a bogus srcvalue!
4898 Hi = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4899
4900 // Build a factor node to remember that this load is independent of the
4901 // other one.
4902 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4903 Hi.getValue(1));
4904
4905 // Remember that we legalized the chain.
4906 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattner32206f52006-03-18 01:44:44 +00004907 break;
4908 }
Chris Lattnerd7c4e7d2006-03-23 21:16:34 +00004909 case ISD::VBIT_CONVERT: {
4910 // We know the result is a vector. The input may be either a vector or a
4911 // scalar value.
4912 if (Op.getOperand(0).getValueType() != MVT::Vector) {
4913 // Lower to a store/load. FIXME: this could be improved probably.
4914 SDOperand Ptr = CreateStackTemporary(Op.getOperand(0).getValueType());
4915
Evan Chengdf9ac472006-10-05 23:01:46 +00004916 SDOperand St = DAG.getStore(DAG.getEntryNode(),
4917 Op.getOperand(0), Ptr, DAG.getSrcValue(0));
Chris Lattnerd7c4e7d2006-03-23 21:16:34 +00004918 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4919 St = DAG.getVecLoad(NumElements, EVT, St, Ptr, DAG.getSrcValue(0));
4920 SplitVectorOp(St, Lo, Hi);
4921 } else {
4922 // If the input is a vector type, we have to either scalarize it, pack it
4923 // or convert it based on whether the input vector type is legal.
4924 SDNode *InVal = Node->getOperand(0).Val;
4925 unsigned NumElems =
4926 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
4927 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
4928
4929 // If the input is from a single element vector, scalarize the vector,
4930 // then treat like a scalar.
4931 if (NumElems == 1) {
4932 SDOperand Scalar = PackVectorOp(Op.getOperand(0), EVT);
4933 Scalar = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Scalar,
4934 Op.getOperand(1), Op.getOperand(2));
4935 SplitVectorOp(Scalar, Lo, Hi);
4936 } else {
4937 // Split the input vector.
4938 SplitVectorOp(Op.getOperand(0), Lo, Hi);
4939
4940 // Convert each of the pieces now.
4941 Lo = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Lo,
4942 NewNumEltsNode, TypeNode);
4943 Hi = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Hi,
4944 NewNumEltsNode, TypeNode);
4945 }
4946 break;
4947 }
4948 }
Chris Lattner32206f52006-03-18 01:44:44 +00004949 }
4950
4951 // Remember in a map if the values will be reused later.
4952 bool isNew =
4953 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4954 assert(isNew && "Value already expanded?!?");
4955}
4956
4957
4958/// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
4959/// equivalent operation that returns a scalar (e.g. F32) or packed value
4960/// (e.g. MVT::V4F32). When this is called, we know that PackedVT is the right
4961/// type for the result.
4962SDOperand SelectionDAGLegalize::PackVectorOp(SDOperand Op,
4963 MVT::ValueType NewVT) {
4964 assert(Op.getValueType() == MVT::Vector && "Bad PackVectorOp invocation!");
4965 SDNode *Node = Op.Val;
4966
4967 // See if we already packed it.
4968 std::map<SDOperand, SDOperand>::iterator I = PackedNodes.find(Op);
4969 if (I != PackedNodes.end()) return I->second;
4970
4971 SDOperand Result;
4972 switch (Node->getOpcode()) {
Chris Lattner29b23012006-03-19 01:17:20 +00004973 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004974#ifndef NDEBUG
Chris Lattner29b23012006-03-19 01:17:20 +00004975 Node->dump(); std::cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004976#endif
Chris Lattner29b23012006-03-19 01:17:20 +00004977 assert(0 && "Unknown vector operation in PackVectorOp!");
Chris Lattner32206f52006-03-18 01:44:44 +00004978 case ISD::VADD:
4979 case ISD::VSUB:
4980 case ISD::VMUL:
4981 case ISD::VSDIV:
4982 case ISD::VUDIV:
4983 case ISD::VAND:
4984 case ISD::VOR:
4985 case ISD::VXOR:
4986 Result = DAG.getNode(getScalarizedOpcode(Node->getOpcode(), NewVT),
4987 NewVT,
4988 PackVectorOp(Node->getOperand(0), NewVT),
4989 PackVectorOp(Node->getOperand(1), NewVT));
4990 break;
4991 case ISD::VLOAD: {
Chris Lattner93640542006-03-19 00:07:49 +00004992 SDOperand Ch = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
4993 SDOperand Ptr = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattner32206f52006-03-18 01:44:44 +00004994
Evan Chenge71fe34d2006-10-09 20:57:25 +00004995 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
4996 Result = DAG.getLoad(NewVT, Ch, Ptr, SV->getValue(), SV->getOffset());
Chris Lattner32206f52006-03-18 01:44:44 +00004997
4998 // Remember that we legalized the chain.
4999 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
5000 break;
5001 }
Chris Lattnerf4e1a532006-03-19 00:52:58 +00005002 case ISD::VBUILD_VECTOR:
Chris Lattner5fe1f542006-03-31 02:06:56 +00005003 if (Node->getOperand(0).getValueType() == NewVT) {
Chris Lattnerf4e1a532006-03-19 00:52:58 +00005004 // Returning a scalar?
Chris Lattner32206f52006-03-18 01:44:44 +00005005 Result = Node->getOperand(0);
5006 } else {
Chris Lattnerf4e1a532006-03-19 00:52:58 +00005007 // Returning a BUILD_VECTOR?
Chris Lattnere1401e32006-04-08 05:34:25 +00005008
5009 // If all elements of the build_vector are undefs, return an undef.
5010 bool AllUndef = true;
5011 for (unsigned i = 0, e = Node->getNumOperands()-2; i != e; ++i)
5012 if (Node->getOperand(i).getOpcode() != ISD::UNDEF) {
5013 AllUndef = false;
5014 break;
5015 }
5016 if (AllUndef) {
5017 Result = DAG.getNode(ISD::UNDEF, NewVT);
5018 } else {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00005019 Result = DAG.getNode(ISD::BUILD_VECTOR, NewVT, Node->op_begin(),
5020 Node->getNumOperands()-2);
Chris Lattnere1401e32006-04-08 05:34:25 +00005021 }
Chris Lattner32206f52006-03-18 01:44:44 +00005022 }
5023 break;
Chris Lattner29b23012006-03-19 01:17:20 +00005024 case ISD::VINSERT_VECTOR_ELT:
5025 if (!MVT::isVector(NewVT)) {
5026 // Returning a scalar? Must be the inserted element.
5027 Result = Node->getOperand(1);
5028 } else {
5029 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT,
5030 PackVectorOp(Node->getOperand(0), NewVT),
5031 Node->getOperand(1), Node->getOperand(2));
5032 }
5033 break;
Chris Lattnerf6f94d32006-03-28 20:24:43 +00005034 case ISD::VVECTOR_SHUFFLE:
5035 if (!MVT::isVector(NewVT)) {
5036 // Returning a scalar? Figure out if it is the LHS or RHS and return it.
5037 SDOperand EltNum = Node->getOperand(2).getOperand(0);
5038 if (cast<ConstantSDNode>(EltNum)->getValue())
5039 Result = PackVectorOp(Node->getOperand(1), NewVT);
5040 else
5041 Result = PackVectorOp(Node->getOperand(0), NewVT);
5042 } else {
5043 // Otherwise, return a VECTOR_SHUFFLE node. First convert the index
5044 // vector from a VBUILD_VECTOR to a BUILD_VECTOR.
5045 std::vector<SDOperand> BuildVecIdx(Node->getOperand(2).Val->op_begin(),
5046 Node->getOperand(2).Val->op_end()-2);
5047 MVT::ValueType BVT = MVT::getIntVectorWithNumElements(BuildVecIdx.size());
Chris Lattnerc24a1d32006-08-08 02:23:42 +00005048 SDOperand BV = DAG.getNode(ISD::BUILD_VECTOR, BVT,
5049 Node->getOperand(2).Val->op_begin(),
5050 Node->getOperand(2).Val->getNumOperands()-2);
Chris Lattnerf6f94d32006-03-28 20:24:43 +00005051
5052 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT,
5053 PackVectorOp(Node->getOperand(0), NewVT),
5054 PackVectorOp(Node->getOperand(1), NewVT), BV);
5055 }
5056 break;
Chris Lattner2f4119a2006-03-22 20:09:35 +00005057 case ISD::VBIT_CONVERT:
5058 if (Op.getOperand(0).getValueType() != MVT::Vector)
5059 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
5060 else {
5061 // If the input is a vector type, we have to either scalarize it, pack it
5062 // or convert it based on whether the input vector type is legal.
5063 SDNode *InVal = Node->getOperand(0).Val;
5064 unsigned NumElems =
5065 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5066 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5067
5068 // Figure out if there is a Packed type corresponding to this Vector
5069 // type. If so, convert to the packed type.
5070 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
5071 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
5072 // Turn this into a bit convert of the packed input.
5073 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5074 PackVectorOp(Node->getOperand(0), TVT));
5075 break;
5076 } else if (NumElems == 1) {
5077 // Turn this into a bit convert of the scalar input.
5078 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5079 PackVectorOp(Node->getOperand(0), EVT));
5080 break;
5081 } else {
5082 // FIXME: UNIMP!
5083 assert(0 && "Cast from unsupported vector type not implemented yet!");
5084 }
5085 }
Evan Chengcb73b8d2006-04-10 18:54:36 +00005086 break;
Chris Lattner02274a52006-04-08 22:22:57 +00005087 case ISD::VSELECT:
5088 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
5089 PackVectorOp(Op.getOperand(1), NewVT),
5090 PackVectorOp(Op.getOperand(2), NewVT));
5091 break;
Chris Lattner32206f52006-03-18 01:44:44 +00005092 }
5093
5094 if (TLI.isTypeLegal(NewVT))
5095 Result = LegalizeOp(Result);
5096 bool isNew = PackedNodes.insert(std::make_pair(Op, Result)).second;
5097 assert(isNew && "Value already packed?");
5098 return Result;
5099}
5100
Chris Lattnerdc750592005-01-07 07:47:09 +00005101
5102// SelectionDAG::Legalize - This is the entry point for the file.
5103//
Chris Lattner4add7e32005-01-23 04:42:50 +00005104void SelectionDAG::Legalize() {
Chris Lattneref598052006-04-02 03:07:27 +00005105 if (ViewLegalizeDAGs) viewGraph();
5106
Chris Lattnerdc750592005-01-07 07:47:09 +00005107 /// run - This is the main entry point to this class.
5108 ///
Chris Lattner9dcce6d2006-01-28 07:39:30 +00005109 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattnerdc750592005-01-07 07:47:09 +00005110}
5111