blob: fa337064ab841608235df247a25e3cb4b8df37e8 [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"
Evan Cheng84a28d42006-10-30 08:00:44 +000019#include "llvm/Target/TargetMachine.h"
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +000020#include "llvm/Target/TargetOptions.h"
Chris Lattner2e77db62005-05-13 18:50:42 +000021#include "llvm/CallingConv.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000022#include "llvm/Constants.h"
Chris Lattneref598052006-04-02 03:07:27 +000023#include "llvm/Support/MathExtras.h"
24#include "llvm/Support/CommandLine.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000025#include "llvm/Support/Compiler.h"
Chris Lattner97af9d52006-08-08 01:09:31 +000026#include "llvm/ADT/SmallVector.h"
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:
Andrew Lenhartha6bbf332006-10-11 04:29:42 +0000537 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattnereb637512006-01-28 08:31:04 +0000538 // Primitives must all be legal.
539 assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
540 "This must be legal!");
541 break;
Chris Lattnerdc750592005-01-07 07:47:09 +0000542 default:
Chris Lattner3eb86932005-05-14 06:34:48 +0000543 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
544 // If this is a target node, legalize it by legalizing the operands then
545 // passing it through.
Chris Lattner97af9d52006-08-08 01:09:31 +0000546 SmallVector<SDOperand, 8> Ops;
Chris Lattner62f1b832006-05-17 18:00:08 +0000547 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattner3eb86932005-05-14 06:34:48 +0000548 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner62f1b832006-05-17 18:00:08 +0000549
Chris Lattner97af9d52006-08-08 01:09:31 +0000550 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattner3eb86932005-05-14 06:34:48 +0000551
552 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
553 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
554 return Result.getValue(Op.ResNo);
555 }
556 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeyc3d341e2006-07-11 17:58:07 +0000557#ifndef NDEBUG
Bill Wendling22e978a2006-12-07 20:04:42 +0000558 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +0000559#endif
Chris Lattnerdc750592005-01-07 07:47:09 +0000560 assert(0 && "Do not know how to legalize this operator!");
561 abort();
Chris Lattnerdc750592005-01-07 07:47:09 +0000562 case ISD::GlobalAddress:
Chris Lattner32f20bf2005-01-07 21:45:56 +0000563 case ISD::ExternalSymbol:
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000564 case ISD::ConstantPool:
565 case ISD::JumpTable: // Nothing to do.
Chris Lattner45ca1c02005-11-17 06:41:44 +0000566 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
567 default: assert(0 && "This action is not supported yet!");
Chris Lattnereb637512006-01-28 08:31:04 +0000568 case TargetLowering::Custom:
569 Tmp1 = TLI.LowerOperation(Op, DAG);
570 if (Tmp1.Val) Result = Tmp1;
571 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner45ca1c02005-11-17 06:41:44 +0000572 case TargetLowering::Legal:
Chris Lattner45ca1c02005-11-17 06:41:44 +0000573 break;
574 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000575 break;
Chris Lattnerd9af1aa2005-09-02 01:15:01 +0000576 case ISD::AssertSext:
577 case ISD::AssertZext:
578 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +0000579 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerd9af1aa2005-09-02 01:15:01 +0000580 break;
Chris Lattner44c28c22005-11-20 22:56:56 +0000581 case ISD::MERGE_VALUES:
Chris Lattnerd02b0542006-01-28 10:58:55 +0000582 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000583 Result = Node->getOperand(Op.ResNo);
584 break;
Chris Lattner3b8e7192005-01-14 22:38:01 +0000585 case ISD::CopyFromReg:
586 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnere3c67e92005-12-18 15:27:43 +0000587 Result = Op.getValue(0);
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000588 if (Node->getNumValues() == 2) {
Chris Lattnerd02b0542006-01-28 10:58:55 +0000589 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnere3c67e92005-12-18 15:27:43 +0000590 } else {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000591 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerd02b0542006-01-28 10:58:55 +0000592 if (Node->getNumOperands() == 3) {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000593 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerd02b0542006-01-28 10:58:55 +0000594 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
595 } else {
596 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
597 }
Chris Lattnere3c67e92005-12-18 15:27:43 +0000598 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
599 }
Chris Lattnereb6614d2005-01-28 06:27:38 +0000600 // Since CopyFromReg produces two values, make sure to remember that we
601 // legalized both of them.
602 AddLegalizedOperand(Op.getValue(0), Result);
603 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
604 return Result.getValue(Op.ResNo);
Nate Begemancda9aa72005-04-01 22:34:39 +0000605 case ISD::UNDEF: {
606 MVT::ValueType VT = Op.getValueType();
607 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begeman69d39432005-04-02 00:41:14 +0000608 default: assert(0 && "This action is not supported yet!");
609 case TargetLowering::Expand:
Nate Begemancda9aa72005-04-01 22:34:39 +0000610 if (MVT::isInteger(VT))
611 Result = DAG.getConstant(0, VT);
612 else if (MVT::isFloatingPoint(VT))
613 Result = DAG.getConstantFP(0, VT);
614 else
615 assert(0 && "Unknown value type!");
616 break;
Nate Begeman69d39432005-04-02 00:41:14 +0000617 case TargetLowering::Legal:
Nate Begemancda9aa72005-04-01 22:34:39 +0000618 break;
619 }
620 break;
621 }
Chris Lattnera4f68052006-03-24 02:26:29 +0000622
Chris Lattnere55d1712006-03-28 00:40:33 +0000623 case ISD::INTRINSIC_W_CHAIN:
624 case ISD::INTRINSIC_WO_CHAIN:
625 case ISD::INTRINSIC_VOID: {
Chris Lattner97af9d52006-08-08 01:09:31 +0000626 SmallVector<SDOperand, 8> Ops;
Chris Lattnera4f68052006-03-24 02:26:29 +0000627 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
628 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner97af9d52006-08-08 01:09:31 +0000629 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner30ee7252006-03-26 09:12:51 +0000630
631 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattnere55d1712006-03-28 00:40:33 +0000632 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner30ee7252006-03-26 09:12:51 +0000633 TargetLowering::Custom) {
634 Tmp3 = TLI.LowerOperation(Result, DAG);
635 if (Tmp3.Val) Result = Tmp3;
Chris Lattnerd5f94c92006-03-27 20:28:29 +0000636 }
637
638 if (Result.Val->getNumValues() == 1) break;
639
640 // Must have return value and chain result.
641 assert(Result.Val->getNumValues() == 2 &&
642 "Cannot return more than two values!");
643
644 // Since loads produce two values, make sure to remember that we
645 // legalized both of them.
646 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
647 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
648 return Result.getValue(Op.ResNo);
Chris Lattnera4f68052006-03-24 02:26:29 +0000649 }
Chris Lattner435b4022005-11-29 06:21:05 +0000650
651 case ISD::LOCATION:
652 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
653 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
654
655 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
656 case TargetLowering::Promote:
657 default: assert(0 && "This action is not supported yet!");
Jim Laskey7c462762005-12-16 22:45:29 +0000658 case TargetLowering::Expand: {
Jim Laskey219d5592006-01-04 22:28:25 +0000659 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskey762e9ec2006-01-05 01:25:28 +0000660 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
661 bool useDEBUG_LABEL = TLI.isOperationLegal(ISD::DEBUG_LABEL, MVT::Other);
662
663 if (DebugInfo && (useDEBUG_LOC || useDEBUG_LABEL)) {
664 const std::string &FName =
665 cast<StringSDNode>(Node->getOperand(3))->getValue();
666 const std::string &DirName =
667 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskeyb9966022006-01-17 17:31:53 +0000668 unsigned SrcFile = DebugInfo->RecordSource(DirName, FName);
Jim Laskey762e9ec2006-01-05 01:25:28 +0000669
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000670 SmallVector<SDOperand, 8> Ops;
Jim Laskey9e296be2005-12-21 20:51:37 +0000671 Ops.push_back(Tmp1); // chain
Jim Laskey762e9ec2006-01-05 01:25:28 +0000672 SDOperand LineOp = Node->getOperand(1);
673 SDOperand ColOp = Node->getOperand(2);
674
675 if (useDEBUG_LOC) {
676 Ops.push_back(LineOp); // line #
677 Ops.push_back(ColOp); // col #
678 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000679 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskey762e9ec2006-01-05 01:25:28 +0000680 } else {
Jim Laskey2eea4362006-02-15 19:34:44 +0000681 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
682 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskey762e9ec2006-01-05 01:25:28 +0000683 unsigned ID = DebugInfo->RecordLabel(Line, Col, SrcFile);
684 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000685 Result = DAG.getNode(ISD::DEBUG_LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskey762e9ec2006-01-05 01:25:28 +0000686 }
Jim Laskey9e296be2005-12-21 20:51:37 +0000687 } else {
688 Result = Tmp1; // chain
689 }
Chris Lattner435b4022005-11-29 06:21:05 +0000690 break;
Chris Lattnerc06da622005-12-18 23:54:29 +0000691 }
Chris Lattner435b4022005-11-29 06:21:05 +0000692 case TargetLowering::Legal:
Chris Lattner05b0b452005-12-01 18:21:35 +0000693 if (Tmp1 != Node->getOperand(0) ||
694 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattner97af9d52006-08-08 01:09:31 +0000695 SmallVector<SDOperand, 8> Ops;
Chris Lattner435b4022005-11-29 06:21:05 +0000696 Ops.push_back(Tmp1);
Chris Lattner05b0b452005-12-01 18:21:35 +0000697 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
698 Ops.push_back(Node->getOperand(1)); // line # must be legal.
699 Ops.push_back(Node->getOperand(2)); // col # must be legal.
700 } else {
701 // Otherwise promote them.
702 Ops.push_back(PromoteOp(Node->getOperand(1)));
703 Ops.push_back(PromoteOp(Node->getOperand(2)));
704 }
Chris Lattner435b4022005-11-29 06:21:05 +0000705 Ops.push_back(Node->getOperand(3)); // filename must be legal.
706 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattner97af9d52006-08-08 01:09:31 +0000707 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner435b4022005-11-29 06:21:05 +0000708 }
709 break;
710 }
711 break;
Jim Laskey7c462762005-12-16 22:45:29 +0000712
713 case ISD::DEBUG_LOC:
Jim Laskey762e9ec2006-01-05 01:25:28 +0000714 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskey7c462762005-12-16 22:45:29 +0000715 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskey7c462762005-12-16 22:45:29 +0000716 default: assert(0 && "This action is not supported yet!");
Jim Laskey762e9ec2006-01-05 01:25:28 +0000717 case TargetLowering::Legal:
718 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
719 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
720 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
721 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000722 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskey762e9ec2006-01-05 01:25:28 +0000723 break;
724 }
725 break;
726
727 case ISD::DEBUG_LABEL:
728 assert(Node->getNumOperands() == 2 && "Invalid DEBUG_LABEL node!");
729 switch (TLI.getOperationAction(ISD::DEBUG_LABEL, MVT::Other)) {
Jim Laskey762e9ec2006-01-05 01:25:28 +0000730 default: assert(0 && "This action is not supported yet!");
731 case TargetLowering::Legal:
732 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
733 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000734 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskey7c462762005-12-16 22:45:29 +0000735 break;
736 }
Nate Begeman5965bd12006-02-17 05:43:56 +0000737 break;
Chris Lattner435b4022005-11-29 06:21:05 +0000738
Chris Lattnerdc750592005-01-07 07:47:09 +0000739 case ISD::Constant:
740 // We know we don't need to expand constants here, constants only have one
741 // value and we check that it is fine above.
742
743 // FIXME: Maybe we should handle things like targets that don't support full
744 // 32-bit immediates?
745 break;
746 case ISD::ConstantFP: {
747 // Spill FP immediates to the constant pool if the target cannot directly
748 // codegen them. Targets often have some immediate values that can be
749 // efficiently generated into an FP register without a load. We explicitly
750 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattnerdc750592005-01-07 07:47:09 +0000751 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
752
753 // Check to see if this FP immediate is already legal.
754 bool isLegal = false;
755 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
756 E = TLI.legal_fpimm_end(); I != E; ++I)
757 if (CFP->isExactlyValue(*I)) {
758 isLegal = true;
759 break;
760 }
761
Chris Lattner758b0ac2006-01-29 06:26:56 +0000762 // If this is a legal constant, turn it into a TargetConstantFP node.
763 if (isLegal) {
764 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
765 break;
766 }
767
768 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
769 default: assert(0 && "This action is not supported yet!");
770 case TargetLowering::Custom:
771 Tmp3 = TLI.LowerOperation(Result, DAG);
772 if (Tmp3.Val) {
773 Result = Tmp3;
774 break;
775 }
776 // FALLTHROUGH
777 case TargetLowering::Expand:
Chris Lattnerdc750592005-01-07 07:47:09 +0000778 // Otherwise we need to spill the constant to memory.
Chris Lattnerdc750592005-01-07 07:47:09 +0000779 bool Extend = false;
780
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000781 // If a FP immediate is precise when represented as a float and if the
782 // target can do an extending load from float to double, we put it into
783 // the constant pool as a float, even if it's is statically typed as a
784 // double.
Chris Lattnerdc750592005-01-07 07:47:09 +0000785 MVT::ValueType VT = CFP->getValueType(0);
786 bool isDouble = VT == MVT::f64;
787 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
788 Type::FloatTy, CFP->getValue());
Chris Lattnerbc7497d2005-01-28 22:58:25 +0000789 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
790 // Only do this if the target has a native EXTLOAD instruction from
791 // f32.
Evan Cheng5d9fd972006-10-04 00:56:09 +0000792 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
Chris Lattnerdc750592005-01-07 07:47:09 +0000793 LLVMC = cast<ConstantFP>(ConstantExpr::getCast(LLVMC, Type::FloatTy));
794 VT = MVT::f32;
795 Extend = true;
796 }
Misha Brukman835702a2005-04-21 22:36:52 +0000797
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000798 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Chris Lattner3ba56b32005-01-16 05:06:12 +0000799 if (Extend) {
Chris Lattnerde0a4b12005-07-10 01:55:33 +0000800 Result = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Chenge71fe34d2006-10-09 20:57:25 +0000801 CPIdx, NULL, 0, MVT::f32);
Chris Lattner3ba56b32005-01-16 05:06:12 +0000802 } else {
Evan Chenge71fe34d2006-10-09 20:57:25 +0000803 Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner3ba56b32005-01-16 05:06:12 +0000804 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000805 }
806 break;
807 }
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000808 case ISD::TokenFactor:
809 if (Node->getNumOperands() == 2) {
Chris Lattnerd02b0542006-01-28 10:58:55 +0000810 Tmp1 = LegalizeOp(Node->getOperand(0));
811 Tmp2 = LegalizeOp(Node->getOperand(1));
812 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
813 } else if (Node->getNumOperands() == 3) {
814 Tmp1 = LegalizeOp(Node->getOperand(0));
815 Tmp2 = LegalizeOp(Node->getOperand(1));
816 Tmp3 = LegalizeOp(Node->getOperand(2));
817 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000818 } else {
Chris Lattner97af9d52006-08-08 01:09:31 +0000819 SmallVector<SDOperand, 8> Ops;
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000820 // Legalize the operands.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000821 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
822 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner97af9d52006-08-08 01:09:31 +0000823 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner05b4e372005-01-13 17:59:25 +0000824 }
Chris Lattner05b4e372005-01-13 17:59:25 +0000825 break;
Chris Lattnerd3b504a2006-04-12 16:20:43 +0000826
827 case ISD::FORMAL_ARGUMENTS:
Chris Lattneraaa23d92006-05-16 22:53:20 +0000828 case ISD::CALL:
Chris Lattnerd3b504a2006-04-12 16:20:43 +0000829 // The only option for this is to custom lower it.
Chris Lattnera1cec012006-05-17 17:55:45 +0000830 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
831 assert(Tmp3.Val && "Target didn't custom lower this node!");
832 assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
833 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattner5f0edfb2006-05-16 05:49:56 +0000834
Chris Lattneraaa23d92006-05-16 22:53:20 +0000835 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattner5f0edfb2006-05-16 05:49:56 +0000836 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnera1cec012006-05-17 17:55:45 +0000837 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
838 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattner5f0edfb2006-05-16 05:49:56 +0000839 if (Op.ResNo == i)
840 Tmp2 = Tmp1;
841 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
842 }
843 return Tmp2;
Chris Lattnerd3b504a2006-04-12 16:20:43 +0000844
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000845 case ISD::BUILD_VECTOR:
846 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner29b23012006-03-19 01:17:20 +0000847 default: assert(0 && "This action is not supported yet!");
848 case TargetLowering::Custom:
849 Tmp3 = TLI.LowerOperation(Result, DAG);
850 if (Tmp3.Val) {
851 Result = Tmp3;
852 break;
853 }
854 // FALLTHROUGH
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000855 case TargetLowering::Expand:
856 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000857 break;
Chris Lattner29b23012006-03-19 01:17:20 +0000858 }
Chris Lattner29b23012006-03-19 01:17:20 +0000859 break;
860 case ISD::INSERT_VECTOR_ELT:
861 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
862 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
863 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
864 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
865
866 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
867 Node->getValueType(0))) {
868 default: assert(0 && "This action is not supported yet!");
869 case TargetLowering::Legal:
870 break;
871 case TargetLowering::Custom:
872 Tmp3 = TLI.LowerOperation(Result, DAG);
873 if (Tmp3.Val) {
874 Result = Tmp3;
875 break;
876 }
877 // FALLTHROUGH
878 case TargetLowering::Expand: {
Chris Lattner326870b2006-04-17 19:21:01 +0000879 // If the insert index is a constant, codegen this as a scalar_to_vector,
880 // then a shuffle that inserts it into the right position in the vector.
881 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
882 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
883 Tmp1.getValueType(), Tmp2);
884
885 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
886 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
887 MVT::ValueType ShufMaskEltVT = MVT::getVectorBaseType(ShufMaskVT);
888
889 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
890 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
891 // the RHS.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000892 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner326870b2006-04-17 19:21:01 +0000893 for (unsigned i = 0; i != NumElts; ++i) {
894 if (i != InsertPos->getValue())
895 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
896 else
897 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
898 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000899 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
900 &ShufOps[0], ShufOps.size());
Chris Lattner326870b2006-04-17 19:21:01 +0000901
902 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
903 Tmp1, ScVec, ShufMask);
904 Result = LegalizeOp(Result);
905 break;
906 }
907
Chris Lattner29b23012006-03-19 01:17:20 +0000908 // If the target doesn't support this, we have to spill the input vector
909 // to a temporary stack slot, update the element, then reload it. This is
910 // badness. We could also load the value into a vector register (either
911 // with a "move to register" or "extload into register" instruction, then
912 // permute it into place, if the idx is a constant and if the idx is
913 // supported by the target.
Evan Cheng78e3d562006-04-08 01:46:37 +0000914 MVT::ValueType VT = Tmp1.getValueType();
915 MVT::ValueType EltVT = Tmp2.getValueType();
916 MVT::ValueType IdxVT = Tmp3.getValueType();
917 MVT::ValueType PtrVT = TLI.getPointerTy();
918 SDOperand StackPtr = CreateStackTemporary(VT);
Evan Cheng168e45b2006-03-31 01:27:51 +0000919 // Store the vector.
Evan Chengab51cf22006-10-13 21:14:26 +0000920 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, NULL, 0);
Evan Cheng168e45b2006-03-31 01:27:51 +0000921
922 // Truncate or zero extend offset to target pointer type.
Evan Cheng78e3d562006-04-08 01:46:37 +0000923 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
924 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Cheng168e45b2006-03-31 01:27:51 +0000925 // Add the offset to the index.
Evan Cheng78e3d562006-04-08 01:46:37 +0000926 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
927 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
928 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Cheng168e45b2006-03-31 01:27:51 +0000929 // Store the scalar value.
Evan Chengab51cf22006-10-13 21:14:26 +0000930 Ch = DAG.getStore(Ch, Tmp2, StackPtr2, NULL, 0);
Evan Cheng168e45b2006-03-31 01:27:51 +0000931 // Load the updated vector.
Evan Chenge71fe34d2006-10-09 20:57:25 +0000932 Result = DAG.getLoad(VT, Ch, StackPtr, NULL, 0);
Chris Lattner29b23012006-03-19 01:17:20 +0000933 break;
934 }
935 }
936 break;
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000937 case ISD::SCALAR_TO_VECTOR:
Chris Lattner6be79822006-04-04 17:23:26 +0000938 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
939 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
940 break;
941 }
942
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000943 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
944 Result = DAG.UpdateNodeOperands(Result, Tmp1);
945 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
946 Node->getValueType(0))) {
947 default: assert(0 && "This action is not supported yet!");
948 case TargetLowering::Legal:
949 break;
Chris Lattner79fb91c2006-03-19 06:47:21 +0000950 case TargetLowering::Custom:
951 Tmp3 = TLI.LowerOperation(Result, DAG);
952 if (Tmp3.Val) {
953 Result = Tmp3;
954 break;
955 }
956 // FALLTHROUGH
Chris Lattner6be79822006-04-04 17:23:26 +0000957 case TargetLowering::Expand:
958 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000959 break;
960 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000961 break;
Chris Lattner21e68c82006-03-20 01:52:29 +0000962 case ISD::VECTOR_SHUFFLE:
Chris Lattner21e68c82006-03-20 01:52:29 +0000963 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
964 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
965 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
966
967 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner6be79822006-04-04 17:23:26 +0000968 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
969 default: assert(0 && "Unknown operation action!");
970 case TargetLowering::Legal:
971 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
972 "vector shuffle should not be created if not legal!");
973 break;
974 case TargetLowering::Custom:
Evan Cheng9fa89592006-04-05 06:07:11 +0000975 Tmp3 = TLI.LowerOperation(Result, DAG);
976 if (Tmp3.Val) {
977 Result = Tmp3;
978 break;
979 }
980 // FALLTHROUGH
981 case TargetLowering::Expand: {
982 MVT::ValueType VT = Node->getValueType(0);
983 MVT::ValueType EltVT = MVT::getVectorBaseType(VT);
984 MVT::ValueType PtrVT = TLI.getPointerTy();
985 SDOperand Mask = Node->getOperand(2);
986 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000987 SmallVector<SDOperand,8> Ops;
Evan Cheng9fa89592006-04-05 06:07:11 +0000988 for (unsigned i = 0; i != NumElems; ++i) {
989 SDOperand Arg = Mask.getOperand(i);
990 if (Arg.getOpcode() == ISD::UNDEF) {
991 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
992 } else {
993 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
994 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
995 if (Idx < NumElems)
996 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
997 DAG.getConstant(Idx, PtrVT)));
998 else
999 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1000 DAG.getConstant(Idx - NumElems, PtrVT)));
1001 }
1002 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001003 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6be79822006-04-04 17:23:26 +00001004 break;
Evan Cheng9fa89592006-04-05 06:07:11 +00001005 }
Chris Lattner6be79822006-04-04 17:23:26 +00001006 case TargetLowering::Promote: {
1007 // Change base type to a different vector type.
1008 MVT::ValueType OVT = Node->getValueType(0);
1009 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1010
1011 // Cast the two input vectors.
1012 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1013 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1014
1015 // Convert the shuffle mask to the right # elements.
1016 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1017 assert(Tmp3.Val && "Shuffle not legal?");
1018 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1019 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1020 break;
1021 }
Chris Lattner21e68c82006-03-20 01:52:29 +00001022 }
1023 break;
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001024
1025 case ISD::EXTRACT_VECTOR_ELT:
1026 Tmp1 = LegalizeOp(Node->getOperand(0));
1027 Tmp2 = LegalizeOp(Node->getOperand(1));
1028 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner340a6b52006-03-21 21:02:03 +00001029
1030 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT,
1031 Tmp1.getValueType())) {
1032 default: assert(0 && "This action is not supported yet!");
1033 case TargetLowering::Legal:
1034 break;
1035 case TargetLowering::Custom:
1036 Tmp3 = TLI.LowerOperation(Result, DAG);
1037 if (Tmp3.Val) {
1038 Result = Tmp3;
1039 break;
1040 }
1041 // FALLTHROUGH
Chris Lattner42a5fca2006-04-02 05:06:04 +00001042 case TargetLowering::Expand:
1043 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner340a6b52006-03-21 21:02:03 +00001044 break;
1045 }
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001046 break;
1047
Chris Lattner6f423252006-03-31 17:55:51 +00001048 case ISD::VEXTRACT_VECTOR_ELT:
1049 Result = LegalizeOp(LowerVEXTRACT_VECTOR_ELT(Op));
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001050 break;
Chris Lattner21e68c82006-03-20 01:52:29 +00001051
Chris Lattner462505f2006-02-13 09:18:02 +00001052 case ISD::CALLSEQ_START: {
1053 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1054
1055 // Recursively Legalize all of the inputs of the call end that do not lead
1056 // to this call start. This ensures that any libcalls that need be inserted
1057 // are inserted *before* the CALLSEQ_START.
Chris Lattner4488f0c2006-07-26 23:55:56 +00001058 {std::set<SDNode*> NodesLeadingTo;
Chris Lattner462505f2006-02-13 09:18:02 +00001059 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattner4488f0c2006-07-26 23:55:56 +00001060 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1061 NodesLeadingTo);
1062 }
Chris Lattner462505f2006-02-13 09:18:02 +00001063
1064 // Now that we legalized all of the inputs (which may have inserted
1065 // libcalls) create the new CALLSEQ_START node.
1066 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1067
1068 // Merge in the last call, to ensure that this call start after the last
1069 // call ended.
Chris Lattner62f1b832006-05-17 18:00:08 +00001070 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnera1cec012006-05-17 17:55:45 +00001071 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1072 Tmp1 = LegalizeOp(Tmp1);
1073 }
Chris Lattner462505f2006-02-13 09:18:02 +00001074
1075 // Do not try to legalize the target-specific arguments (#1+).
1076 if (Tmp1 != Node->getOperand(0)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001077 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner462505f2006-02-13 09:18:02 +00001078 Ops[0] = Tmp1;
Chris Lattner97af9d52006-08-08 01:09:31 +00001079 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner462505f2006-02-13 09:18:02 +00001080 }
1081
1082 // Remember that the CALLSEQ_START is legalized.
Chris Lattner8e2ee732006-02-14 00:55:02 +00001083 AddLegalizedOperand(Op.getValue(0), Result);
1084 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1085 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1086
Chris Lattner462505f2006-02-13 09:18:02 +00001087 // Now that the callseq_start and all of the non-call nodes above this call
1088 // sequence have been legalized, legalize the call itself. During this
1089 // process, no libcalls can/will be inserted, guaranteeing that no calls
1090 // can overlap.
1091 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1092 SDOperand InCallSEQ = LastCALLSEQ_END;
1093 // Note that we are selecting this call!
1094 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1095 IsLegalizingCall = true;
1096
1097 // Legalize the call, starting from the CALLSEQ_END.
1098 LegalizeOp(LastCALLSEQ_END);
1099 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1100 return Result;
1101 }
Chris Lattner2dce7032005-05-12 23:24:06 +00001102 case ISD::CALLSEQ_END:
Chris Lattner462505f2006-02-13 09:18:02 +00001103 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1104 // will cause this node to be legalized as well as handling libcalls right.
1105 if (LastCALLSEQ_END.Val != Node) {
1106 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
1107 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
1108 assert(I != LegalizedNodes.end() &&
1109 "Legalizing the call start should have legalized this node!");
1110 return I->second;
1111 }
1112
1113 // Otherwise, the call start has been legalized and everything is going
1114 // according to plan. Just legalize ourselves normally here.
Chris Lattnerdc750592005-01-07 07:47:09 +00001115 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerccb44762006-01-29 07:58:15 +00001116 // Do not try to legalize the target-specific arguments (#1+), except for
1117 // an optional flag input.
1118 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1119 if (Tmp1 != Node->getOperand(0)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001120 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattnerccb44762006-01-29 07:58:15 +00001121 Ops[0] = Tmp1;
Chris Lattner97af9d52006-08-08 01:09:31 +00001122 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerccb44762006-01-29 07:58:15 +00001123 }
1124 } else {
1125 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1126 if (Tmp1 != Node->getOperand(0) ||
1127 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001128 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattnerccb44762006-01-29 07:58:15 +00001129 Ops[0] = Tmp1;
1130 Ops.back() = Tmp2;
Chris Lattner97af9d52006-08-08 01:09:31 +00001131 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerccb44762006-01-29 07:58:15 +00001132 }
Chris Lattnerf9a1e3a2006-01-24 05:48:21 +00001133 }
Chris Lattner8e2ee732006-02-14 00:55:02 +00001134 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner462505f2006-02-13 09:18:02 +00001135 // This finishes up call legalization.
1136 IsLegalizingCall = false;
Chris Lattner8e2ee732006-02-14 00:55:02 +00001137
1138 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1139 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1140 if (Node->getNumValues() == 2)
1141 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1142 return Result.getValue(Op.ResNo);
Evan Cheng7f4ec822006-01-11 22:14:47 +00001143 case ISD::DYNAMIC_STACKALLOC: {
Chris Lattnerec26b482005-01-09 19:03:49 +00001144 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1145 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1146 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001147 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerec26b482005-01-09 19:03:49 +00001148
Chris Lattnerd02b0542006-01-28 10:58:55 +00001149 Tmp1 = Result.getValue(0);
Chris Lattner2d591422006-01-15 08:43:08 +00001150 Tmp2 = Result.getValue(1);
Evan Cheng7f4ec822006-01-11 22:14:47 +00001151 switch (TLI.getOperationAction(Node->getOpcode(),
1152 Node->getValueType(0))) {
1153 default: assert(0 && "This action is not supported yet!");
Chris Lattner59b82f92006-01-15 08:54:32 +00001154 case TargetLowering::Expand: {
1155 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1156 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1157 " not tell us which reg is the stack pointer!");
1158 SDOperand Chain = Tmp1.getOperand(0);
1159 SDOperand Size = Tmp2.getOperand(1);
1160 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
1161 Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size); // Value
1162 Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1); // Output chain
Chris Lattnerd02b0542006-01-28 10:58:55 +00001163 Tmp1 = LegalizeOp(Tmp1);
1164 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner59b82f92006-01-15 08:54:32 +00001165 break;
1166 }
1167 case TargetLowering::Custom:
Chris Lattner2d591422006-01-15 08:43:08 +00001168 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1169 if (Tmp3.Val) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001170 Tmp1 = LegalizeOp(Tmp3);
1171 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Cheng7f4ec822006-01-11 22:14:47 +00001172 }
Chris Lattner59b82f92006-01-15 08:54:32 +00001173 break;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001174 case TargetLowering::Legal:
Chris Lattner59b82f92006-01-15 08:54:32 +00001175 break;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001176 }
Chris Lattner59b82f92006-01-15 08:54:32 +00001177 // Since this op produce two values, make sure to remember that we
1178 // legalized both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001179 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1180 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner59b82f92006-01-15 08:54:32 +00001181 return Op.ResNo ? Tmp2 : Tmp1;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001182 }
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001183 case ISD::INLINEASM: {
Chris Lattner97af9d52006-08-08 01:09:31 +00001184 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001185 bool Changed = false;
1186 // Legalize all of the operands of the inline asm, in case they are nodes
1187 // that need to be expanded or something. Note we skip the asm string and
1188 // all of the TargetConstant flags.
1189 SDOperand Op = LegalizeOp(Ops[0]);
1190 Changed = Op != Ops[0];
1191 Ops[0] = Op;
1192
1193 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1194 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1195 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1196 for (++i; NumVals; ++i, --NumVals) {
1197 SDOperand Op = LegalizeOp(Ops[i]);
1198 if (Op != Ops[i]) {
1199 Changed = true;
1200 Ops[i] = Op;
1201 }
1202 }
Chris Lattner476e67b2006-01-26 22:24:51 +00001203 }
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001204
1205 if (HasInFlag) {
1206 Op = LegalizeOp(Ops.back());
1207 Changed |= Op != Ops.back();
1208 Ops.back() = Op;
1209 }
1210
1211 if (Changed)
Chris Lattner97af9d52006-08-08 01:09:31 +00001212 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner476e67b2006-01-26 22:24:51 +00001213
1214 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001215 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner476e67b2006-01-26 22:24:51 +00001216 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1217 return Result.getValue(Op.ResNo);
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001218 }
Chris Lattner68a12142005-01-07 22:12:08 +00001219 case ISD::BR:
1220 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001221 // Ensure that libcalls are emitted before a branch.
1222 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1223 Tmp1 = LegalizeOp(Tmp1);
1224 LastCALLSEQ_END = DAG.getEntryNode();
1225
Chris Lattnerd02b0542006-01-28 10:58:55 +00001226 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner68a12142005-01-07 22:12:08 +00001227 break;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001228 case ISD::BRIND:
1229 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1230 // Ensure that libcalls are emitted before a branch.
1231 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1232 Tmp1 = LegalizeOp(Tmp1);
1233 LastCALLSEQ_END = DAG.getEntryNode();
1234
1235 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1236 default: assert(0 && "Indirect target must be legal type (pointer)!");
1237 case Legal:
1238 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1239 break;
1240 }
1241 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1242 break;
Evan Cheng84a28d42006-10-30 08:00:44 +00001243 case ISD::BR_JT:
1244 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1245 // Ensure that libcalls are emitted before a branch.
1246 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1247 Tmp1 = LegalizeOp(Tmp1);
1248 LastCALLSEQ_END = DAG.getEntryNode();
1249
1250 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1251 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1252
1253 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1254 default: assert(0 && "This action is not supported yet!");
1255 case TargetLowering::Legal: break;
1256 case TargetLowering::Custom:
1257 Tmp1 = TLI.LowerOperation(Result, DAG);
1258 if (Tmp1.Val) Result = Tmp1;
1259 break;
1260 case TargetLowering::Expand: {
1261 SDOperand Chain = Result.getOperand(0);
1262 SDOperand Table = Result.getOperand(1);
1263 SDOperand Index = Result.getOperand(2);
1264
1265 MVT::ValueType PTy = TLI.getPointerTy();
1266 bool isPIC = TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_;
1267 // PIC jump table entries are 32-bit values.
1268 unsigned EntrySize = isPIC ? 4 : MVT::getSizeInBits(PTy)/8;
1269 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1270 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
1271 SDOperand LD = DAG.getLoad(isPIC ? MVT::i32 : PTy, Chain, Addr, NULL, 0);
1272 if (isPIC) {
1273 // For PIC, the sequence is:
1274 // BRIND(load(Jumptable + index) + RelocBase)
1275 // RelocBase is the JumpTable on PPC and X86, GOT on Alpha
1276 SDOperand Reloc;
1277 if (TLI.usesGlobalOffsetTable())
1278 Reloc = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, PTy);
1279 else
1280 Reloc = Table;
Evan Chenge6d58472006-10-31 02:31:00 +00001281 Addr = (PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD;
Evan Cheng84a28d42006-10-30 08:00:44 +00001282 Addr = DAG.getNode(ISD::ADD, PTy, Addr, Reloc);
1283 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
1284 } else {
1285 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD);
1286 }
1287 }
1288 }
1289 break;
Chris Lattnerec3fe7c2005-01-07 08:19:42 +00001290 case ISD::BRCOND:
1291 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001292 // Ensure that libcalls are emitted before a return.
1293 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1294 Tmp1 = LegalizeOp(Tmp1);
1295 LastCALLSEQ_END = DAG.getEntryNode();
1296
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001297 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1298 case Expand: assert(0 && "It's impossible to expand bools");
1299 case Legal:
1300 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1301 break;
1302 case Promote:
1303 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerdb189382006-11-27 04:39:56 +00001304
1305 // The top bits of the promoted condition are not necessarily zero, ensure
1306 // that the value is properly zero extended.
1307 if (!TLI.MaskedValueIsZero(Tmp2,
1308 MVT::getIntVTBitMask(Tmp2.getValueType())^1))
1309 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001310 break;
1311 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001312
1313 // Basic block destination (Op#2) is always legal.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001314 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman371e4952005-08-16 19:49:35 +00001315
1316 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1317 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001318 case TargetLowering::Legal: break;
1319 case TargetLowering::Custom:
1320 Tmp1 = TLI.LowerOperation(Result, DAG);
1321 if (Tmp1.Val) Result = Tmp1;
1322 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001323 case TargetLowering::Expand:
1324 // Expand brcond's setcc into its constituent parts and create a BR_CC
1325 // Node.
1326 if (Tmp2.getOpcode() == ISD::SETCC) {
1327 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1328 Tmp2.getOperand(0), Tmp2.getOperand(1),
1329 Node->getOperand(2));
1330 } else {
1331 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1332 DAG.getCondCode(ISD::SETNE), Tmp2,
1333 DAG.getConstant(0, Tmp2.getValueType()),
1334 Node->getOperand(2));
1335 }
1336 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001337 }
1338 break;
1339 case ISD::BR_CC:
1340 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001341 // Ensure that libcalls are emitted before a branch.
1342 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1343 Tmp1 = LegalizeOp(Tmp1);
1344 LastCALLSEQ_END = DAG.getEntryNode();
1345
Nate Begeman7e7f4392006-02-01 07:19:44 +00001346 Tmp2 = Node->getOperand(2); // LHS
1347 Tmp3 = Node->getOperand(3); // RHS
1348 Tmp4 = Node->getOperand(1); // CC
1349
1350 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1351
1352 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1353 // the LHS is a legal SETCC itself. In this case, we need to compare
1354 // the result against zero to select between true and false values.
1355 if (Tmp3.Val == 0) {
1356 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1357 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001358 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00001359
1360 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1361 Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001362
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001363 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1364 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001365 case TargetLowering::Legal: break;
1366 case TargetLowering::Custom:
1367 Tmp4 = TLI.LowerOperation(Result, DAG);
1368 if (Tmp4.Val) Result = Tmp4;
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001369 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001370 }
Chris Lattnerec3fe7c2005-01-07 08:19:42 +00001371 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001372 case ISD::LOAD: {
Evan Chenge71fe34d2006-10-09 20:57:25 +00001373 LoadSDNode *LD = cast<LoadSDNode>(Node);
1374 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1375 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00001376
Evan Chenge71fe34d2006-10-09 20:57:25 +00001377 ISD::LoadExtType ExtType = LD->getExtensionType();
1378 if (ExtType == ISD::NON_EXTLOAD) {
1379 MVT::ValueType VT = Node->getValueType(0);
1380 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1381 Tmp3 = Result.getValue(0);
1382 Tmp4 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001383
Evan Chenge71fe34d2006-10-09 20:57:25 +00001384 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1385 default: assert(0 && "This action is not supported yet!");
1386 case TargetLowering::Legal: break;
1387 case TargetLowering::Custom:
1388 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1389 if (Tmp1.Val) {
1390 Tmp3 = LegalizeOp(Tmp1);
1391 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001392 }
Evan Chenge71fe34d2006-10-09 20:57:25 +00001393 break;
1394 case TargetLowering::Promote: {
1395 // Only promote a load of vector type to another.
1396 assert(MVT::isVector(VT) && "Cannot promote this load!");
1397 // Change base type to a different vector type.
1398 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1399
1400 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
1401 LD->getSrcValueOffset());
1402 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1403 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001404 break;
Andrew Lenharthb5597e32005-06-30 19:22:37 +00001405 }
Evan Chenge71fe34d2006-10-09 20:57:25 +00001406 }
1407 // Since loads produce two values, make sure to remember that we
1408 // legalized both of them.
1409 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1410 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1411 return Op.ResNo ? Tmp4 : Tmp3;
1412 } else {
Evan Chengd35734b2006-10-11 07:10:22 +00001413 MVT::ValueType SrcVT = LD->getLoadedVT();
Evan Chenge71fe34d2006-10-09 20:57:25 +00001414 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1415 default: assert(0 && "This action is not supported yet!");
1416 case TargetLowering::Promote:
1417 assert(SrcVT == MVT::i1 &&
1418 "Can only promote extending LOAD from i1 -> i8!");
1419 Result = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1420 LD->getSrcValue(), LD->getSrcValueOffset(),
1421 MVT::i8);
1422 Tmp1 = Result.getValue(0);
1423 Tmp2 = Result.getValue(1);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001424 break;
Evan Chenge71fe34d2006-10-09 20:57:25 +00001425 case TargetLowering::Custom:
1426 isCustom = true;
1427 // FALLTHROUGH
1428 case TargetLowering::Legal:
1429 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1430 Tmp1 = Result.getValue(0);
1431 Tmp2 = Result.getValue(1);
1432
1433 if (isCustom) {
1434 Tmp3 = TLI.LowerOperation(Result, DAG);
1435 if (Tmp3.Val) {
1436 Tmp1 = LegalizeOp(Tmp3);
1437 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1438 }
1439 }
1440 break;
1441 case TargetLowering::Expand:
1442 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
1443 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1444 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
1445 LD->getSrcValueOffset());
1446 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
1447 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1448 Tmp2 = LegalizeOp(Load.getValue(1));
1449 break;
1450 }
1451 assert(ExtType != ISD::EXTLOAD && "EXTLOAD should always be supported!");
1452 // Turn the unsupported load into an EXTLOAD followed by an explicit
1453 // zero/sign extend inreg.
1454 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1455 Tmp1, Tmp2, LD->getSrcValue(),
1456 LD->getSrcValueOffset(), SrcVT);
1457 SDOperand ValRes;
1458 if (ExtType == ISD::SEXTLOAD)
1459 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1460 Result, DAG.getValueType(SrcVT));
1461 else
1462 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
1463 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1464 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1465 break;
1466 }
1467 // Since loads produce two values, make sure to remember that we legalized
1468 // both of them.
1469 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1470 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1471 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001472 }
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001473 }
Nate Begeman5172ce62005-10-19 00:06:56 +00001474 case ISD::EXTRACT_ELEMENT: {
1475 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1476 switch (getTypeAction(OpTy)) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001477 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5172ce62005-10-19 00:06:56 +00001478 case Legal:
1479 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1480 // 1 -> Hi
1481 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1482 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1483 TLI.getShiftAmountTy()));
1484 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1485 } else {
1486 // 0 -> Lo
1487 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1488 Node->getOperand(0));
1489 }
Nate Begeman5172ce62005-10-19 00:06:56 +00001490 break;
1491 case Expand:
1492 // Get both the low and high parts.
1493 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1494 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1495 Result = Tmp2; // 1 -> Hi
1496 else
1497 Result = Tmp1; // 0 -> Lo
1498 break;
1499 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001500 break;
Nate Begeman5172ce62005-10-19 00:06:56 +00001501 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001502
1503 case ISD::CopyToReg:
1504 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukman835702a2005-04-21 22:36:52 +00001505
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00001506 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattner33182322005-08-16 21:55:35 +00001507 "Register type must be legal!");
Chris Lattnere3c67e92005-12-18 15:27:43 +00001508 // Legalize the incoming value (must be a legal type).
Chris Lattner33182322005-08-16 21:55:35 +00001509 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001510 if (Node->getNumValues() == 1) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001511 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattnere3c67e92005-12-18 15:27:43 +00001512 } else {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001513 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001514 if (Node->getNumOperands() == 4) {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001515 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001516 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1517 Tmp3);
1518 } else {
1519 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattnere3c67e92005-12-18 15:27:43 +00001520 }
1521
1522 // Since this produces two values, make sure to remember that we legalized
1523 // both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001524 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnere3c67e92005-12-18 15:27:43 +00001525 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001526 return Result;
Chris Lattnere3c67e92005-12-18 15:27:43 +00001527 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001528 break;
1529
1530 case ISD::RET:
1531 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001532
1533 // Ensure that libcalls are emitted before a return.
1534 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1535 Tmp1 = LegalizeOp(Tmp1);
1536 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001537
Chris Lattnerdc750592005-01-07 07:47:09 +00001538 switch (Node->getNumOperands()) {
Evan Chenga2e99532006-05-26 23:09:09 +00001539 case 3: // ret val
Evan Cheng7256b0a2006-04-11 06:33:39 +00001540 Tmp2 = Node->getOperand(1);
Evan Chenga2e99532006-05-26 23:09:09 +00001541 Tmp3 = Node->getOperand(2); // Signness
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001542 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattnerdc750592005-01-07 07:47:09 +00001543 case Legal:
Evan Chenga2e99532006-05-26 23:09:09 +00001544 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattnerdc750592005-01-07 07:47:09 +00001545 break;
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001546 case Expand:
1547 if (Tmp2.getValueType() != MVT::Vector) {
1548 SDOperand Lo, Hi;
1549 ExpandOp(Tmp2, Lo, Hi);
Evan Chenga2e99532006-05-26 23:09:09 +00001550 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattner451b0992006-08-21 20:24:53 +00001551 Result = LegalizeOp(Result);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001552 } else {
1553 SDNode *InVal = Tmp2.Val;
1554 unsigned NumElems =
1555 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1556 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1557
1558 // Figure out if there is a Packed type corresponding to this Vector
1559 // type. If so, convert to the packed type.
1560 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1561 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1562 // Turn this into a return of the packed type.
1563 Tmp2 = PackVectorOp(Tmp2, TVT);
Evan Chenga2e99532006-05-26 23:09:09 +00001564 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001565 } else if (NumElems == 1) {
1566 // Turn this into a return of the scalar type.
1567 Tmp2 = PackVectorOp(Tmp2, EVT);
Evan Chenga2e99532006-05-26 23:09:09 +00001568 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00001569
1570 // FIXME: Returns of gcc generic vectors smaller than a legal type
1571 // should be returned in integer registers!
1572
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001573 // The scalarized value type may not be legal, e.g. it might require
1574 // promotion or expansion. Relegalize the return.
1575 Result = LegalizeOp(Result);
1576 } else {
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00001577 // FIXME: Returns of gcc generic vectors larger than a legal vector
1578 // type should be returned by reference!
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001579 SDOperand Lo, Hi;
1580 SplitVectorOp(Tmp2, Lo, Hi);
Evan Chenga2e99532006-05-26 23:09:09 +00001581 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001582 Result = LegalizeOp(Result);
1583 }
1584 }
Misha Brukman835702a2005-04-21 22:36:52 +00001585 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001586 case Promote:
Chris Lattner4d978642005-01-15 22:16:26 +00001587 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Chenga2e99532006-05-26 23:09:09 +00001588 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001589 Result = LegalizeOp(Result);
Chris Lattner4d978642005-01-15 22:16:26 +00001590 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001591 }
1592 break;
1593 case 1: // ret void
Chris Lattnerd02b0542006-01-28 10:58:55 +00001594 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerdc750592005-01-07 07:47:09 +00001595 break;
1596 default: { // ret <values>
Chris Lattner97af9d52006-08-08 01:09:31 +00001597 SmallVector<SDOperand, 8> NewValues;
Chris Lattnerdc750592005-01-07 07:47:09 +00001598 NewValues.push_back(Tmp1);
Evan Chenga2e99532006-05-26 23:09:09 +00001599 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattnerdc750592005-01-07 07:47:09 +00001600 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1601 case Legal:
Chris Lattner7e6eeba2005-01-08 19:27:05 +00001602 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Chenga2e99532006-05-26 23:09:09 +00001603 NewValues.push_back(Node->getOperand(i+1));
Chris Lattnerdc750592005-01-07 07:47:09 +00001604 break;
1605 case Expand: {
1606 SDOperand Lo, Hi;
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00001607 assert(Node->getOperand(i).getValueType() != MVT::Vector &&
1608 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001609 ExpandOp(Node->getOperand(i), Lo, Hi);
1610 NewValues.push_back(Lo);
Evan Chenga2e99532006-05-26 23:09:09 +00001611 NewValues.push_back(Node->getOperand(i+1));
Chris Lattnerdc750592005-01-07 07:47:09 +00001612 NewValues.push_back(Hi);
Evan Chenga2e99532006-05-26 23:09:09 +00001613 NewValues.push_back(Node->getOperand(i+1));
Misha Brukman835702a2005-04-21 22:36:52 +00001614 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001615 }
1616 case Promote:
Chris Lattner4d978642005-01-15 22:16:26 +00001617 assert(0 && "Can't promote multiple return value yet!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001618 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001619
1620 if (NewValues.size() == Node->getNumOperands())
Chris Lattner97af9d52006-08-08 01:09:31 +00001621 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerd02b0542006-01-28 10:58:55 +00001622 else
Chris Lattner97af9d52006-08-08 01:09:31 +00001623 Result = DAG.getNode(ISD::RET, MVT::Other,
1624 &NewValues[0], NewValues.size());
Chris Lattnerdc750592005-01-07 07:47:09 +00001625 break;
1626 }
1627 }
Evan Chengf35b1c82006-01-06 00:41:43 +00001628
Chris Lattner4d1ea712006-01-29 21:02:23 +00001629 if (Result.getOpcode() == ISD::RET) {
1630 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1631 default: assert(0 && "This action is not supported yet!");
1632 case TargetLowering::Legal: break;
1633 case TargetLowering::Custom:
1634 Tmp1 = TLI.LowerOperation(Result, DAG);
1635 if (Tmp1.Val) Result = Tmp1;
1636 break;
1637 }
Evan Chengf35b1c82006-01-06 00:41:43 +00001638 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001639 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001640 case ISD::STORE: {
Evan Chengab51cf22006-10-13 21:14:26 +00001641 StoreSDNode *ST = cast<StoreSDNode>(Node);
1642 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
1643 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Chris Lattnerdc750592005-01-07 07:47:09 +00001644
Evan Chengab51cf22006-10-13 21:14:26 +00001645 if (!ST->isTruncatingStore()) {
Evan Chengab51cf22006-10-13 21:14:26 +00001646 switch (getTypeAction(ST->getStoredVT())) {
1647 case Legal: {
1648 Tmp3 = LegalizeOp(ST->getValue());
1649 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1650 ST->getOffset());
Evan Cheng31d15fa2005-12-23 07:29:34 +00001651
Evan Chengab51cf22006-10-13 21:14:26 +00001652 MVT::ValueType VT = Tmp3.getValueType();
1653 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1654 default: assert(0 && "This action is not supported yet!");
1655 case TargetLowering::Legal: break;
1656 case TargetLowering::Custom:
1657 Tmp1 = TLI.LowerOperation(Result, DAG);
1658 if (Tmp1.Val) Result = Tmp1;
1659 break;
1660 case TargetLowering::Promote:
1661 assert(MVT::isVector(VT) && "Unknown legal promote case!");
1662 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
1663 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
1664 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
1665 ST->getSrcValue(), ST->getSrcValueOffset());
1666 break;
1667 }
1668 break;
1669 }
1670 case Promote:
1671 // Truncate the value and store the result.
1672 Tmp3 = PromoteOp(ST->getValue());
1673 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1674 ST->getSrcValueOffset(), ST->getStoredVT());
1675 break;
1676
1677 case Expand:
1678 unsigned IncrementSize = 0;
1679 SDOperand Lo, Hi;
1680
1681 // If this is a vector type, then we have to calculate the increment as
1682 // the product of the element size in bytes, and the number of elements
1683 // in the high half of the vector.
1684 if (ST->getValue().getValueType() == MVT::Vector) {
1685 SDNode *InVal = ST->getValue().Val;
1686 unsigned NumElems =
1687 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1688 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1689
1690 // Figure out if there is a Packed type corresponding to this Vector
1691 // type. If so, convert to the packed type.
1692 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1693 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1694 // Turn this into a normal store of the packed type.
1695 Tmp3 = PackVectorOp(Node->getOperand(1), TVT);
1696 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1697 ST->getSrcValueOffset());
1698 Result = LegalizeOp(Result);
1699 break;
1700 } else if (NumElems == 1) {
1701 // Turn this into a normal store of the scalar type.
1702 Tmp3 = PackVectorOp(Node->getOperand(1), EVT);
1703 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1704 ST->getSrcValueOffset());
1705 // The scalarized value type may not be legal, e.g. it might require
1706 // promotion or expansion. Relegalize the scalar store.
1707 Result = LegalizeOp(Result);
1708 break;
1709 } else {
1710 SplitVectorOp(Node->getOperand(1), Lo, Hi);
1711 IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
1712 }
1713 } else {
1714 ExpandOp(Node->getOperand(1), Lo, Hi);
1715 IncrementSize = MVT::getSizeInBits(Hi.getValueType())/8;
1716
1717 if (!TLI.isLittleEndian())
1718 std::swap(Lo, Hi);
1719 }
1720
1721 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
1722 ST->getSrcValueOffset());
1723 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1724 getIntPtrConstant(IncrementSize));
1725 assert(isTypeLegal(Tmp2.getValueType()) &&
1726 "Pointers must be legal!");
1727 // FIXME: This sets the srcvalue of both halves to be the same, which is
1728 // wrong.
1729 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
1730 ST->getSrcValueOffset());
1731 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1732 break;
1733 }
1734 } else {
1735 // Truncating store
1736 assert(isTypeLegal(ST->getValue().getValueType()) &&
1737 "Cannot handle illegal TRUNCSTORE yet!");
1738 Tmp3 = LegalizeOp(ST->getValue());
1739
1740 // The only promote case we handle is TRUNCSTORE:i1 X into
1741 // -> TRUNCSTORE:i8 (and X, 1)
1742 if (ST->getStoredVT() == MVT::i1 &&
1743 TLI.getStoreXAction(MVT::i1) == TargetLowering::Promote) {
1744 // Promote the bool to a mask then store.
1745 Tmp3 = DAG.getNode(ISD::AND, Tmp3.getValueType(), Tmp3,
1746 DAG.getConstant(1, Tmp3.getValueType()));
1747 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1748 ST->getSrcValueOffset(), MVT::i8);
1749 } else if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
1750 Tmp2 != ST->getBasePtr()) {
1751 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1752 ST->getOffset());
1753 }
1754
1755 MVT::ValueType StVT = cast<StoreSDNode>(Result.Val)->getStoredVT();
1756 switch (TLI.getStoreXAction(StVT)) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001757 default: assert(0 && "This action is not supported yet!");
Evan Chengab51cf22006-10-13 21:14:26 +00001758 case TargetLowering::Legal: break;
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001759 case TargetLowering::Custom:
1760 Tmp1 = TLI.LowerOperation(Result, DAG);
1761 if (Tmp1.Val) Result = Tmp1;
1762 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001763 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001764 }
1765 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001766 }
Andrew Lenharthdec53922005-03-31 21:24:06 +00001767 case ISD::PCMARKER:
1768 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001769 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharthdec53922005-03-31 21:24:06 +00001770 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001771 case ISD::STACKSAVE:
1772 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001773 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1774 Tmp1 = Result.getValue(0);
1775 Tmp2 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001776
Chris Lattnerb3266452006-01-13 02:50:02 +00001777 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1778 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001779 case TargetLowering::Legal: break;
1780 case TargetLowering::Custom:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001781 Tmp3 = TLI.LowerOperation(Result, DAG);
1782 if (Tmp3.Val) {
1783 Tmp1 = LegalizeOp(Tmp3);
1784 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattnerb3266452006-01-13 02:50:02 +00001785 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001786 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001787 case TargetLowering::Expand:
Chris Lattnered9b3e12006-01-13 17:48:44 +00001788 // Expand to CopyFromReg if the target set
1789 // StackPointerRegisterToSaveRestore.
1790 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001791 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattnered9b3e12006-01-13 17:48:44 +00001792 Node->getValueType(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001793 Tmp2 = Tmp1.getValue(1);
Chris Lattnered9b3e12006-01-13 17:48:44 +00001794 } else {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001795 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1796 Tmp2 = Node->getOperand(0);
Chris Lattnered9b3e12006-01-13 17:48:44 +00001797 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001798 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001799 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001800
1801 // Since stacksave produce two values, make sure to remember that we
1802 // legalized both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001803 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1804 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1805 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001806
Chris Lattnerb3266452006-01-13 02:50:02 +00001807 case ISD::STACKRESTORE:
1808 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1809 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001810 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattnerb3266452006-01-13 02:50:02 +00001811
1812 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1813 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001814 case TargetLowering::Legal: break;
1815 case TargetLowering::Custom:
1816 Tmp1 = TLI.LowerOperation(Result, DAG);
1817 if (Tmp1.Val) Result = Tmp1;
Chris Lattnerb3266452006-01-13 02:50:02 +00001818 break;
1819 case TargetLowering::Expand:
Chris Lattnered9b3e12006-01-13 17:48:44 +00001820 // Expand to CopyToReg if the target set
1821 // StackPointerRegisterToSaveRestore.
1822 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1823 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1824 } else {
1825 Result = Tmp1;
1826 }
Chris Lattnerb3266452006-01-13 02:50:02 +00001827 break;
1828 }
1829 break;
1830
Andrew Lenharth01aa5632005-11-11 16:47:30 +00001831 case ISD::READCYCLECOUNTER:
1832 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerd02b0542006-01-28 10:58:55 +00001833 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng69739932006-11-29 08:26:18 +00001834 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
1835 Node->getValueType(0))) {
1836 default: assert(0 && "This action is not supported yet!");
Evan Chenga743fad2006-11-29 19:13:47 +00001837 case TargetLowering::Legal:
1838 Tmp1 = Result.getValue(0);
1839 Tmp2 = Result.getValue(1);
1840 break;
Evan Cheng69739932006-11-29 08:26:18 +00001841 case TargetLowering::Custom:
1842 Result = TLI.LowerOperation(Result, DAG);
Evan Chenga743fad2006-11-29 19:13:47 +00001843 Tmp1 = LegalizeOp(Result.getValue(0));
1844 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Cheng69739932006-11-29 08:26:18 +00001845 break;
1846 }
Andrew Lenharth73420b32005-12-02 04:56:24 +00001847
1848 // Since rdcc produce two values, make sure to remember that we legalized
1849 // both of them.
Evan Chenga743fad2006-11-29 19:13:47 +00001850 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1851 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001852 return Result;
Andrew Lenharth627cbd42005-11-20 21:32:07 +00001853
Chris Lattner39c67442005-01-14 22:08:15 +00001854 case ISD::SELECT:
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001855 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1856 case Expand: assert(0 && "It's impossible to expand bools");
1857 case Legal:
1858 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1859 break;
1860 case Promote:
1861 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattner3abb6362006-11-28 01:03:30 +00001862 // Make sure the condition is either zero or one.
1863 if (!TLI.MaskedValueIsZero(Tmp1,
1864 MVT::getIntVTBitMask(Tmp1.getValueType())^1))
1865 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001866 break;
1867 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001868 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner39c67442005-01-14 22:08:15 +00001869 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner3c0dd462005-01-16 07:29:19 +00001870
Chris Lattnerd02b0542006-01-28 10:58:55 +00001871 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001872
Nate Begeman987121a2005-08-23 04:29:48 +00001873 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner3c0dd462005-01-16 07:29:19 +00001874 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001875 case TargetLowering::Legal: break;
1876 case TargetLowering::Custom: {
1877 Tmp1 = TLI.LowerOperation(Result, DAG);
1878 if (Tmp1.Val) Result = Tmp1;
1879 break;
1880 }
Nate Begemane5b86d72005-08-10 20:51:12 +00001881 case TargetLowering::Expand:
1882 if (Tmp1.getOpcode() == ISD::SETCC) {
1883 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
1884 Tmp2, Tmp3,
1885 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1886 } else {
1887 Result = DAG.getSelectCC(Tmp1,
1888 DAG.getConstant(0, Tmp1.getValueType()),
1889 Tmp2, Tmp3, ISD::SETNE);
1890 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00001891 break;
1892 case TargetLowering::Promote: {
1893 MVT::ValueType NVT =
1894 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1895 unsigned ExtOp, TruncOp;
Evan Chengbe8a8932006-04-12 16:33:18 +00001896 if (MVT::isVector(Tmp2.getValueType())) {
1897 ExtOp = ISD::BIT_CONVERT;
1898 TruncOp = ISD::BIT_CONVERT;
1899 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001900 ExtOp = ISD::ANY_EXTEND;
1901 TruncOp = ISD::TRUNCATE;
Chris Lattner3c0dd462005-01-16 07:29:19 +00001902 } else {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001903 ExtOp = ISD::FP_EXTEND;
1904 TruncOp = ISD::FP_ROUND;
Chris Lattner3c0dd462005-01-16 07:29:19 +00001905 }
1906 // Promote each of the values to the new type.
1907 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
1908 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
1909 // Perform the larger operation, then round down.
1910 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
1911 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
1912 break;
1913 }
1914 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001915 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +00001916 case ISD::SELECT_CC: {
1917 Tmp1 = Node->getOperand(0); // LHS
1918 Tmp2 = Node->getOperand(1); // RHS
Nate Begemane5b86d72005-08-10 20:51:12 +00001919 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
1920 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman7e7f4392006-02-01 07:19:44 +00001921 SDOperand CC = Node->getOperand(4);
Nate Begemane5b86d72005-08-10 20:51:12 +00001922
Nate Begeman7e7f4392006-02-01 07:19:44 +00001923 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
1924
1925 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1926 // the LHS is a legal SETCC itself. In this case, we need to compare
1927 // the result against zero to select between true and false values.
1928 if (Tmp2.Val == 0) {
1929 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
1930 CC = DAG.getCondCode(ISD::SETNE);
1931 }
1932 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
1933
1934 // Everything is legal, see if we should expand this op or something.
1935 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
1936 default: assert(0 && "This action is not supported yet!");
1937 case TargetLowering::Legal: break;
1938 case TargetLowering::Custom:
1939 Tmp1 = TLI.LowerOperation(Result, DAG);
1940 if (Tmp1.Val) Result = Tmp1;
Nate Begemane5b86d72005-08-10 20:51:12 +00001941 break;
Nate Begemane5b86d72005-08-10 20:51:12 +00001942 }
1943 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +00001944 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001945 case ISD::SETCC:
Nate Begeman7e7f4392006-02-01 07:19:44 +00001946 Tmp1 = Node->getOperand(0);
1947 Tmp2 = Node->getOperand(1);
1948 Tmp3 = Node->getOperand(2);
1949 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
1950
1951 // If we had to Expand the SetCC operands into a SELECT node, then it may
1952 // not always be possible to return a true LHS & RHS. In this case, just
1953 // return the value we legalized, returned in the LHS
1954 if (Tmp2.Val == 0) {
1955 Result = Tmp1;
Chris Lattnerdc750592005-01-07 07:47:09 +00001956 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001957 }
Nate Begeman987121a2005-08-23 04:29:48 +00001958
Chris Lattnerf263a232006-01-30 22:43:50 +00001959 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001960 default: assert(0 && "Cannot handle this action for SETCC yet!");
1961 case TargetLowering::Custom:
1962 isCustom = true;
1963 // FALLTHROUGH.
1964 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001965 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001966 if (isCustom) {
1967 Tmp3 = TLI.LowerOperation(Result, DAG);
1968 if (Tmp3.Val) Result = Tmp3;
1969 }
Nate Begeman987121a2005-08-23 04:29:48 +00001970 break;
Andrew Lenharth6ee85662005-11-30 17:12:26 +00001971 case TargetLowering::Promote: {
1972 // First step, figure out the appropriate operation to use.
1973 // Allow SETCC to not be supported for all legal data types
1974 // Mostly this targets FP
1975 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
1976 MVT::ValueType OldVT = NewInTy;
1977
1978 // Scan for the appropriate larger type to use.
1979 while (1) {
1980 NewInTy = (MVT::ValueType)(NewInTy+1);
1981
1982 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
1983 "Fell off of the edge of the integer world");
1984 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
1985 "Fell off of the edge of the floating point world");
1986
1987 // If the target supports SETCC of this type, use it.
Chris Lattner1408c052005-12-22 05:23:45 +00001988 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharth6ee85662005-11-30 17:12:26 +00001989 break;
1990 }
1991 if (MVT::isInteger(NewInTy))
1992 assert(0 && "Cannot promote Legal Integer SETCC yet");
1993 else {
1994 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
1995 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
1996 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001997 Tmp1 = LegalizeOp(Tmp1);
1998 Tmp2 = LegalizeOp(Tmp2);
1999 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Cheng6f86a7d2006-01-17 19:47:13 +00002000 Result = LegalizeOp(Result);
Andrew Lenharth835cbb32005-08-29 20:46:51 +00002001 break;
Andrew Lenharth6ee85662005-11-30 17:12:26 +00002002 }
Nate Begeman987121a2005-08-23 04:29:48 +00002003 case TargetLowering::Expand:
2004 // Expand a setcc node into a select_cc of the same condition, lhs, and
2005 // rhs that selects between const 1 (true) and const 0 (false).
2006 MVT::ValueType VT = Node->getValueType(0);
2007 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2008 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
2009 Node->getOperand(2));
Nate Begeman987121a2005-08-23 04:29:48 +00002010 break;
2011 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002012 break;
Chris Lattner85d70c62005-01-11 05:57:22 +00002013 case ISD::MEMSET:
2014 case ISD::MEMCPY:
2015 case ISD::MEMMOVE: {
Chris Lattner4487b2e2005-02-01 18:38:28 +00002016 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002017 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
2018
2019 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
2020 switch (getTypeAction(Node->getOperand(2).getValueType())) {
2021 case Expand: assert(0 && "Cannot expand a byte!");
2022 case Legal:
Chris Lattner4487b2e2005-02-01 18:38:28 +00002023 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002024 break;
2025 case Promote:
Chris Lattner4487b2e2005-02-01 18:38:28 +00002026 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002027 break;
2028 }
2029 } else {
Misha Brukman835702a2005-04-21 22:36:52 +00002030 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002031 }
Chris Lattner5aa75e42005-02-02 03:44:41 +00002032
2033 SDOperand Tmp4;
2034 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattnerba08a332005-07-13 01:42:45 +00002035 case Expand: {
2036 // Length is too big, just take the lo-part of the length.
2037 SDOperand HiPart;
Chris Lattner94c231f2006-11-07 04:11:44 +00002038 ExpandOp(Node->getOperand(3), Tmp4, HiPart);
Chris Lattnerba08a332005-07-13 01:42:45 +00002039 break;
2040 }
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002041 case Legal:
2042 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002043 break;
2044 case Promote:
2045 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner5aa75e42005-02-02 03:44:41 +00002046 break;
2047 }
2048
2049 SDOperand Tmp5;
2050 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2051 case Expand: assert(0 && "Cannot expand this yet!");
2052 case Legal:
2053 Tmp5 = LegalizeOp(Node->getOperand(4));
2054 break;
2055 case Promote:
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002056 Tmp5 = PromoteOp(Node->getOperand(4));
2057 break;
2058 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002059
2060 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2061 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002062 case TargetLowering::Custom:
2063 isCustom = true;
2064 // FALLTHROUGH
Chris Lattner3c0dd462005-01-16 07:29:19 +00002065 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002066 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002067 if (isCustom) {
2068 Tmp1 = TLI.LowerOperation(Result, DAG);
2069 if (Tmp1.Val) Result = Tmp1;
2070 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002071 break;
2072 case TargetLowering::Expand: {
Chris Lattner85d70c62005-01-11 05:57:22 +00002073 // Otherwise, the target does not support this operation. Lower the
2074 // operation to an explicit libcall as appropriate.
2075 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Anderson20a631f2006-05-03 01:29:57 +00002076 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Chris Lattner85d70c62005-01-11 05:57:22 +00002077 std::vector<std::pair<SDOperand, const Type*> > Args;
2078
Reid Spencer6dced922005-01-12 14:53:45 +00002079 const char *FnName = 0;
Chris Lattner85d70c62005-01-11 05:57:22 +00002080 if (Node->getOpcode() == ISD::MEMSET) {
2081 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
Chris Lattner486d1bc2006-02-20 06:38:35 +00002082 // Extend the (previously legalized) ubyte argument to be an int value
2083 // for the call.
2084 if (Tmp3.getValueType() > MVT::i32)
2085 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2086 else
2087 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Chris Lattner85d70c62005-01-11 05:57:22 +00002088 Args.push_back(std::make_pair(Tmp3, Type::IntTy));
2089 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2090
2091 FnName = "memset";
2092 } else if (Node->getOpcode() == ISD::MEMCPY ||
2093 Node->getOpcode() == ISD::MEMMOVE) {
2094 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
2095 Args.push_back(std::make_pair(Tmp3, IntPtrTy));
2096 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2097 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2098 } else {
2099 assert(0 && "Unknown op!");
2100 }
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002101
Chris Lattner85d70c62005-01-11 05:57:22 +00002102 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattner2e77db62005-05-13 18:50:42 +00002103 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, CallingConv::C, false,
Chris Lattner85d70c62005-01-11 05:57:22 +00002104 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002105 Result = CallResult.second;
Chris Lattner3c0dd462005-01-16 07:29:19 +00002106 break;
2107 }
Chris Lattner85d70c62005-01-11 05:57:22 +00002108 }
2109 break;
2110 }
Chris Lattner5385db52005-05-09 20:23:03 +00002111
Chris Lattner4157c412005-04-02 04:00:59 +00002112 case ISD::SHL_PARTS:
2113 case ISD::SRA_PARTS:
2114 case ISD::SRL_PARTS: {
Chris Lattner97af9d52006-08-08 01:09:31 +00002115 SmallVector<SDOperand, 8> Ops;
Chris Lattnerb3f83b282005-01-20 18:52:28 +00002116 bool Changed = false;
2117 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2118 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2119 Changed |= Ops.back() != Node->getOperand(i);
2120 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002121 if (Changed)
Chris Lattner97af9d52006-08-08 01:09:31 +00002122 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner13fe99c2005-04-02 05:00:07 +00002123
Evan Cheng870e4f82006-01-09 18:31:59 +00002124 switch (TLI.getOperationAction(Node->getOpcode(),
2125 Node->getValueType(0))) {
2126 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002127 case TargetLowering::Legal: break;
2128 case TargetLowering::Custom:
2129 Tmp1 = TLI.LowerOperation(Result, DAG);
2130 if (Tmp1.Val) {
2131 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng870e4f82006-01-09 18:31:59 +00002132 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002133 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng870e4f82006-01-09 18:31:59 +00002134 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2135 if (i == Op.ResNo)
Evan Cheng13e8c9d2006-01-19 04:54:52 +00002136 RetVal = Tmp2;
Evan Cheng870e4f82006-01-09 18:31:59 +00002137 }
Chris Lattnerfb5f4652006-01-10 19:43:26 +00002138 assert(RetVal.Val && "Illegal result number");
Evan Cheng870e4f82006-01-09 18:31:59 +00002139 return RetVal;
2140 }
Evan Cheng870e4f82006-01-09 18:31:59 +00002141 break;
2142 }
2143
Chris Lattner13fe99c2005-04-02 05:00:07 +00002144 // Since these produce multiple values, make sure to remember that we
2145 // legalized all of them.
2146 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2147 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2148 return Result.getValue(Op.ResNo);
Chris Lattnerb3f83b282005-01-20 18:52:28 +00002149 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002150
2151 // Binary operators
Chris Lattnerdc750592005-01-07 07:47:09 +00002152 case ISD::ADD:
2153 case ISD::SUB:
2154 case ISD::MUL:
Nate Begemanadd0c632005-04-11 03:01:51 +00002155 case ISD::MULHS:
2156 case ISD::MULHU:
Chris Lattnerdc750592005-01-07 07:47:09 +00002157 case ISD::UDIV:
2158 case ISD::SDIV:
Chris Lattnerdc750592005-01-07 07:47:09 +00002159 case ISD::AND:
2160 case ISD::OR:
2161 case ISD::XOR:
Chris Lattner32f20bf2005-01-07 21:45:56 +00002162 case ISD::SHL:
2163 case ISD::SRL:
2164 case ISD::SRA:
Chris Lattner6f3b5772005-09-28 22:28:18 +00002165 case ISD::FADD:
2166 case ISD::FSUB:
2167 case ISD::FMUL:
2168 case ISD::FDIV:
Chris Lattnerdc750592005-01-07 07:47:09 +00002169 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharth80fe4112005-07-05 19:52:39 +00002170 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2171 case Expand: assert(0 && "Not possible");
2172 case Legal:
2173 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2174 break;
2175 case Promote:
2176 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2177 break;
2178 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002179
2180 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002181
Andrew Lenharth72594262005-12-24 23:42:32 +00002182 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner87f08092006-04-02 03:57:31 +00002183 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002184 case TargetLowering::Legal: break;
2185 case TargetLowering::Custom:
2186 Tmp1 = TLI.LowerOperation(Result, DAG);
2187 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth30db2ec2005-12-25 01:07:37 +00002188 break;
Chris Lattner87f08092006-04-02 03:57:31 +00002189 case TargetLowering::Expand: {
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00002190 if (Node->getValueType(0) == MVT::i32) {
2191 switch (Node->getOpcode()) {
2192 default: assert(0 && "Do not know how to expand this integer BinOp!");
2193 case ISD::UDIV:
2194 case ISD::SDIV:
2195 const char *FnName = Node->getOpcode() == ISD::UDIV
2196 ? "__udivsi3" : "__divsi3";
2197 SDOperand Dummy;
2198 Result = ExpandLibCall(FnName, Node, Dummy);
2199 };
2200 break;
2201 }
2202
Chris Lattner87f08092006-04-02 03:57:31 +00002203 assert(MVT::isVector(Node->getValueType(0)) &&
2204 "Cannot expand this binary operator!");
2205 // Expand the operation into a bunch of nasty scalar code.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002206 SmallVector<SDOperand, 8> Ops;
Chris Lattner87f08092006-04-02 03:57:31 +00002207 MVT::ValueType EltVT = MVT::getVectorBaseType(Node->getValueType(0));
2208 MVT::ValueType PtrVT = TLI.getPointerTy();
2209 for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2210 i != e; ++i) {
2211 SDOperand Idx = DAG.getConstant(i, PtrVT);
2212 SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2213 SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2214 Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2215 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002216 Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0),
2217 &Ops[0], Ops.size());
Chris Lattner87f08092006-04-02 03:57:31 +00002218 break;
2219 }
Evan Cheng119266e2006-04-12 21:20:24 +00002220 case TargetLowering::Promote: {
2221 switch (Node->getOpcode()) {
2222 default: assert(0 && "Do not know how to promote this BinOp!");
2223 case ISD::AND:
2224 case ISD::OR:
2225 case ISD::XOR: {
2226 MVT::ValueType OVT = Node->getValueType(0);
2227 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2228 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2229 // Bit convert each of the values to the new type.
2230 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2231 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2232 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2233 // Bit convert the result back the original type.
2234 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2235 break;
2236 }
2237 }
2238 }
Andrew Lenharth72594262005-12-24 23:42:32 +00002239 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002240 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00002241
2242 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2243 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2244 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2245 case Expand: assert(0 && "Not possible");
2246 case Legal:
2247 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2248 break;
2249 case Promote:
2250 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2251 break;
2252 }
2253
2254 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2255
2256 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2257 default: assert(0 && "Operation not supported");
2258 case TargetLowering::Custom:
2259 Tmp1 = TLI.LowerOperation(Result, DAG);
2260 if (Tmp1.Val) Result = Tmp1;
Chris Lattner994d8e62006-03-13 06:08:38 +00002261 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00002262 case TargetLowering::Legal: break;
2263 case TargetLowering::Expand:
Chris Lattner994d8e62006-03-13 06:08:38 +00002264 // If this target supports fabs/fneg natively, do this efficiently.
2265 if (TLI.isOperationLegal(ISD::FABS, Tmp1.getValueType()) &&
2266 TLI.isOperationLegal(ISD::FNEG, Tmp1.getValueType())) {
2267 // Get the sign bit of the RHS.
2268 MVT::ValueType IVT =
2269 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2270 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2271 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2272 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2273 // Get the absolute value of the result.
2274 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2275 // Select between the nabs and abs value based on the sign bit of
2276 // the input.
2277 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2278 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2279 AbsVal),
2280 AbsVal);
2281 Result = LegalizeOp(Result);
2282 break;
2283 }
2284
2285 // Otherwise, do bitwise ops!
2286
2287 // copysign -> copysignf/copysign libcall.
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00002288 const char *FnName;
2289 if (Node->getValueType(0) == MVT::f32) {
2290 FnName = "copysignf";
2291 if (Tmp2.getValueType() != MVT::f32) // Force operands to match type.
2292 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2293 DAG.getNode(ISD::FP_ROUND, MVT::f32, Tmp2));
2294 } else {
2295 FnName = "copysign";
2296 if (Tmp2.getValueType() != MVT::f64) // Force operands to match type.
2297 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2298 DAG.getNode(ISD::FP_EXTEND, MVT::f64, Tmp2));
2299 }
2300 SDOperand Dummy;
2301 Result = ExpandLibCall(FnName, Node, Dummy);
2302 break;
2303 }
2304 break;
2305
Nate Begeman5965bd12006-02-17 05:43:56 +00002306 case ISD::ADDC:
2307 case ISD::SUBC:
2308 Tmp1 = LegalizeOp(Node->getOperand(0));
2309 Tmp2 = LegalizeOp(Node->getOperand(1));
2310 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2311 // Since this produces two values, make sure to remember that we legalized
2312 // both of them.
2313 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2314 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2315 return Result;
Misha Brukman835702a2005-04-21 22:36:52 +00002316
Nate Begeman5965bd12006-02-17 05:43:56 +00002317 case ISD::ADDE:
2318 case ISD::SUBE:
2319 Tmp1 = LegalizeOp(Node->getOperand(0));
2320 Tmp2 = LegalizeOp(Node->getOperand(1));
2321 Tmp3 = LegalizeOp(Node->getOperand(2));
2322 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2323 // Since this produces two values, make sure to remember that we legalized
2324 // both of them.
2325 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2326 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2327 return Result;
Nate Begeman5965bd12006-02-17 05:43:56 +00002328
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002329 case ISD::BUILD_PAIR: {
2330 MVT::ValueType PairTy = Node->getValueType(0);
2331 // TODO: handle the case where the Lo and Hi operands are not of legal type
2332 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2333 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2334 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002335 case TargetLowering::Promote:
2336 case TargetLowering::Custom:
2337 assert(0 && "Cannot promote/custom this yet!");
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002338 case TargetLowering::Legal:
2339 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2340 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2341 break;
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002342 case TargetLowering::Expand:
2343 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2344 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2345 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2346 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2347 TLI.getShiftAmountTy()));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002348 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002349 break;
2350 }
2351 break;
2352 }
2353
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002354 case ISD::UREM:
2355 case ISD::SREM:
Chris Lattner6f3b5772005-09-28 22:28:18 +00002356 case ISD::FREM:
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002357 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2358 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002359
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002360 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002361 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2362 case TargetLowering::Custom:
2363 isCustom = true;
2364 // FALLTHROUGH
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002365 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002366 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002367 if (isCustom) {
2368 Tmp1 = TLI.LowerOperation(Result, DAG);
2369 if (Tmp1.Val) Result = Tmp1;
2370 }
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002371 break;
Chris Lattner81914422005-08-03 20:31:37 +00002372 case TargetLowering::Expand:
Evan Cheng1fc7c362006-09-18 23:28:33 +00002373 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Chris Lattner81914422005-08-03 20:31:37 +00002374 if (MVT::isInteger(Node->getValueType(0))) {
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00002375 if (TLI.getOperationAction(DivOpc, Node->getValueType(0)) ==
2376 TargetLowering::Legal) {
2377 // X % Y -> X-X/Y*Y
2378 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng1fc7c362006-09-18 23:28:33 +00002379 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00002380 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2381 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2382 } else {
2383 assert(Node->getValueType(0) == MVT::i32 &&
2384 "Cannot expand this binary operator!");
2385 const char *FnName = Node->getOpcode() == ISD::UREM
2386 ? "__umodsi3" : "__modsi3";
2387 SDOperand Dummy;
2388 Result = ExpandLibCall(FnName, Node, Dummy);
2389 }
Chris Lattner81914422005-08-03 20:31:37 +00002390 } else {
2391 // Floating point mod -> fmod libcall.
2392 const char *FnName = Node->getValueType(0) == MVT::f32 ? "fmodf":"fmod";
2393 SDOperand Dummy;
Chris Lattner10f67752006-01-28 04:28:26 +00002394 Result = ExpandLibCall(FnName, Node, Dummy);
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002395 }
2396 break;
2397 }
2398 break;
Nate Begemane74795c2006-01-25 18:21:52 +00002399 case ISD::VAARG: {
2400 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2401 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2402
Chris Lattner364b89a2006-01-28 07:42:08 +00002403 MVT::ValueType VT = Node->getValueType(0);
Nate Begemane74795c2006-01-25 18:21:52 +00002404 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2405 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002406 case TargetLowering::Custom:
2407 isCustom = true;
2408 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00002409 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002410 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2411 Result = Result.getValue(0);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002412 Tmp1 = Result.getValue(1);
2413
2414 if (isCustom) {
2415 Tmp2 = TLI.LowerOperation(Result, DAG);
2416 if (Tmp2.Val) {
2417 Result = LegalizeOp(Tmp2);
2418 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2419 }
2420 }
Nate Begemane74795c2006-01-25 18:21:52 +00002421 break;
2422 case TargetLowering::Expand: {
Evan Chenge71fe34d2006-10-09 20:57:25 +00002423 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begemane74795c2006-01-25 18:21:52 +00002424 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Chenge71fe34d2006-10-09 20:57:25 +00002425 SV->getValue(), SV->getOffset());
Nate Begemane74795c2006-01-25 18:21:52 +00002426 // Increment the pointer, VAList, to the next vaarg
2427 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2428 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2429 TLI.getPointerTy()));
2430 // Store the incremented VAList to the legalized pointer
Evan Chengab51cf22006-10-13 21:14:26 +00002431 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
2432 SV->getOffset());
Nate Begemane74795c2006-01-25 18:21:52 +00002433 // Load the actual argument out of the pointer VAList
Evan Chenge71fe34d2006-10-09 20:57:25 +00002434 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002435 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemane74795c2006-01-25 18:21:52 +00002436 Result = LegalizeOp(Result);
2437 break;
2438 }
2439 }
2440 // Since VAARG produces two values, make sure to remember that we
2441 // legalized both of them.
2442 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002443 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2444 return Op.ResNo ? Tmp1 : Result;
Nate Begemane74795c2006-01-25 18:21:52 +00002445 }
2446
2447 case ISD::VACOPY:
2448 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2449 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2450 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
2451
2452 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2453 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002454 case TargetLowering::Custom:
2455 isCustom = true;
2456 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00002457 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002458 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2459 Node->getOperand(3), Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002460 if (isCustom) {
2461 Tmp1 = TLI.LowerOperation(Result, DAG);
2462 if (Tmp1.Val) Result = Tmp1;
2463 }
Nate Begemane74795c2006-01-25 18:21:52 +00002464 break;
2465 case TargetLowering::Expand:
2466 // This defaults to loading a pointer from the input and storing it to the
2467 // output, returning the chain.
Evan Chenge71fe34d2006-10-09 20:57:25 +00002468 SrcValueSDNode *SVD = cast<SrcValueSDNode>(Node->getOperand(3));
Evan Chengab51cf22006-10-13 21:14:26 +00002469 SrcValueSDNode *SVS = cast<SrcValueSDNode>(Node->getOperand(4));
Evan Chenge71fe34d2006-10-09 20:57:25 +00002470 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, SVD->getValue(),
2471 SVD->getOffset());
Evan Chengab51cf22006-10-13 21:14:26 +00002472 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, SVS->getValue(),
2473 SVS->getOffset());
Nate Begemane74795c2006-01-25 18:21:52 +00002474 break;
2475 }
2476 break;
2477
2478 case ISD::VAEND:
2479 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2480 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2481
2482 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2483 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002484 case TargetLowering::Custom:
2485 isCustom = true;
2486 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00002487 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002488 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002489 if (isCustom) {
2490 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2491 if (Tmp1.Val) Result = Tmp1;
2492 }
Nate Begemane74795c2006-01-25 18:21:52 +00002493 break;
2494 case TargetLowering::Expand:
2495 Result = Tmp1; // Default to a no-op, return the chain
2496 break;
2497 }
2498 break;
2499
2500 case ISD::VASTART:
2501 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2502 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2503
Chris Lattnerd02b0542006-01-28 10:58:55 +00002504 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2505
Nate Begemane74795c2006-01-25 18:21:52 +00002506 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2507 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002508 case TargetLowering::Legal: break;
2509 case TargetLowering::Custom:
2510 Tmp1 = TLI.LowerOperation(Result, DAG);
2511 if (Tmp1.Val) Result = Tmp1;
Nate Begemane74795c2006-01-25 18:21:52 +00002512 break;
2513 }
2514 break;
2515
Nate Begeman1b8121b2006-01-11 21:21:00 +00002516 case ISD::ROTL:
2517 case ISD::ROTR:
2518 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2519 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002520
2521 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
2522 "Cannot handle this yet!");
Chris Lattnerd02b0542006-01-28 10:58:55 +00002523 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Nate Begeman1b8121b2006-01-11 21:21:00 +00002524 break;
2525
Nate Begeman2fba8a32006-01-14 03:14:10 +00002526 case ISD::BSWAP:
2527 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2528 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002529 case TargetLowering::Custom:
2530 assert(0 && "Cannot custom legalize this yet!");
2531 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002532 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002533 break;
2534 case TargetLowering::Promote: {
2535 MVT::ValueType OVT = Tmp1.getValueType();
2536 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2537 unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
Nate Begeman2fba8a32006-01-14 03:14:10 +00002538
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002539 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2540 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2541 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2542 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2543 break;
2544 }
2545 case TargetLowering::Expand:
2546 Result = ExpandBSWAP(Tmp1);
2547 break;
Nate Begeman2fba8a32006-01-14 03:14:10 +00002548 }
2549 break;
2550
Andrew Lenharth5e177822005-05-03 17:19:30 +00002551 case ISD::CTPOP:
2552 case ISD::CTTZ:
2553 case ISD::CTLZ:
2554 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2555 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002556 case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
Andrew Lenharth5e177822005-05-03 17:19:30 +00002557 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002558 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth5e177822005-05-03 17:19:30 +00002559 break;
2560 case TargetLowering::Promote: {
2561 MVT::ValueType OVT = Tmp1.getValueType();
2562 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner55e9cde2005-05-11 04:51:16 +00002563
2564 // Zero extend the argument.
Andrew Lenharth5e177822005-05-03 17:19:30 +00002565 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2566 // Perform the larger operation, then subtract if needed.
2567 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002568 switch (Node->getOpcode()) {
Andrew Lenharth5e177822005-05-03 17:19:30 +00002569 case ISD::CTPOP:
2570 Result = Tmp1;
2571 break;
2572 case ISD::CTTZ:
2573 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattnerd47675e2005-08-09 20:20:18 +00002574 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2575 DAG.getConstant(getSizeInBits(NVT), NVT),
2576 ISD::SETEQ);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002577 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Andrew Lenharth5e177822005-05-03 17:19:30 +00002578 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2579 break;
2580 case ISD::CTLZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002581 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002582 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2583 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharth5e177822005-05-03 17:19:30 +00002584 getSizeInBits(OVT), NVT));
2585 break;
2586 }
2587 break;
2588 }
Andrew Lenharth5e177822005-05-03 17:19:30 +00002589 case TargetLowering::Expand:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002590 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth5e177822005-05-03 17:19:30 +00002591 break;
2592 }
2593 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002594
Chris Lattner13fe99c2005-04-02 05:00:07 +00002595 // Unary operators
2596 case ISD::FABS:
2597 case ISD::FNEG:
Chris Lattner9d6fa982005-04-28 21:44:33 +00002598 case ISD::FSQRT:
2599 case ISD::FSIN:
2600 case ISD::FCOS:
Chris Lattner13fe99c2005-04-02 05:00:07 +00002601 Tmp1 = LegalizeOp(Node->getOperand(0));
2602 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002603 case TargetLowering::Promote:
2604 case TargetLowering::Custom:
Evan Cheng2443ab92006-01-31 18:14:25 +00002605 isCustom = true;
2606 // FALLTHROUGH
Chris Lattner13fe99c2005-04-02 05:00:07 +00002607 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002608 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng2443ab92006-01-31 18:14:25 +00002609 if (isCustom) {
2610 Tmp1 = TLI.LowerOperation(Result, DAG);
2611 if (Tmp1.Val) Result = Tmp1;
2612 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002613 break;
Chris Lattner13fe99c2005-04-02 05:00:07 +00002614 case TargetLowering::Expand:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002615 switch (Node->getOpcode()) {
2616 default: assert(0 && "Unreachable!");
2617 case ISD::FNEG:
Chris Lattner13fe99c2005-04-02 05:00:07 +00002618 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2619 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002620 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattner80026402005-04-30 04:43:14 +00002621 break;
Chris Lattner80026402005-04-30 04:43:14 +00002622 case ISD::FABS: {
Chris Lattnera0c72cf2005-04-02 05:26:37 +00002623 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2624 MVT::ValueType VT = Node->getValueType(0);
2625 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattnerd47675e2005-08-09 20:20:18 +00002626 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattnera0c72cf2005-04-02 05:26:37 +00002627 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2628 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattner80026402005-04-30 04:43:14 +00002629 break;
2630 }
2631 case ISD::FSQRT:
2632 case ISD::FSIN:
2633 case ISD::FCOS: {
2634 MVT::ValueType VT = Node->getValueType(0);
Chris Lattner80026402005-04-30 04:43:14 +00002635 const char *FnName = 0;
2636 switch(Node->getOpcode()) {
2637 case ISD::FSQRT: FnName = VT == MVT::f32 ? "sqrtf" : "sqrt"; break;
2638 case ISD::FSIN: FnName = VT == MVT::f32 ? "sinf" : "sin"; break;
2639 case ISD::FCOS: FnName = VT == MVT::f32 ? "cosf" : "cos"; break;
2640 default: assert(0 && "Unreachable!");
2641 }
Nate Begeman77558da2005-08-04 21:43:28 +00002642 SDOperand Dummy;
Chris Lattner10f67752006-01-28 04:28:26 +00002643 Result = ExpandLibCall(FnName, Node, Dummy);
Chris Lattner80026402005-04-30 04:43:14 +00002644 break;
2645 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002646 }
2647 break;
2648 }
2649 break;
Chris Lattnerf0359b32006-09-09 06:03:30 +00002650 case ISD::FPOWI: {
2651 // We always lower FPOWI into a libcall. No target support it yet.
2652 const char *FnName = Node->getValueType(0) == MVT::f32
2653 ? "__powisf2" : "__powidf2";
2654 SDOperand Dummy;
2655 Result = ExpandLibCall(FnName, Node, Dummy);
2656 break;
2657 }
Chris Lattner36e663d2005-12-23 00:16:34 +00002658 case ISD::BIT_CONVERT:
Chris Lattner763dfd72006-01-23 07:30:46 +00002659 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner36e663d2005-12-23 00:16:34 +00002660 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Chris Lattner763dfd72006-01-23 07:30:46 +00002661 } else {
Chris Lattner36e663d2005-12-23 00:16:34 +00002662 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2663 Node->getOperand(0).getValueType())) {
2664 default: assert(0 && "Unknown operation action!");
2665 case TargetLowering::Expand:
2666 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2667 break;
2668 case TargetLowering::Legal:
2669 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002670 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner36e663d2005-12-23 00:16:34 +00002671 break;
2672 }
2673 }
2674 break;
Chris Lattnera4f68052006-03-24 02:26:29 +00002675 case ISD::VBIT_CONVERT: {
2676 assert(Op.getOperand(0).getValueType() == MVT::Vector &&
2677 "Can only have VBIT_CONVERT where input or output is MVT::Vector!");
2678
2679 // The input has to be a vector type, we have to either scalarize it, pack
2680 // it, or convert it based on whether the input vector type is legal.
2681 SDNode *InVal = Node->getOperand(0).Val;
2682 unsigned NumElems =
2683 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
2684 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
2685
2686 // Figure out if there is a Packed type corresponding to this Vector
2687 // type. If so, convert to the packed type.
2688 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
2689 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
2690 // Turn this into a bit convert of the packed input.
2691 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2692 PackVectorOp(Node->getOperand(0), TVT));
2693 break;
2694 } else if (NumElems == 1) {
2695 // Turn this into a bit convert of the scalar input.
2696 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2697 PackVectorOp(Node->getOperand(0), EVT));
2698 break;
2699 } else {
2700 // FIXME: UNIMP! Store then reload
2701 assert(0 && "Cast from unsupported vector type not implemented yet!");
2702 }
2703 }
2704
Chris Lattner13fe99c2005-04-02 05:00:07 +00002705 // Conversion operators. The source and destination have different types.
Chris Lattner2a6db3c2005-01-08 08:08:56 +00002706 case ISD::SINT_TO_FP:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002707 case ISD::UINT_TO_FP: {
2708 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattnerdc750592005-01-07 07:47:09 +00002709 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2710 case Legal:
Jeff Cohen546fd592005-07-30 18:33:25 +00002711 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002712 Node->getOperand(0).getValueType())) {
2713 default: assert(0 && "Unknown operation action!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002714 case TargetLowering::Custom:
2715 isCustom = true;
2716 // FALLTHROUGH
2717 case TargetLowering::Legal:
2718 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002719 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002720 if (isCustom) {
2721 Tmp1 = TLI.LowerOperation(Result, DAG);
2722 if (Tmp1.Val) Result = Tmp1;
2723 }
2724 break;
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002725 case TargetLowering::Expand:
Jim Laskeyf2516a92005-08-17 00:39:29 +00002726 Result = ExpandLegalINT_TO_FP(isSigned,
2727 LegalizeOp(Node->getOperand(0)),
2728 Node->getValueType(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002729 break;
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002730 case TargetLowering::Promote:
2731 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2732 Node->getValueType(0),
2733 isSigned);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002734 break;
Andrew Lenharth8d17c702005-11-30 06:43:03 +00002735 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002736 break;
Chris Lattnera65a2f02005-01-07 22:37:48 +00002737 case Expand:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002738 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2739 Node->getValueType(0), Node->getOperand(0));
2740 break;
2741 case Promote:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002742 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002743 if (isSigned) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002744 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2745 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002746 } else {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002747 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2748 Node->getOperand(0).getValueType());
Chris Lattneraac464e2005-01-21 06:05:23 +00002749 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002750 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2751 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002752 break;
2753 }
2754 break;
2755 }
2756 case ISD::TRUNCATE:
2757 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2758 case Legal:
2759 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002760 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002761 break;
2762 case Expand:
2763 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2764
2765 // Since the result is legal, we should just be able to truncate the low
2766 // part of the source.
2767 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2768 break;
2769 case Promote:
2770 Result = PromoteOp(Node->getOperand(0));
2771 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2772 break;
2773 }
2774 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00002775
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002776 case ISD::FP_TO_SINT:
2777 case ISD::FP_TO_UINT:
2778 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2779 case Legal:
Chris Lattnerf59b2da2005-07-30 00:04:12 +00002780 Tmp1 = LegalizeOp(Node->getOperand(0));
2781
Chris Lattner44fe26f2005-07-29 00:11:56 +00002782 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2783 default: assert(0 && "Unknown operation action!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002784 case TargetLowering::Custom:
2785 isCustom = true;
2786 // FALLTHROUGH
2787 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002788 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002789 if (isCustom) {
2790 Tmp1 = TLI.LowerOperation(Result, DAG);
2791 if (Tmp1.Val) Result = Tmp1;
2792 }
2793 break;
2794 case TargetLowering::Promote:
2795 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2796 Node->getOpcode() == ISD::FP_TO_SINT);
2797 break;
Chris Lattner44fe26f2005-07-29 00:11:56 +00002798 case TargetLowering::Expand:
Nate Begeman36853ee2005-08-14 01:20:53 +00002799 if (Node->getOpcode() == ISD::FP_TO_UINT) {
2800 SDOperand True, False;
2801 MVT::ValueType VT = Node->getOperand(0).getValueType();
2802 MVT::ValueType NVT = Node->getValueType(0);
2803 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2804 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2805 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2806 Node->getOperand(0), Tmp2, ISD::SETLT);
2807 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2808 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner6f3b5772005-09-28 22:28:18 +00002809 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begeman36853ee2005-08-14 01:20:53 +00002810 Tmp2));
2811 False = DAG.getNode(ISD::XOR, NVT, False,
2812 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002813 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2814 break;
Nate Begeman36853ee2005-08-14 01:20:53 +00002815 } else {
2816 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2817 }
2818 break;
Chris Lattnerdff50ca2005-08-26 00:14:16 +00002819 }
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002820 break;
2821 case Expand:
2822 assert(0 && "Shouldn't need to expand other operators here!");
2823 case Promote:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002824 Tmp1 = PromoteOp(Node->getOperand(0));
2825 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2826 Result = LegalizeOp(Result);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002827 break;
2828 }
2829 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00002830
Chris Lattner7753f172005-09-02 00:18:10 +00002831 case ISD::ANY_EXTEND:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002832 case ISD::ZERO_EXTEND:
2833 case ISD::SIGN_EXTEND:
2834 case ISD::FP_EXTEND:
2835 case ISD::FP_ROUND:
2836 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002837 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002838 case Legal:
2839 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002840 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002841 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002842 case Promote:
2843 switch (Node->getOpcode()) {
Chris Lattner7753f172005-09-02 00:18:10 +00002844 case ISD::ANY_EXTEND:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002845 Tmp1 = PromoteOp(Node->getOperand(0));
2846 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner7753f172005-09-02 00:18:10 +00002847 break;
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002848 case ISD::ZERO_EXTEND:
2849 Result = PromoteOp(Node->getOperand(0));
Chris Lattner7753f172005-09-02 00:18:10 +00002850 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner0e852af2005-04-13 02:38:47 +00002851 Result = DAG.getZeroExtendInReg(Result,
2852 Node->getOperand(0).getValueType());
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002853 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002854 case ISD::SIGN_EXTEND:
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002855 Result = PromoteOp(Node->getOperand(0));
Chris Lattner7753f172005-09-02 00:18:10 +00002856 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002857 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00002858 Result,
2859 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002860 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002861 case ISD::FP_EXTEND:
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002862 Result = PromoteOp(Node->getOperand(0));
2863 if (Result.getValueType() != Op.getValueType())
2864 // Dynamically dead while we have only 2 FP types.
2865 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
2866 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002867 case ISD::FP_ROUND:
Chris Lattner3ba56b32005-01-16 05:06:12 +00002868 Result = PromoteOp(Node->getOperand(0));
2869 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
2870 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002871 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002872 }
2873 break;
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002874 case ISD::FP_ROUND_INREG:
Chris Lattner0e852af2005-04-13 02:38:47 +00002875 case ISD::SIGN_EXTEND_INREG: {
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002876 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0b6ba902005-07-10 00:07:11 +00002877 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner99222f72005-01-15 07:15:18 +00002878
2879 // If this operation is not supported, convert it to a shl/shr or load/store
2880 // pair.
Chris Lattner3c0dd462005-01-16 07:29:19 +00002881 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
2882 default: assert(0 && "This action not supported for this op yet!");
2883 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002884 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner3c0dd462005-01-16 07:29:19 +00002885 break;
2886 case TargetLowering::Expand:
Chris Lattner99222f72005-01-15 07:15:18 +00002887 // If this is an integer extend and shifts are supported, do that.
Chris Lattner0e852af2005-04-13 02:38:47 +00002888 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner99222f72005-01-15 07:15:18 +00002889 // NOTE: we could fall back on load/store here too for targets without
2890 // SAR. However, it is doubtful that any exist.
2891 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
2892 MVT::getSizeInBits(ExtraVT);
Chris Lattnerec218372005-01-22 00:31:52 +00002893 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner99222f72005-01-15 07:15:18 +00002894 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
2895 Node->getOperand(0), ShiftCst);
2896 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
2897 Result, ShiftCst);
2898 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey6a4c6d32006-10-11 17:52:19 +00002899 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner99222f72005-01-15 07:15:18 +00002900 // EXTLOAD pair, targetting a temporary location (a stack slot).
2901
2902 // NOTE: there is a choice here between constantly creating new stack
2903 // slots and always reusing the same one. We currently always create
2904 // new ones, as reuse may inhibit scheduling.
2905 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Owen Anderson20a631f2006-05-03 01:29:57 +00002906 unsigned TySize = (unsigned)TLI.getTargetData()->getTypeSize(Ty);
2907 unsigned Align = TLI.getTargetData()->getTypeAlignment(Ty);
Chris Lattner99222f72005-01-15 07:15:18 +00002908 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukman835702a2005-04-21 22:36:52 +00002909 int SSFI =
Chris Lattner99222f72005-01-15 07:15:18 +00002910 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
2911 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Evan Chengab51cf22006-10-13 21:14:26 +00002912 Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
2913 StackSlot, NULL, 0, ExtraVT);
Chris Lattnerde0a4b12005-07-10 01:55:33 +00002914 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
Evan Chenge71fe34d2006-10-09 20:57:25 +00002915 Result, StackSlot, NULL, 0, ExtraVT);
Chris Lattner99222f72005-01-15 07:15:18 +00002916 } else {
2917 assert(0 && "Unknown op");
2918 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002919 break;
Chris Lattner99222f72005-01-15 07:15:18 +00002920 }
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002921 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00002922 }
Chris Lattner99222f72005-01-15 07:15:18 +00002923 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002924
Chris Lattner101ea662006-04-08 04:13:17 +00002925 assert(Result.getValueType() == Op.getValueType() &&
2926 "Bad legalization!");
2927
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002928 // Make sure that the generated code is itself legal.
2929 if (Result != Op)
2930 Result = LegalizeOp(Result);
Chris Lattnerdc750592005-01-07 07:47:09 +00002931
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002932 // Note that LegalizeOp may be reentered even from single-use nodes, which
2933 // means that we always must cache transformed nodes.
2934 AddLegalizedOperand(Op, Result);
Chris Lattnerdc750592005-01-07 07:47:09 +00002935 return Result;
2936}
2937
Chris Lattner4d978642005-01-15 22:16:26 +00002938/// PromoteOp - Given an operation that produces a value in an invalid type,
2939/// promote it to compute the value into a larger type. The produced value will
2940/// have the correct bits for the low portion of the register, but no guarantee
2941/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002942SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
2943 MVT::ValueType VT = Op.getValueType();
Chris Lattner87a769c2005-01-16 01:11:45 +00002944 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002945 assert(getTypeAction(VT) == Promote &&
2946 "Caller should expand or legalize operands that are not promotable!");
2947 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
2948 "Cannot promote to smaller type!");
2949
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002950 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002951 SDOperand Result;
2952 SDNode *Node = Op.Val;
2953
Chris Lattner1a570f12005-09-02 20:32:45 +00002954 std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
2955 if (I != PromotedNodes.end()) return I->second;
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002956
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002957 switch (Node->getOpcode()) {
Chris Lattner33182322005-08-16 21:55:35 +00002958 case ISD::CopyFromReg:
2959 assert(0 && "CopyFromReg must be legal!");
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002960 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00002961#ifndef NDEBUG
Bill Wendling22e978a2006-12-07 20:04:42 +00002962 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00002963#endif
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002964 assert(0 && "Do not know how to promote this operator!");
2965 abort();
Nate Begemancda9aa72005-04-01 22:34:39 +00002966 case ISD::UNDEF:
2967 Result = DAG.getNode(ISD::UNDEF, NVT);
2968 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002969 case ISD::Constant:
Chris Lattner9a4ad482005-08-30 16:56:19 +00002970 if (VT != MVT::i1)
2971 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
2972 else
2973 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002974 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
2975 break;
2976 case ISD::ConstantFP:
2977 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
2978 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
2979 break;
Chris Lattner9f2c4a52005-01-18 17:54:55 +00002980
Chris Lattner2cb338d2005-01-18 02:59:52 +00002981 case ISD::SETCC:
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00002982 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattnerd47675e2005-08-09 20:20:18 +00002983 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
2984 Node->getOperand(1), Node->getOperand(2));
Chris Lattner2cb338d2005-01-18 02:59:52 +00002985 break;
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002986
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002987 case ISD::TRUNCATE:
2988 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2989 case Legal:
2990 Result = LegalizeOp(Node->getOperand(0));
2991 assert(Result.getValueType() >= NVT &&
2992 "This truncation doesn't make sense!");
2993 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
2994 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
2995 break;
Chris Lattnerbf8c1ad2005-01-28 22:52:50 +00002996 case Promote:
2997 // The truncation is not required, because we don't guarantee anything
2998 // about high bits anyway.
2999 Result = PromoteOp(Node->getOperand(0));
3000 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003001 case Expand:
Nate Begemancc00a7c2005-04-04 00:57:08 +00003002 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3003 // Truncate the low part of the expanded value to the result type
Chris Lattner4398daf2005-08-01 18:16:37 +00003004 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003005 }
3006 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003007 case ISD::SIGN_EXTEND:
3008 case ISD::ZERO_EXTEND:
Chris Lattner7753f172005-09-02 00:18:10 +00003009 case ISD::ANY_EXTEND:
Chris Lattner4d978642005-01-15 22:16:26 +00003010 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3011 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
3012 case Legal:
3013 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003014 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner4d978642005-01-15 22:16:26 +00003015 break;
3016 case Promote:
3017 // Promote the reg if it's smaller.
3018 Result = PromoteOp(Node->getOperand(0));
3019 // The high bits are not guaranteed to be anything. Insert an extend.
3020 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner05596912005-02-04 18:39:19 +00003021 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner0b6ba902005-07-10 00:07:11 +00003022 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner7753f172005-09-02 00:18:10 +00003023 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner0e852af2005-04-13 02:38:47 +00003024 Result = DAG.getZeroExtendInReg(Result,
3025 Node->getOperand(0).getValueType());
Chris Lattner4d978642005-01-15 22:16:26 +00003026 break;
3027 }
3028 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00003029 case ISD::BIT_CONVERT:
3030 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3031 Result = PromoteOp(Result);
3032 break;
3033
Chris Lattner4d978642005-01-15 22:16:26 +00003034 case ISD::FP_EXTEND:
3035 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
3036 case ISD::FP_ROUND:
3037 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3038 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3039 case Promote: assert(0 && "Unreachable with 2 FP types!");
3040 case Legal:
3041 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003042 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner0b6ba902005-07-10 00:07:11 +00003043 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00003044 break;
3045 }
3046 break;
3047
3048 case ISD::SINT_TO_FP:
3049 case ISD::UINT_TO_FP:
3050 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3051 case Legal:
Chris Lattneraac464e2005-01-21 06:05:23 +00003052 // No extra round required here.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003053 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner4d978642005-01-15 22:16:26 +00003054 break;
3055
3056 case Promote:
3057 Result = PromoteOp(Node->getOperand(0));
3058 if (Node->getOpcode() == ISD::SINT_TO_FP)
3059 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00003060 Result,
3061 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner4d978642005-01-15 22:16:26 +00003062 else
Chris Lattner0e852af2005-04-13 02:38:47 +00003063 Result = DAG.getZeroExtendInReg(Result,
3064 Node->getOperand(0).getValueType());
Chris Lattneraac464e2005-01-21 06:05:23 +00003065 // No extra round required here.
3066 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner4d978642005-01-15 22:16:26 +00003067 break;
3068 case Expand:
Chris Lattneraac464e2005-01-21 06:05:23 +00003069 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3070 Node->getOperand(0));
Chris Lattneraac464e2005-01-21 06:05:23 +00003071 // Round if we cannot tolerate excess precision.
3072 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003073 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3074 DAG.getValueType(VT));
Chris Lattneraac464e2005-01-21 06:05:23 +00003075 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003076 }
Chris Lattner4d978642005-01-15 22:16:26 +00003077 break;
3078
Chris Lattner268d4572005-12-09 17:32:47 +00003079 case ISD::SIGN_EXTEND_INREG:
3080 Result = PromoteOp(Node->getOperand(0));
3081 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3082 Node->getOperand(1));
3083 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003084 case ISD::FP_TO_SINT:
3085 case ISD::FP_TO_UINT:
3086 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3087 case Legal:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003088 Tmp1 = Node->getOperand(0);
Chris Lattner4d978642005-01-15 22:16:26 +00003089 break;
3090 case Promote:
3091 // The input result is prerounded, so we don't have to do anything
3092 // special.
3093 Tmp1 = PromoteOp(Node->getOperand(0));
3094 break;
3095 case Expand:
3096 assert(0 && "not implemented");
3097 }
Nate Begeman36853ee2005-08-14 01:20:53 +00003098 // If we're promoting a UINT to a larger size, check to see if the new node
3099 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3100 // we can use that instead. This allows us to generate better code for
3101 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3102 // legal, such as PowerPC.
3103 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00003104 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemand8f2a1a2005-10-25 23:47:25 +00003105 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3106 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begeman36853ee2005-08-14 01:20:53 +00003107 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3108 } else {
3109 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3110 }
Chris Lattner4d978642005-01-15 22:16:26 +00003111 break;
3112
Chris Lattner13fe99c2005-04-02 05:00:07 +00003113 case ISD::FABS:
3114 case ISD::FNEG:
3115 Tmp1 = PromoteOp(Node->getOperand(0));
3116 assert(Tmp1.getValueType() == NVT);
3117 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3118 // NOTE: we do not have to do any extra rounding here for
3119 // NoExcessFPPrecision, because we know the input will have the appropriate
3120 // precision, and these operations don't modify precision at all.
3121 break;
3122
Chris Lattner9d6fa982005-04-28 21:44:33 +00003123 case ISD::FSQRT:
3124 case ISD::FSIN:
3125 case ISD::FCOS:
3126 Tmp1 = PromoteOp(Node->getOperand(0));
3127 assert(Tmp1.getValueType() == NVT);
3128 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003129 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003130 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3131 DAG.getValueType(VT));
Chris Lattner9d6fa982005-04-28 21:44:33 +00003132 break;
3133
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003134 case ISD::AND:
3135 case ISD::OR:
3136 case ISD::XOR:
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003137 case ISD::ADD:
Chris Lattner4d978642005-01-15 22:16:26 +00003138 case ISD::SUB:
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003139 case ISD::MUL:
3140 // The input may have strange things in the top bits of the registers, but
Chris Lattner6f3b5772005-09-28 22:28:18 +00003141 // these operations don't care. They may have weird bits going out, but
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003142 // that too is okay if they are integer operations.
3143 Tmp1 = PromoteOp(Node->getOperand(0));
3144 Tmp2 = PromoteOp(Node->getOperand(1));
3145 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3146 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner6f3b5772005-09-28 22:28:18 +00003147 break;
3148 case ISD::FADD:
3149 case ISD::FSUB:
3150 case ISD::FMUL:
Chris Lattner6f3b5772005-09-28 22:28:18 +00003151 Tmp1 = PromoteOp(Node->getOperand(0));
3152 Tmp2 = PromoteOp(Node->getOperand(1));
3153 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3154 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3155
3156 // Floating point operations will give excess precision that we may not be
3157 // able to tolerate. If we DO allow excess precision, just leave it,
3158 // otherwise excise it.
Chris Lattner4d978642005-01-15 22:16:26 +00003159 // FIXME: Why would we need to round FP ops more than integer ones?
3160 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner6f3b5772005-09-28 22:28:18 +00003161 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003162 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3163 DAG.getValueType(VT));
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003164 break;
3165
Chris Lattner4d978642005-01-15 22:16:26 +00003166 case ISD::SDIV:
3167 case ISD::SREM:
3168 // These operators require that their input be sign extended.
3169 Tmp1 = PromoteOp(Node->getOperand(0));
3170 Tmp2 = PromoteOp(Node->getOperand(1));
3171 if (MVT::isInteger(NVT)) {
Chris Lattner0b6ba902005-07-10 00:07:11 +00003172 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3173 DAG.getValueType(VT));
3174 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3175 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00003176 }
3177 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3178
3179 // Perform FP_ROUND: this is probably overly pessimistic.
3180 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003181 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3182 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00003183 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00003184 case ISD::FDIV:
3185 case ISD::FREM:
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003186 case ISD::FCOPYSIGN:
Chris Lattner6f3b5772005-09-28 22:28:18 +00003187 // These operators require that their input be fp extended.
Nate Begeman1a225d22006-05-09 18:20:51 +00003188 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3189 case Legal:
3190 Tmp1 = LegalizeOp(Node->getOperand(0));
3191 break;
3192 case Promote:
3193 Tmp1 = PromoteOp(Node->getOperand(0));
3194 break;
3195 case Expand:
3196 assert(0 && "not implemented");
3197 }
3198 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3199 case Legal:
3200 Tmp2 = LegalizeOp(Node->getOperand(1));
3201 break;
3202 case Promote:
3203 Tmp2 = PromoteOp(Node->getOperand(1));
3204 break;
3205 case Expand:
3206 assert(0 && "not implemented");
3207 }
Chris Lattner6f3b5772005-09-28 22:28:18 +00003208 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3209
3210 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003211 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner6f3b5772005-09-28 22:28:18 +00003212 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3213 DAG.getValueType(VT));
3214 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003215
3216 case ISD::UDIV:
3217 case ISD::UREM:
3218 // These operators require that their input be zero extended.
3219 Tmp1 = PromoteOp(Node->getOperand(0));
3220 Tmp2 = PromoteOp(Node->getOperand(1));
3221 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner0e852af2005-04-13 02:38:47 +00003222 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3223 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner4d978642005-01-15 22:16:26 +00003224 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3225 break;
3226
3227 case ISD::SHL:
3228 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003229 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00003230 break;
3231 case ISD::SRA:
3232 // The input value must be properly sign extended.
3233 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0b6ba902005-07-10 00:07:11 +00003234 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3235 DAG.getValueType(VT));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003236 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00003237 break;
3238 case ISD::SRL:
3239 // The input value must be properly zero extended.
3240 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0e852af2005-04-13 02:38:47 +00003241 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003242 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00003243 break;
Nate Begeman595ec732006-01-28 03:14:31 +00003244
3245 case ISD::VAARG:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003246 Tmp1 = Node->getOperand(0); // Get the chain.
3247 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman595ec732006-01-28 03:14:31 +00003248 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3249 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3250 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3251 } else {
Evan Chenge71fe34d2006-10-09 20:57:25 +00003252 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begeman595ec732006-01-28 03:14:31 +00003253 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Chenge71fe34d2006-10-09 20:57:25 +00003254 SV->getValue(), SV->getOffset());
Nate Begeman595ec732006-01-28 03:14:31 +00003255 // Increment the pointer, VAList, to the next vaarg
3256 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3257 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3258 TLI.getPointerTy()));
3259 // Store the incremented VAList to the legalized pointer
Evan Chengab51cf22006-10-13 21:14:26 +00003260 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
3261 SV->getOffset());
Nate Begeman595ec732006-01-28 03:14:31 +00003262 // Load the actual argument out of the pointer VAList
Evan Chenge71fe34d2006-10-09 20:57:25 +00003263 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman595ec732006-01-28 03:14:31 +00003264 }
3265 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003266 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman595ec732006-01-28 03:14:31 +00003267 break;
3268
Evan Chenge71fe34d2006-10-09 20:57:25 +00003269 case ISD::LOAD: {
3270 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Chengdc6a3aa2006-10-10 07:51:21 +00003271 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
3272 ? ISD::EXTLOAD : LD->getExtensionType();
3273 Result = DAG.getExtLoad(ExtType, NVT,
3274 LD->getChain(), LD->getBasePtr(),
Chris Lattner84384292006-10-10 18:54:19 +00003275 LD->getSrcValue(), LD->getSrcValueOffset(),
Evan Chengd35734b2006-10-11 07:10:22 +00003276 LD->getLoadedVT());
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003277 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003278 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003279 break;
Evan Chenge71fe34d2006-10-09 20:57:25 +00003280 }
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003281 case ISD::SELECT:
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003282 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
3283 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003284 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003285 break;
Nate Begemane5b86d72005-08-10 20:51:12 +00003286 case ISD::SELECT_CC:
3287 Tmp2 = PromoteOp(Node->getOperand(2)); // True
3288 Tmp3 = PromoteOp(Node->getOperand(3)); // False
3289 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003290 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begemane5b86d72005-08-10 20:51:12 +00003291 break;
Nate Begeman2fba8a32006-01-14 03:14:10 +00003292 case ISD::BSWAP:
3293 Tmp1 = Node->getOperand(0);
3294 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3295 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3296 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3297 DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
3298 TLI.getShiftAmountTy()));
3299 break;
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003300 case ISD::CTPOP:
3301 case ISD::CTTZ:
3302 case ISD::CTLZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003303 // Zero extend the argument
3304 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003305 // Perform the larger operation, then subtract if needed.
3306 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003307 switch(Node->getOpcode()) {
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003308 case ISD::CTPOP:
3309 Result = Tmp1;
3310 break;
3311 case ISD::CTTZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003312 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begeman36853ee2005-08-14 01:20:53 +00003313 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Chris Lattnerd47675e2005-08-09 20:20:18 +00003314 DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003315 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003316 DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003317 break;
3318 case ISD::CTLZ:
3319 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003320 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
3321 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003322 getSizeInBits(VT), NVT));
3323 break;
3324 }
3325 break;
Chris Lattner6f423252006-03-31 17:55:51 +00003326 case ISD::VEXTRACT_VECTOR_ELT:
3327 Result = PromoteOp(LowerVEXTRACT_VECTOR_ELT(Op));
3328 break;
Chris Lattner42a5fca2006-04-02 05:06:04 +00003329 case ISD::EXTRACT_VECTOR_ELT:
3330 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3331 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003332 }
3333
3334 assert(Result.Val && "Didn't set a result!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003335
3336 // Make sure the result is itself legal.
3337 Result = LegalizeOp(Result);
3338
3339 // Remember that we promoted this!
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003340 AddPromotedOperand(Op, Result);
3341 return Result;
3342}
Chris Lattnerdc750592005-01-07 07:47:09 +00003343
Chris Lattner6f423252006-03-31 17:55:51 +00003344/// LowerVEXTRACT_VECTOR_ELT - Lower a VEXTRACT_VECTOR_ELT operation into a
3345/// EXTRACT_VECTOR_ELT operation, to memory operations, or to scalar code based
3346/// on the vector type. The return type of this matches the element type of the
3347/// vector, which may not be legal for the target.
3348SDOperand SelectionDAGLegalize::LowerVEXTRACT_VECTOR_ELT(SDOperand Op) {
3349 // We know that operand #0 is the Vec vector. If the index is a constant
3350 // or if the invec is a supported hardware type, we can use it. Otherwise,
3351 // lower to a store then an indexed load.
3352 SDOperand Vec = Op.getOperand(0);
3353 SDOperand Idx = LegalizeOp(Op.getOperand(1));
3354
3355 SDNode *InVal = Vec.Val;
3356 unsigned NumElems = cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
3357 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
3358
3359 // Figure out if there is a Packed type corresponding to this Vector
3360 // type. If so, convert to the packed type.
3361 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3362 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
3363 // Turn this into a packed extract_vector_elt operation.
3364 Vec = PackVectorOp(Vec, TVT);
3365 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, Op.getValueType(), Vec, Idx);
3366 } else if (NumElems == 1) {
3367 // This must be an access of the only element. Return it.
3368 return PackVectorOp(Vec, EVT);
3369 } else if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
3370 SDOperand Lo, Hi;
3371 SplitVectorOp(Vec, Lo, Hi);
3372 if (CIdx->getValue() < NumElems/2) {
3373 Vec = Lo;
3374 } else {
3375 Vec = Hi;
3376 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3377 }
3378
3379 // It's now an extract from the appropriate high or low part. Recurse.
3380 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3381 return LowerVEXTRACT_VECTOR_ELT(Op);
3382 } else {
3383 // Variable index case for extract element.
3384 // FIXME: IMPLEMENT STORE/LOAD lowering. Need alignment of stack slot!!
3385 assert(0 && "unimp!");
3386 return SDOperand();
3387 }
3388}
3389
Chris Lattner42a5fca2006-04-02 05:06:04 +00003390/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3391/// memory traffic.
3392SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
3393 SDOperand Vector = Op.getOperand(0);
3394 SDOperand Idx = Op.getOperand(1);
3395
3396 // If the target doesn't support this, store the value to a temporary
3397 // stack slot, then LOAD the scalar element back out.
3398 SDOperand StackPtr = CreateStackTemporary(Vector.getValueType());
Evan Chengab51cf22006-10-13 21:14:26 +00003399 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vector, StackPtr, NULL, 0);
Chris Lattner42a5fca2006-04-02 05:06:04 +00003400
3401 // Add the offset to the index.
3402 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3403 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3404 DAG.getConstant(EltSize, Idx.getValueType()));
3405 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3406
Evan Chenge71fe34d2006-10-09 20:57:25 +00003407 return DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner42a5fca2006-04-02 05:06:04 +00003408}
3409
Chris Lattner6f423252006-03-31 17:55:51 +00003410
Nate Begeman7e7f4392006-02-01 07:19:44 +00003411/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3412/// with condition CC on the current target. This usually involves legalizing
3413/// or promoting the arguments. In the case where LHS and RHS must be expanded,
3414/// there may be no choice but to create a new SetCC node to represent the
3415/// legalized value of setcc lhs, rhs. In this case, the value is returned in
3416/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3417void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3418 SDOperand &RHS,
3419 SDOperand &CC) {
3420 SDOperand Tmp1, Tmp2, Result;
3421
3422 switch (getTypeAction(LHS.getValueType())) {
3423 case Legal:
3424 Tmp1 = LegalizeOp(LHS); // LHS
3425 Tmp2 = LegalizeOp(RHS); // RHS
3426 break;
3427 case Promote:
3428 Tmp1 = PromoteOp(LHS); // LHS
3429 Tmp2 = PromoteOp(RHS); // RHS
3430
3431 // If this is an FP compare, the operands have already been extended.
3432 if (MVT::isInteger(LHS.getValueType())) {
3433 MVT::ValueType VT = LHS.getValueType();
3434 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3435
3436 // Otherwise, we have to insert explicit sign or zero extends. Note
3437 // that we could insert sign extends for ALL conditions, but zero extend
3438 // is cheaper on many machines (an AND instead of two shifts), so prefer
3439 // it.
3440 switch (cast<CondCodeSDNode>(CC)->get()) {
3441 default: assert(0 && "Unknown integer comparison!");
3442 case ISD::SETEQ:
3443 case ISD::SETNE:
3444 case ISD::SETUGE:
3445 case ISD::SETUGT:
3446 case ISD::SETULE:
3447 case ISD::SETULT:
3448 // ALL of these operations will work if we either sign or zero extend
3449 // the operands (including the unsigned comparisons!). Zero extend is
3450 // usually a simpler/cheaper operation, so prefer it.
3451 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3452 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3453 break;
3454 case ISD::SETGE:
3455 case ISD::SETGT:
3456 case ISD::SETLT:
3457 case ISD::SETLE:
3458 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3459 DAG.getValueType(VT));
3460 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3461 DAG.getValueType(VT));
3462 break;
3463 }
3464 }
3465 break;
3466 case Expand:
3467 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
3468 ExpandOp(LHS, LHSLo, LHSHi);
3469 ExpandOp(RHS, RHSLo, RHSHi);
3470 switch (cast<CondCodeSDNode>(CC)->get()) {
3471 case ISD::SETEQ:
3472 case ISD::SETNE:
3473 if (RHSLo == RHSHi)
3474 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
3475 if (RHSCST->isAllOnesValue()) {
3476 // Comparison to -1.
3477 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
3478 Tmp2 = RHSLo;
3479 break;
3480 }
3481
3482 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
3483 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
3484 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3485 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3486 break;
3487 default:
3488 // If this is a comparison of the sign bit, just look at the top part.
3489 // X > -1, x < 0
3490 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
3491 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
3492 CST->getValue() == 0) || // X < 0
3493 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
3494 CST->isAllOnesValue())) { // X > -1
3495 Tmp1 = LHSHi;
3496 Tmp2 = RHSHi;
3497 break;
3498 }
3499
3500 // FIXME: This generated code sucks.
3501 ISD::CondCode LowCC;
3502 switch (cast<CondCodeSDNode>(CC)->get()) {
3503 default: assert(0 && "Unknown integer setcc!");
3504 case ISD::SETLT:
3505 case ISD::SETULT: LowCC = ISD::SETULT; break;
3506 case ISD::SETGT:
3507 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
3508 case ISD::SETLE:
3509 case ISD::SETULE: LowCC = ISD::SETULE; break;
3510 case ISD::SETGE:
3511 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
3512 }
3513
3514 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
3515 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
3516 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
3517
3518 // NOTE: on targets without efficient SELECT of bools, we can always use
3519 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
3520 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
3521 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
3522 Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
3523 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
3524 Result, Tmp1, Tmp2));
3525 Tmp1 = Result;
Nate Begeman01bd9d92006-02-01 19:05:15 +00003526 Tmp2 = SDOperand();
Nate Begeman7e7f4392006-02-01 07:19:44 +00003527 }
3528 }
3529 LHS = Tmp1;
3530 RHS = Tmp2;
3531}
3532
Chris Lattner36e663d2005-12-23 00:16:34 +00003533/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner884eb3ad2005-12-23 00:52:30 +00003534/// The resultant code need not be legal. Note that SrcOp is the input operand
3535/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner36e663d2005-12-23 00:16:34 +00003536SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
3537 SDOperand SrcOp) {
3538 // Create the stack frame object.
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003539 SDOperand FIPtr = CreateStackTemporary(DestVT);
Chris Lattner36e663d2005-12-23 00:16:34 +00003540
3541 // Emit a store to the stack slot.
Evan Chengab51cf22006-10-13 21:14:26 +00003542 SDOperand Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, NULL, 0);
Chris Lattner36e663d2005-12-23 00:16:34 +00003543 // Result is a load from the stack slot.
Evan Chenge71fe34d2006-10-09 20:57:25 +00003544 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
Chris Lattner36e663d2005-12-23 00:16:34 +00003545}
3546
Chris Lattner6be79822006-04-04 17:23:26 +00003547SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
3548 // Create a vector sized/aligned stack slot, store the value to element #0,
3549 // then load the whole vector back out.
3550 SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
Evan Chengdf9ac472006-10-05 23:01:46 +00003551 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Evan Chengab51cf22006-10-13 21:14:26 +00003552 NULL, 0);
Evan Chenge71fe34d2006-10-09 20:57:25 +00003553 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, NULL, 0);
Chris Lattner6be79822006-04-04 17:23:26 +00003554}
3555
3556
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003557/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
3558/// support the operation, but do support the resultant packed vector type.
3559SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
3560
3561 // If the only non-undef value is the low element, turn this into a
Chris Lattner21e68c82006-03-20 01:52:29 +00003562 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng1d2e9952006-03-24 01:17:21 +00003563 unsigned NumElems = Node->getNumOperands();
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003564 bool isOnlyLowElement = true;
Chris Lattner21e68c82006-03-20 01:52:29 +00003565 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng1d2e9952006-03-24 01:17:21 +00003566 std::map<SDOperand, std::vector<unsigned> > Values;
3567 Values[SplatValue].push_back(0);
Chris Lattner77e271c2006-03-24 07:29:17 +00003568 bool isConstant = true;
3569 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
3570 SplatValue.getOpcode() != ISD::UNDEF)
3571 isConstant = false;
3572
Evan Cheng1d2e9952006-03-24 01:17:21 +00003573 for (unsigned i = 1; i < NumElems; ++i) {
3574 SDOperand V = Node->getOperand(i);
Chris Lattner73eb58e2006-04-19 23:17:50 +00003575 Values[V].push_back(i);
Evan Cheng1d2e9952006-03-24 01:17:21 +00003576 if (V.getOpcode() != ISD::UNDEF)
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003577 isOnlyLowElement = false;
Evan Cheng1d2e9952006-03-24 01:17:21 +00003578 if (SplatValue != V)
Chris Lattner21e68c82006-03-20 01:52:29 +00003579 SplatValue = SDOperand(0,0);
Chris Lattner77e271c2006-03-24 07:29:17 +00003580
3581 // If this isn't a constant element or an undef, we can't use a constant
3582 // pool load.
3583 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
3584 V.getOpcode() != ISD::UNDEF)
3585 isConstant = false;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003586 }
3587
3588 if (isOnlyLowElement) {
3589 // If the low element is an undef too, then this whole things is an undef.
3590 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
3591 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
3592 // Otherwise, turn this into a scalar_to_vector node.
3593 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3594 Node->getOperand(0));
3595 }
3596
Chris Lattner77e271c2006-03-24 07:29:17 +00003597 // If all elements are constants, create a load from the constant pool.
3598 if (isConstant) {
3599 MVT::ValueType VT = Node->getValueType(0);
3600 const Type *OpNTy =
3601 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
3602 std::vector<Constant*> CV;
3603 for (unsigned i = 0, e = NumElems; i != e; ++i) {
3604 if (ConstantFPSDNode *V =
3605 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
3606 CV.push_back(ConstantFP::get(OpNTy, V->getValue()));
3607 } else if (ConstantSDNode *V =
3608 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00003609 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner77e271c2006-03-24 07:29:17 +00003610 } else {
3611 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
3612 CV.push_back(UndefValue::get(OpNTy));
3613 }
3614 }
3615 Constant *CP = ConstantPacked::get(CV);
3616 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Chenge71fe34d2006-10-09 20:57:25 +00003617 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner77e271c2006-03-24 07:29:17 +00003618 }
3619
Chris Lattner21e68c82006-03-20 01:52:29 +00003620 if (SplatValue.Val) { // Splat of one value?
3621 // Build the shuffle constant vector: <0, 0, 0, 0>
3622 MVT::ValueType MaskVT =
Evan Cheng1d2e9952006-03-24 01:17:21 +00003623 MVT::getIntVectorWithNumElements(NumElems);
Chris Lattner21e68c82006-03-20 01:52:29 +00003624 SDOperand Zero = DAG.getConstant(0, MVT::getVectorBaseType(MaskVT));
Evan Cheng1d2e9952006-03-24 01:17:21 +00003625 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003626 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3627 &ZeroVec[0], ZeroVec.size());
Chris Lattner21e68c82006-03-20 01:52:29 +00003628
3629 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner6be79822006-04-04 17:23:26 +00003630 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner21e68c82006-03-20 01:52:29 +00003631 // Get the splatted value into the low element of a vector register.
3632 SDOperand LowValVec =
3633 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
3634
3635 // Return shuffle(LowValVec, undef, <0,0,0,0>)
3636 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
3637 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
3638 SplatMask);
3639 }
3640 }
3641
Evan Cheng1d2e9952006-03-24 01:17:21 +00003642 // If there are only two unique elements, we may be able to turn this into a
3643 // vector shuffle.
3644 if (Values.size() == 2) {
3645 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
3646 MVT::ValueType MaskVT =
3647 MVT::getIntVectorWithNumElements(NumElems);
3648 std::vector<SDOperand> MaskVec(NumElems);
3649 unsigned i = 0;
3650 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3651 E = Values.end(); I != E; ++I) {
3652 for (std::vector<unsigned>::iterator II = I->second.begin(),
3653 EE = I->second.end(); II != EE; ++II)
3654 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorBaseType(MaskVT));
3655 i += NumElems;
3656 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003657 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3658 &MaskVec[0], MaskVec.size());
Evan Cheng1d2e9952006-03-24 01:17:21 +00003659
3660 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner6be79822006-04-04 17:23:26 +00003661 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
3662 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003663 SmallVector<SDOperand, 8> Ops;
Evan Cheng1d2e9952006-03-24 01:17:21 +00003664 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3665 E = Values.end(); I != E; ++I) {
3666 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3667 I->first);
3668 Ops.push_back(Op);
3669 }
3670 Ops.push_back(ShuffleMask);
3671
3672 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003673 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
3674 &Ops[0], Ops.size());
Evan Cheng1d2e9952006-03-24 01:17:21 +00003675 }
3676 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003677
3678 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
3679 // aligned object on the stack, store each element into it, then load
3680 // the result as a vector.
3681 MVT::ValueType VT = Node->getValueType(0);
3682 // Create the stack frame object.
3683 SDOperand FIPtr = CreateStackTemporary(VT);
3684
3685 // Emit a store of each element to the stack slot.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003686 SmallVector<SDOperand, 8> Stores;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003687 unsigned TypeByteSize =
3688 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003689 // Store (in the right endianness) the elements to memory.
3690 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3691 // Ignore undef elements.
3692 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
3693
Chris Lattner8fa445a2006-03-22 01:46:54 +00003694 unsigned Offset = TypeByteSize*i;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003695
3696 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
3697 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
3698
Evan Chengdf9ac472006-10-05 23:01:46 +00003699 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Chengab51cf22006-10-13 21:14:26 +00003700 NULL, 0));
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003701 }
3702
3703 SDOperand StoreChain;
3704 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003705 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3706 &Stores[0], Stores.size());
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003707 else
3708 StoreChain = DAG.getEntryNode();
3709
3710 // Result is a load from the stack slot.
Evan Chenge71fe34d2006-10-09 20:57:25 +00003711 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003712}
3713
3714/// CreateStackTemporary - Create a stack temporary, suitable for holding the
3715/// specified value type.
3716SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
3717 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3718 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
3719 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, ByteSize);
3720 return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
3721}
3722
Chris Lattner4157c412005-04-02 04:00:59 +00003723void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
3724 SDOperand Op, SDOperand Amt,
3725 SDOperand &Lo, SDOperand &Hi) {
3726 // Expand the subcomponents.
3727 SDOperand LHSL, LHSH;
3728 ExpandOp(Op, LHSL, LHSH);
3729
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003730 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerbd887772006-08-14 23:53:35 +00003731 MVT::ValueType VT = LHSL.getValueType();
3732 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner4157c412005-04-02 04:00:59 +00003733 Hi = Lo.getValue(1);
3734}
3735
3736
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003737/// ExpandShift - Try to find a clever way to expand this shift operation out to
3738/// smaller elements. If we can't find a way that is more efficient than a
3739/// libcall on this target, return false. Otherwise, return true with the
3740/// low-parts expanded into Lo and Hi.
3741bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
3742 SDOperand &Lo, SDOperand &Hi) {
3743 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
3744 "This is not a shift!");
Nate Begemanb0674922005-04-06 21:13:14 +00003745
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003746 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanb0674922005-04-06 21:13:14 +00003747 SDOperand ShAmt = LegalizeOp(Amt);
3748 MVT::ValueType ShTy = ShAmt.getValueType();
3749 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
3750 unsigned NVTBits = MVT::getSizeInBits(NVT);
3751
3752 // Handle the case when Amt is an immediate. Other cases are currently broken
3753 // and are disabled.
3754 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
3755 unsigned Cst = CN->getValue();
3756 // Expand the incoming operand to be shifted, so that we have its parts
3757 SDOperand InL, InH;
3758 ExpandOp(Op, InL, InH);
3759 switch(Opc) {
3760 case ISD::SHL:
3761 if (Cst > VTBits) {
3762 Lo = DAG.getConstant(0, NVT);
3763 Hi = DAG.getConstant(0, NVT);
3764 } else if (Cst > NVTBits) {
3765 Lo = DAG.getConstant(0, NVT);
3766 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneredd19702005-04-11 20:08:52 +00003767 } else if (Cst == NVTBits) {
3768 Lo = DAG.getConstant(0, NVT);
3769 Hi = InL;
Nate Begemanb0674922005-04-06 21:13:14 +00003770 } else {
3771 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
3772 Hi = DAG.getNode(ISD::OR, NVT,
3773 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
3774 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
3775 }
3776 return true;
3777 case ISD::SRL:
3778 if (Cst > VTBits) {
3779 Lo = DAG.getConstant(0, NVT);
3780 Hi = DAG.getConstant(0, NVT);
3781 } else if (Cst > NVTBits) {
3782 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
3783 Hi = DAG.getConstant(0, NVT);
Chris Lattneredd19702005-04-11 20:08:52 +00003784 } else if (Cst == NVTBits) {
3785 Lo = InH;
3786 Hi = DAG.getConstant(0, NVT);
Nate Begemanb0674922005-04-06 21:13:14 +00003787 } else {
3788 Lo = DAG.getNode(ISD::OR, NVT,
3789 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3790 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3791 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
3792 }
3793 return true;
3794 case ISD::SRA:
3795 if (Cst > VTBits) {
Misha Brukman835702a2005-04-21 22:36:52 +00003796 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00003797 DAG.getConstant(NVTBits-1, ShTy));
3798 } else if (Cst > NVTBits) {
Misha Brukman835702a2005-04-21 22:36:52 +00003799 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00003800 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukman835702a2005-04-21 22:36:52 +00003801 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00003802 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneredd19702005-04-11 20:08:52 +00003803 } else if (Cst == NVTBits) {
3804 Lo = InH;
Misha Brukman835702a2005-04-21 22:36:52 +00003805 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneredd19702005-04-11 20:08:52 +00003806 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanb0674922005-04-06 21:13:14 +00003807 } else {
3808 Lo = DAG.getNode(ISD::OR, NVT,
3809 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3810 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3811 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
3812 }
3813 return true;
3814 }
3815 }
Chris Lattner875ea0c2006-09-20 03:38:48 +00003816
3817 // Okay, the shift amount isn't constant. However, if we can tell that it is
3818 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
3819 uint64_t Mask = NVTBits, KnownZero, KnownOne;
3820 TLI.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
3821
3822 // If we know that the high bit of the shift amount is one, then we can do
3823 // this as a couple of simple shifts.
3824 if (KnownOne & Mask) {
3825 // Mask out the high bit, which we know is set.
3826 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
3827 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3828
3829 // Expand the incoming operand to be shifted, so that we have its parts
3830 SDOperand InL, InH;
3831 ExpandOp(Op, InL, InH);
3832 switch(Opc) {
3833 case ISD::SHL:
3834 Lo = DAG.getConstant(0, NVT); // Low part is zero.
3835 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
3836 return true;
3837 case ISD::SRL:
3838 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
3839 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
3840 return true;
3841 case ISD::SRA:
3842 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
3843 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3844 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
3845 return true;
3846 }
3847 }
3848
3849 // If we know that the high bit of the shift amount is zero, then we can do
3850 // this as a couple of simple shifts.
3851 if (KnownZero & Mask) {
3852 // Compute 32-amt.
3853 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
3854 DAG.getConstant(NVTBits, Amt.getValueType()),
3855 Amt);
3856
3857 // Expand the incoming operand to be shifted, so that we have its parts
3858 SDOperand InL, InH;
3859 ExpandOp(Op, InL, InH);
3860 switch(Opc) {
3861 case ISD::SHL:
3862 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
3863 Hi = DAG.getNode(ISD::OR, NVT,
3864 DAG.getNode(ISD::SHL, NVT, InH, Amt),
3865 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
3866 return true;
3867 case ISD::SRL:
3868 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
3869 Lo = DAG.getNode(ISD::OR, NVT,
3870 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3871 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3872 return true;
3873 case ISD::SRA:
3874 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
3875 Lo = DAG.getNode(ISD::OR, NVT,
3876 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3877 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3878 return true;
3879 }
3880 }
3881
Nate Begemanb0674922005-04-06 21:13:14 +00003882 return false;
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003883}
Chris Lattneraac464e2005-01-21 06:05:23 +00003884
Chris Lattner4add7e32005-01-23 04:42:50 +00003885
Chris Lattneraac464e2005-01-21 06:05:23 +00003886// ExpandLibCall - Expand a node into a call to a libcall. If the result value
3887// does not fit into a register, return the lo part and set the hi part to the
3888// by-reg argument. If it does fit into a single register, return the result
3889// and leave the Hi part unset.
3890SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
3891 SDOperand &Hi) {
Chris Lattner462505f2006-02-13 09:18:02 +00003892 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
3893 // The input chain to this libcall is the entry node of the function.
3894 // Legalizing the call will automatically add the previous call to the
3895 // dependence.
3896 SDOperand InChain = DAG.getEntryNode();
3897
Chris Lattneraac464e2005-01-21 06:05:23 +00003898 TargetLowering::ArgListTy Args;
3899 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3900 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
3901 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
3902 Args.push_back(std::make_pair(Node->getOperand(i), ArgTy));
3903 }
3904 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukman835702a2005-04-21 22:36:52 +00003905
Chris Lattner06bbeb62005-05-11 19:02:11 +00003906 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattneraac464e2005-01-21 06:05:23 +00003907 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner06bbeb62005-05-11 19:02:11 +00003908 std::pair<SDOperand,SDOperand> CallInfo =
Chris Lattner2e77db62005-05-13 18:50:42 +00003909 TLI.LowerCallTo(InChain, RetTy, false, CallingConv::C, false,
3910 Callee, Args, DAG);
Chris Lattnera5bf1032005-05-12 04:49:08 +00003911
Chris Lattner462505f2006-02-13 09:18:02 +00003912 // Legalize the call sequence, starting with the chain. This will advance
3913 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
3914 // was added by LowerCallTo (guaranteeing proper serialization of calls).
3915 LegalizeOp(CallInfo.second);
Chris Lattner63022662005-09-02 20:26:58 +00003916 SDOperand Result;
Chris Lattner06bbeb62005-05-11 19:02:11 +00003917 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattneraac464e2005-01-21 06:05:23 +00003918 default: assert(0 && "Unknown thing");
3919 case Legal:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003920 Result = CallInfo.first;
Chris Lattner63022662005-09-02 20:26:58 +00003921 break;
Chris Lattneraac464e2005-01-21 06:05:23 +00003922 case Expand:
Chris Lattner63022662005-09-02 20:26:58 +00003923 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner63022662005-09-02 20:26:58 +00003924 break;
Chris Lattneraac464e2005-01-21 06:05:23 +00003925 }
Chris Lattner63022662005-09-02 20:26:58 +00003926 return Result;
Chris Lattneraac464e2005-01-21 06:05:23 +00003927}
3928
Chris Lattner4add7e32005-01-23 04:42:50 +00003929
Chris Lattneraac464e2005-01-21 06:05:23 +00003930/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
3931/// destination type is legal.
3932SDOperand SelectionDAGLegalize::
3933ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00003934 assert(isTypeLegal(DestTy) && "Destination type is not legal!");
Chris Lattneraac464e2005-01-21 06:05:23 +00003935 assert(getTypeAction(Source.getValueType()) == Expand &&
3936 "This is not an expansion!");
3937 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
3938
Chris Lattner06bbeb62005-05-11 19:02:11 +00003939 if (!isSigned) {
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003940 assert(Source.getValueType() == MVT::i64 &&
3941 "This only works for 64-bit -> FP");
3942 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
3943 // incoming integer is set. To handle this, we dynamically test to see if
3944 // it is set, and, if so, add a fudge factor.
3945 SDOperand Lo, Hi;
3946 ExpandOp(Source, Lo, Hi);
3947
Chris Lattner2a4f7312005-05-13 04:45:13 +00003948 // If this is unsigned, and not supported, first perform the conversion to
3949 // signed, then adjust the result if the sign bit is set.
3950 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
3951 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
3952
Chris Lattnerd47675e2005-08-09 20:20:18 +00003953 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
3954 DAG.getConstant(0, Hi.getValueType()),
3955 ISD::SETLT);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003956 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3957 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3958 SignSet, Four, Zero);
Chris Lattner26f03172005-05-12 18:52:34 +00003959 uint64_t FF = 0x5f800000ULL;
3960 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencere0fc4df2006-10-20 07:07:24 +00003961 static Constant *FudgeFactor = ConstantInt::get(Type::ULongTy, FF);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003962
Chris Lattnerc30405e2005-08-26 17:15:30 +00003963 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003964 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3965 SDOperand FudgeInReg;
3966 if (DestTy == MVT::f32)
Evan Chenge71fe34d2006-10-09 20:57:25 +00003967 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003968 else {
3969 assert(DestTy == MVT::f64 && "Unexpected conversion");
Chris Lattnerde0a4b12005-07-10 01:55:33 +00003970 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Chenge71fe34d2006-10-09 20:57:25 +00003971 CPIdx, NULL, 0, MVT::f32);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003972 }
Chris Lattner5b2be1f2005-09-29 06:44:39 +00003973 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattneraac464e2005-01-21 06:05:23 +00003974 }
Chris Lattner06bbeb62005-05-11 19:02:11 +00003975
Chris Lattnerd3cc9962005-05-14 05:33:54 +00003976 // Check to see if the target has a custom way to lower this. If so, use it.
3977 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
3978 default: assert(0 && "This action not implemented for this operation!");
3979 case TargetLowering::Legal:
3980 case TargetLowering::Expand:
3981 break; // This case is handled below.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00003982 case TargetLowering::Custom: {
3983 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
3984 Source), DAG);
3985 if (NV.Val)
3986 return LegalizeOp(NV);
3987 break; // The target decided this was legal after all
3988 }
Chris Lattnerd3cc9962005-05-14 05:33:54 +00003989 }
3990
Chris Lattner153587e2005-05-12 07:00:44 +00003991 // Expand the source, then glue it back together for the call. We must expand
3992 // the source in case it is shared (this pass of legalize must traverse it).
3993 SDOperand SrcLo, SrcHi;
3994 ExpandOp(Source, SrcLo, SrcHi);
3995 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
3996
Chris Lattner06bbeb62005-05-11 19:02:11 +00003997 const char *FnName = 0;
3998 if (DestTy == MVT::f32)
3999 FnName = "__floatdisf";
4000 else {
4001 assert(DestTy == MVT::f64 && "Unknown fp value type!");
4002 FnName = "__floatdidf";
4003 }
Chris Lattner462505f2006-02-13 09:18:02 +00004004
4005 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
4006 SDOperand UnusedHiPart;
Chris Lattner9ec392b2006-02-17 04:32:33 +00004007 return ExpandLibCall(FnName, Source.Val, UnusedHiPart);
Chris Lattneraac464e2005-01-21 06:05:23 +00004008}
Misha Brukman835702a2005-04-21 22:36:52 +00004009
Chris Lattner689bdcc2006-01-28 08:25:58 +00004010/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
4011/// INT_TO_FP operation of the specified operand when the target requests that
4012/// we expand it. At this point, we know that the result and operand types are
4013/// legal for the target.
4014SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
4015 SDOperand Op0,
4016 MVT::ValueType DestVT) {
4017 if (Op0.getValueType() == MVT::i32) {
4018 // simple 32-bit [signed|unsigned] integer to float/double expansion
4019
4020 // get the stack frame index of a 8 byte buffer
4021 MachineFunction &MF = DAG.getMachineFunction();
4022 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
4023 // get address of 8 byte buffer
4024 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4025 // word offset constant for Hi/Lo address computation
4026 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
4027 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner9ea1b3f2006-03-23 05:29:04 +00004028 SDOperand Hi = StackSlot;
4029 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
4030 if (TLI.isLittleEndian())
4031 std::swap(Hi, Lo);
4032
Chris Lattner689bdcc2006-01-28 08:25:58 +00004033 // if signed map to unsigned space
4034 SDOperand Op0Mapped;
4035 if (isSigned) {
4036 // constant used to invert sign bit (signed to unsigned mapping)
4037 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
4038 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
4039 } else {
4040 Op0Mapped = Op0;
4041 }
4042 // store the lo of the constructed double - based on integer input
Evan Chengdf9ac472006-10-05 23:01:46 +00004043 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Chengab51cf22006-10-13 21:14:26 +00004044 Op0Mapped, Lo, NULL, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00004045 // initial hi portion of constructed double
4046 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
4047 // store the hi of the constructed double - biased exponent
Evan Chengab51cf22006-10-13 21:14:26 +00004048 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00004049 // load the constructed double
Evan Chenge71fe34d2006-10-09 20:57:25 +00004050 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00004051 // FP constant to bias correct the final result
4052 SDOperand Bias = DAG.getConstantFP(isSigned ?
4053 BitsToDouble(0x4330000080000000ULL)
4054 : BitsToDouble(0x4330000000000000ULL),
4055 MVT::f64);
4056 // subtract the bias
4057 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
4058 // final result
4059 SDOperand Result;
4060 // handle final rounding
4061 if (DestVT == MVT::f64) {
4062 // do nothing
4063 Result = Sub;
4064 } else {
4065 // if f32 then cast to f32
4066 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
4067 }
4068 return Result;
4069 }
4070 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
4071 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
4072
4073 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
4074 DAG.getConstant(0, Op0.getValueType()),
4075 ISD::SETLT);
4076 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4077 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4078 SignSet, Four, Zero);
4079
4080 // If the sign bit of the integer is set, the large number will be treated
4081 // as a negative number. To counteract this, the dynamic code adds an
4082 // offset depending on the data type.
4083 uint64_t FF;
4084 switch (Op0.getValueType()) {
4085 default: assert(0 && "Unsupported integer type!");
4086 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
4087 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
4088 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
4089 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
4090 }
4091 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencere0fc4df2006-10-20 07:07:24 +00004092 static Constant *FudgeFactor = ConstantInt::get(Type::ULongTy, FF);
Chris Lattner689bdcc2006-01-28 08:25:58 +00004093
4094 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4095 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4096 SDOperand FudgeInReg;
4097 if (DestVT == MVT::f32)
Evan Chenge71fe34d2006-10-09 20:57:25 +00004098 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00004099 else {
4100 assert(DestVT == MVT::f64 && "Unexpected conversion");
4101 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
4102 DAG.getEntryNode(), CPIdx,
Evan Chenge71fe34d2006-10-09 20:57:25 +00004103 NULL, 0, MVT::f32));
Chris Lattner689bdcc2006-01-28 08:25:58 +00004104 }
4105
4106 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
4107}
4108
4109/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
4110/// *INT_TO_FP operation of the specified operand when the target requests that
4111/// we promote it. At this point, we know that the result and operand types are
4112/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
4113/// operation that takes a larger input.
4114SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
4115 MVT::ValueType DestVT,
4116 bool isSigned) {
4117 // First step, figure out the appropriate *INT_TO_FP operation to use.
4118 MVT::ValueType NewInTy = LegalOp.getValueType();
4119
4120 unsigned OpToUse = 0;
4121
4122 // Scan for the appropriate larger type to use.
4123 while (1) {
4124 NewInTy = (MVT::ValueType)(NewInTy+1);
4125 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
4126
4127 // If the target supports SINT_TO_FP of this type, use it.
4128 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4129 default: break;
4130 case TargetLowering::Legal:
4131 if (!TLI.isTypeLegal(NewInTy))
4132 break; // Can't use this datatype.
4133 // FALL THROUGH.
4134 case TargetLowering::Custom:
4135 OpToUse = ISD::SINT_TO_FP;
4136 break;
4137 }
4138 if (OpToUse) break;
4139 if (isSigned) continue;
4140
4141 // If the target supports UINT_TO_FP of this type, use it.
4142 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4143 default: break;
4144 case TargetLowering::Legal:
4145 if (!TLI.isTypeLegal(NewInTy))
4146 break; // Can't use this datatype.
4147 // FALL THROUGH.
4148 case TargetLowering::Custom:
4149 OpToUse = ISD::UINT_TO_FP;
4150 break;
4151 }
4152 if (OpToUse) break;
4153
4154 // Otherwise, try a larger type.
4155 }
4156
4157 // Okay, we found the operation and type to use. Zero extend our input to the
4158 // desired type then run the operation on it.
4159 return DAG.getNode(OpToUse, DestVT,
4160 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4161 NewInTy, LegalOp));
4162}
4163
4164/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4165/// FP_TO_*INT operation of the specified operand when the target requests that
4166/// we promote it. At this point, we know that the result and operand types are
4167/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4168/// operation that returns a larger result.
4169SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4170 MVT::ValueType DestVT,
4171 bool isSigned) {
4172 // First step, figure out the appropriate FP_TO*INT operation to use.
4173 MVT::ValueType NewOutTy = DestVT;
4174
4175 unsigned OpToUse = 0;
4176
4177 // Scan for the appropriate larger type to use.
4178 while (1) {
4179 NewOutTy = (MVT::ValueType)(NewOutTy+1);
4180 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4181
4182 // If the target supports FP_TO_SINT returning this type, use it.
4183 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4184 default: break;
4185 case TargetLowering::Legal:
4186 if (!TLI.isTypeLegal(NewOutTy))
4187 break; // Can't use this datatype.
4188 // FALL THROUGH.
4189 case TargetLowering::Custom:
4190 OpToUse = ISD::FP_TO_SINT;
4191 break;
4192 }
4193 if (OpToUse) break;
4194
4195 // If the target supports FP_TO_UINT of this type, use it.
4196 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4197 default: break;
4198 case TargetLowering::Legal:
4199 if (!TLI.isTypeLegal(NewOutTy))
4200 break; // Can't use this datatype.
4201 // FALL THROUGH.
4202 case TargetLowering::Custom:
4203 OpToUse = ISD::FP_TO_UINT;
4204 break;
4205 }
4206 if (OpToUse) break;
4207
4208 // Otherwise, try a larger type.
4209 }
4210
4211 // Okay, we found the operation and type to use. Truncate the result of the
4212 // extended FP_TO_*INT operation to the desired size.
4213 return DAG.getNode(ISD::TRUNCATE, DestVT,
4214 DAG.getNode(OpToUse, NewOutTy, LegalOp));
4215}
4216
4217/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4218///
4219SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4220 MVT::ValueType VT = Op.getValueType();
4221 MVT::ValueType SHVT = TLI.getShiftAmountTy();
4222 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4223 switch (VT) {
4224 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4225 case MVT::i16:
4226 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4227 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4228 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4229 case MVT::i32:
4230 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4231 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4232 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4233 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4234 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4235 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4236 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4237 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4238 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4239 case MVT::i64:
4240 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4241 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4242 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4243 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4244 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4245 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4246 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4247 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4248 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4249 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4250 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4251 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4252 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4253 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4254 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4255 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4256 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4257 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4258 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4259 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4260 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4261 }
4262}
4263
4264/// ExpandBitCount - Expand the specified bitcount instruction into operations.
4265///
4266SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4267 switch (Opc) {
4268 default: assert(0 && "Cannot expand this yet!");
4269 case ISD::CTPOP: {
4270 static const uint64_t mask[6] = {
4271 0x5555555555555555ULL, 0x3333333333333333ULL,
4272 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4273 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4274 };
4275 MVT::ValueType VT = Op.getValueType();
4276 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4277 unsigned len = getSizeInBits(VT);
4278 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4279 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4280 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4281 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4282 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4283 DAG.getNode(ISD::AND, VT,
4284 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4285 }
4286 return Op;
4287 }
4288 case ISD::CTLZ: {
4289 // for now, we do this:
4290 // x = x | (x >> 1);
4291 // x = x | (x >> 2);
4292 // ...
4293 // x = x | (x >>16);
4294 // x = x | (x >>32); // for 64-bit input
4295 // return popcount(~x);
4296 //
4297 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4298 MVT::ValueType VT = Op.getValueType();
4299 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4300 unsigned len = getSizeInBits(VT);
4301 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4302 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4303 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4304 }
4305 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4306 return DAG.getNode(ISD::CTPOP, VT, Op);
4307 }
4308 case ISD::CTTZ: {
4309 // for now, we use: { return popcount(~x & (x - 1)); }
4310 // unless the target has ctlz but not ctpop, in which case we use:
4311 // { return 32 - nlz(~x & (x-1)); }
4312 // see also http://www.hackersdelight.org/HDcode/ntz.cc
4313 MVT::ValueType VT = Op.getValueType();
4314 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4315 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4316 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4317 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4318 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4319 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4320 TLI.isOperationLegal(ISD::CTLZ, VT))
4321 return DAG.getNode(ISD::SUB, VT,
4322 DAG.getConstant(getSizeInBits(VT), VT),
4323 DAG.getNode(ISD::CTLZ, VT, Tmp3));
4324 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4325 }
4326 }
4327}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004328
Chris Lattnerdc750592005-01-07 07:47:09 +00004329/// ExpandOp - Expand the specified SDOperand into its two component pieces
4330/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
4331/// LegalizeNodes map is filled in for any results that are not expanded, the
4332/// ExpandedNodes map is filled in for any results that are expanded, and the
4333/// Lo/Hi values are returned.
4334void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4335 MVT::ValueType VT = Op.getValueType();
Chris Lattner87a769c2005-01-16 01:11:45 +00004336 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattnerdc750592005-01-07 07:47:09 +00004337 SDNode *Node = Op.Val;
4338 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng4eee7242006-12-09 02:42:38 +00004339 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
4340 VT == MVT::Vector) &&
Chris Lattnerdc750592005-01-07 07:47:09 +00004341 "Cannot expand to FP value or to larger int value!");
4342
Chris Lattner1a570f12005-09-02 20:32:45 +00004343 // See if we already expanded it.
4344 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4345 = ExpandedNodes.find(Op);
4346 if (I != ExpandedNodes.end()) {
4347 Lo = I->second.first;
4348 Hi = I->second.second;
4349 return;
Chris Lattnerdc750592005-01-07 07:47:09 +00004350 }
4351
Chris Lattnerdc750592005-01-07 07:47:09 +00004352 switch (Node->getOpcode()) {
Chris Lattner44cab002006-01-21 04:27:00 +00004353 case ISD::CopyFromReg:
4354 assert(0 && "CopyFromReg must be legal!");
4355 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004356#ifndef NDEBUG
Bill Wendling22e978a2006-12-07 20:04:42 +00004357 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004358#endif
Chris Lattnerdc750592005-01-07 07:47:09 +00004359 assert(0 && "Do not know how to expand this operator!");
4360 abort();
Nate Begemancda9aa72005-04-01 22:34:39 +00004361 case ISD::UNDEF:
4362 Lo = DAG.getNode(ISD::UNDEF, NVT);
4363 Hi = DAG.getNode(ISD::UNDEF, NVT);
4364 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00004365 case ISD::Constant: {
4366 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4367 Lo = DAG.getConstant(Cst, NVT);
4368 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
4369 break;
4370 }
Chris Lattner32e08b72005-03-28 22:03:13 +00004371 case ISD::BUILD_PAIR:
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004372 // Return the operands.
4373 Lo = Node->getOperand(0);
4374 Hi = Node->getOperand(1);
Chris Lattner32e08b72005-03-28 22:03:13 +00004375 break;
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00004376
4377 case ISD::SIGN_EXTEND_INREG:
4378 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnerf5839a02006-10-06 17:34:12 +00004379 // sext_inreg the low part if needed.
4380 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
4381
4382 // The high part gets the sign extension from the lo-part. This handles
4383 // things like sextinreg V:i64 from i8.
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00004384 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4385 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
4386 TLI.getShiftAmountTy()));
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00004387 break;
Chris Lattner32e08b72005-03-28 22:03:13 +00004388
Nate Begeman2fba8a32006-01-14 03:14:10 +00004389 case ISD::BSWAP: {
4390 ExpandOp(Node->getOperand(0), Lo, Hi);
4391 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
4392 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
4393 Lo = TempLo;
4394 break;
4395 }
4396
Chris Lattner55e9cde2005-05-11 04:51:16 +00004397 case ISD::CTPOP:
4398 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner3740f392005-05-11 05:09:47 +00004399 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
4400 DAG.getNode(ISD::CTPOP, NVT, Lo),
4401 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattner55e9cde2005-05-11 04:51:16 +00004402 Hi = DAG.getConstant(0, NVT);
4403 break;
4404
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004405 case ISD::CTLZ: {
4406 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner0bfd1772005-05-12 19:27:51 +00004407 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004408 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4409 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattnerd47675e2005-08-09 20:20:18 +00004410 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
4411 ISD::SETNE);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004412 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
4413 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
4414
4415 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
4416 Hi = DAG.getConstant(0, NVT);
4417 break;
4418 }
4419
4420 case ISD::CTTZ: {
4421 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner0bfd1772005-05-12 19:27:51 +00004422 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004423 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4424 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattnerd47675e2005-08-09 20:20:18 +00004425 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
4426 ISD::SETNE);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004427 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
4428 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
4429
4430 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
4431 Hi = DAG.getConstant(0, NVT);
4432 break;
4433 }
Chris Lattner55e9cde2005-05-11 04:51:16 +00004434
Nate Begemane74795c2006-01-25 18:21:52 +00004435 case ISD::VAARG: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004436 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4437 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemane74795c2006-01-25 18:21:52 +00004438 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
4439 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
4440
4441 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004442 Hi = LegalizeOp(Hi);
Nate Begemane74795c2006-01-25 18:21:52 +00004443 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
4444 if (!TLI.isLittleEndian())
4445 std::swap(Lo, Hi);
4446 break;
4447 }
4448
Chris Lattnerdc750592005-01-07 07:47:09 +00004449 case ISD::LOAD: {
Evan Chenge71fe34d2006-10-09 20:57:25 +00004450 LoadSDNode *LD = cast<LoadSDNode>(Node);
4451 SDOperand Ch = LD->getChain(); // Legalize the chain.
4452 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
4453 ISD::LoadExtType ExtType = LD->getExtensionType();
Chris Lattnerdc750592005-01-07 07:47:09 +00004454
Evan Chenge71fe34d2006-10-09 20:57:25 +00004455 if (ExtType == ISD::NON_EXTLOAD) {
4456 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
Chris Lattner0d03eb42005-01-19 18:02:17 +00004457
Evan Chenge71fe34d2006-10-09 20:57:25 +00004458 // Increment the pointer to the other half.
4459 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
4460 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4461 getIntPtrConstant(IncrementSize));
4462 // FIXME: This creates a bogus srcvalue!
4463 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
Misha Brukman835702a2005-04-21 22:36:52 +00004464
Evan Chenge71fe34d2006-10-09 20:57:25 +00004465 // Build a factor node to remember that this load is independent of the
4466 // other one.
4467 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4468 Hi.getValue(1));
4469
4470 // Remember that we legalized the chain.
4471 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
4472 if (!TLI.isLittleEndian())
4473 std::swap(Lo, Hi);
4474 } else {
Evan Chengd35734b2006-10-11 07:10:22 +00004475 MVT::ValueType EVT = LD->getLoadedVT();
Evan Chenge71fe34d2006-10-09 20:57:25 +00004476
4477 if (EVT == NVT)
4478 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
4479 LD->getSrcValueOffset());
4480 else
4481 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
4482 LD->getSrcValueOffset(), EVT);
4483
4484 // Remember that we legalized the chain.
4485 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
4486
4487 if (ExtType == ISD::SEXTLOAD) {
4488 // The high part is obtained by SRA'ing all but one of the bits of the
4489 // lo part.
4490 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
4491 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4492 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
4493 } else if (ExtType == ISD::ZEXTLOAD) {
4494 // The high part is just a zero.
4495 Hi = DAG.getConstant(0, NVT);
4496 } else /* if (ExtType == ISD::EXTLOAD) */ {
4497 // The high part is undefined.
4498 Hi = DAG.getNode(ISD::UNDEF, NVT);
4499 }
4500 }
Chris Lattnerdc750592005-01-07 07:47:09 +00004501 break;
4502 }
Chris Lattnerdc750592005-01-07 07:47:09 +00004503 case ISD::AND:
4504 case ISD::OR:
4505 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
4506 SDOperand LL, LH, RL, RH;
4507 ExpandOp(Node->getOperand(0), LL, LH);
4508 ExpandOp(Node->getOperand(1), RL, RH);
4509 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
4510 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
4511 break;
4512 }
4513 case ISD::SELECT: {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004514 SDOperand LL, LH, RL, RH;
Chris Lattnerdc750592005-01-07 07:47:09 +00004515 ExpandOp(Node->getOperand(1), LL, LH);
4516 ExpandOp(Node->getOperand(2), RL, RH);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004517 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
4518 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattnerdc750592005-01-07 07:47:09 +00004519 break;
4520 }
Nate Begemane5b86d72005-08-10 20:51:12 +00004521 case ISD::SELECT_CC: {
4522 SDOperand TL, TH, FL, FH;
4523 ExpandOp(Node->getOperand(2), TL, TH);
4524 ExpandOp(Node->getOperand(3), FL, FH);
4525 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4526 Node->getOperand(1), TL, FL, Node->getOperand(4));
4527 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4528 Node->getOperand(1), TH, FH, Node->getOperand(4));
4529 break;
4530 }
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004531 case ISD::ANY_EXTEND:
4532 // The low part is any extension of the input (which degenerates to a copy).
4533 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
4534 // The high part is undefined.
4535 Hi = DAG.getNode(ISD::UNDEF, NVT);
4536 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00004537 case ISD::SIGN_EXTEND: {
4538 // The low part is just a sign extension of the input (which degenerates to
4539 // a copy).
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004540 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00004541
Chris Lattnerdc750592005-01-07 07:47:09 +00004542 // The high part is obtained by SRA'ing all but one of the bits of the lo
4543 // part.
Chris Lattner9864b082005-01-12 18:19:52 +00004544 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004545 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4546 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattnerdc750592005-01-07 07:47:09 +00004547 break;
4548 }
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004549 case ISD::ZERO_EXTEND:
Chris Lattnerdc750592005-01-07 07:47:09 +00004550 // The low part is just a zero extension of the input (which degenerates to
4551 // a copy).
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004552 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00004553
Chris Lattnerdc750592005-01-07 07:47:09 +00004554 // The high part is just a zero.
4555 Hi = DAG.getConstant(0, NVT);
4556 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00004557
4558 case ISD::BIT_CONVERT: {
Chris Lattnere4bbb6c2006-09-09 00:20:27 +00004559 SDOperand Tmp;
4560 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
4561 // If the target wants to, allow it to lower this itself.
4562 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4563 case Expand: assert(0 && "cannot expand FP!");
4564 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
4565 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
4566 }
4567 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
4568 }
4569
Evan Cheng4eee7242006-12-09 02:42:38 +00004570 MVT::ValueType NVT = Node->getValueType(0);
4571 // f32 / f64 must be expanded to i32 / i64.
4572 if (NVT == MVT::f32 || NVT == MVT::f64) {
4573 Lo = DAG.getNode(ISD::BIT_CONVERT, TLI.getTypeToTransformTo(NVT),
4574 Node->getOperand(0));
4575 Hi = DAG.getConstant(0, TLI.getTypeToTransformTo(NVT));
4576 break;
4577 }
4578
Chris Lattnere4bbb6c2006-09-09 00:20:27 +00004579 // Turn this into a load/store pair by default.
4580 if (Tmp.Val == 0)
Evan Cheng4eee7242006-12-09 02:42:38 +00004581 Tmp = ExpandBIT_CONVERT(NVT, Node->getOperand(0));
Chris Lattnere4bbb6c2006-09-09 00:20:27 +00004582
Chris Lattner36e663d2005-12-23 00:16:34 +00004583 ExpandOp(Tmp, Lo, Hi);
4584 break;
4585 }
Andrew Lenharth627cbd42005-11-20 21:32:07 +00004586
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004587 case ISD::READCYCLECOUNTER:
Chris Lattner44c28c22005-11-20 22:56:56 +00004588 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
4589 TargetLowering::Custom &&
4590 "Must custom expand ReadCycleCounter");
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004591 Lo = TLI.LowerOperation(Op, DAG);
4592 assert(Lo.Val && "Node must be custom expanded!");
4593 Hi = Lo.getValue(1);
Chris Lattner44c28c22005-11-20 22:56:56 +00004594 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004595 LegalizeOp(Lo.getValue(2)));
Andrew Lenharth627cbd42005-11-20 21:32:07 +00004596 break;
4597
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004598 // These operators cannot be expanded directly, emit them as calls to
4599 // library functions.
4600 case ISD::FP_TO_SINT:
Chris Lattnerfe68d752005-07-29 00:33:32 +00004601 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattner941d84a2005-07-30 01:40:57 +00004602 SDOperand Op;
4603 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4604 case Expand: assert(0 && "cannot expand FP!");
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004605 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4606 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattner941d84a2005-07-30 01:40:57 +00004607 }
Jeff Cohen546fd592005-07-30 18:33:25 +00004608
Chris Lattner941d84a2005-07-30 01:40:57 +00004609 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
4610
Chris Lattnerfe68d752005-07-29 00:33:32 +00004611 // Now that the custom expander is done, expand the result, which is still
4612 // VT.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00004613 if (Op.Val) {
4614 ExpandOp(Op, Lo, Hi);
4615 break;
4616 }
Chris Lattnerfe68d752005-07-29 00:33:32 +00004617 }
Jeff Cohen546fd592005-07-30 18:33:25 +00004618
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004619 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattneraac464e2005-01-21 06:05:23 +00004620 Lo = ExpandLibCall("__fixsfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004621 else
Chris Lattneraac464e2005-01-21 06:05:23 +00004622 Lo = ExpandLibCall("__fixdfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004623 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00004624
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004625 case ISD::FP_TO_UINT:
Chris Lattnerfe68d752005-07-29 00:33:32 +00004626 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004627 SDOperand Op;
4628 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4629 case Expand: assert(0 && "cannot expand FP!");
4630 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4631 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
4632 }
4633
4634 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
4635
4636 // Now that the custom expander is done, expand the result.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00004637 if (Op.Val) {
4638 ExpandOp(Op, Lo, Hi);
4639 break;
4640 }
Chris Lattnerfe68d752005-07-29 00:33:32 +00004641 }
Jeff Cohen546fd592005-07-30 18:33:25 +00004642
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004643 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattneraac464e2005-01-21 06:05:23 +00004644 Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004645 else
Chris Lattneraac464e2005-01-21 06:05:23 +00004646 Lo = ExpandLibCall("__fixunsdfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004647 break;
4648
Evan Cheng870e4f82006-01-09 18:31:59 +00004649 case ISD::SHL: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004650 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00004651 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004652 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004653 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004654 Op = TLI.LowerOperation(Op, DAG);
4655 if (Op.Val) {
4656 // Now that the custom expander is done, expand the result, which is
4657 // still VT.
4658 ExpandOp(Op, Lo, Hi);
4659 break;
4660 }
4661 }
4662
Chris Lattner72b503b2006-09-13 03:50:39 +00004663 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
4664 // this X << 1 as X+X.
4665 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
4666 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
4667 TLI.isOperationLegal(ISD::ADDE, NVT)) {
4668 SDOperand LoOps[2], HiOps[3];
4669 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
4670 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
4671 LoOps[1] = LoOps[0];
4672 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
4673
4674 HiOps[1] = HiOps[0];
4675 HiOps[2] = Lo.getValue(1);
4676 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
4677 break;
4678 }
4679 }
4680
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004681 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00004682 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004683 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00004684
4685 // If this target supports SHL_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00004686 TargetLowering::LegalizeAction Action =
4687 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
4688 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4689 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00004690 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00004691 break;
4692 }
4693
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004694 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00004695 Lo = ExpandLibCall("__ashldi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004696 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00004697 }
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004698
Evan Cheng870e4f82006-01-09 18:31:59 +00004699 case ISD::SRA: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004700 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00004701 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004702 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004703 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004704 Op = TLI.LowerOperation(Op, DAG);
4705 if (Op.Val) {
4706 // Now that the custom expander is done, expand the result, which is
4707 // still VT.
4708 ExpandOp(Op, Lo, Hi);
4709 break;
4710 }
4711 }
4712
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004713 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00004714 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004715 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00004716
4717 // If this target supports SRA_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00004718 TargetLowering::LegalizeAction Action =
4719 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
4720 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4721 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00004722 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00004723 break;
4724 }
4725
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004726 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00004727 Lo = ExpandLibCall("__ashrdi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004728 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00004729 }
4730
4731 case ISD::SRL: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004732 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00004733 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004734 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004735 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004736 Op = TLI.LowerOperation(Op, DAG);
4737 if (Op.Val) {
4738 // Now that the custom expander is done, expand the result, which is
4739 // still VT.
4740 ExpandOp(Op, Lo, Hi);
4741 break;
4742 }
4743 }
4744
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004745 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00004746 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004747 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00004748
4749 // If this target supports SRL_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00004750 TargetLowering::LegalizeAction Action =
4751 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
4752 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4753 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00004754 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00004755 break;
4756 }
4757
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004758 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00004759 Lo = ExpandLibCall("__lshrdi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004760 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00004761 }
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004762
Misha Brukman835702a2005-04-21 22:36:52 +00004763 case ISD::ADD:
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004764 case ISD::SUB: {
4765 // If the target wants to custom expand this, let them.
4766 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
4767 TargetLowering::Custom) {
4768 Op = TLI.LowerOperation(Op, DAG);
4769 if (Op.Val) {
4770 ExpandOp(Op, Lo, Hi);
4771 break;
4772 }
4773 }
4774
4775 // Expand the subcomponents.
4776 SDOperand LHSL, LHSH, RHSL, RHSH;
4777 ExpandOp(Node->getOperand(0), LHSL, LHSH);
4778 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner72b503b2006-09-13 03:50:39 +00004779 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
4780 SDOperand LoOps[2], HiOps[3];
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004781 LoOps[0] = LHSL;
4782 LoOps[1] = RHSL;
4783 HiOps[0] = LHSH;
4784 HiOps[1] = RHSH;
Nate Begeman5965bd12006-02-17 05:43:56 +00004785 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner72b503b2006-09-13 03:50:39 +00004786 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004787 HiOps[2] = Lo.getValue(1);
Chris Lattner72b503b2006-09-13 03:50:39 +00004788 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman5965bd12006-02-17 05:43:56 +00004789 } else {
Chris Lattner72b503b2006-09-13 03:50:39 +00004790 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004791 HiOps[2] = Lo.getValue(1);
Chris Lattner72b503b2006-09-13 03:50:39 +00004792 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman5965bd12006-02-17 05:43:56 +00004793 }
Chris Lattnerb3f83b282005-01-20 18:52:28 +00004794 break;
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004795 }
Nate Begemanadd0c632005-04-11 03:01:51 +00004796 case ISD::MUL: {
Chris Lattnerfbadbda2006-09-16 00:09:24 +00004797 // If the target wants to custom expand this, let them.
4798 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattnere50f5d12006-09-16 05:08:34 +00004799 SDOperand New = TLI.LowerOperation(Op, DAG);
4800 if (New.Val) {
4801 ExpandOp(New, Lo, Hi);
Chris Lattnerfbadbda2006-09-16 00:09:24 +00004802 break;
4803 }
4804 }
4805
Evan Chenge93762d2006-09-01 18:17:58 +00004806 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
4807 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Evan Chenge93762d2006-09-01 18:17:58 +00004808 if (HasMULHS || HasMULHU) {
Nate Begemanadd0c632005-04-11 03:01:51 +00004809 SDOperand LL, LH, RL, RH;
4810 ExpandOp(Node->getOperand(0), LL, LH);
4811 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman43144a22005-08-30 02:44:00 +00004812 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
Nate Begeman8e20c762006-12-11 02:23:46 +00004813 // FIXME: Move this to the dag combiner.
Nate Begeman43144a22005-08-30 02:44:00 +00004814 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
4815 // extended the sign bit of the low half through the upper half, and if so
4816 // emit a MULHS instead of the alternate sequence that is valid for any
4817 // i64 x i64 multiply.
Evan Chenge93762d2006-09-01 18:17:58 +00004818 if (HasMULHS &&
Nate Begeman43144a22005-08-30 02:44:00 +00004819 // is RH an extension of the sign bit of RL?
4820 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
4821 RH.getOperand(1).getOpcode() == ISD::Constant &&
4822 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
4823 // is LH an extension of the sign bit of LL?
4824 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
4825 LH.getOperand(1).getOpcode() == ISD::Constant &&
4826 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
Chris Lattner1b633912006-09-16 00:21:44 +00004827 // Low part:
4828 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4829 // High part:
Nate Begeman43144a22005-08-30 02:44:00 +00004830 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
Chris Lattner1b633912006-09-16 00:21:44 +00004831 break;
Evan Chenge93762d2006-09-01 18:17:58 +00004832 } else if (HasMULHU) {
Chris Lattner1b633912006-09-16 00:21:44 +00004833 // Low part:
4834 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4835
4836 // High part:
Nate Begeman43144a22005-08-30 02:44:00 +00004837 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
4838 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
4839 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
4840 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
4841 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattner1b633912006-09-16 00:21:44 +00004842 break;
Nate Begeman43144a22005-08-30 02:44:00 +00004843 }
Nate Begemanadd0c632005-04-11 03:01:51 +00004844 }
Evan Chenge93762d2006-09-01 18:17:58 +00004845
Chris Lattner1b633912006-09-16 00:21:44 +00004846 Lo = ExpandLibCall("__muldi3" , Node, Hi);
Nate Begemanadd0c632005-04-11 03:01:51 +00004847 break;
4848 }
Chris Lattneraac464e2005-01-21 06:05:23 +00004849 case ISD::SDIV: Lo = ExpandLibCall("__divdi3" , Node, Hi); break;
4850 case ISD::UDIV: Lo = ExpandLibCall("__udivdi3", Node, Hi); break;
4851 case ISD::SREM: Lo = ExpandLibCall("__moddi3" , Node, Hi); break;
4852 case ISD::UREM: Lo = ExpandLibCall("__umoddi3", Node, Hi); break;
Evan Cheng4eee7242006-12-09 02:42:38 +00004853
4854 case ISD::FADD:
4855 Lo = ExpandLibCall(((VT == MVT::f32) ? "__addsf3" : "__adddf3"), Node, Hi);
4856 break;
4857 case ISD::FSUB:
4858 Lo = ExpandLibCall(((VT == MVT::f32) ? "__subsf3" : "__subdf3"), Node, Hi);
4859 break;
4860 case ISD::FMUL:
4861 Lo = ExpandLibCall(((VT == MVT::f32) ? "__mulsf3" : "__muldf3"), Node, Hi);
4862 break;
4863 case ISD::FDIV:
4864 Lo = ExpandLibCall(((VT == MVT::f32) ? "__divsf3" : "__divdf3"), Node, Hi);
4865 break;
4866 case ISD::FP_EXTEND:
4867 Lo = ExpandLibCall("__extendsfdf2", Node, Hi);
4868 break;
4869 case ISD::FP_ROUND:
4870 Lo = ExpandLibCall("__truncdfsf2", Node, Hi);
4871 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00004872 }
4873
Chris Lattnerac12f682005-12-21 18:02:52 +00004874 // Make sure the resultant values have been legalized themselves, unless this
4875 // is a type that requires multi-step expansion.
4876 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
4877 Lo = LegalizeOp(Lo);
4878 Hi = LegalizeOp(Hi);
4879 }
Evan Cheng870e4f82006-01-09 18:31:59 +00004880
4881 // Remember in a map if the values will be reused later.
4882 bool isNew =
4883 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4884 assert(isNew && "Value already expanded?!?");
Chris Lattnerdc750592005-01-07 07:47:09 +00004885}
4886
Chris Lattner32206f52006-03-18 01:44:44 +00004887/// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
4888/// two smaller values of MVT::Vector type.
4889void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
4890 SDOperand &Hi) {
4891 assert(Op.getValueType() == MVT::Vector && "Cannot split non-vector type!");
4892 SDNode *Node = Op.Val;
4893 unsigned NumElements = cast<ConstantSDNode>(*(Node->op_end()-2))->getValue();
4894 assert(NumElements > 1 && "Cannot split a single element vector!");
4895 unsigned NewNumElts = NumElements/2;
4896 SDOperand NewNumEltsNode = DAG.getConstant(NewNumElts, MVT::i32);
4897 SDOperand TypeNode = *(Node->op_end()-1);
4898
4899 // See if we already split it.
4900 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4901 = SplitNodes.find(Op);
4902 if (I != SplitNodes.end()) {
4903 Lo = I->second.first;
4904 Hi = I->second.second;
4905 return;
4906 }
4907
4908 switch (Node->getOpcode()) {
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004909 default:
4910#ifndef NDEBUG
4911 Node->dump();
4912#endif
4913 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerf4e1a532006-03-19 00:52:58 +00004914 case ISD::VBUILD_VECTOR: {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004915 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
4916 Node->op_begin()+NewNumElts);
Chris Lattner32206f52006-03-18 01:44:44 +00004917 LoOps.push_back(NewNumEltsNode);
4918 LoOps.push_back(TypeNode);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004919 Lo = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &LoOps[0], LoOps.size());
Chris Lattner32206f52006-03-18 01:44:44 +00004920
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004921 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts,
4922 Node->op_end()-2);
Chris Lattner32206f52006-03-18 01:44:44 +00004923 HiOps.push_back(NewNumEltsNode);
4924 HiOps.push_back(TypeNode);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004925 Hi = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &HiOps[0], HiOps.size());
Chris Lattner32206f52006-03-18 01:44:44 +00004926 break;
4927 }
4928 case ISD::VADD:
4929 case ISD::VSUB:
4930 case ISD::VMUL:
4931 case ISD::VSDIV:
4932 case ISD::VUDIV:
4933 case ISD::VAND:
4934 case ISD::VOR:
4935 case ISD::VXOR: {
4936 SDOperand LL, LH, RL, RH;
4937 SplitVectorOp(Node->getOperand(0), LL, LH);
4938 SplitVectorOp(Node->getOperand(1), RL, RH);
4939
4940 Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, LL, RL,
4941 NewNumEltsNode, TypeNode);
4942 Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, LH, RH,
4943 NewNumEltsNode, TypeNode);
4944 break;
4945 }
4946 case ISD::VLOAD: {
4947 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4948 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
4949 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4950
4951 Lo = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4952 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(EVT)/8;
4953 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4954 getIntPtrConstant(IncrementSize));
4955 // FIXME: This creates a bogus srcvalue!
4956 Hi = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4957
4958 // Build a factor node to remember that this load is independent of the
4959 // other one.
4960 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4961 Hi.getValue(1));
4962
4963 // Remember that we legalized the chain.
4964 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattner32206f52006-03-18 01:44:44 +00004965 break;
4966 }
Chris Lattnerd7c4e7d2006-03-23 21:16:34 +00004967 case ISD::VBIT_CONVERT: {
4968 // We know the result is a vector. The input may be either a vector or a
4969 // scalar value.
4970 if (Op.getOperand(0).getValueType() != MVT::Vector) {
4971 // Lower to a store/load. FIXME: this could be improved probably.
4972 SDOperand Ptr = CreateStackTemporary(Op.getOperand(0).getValueType());
4973
Evan Chengdf9ac472006-10-05 23:01:46 +00004974 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Evan Chengab51cf22006-10-13 21:14:26 +00004975 Op.getOperand(0), Ptr, NULL, 0);
Chris Lattnerd7c4e7d2006-03-23 21:16:34 +00004976 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4977 St = DAG.getVecLoad(NumElements, EVT, St, Ptr, DAG.getSrcValue(0));
4978 SplitVectorOp(St, Lo, Hi);
4979 } else {
4980 // If the input is a vector type, we have to either scalarize it, pack it
4981 // or convert it based on whether the input vector type is legal.
4982 SDNode *InVal = Node->getOperand(0).Val;
4983 unsigned NumElems =
4984 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
4985 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
4986
4987 // If the input is from a single element vector, scalarize the vector,
4988 // then treat like a scalar.
4989 if (NumElems == 1) {
4990 SDOperand Scalar = PackVectorOp(Op.getOperand(0), EVT);
4991 Scalar = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Scalar,
4992 Op.getOperand(1), Op.getOperand(2));
4993 SplitVectorOp(Scalar, Lo, Hi);
4994 } else {
4995 // Split the input vector.
4996 SplitVectorOp(Op.getOperand(0), Lo, Hi);
4997
4998 // Convert each of the pieces now.
4999 Lo = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Lo,
5000 NewNumEltsNode, TypeNode);
5001 Hi = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Hi,
5002 NewNumEltsNode, TypeNode);
5003 }
5004 break;
5005 }
5006 }
Chris Lattner32206f52006-03-18 01:44:44 +00005007 }
5008
5009 // Remember in a map if the values will be reused later.
5010 bool isNew =
5011 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
5012 assert(isNew && "Value already expanded?!?");
5013}
5014
5015
5016/// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
5017/// equivalent operation that returns a scalar (e.g. F32) or packed value
5018/// (e.g. MVT::V4F32). When this is called, we know that PackedVT is the right
5019/// type for the result.
5020SDOperand SelectionDAGLegalize::PackVectorOp(SDOperand Op,
5021 MVT::ValueType NewVT) {
5022 assert(Op.getValueType() == MVT::Vector && "Bad PackVectorOp invocation!");
5023 SDNode *Node = Op.Val;
5024
5025 // See if we already packed it.
5026 std::map<SDOperand, SDOperand>::iterator I = PackedNodes.find(Op);
5027 if (I != PackedNodes.end()) return I->second;
5028
5029 SDOperand Result;
5030 switch (Node->getOpcode()) {
Chris Lattner29b23012006-03-19 01:17:20 +00005031 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00005032#ifndef NDEBUG
Bill Wendling22e978a2006-12-07 20:04:42 +00005033 Node->dump(); cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00005034#endif
Chris Lattner29b23012006-03-19 01:17:20 +00005035 assert(0 && "Unknown vector operation in PackVectorOp!");
Chris Lattner32206f52006-03-18 01:44:44 +00005036 case ISD::VADD:
5037 case ISD::VSUB:
5038 case ISD::VMUL:
5039 case ISD::VSDIV:
5040 case ISD::VUDIV:
5041 case ISD::VAND:
5042 case ISD::VOR:
5043 case ISD::VXOR:
5044 Result = DAG.getNode(getScalarizedOpcode(Node->getOpcode(), NewVT),
5045 NewVT,
5046 PackVectorOp(Node->getOperand(0), NewVT),
5047 PackVectorOp(Node->getOperand(1), NewVT));
5048 break;
5049 case ISD::VLOAD: {
Chris Lattner93640542006-03-19 00:07:49 +00005050 SDOperand Ch = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
5051 SDOperand Ptr = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattner32206f52006-03-18 01:44:44 +00005052
Evan Chenge71fe34d2006-10-09 20:57:25 +00005053 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
5054 Result = DAG.getLoad(NewVT, Ch, Ptr, SV->getValue(), SV->getOffset());
Chris Lattner32206f52006-03-18 01:44:44 +00005055
5056 // Remember that we legalized the chain.
5057 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
5058 break;
5059 }
Chris Lattnerf4e1a532006-03-19 00:52:58 +00005060 case ISD::VBUILD_VECTOR:
Chris Lattner5fe1f542006-03-31 02:06:56 +00005061 if (Node->getOperand(0).getValueType() == NewVT) {
Chris Lattnerf4e1a532006-03-19 00:52:58 +00005062 // Returning a scalar?
Chris Lattner32206f52006-03-18 01:44:44 +00005063 Result = Node->getOperand(0);
5064 } else {
Chris Lattnerf4e1a532006-03-19 00:52:58 +00005065 // Returning a BUILD_VECTOR?
Chris Lattnere1401e32006-04-08 05:34:25 +00005066
5067 // If all elements of the build_vector are undefs, return an undef.
5068 bool AllUndef = true;
5069 for (unsigned i = 0, e = Node->getNumOperands()-2; i != e; ++i)
5070 if (Node->getOperand(i).getOpcode() != ISD::UNDEF) {
5071 AllUndef = false;
5072 break;
5073 }
5074 if (AllUndef) {
5075 Result = DAG.getNode(ISD::UNDEF, NewVT);
5076 } else {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00005077 Result = DAG.getNode(ISD::BUILD_VECTOR, NewVT, Node->op_begin(),
5078 Node->getNumOperands()-2);
Chris Lattnere1401e32006-04-08 05:34:25 +00005079 }
Chris Lattner32206f52006-03-18 01:44:44 +00005080 }
5081 break;
Chris Lattner29b23012006-03-19 01:17:20 +00005082 case ISD::VINSERT_VECTOR_ELT:
5083 if (!MVT::isVector(NewVT)) {
5084 // Returning a scalar? Must be the inserted element.
5085 Result = Node->getOperand(1);
5086 } else {
5087 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT,
5088 PackVectorOp(Node->getOperand(0), NewVT),
5089 Node->getOperand(1), Node->getOperand(2));
5090 }
5091 break;
Chris Lattnerf6f94d32006-03-28 20:24:43 +00005092 case ISD::VVECTOR_SHUFFLE:
5093 if (!MVT::isVector(NewVT)) {
5094 // Returning a scalar? Figure out if it is the LHS or RHS and return it.
5095 SDOperand EltNum = Node->getOperand(2).getOperand(0);
5096 if (cast<ConstantSDNode>(EltNum)->getValue())
5097 Result = PackVectorOp(Node->getOperand(1), NewVT);
5098 else
5099 Result = PackVectorOp(Node->getOperand(0), NewVT);
5100 } else {
5101 // Otherwise, return a VECTOR_SHUFFLE node. First convert the index
5102 // vector from a VBUILD_VECTOR to a BUILD_VECTOR.
5103 std::vector<SDOperand> BuildVecIdx(Node->getOperand(2).Val->op_begin(),
5104 Node->getOperand(2).Val->op_end()-2);
5105 MVT::ValueType BVT = MVT::getIntVectorWithNumElements(BuildVecIdx.size());
Chris Lattnerc24a1d32006-08-08 02:23:42 +00005106 SDOperand BV = DAG.getNode(ISD::BUILD_VECTOR, BVT,
5107 Node->getOperand(2).Val->op_begin(),
5108 Node->getOperand(2).Val->getNumOperands()-2);
Chris Lattnerf6f94d32006-03-28 20:24:43 +00005109
5110 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT,
5111 PackVectorOp(Node->getOperand(0), NewVT),
5112 PackVectorOp(Node->getOperand(1), NewVT), BV);
5113 }
5114 break;
Chris Lattner2f4119a2006-03-22 20:09:35 +00005115 case ISD::VBIT_CONVERT:
5116 if (Op.getOperand(0).getValueType() != MVT::Vector)
5117 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
5118 else {
5119 // If the input is a vector type, we have to either scalarize it, pack it
5120 // or convert it based on whether the input vector type is legal.
5121 SDNode *InVal = Node->getOperand(0).Val;
5122 unsigned NumElems =
5123 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5124 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5125
5126 // Figure out if there is a Packed type corresponding to this Vector
5127 // type. If so, convert to the packed type.
5128 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
5129 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
5130 // Turn this into a bit convert of the packed input.
5131 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5132 PackVectorOp(Node->getOperand(0), TVT));
5133 break;
5134 } else if (NumElems == 1) {
5135 // Turn this into a bit convert of the scalar input.
5136 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5137 PackVectorOp(Node->getOperand(0), EVT));
5138 break;
5139 } else {
5140 // FIXME: UNIMP!
5141 assert(0 && "Cast from unsupported vector type not implemented yet!");
5142 }
5143 }
Evan Chengcb73b8d2006-04-10 18:54:36 +00005144 break;
Chris Lattner02274a52006-04-08 22:22:57 +00005145 case ISD::VSELECT:
5146 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
5147 PackVectorOp(Op.getOperand(1), NewVT),
5148 PackVectorOp(Op.getOperand(2), NewVT));
5149 break;
Chris Lattner32206f52006-03-18 01:44:44 +00005150 }
5151
5152 if (TLI.isTypeLegal(NewVT))
5153 Result = LegalizeOp(Result);
5154 bool isNew = PackedNodes.insert(std::make_pair(Op, Result)).second;
5155 assert(isNew && "Value already packed?");
5156 return Result;
5157}
5158
Chris Lattnerdc750592005-01-07 07:47:09 +00005159
5160// SelectionDAG::Legalize - This is the entry point for the file.
5161//
Chris Lattner4add7e32005-01-23 04:42:50 +00005162void SelectionDAG::Legalize() {
Chris Lattneref598052006-04-02 03:07:27 +00005163 if (ViewLegalizeDAGs) viewGraph();
5164
Chris Lattnerdc750592005-01-07 07:47:09 +00005165 /// run - This is the main entry point to this class.
5166 ///
Chris Lattner9dcce6d2006-01-28 07:39:30 +00005167 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattnerdc750592005-01-07 07:47:09 +00005168}
5169