blob: 1c0be0ba52da25aa98e8d692b98ca4de07498c56 [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"
Chris Lattnerdc750592005-01-07 07:47:09 +000027#include <iostream>
Evan Cheng1d2e9952006-03-24 01:17:21 +000028#include <map>
Chris Lattnerdc750592005-01-07 07:47:09 +000029using namespace llvm;
30
Chris Lattneref598052006-04-02 03:07:27 +000031#ifndef NDEBUG
32static cl::opt<bool>
33ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
34 cl::desc("Pop up a window to show dags before legalize"));
35#else
36static const bool ViewLegalizeDAGs = 0;
37#endif
38
Chris Lattnerdc750592005-01-07 07:47:09 +000039//===----------------------------------------------------------------------===//
40/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
41/// hacks on it until the target machine can handle it. This involves
42/// eliminating value sizes the machine cannot handle (promoting small sizes to
43/// large sizes or splitting up large values into small values) as well as
44/// eliminating operations the machine cannot handle.
45///
46/// This code also does a small amount of optimization and recognition of idioms
47/// as part of its processing. For example, if a target does not support a
48/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
49/// will attempt merge setcc and brc instructions into brcc's.
50///
51namespace {
Chris Lattner54a34cd2006-06-28 21:58:30 +000052class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattnerdc750592005-01-07 07:47:09 +000053 TargetLowering &TLI;
54 SelectionDAG &DAG;
55
Chris Lattner462505f2006-02-13 09:18:02 +000056 // Libcall insertion helpers.
57
58 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
59 /// legalized. We use this to ensure that calls are properly serialized
60 /// against each other, including inserted libcalls.
61 SDOperand LastCALLSEQ_END;
62
63 /// IsLegalizingCall - This member is used *only* for purposes of providing
64 /// helpful assertions that a libcall isn't created while another call is
65 /// being legalized (which could lead to non-serialized call sequences).
66 bool IsLegalizingCall;
67
Chris Lattnerdc750592005-01-07 07:47:09 +000068 enum LegalizeAction {
Chris Lattner2c748af2006-01-29 08:42:06 +000069 Legal, // The target natively supports this operation.
70 Promote, // This operation should be executed in a larger type.
Chris Lattneraa2372562006-05-24 17:04:05 +000071 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattnerdc750592005-01-07 07:47:09 +000072 };
Chris Lattner462505f2006-02-13 09:18:02 +000073
Chris Lattnerdc750592005-01-07 07:47:09 +000074 /// ValueTypeActions - This is a bitvector that contains two bits for each
75 /// value type, where the two bits correspond to the LegalizeAction enum.
76 /// This can be queried with "getTypeAction(VT)".
Chris Lattner2c748af2006-01-29 08:42:06 +000077 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattnerdc750592005-01-07 07:47:09 +000078
Chris Lattnerdc750592005-01-07 07:47:09 +000079 /// LegalizedNodes - For nodes that are of legal width, and that have more
80 /// than one use, this map indicates what regularized operand to use. This
81 /// allows us to avoid legalizing the same thing more than once.
82 std::map<SDOperand, SDOperand> LegalizedNodes;
83
Chris Lattner1f2c9d82005-01-15 05:21:40 +000084 /// PromotedNodes - For nodes that are below legal width, and that have more
85 /// than one use, this map indicates what promoted value to use. This allows
86 /// us to avoid promoting the same thing more than once.
87 std::map<SDOperand, SDOperand> PromotedNodes;
88
Chris Lattner32206f52006-03-18 01:44:44 +000089 /// ExpandedNodes - For nodes that need to be expanded this map indicates
90 /// which which operands are the expanded version of the input. This allows
91 /// us to avoid expanding the same node more than once.
Chris Lattnerdc750592005-01-07 07:47:09 +000092 std::map<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
93
Chris Lattner32206f52006-03-18 01:44:44 +000094 /// SplitNodes - For vector nodes that need to be split, this map indicates
95 /// which which operands are the split version of the input. This allows us
96 /// to avoid splitting the same node more than once.
97 std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
98
99 /// PackedNodes - For nodes that need to be packed from MVT::Vector types to
100 /// concrete packed types, this contains the mapping of ones we have already
101 /// processed to the result.
102 std::map<SDOperand, SDOperand> PackedNodes;
103
Chris Lattnerea4ca942005-01-07 22:28:47 +0000104 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner2af3ee42005-12-20 00:53:54 +0000105 LegalizedNodes.insert(std::make_pair(From, To));
106 // If someone requests legalization of the new node, return itself.
107 if (From != To)
108 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattnerea4ca942005-01-07 22:28:47 +0000109 }
Chris Lattner1f2c9d82005-01-15 05:21:40 +0000110 void AddPromotedOperand(SDOperand From, SDOperand To) {
111 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
112 assert(isNew && "Got into the map somehow?");
Chris Lattner2af3ee42005-12-20 00:53:54 +0000113 // If someone requests legalization of the new node, return itself.
114 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner1f2c9d82005-01-15 05:21:40 +0000115 }
Chris Lattnerea4ca942005-01-07 22:28:47 +0000116
Chris Lattnerdc750592005-01-07 07:47:09 +0000117public:
118
Chris Lattner4add7e32005-01-23 04:42:50 +0000119 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattnerdc750592005-01-07 07:47:09 +0000120
Chris Lattnerdc750592005-01-07 07:47:09 +0000121 /// getTypeAction - Return how we should legalize values of this type, either
122 /// it is already legal or we need to expand it into multiple registers of
123 /// smaller integer type, or we need to promote it to a larger type.
124 LegalizeAction getTypeAction(MVT::ValueType VT) const {
Chris Lattner2c748af2006-01-29 08:42:06 +0000125 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattnerdc750592005-01-07 07:47:09 +0000126 }
127
128 /// isTypeLegal - Return true if this type is legal on this target.
129 ///
130 bool isTypeLegal(MVT::ValueType VT) const {
131 return getTypeAction(VT) == Legal;
132 }
133
Chris Lattnerdc750592005-01-07 07:47:09 +0000134 void LegalizeDAG();
135
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000136private:
Chris Lattner32206f52006-03-18 01:44:44 +0000137 /// HandleOp - Legalize, Promote, Expand or Pack the specified operand as
138 /// appropriate for its type.
139 void HandleOp(SDOperand Op);
140
141 /// LegalizeOp - We know that the specified value has a legal type.
142 /// Recursively ensure that the operands have legal types, then return the
143 /// result.
Chris Lattnerdc750592005-01-07 07:47:09 +0000144 SDOperand LegalizeOp(SDOperand O);
Chris Lattner32206f52006-03-18 01:44:44 +0000145
146 /// PromoteOp - Given an operation that produces a value in an invalid type,
147 /// promote it to compute the value into a larger type. The produced value
148 /// will have the correct bits for the low portion of the register, but no
149 /// guarantee is made about the top bits: it may be zero, sign-extended, or
150 /// garbage.
Chris Lattner1f2c9d82005-01-15 05:21:40 +0000151 SDOperand PromoteOp(SDOperand O);
Chris Lattnerdc750592005-01-07 07:47:09 +0000152
Chris Lattner32206f52006-03-18 01:44:44 +0000153 /// ExpandOp - Expand the specified SDOperand into its two component pieces
154 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
155 /// the LegalizeNodes map is filled in for any results that are not expanded,
156 /// the ExpandedNodes map is filled in for any results that are expanded, and
157 /// the Lo/Hi values are returned. This applies to integer types and Vector
158 /// types.
159 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
160
161 /// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
162 /// two smaller values of MVT::Vector type.
163 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
164
165 /// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
166 /// equivalent operation that returns a packed value (e.g. MVT::V4F32). When
167 /// this is called, we know that PackedVT is the right type for the result and
168 /// we know that this type is legal for the target.
169 SDOperand PackVectorOp(SDOperand O, MVT::ValueType PackedVT);
170
Chris Lattner6be79822006-04-04 17:23:26 +0000171 /// isShuffleLegal - Return true if a vector shuffle is legal with the
172 /// specified mask and type. Targets can specify exactly which masks they
173 /// support and the code generator is tasked with not creating illegal masks.
174 ///
175 /// Note that this will also return true for shuffles that are promoted to a
176 /// different type.
177 ///
178 /// If this is a legal shuffle, this method returns the (possibly promoted)
179 /// build_vector Mask. If it's not a legal shuffle, it returns null.
180 SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const;
181
Chris Lattner4488f0c2006-07-26 23:55:56 +0000182 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
183 std::set<SDNode*> &NodesLeadingTo);
Chris Lattner462505f2006-02-13 09:18:02 +0000184
Nate Begeman7e7f4392006-02-01 07:19:44 +0000185 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
186
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000187 SDOperand CreateStackTemporary(MVT::ValueType VT);
188
Chris Lattneraac464e2005-01-21 06:05:23 +0000189 SDOperand ExpandLibCall(const char *Name, SDNode *Node,
190 SDOperand &Hi);
191 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
192 SDOperand Source);
Chris Lattnere3e847b2005-07-16 00:19:57 +0000193
Chris Lattner36e663d2005-12-23 00:16:34 +0000194 SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000195 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner6be79822006-04-04 17:23:26 +0000196 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskeyf2516a92005-08-17 00:39:29 +0000197 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
198 SDOperand LegalOp,
199 MVT::ValueType DestVT);
Nate Begeman7e74c832005-07-16 02:02:34 +0000200 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
201 bool isSigned);
Chris Lattner44fe26f2005-07-29 00:11:56 +0000202 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
203 bool isSigned);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000204
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000205 SDOperand ExpandBSWAP(SDOperand Op);
206 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattner2a7f8a92005-01-19 04:19:40 +0000207 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
208 SDOperand &Lo, SDOperand &Hi);
Chris Lattner4157c412005-04-02 04:00:59 +0000209 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
210 SDOperand &Lo, SDOperand &Hi);
Chris Lattnera5bf1032005-05-12 04:49:08 +0000211
Chris Lattner6f423252006-03-31 17:55:51 +0000212 SDOperand LowerVEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner42a5fca2006-04-02 05:06:04 +0000213 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner6f423252006-03-31 17:55:51 +0000214
Chris Lattnerdc750592005-01-07 07:47:09 +0000215 SDOperand getIntPtrConstant(uint64_t Val) {
216 return DAG.getConstant(Val, TLI.getPointerTy());
217 }
218};
219}
220
Chris Lattner6be79822006-04-04 17:23:26 +0000221/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
222/// specified mask and type. Targets can specify exactly which masks they
223/// support and the code generator is tasked with not creating illegal masks.
224///
225/// Note that this will also return true for shuffles that are promoted to a
226/// different type.
227SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT,
228 SDOperand Mask) const {
229 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
230 default: return 0;
231 case TargetLowering::Legal:
232 case TargetLowering::Custom:
233 break;
234 case TargetLowering::Promote: {
235 // If this is promoted to a different type, convert the shuffle mask and
236 // ask if it is legal in the promoted type!
237 MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
238
239 // If we changed # elements, change the shuffle mask.
240 unsigned NumEltsGrowth =
241 MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
242 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
243 if (NumEltsGrowth > 1) {
244 // Renumber the elements.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000245 SmallVector<SDOperand, 8> Ops;
Chris Lattner6be79822006-04-04 17:23:26 +0000246 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
247 SDOperand InOp = Mask.getOperand(i);
248 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
249 if (InOp.getOpcode() == ISD::UNDEF)
250 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
251 else {
252 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
253 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
254 }
255 }
256 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000257 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner6be79822006-04-04 17:23:26 +0000258 }
259 VT = NVT;
260 break;
261 }
262 }
263 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
264}
265
Chris Lattner32206f52006-03-18 01:44:44 +0000266/// getScalarizedOpcode - Return the scalar opcode that corresponds to the
267/// specified vector opcode.
Chris Lattner301015a2005-11-19 05:51:46 +0000268static unsigned getScalarizedOpcode(unsigned VecOp, MVT::ValueType VT) {
Nate Begemanb2e089c2005-11-19 00:36:38 +0000269 switch (VecOp) {
270 default: assert(0 && "Don't know how to scalarize this opcode!");
Evan Cheng3bf916d2006-03-03 07:01:07 +0000271 case ISD::VADD: return MVT::isInteger(VT) ? ISD::ADD : ISD::FADD;
272 case ISD::VSUB: return MVT::isInteger(VT) ? ISD::SUB : ISD::FSUB;
273 case ISD::VMUL: return MVT::isInteger(VT) ? ISD::MUL : ISD::FMUL;
274 case ISD::VSDIV: return MVT::isInteger(VT) ? ISD::SDIV: ISD::FDIV;
275 case ISD::VUDIV: return MVT::isInteger(VT) ? ISD::UDIV: ISD::FDIV;
276 case ISD::VAND: return MVT::isInteger(VT) ? ISD::AND : 0;
277 case ISD::VOR: return MVT::isInteger(VT) ? ISD::OR : 0;
278 case ISD::VXOR: return MVT::isInteger(VT) ? ISD::XOR : 0;
Nate Begemanb2e089c2005-11-19 00:36:38 +0000279 }
280}
Chris Lattnerdc750592005-01-07 07:47:09 +0000281
Chris Lattner4add7e32005-01-23 04:42:50 +0000282SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
283 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
284 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman89b049a2005-11-29 05:45:29 +0000285 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattnerdc750592005-01-07 07:47:09 +0000286 "Too many value types for ValueTypeActions to hold!");
Chris Lattnerdc750592005-01-07 07:47:09 +0000287}
288
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000289/// ComputeTopDownOrdering - Add the specified node to the Order list if it has
290/// not been visited yet and if all of its operands have already been visited.
291static void ComputeTopDownOrdering(SDNode *N, std::vector<SDNode*> &Order,
292 std::map<SDNode*, unsigned> &Visited) {
293 if (++Visited[N] != N->getNumOperands())
294 return; // Haven't visited all operands yet
295
296 Order.push_back(N);
297
298 if (N->hasOneUse()) { // Tail recurse in common case.
299 ComputeTopDownOrdering(*N->use_begin(), Order, Visited);
300 return;
301 }
302
303 // Now that we have N in, add anything that uses it if all of their operands
304 // are now done.
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000305 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end(); UI != E;++UI)
306 ComputeTopDownOrdering(*UI, Order, Visited);
307}
308
Chris Lattner44fe26f2005-07-29 00:11:56 +0000309
Chris Lattnerdc750592005-01-07 07:47:09 +0000310void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner462505f2006-02-13 09:18:02 +0000311 LastCALLSEQ_END = DAG.getEntryNode();
312 IsLegalizingCall = false;
313
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000314 // The legalize process is inherently a bottom-up recursive process (users
315 // legalize their uses before themselves). Given infinite stack space, we
316 // could just start legalizing on the root and traverse the whole graph. In
317 // practice however, this causes us to run out of stack space on large basic
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000318 // blocks. To avoid this problem, compute an ordering of the nodes where each
319 // node is only legalized after all of its operands are legalized.
320 std::map<SDNode*, unsigned> Visited;
321 std::vector<SDNode*> Order;
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000322
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000323 // Compute ordering from all of the leaves in the graphs, those (like the
324 // entry node) that have no operands.
325 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
326 E = DAG.allnodes_end(); I != E; ++I) {
Chris Lattnerbf4f23322005-11-09 23:47:37 +0000327 if (I->getNumOperands() == 0) {
328 Visited[I] = 0 - 1U;
329 ComputeTopDownOrdering(I, Order, Visited);
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000330 }
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000331 }
332
Chris Lattnerbf4f23322005-11-09 23:47:37 +0000333 assert(Order.size() == Visited.size() &&
334 Order.size() ==
335 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000336 "Error: DAG is cyclic!");
337 Visited.clear();
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000338
Chris Lattner32206f52006-03-18 01:44:44 +0000339 for (unsigned i = 0, e = Order.size(); i != e; ++i)
340 HandleOp(SDOperand(Order[i], 0));
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000341
342 // Finally, it's possible the root changed. Get the new root.
Chris Lattnerdc750592005-01-07 07:47:09 +0000343 SDOperand OldRoot = DAG.getRoot();
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000344 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
345 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattnerdc750592005-01-07 07:47:09 +0000346
347 ExpandedNodes.clear();
348 LegalizedNodes.clear();
Chris Lattner87a769c2005-01-16 01:11:45 +0000349 PromotedNodes.clear();
Chris Lattner32206f52006-03-18 01:44:44 +0000350 SplitNodes.clear();
351 PackedNodes.clear();
Chris Lattnerdc750592005-01-07 07:47:09 +0000352
353 // Remove dead nodes now.
Chris Lattner8927c872006-08-04 17:45:20 +0000354 DAG.RemoveDeadNodes();
Chris Lattnerdc750592005-01-07 07:47:09 +0000355}
356
Chris Lattner462505f2006-02-13 09:18:02 +0000357
358/// FindCallEndFromCallStart - Given a chained node that is part of a call
359/// sequence, find the CALLSEQ_END node that terminates the call sequence.
360static SDNode *FindCallEndFromCallStart(SDNode *Node) {
361 if (Node->getOpcode() == ISD::CALLSEQ_END)
362 return Node;
363 if (Node->use_empty())
364 return 0; // No CallSeqEnd
365
366 // The chain is usually at the end.
367 SDOperand TheChain(Node, Node->getNumValues()-1);
368 if (TheChain.getValueType() != MVT::Other) {
369 // Sometimes it's at the beginning.
370 TheChain = SDOperand(Node, 0);
371 if (TheChain.getValueType() != MVT::Other) {
372 // Otherwise, hunt for it.
373 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
374 if (Node->getValueType(i) == MVT::Other) {
375 TheChain = SDOperand(Node, i);
376 break;
377 }
378
379 // Otherwise, we walked into a node without a chain.
380 if (TheChain.getValueType() != MVT::Other)
381 return 0;
382 }
383 }
384
385 for (SDNode::use_iterator UI = Node->use_begin(),
386 E = Node->use_end(); UI != E; ++UI) {
387
388 // Make sure to only follow users of our token chain.
389 SDNode *User = *UI;
390 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
391 if (User->getOperand(i) == TheChain)
392 if (SDNode *Result = FindCallEndFromCallStart(User))
393 return Result;
394 }
395 return 0;
396}
397
398/// FindCallStartFromCallEnd - Given a chained node that is part of a call
399/// sequence, find the CALLSEQ_START node that initiates the call sequence.
400static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
401 assert(Node && "Didn't find callseq_start for a call??");
402 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
403
404 assert(Node->getOperand(0).getValueType() == MVT::Other &&
405 "Node doesn't have a token chain argument!");
406 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
407}
408
409/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
410/// see if any uses can reach Dest. If no dest operands can get to dest,
411/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattner4488f0c2006-07-26 23:55:56 +0000412///
413/// Keep track of the nodes we fine that actually do lead to Dest in
414/// NodesLeadingTo. This avoids retraversing them exponential number of times.
415///
416bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
417 std::set<SDNode*> &NodesLeadingTo) {
Chris Lattner462505f2006-02-13 09:18:02 +0000418 if (N == Dest) return true; // N certainly leads to Dest :)
419
Chris Lattner4488f0c2006-07-26 23:55:56 +0000420 // If we've already processed this node and it does lead to Dest, there is no
421 // need to reprocess it.
422 if (NodesLeadingTo.count(N)) return true;
423
Chris Lattner462505f2006-02-13 09:18:02 +0000424 // If the first result of this node has been already legalized, then it cannot
425 // reach N.
426 switch (getTypeAction(N->getValueType(0))) {
427 case Legal:
428 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
429 break;
430 case Promote:
431 if (PromotedNodes.count(SDOperand(N, 0))) return false;
432 break;
433 case Expand:
434 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
435 break;
436 }
437
438 // Okay, this node has not already been legalized. Check and legalize all
439 // operands. If none lead to Dest, then we can legalize this node.
440 bool OperandsLeadToDest = false;
441 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
442 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattner4488f0c2006-07-26 23:55:56 +0000443 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner462505f2006-02-13 09:18:02 +0000444
Chris Lattner4488f0c2006-07-26 23:55:56 +0000445 if (OperandsLeadToDest) {
446 NodesLeadingTo.insert(N);
447 return true;
448 }
Chris Lattner462505f2006-02-13 09:18:02 +0000449
450 // Okay, this node looks safe, legalize it and return false.
Chris Lattner916ae072006-04-17 22:10:08 +0000451 HandleOp(SDOperand(N, 0));
Chris Lattner462505f2006-02-13 09:18:02 +0000452 return false;
453}
454
Chris Lattner32206f52006-03-18 01:44:44 +0000455/// HandleOp - Legalize, Promote, Expand or Pack the specified operand as
456/// appropriate for its type.
457void SelectionDAGLegalize::HandleOp(SDOperand Op) {
458 switch (getTypeAction(Op.getValueType())) {
459 default: assert(0 && "Bad type action!");
460 case Legal: LegalizeOp(Op); break;
461 case Promote: PromoteOp(Op); break;
462 case Expand:
463 if (Op.getValueType() != MVT::Vector) {
464 SDOperand X, Y;
465 ExpandOp(Op, X, Y);
466 } else {
467 SDNode *N = Op.Val;
468 unsigned NumOps = N->getNumOperands();
469 unsigned NumElements =
470 cast<ConstantSDNode>(N->getOperand(NumOps-2))->getValue();
471 MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(NumOps-1))->getVT();
472 MVT::ValueType PackedVT = getVectorType(EVT, NumElements);
473 if (PackedVT != MVT::Other && TLI.isTypeLegal(PackedVT)) {
474 // In the common case, this is a legal vector type, convert it to the
475 // packed operation and type now.
476 PackVectorOp(Op, PackedVT);
477 } else if (NumElements == 1) {
478 // Otherwise, if this is a single element vector, convert it to a
479 // scalar operation.
480 PackVectorOp(Op, EVT);
481 } else {
482 // Otherwise, this is a multiple element vector that isn't supported.
483 // Split it in half and legalize both parts.
484 SDOperand X, Y;
Chris Lattner93640542006-03-19 00:07:49 +0000485 SplitVectorOp(Op, X, Y);
Chris Lattner32206f52006-03-18 01:44:44 +0000486 }
487 }
488 break;
489 }
490}
Chris Lattner462505f2006-02-13 09:18:02 +0000491
492
Chris Lattner32206f52006-03-18 01:44:44 +0000493/// LegalizeOp - We know that the specified value has a legal type.
494/// Recursively ensure that the operands have legal types, then return the
495/// result.
Chris Lattnerdc750592005-01-07 07:47:09 +0000496SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattnerf12eb4d2005-08-24 16:35:28 +0000497 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnerc0f31c52005-01-08 20:35:13 +0000498 "Caller should expand or promote operands that are not legal!");
Chris Lattnerb5a78e02005-05-12 16:53:42 +0000499 SDNode *Node = Op.Val;
Chris Lattnerc0f31c52005-01-08 20:35:13 +0000500
Chris Lattnerdc750592005-01-07 07:47:09 +0000501 // If this operation defines any values that cannot be represented in a
Chris Lattnerc0f31c52005-01-08 20:35:13 +0000502 // register on this target, make sure to expand or promote them.
Chris Lattnerb5a78e02005-05-12 16:53:42 +0000503 if (Node->getNumValues() > 1) {
504 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattner32206f52006-03-18 01:44:44 +0000505 if (getTypeAction(Node->getValueType(i)) != Legal) {
506 HandleOp(Op.getValue(i));
Chris Lattnerdc750592005-01-07 07:47:09 +0000507 assert(LegalizedNodes.count(Op) &&
Chris Lattner32206f52006-03-18 01:44:44 +0000508 "Handling didn't add legal operands!");
Chris Lattner1f2c9d82005-01-15 05:21:40 +0000509 return LegalizedNodes[Op];
Chris Lattnerdc750592005-01-07 07:47:09 +0000510 }
511 }
512
Chris Lattnerb5a78e02005-05-12 16:53:42 +0000513 // Note that LegalizeOp may be reentered even from single-use nodes, which
514 // means that we always must cache transformed nodes.
Chris Lattner85d70c62005-01-11 05:57:22 +0000515 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
516 if (I != LegalizedNodes.end()) return I->second;
Chris Lattnerdc750592005-01-07 07:47:09 +0000517
Nate Begemane5b86d72005-08-10 20:51:12 +0000518 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerdc750592005-01-07 07:47:09 +0000519 SDOperand Result = Op;
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000520 bool isCustom = false;
521
Chris Lattnerdc750592005-01-07 07:47:09 +0000522 switch (Node->getOpcode()) {
Chris Lattnereb637512006-01-28 08:31:04 +0000523 case ISD::FrameIndex:
524 case ISD::EntryToken:
525 case ISD::Register:
526 case ISD::BasicBlock:
527 case ISD::TargetFrameIndex:
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000528 case ISD::TargetJumpTable:
Chris Lattnereb637512006-01-28 08:31:04 +0000529 case ISD::TargetConstant:
Chris Lattner758b0ac2006-01-29 06:26:56 +0000530 case ISD::TargetConstantFP:
Chris Lattnereb637512006-01-28 08:31:04 +0000531 case ISD::TargetConstantPool:
532 case ISD::TargetGlobalAddress:
533 case ISD::TargetExternalSymbol:
534 case ISD::VALUETYPE:
535 case ISD::SRCVALUE:
536 case ISD::STRING:
537 case ISD::CONDCODE:
Andrew Lenhartha6bbf332006-10-11 04:29:42 +0000538 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattnereb637512006-01-28 08:31:04 +0000539 // Primitives must all be legal.
540 assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
541 "This must be legal!");
542 break;
Chris Lattnerdc750592005-01-07 07:47:09 +0000543 default:
Chris Lattner3eb86932005-05-14 06:34:48 +0000544 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
545 // If this is a target node, legalize it by legalizing the operands then
546 // passing it through.
Chris Lattner97af9d52006-08-08 01:09:31 +0000547 SmallVector<SDOperand, 8> Ops;
Chris Lattner62f1b832006-05-17 18:00:08 +0000548 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattner3eb86932005-05-14 06:34:48 +0000549 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner62f1b832006-05-17 18:00:08 +0000550
Chris Lattner97af9d52006-08-08 01:09:31 +0000551 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattner3eb86932005-05-14 06:34:48 +0000552
553 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
554 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
555 return Result.getValue(Op.ResNo);
556 }
557 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeyc3d341e2006-07-11 17:58:07 +0000558#ifndef NDEBUG
Chris Lattnerdc750592005-01-07 07:47:09 +0000559 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +0000560#endif
Chris Lattnerdc750592005-01-07 07:47:09 +0000561 assert(0 && "Do not know how to legalize this operator!");
562 abort();
Chris Lattnerdc750592005-01-07 07:47:09 +0000563 case ISD::GlobalAddress:
Chris Lattner32f20bf2005-01-07 21:45:56 +0000564 case ISD::ExternalSymbol:
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000565 case ISD::ConstantPool:
566 case ISD::JumpTable: // Nothing to do.
Chris Lattner45ca1c02005-11-17 06:41:44 +0000567 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
568 default: assert(0 && "This action is not supported yet!");
Chris Lattnereb637512006-01-28 08:31:04 +0000569 case TargetLowering::Custom:
570 Tmp1 = TLI.LowerOperation(Op, DAG);
571 if (Tmp1.Val) Result = Tmp1;
572 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner45ca1c02005-11-17 06:41:44 +0000573 case TargetLowering::Legal:
Chris Lattner45ca1c02005-11-17 06:41:44 +0000574 break;
575 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000576 break;
Chris Lattnerd9af1aa2005-09-02 01:15:01 +0000577 case ISD::AssertSext:
578 case ISD::AssertZext:
579 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +0000580 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerd9af1aa2005-09-02 01:15:01 +0000581 break;
Chris Lattner44c28c22005-11-20 22:56:56 +0000582 case ISD::MERGE_VALUES:
Chris Lattnerd02b0542006-01-28 10:58:55 +0000583 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000584 Result = Node->getOperand(Op.ResNo);
585 break;
Chris Lattner3b8e7192005-01-14 22:38:01 +0000586 case ISD::CopyFromReg:
587 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnere3c67e92005-12-18 15:27:43 +0000588 Result = Op.getValue(0);
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000589 if (Node->getNumValues() == 2) {
Chris Lattnerd02b0542006-01-28 10:58:55 +0000590 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnere3c67e92005-12-18 15:27:43 +0000591 } else {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000592 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerd02b0542006-01-28 10:58:55 +0000593 if (Node->getNumOperands() == 3) {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000594 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerd02b0542006-01-28 10:58:55 +0000595 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
596 } else {
597 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
598 }
Chris Lattnere3c67e92005-12-18 15:27:43 +0000599 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
600 }
Chris Lattnereb6614d2005-01-28 06:27:38 +0000601 // Since CopyFromReg produces two values, make sure to remember that we
602 // legalized both of them.
603 AddLegalizedOperand(Op.getValue(0), Result);
604 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
605 return Result.getValue(Op.ResNo);
Nate Begemancda9aa72005-04-01 22:34:39 +0000606 case ISD::UNDEF: {
607 MVT::ValueType VT = Op.getValueType();
608 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begeman69d39432005-04-02 00:41:14 +0000609 default: assert(0 && "This action is not supported yet!");
610 case TargetLowering::Expand:
Nate Begemancda9aa72005-04-01 22:34:39 +0000611 if (MVT::isInteger(VT))
612 Result = DAG.getConstant(0, VT);
613 else if (MVT::isFloatingPoint(VT))
614 Result = DAG.getConstantFP(0, VT);
615 else
616 assert(0 && "Unknown value type!");
617 break;
Nate Begeman69d39432005-04-02 00:41:14 +0000618 case TargetLowering::Legal:
Nate Begemancda9aa72005-04-01 22:34:39 +0000619 break;
620 }
621 break;
622 }
Chris Lattnera4f68052006-03-24 02:26:29 +0000623
Chris Lattnere55d1712006-03-28 00:40:33 +0000624 case ISD::INTRINSIC_W_CHAIN:
625 case ISD::INTRINSIC_WO_CHAIN:
626 case ISD::INTRINSIC_VOID: {
Chris Lattner97af9d52006-08-08 01:09:31 +0000627 SmallVector<SDOperand, 8> Ops;
Chris Lattnera4f68052006-03-24 02:26:29 +0000628 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
629 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner97af9d52006-08-08 01:09:31 +0000630 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner30ee7252006-03-26 09:12:51 +0000631
632 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattnere55d1712006-03-28 00:40:33 +0000633 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner30ee7252006-03-26 09:12:51 +0000634 TargetLowering::Custom) {
635 Tmp3 = TLI.LowerOperation(Result, DAG);
636 if (Tmp3.Val) Result = Tmp3;
Chris Lattnerd5f94c92006-03-27 20:28:29 +0000637 }
638
639 if (Result.Val->getNumValues() == 1) break;
640
641 // Must have return value and chain result.
642 assert(Result.Val->getNumValues() == 2 &&
643 "Cannot return more than two values!");
644
645 // Since loads produce two values, make sure to remember that we
646 // legalized both of them.
647 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
648 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
649 return Result.getValue(Op.ResNo);
Chris Lattnera4f68052006-03-24 02:26:29 +0000650 }
Chris Lattner435b4022005-11-29 06:21:05 +0000651
652 case ISD::LOCATION:
653 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
654 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
655
656 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
657 case TargetLowering::Promote:
658 default: assert(0 && "This action is not supported yet!");
Jim Laskey7c462762005-12-16 22:45:29 +0000659 case TargetLowering::Expand: {
Jim Laskey219d5592006-01-04 22:28:25 +0000660 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskey762e9ec2006-01-05 01:25:28 +0000661 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
662 bool useDEBUG_LABEL = TLI.isOperationLegal(ISD::DEBUG_LABEL, MVT::Other);
663
664 if (DebugInfo && (useDEBUG_LOC || useDEBUG_LABEL)) {
665 const std::string &FName =
666 cast<StringSDNode>(Node->getOperand(3))->getValue();
667 const std::string &DirName =
668 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskeyb9966022006-01-17 17:31:53 +0000669 unsigned SrcFile = DebugInfo->RecordSource(DirName, FName);
Jim Laskey762e9ec2006-01-05 01:25:28 +0000670
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000671 SmallVector<SDOperand, 8> Ops;
Jim Laskey9e296be2005-12-21 20:51:37 +0000672 Ops.push_back(Tmp1); // chain
Jim Laskey762e9ec2006-01-05 01:25:28 +0000673 SDOperand LineOp = Node->getOperand(1);
674 SDOperand ColOp = Node->getOperand(2);
675
676 if (useDEBUG_LOC) {
677 Ops.push_back(LineOp); // line #
678 Ops.push_back(ColOp); // col #
679 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000680 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskey762e9ec2006-01-05 01:25:28 +0000681 } else {
Jim Laskey2eea4362006-02-15 19:34:44 +0000682 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
683 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskey762e9ec2006-01-05 01:25:28 +0000684 unsigned ID = DebugInfo->RecordLabel(Line, Col, SrcFile);
685 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000686 Result = DAG.getNode(ISD::DEBUG_LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskey762e9ec2006-01-05 01:25:28 +0000687 }
Jim Laskey9e296be2005-12-21 20:51:37 +0000688 } else {
689 Result = Tmp1; // chain
690 }
Chris Lattner435b4022005-11-29 06:21:05 +0000691 break;
Chris Lattnerc06da622005-12-18 23:54:29 +0000692 }
Chris Lattner435b4022005-11-29 06:21:05 +0000693 case TargetLowering::Legal:
Chris Lattner05b0b452005-12-01 18:21:35 +0000694 if (Tmp1 != Node->getOperand(0) ||
695 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattner97af9d52006-08-08 01:09:31 +0000696 SmallVector<SDOperand, 8> Ops;
Chris Lattner435b4022005-11-29 06:21:05 +0000697 Ops.push_back(Tmp1);
Chris Lattner05b0b452005-12-01 18:21:35 +0000698 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
699 Ops.push_back(Node->getOperand(1)); // line # must be legal.
700 Ops.push_back(Node->getOperand(2)); // col # must be legal.
701 } else {
702 // Otherwise promote them.
703 Ops.push_back(PromoteOp(Node->getOperand(1)));
704 Ops.push_back(PromoteOp(Node->getOperand(2)));
705 }
Chris Lattner435b4022005-11-29 06:21:05 +0000706 Ops.push_back(Node->getOperand(3)); // filename must be legal.
707 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattner97af9d52006-08-08 01:09:31 +0000708 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner435b4022005-11-29 06:21:05 +0000709 }
710 break;
711 }
712 break;
Jim Laskey7c462762005-12-16 22:45:29 +0000713
714 case ISD::DEBUG_LOC:
Jim Laskey762e9ec2006-01-05 01:25:28 +0000715 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskey7c462762005-12-16 22:45:29 +0000716 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskey7c462762005-12-16 22:45:29 +0000717 default: assert(0 && "This action is not supported yet!");
Jim Laskey762e9ec2006-01-05 01:25:28 +0000718 case TargetLowering::Legal:
719 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
720 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
721 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
722 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000723 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskey762e9ec2006-01-05 01:25:28 +0000724 break;
725 }
726 break;
727
728 case ISD::DEBUG_LABEL:
729 assert(Node->getNumOperands() == 2 && "Invalid DEBUG_LABEL node!");
730 switch (TLI.getOperationAction(ISD::DEBUG_LABEL, MVT::Other)) {
Jim Laskey762e9ec2006-01-05 01:25:28 +0000731 default: assert(0 && "This action is not supported yet!");
732 case TargetLowering::Legal:
733 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
734 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000735 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskey7c462762005-12-16 22:45:29 +0000736 break;
737 }
Nate Begeman5965bd12006-02-17 05:43:56 +0000738 break;
Chris Lattner435b4022005-11-29 06:21:05 +0000739
Chris Lattnerdc750592005-01-07 07:47:09 +0000740 case ISD::Constant:
741 // We know we don't need to expand constants here, constants only have one
742 // value and we check that it is fine above.
743
744 // FIXME: Maybe we should handle things like targets that don't support full
745 // 32-bit immediates?
746 break;
747 case ISD::ConstantFP: {
748 // Spill FP immediates to the constant pool if the target cannot directly
749 // codegen them. Targets often have some immediate values that can be
750 // efficiently generated into an FP register without a load. We explicitly
751 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattnerdc750592005-01-07 07:47:09 +0000752 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
753
754 // Check to see if this FP immediate is already legal.
755 bool isLegal = false;
756 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
757 E = TLI.legal_fpimm_end(); I != E; ++I)
758 if (CFP->isExactlyValue(*I)) {
759 isLegal = true;
760 break;
761 }
762
Chris Lattner758b0ac2006-01-29 06:26:56 +0000763 // If this is a legal constant, turn it into a TargetConstantFP node.
764 if (isLegal) {
765 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
766 break;
767 }
768
769 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
770 default: assert(0 && "This action is not supported yet!");
771 case TargetLowering::Custom:
772 Tmp3 = TLI.LowerOperation(Result, DAG);
773 if (Tmp3.Val) {
774 Result = Tmp3;
775 break;
776 }
777 // FALLTHROUGH
778 case TargetLowering::Expand:
Chris Lattnerdc750592005-01-07 07:47:09 +0000779 // Otherwise we need to spill the constant to memory.
Chris Lattnerdc750592005-01-07 07:47:09 +0000780 bool Extend = false;
781
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000782 // If a FP immediate is precise when represented as a float and if the
783 // target can do an extending load from float to double, we put it into
784 // the constant pool as a float, even if it's is statically typed as a
785 // double.
Chris Lattnerdc750592005-01-07 07:47:09 +0000786 MVT::ValueType VT = CFP->getValueType(0);
787 bool isDouble = VT == MVT::f64;
788 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
789 Type::FloatTy, CFP->getValue());
Chris Lattnerbc7497d2005-01-28 22:58:25 +0000790 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
791 // Only do this if the target has a native EXTLOAD instruction from
792 // f32.
Evan Cheng5d9fd972006-10-04 00:56:09 +0000793 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
Chris Lattnerdc750592005-01-07 07:47:09 +0000794 LLVMC = cast<ConstantFP>(ConstantExpr::getCast(LLVMC, Type::FloatTy));
795 VT = MVT::f32;
796 Extend = true;
797 }
Misha Brukman835702a2005-04-21 22:36:52 +0000798
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000799 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Chris Lattner3ba56b32005-01-16 05:06:12 +0000800 if (Extend) {
Chris Lattnerde0a4b12005-07-10 01:55:33 +0000801 Result = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Chenge71fe34d2006-10-09 20:57:25 +0000802 CPIdx, NULL, 0, MVT::f32);
Chris Lattner3ba56b32005-01-16 05:06:12 +0000803 } else {
Evan Chenge71fe34d2006-10-09 20:57:25 +0000804 Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner3ba56b32005-01-16 05:06:12 +0000805 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000806 }
807 break;
808 }
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000809 case ISD::TokenFactor:
810 if (Node->getNumOperands() == 2) {
Chris Lattnerd02b0542006-01-28 10:58:55 +0000811 Tmp1 = LegalizeOp(Node->getOperand(0));
812 Tmp2 = LegalizeOp(Node->getOperand(1));
813 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
814 } else if (Node->getNumOperands() == 3) {
815 Tmp1 = LegalizeOp(Node->getOperand(0));
816 Tmp2 = LegalizeOp(Node->getOperand(1));
817 Tmp3 = LegalizeOp(Node->getOperand(2));
818 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000819 } else {
Chris Lattner97af9d52006-08-08 01:09:31 +0000820 SmallVector<SDOperand, 8> Ops;
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000821 // Legalize the operands.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000822 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
823 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner97af9d52006-08-08 01:09:31 +0000824 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner05b4e372005-01-13 17:59:25 +0000825 }
Chris Lattner05b4e372005-01-13 17:59:25 +0000826 break;
Chris Lattnerd3b504a2006-04-12 16:20:43 +0000827
828 case ISD::FORMAL_ARGUMENTS:
Chris Lattneraaa23d92006-05-16 22:53:20 +0000829 case ISD::CALL:
Chris Lattnerd3b504a2006-04-12 16:20:43 +0000830 // The only option for this is to custom lower it.
Chris Lattnera1cec012006-05-17 17:55:45 +0000831 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
832 assert(Tmp3.Val && "Target didn't custom lower this node!");
833 assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
834 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattner5f0edfb2006-05-16 05:49:56 +0000835
Chris Lattneraaa23d92006-05-16 22:53:20 +0000836 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattner5f0edfb2006-05-16 05:49:56 +0000837 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnera1cec012006-05-17 17:55:45 +0000838 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
839 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattner5f0edfb2006-05-16 05:49:56 +0000840 if (Op.ResNo == i)
841 Tmp2 = Tmp1;
842 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
843 }
844 return Tmp2;
Chris Lattnerd3b504a2006-04-12 16:20:43 +0000845
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000846 case ISD::BUILD_VECTOR:
847 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner29b23012006-03-19 01:17:20 +0000848 default: assert(0 && "This action is not supported yet!");
849 case TargetLowering::Custom:
850 Tmp3 = TLI.LowerOperation(Result, DAG);
851 if (Tmp3.Val) {
852 Result = Tmp3;
853 break;
854 }
855 // FALLTHROUGH
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000856 case TargetLowering::Expand:
857 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerf4e1a532006-03-19 00:52:58 +0000858 break;
Chris Lattner29b23012006-03-19 01:17:20 +0000859 }
Chris Lattner29b23012006-03-19 01:17:20 +0000860 break;
861 case ISD::INSERT_VECTOR_ELT:
862 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
863 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
864 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
865 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
866
867 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
868 Node->getValueType(0))) {
869 default: assert(0 && "This action is not supported yet!");
870 case TargetLowering::Legal:
871 break;
872 case TargetLowering::Custom:
873 Tmp3 = TLI.LowerOperation(Result, DAG);
874 if (Tmp3.Val) {
875 Result = Tmp3;
876 break;
877 }
878 // FALLTHROUGH
879 case TargetLowering::Expand: {
Chris Lattner326870b2006-04-17 19:21:01 +0000880 // If the insert index is a constant, codegen this as a scalar_to_vector,
881 // then a shuffle that inserts it into the right position in the vector.
882 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
883 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
884 Tmp1.getValueType(), Tmp2);
885
886 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
887 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
888 MVT::ValueType ShufMaskEltVT = MVT::getVectorBaseType(ShufMaskVT);
889
890 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
891 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
892 // the RHS.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000893 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner326870b2006-04-17 19:21:01 +0000894 for (unsigned i = 0; i != NumElts; ++i) {
895 if (i != InsertPos->getValue())
896 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
897 else
898 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
899 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000900 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
901 &ShufOps[0], ShufOps.size());
Chris Lattner326870b2006-04-17 19:21:01 +0000902
903 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
904 Tmp1, ScVec, ShufMask);
905 Result = LegalizeOp(Result);
906 break;
907 }
908
Chris Lattner29b23012006-03-19 01:17:20 +0000909 // If the target doesn't support this, we have to spill the input vector
910 // to a temporary stack slot, update the element, then reload it. This is
911 // badness. We could also load the value into a vector register (either
912 // with a "move to register" or "extload into register" instruction, then
913 // permute it into place, if the idx is a constant and if the idx is
914 // supported by the target.
Evan Cheng78e3d562006-04-08 01:46:37 +0000915 MVT::ValueType VT = Tmp1.getValueType();
916 MVT::ValueType EltVT = Tmp2.getValueType();
917 MVT::ValueType IdxVT = Tmp3.getValueType();
918 MVT::ValueType PtrVT = TLI.getPointerTy();
919 SDOperand StackPtr = CreateStackTemporary(VT);
Evan Cheng168e45b2006-03-31 01:27:51 +0000920 // Store the vector.
Evan Chengab51cf22006-10-13 21:14:26 +0000921 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, NULL, 0);
Evan Cheng168e45b2006-03-31 01:27:51 +0000922
923 // Truncate or zero extend offset to target pointer type.
Evan Cheng78e3d562006-04-08 01:46:37 +0000924 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
925 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Cheng168e45b2006-03-31 01:27:51 +0000926 // Add the offset to the index.
Evan Cheng78e3d562006-04-08 01:46:37 +0000927 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
928 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
929 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Cheng168e45b2006-03-31 01:27:51 +0000930 // Store the scalar value.
Evan Chengab51cf22006-10-13 21:14:26 +0000931 Ch = DAG.getStore(Ch, Tmp2, StackPtr2, NULL, 0);
Evan Cheng168e45b2006-03-31 01:27:51 +0000932 // Load the updated vector.
Evan Chenge71fe34d2006-10-09 20:57:25 +0000933 Result = DAG.getLoad(VT, Ch, StackPtr, NULL, 0);
Chris Lattner29b23012006-03-19 01:17:20 +0000934 break;
935 }
936 }
937 break;
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000938 case ISD::SCALAR_TO_VECTOR:
Chris Lattner6be79822006-04-04 17:23:26 +0000939 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
940 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
941 break;
942 }
943
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000944 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
945 Result = DAG.UpdateNodeOperands(Result, Tmp1);
946 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
947 Node->getValueType(0))) {
948 default: assert(0 && "This action is not supported yet!");
949 case TargetLowering::Legal:
950 break;
Chris Lattner79fb91c2006-03-19 06:47:21 +0000951 case TargetLowering::Custom:
952 Tmp3 = TLI.LowerOperation(Result, DAG);
953 if (Tmp3.Val) {
954 Result = Tmp3;
955 break;
956 }
957 // FALLTHROUGH
Chris Lattner6be79822006-04-04 17:23:26 +0000958 case TargetLowering::Expand:
959 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000960 break;
961 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000962 break;
Chris Lattner21e68c82006-03-20 01:52:29 +0000963 case ISD::VECTOR_SHUFFLE:
Chris Lattner21e68c82006-03-20 01:52:29 +0000964 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
965 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
966 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
967
968 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner6be79822006-04-04 17:23:26 +0000969 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
970 default: assert(0 && "Unknown operation action!");
971 case TargetLowering::Legal:
972 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
973 "vector shuffle should not be created if not legal!");
974 break;
975 case TargetLowering::Custom:
Evan Cheng9fa89592006-04-05 06:07:11 +0000976 Tmp3 = TLI.LowerOperation(Result, DAG);
977 if (Tmp3.Val) {
978 Result = Tmp3;
979 break;
980 }
981 // FALLTHROUGH
982 case TargetLowering::Expand: {
983 MVT::ValueType VT = Node->getValueType(0);
984 MVT::ValueType EltVT = MVT::getVectorBaseType(VT);
985 MVT::ValueType PtrVT = TLI.getPointerTy();
986 SDOperand Mask = Node->getOperand(2);
987 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000988 SmallVector<SDOperand,8> Ops;
Evan Cheng9fa89592006-04-05 06:07:11 +0000989 for (unsigned i = 0; i != NumElems; ++i) {
990 SDOperand Arg = Mask.getOperand(i);
991 if (Arg.getOpcode() == ISD::UNDEF) {
992 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
993 } else {
994 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
995 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
996 if (Idx < NumElems)
997 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
998 DAG.getConstant(Idx, PtrVT)));
999 else
1000 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1001 DAG.getConstant(Idx - NumElems, PtrVT)));
1002 }
1003 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001004 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6be79822006-04-04 17:23:26 +00001005 break;
Evan Cheng9fa89592006-04-05 06:07:11 +00001006 }
Chris Lattner6be79822006-04-04 17:23:26 +00001007 case TargetLowering::Promote: {
1008 // Change base type to a different vector type.
1009 MVT::ValueType OVT = Node->getValueType(0);
1010 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1011
1012 // Cast the two input vectors.
1013 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1014 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1015
1016 // Convert the shuffle mask to the right # elements.
1017 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1018 assert(Tmp3.Val && "Shuffle not legal?");
1019 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1020 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1021 break;
1022 }
Chris Lattner21e68c82006-03-20 01:52:29 +00001023 }
1024 break;
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001025
1026 case ISD::EXTRACT_VECTOR_ELT:
1027 Tmp1 = LegalizeOp(Node->getOperand(0));
1028 Tmp2 = LegalizeOp(Node->getOperand(1));
1029 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner340a6b52006-03-21 21:02:03 +00001030
1031 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT,
1032 Tmp1.getValueType())) {
1033 default: assert(0 && "This action is not supported yet!");
1034 case TargetLowering::Legal:
1035 break;
1036 case TargetLowering::Custom:
1037 Tmp3 = TLI.LowerOperation(Result, DAG);
1038 if (Tmp3.Val) {
1039 Result = Tmp3;
1040 break;
1041 }
1042 // FALLTHROUGH
Chris Lattner42a5fca2006-04-02 05:06:04 +00001043 case TargetLowering::Expand:
1044 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner340a6b52006-03-21 21:02:03 +00001045 break;
1046 }
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001047 break;
1048
Chris Lattner6f423252006-03-31 17:55:51 +00001049 case ISD::VEXTRACT_VECTOR_ELT:
1050 Result = LegalizeOp(LowerVEXTRACT_VECTOR_ELT(Op));
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001051 break;
Chris Lattner21e68c82006-03-20 01:52:29 +00001052
Chris Lattner462505f2006-02-13 09:18:02 +00001053 case ISD::CALLSEQ_START: {
1054 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1055
1056 // Recursively Legalize all of the inputs of the call end that do not lead
1057 // to this call start. This ensures that any libcalls that need be inserted
1058 // are inserted *before* the CALLSEQ_START.
Chris Lattner4488f0c2006-07-26 23:55:56 +00001059 {std::set<SDNode*> NodesLeadingTo;
Chris Lattner462505f2006-02-13 09:18:02 +00001060 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattner4488f0c2006-07-26 23:55:56 +00001061 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1062 NodesLeadingTo);
1063 }
Chris Lattner462505f2006-02-13 09:18:02 +00001064
1065 // Now that we legalized all of the inputs (which may have inserted
1066 // libcalls) create the new CALLSEQ_START node.
1067 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1068
1069 // Merge in the last call, to ensure that this call start after the last
1070 // call ended.
Chris Lattner62f1b832006-05-17 18:00:08 +00001071 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnera1cec012006-05-17 17:55:45 +00001072 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1073 Tmp1 = LegalizeOp(Tmp1);
1074 }
Chris Lattner462505f2006-02-13 09:18:02 +00001075
1076 // Do not try to legalize the target-specific arguments (#1+).
1077 if (Tmp1 != Node->getOperand(0)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001078 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner462505f2006-02-13 09:18:02 +00001079 Ops[0] = Tmp1;
Chris Lattner97af9d52006-08-08 01:09:31 +00001080 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner462505f2006-02-13 09:18:02 +00001081 }
1082
1083 // Remember that the CALLSEQ_START is legalized.
Chris Lattner8e2ee732006-02-14 00:55:02 +00001084 AddLegalizedOperand(Op.getValue(0), Result);
1085 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1086 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1087
Chris Lattner462505f2006-02-13 09:18:02 +00001088 // Now that the callseq_start and all of the non-call nodes above this call
1089 // sequence have been legalized, legalize the call itself. During this
1090 // process, no libcalls can/will be inserted, guaranteeing that no calls
1091 // can overlap.
1092 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1093 SDOperand InCallSEQ = LastCALLSEQ_END;
1094 // Note that we are selecting this call!
1095 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1096 IsLegalizingCall = true;
1097
1098 // Legalize the call, starting from the CALLSEQ_END.
1099 LegalizeOp(LastCALLSEQ_END);
1100 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1101 return Result;
1102 }
Chris Lattner2dce7032005-05-12 23:24:06 +00001103 case ISD::CALLSEQ_END:
Chris Lattner462505f2006-02-13 09:18:02 +00001104 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1105 // will cause this node to be legalized as well as handling libcalls right.
1106 if (LastCALLSEQ_END.Val != Node) {
1107 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
1108 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
1109 assert(I != LegalizedNodes.end() &&
1110 "Legalizing the call start should have legalized this node!");
1111 return I->second;
1112 }
1113
1114 // Otherwise, the call start has been legalized and everything is going
1115 // according to plan. Just legalize ourselves normally here.
Chris Lattnerdc750592005-01-07 07:47:09 +00001116 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerccb44762006-01-29 07:58:15 +00001117 // Do not try to legalize the target-specific arguments (#1+), except for
1118 // an optional flag input.
1119 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1120 if (Tmp1 != Node->getOperand(0)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001121 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattnerccb44762006-01-29 07:58:15 +00001122 Ops[0] = Tmp1;
Chris Lattner97af9d52006-08-08 01:09:31 +00001123 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerccb44762006-01-29 07:58:15 +00001124 }
1125 } else {
1126 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1127 if (Tmp1 != Node->getOperand(0) ||
1128 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001129 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattnerccb44762006-01-29 07:58:15 +00001130 Ops[0] = Tmp1;
1131 Ops.back() = Tmp2;
Chris Lattner97af9d52006-08-08 01:09:31 +00001132 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerccb44762006-01-29 07:58:15 +00001133 }
Chris Lattnerf9a1e3a2006-01-24 05:48:21 +00001134 }
Chris Lattner8e2ee732006-02-14 00:55:02 +00001135 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner462505f2006-02-13 09:18:02 +00001136 // This finishes up call legalization.
1137 IsLegalizingCall = false;
Chris Lattner8e2ee732006-02-14 00:55:02 +00001138
1139 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1140 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1141 if (Node->getNumValues() == 2)
1142 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1143 return Result.getValue(Op.ResNo);
Evan Cheng7f4ec822006-01-11 22:14:47 +00001144 case ISD::DYNAMIC_STACKALLOC: {
Chris Lattnerec26b482005-01-09 19:03:49 +00001145 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1146 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1147 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001148 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerec26b482005-01-09 19:03:49 +00001149
Chris Lattnerd02b0542006-01-28 10:58:55 +00001150 Tmp1 = Result.getValue(0);
Chris Lattner2d591422006-01-15 08:43:08 +00001151 Tmp2 = Result.getValue(1);
Evan Cheng7f4ec822006-01-11 22:14:47 +00001152 switch (TLI.getOperationAction(Node->getOpcode(),
1153 Node->getValueType(0))) {
1154 default: assert(0 && "This action is not supported yet!");
Chris Lattner59b82f92006-01-15 08:54:32 +00001155 case TargetLowering::Expand: {
1156 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1157 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1158 " not tell us which reg is the stack pointer!");
1159 SDOperand Chain = Tmp1.getOperand(0);
1160 SDOperand Size = Tmp2.getOperand(1);
1161 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
1162 Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size); // Value
1163 Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1); // Output chain
Chris Lattnerd02b0542006-01-28 10:58:55 +00001164 Tmp1 = LegalizeOp(Tmp1);
1165 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner59b82f92006-01-15 08:54:32 +00001166 break;
1167 }
1168 case TargetLowering::Custom:
Chris Lattner2d591422006-01-15 08:43:08 +00001169 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1170 if (Tmp3.Val) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001171 Tmp1 = LegalizeOp(Tmp3);
1172 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Cheng7f4ec822006-01-11 22:14:47 +00001173 }
Chris Lattner59b82f92006-01-15 08:54:32 +00001174 break;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001175 case TargetLowering::Legal:
Chris Lattner59b82f92006-01-15 08:54:32 +00001176 break;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001177 }
Chris Lattner59b82f92006-01-15 08:54:32 +00001178 // Since this op produce two values, make sure to remember that we
1179 // legalized both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001180 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1181 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner59b82f92006-01-15 08:54:32 +00001182 return Op.ResNo ? Tmp2 : Tmp1;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001183 }
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001184 case ISD::INLINEASM: {
Chris Lattner97af9d52006-08-08 01:09:31 +00001185 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001186 bool Changed = false;
1187 // Legalize all of the operands of the inline asm, in case they are nodes
1188 // that need to be expanded or something. Note we skip the asm string and
1189 // all of the TargetConstant flags.
1190 SDOperand Op = LegalizeOp(Ops[0]);
1191 Changed = Op != Ops[0];
1192 Ops[0] = Op;
1193
1194 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1195 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1196 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1197 for (++i; NumVals; ++i, --NumVals) {
1198 SDOperand Op = LegalizeOp(Ops[i]);
1199 if (Op != Ops[i]) {
1200 Changed = true;
1201 Ops[i] = Op;
1202 }
1203 }
Chris Lattner476e67b2006-01-26 22:24:51 +00001204 }
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001205
1206 if (HasInFlag) {
1207 Op = LegalizeOp(Ops.back());
1208 Changed |= Op != Ops.back();
1209 Ops.back() = Op;
1210 }
1211
1212 if (Changed)
Chris Lattner97af9d52006-08-08 01:09:31 +00001213 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner476e67b2006-01-26 22:24:51 +00001214
1215 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001216 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner476e67b2006-01-26 22:24:51 +00001217 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1218 return Result.getValue(Op.ResNo);
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001219 }
Chris Lattner68a12142005-01-07 22:12:08 +00001220 case ISD::BR:
1221 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001222 // Ensure that libcalls are emitted before a branch.
1223 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1224 Tmp1 = LegalizeOp(Tmp1);
1225 LastCALLSEQ_END = DAG.getEntryNode();
1226
Chris Lattnerd02b0542006-01-28 10:58:55 +00001227 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner68a12142005-01-07 22:12:08 +00001228 break;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001229 case ISD::BRIND:
1230 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1231 // Ensure that libcalls are emitted before a branch.
1232 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1233 Tmp1 = LegalizeOp(Tmp1);
1234 LastCALLSEQ_END = DAG.getEntryNode();
1235
1236 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1237 default: assert(0 && "Indirect target must be legal type (pointer)!");
1238 case Legal:
1239 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1240 break;
1241 }
1242 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1243 break;
Evan Cheng84a28d42006-10-30 08:00:44 +00001244 case ISD::BR_JT:
1245 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1246 // Ensure that libcalls are emitted before a branch.
1247 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1248 Tmp1 = LegalizeOp(Tmp1);
1249 LastCALLSEQ_END = DAG.getEntryNode();
1250
1251 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1252 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1253
1254 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1255 default: assert(0 && "This action is not supported yet!");
1256 case TargetLowering::Legal: break;
1257 case TargetLowering::Custom:
1258 Tmp1 = TLI.LowerOperation(Result, DAG);
1259 if (Tmp1.Val) Result = Tmp1;
1260 break;
1261 case TargetLowering::Expand: {
1262 SDOperand Chain = Result.getOperand(0);
1263 SDOperand Table = Result.getOperand(1);
1264 SDOperand Index = Result.getOperand(2);
1265
1266 MVT::ValueType PTy = TLI.getPointerTy();
1267 bool isPIC = TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_;
1268 // PIC jump table entries are 32-bit values.
1269 unsigned EntrySize = isPIC ? 4 : MVT::getSizeInBits(PTy)/8;
1270 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1271 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
1272 SDOperand LD = DAG.getLoad(isPIC ? MVT::i32 : PTy, Chain, Addr, NULL, 0);
1273 if (isPIC) {
1274 // For PIC, the sequence is:
1275 // BRIND(load(Jumptable + index) + RelocBase)
1276 // RelocBase is the JumpTable on PPC and X86, GOT on Alpha
1277 SDOperand Reloc;
1278 if (TLI.usesGlobalOffsetTable())
1279 Reloc = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, PTy);
1280 else
1281 Reloc = Table;
Evan Chenge6d58472006-10-31 02:31:00 +00001282 Addr = (PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD;
Evan Cheng84a28d42006-10-30 08:00:44 +00001283 Addr = DAG.getNode(ISD::ADD, PTy, Addr, Reloc);
1284 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
1285 } else {
1286 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD);
1287 }
1288 }
1289 }
1290 break;
Chris Lattnerec3fe7c2005-01-07 08:19:42 +00001291 case ISD::BRCOND:
1292 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001293 // Ensure that libcalls are emitted before a return.
1294 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1295 Tmp1 = LegalizeOp(Tmp1);
1296 LastCALLSEQ_END = DAG.getEntryNode();
1297
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001298 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1299 case Expand: assert(0 && "It's impossible to expand bools");
1300 case Legal:
1301 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1302 break;
1303 case Promote:
1304 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerdb189382006-11-27 04:39:56 +00001305
1306 // The top bits of the promoted condition are not necessarily zero, ensure
1307 // that the value is properly zero extended.
1308 if (!TLI.MaskedValueIsZero(Tmp2,
1309 MVT::getIntVTBitMask(Tmp2.getValueType())^1))
1310 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001311 break;
1312 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001313
1314 // Basic block destination (Op#2) is always legal.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001315 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman371e4952005-08-16 19:49:35 +00001316
1317 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1318 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001319 case TargetLowering::Legal: break;
1320 case TargetLowering::Custom:
1321 Tmp1 = TLI.LowerOperation(Result, DAG);
1322 if (Tmp1.Val) Result = Tmp1;
1323 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001324 case TargetLowering::Expand:
1325 // Expand brcond's setcc into its constituent parts and create a BR_CC
1326 // Node.
1327 if (Tmp2.getOpcode() == ISD::SETCC) {
1328 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1329 Tmp2.getOperand(0), Tmp2.getOperand(1),
1330 Node->getOperand(2));
1331 } else {
1332 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1333 DAG.getCondCode(ISD::SETNE), Tmp2,
1334 DAG.getConstant(0, Tmp2.getValueType()),
1335 Node->getOperand(2));
1336 }
1337 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001338 }
1339 break;
1340 case ISD::BR_CC:
1341 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001342 // Ensure that libcalls are emitted before a branch.
1343 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1344 Tmp1 = LegalizeOp(Tmp1);
1345 LastCALLSEQ_END = DAG.getEntryNode();
1346
Nate Begeman7e7f4392006-02-01 07:19:44 +00001347 Tmp2 = Node->getOperand(2); // LHS
1348 Tmp3 = Node->getOperand(3); // RHS
1349 Tmp4 = Node->getOperand(1); // CC
1350
1351 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1352
1353 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1354 // the LHS is a legal SETCC itself. In this case, we need to compare
1355 // the result against zero to select between true and false values.
1356 if (Tmp3.Val == 0) {
1357 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1358 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001359 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00001360
1361 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1362 Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001363
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001364 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1365 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001366 case TargetLowering::Legal: break;
1367 case TargetLowering::Custom:
1368 Tmp4 = TLI.LowerOperation(Result, DAG);
1369 if (Tmp4.Val) Result = Tmp4;
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001370 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001371 }
Chris Lattnerec3fe7c2005-01-07 08:19:42 +00001372 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001373 case ISD::LOAD: {
Evan Chenge71fe34d2006-10-09 20:57:25 +00001374 LoadSDNode *LD = cast<LoadSDNode>(Node);
1375 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1376 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00001377
Evan Chenge71fe34d2006-10-09 20:57:25 +00001378 ISD::LoadExtType ExtType = LD->getExtensionType();
1379 if (ExtType == ISD::NON_EXTLOAD) {
1380 MVT::ValueType VT = Node->getValueType(0);
1381 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1382 Tmp3 = Result.getValue(0);
1383 Tmp4 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001384
Evan Chenge71fe34d2006-10-09 20:57:25 +00001385 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1386 default: assert(0 && "This action is not supported yet!");
1387 case TargetLowering::Legal: break;
1388 case TargetLowering::Custom:
1389 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1390 if (Tmp1.Val) {
1391 Tmp3 = LegalizeOp(Tmp1);
1392 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001393 }
Evan Chenge71fe34d2006-10-09 20:57:25 +00001394 break;
1395 case TargetLowering::Promote: {
1396 // Only promote a load of vector type to another.
1397 assert(MVT::isVector(VT) && "Cannot promote this load!");
1398 // Change base type to a different vector type.
1399 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1400
1401 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
1402 LD->getSrcValueOffset());
1403 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1404 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001405 break;
Andrew Lenharthb5597e32005-06-30 19:22:37 +00001406 }
Evan Chenge71fe34d2006-10-09 20:57:25 +00001407 }
1408 // Since loads produce two values, make sure to remember that we
1409 // legalized both of them.
1410 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1411 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1412 return Op.ResNo ? Tmp4 : Tmp3;
1413 } else {
Evan Chengd35734b2006-10-11 07:10:22 +00001414 MVT::ValueType SrcVT = LD->getLoadedVT();
Evan Chenge71fe34d2006-10-09 20:57:25 +00001415 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1416 default: assert(0 && "This action is not supported yet!");
1417 case TargetLowering::Promote:
1418 assert(SrcVT == MVT::i1 &&
1419 "Can only promote extending LOAD from i1 -> i8!");
1420 Result = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1421 LD->getSrcValue(), LD->getSrcValueOffset(),
1422 MVT::i8);
1423 Tmp1 = Result.getValue(0);
1424 Tmp2 = Result.getValue(1);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001425 break;
Evan Chenge71fe34d2006-10-09 20:57:25 +00001426 case TargetLowering::Custom:
1427 isCustom = true;
1428 // FALLTHROUGH
1429 case TargetLowering::Legal:
1430 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1431 Tmp1 = Result.getValue(0);
1432 Tmp2 = Result.getValue(1);
1433
1434 if (isCustom) {
1435 Tmp3 = TLI.LowerOperation(Result, DAG);
1436 if (Tmp3.Val) {
1437 Tmp1 = LegalizeOp(Tmp3);
1438 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1439 }
1440 }
1441 break;
1442 case TargetLowering::Expand:
1443 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
1444 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1445 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
1446 LD->getSrcValueOffset());
1447 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
1448 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1449 Tmp2 = LegalizeOp(Load.getValue(1));
1450 break;
1451 }
1452 assert(ExtType != ISD::EXTLOAD && "EXTLOAD should always be supported!");
1453 // Turn the unsupported load into an EXTLOAD followed by an explicit
1454 // zero/sign extend inreg.
1455 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1456 Tmp1, Tmp2, LD->getSrcValue(),
1457 LD->getSrcValueOffset(), SrcVT);
1458 SDOperand ValRes;
1459 if (ExtType == ISD::SEXTLOAD)
1460 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1461 Result, DAG.getValueType(SrcVT));
1462 else
1463 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
1464 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1465 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1466 break;
1467 }
1468 // Since loads produce two values, make sure to remember that we legalized
1469 // both of them.
1470 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1471 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1472 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001473 }
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001474 }
Nate Begeman5172ce62005-10-19 00:06:56 +00001475 case ISD::EXTRACT_ELEMENT: {
1476 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1477 switch (getTypeAction(OpTy)) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001478 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5172ce62005-10-19 00:06:56 +00001479 case Legal:
1480 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1481 // 1 -> Hi
1482 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1483 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1484 TLI.getShiftAmountTy()));
1485 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1486 } else {
1487 // 0 -> Lo
1488 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1489 Node->getOperand(0));
1490 }
Nate Begeman5172ce62005-10-19 00:06:56 +00001491 break;
1492 case Expand:
1493 // Get both the low and high parts.
1494 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1495 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1496 Result = Tmp2; // 1 -> Hi
1497 else
1498 Result = Tmp1; // 0 -> Lo
1499 break;
1500 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001501 break;
Nate Begeman5172ce62005-10-19 00:06:56 +00001502 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001503
1504 case ISD::CopyToReg:
1505 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukman835702a2005-04-21 22:36:52 +00001506
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00001507 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattner33182322005-08-16 21:55:35 +00001508 "Register type must be legal!");
Chris Lattnere3c67e92005-12-18 15:27:43 +00001509 // Legalize the incoming value (must be a legal type).
Chris Lattner33182322005-08-16 21:55:35 +00001510 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001511 if (Node->getNumValues() == 1) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001512 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattnere3c67e92005-12-18 15:27:43 +00001513 } else {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001514 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001515 if (Node->getNumOperands() == 4) {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001516 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001517 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1518 Tmp3);
1519 } else {
1520 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattnere3c67e92005-12-18 15:27:43 +00001521 }
1522
1523 // Since this produces two values, make sure to remember that we legalized
1524 // both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001525 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnere3c67e92005-12-18 15:27:43 +00001526 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001527 return Result;
Chris Lattnere3c67e92005-12-18 15:27:43 +00001528 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001529 break;
1530
1531 case ISD::RET:
1532 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001533
1534 // Ensure that libcalls are emitted before a return.
1535 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1536 Tmp1 = LegalizeOp(Tmp1);
1537 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001538
Chris Lattnerdc750592005-01-07 07:47:09 +00001539 switch (Node->getNumOperands()) {
Evan Chenga2e99532006-05-26 23:09:09 +00001540 case 3: // ret val
Evan Cheng7256b0a2006-04-11 06:33:39 +00001541 Tmp2 = Node->getOperand(1);
Evan Chenga2e99532006-05-26 23:09:09 +00001542 Tmp3 = Node->getOperand(2); // Signness
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001543 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattnerdc750592005-01-07 07:47:09 +00001544 case Legal:
Evan Chenga2e99532006-05-26 23:09:09 +00001545 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattnerdc750592005-01-07 07:47:09 +00001546 break;
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001547 case Expand:
1548 if (Tmp2.getValueType() != MVT::Vector) {
1549 SDOperand Lo, Hi;
1550 ExpandOp(Tmp2, Lo, Hi);
Evan Chenga2e99532006-05-26 23:09:09 +00001551 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattner451b0992006-08-21 20:24:53 +00001552 Result = LegalizeOp(Result);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001553 } else {
1554 SDNode *InVal = Tmp2.Val;
1555 unsigned NumElems =
1556 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1557 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1558
1559 // Figure out if there is a Packed type corresponding to this Vector
1560 // type. If so, convert to the packed type.
1561 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1562 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1563 // Turn this into a return of the packed type.
1564 Tmp2 = PackVectorOp(Tmp2, TVT);
Evan Chenga2e99532006-05-26 23:09:09 +00001565 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001566 } else if (NumElems == 1) {
1567 // Turn this into a return of the scalar type.
1568 Tmp2 = PackVectorOp(Tmp2, EVT);
Evan Chenga2e99532006-05-26 23:09:09 +00001569 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00001570
1571 // FIXME: Returns of gcc generic vectors smaller than a legal type
1572 // should be returned in integer registers!
1573
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001574 // The scalarized value type may not be legal, e.g. it might require
1575 // promotion or expansion. Relegalize the return.
1576 Result = LegalizeOp(Result);
1577 } else {
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00001578 // FIXME: Returns of gcc generic vectors larger than a legal vector
1579 // type should be returned by reference!
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001580 SDOperand Lo, Hi;
1581 SplitVectorOp(Tmp2, Lo, Hi);
Evan Chenga2e99532006-05-26 23:09:09 +00001582 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00001583 Result = LegalizeOp(Result);
1584 }
1585 }
Misha Brukman835702a2005-04-21 22:36:52 +00001586 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001587 case Promote:
Chris Lattner4d978642005-01-15 22:16:26 +00001588 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Chenga2e99532006-05-26 23:09:09 +00001589 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001590 Result = LegalizeOp(Result);
Chris Lattner4d978642005-01-15 22:16:26 +00001591 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001592 }
1593 break;
1594 case 1: // ret void
Chris Lattnerd02b0542006-01-28 10:58:55 +00001595 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerdc750592005-01-07 07:47:09 +00001596 break;
1597 default: { // ret <values>
Chris Lattner97af9d52006-08-08 01:09:31 +00001598 SmallVector<SDOperand, 8> NewValues;
Chris Lattnerdc750592005-01-07 07:47:09 +00001599 NewValues.push_back(Tmp1);
Evan Chenga2e99532006-05-26 23:09:09 +00001600 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattnerdc750592005-01-07 07:47:09 +00001601 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1602 case Legal:
Chris Lattner7e6eeba2005-01-08 19:27:05 +00001603 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Chenga2e99532006-05-26 23:09:09 +00001604 NewValues.push_back(Node->getOperand(i+1));
Chris Lattnerdc750592005-01-07 07:47:09 +00001605 break;
1606 case Expand: {
1607 SDOperand Lo, Hi;
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00001608 assert(Node->getOperand(i).getValueType() != MVT::Vector &&
1609 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001610 ExpandOp(Node->getOperand(i), Lo, Hi);
1611 NewValues.push_back(Lo);
Evan Chenga2e99532006-05-26 23:09:09 +00001612 NewValues.push_back(Node->getOperand(i+1));
Chris Lattnerdc750592005-01-07 07:47:09 +00001613 NewValues.push_back(Hi);
Evan Chenga2e99532006-05-26 23:09:09 +00001614 NewValues.push_back(Node->getOperand(i+1));
Misha Brukman835702a2005-04-21 22:36:52 +00001615 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001616 }
1617 case Promote:
Chris Lattner4d978642005-01-15 22:16:26 +00001618 assert(0 && "Can't promote multiple return value yet!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001619 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001620
1621 if (NewValues.size() == Node->getNumOperands())
Chris Lattner97af9d52006-08-08 01:09:31 +00001622 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerd02b0542006-01-28 10:58:55 +00001623 else
Chris Lattner97af9d52006-08-08 01:09:31 +00001624 Result = DAG.getNode(ISD::RET, MVT::Other,
1625 &NewValues[0], NewValues.size());
Chris Lattnerdc750592005-01-07 07:47:09 +00001626 break;
1627 }
1628 }
Evan Chengf35b1c82006-01-06 00:41:43 +00001629
Chris Lattner4d1ea712006-01-29 21:02:23 +00001630 if (Result.getOpcode() == ISD::RET) {
1631 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1632 default: assert(0 && "This action is not supported yet!");
1633 case TargetLowering::Legal: break;
1634 case TargetLowering::Custom:
1635 Tmp1 = TLI.LowerOperation(Result, DAG);
1636 if (Tmp1.Val) Result = Tmp1;
1637 break;
1638 }
Evan Chengf35b1c82006-01-06 00:41:43 +00001639 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001640 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001641 case ISD::STORE: {
Evan Chengab51cf22006-10-13 21:14:26 +00001642 StoreSDNode *ST = cast<StoreSDNode>(Node);
1643 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
1644 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Chris Lattnerdc750592005-01-07 07:47:09 +00001645
Evan Chengab51cf22006-10-13 21:14:26 +00001646 if (!ST->isTruncatingStore()) {
1647 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
1648 // FIXME: We shouldn't do this for TargetConstantFP's.
1649 // FIXME: move this to the DAG Combiner!
1650 if (ConstantFPSDNode *CFP =dyn_cast<ConstantFPSDNode>(ST->getValue())) {
1651 if (CFP->getValueType(0) == MVT::f32) {
1652 Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
1653 } else {
1654 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
1655 Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
1656 }
1657 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1658 ST->getSrcValueOffset());
1659 break;
Chris Lattnere69daaf2005-01-08 06:25:56 +00001660 }
Chris Lattnere69daaf2005-01-08 06:25:56 +00001661
Evan Chengab51cf22006-10-13 21:14:26 +00001662 switch (getTypeAction(ST->getStoredVT())) {
1663 case Legal: {
1664 Tmp3 = LegalizeOp(ST->getValue());
1665 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1666 ST->getOffset());
Evan Cheng31d15fa2005-12-23 07:29:34 +00001667
Evan Chengab51cf22006-10-13 21:14:26 +00001668 MVT::ValueType VT = Tmp3.getValueType();
1669 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1670 default: assert(0 && "This action is not supported yet!");
1671 case TargetLowering::Legal: break;
1672 case TargetLowering::Custom:
1673 Tmp1 = TLI.LowerOperation(Result, DAG);
1674 if (Tmp1.Val) Result = Tmp1;
1675 break;
1676 case TargetLowering::Promote:
1677 assert(MVT::isVector(VT) && "Unknown legal promote case!");
1678 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
1679 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
1680 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
1681 ST->getSrcValue(), ST->getSrcValueOffset());
1682 break;
1683 }
1684 break;
1685 }
1686 case Promote:
1687 // Truncate the value and store the result.
1688 Tmp3 = PromoteOp(ST->getValue());
1689 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1690 ST->getSrcValueOffset(), ST->getStoredVT());
1691 break;
1692
1693 case Expand:
1694 unsigned IncrementSize = 0;
1695 SDOperand Lo, Hi;
1696
1697 // If this is a vector type, then we have to calculate the increment as
1698 // the product of the element size in bytes, and the number of elements
1699 // in the high half of the vector.
1700 if (ST->getValue().getValueType() == MVT::Vector) {
1701 SDNode *InVal = ST->getValue().Val;
1702 unsigned NumElems =
1703 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1704 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1705
1706 // Figure out if there is a Packed type corresponding to this Vector
1707 // type. If so, convert to the packed type.
1708 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1709 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1710 // Turn this into a normal store of the packed type.
1711 Tmp3 = PackVectorOp(Node->getOperand(1), TVT);
1712 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1713 ST->getSrcValueOffset());
1714 Result = LegalizeOp(Result);
1715 break;
1716 } else if (NumElems == 1) {
1717 // Turn this into a normal store of the scalar type.
1718 Tmp3 = PackVectorOp(Node->getOperand(1), EVT);
1719 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1720 ST->getSrcValueOffset());
1721 // The scalarized value type may not be legal, e.g. it might require
1722 // promotion or expansion. Relegalize the scalar store.
1723 Result = LegalizeOp(Result);
1724 break;
1725 } else {
1726 SplitVectorOp(Node->getOperand(1), Lo, Hi);
1727 IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
1728 }
1729 } else {
1730 ExpandOp(Node->getOperand(1), Lo, Hi);
1731 IncrementSize = MVT::getSizeInBits(Hi.getValueType())/8;
1732
1733 if (!TLI.isLittleEndian())
1734 std::swap(Lo, Hi);
1735 }
1736
1737 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
1738 ST->getSrcValueOffset());
1739 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1740 getIntPtrConstant(IncrementSize));
1741 assert(isTypeLegal(Tmp2.getValueType()) &&
1742 "Pointers must be legal!");
1743 // FIXME: This sets the srcvalue of both halves to be the same, which is
1744 // wrong.
1745 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
1746 ST->getSrcValueOffset());
1747 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1748 break;
1749 }
1750 } else {
1751 // Truncating store
1752 assert(isTypeLegal(ST->getValue().getValueType()) &&
1753 "Cannot handle illegal TRUNCSTORE yet!");
1754 Tmp3 = LegalizeOp(ST->getValue());
1755
1756 // The only promote case we handle is TRUNCSTORE:i1 X into
1757 // -> TRUNCSTORE:i8 (and X, 1)
1758 if (ST->getStoredVT() == MVT::i1 &&
1759 TLI.getStoreXAction(MVT::i1) == TargetLowering::Promote) {
1760 // Promote the bool to a mask then store.
1761 Tmp3 = DAG.getNode(ISD::AND, Tmp3.getValueType(), Tmp3,
1762 DAG.getConstant(1, Tmp3.getValueType()));
1763 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1764 ST->getSrcValueOffset(), MVT::i8);
1765 } else if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
1766 Tmp2 != ST->getBasePtr()) {
1767 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1768 ST->getOffset());
1769 }
1770
1771 MVT::ValueType StVT = cast<StoreSDNode>(Result.Val)->getStoredVT();
1772 switch (TLI.getStoreXAction(StVT)) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001773 default: assert(0 && "This action is not supported yet!");
Evan Chengab51cf22006-10-13 21:14:26 +00001774 case TargetLowering::Legal: break;
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001775 case TargetLowering::Custom:
1776 Tmp1 = TLI.LowerOperation(Result, DAG);
1777 if (Tmp1.Val) Result = Tmp1;
1778 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001779 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001780 }
1781 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001782 }
Andrew Lenharthdec53922005-03-31 21:24:06 +00001783 case ISD::PCMARKER:
1784 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001785 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharthdec53922005-03-31 21:24:06 +00001786 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001787 case ISD::STACKSAVE:
1788 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001789 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1790 Tmp1 = Result.getValue(0);
1791 Tmp2 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001792
Chris Lattnerb3266452006-01-13 02:50:02 +00001793 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1794 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001795 case TargetLowering::Legal: break;
1796 case TargetLowering::Custom:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001797 Tmp3 = TLI.LowerOperation(Result, DAG);
1798 if (Tmp3.Val) {
1799 Tmp1 = LegalizeOp(Tmp3);
1800 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattnerb3266452006-01-13 02:50:02 +00001801 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001802 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001803 case TargetLowering::Expand:
Chris Lattnered9b3e12006-01-13 17:48:44 +00001804 // Expand to CopyFromReg if the target set
1805 // StackPointerRegisterToSaveRestore.
1806 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001807 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattnered9b3e12006-01-13 17:48:44 +00001808 Node->getValueType(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001809 Tmp2 = Tmp1.getValue(1);
Chris Lattnered9b3e12006-01-13 17:48:44 +00001810 } else {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001811 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1812 Tmp2 = Node->getOperand(0);
Chris Lattnered9b3e12006-01-13 17:48:44 +00001813 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001814 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001815 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001816
1817 // Since stacksave produce two values, make sure to remember that we
1818 // legalized both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001819 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1820 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1821 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001822
Chris Lattnerb3266452006-01-13 02:50:02 +00001823 case ISD::STACKRESTORE:
1824 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1825 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001826 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattnerb3266452006-01-13 02:50:02 +00001827
1828 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1829 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001830 case TargetLowering::Legal: break;
1831 case TargetLowering::Custom:
1832 Tmp1 = TLI.LowerOperation(Result, DAG);
1833 if (Tmp1.Val) Result = Tmp1;
Chris Lattnerb3266452006-01-13 02:50:02 +00001834 break;
1835 case TargetLowering::Expand:
Chris Lattnered9b3e12006-01-13 17:48:44 +00001836 // Expand to CopyToReg if the target set
1837 // StackPointerRegisterToSaveRestore.
1838 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1839 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1840 } else {
1841 Result = Tmp1;
1842 }
Chris Lattnerb3266452006-01-13 02:50:02 +00001843 break;
1844 }
1845 break;
1846
Andrew Lenharth01aa5632005-11-11 16:47:30 +00001847 case ISD::READCYCLECOUNTER:
1848 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerd02b0542006-01-28 10:58:55 +00001849 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng69739932006-11-29 08:26:18 +00001850 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
1851 Node->getValueType(0))) {
1852 default: assert(0 && "This action is not supported yet!");
1853 case TargetLowering::Legal: break;
1854 case TargetLowering::Custom:
1855 Result = TLI.LowerOperation(Result, DAG);
1856 break;
1857 }
Andrew Lenharth73420b32005-12-02 04:56:24 +00001858
1859 // Since rdcc produce two values, make sure to remember that we legalized
1860 // both of them.
Evan Cheng69739932006-11-29 08:26:18 +00001861 AddLegalizedOperand(SDOperand(Node, 0), LegalizeOp(Result.getValue(0)));
1862 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Result.getValue(1)));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001863 return Result;
Andrew Lenharth627cbd42005-11-20 21:32:07 +00001864
Chris Lattner39c67442005-01-14 22:08:15 +00001865 case ISD::SELECT:
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001866 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1867 case Expand: assert(0 && "It's impossible to expand bools");
1868 case Legal:
1869 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1870 break;
1871 case Promote:
1872 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattner3abb6362006-11-28 01:03:30 +00001873 // Make sure the condition is either zero or one.
1874 if (!TLI.MaskedValueIsZero(Tmp1,
1875 MVT::getIntVTBitMask(Tmp1.getValueType())^1))
1876 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001877 break;
1878 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001879 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner39c67442005-01-14 22:08:15 +00001880 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner3c0dd462005-01-16 07:29:19 +00001881
Chris Lattnerd02b0542006-01-28 10:58:55 +00001882 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001883
Nate Begeman987121a2005-08-23 04:29:48 +00001884 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner3c0dd462005-01-16 07:29:19 +00001885 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001886 case TargetLowering::Legal: break;
1887 case TargetLowering::Custom: {
1888 Tmp1 = TLI.LowerOperation(Result, DAG);
1889 if (Tmp1.Val) Result = Tmp1;
1890 break;
1891 }
Nate Begemane5b86d72005-08-10 20:51:12 +00001892 case TargetLowering::Expand:
1893 if (Tmp1.getOpcode() == ISD::SETCC) {
1894 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
1895 Tmp2, Tmp3,
1896 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1897 } else {
1898 Result = DAG.getSelectCC(Tmp1,
1899 DAG.getConstant(0, Tmp1.getValueType()),
1900 Tmp2, Tmp3, ISD::SETNE);
1901 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00001902 break;
1903 case TargetLowering::Promote: {
1904 MVT::ValueType NVT =
1905 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1906 unsigned ExtOp, TruncOp;
Evan Chengbe8a8932006-04-12 16:33:18 +00001907 if (MVT::isVector(Tmp2.getValueType())) {
1908 ExtOp = ISD::BIT_CONVERT;
1909 TruncOp = ISD::BIT_CONVERT;
1910 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001911 ExtOp = ISD::ANY_EXTEND;
1912 TruncOp = ISD::TRUNCATE;
Chris Lattner3c0dd462005-01-16 07:29:19 +00001913 } else {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001914 ExtOp = ISD::FP_EXTEND;
1915 TruncOp = ISD::FP_ROUND;
Chris Lattner3c0dd462005-01-16 07:29:19 +00001916 }
1917 // Promote each of the values to the new type.
1918 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
1919 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
1920 // Perform the larger operation, then round down.
1921 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
1922 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
1923 break;
1924 }
1925 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001926 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +00001927 case ISD::SELECT_CC: {
1928 Tmp1 = Node->getOperand(0); // LHS
1929 Tmp2 = Node->getOperand(1); // RHS
Nate Begemane5b86d72005-08-10 20:51:12 +00001930 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
1931 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman7e7f4392006-02-01 07:19:44 +00001932 SDOperand CC = Node->getOperand(4);
Nate Begemane5b86d72005-08-10 20:51:12 +00001933
Nate Begeman7e7f4392006-02-01 07:19:44 +00001934 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
1935
1936 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1937 // the LHS is a legal SETCC itself. In this case, we need to compare
1938 // the result against zero to select between true and false values.
1939 if (Tmp2.Val == 0) {
1940 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
1941 CC = DAG.getCondCode(ISD::SETNE);
1942 }
1943 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
1944
1945 // Everything is legal, see if we should expand this op or something.
1946 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
1947 default: assert(0 && "This action is not supported yet!");
1948 case TargetLowering::Legal: break;
1949 case TargetLowering::Custom:
1950 Tmp1 = TLI.LowerOperation(Result, DAG);
1951 if (Tmp1.Val) Result = Tmp1;
Nate Begemane5b86d72005-08-10 20:51:12 +00001952 break;
Nate Begemane5b86d72005-08-10 20:51:12 +00001953 }
1954 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +00001955 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001956 case ISD::SETCC:
Nate Begeman7e7f4392006-02-01 07:19:44 +00001957 Tmp1 = Node->getOperand(0);
1958 Tmp2 = Node->getOperand(1);
1959 Tmp3 = Node->getOperand(2);
1960 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
1961
1962 // If we had to Expand the SetCC operands into a SELECT node, then it may
1963 // not always be possible to return a true LHS & RHS. In this case, just
1964 // return the value we legalized, returned in the LHS
1965 if (Tmp2.Val == 0) {
1966 Result = Tmp1;
Chris Lattnerdc750592005-01-07 07:47:09 +00001967 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001968 }
Nate Begeman987121a2005-08-23 04:29:48 +00001969
Chris Lattnerf263a232006-01-30 22:43:50 +00001970 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001971 default: assert(0 && "Cannot handle this action for SETCC yet!");
1972 case TargetLowering::Custom:
1973 isCustom = true;
1974 // FALLTHROUGH.
1975 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001976 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001977 if (isCustom) {
1978 Tmp3 = TLI.LowerOperation(Result, DAG);
1979 if (Tmp3.Val) Result = Tmp3;
1980 }
Nate Begeman987121a2005-08-23 04:29:48 +00001981 break;
Andrew Lenharth6ee85662005-11-30 17:12:26 +00001982 case TargetLowering::Promote: {
1983 // First step, figure out the appropriate operation to use.
1984 // Allow SETCC to not be supported for all legal data types
1985 // Mostly this targets FP
1986 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
1987 MVT::ValueType OldVT = NewInTy;
1988
1989 // Scan for the appropriate larger type to use.
1990 while (1) {
1991 NewInTy = (MVT::ValueType)(NewInTy+1);
1992
1993 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
1994 "Fell off of the edge of the integer world");
1995 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
1996 "Fell off of the edge of the floating point world");
1997
1998 // If the target supports SETCC of this type, use it.
Chris Lattner1408c052005-12-22 05:23:45 +00001999 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharth6ee85662005-11-30 17:12:26 +00002000 break;
2001 }
2002 if (MVT::isInteger(NewInTy))
2003 assert(0 && "Cannot promote Legal Integer SETCC yet");
2004 else {
2005 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2006 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2007 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002008 Tmp1 = LegalizeOp(Tmp1);
2009 Tmp2 = LegalizeOp(Tmp2);
2010 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Cheng6f86a7d2006-01-17 19:47:13 +00002011 Result = LegalizeOp(Result);
Andrew Lenharth835cbb32005-08-29 20:46:51 +00002012 break;
Andrew Lenharth6ee85662005-11-30 17:12:26 +00002013 }
Nate Begeman987121a2005-08-23 04:29:48 +00002014 case TargetLowering::Expand:
2015 // Expand a setcc node into a select_cc of the same condition, lhs, and
2016 // rhs that selects between const 1 (true) and const 0 (false).
2017 MVT::ValueType VT = Node->getValueType(0);
2018 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2019 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
2020 Node->getOperand(2));
Nate Begeman987121a2005-08-23 04:29:48 +00002021 break;
2022 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002023 break;
Chris Lattner85d70c62005-01-11 05:57:22 +00002024 case ISD::MEMSET:
2025 case ISD::MEMCPY:
2026 case ISD::MEMMOVE: {
Chris Lattner4487b2e2005-02-01 18:38:28 +00002027 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002028 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
2029
2030 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
2031 switch (getTypeAction(Node->getOperand(2).getValueType())) {
2032 case Expand: assert(0 && "Cannot expand a byte!");
2033 case Legal:
Chris Lattner4487b2e2005-02-01 18:38:28 +00002034 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002035 break;
2036 case Promote:
Chris Lattner4487b2e2005-02-01 18:38:28 +00002037 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002038 break;
2039 }
2040 } else {
Misha Brukman835702a2005-04-21 22:36:52 +00002041 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002042 }
Chris Lattner5aa75e42005-02-02 03:44:41 +00002043
2044 SDOperand Tmp4;
2045 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattnerba08a332005-07-13 01:42:45 +00002046 case Expand: {
2047 // Length is too big, just take the lo-part of the length.
2048 SDOperand HiPart;
Chris Lattner94c231f2006-11-07 04:11:44 +00002049 ExpandOp(Node->getOperand(3), Tmp4, HiPart);
Chris Lattnerba08a332005-07-13 01:42:45 +00002050 break;
2051 }
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002052 case Legal:
2053 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002054 break;
2055 case Promote:
2056 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner5aa75e42005-02-02 03:44:41 +00002057 break;
2058 }
2059
2060 SDOperand Tmp5;
2061 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2062 case Expand: assert(0 && "Cannot expand this yet!");
2063 case Legal:
2064 Tmp5 = LegalizeOp(Node->getOperand(4));
2065 break;
2066 case Promote:
Chris Lattnera4cfafe2005-01-28 22:29:18 +00002067 Tmp5 = PromoteOp(Node->getOperand(4));
2068 break;
2069 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002070
2071 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2072 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002073 case TargetLowering::Custom:
2074 isCustom = true;
2075 // FALLTHROUGH
Chris Lattner3c0dd462005-01-16 07:29:19 +00002076 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002077 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002078 if (isCustom) {
2079 Tmp1 = TLI.LowerOperation(Result, DAG);
2080 if (Tmp1.Val) Result = Tmp1;
2081 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002082 break;
2083 case TargetLowering::Expand: {
Chris Lattner85d70c62005-01-11 05:57:22 +00002084 // Otherwise, the target does not support this operation. Lower the
2085 // operation to an explicit libcall as appropriate.
2086 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Anderson20a631f2006-05-03 01:29:57 +00002087 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Chris Lattner85d70c62005-01-11 05:57:22 +00002088 std::vector<std::pair<SDOperand, const Type*> > Args;
2089
Reid Spencer6dced922005-01-12 14:53:45 +00002090 const char *FnName = 0;
Chris Lattner85d70c62005-01-11 05:57:22 +00002091 if (Node->getOpcode() == ISD::MEMSET) {
2092 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
Chris Lattner486d1bc2006-02-20 06:38:35 +00002093 // Extend the (previously legalized) ubyte argument to be an int value
2094 // for the call.
2095 if (Tmp3.getValueType() > MVT::i32)
2096 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2097 else
2098 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Chris Lattner85d70c62005-01-11 05:57:22 +00002099 Args.push_back(std::make_pair(Tmp3, Type::IntTy));
2100 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2101
2102 FnName = "memset";
2103 } else if (Node->getOpcode() == ISD::MEMCPY ||
2104 Node->getOpcode() == ISD::MEMMOVE) {
2105 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
2106 Args.push_back(std::make_pair(Tmp3, IntPtrTy));
2107 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2108 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2109 } else {
2110 assert(0 && "Unknown op!");
2111 }
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002112
Chris Lattner85d70c62005-01-11 05:57:22 +00002113 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattner2e77db62005-05-13 18:50:42 +00002114 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, CallingConv::C, false,
Chris Lattner85d70c62005-01-11 05:57:22 +00002115 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002116 Result = CallResult.second;
Chris Lattner3c0dd462005-01-16 07:29:19 +00002117 break;
2118 }
Chris Lattner85d70c62005-01-11 05:57:22 +00002119 }
2120 break;
2121 }
Chris Lattner5385db52005-05-09 20:23:03 +00002122
Chris Lattner4157c412005-04-02 04:00:59 +00002123 case ISD::SHL_PARTS:
2124 case ISD::SRA_PARTS:
2125 case ISD::SRL_PARTS: {
Chris Lattner97af9d52006-08-08 01:09:31 +00002126 SmallVector<SDOperand, 8> Ops;
Chris Lattnerb3f83b282005-01-20 18:52:28 +00002127 bool Changed = false;
2128 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2129 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2130 Changed |= Ops.back() != Node->getOperand(i);
2131 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002132 if (Changed)
Chris Lattner97af9d52006-08-08 01:09:31 +00002133 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner13fe99c2005-04-02 05:00:07 +00002134
Evan Cheng870e4f82006-01-09 18:31:59 +00002135 switch (TLI.getOperationAction(Node->getOpcode(),
2136 Node->getValueType(0))) {
2137 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002138 case TargetLowering::Legal: break;
2139 case TargetLowering::Custom:
2140 Tmp1 = TLI.LowerOperation(Result, DAG);
2141 if (Tmp1.Val) {
2142 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng870e4f82006-01-09 18:31:59 +00002143 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002144 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng870e4f82006-01-09 18:31:59 +00002145 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2146 if (i == Op.ResNo)
Evan Cheng13e8c9d2006-01-19 04:54:52 +00002147 RetVal = Tmp2;
Evan Cheng870e4f82006-01-09 18:31:59 +00002148 }
Chris Lattnerfb5f4652006-01-10 19:43:26 +00002149 assert(RetVal.Val && "Illegal result number");
Evan Cheng870e4f82006-01-09 18:31:59 +00002150 return RetVal;
2151 }
Evan Cheng870e4f82006-01-09 18:31:59 +00002152 break;
2153 }
2154
Chris Lattner13fe99c2005-04-02 05:00:07 +00002155 // Since these produce multiple values, make sure to remember that we
2156 // legalized all of them.
2157 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2158 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2159 return Result.getValue(Op.ResNo);
Chris Lattnerb3f83b282005-01-20 18:52:28 +00002160 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002161
2162 // Binary operators
Chris Lattnerdc750592005-01-07 07:47:09 +00002163 case ISD::ADD:
2164 case ISD::SUB:
2165 case ISD::MUL:
Nate Begemanadd0c632005-04-11 03:01:51 +00002166 case ISD::MULHS:
2167 case ISD::MULHU:
Chris Lattnerdc750592005-01-07 07:47:09 +00002168 case ISD::UDIV:
2169 case ISD::SDIV:
Chris Lattnerdc750592005-01-07 07:47:09 +00002170 case ISD::AND:
2171 case ISD::OR:
2172 case ISD::XOR:
Chris Lattner32f20bf2005-01-07 21:45:56 +00002173 case ISD::SHL:
2174 case ISD::SRL:
2175 case ISD::SRA:
Chris Lattner6f3b5772005-09-28 22:28:18 +00002176 case ISD::FADD:
2177 case ISD::FSUB:
2178 case ISD::FMUL:
2179 case ISD::FDIV:
Chris Lattnerdc750592005-01-07 07:47:09 +00002180 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharth80fe4112005-07-05 19:52:39 +00002181 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2182 case Expand: assert(0 && "Not possible");
2183 case Legal:
2184 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2185 break;
2186 case Promote:
2187 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2188 break;
2189 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002190
2191 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002192
Andrew Lenharth72594262005-12-24 23:42:32 +00002193 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner87f08092006-04-02 03:57:31 +00002194 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002195 case TargetLowering::Legal: break;
2196 case TargetLowering::Custom:
2197 Tmp1 = TLI.LowerOperation(Result, DAG);
2198 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth30db2ec2005-12-25 01:07:37 +00002199 break;
Chris Lattner87f08092006-04-02 03:57:31 +00002200 case TargetLowering::Expand: {
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00002201 if (Node->getValueType(0) == MVT::i32) {
2202 switch (Node->getOpcode()) {
2203 default: assert(0 && "Do not know how to expand this integer BinOp!");
2204 case ISD::UDIV:
2205 case ISD::SDIV:
2206 const char *FnName = Node->getOpcode() == ISD::UDIV
2207 ? "__udivsi3" : "__divsi3";
2208 SDOperand Dummy;
2209 Result = ExpandLibCall(FnName, Node, Dummy);
2210 };
2211 break;
2212 }
2213
Chris Lattner87f08092006-04-02 03:57:31 +00002214 assert(MVT::isVector(Node->getValueType(0)) &&
2215 "Cannot expand this binary operator!");
2216 // Expand the operation into a bunch of nasty scalar code.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002217 SmallVector<SDOperand, 8> Ops;
Chris Lattner87f08092006-04-02 03:57:31 +00002218 MVT::ValueType EltVT = MVT::getVectorBaseType(Node->getValueType(0));
2219 MVT::ValueType PtrVT = TLI.getPointerTy();
2220 for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2221 i != e; ++i) {
2222 SDOperand Idx = DAG.getConstant(i, PtrVT);
2223 SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2224 SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2225 Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2226 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002227 Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0),
2228 &Ops[0], Ops.size());
Chris Lattner87f08092006-04-02 03:57:31 +00002229 break;
2230 }
Evan Cheng119266e2006-04-12 21:20:24 +00002231 case TargetLowering::Promote: {
2232 switch (Node->getOpcode()) {
2233 default: assert(0 && "Do not know how to promote this BinOp!");
2234 case ISD::AND:
2235 case ISD::OR:
2236 case ISD::XOR: {
2237 MVT::ValueType OVT = Node->getValueType(0);
2238 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2239 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2240 // Bit convert each of the values to the new type.
2241 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2242 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2243 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2244 // Bit convert the result back the original type.
2245 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2246 break;
2247 }
2248 }
2249 }
Andrew Lenharth72594262005-12-24 23:42:32 +00002250 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002251 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00002252
2253 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2254 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2255 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2256 case Expand: assert(0 && "Not possible");
2257 case Legal:
2258 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2259 break;
2260 case Promote:
2261 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2262 break;
2263 }
2264
2265 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2266
2267 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2268 default: assert(0 && "Operation not supported");
2269 case TargetLowering::Custom:
2270 Tmp1 = TLI.LowerOperation(Result, DAG);
2271 if (Tmp1.Val) Result = Tmp1;
Chris Lattner994d8e62006-03-13 06:08:38 +00002272 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00002273 case TargetLowering::Legal: break;
2274 case TargetLowering::Expand:
Chris Lattner994d8e62006-03-13 06:08:38 +00002275 // If this target supports fabs/fneg natively, do this efficiently.
2276 if (TLI.isOperationLegal(ISD::FABS, Tmp1.getValueType()) &&
2277 TLI.isOperationLegal(ISD::FNEG, Tmp1.getValueType())) {
2278 // Get the sign bit of the RHS.
2279 MVT::ValueType IVT =
2280 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2281 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2282 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2283 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2284 // Get the absolute value of the result.
2285 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2286 // Select between the nabs and abs value based on the sign bit of
2287 // the input.
2288 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2289 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2290 AbsVal),
2291 AbsVal);
2292 Result = LegalizeOp(Result);
2293 break;
2294 }
2295
2296 // Otherwise, do bitwise ops!
2297
2298 // copysign -> copysignf/copysign libcall.
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00002299 const char *FnName;
2300 if (Node->getValueType(0) == MVT::f32) {
2301 FnName = "copysignf";
2302 if (Tmp2.getValueType() != MVT::f32) // Force operands to match type.
2303 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2304 DAG.getNode(ISD::FP_ROUND, MVT::f32, Tmp2));
2305 } else {
2306 FnName = "copysign";
2307 if (Tmp2.getValueType() != MVT::f64) // Force operands to match type.
2308 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2309 DAG.getNode(ISD::FP_EXTEND, MVT::f64, Tmp2));
2310 }
2311 SDOperand Dummy;
2312 Result = ExpandLibCall(FnName, Node, Dummy);
2313 break;
2314 }
2315 break;
2316
Nate Begeman5965bd12006-02-17 05:43:56 +00002317 case ISD::ADDC:
2318 case ISD::SUBC:
2319 Tmp1 = LegalizeOp(Node->getOperand(0));
2320 Tmp2 = LegalizeOp(Node->getOperand(1));
2321 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2322 // Since this produces two values, make sure to remember that we legalized
2323 // both of them.
2324 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2325 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2326 return Result;
Misha Brukman835702a2005-04-21 22:36:52 +00002327
Nate Begeman5965bd12006-02-17 05:43:56 +00002328 case ISD::ADDE:
2329 case ISD::SUBE:
2330 Tmp1 = LegalizeOp(Node->getOperand(0));
2331 Tmp2 = LegalizeOp(Node->getOperand(1));
2332 Tmp3 = LegalizeOp(Node->getOperand(2));
2333 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2334 // Since this produces two values, make sure to remember that we legalized
2335 // both of them.
2336 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2337 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2338 return Result;
Nate Begeman5965bd12006-02-17 05:43:56 +00002339
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002340 case ISD::BUILD_PAIR: {
2341 MVT::ValueType PairTy = Node->getValueType(0);
2342 // TODO: handle the case where the Lo and Hi operands are not of legal type
2343 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2344 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2345 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002346 case TargetLowering::Promote:
2347 case TargetLowering::Custom:
2348 assert(0 && "Cannot promote/custom this yet!");
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002349 case TargetLowering::Legal:
2350 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2351 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2352 break;
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002353 case TargetLowering::Expand:
2354 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2355 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2356 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2357 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2358 TLI.getShiftAmountTy()));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002359 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begemanbd5f41a2005-10-18 00:27:41 +00002360 break;
2361 }
2362 break;
2363 }
2364
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002365 case ISD::UREM:
2366 case ISD::SREM:
Chris Lattner6f3b5772005-09-28 22:28:18 +00002367 case ISD::FREM:
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002368 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2369 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002370
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002371 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002372 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2373 case TargetLowering::Custom:
2374 isCustom = true;
2375 // FALLTHROUGH
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002376 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002377 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002378 if (isCustom) {
2379 Tmp1 = TLI.LowerOperation(Result, DAG);
2380 if (Tmp1.Val) Result = Tmp1;
2381 }
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002382 break;
Chris Lattner81914422005-08-03 20:31:37 +00002383 case TargetLowering::Expand:
Evan Cheng1fc7c362006-09-18 23:28:33 +00002384 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Chris Lattner81914422005-08-03 20:31:37 +00002385 if (MVT::isInteger(Node->getValueType(0))) {
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00002386 if (TLI.getOperationAction(DivOpc, Node->getValueType(0)) ==
2387 TargetLowering::Legal) {
2388 // X % Y -> X-X/Y*Y
2389 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng1fc7c362006-09-18 23:28:33 +00002390 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00002391 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2392 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2393 } else {
2394 assert(Node->getValueType(0) == MVT::i32 &&
2395 "Cannot expand this binary operator!");
2396 const char *FnName = Node->getOpcode() == ISD::UREM
2397 ? "__umodsi3" : "__modsi3";
2398 SDOperand Dummy;
2399 Result = ExpandLibCall(FnName, Node, Dummy);
2400 }
Chris Lattner81914422005-08-03 20:31:37 +00002401 } else {
2402 // Floating point mod -> fmod libcall.
2403 const char *FnName = Node->getValueType(0) == MVT::f32 ? "fmodf":"fmod";
2404 SDOperand Dummy;
Chris Lattner10f67752006-01-28 04:28:26 +00002405 Result = ExpandLibCall(FnName, Node, Dummy);
Nate Begeman20b7d2a2005-04-06 00:23:54 +00002406 }
2407 break;
2408 }
2409 break;
Nate Begemane74795c2006-01-25 18:21:52 +00002410 case ISD::VAARG: {
2411 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2412 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2413
Chris Lattner364b89a2006-01-28 07:42:08 +00002414 MVT::ValueType VT = Node->getValueType(0);
Nate Begemane74795c2006-01-25 18:21:52 +00002415 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2416 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002417 case TargetLowering::Custom:
2418 isCustom = true;
2419 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00002420 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002421 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2422 Result = Result.getValue(0);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002423 Tmp1 = Result.getValue(1);
2424
2425 if (isCustom) {
2426 Tmp2 = TLI.LowerOperation(Result, DAG);
2427 if (Tmp2.Val) {
2428 Result = LegalizeOp(Tmp2);
2429 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2430 }
2431 }
Nate Begemane74795c2006-01-25 18:21:52 +00002432 break;
2433 case TargetLowering::Expand: {
Evan Chenge71fe34d2006-10-09 20:57:25 +00002434 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begemane74795c2006-01-25 18:21:52 +00002435 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Chenge71fe34d2006-10-09 20:57:25 +00002436 SV->getValue(), SV->getOffset());
Nate Begemane74795c2006-01-25 18:21:52 +00002437 // Increment the pointer, VAList, to the next vaarg
2438 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2439 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2440 TLI.getPointerTy()));
2441 // Store the incremented VAList to the legalized pointer
Evan Chengab51cf22006-10-13 21:14:26 +00002442 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
2443 SV->getOffset());
Nate Begemane74795c2006-01-25 18:21:52 +00002444 // Load the actual argument out of the pointer VAList
Evan Chenge71fe34d2006-10-09 20:57:25 +00002445 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002446 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemane74795c2006-01-25 18:21:52 +00002447 Result = LegalizeOp(Result);
2448 break;
2449 }
2450 }
2451 // Since VAARG produces two values, make sure to remember that we
2452 // legalized both of them.
2453 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002454 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2455 return Op.ResNo ? Tmp1 : Result;
Nate Begemane74795c2006-01-25 18:21:52 +00002456 }
2457
2458 case ISD::VACOPY:
2459 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2460 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2461 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
2462
2463 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2464 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002465 case TargetLowering::Custom:
2466 isCustom = true;
2467 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00002468 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002469 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2470 Node->getOperand(3), Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002471 if (isCustom) {
2472 Tmp1 = TLI.LowerOperation(Result, DAG);
2473 if (Tmp1.Val) Result = Tmp1;
2474 }
Nate Begemane74795c2006-01-25 18:21:52 +00002475 break;
2476 case TargetLowering::Expand:
2477 // This defaults to loading a pointer from the input and storing it to the
2478 // output, returning the chain.
Evan Chenge71fe34d2006-10-09 20:57:25 +00002479 SrcValueSDNode *SVD = cast<SrcValueSDNode>(Node->getOperand(3));
Evan Chengab51cf22006-10-13 21:14:26 +00002480 SrcValueSDNode *SVS = cast<SrcValueSDNode>(Node->getOperand(4));
Evan Chenge71fe34d2006-10-09 20:57:25 +00002481 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, SVD->getValue(),
2482 SVD->getOffset());
Evan Chengab51cf22006-10-13 21:14:26 +00002483 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, SVS->getValue(),
2484 SVS->getOffset());
Nate Begemane74795c2006-01-25 18:21:52 +00002485 break;
2486 }
2487 break;
2488
2489 case ISD::VAEND:
2490 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2491 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2492
2493 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2494 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002495 case TargetLowering::Custom:
2496 isCustom = true;
2497 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00002498 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002499 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002500 if (isCustom) {
2501 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2502 if (Tmp1.Val) Result = Tmp1;
2503 }
Nate Begemane74795c2006-01-25 18:21:52 +00002504 break;
2505 case TargetLowering::Expand:
2506 Result = Tmp1; // Default to a no-op, return the chain
2507 break;
2508 }
2509 break;
2510
2511 case ISD::VASTART:
2512 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2513 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2514
Chris Lattnerd02b0542006-01-28 10:58:55 +00002515 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2516
Nate Begemane74795c2006-01-25 18:21:52 +00002517 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2518 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002519 case TargetLowering::Legal: break;
2520 case TargetLowering::Custom:
2521 Tmp1 = TLI.LowerOperation(Result, DAG);
2522 if (Tmp1.Val) Result = Tmp1;
Nate Begemane74795c2006-01-25 18:21:52 +00002523 break;
2524 }
2525 break;
2526
Nate Begeman1b8121b2006-01-11 21:21:00 +00002527 case ISD::ROTL:
2528 case ISD::ROTR:
2529 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2530 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002531
2532 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
2533 "Cannot handle this yet!");
Chris Lattnerd02b0542006-01-28 10:58:55 +00002534 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Nate Begeman1b8121b2006-01-11 21:21:00 +00002535 break;
2536
Nate Begeman2fba8a32006-01-14 03:14:10 +00002537 case ISD::BSWAP:
2538 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2539 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002540 case TargetLowering::Custom:
2541 assert(0 && "Cannot custom legalize this yet!");
2542 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002543 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002544 break;
2545 case TargetLowering::Promote: {
2546 MVT::ValueType OVT = Tmp1.getValueType();
2547 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2548 unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
Nate Begeman2fba8a32006-01-14 03:14:10 +00002549
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002550 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2551 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2552 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2553 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2554 break;
2555 }
2556 case TargetLowering::Expand:
2557 Result = ExpandBSWAP(Tmp1);
2558 break;
Nate Begeman2fba8a32006-01-14 03:14:10 +00002559 }
2560 break;
2561
Andrew Lenharth5e177822005-05-03 17:19:30 +00002562 case ISD::CTPOP:
2563 case ISD::CTTZ:
2564 case ISD::CTLZ:
2565 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2566 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002567 case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
Andrew Lenharth5e177822005-05-03 17:19:30 +00002568 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002569 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth5e177822005-05-03 17:19:30 +00002570 break;
2571 case TargetLowering::Promote: {
2572 MVT::ValueType OVT = Tmp1.getValueType();
2573 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner55e9cde2005-05-11 04:51:16 +00002574
2575 // Zero extend the argument.
Andrew Lenharth5e177822005-05-03 17:19:30 +00002576 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2577 // Perform the larger operation, then subtract if needed.
2578 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002579 switch (Node->getOpcode()) {
Andrew Lenharth5e177822005-05-03 17:19:30 +00002580 case ISD::CTPOP:
2581 Result = Tmp1;
2582 break;
2583 case ISD::CTTZ:
2584 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattnerd47675e2005-08-09 20:20:18 +00002585 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2586 DAG.getConstant(getSizeInBits(NVT), NVT),
2587 ISD::SETEQ);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002588 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Andrew Lenharth5e177822005-05-03 17:19:30 +00002589 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2590 break;
2591 case ISD::CTLZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002592 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002593 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2594 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharth5e177822005-05-03 17:19:30 +00002595 getSizeInBits(OVT), NVT));
2596 break;
2597 }
2598 break;
2599 }
Andrew Lenharth5e177822005-05-03 17:19:30 +00002600 case TargetLowering::Expand:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002601 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth5e177822005-05-03 17:19:30 +00002602 break;
2603 }
2604 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002605
Chris Lattner13fe99c2005-04-02 05:00:07 +00002606 // Unary operators
2607 case ISD::FABS:
2608 case ISD::FNEG:
Chris Lattner9d6fa982005-04-28 21:44:33 +00002609 case ISD::FSQRT:
2610 case ISD::FSIN:
2611 case ISD::FCOS:
Chris Lattner13fe99c2005-04-02 05:00:07 +00002612 Tmp1 = LegalizeOp(Node->getOperand(0));
2613 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002614 case TargetLowering::Promote:
2615 case TargetLowering::Custom:
Evan Cheng2443ab92006-01-31 18:14:25 +00002616 isCustom = true;
2617 // FALLTHROUGH
Chris Lattner13fe99c2005-04-02 05:00:07 +00002618 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002619 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng2443ab92006-01-31 18:14:25 +00002620 if (isCustom) {
2621 Tmp1 = TLI.LowerOperation(Result, DAG);
2622 if (Tmp1.Val) Result = Tmp1;
2623 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002624 break;
Chris Lattner13fe99c2005-04-02 05:00:07 +00002625 case TargetLowering::Expand:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002626 switch (Node->getOpcode()) {
2627 default: assert(0 && "Unreachable!");
2628 case ISD::FNEG:
Chris Lattner13fe99c2005-04-02 05:00:07 +00002629 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2630 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002631 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattner80026402005-04-30 04:43:14 +00002632 break;
Chris Lattner80026402005-04-30 04:43:14 +00002633 case ISD::FABS: {
Chris Lattnera0c72cf2005-04-02 05:26:37 +00002634 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2635 MVT::ValueType VT = Node->getValueType(0);
2636 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattnerd47675e2005-08-09 20:20:18 +00002637 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattnera0c72cf2005-04-02 05:26:37 +00002638 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2639 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattner80026402005-04-30 04:43:14 +00002640 break;
2641 }
2642 case ISD::FSQRT:
2643 case ISD::FSIN:
2644 case ISD::FCOS: {
2645 MVT::ValueType VT = Node->getValueType(0);
Chris Lattner80026402005-04-30 04:43:14 +00002646 const char *FnName = 0;
2647 switch(Node->getOpcode()) {
2648 case ISD::FSQRT: FnName = VT == MVT::f32 ? "sqrtf" : "sqrt"; break;
2649 case ISD::FSIN: FnName = VT == MVT::f32 ? "sinf" : "sin"; break;
2650 case ISD::FCOS: FnName = VT == MVT::f32 ? "cosf" : "cos"; break;
2651 default: assert(0 && "Unreachable!");
2652 }
Nate Begeman77558da2005-08-04 21:43:28 +00002653 SDOperand Dummy;
Chris Lattner10f67752006-01-28 04:28:26 +00002654 Result = ExpandLibCall(FnName, Node, Dummy);
Chris Lattner80026402005-04-30 04:43:14 +00002655 break;
2656 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002657 }
2658 break;
2659 }
2660 break;
Chris Lattnerf0359b32006-09-09 06:03:30 +00002661 case ISD::FPOWI: {
2662 // We always lower FPOWI into a libcall. No target support it yet.
2663 const char *FnName = Node->getValueType(0) == MVT::f32
2664 ? "__powisf2" : "__powidf2";
2665 SDOperand Dummy;
2666 Result = ExpandLibCall(FnName, Node, Dummy);
2667 break;
2668 }
Chris Lattner36e663d2005-12-23 00:16:34 +00002669 case ISD::BIT_CONVERT:
Chris Lattner763dfd72006-01-23 07:30:46 +00002670 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner36e663d2005-12-23 00:16:34 +00002671 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Chris Lattner763dfd72006-01-23 07:30:46 +00002672 } else {
Chris Lattner36e663d2005-12-23 00:16:34 +00002673 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2674 Node->getOperand(0).getValueType())) {
2675 default: assert(0 && "Unknown operation action!");
2676 case TargetLowering::Expand:
2677 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2678 break;
2679 case TargetLowering::Legal:
2680 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002681 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner36e663d2005-12-23 00:16:34 +00002682 break;
2683 }
2684 }
2685 break;
Chris Lattnera4f68052006-03-24 02:26:29 +00002686 case ISD::VBIT_CONVERT: {
2687 assert(Op.getOperand(0).getValueType() == MVT::Vector &&
2688 "Can only have VBIT_CONVERT where input or output is MVT::Vector!");
2689
2690 // The input has to be a vector type, we have to either scalarize it, pack
2691 // it, or convert it based on whether the input vector type is legal.
2692 SDNode *InVal = Node->getOperand(0).Val;
2693 unsigned NumElems =
2694 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
2695 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
2696
2697 // Figure out if there is a Packed type corresponding to this Vector
2698 // type. If so, convert to the packed type.
2699 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
2700 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
2701 // Turn this into a bit convert of the packed input.
2702 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2703 PackVectorOp(Node->getOperand(0), TVT));
2704 break;
2705 } else if (NumElems == 1) {
2706 // Turn this into a bit convert of the scalar input.
2707 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2708 PackVectorOp(Node->getOperand(0), EVT));
2709 break;
2710 } else {
2711 // FIXME: UNIMP! Store then reload
2712 assert(0 && "Cast from unsupported vector type not implemented yet!");
2713 }
2714 }
2715
Chris Lattner13fe99c2005-04-02 05:00:07 +00002716 // Conversion operators. The source and destination have different types.
Chris Lattner2a6db3c2005-01-08 08:08:56 +00002717 case ISD::SINT_TO_FP:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002718 case ISD::UINT_TO_FP: {
2719 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattnerdc750592005-01-07 07:47:09 +00002720 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2721 case Legal:
Jeff Cohen546fd592005-07-30 18:33:25 +00002722 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002723 Node->getOperand(0).getValueType())) {
2724 default: assert(0 && "Unknown operation action!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002725 case TargetLowering::Custom:
2726 isCustom = true;
2727 // FALLTHROUGH
2728 case TargetLowering::Legal:
2729 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002730 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002731 if (isCustom) {
2732 Tmp1 = TLI.LowerOperation(Result, DAG);
2733 if (Tmp1.Val) Result = Tmp1;
2734 }
2735 break;
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002736 case TargetLowering::Expand:
Jim Laskeyf2516a92005-08-17 00:39:29 +00002737 Result = ExpandLegalINT_TO_FP(isSigned,
2738 LegalizeOp(Node->getOperand(0)),
2739 Node->getValueType(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002740 break;
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002741 case TargetLowering::Promote:
2742 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2743 Node->getValueType(0),
2744 isSigned);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002745 break;
Andrew Lenharth8d17c702005-11-30 06:43:03 +00002746 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002747 break;
Chris Lattnera65a2f02005-01-07 22:37:48 +00002748 case Expand:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002749 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2750 Node->getValueType(0), Node->getOperand(0));
2751 break;
2752 case Promote:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002753 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002754 if (isSigned) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002755 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2756 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002757 } else {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002758 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2759 Node->getOperand(0).getValueType());
Chris Lattneraac464e2005-01-21 06:05:23 +00002760 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002761 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2762 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002763 break;
2764 }
2765 break;
2766 }
2767 case ISD::TRUNCATE:
2768 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2769 case Legal:
2770 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002771 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002772 break;
2773 case Expand:
2774 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2775
2776 // Since the result is legal, we should just be able to truncate the low
2777 // part of the source.
2778 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2779 break;
2780 case Promote:
2781 Result = PromoteOp(Node->getOperand(0));
2782 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2783 break;
2784 }
2785 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00002786
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002787 case ISD::FP_TO_SINT:
2788 case ISD::FP_TO_UINT:
2789 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2790 case Legal:
Chris Lattnerf59b2da2005-07-30 00:04:12 +00002791 Tmp1 = LegalizeOp(Node->getOperand(0));
2792
Chris Lattner44fe26f2005-07-29 00:11:56 +00002793 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2794 default: assert(0 && "Unknown operation action!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002795 case TargetLowering::Custom:
2796 isCustom = true;
2797 // FALLTHROUGH
2798 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002799 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002800 if (isCustom) {
2801 Tmp1 = TLI.LowerOperation(Result, DAG);
2802 if (Tmp1.Val) Result = Tmp1;
2803 }
2804 break;
2805 case TargetLowering::Promote:
2806 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2807 Node->getOpcode() == ISD::FP_TO_SINT);
2808 break;
Chris Lattner44fe26f2005-07-29 00:11:56 +00002809 case TargetLowering::Expand:
Nate Begeman36853ee2005-08-14 01:20:53 +00002810 if (Node->getOpcode() == ISD::FP_TO_UINT) {
2811 SDOperand True, False;
2812 MVT::ValueType VT = Node->getOperand(0).getValueType();
2813 MVT::ValueType NVT = Node->getValueType(0);
2814 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2815 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2816 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2817 Node->getOperand(0), Tmp2, ISD::SETLT);
2818 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2819 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner6f3b5772005-09-28 22:28:18 +00002820 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begeman36853ee2005-08-14 01:20:53 +00002821 Tmp2));
2822 False = DAG.getNode(ISD::XOR, NVT, False,
2823 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002824 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2825 break;
Nate Begeman36853ee2005-08-14 01:20:53 +00002826 } else {
2827 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2828 }
2829 break;
Chris Lattnerdff50ca2005-08-26 00:14:16 +00002830 }
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002831 break;
2832 case Expand:
2833 assert(0 && "Shouldn't need to expand other operators here!");
2834 case Promote:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002835 Tmp1 = PromoteOp(Node->getOperand(0));
2836 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2837 Result = LegalizeOp(Result);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002838 break;
2839 }
2840 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00002841
Chris Lattner7753f172005-09-02 00:18:10 +00002842 case ISD::ANY_EXTEND:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002843 case ISD::ZERO_EXTEND:
2844 case ISD::SIGN_EXTEND:
2845 case ISD::FP_EXTEND:
2846 case ISD::FP_ROUND:
2847 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002848 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002849 case Legal:
2850 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002851 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002852 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002853 case Promote:
2854 switch (Node->getOpcode()) {
Chris Lattner7753f172005-09-02 00:18:10 +00002855 case ISD::ANY_EXTEND:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002856 Tmp1 = PromoteOp(Node->getOperand(0));
2857 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner7753f172005-09-02 00:18:10 +00002858 break;
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002859 case ISD::ZERO_EXTEND:
2860 Result = PromoteOp(Node->getOperand(0));
Chris Lattner7753f172005-09-02 00:18:10 +00002861 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner0e852af2005-04-13 02:38:47 +00002862 Result = DAG.getZeroExtendInReg(Result,
2863 Node->getOperand(0).getValueType());
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002864 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002865 case ISD::SIGN_EXTEND:
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002866 Result = PromoteOp(Node->getOperand(0));
Chris Lattner7753f172005-09-02 00:18:10 +00002867 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002868 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00002869 Result,
2870 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002871 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002872 case ISD::FP_EXTEND:
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002873 Result = PromoteOp(Node->getOperand(0));
2874 if (Result.getValueType() != Op.getValueType())
2875 // Dynamically dead while we have only 2 FP types.
2876 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
2877 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002878 case ISD::FP_ROUND:
Chris Lattner3ba56b32005-01-16 05:06:12 +00002879 Result = PromoteOp(Node->getOperand(0));
2880 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
2881 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002882 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002883 }
2884 break;
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002885 case ISD::FP_ROUND_INREG:
Chris Lattner0e852af2005-04-13 02:38:47 +00002886 case ISD::SIGN_EXTEND_INREG: {
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002887 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0b6ba902005-07-10 00:07:11 +00002888 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner99222f72005-01-15 07:15:18 +00002889
2890 // If this operation is not supported, convert it to a shl/shr or load/store
2891 // pair.
Chris Lattner3c0dd462005-01-16 07:29:19 +00002892 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
2893 default: assert(0 && "This action not supported for this op yet!");
2894 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002895 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner3c0dd462005-01-16 07:29:19 +00002896 break;
2897 case TargetLowering::Expand:
Chris Lattner99222f72005-01-15 07:15:18 +00002898 // If this is an integer extend and shifts are supported, do that.
Chris Lattner0e852af2005-04-13 02:38:47 +00002899 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner99222f72005-01-15 07:15:18 +00002900 // NOTE: we could fall back on load/store here too for targets without
2901 // SAR. However, it is doubtful that any exist.
2902 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
2903 MVT::getSizeInBits(ExtraVT);
Chris Lattnerec218372005-01-22 00:31:52 +00002904 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner99222f72005-01-15 07:15:18 +00002905 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
2906 Node->getOperand(0), ShiftCst);
2907 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
2908 Result, ShiftCst);
2909 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey6a4c6d32006-10-11 17:52:19 +00002910 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner99222f72005-01-15 07:15:18 +00002911 // EXTLOAD pair, targetting a temporary location (a stack slot).
2912
2913 // NOTE: there is a choice here between constantly creating new stack
2914 // slots and always reusing the same one. We currently always create
2915 // new ones, as reuse may inhibit scheduling.
2916 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Owen Anderson20a631f2006-05-03 01:29:57 +00002917 unsigned TySize = (unsigned)TLI.getTargetData()->getTypeSize(Ty);
2918 unsigned Align = TLI.getTargetData()->getTypeAlignment(Ty);
Chris Lattner99222f72005-01-15 07:15:18 +00002919 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukman835702a2005-04-21 22:36:52 +00002920 int SSFI =
Chris Lattner99222f72005-01-15 07:15:18 +00002921 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
2922 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Evan Chengab51cf22006-10-13 21:14:26 +00002923 Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
2924 StackSlot, NULL, 0, ExtraVT);
Chris Lattnerde0a4b12005-07-10 01:55:33 +00002925 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
Evan Chenge71fe34d2006-10-09 20:57:25 +00002926 Result, StackSlot, NULL, 0, ExtraVT);
Chris Lattner99222f72005-01-15 07:15:18 +00002927 } else {
2928 assert(0 && "Unknown op");
2929 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002930 break;
Chris Lattner99222f72005-01-15 07:15:18 +00002931 }
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002932 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00002933 }
Chris Lattner99222f72005-01-15 07:15:18 +00002934 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002935
Chris Lattner101ea662006-04-08 04:13:17 +00002936 assert(Result.getValueType() == Op.getValueType() &&
2937 "Bad legalization!");
2938
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002939 // Make sure that the generated code is itself legal.
2940 if (Result != Op)
2941 Result = LegalizeOp(Result);
Chris Lattnerdc750592005-01-07 07:47:09 +00002942
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002943 // Note that LegalizeOp may be reentered even from single-use nodes, which
2944 // means that we always must cache transformed nodes.
2945 AddLegalizedOperand(Op, Result);
Chris Lattnerdc750592005-01-07 07:47:09 +00002946 return Result;
2947}
2948
Chris Lattner4d978642005-01-15 22:16:26 +00002949/// PromoteOp - Given an operation that produces a value in an invalid type,
2950/// promote it to compute the value into a larger type. The produced value will
2951/// have the correct bits for the low portion of the register, but no guarantee
2952/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002953SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
2954 MVT::ValueType VT = Op.getValueType();
Chris Lattner87a769c2005-01-16 01:11:45 +00002955 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002956 assert(getTypeAction(VT) == Promote &&
2957 "Caller should expand or legalize operands that are not promotable!");
2958 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
2959 "Cannot promote to smaller type!");
2960
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002961 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002962 SDOperand Result;
2963 SDNode *Node = Op.Val;
2964
Chris Lattner1a570f12005-09-02 20:32:45 +00002965 std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
2966 if (I != PromotedNodes.end()) return I->second;
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002967
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002968 switch (Node->getOpcode()) {
Chris Lattner33182322005-08-16 21:55:35 +00002969 case ISD::CopyFromReg:
2970 assert(0 && "CopyFromReg must be legal!");
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002971 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00002972#ifndef NDEBUG
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002973 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00002974#endif
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002975 assert(0 && "Do not know how to promote this operator!");
2976 abort();
Nate Begemancda9aa72005-04-01 22:34:39 +00002977 case ISD::UNDEF:
2978 Result = DAG.getNode(ISD::UNDEF, NVT);
2979 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002980 case ISD::Constant:
Chris Lattner9a4ad482005-08-30 16:56:19 +00002981 if (VT != MVT::i1)
2982 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
2983 else
2984 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002985 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
2986 break;
2987 case ISD::ConstantFP:
2988 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
2989 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
2990 break;
Chris Lattner9f2c4a52005-01-18 17:54:55 +00002991
Chris Lattner2cb338d2005-01-18 02:59:52 +00002992 case ISD::SETCC:
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00002993 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattnerd47675e2005-08-09 20:20:18 +00002994 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
2995 Node->getOperand(1), Node->getOperand(2));
Chris Lattner2cb338d2005-01-18 02:59:52 +00002996 break;
Chris Lattnerd3b504a2006-04-12 16:20:43 +00002997
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002998 case ISD::TRUNCATE:
2999 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3000 case Legal:
3001 Result = LegalizeOp(Node->getOperand(0));
3002 assert(Result.getValueType() >= NVT &&
3003 "This truncation doesn't make sense!");
3004 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
3005 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
3006 break;
Chris Lattnerbf8c1ad2005-01-28 22:52:50 +00003007 case Promote:
3008 // The truncation is not required, because we don't guarantee anything
3009 // about high bits anyway.
3010 Result = PromoteOp(Node->getOperand(0));
3011 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003012 case Expand:
Nate Begemancc00a7c2005-04-04 00:57:08 +00003013 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3014 // Truncate the low part of the expanded value to the result type
Chris Lattner4398daf2005-08-01 18:16:37 +00003015 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003016 }
3017 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003018 case ISD::SIGN_EXTEND:
3019 case ISD::ZERO_EXTEND:
Chris Lattner7753f172005-09-02 00:18:10 +00003020 case ISD::ANY_EXTEND:
Chris Lattner4d978642005-01-15 22:16:26 +00003021 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3022 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
3023 case Legal:
3024 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003025 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner4d978642005-01-15 22:16:26 +00003026 break;
3027 case Promote:
3028 // Promote the reg if it's smaller.
3029 Result = PromoteOp(Node->getOperand(0));
3030 // The high bits are not guaranteed to be anything. Insert an extend.
3031 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner05596912005-02-04 18:39:19 +00003032 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner0b6ba902005-07-10 00:07:11 +00003033 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner7753f172005-09-02 00:18:10 +00003034 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner0e852af2005-04-13 02:38:47 +00003035 Result = DAG.getZeroExtendInReg(Result,
3036 Node->getOperand(0).getValueType());
Chris Lattner4d978642005-01-15 22:16:26 +00003037 break;
3038 }
3039 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00003040 case ISD::BIT_CONVERT:
3041 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3042 Result = PromoteOp(Result);
3043 break;
3044
Chris Lattner4d978642005-01-15 22:16:26 +00003045 case ISD::FP_EXTEND:
3046 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
3047 case ISD::FP_ROUND:
3048 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3049 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3050 case Promote: assert(0 && "Unreachable with 2 FP types!");
3051 case Legal:
3052 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003053 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner0b6ba902005-07-10 00:07:11 +00003054 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00003055 break;
3056 }
3057 break;
3058
3059 case ISD::SINT_TO_FP:
3060 case ISD::UINT_TO_FP:
3061 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3062 case Legal:
Chris Lattneraac464e2005-01-21 06:05:23 +00003063 // No extra round required here.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003064 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner4d978642005-01-15 22:16:26 +00003065 break;
3066
3067 case Promote:
3068 Result = PromoteOp(Node->getOperand(0));
3069 if (Node->getOpcode() == ISD::SINT_TO_FP)
3070 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00003071 Result,
3072 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner4d978642005-01-15 22:16:26 +00003073 else
Chris Lattner0e852af2005-04-13 02:38:47 +00003074 Result = DAG.getZeroExtendInReg(Result,
3075 Node->getOperand(0).getValueType());
Chris Lattneraac464e2005-01-21 06:05:23 +00003076 // No extra round required here.
3077 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner4d978642005-01-15 22:16:26 +00003078 break;
3079 case Expand:
Chris Lattneraac464e2005-01-21 06:05:23 +00003080 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3081 Node->getOperand(0));
Chris Lattneraac464e2005-01-21 06:05:23 +00003082 // Round if we cannot tolerate excess precision.
3083 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003084 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3085 DAG.getValueType(VT));
Chris Lattneraac464e2005-01-21 06:05:23 +00003086 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003087 }
Chris Lattner4d978642005-01-15 22:16:26 +00003088 break;
3089
Chris Lattner268d4572005-12-09 17:32:47 +00003090 case ISD::SIGN_EXTEND_INREG:
3091 Result = PromoteOp(Node->getOperand(0));
3092 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3093 Node->getOperand(1));
3094 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003095 case ISD::FP_TO_SINT:
3096 case ISD::FP_TO_UINT:
3097 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3098 case Legal:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003099 Tmp1 = Node->getOperand(0);
Chris Lattner4d978642005-01-15 22:16:26 +00003100 break;
3101 case Promote:
3102 // The input result is prerounded, so we don't have to do anything
3103 // special.
3104 Tmp1 = PromoteOp(Node->getOperand(0));
3105 break;
3106 case Expand:
3107 assert(0 && "not implemented");
3108 }
Nate Begeman36853ee2005-08-14 01:20:53 +00003109 // If we're promoting a UINT to a larger size, check to see if the new node
3110 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3111 // we can use that instead. This allows us to generate better code for
3112 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3113 // legal, such as PowerPC.
3114 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00003115 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemand8f2a1a2005-10-25 23:47:25 +00003116 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3117 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begeman36853ee2005-08-14 01:20:53 +00003118 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3119 } else {
3120 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3121 }
Chris Lattner4d978642005-01-15 22:16:26 +00003122 break;
3123
Chris Lattner13fe99c2005-04-02 05:00:07 +00003124 case ISD::FABS:
3125 case ISD::FNEG:
3126 Tmp1 = PromoteOp(Node->getOperand(0));
3127 assert(Tmp1.getValueType() == NVT);
3128 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3129 // NOTE: we do not have to do any extra rounding here for
3130 // NoExcessFPPrecision, because we know the input will have the appropriate
3131 // precision, and these operations don't modify precision at all.
3132 break;
3133
Chris Lattner9d6fa982005-04-28 21:44:33 +00003134 case ISD::FSQRT:
3135 case ISD::FSIN:
3136 case ISD::FCOS:
3137 Tmp1 = PromoteOp(Node->getOperand(0));
3138 assert(Tmp1.getValueType() == NVT);
3139 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003140 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003141 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3142 DAG.getValueType(VT));
Chris Lattner9d6fa982005-04-28 21:44:33 +00003143 break;
3144
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003145 case ISD::AND:
3146 case ISD::OR:
3147 case ISD::XOR:
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003148 case ISD::ADD:
Chris Lattner4d978642005-01-15 22:16:26 +00003149 case ISD::SUB:
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003150 case ISD::MUL:
3151 // The input may have strange things in the top bits of the registers, but
Chris Lattner6f3b5772005-09-28 22:28:18 +00003152 // these operations don't care. They may have weird bits going out, but
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003153 // that too is okay if they are integer operations.
3154 Tmp1 = PromoteOp(Node->getOperand(0));
3155 Tmp2 = PromoteOp(Node->getOperand(1));
3156 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3157 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner6f3b5772005-09-28 22:28:18 +00003158 break;
3159 case ISD::FADD:
3160 case ISD::FSUB:
3161 case ISD::FMUL:
Chris Lattner6f3b5772005-09-28 22:28:18 +00003162 Tmp1 = PromoteOp(Node->getOperand(0));
3163 Tmp2 = PromoteOp(Node->getOperand(1));
3164 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3165 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3166
3167 // Floating point operations will give excess precision that we may not be
3168 // able to tolerate. If we DO allow excess precision, just leave it,
3169 // otherwise excise it.
Chris Lattner4d978642005-01-15 22:16:26 +00003170 // FIXME: Why would we need to round FP ops more than integer ones?
3171 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner6f3b5772005-09-28 22:28:18 +00003172 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003173 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3174 DAG.getValueType(VT));
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003175 break;
3176
Chris Lattner4d978642005-01-15 22:16:26 +00003177 case ISD::SDIV:
3178 case ISD::SREM:
3179 // These operators require that their input be sign extended.
3180 Tmp1 = PromoteOp(Node->getOperand(0));
3181 Tmp2 = PromoteOp(Node->getOperand(1));
3182 if (MVT::isInteger(NVT)) {
Chris Lattner0b6ba902005-07-10 00:07:11 +00003183 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3184 DAG.getValueType(VT));
3185 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3186 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00003187 }
3188 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3189
3190 // Perform FP_ROUND: this is probably overly pessimistic.
3191 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00003192 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3193 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00003194 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00003195 case ISD::FDIV:
3196 case ISD::FREM:
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003197 case ISD::FCOPYSIGN:
Chris Lattner6f3b5772005-09-28 22:28:18 +00003198 // These operators require that their input be fp extended.
Nate Begeman1a225d22006-05-09 18:20:51 +00003199 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3200 case Legal:
3201 Tmp1 = LegalizeOp(Node->getOperand(0));
3202 break;
3203 case Promote:
3204 Tmp1 = PromoteOp(Node->getOperand(0));
3205 break;
3206 case Expand:
3207 assert(0 && "not implemented");
3208 }
3209 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3210 case Legal:
3211 Tmp2 = LegalizeOp(Node->getOperand(1));
3212 break;
3213 case Promote:
3214 Tmp2 = PromoteOp(Node->getOperand(1));
3215 break;
3216 case Expand:
3217 assert(0 && "not implemented");
3218 }
Chris Lattner6f3b5772005-09-28 22:28:18 +00003219 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3220
3221 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003222 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner6f3b5772005-09-28 22:28:18 +00003223 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3224 DAG.getValueType(VT));
3225 break;
Chris Lattner4d978642005-01-15 22:16:26 +00003226
3227 case ISD::UDIV:
3228 case ISD::UREM:
3229 // These operators require that their input be zero extended.
3230 Tmp1 = PromoteOp(Node->getOperand(0));
3231 Tmp2 = PromoteOp(Node->getOperand(1));
3232 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner0e852af2005-04-13 02:38:47 +00003233 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3234 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner4d978642005-01-15 22:16:26 +00003235 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3236 break;
3237
3238 case ISD::SHL:
3239 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003240 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00003241 break;
3242 case ISD::SRA:
3243 // The input value must be properly sign extended.
3244 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0b6ba902005-07-10 00:07:11 +00003245 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3246 DAG.getValueType(VT));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003247 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00003248 break;
3249 case ISD::SRL:
3250 // The input value must be properly zero extended.
3251 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0e852af2005-04-13 02:38:47 +00003252 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003253 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00003254 break;
Nate Begeman595ec732006-01-28 03:14:31 +00003255
3256 case ISD::VAARG:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003257 Tmp1 = Node->getOperand(0); // Get the chain.
3258 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman595ec732006-01-28 03:14:31 +00003259 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3260 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3261 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3262 } else {
Evan Chenge71fe34d2006-10-09 20:57:25 +00003263 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begeman595ec732006-01-28 03:14:31 +00003264 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Chenge71fe34d2006-10-09 20:57:25 +00003265 SV->getValue(), SV->getOffset());
Nate Begeman595ec732006-01-28 03:14:31 +00003266 // Increment the pointer, VAList, to the next vaarg
3267 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3268 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3269 TLI.getPointerTy()));
3270 // Store the incremented VAList to the legalized pointer
Evan Chengab51cf22006-10-13 21:14:26 +00003271 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
3272 SV->getOffset());
Nate Begeman595ec732006-01-28 03:14:31 +00003273 // Load the actual argument out of the pointer VAList
Evan Chenge71fe34d2006-10-09 20:57:25 +00003274 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman595ec732006-01-28 03:14:31 +00003275 }
3276 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003277 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman595ec732006-01-28 03:14:31 +00003278 break;
3279
Evan Chenge71fe34d2006-10-09 20:57:25 +00003280 case ISD::LOAD: {
3281 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Chengdc6a3aa2006-10-10 07:51:21 +00003282 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
3283 ? ISD::EXTLOAD : LD->getExtensionType();
3284 Result = DAG.getExtLoad(ExtType, NVT,
3285 LD->getChain(), LD->getBasePtr(),
Chris Lattner84384292006-10-10 18:54:19 +00003286 LD->getSrcValue(), LD->getSrcValueOffset(),
Evan Chengd35734b2006-10-11 07:10:22 +00003287 LD->getLoadedVT());
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003288 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003289 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003290 break;
Evan Chenge71fe34d2006-10-09 20:57:25 +00003291 }
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003292 case ISD::SELECT:
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003293 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
3294 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003295 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003296 break;
Nate Begemane5b86d72005-08-10 20:51:12 +00003297 case ISD::SELECT_CC:
3298 Tmp2 = PromoteOp(Node->getOperand(2)); // True
3299 Tmp3 = PromoteOp(Node->getOperand(3)); // False
3300 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003301 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begemane5b86d72005-08-10 20:51:12 +00003302 break;
Nate Begeman2fba8a32006-01-14 03:14:10 +00003303 case ISD::BSWAP:
3304 Tmp1 = Node->getOperand(0);
3305 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3306 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3307 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3308 DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
3309 TLI.getShiftAmountTy()));
3310 break;
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003311 case ISD::CTPOP:
3312 case ISD::CTTZ:
3313 case ISD::CTLZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003314 // Zero extend the argument
3315 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003316 // Perform the larger operation, then subtract if needed.
3317 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003318 switch(Node->getOpcode()) {
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003319 case ISD::CTPOP:
3320 Result = Tmp1;
3321 break;
3322 case ISD::CTTZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003323 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begeman36853ee2005-08-14 01:20:53 +00003324 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Chris Lattnerd47675e2005-08-09 20:20:18 +00003325 DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003326 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003327 DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003328 break;
3329 case ISD::CTLZ:
3330 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003331 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
3332 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00003333 getSizeInBits(VT), NVT));
3334 break;
3335 }
3336 break;
Chris Lattner6f423252006-03-31 17:55:51 +00003337 case ISD::VEXTRACT_VECTOR_ELT:
3338 Result = PromoteOp(LowerVEXTRACT_VECTOR_ELT(Op));
3339 break;
Chris Lattner42a5fca2006-04-02 05:06:04 +00003340 case ISD::EXTRACT_VECTOR_ELT:
3341 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3342 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003343 }
3344
3345 assert(Result.Val && "Didn't set a result!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003346
3347 // Make sure the result is itself legal.
3348 Result = LegalizeOp(Result);
3349
3350 // Remember that we promoted this!
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003351 AddPromotedOperand(Op, Result);
3352 return Result;
3353}
Chris Lattnerdc750592005-01-07 07:47:09 +00003354
Chris Lattner6f423252006-03-31 17:55:51 +00003355/// LowerVEXTRACT_VECTOR_ELT - Lower a VEXTRACT_VECTOR_ELT operation into a
3356/// EXTRACT_VECTOR_ELT operation, to memory operations, or to scalar code based
3357/// on the vector type. The return type of this matches the element type of the
3358/// vector, which may not be legal for the target.
3359SDOperand SelectionDAGLegalize::LowerVEXTRACT_VECTOR_ELT(SDOperand Op) {
3360 // We know that operand #0 is the Vec vector. If the index is a constant
3361 // or if the invec is a supported hardware type, we can use it. Otherwise,
3362 // lower to a store then an indexed load.
3363 SDOperand Vec = Op.getOperand(0);
3364 SDOperand Idx = LegalizeOp(Op.getOperand(1));
3365
3366 SDNode *InVal = Vec.Val;
3367 unsigned NumElems = cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
3368 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
3369
3370 // Figure out if there is a Packed type corresponding to this Vector
3371 // type. If so, convert to the packed type.
3372 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3373 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
3374 // Turn this into a packed extract_vector_elt operation.
3375 Vec = PackVectorOp(Vec, TVT);
3376 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, Op.getValueType(), Vec, Idx);
3377 } else if (NumElems == 1) {
3378 // This must be an access of the only element. Return it.
3379 return PackVectorOp(Vec, EVT);
3380 } else if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
3381 SDOperand Lo, Hi;
3382 SplitVectorOp(Vec, Lo, Hi);
3383 if (CIdx->getValue() < NumElems/2) {
3384 Vec = Lo;
3385 } else {
3386 Vec = Hi;
3387 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3388 }
3389
3390 // It's now an extract from the appropriate high or low part. Recurse.
3391 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3392 return LowerVEXTRACT_VECTOR_ELT(Op);
3393 } else {
3394 // Variable index case for extract element.
3395 // FIXME: IMPLEMENT STORE/LOAD lowering. Need alignment of stack slot!!
3396 assert(0 && "unimp!");
3397 return SDOperand();
3398 }
3399}
3400
Chris Lattner42a5fca2006-04-02 05:06:04 +00003401/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3402/// memory traffic.
3403SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
3404 SDOperand Vector = Op.getOperand(0);
3405 SDOperand Idx = Op.getOperand(1);
3406
3407 // If the target doesn't support this, store the value to a temporary
3408 // stack slot, then LOAD the scalar element back out.
3409 SDOperand StackPtr = CreateStackTemporary(Vector.getValueType());
Evan Chengab51cf22006-10-13 21:14:26 +00003410 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vector, StackPtr, NULL, 0);
Chris Lattner42a5fca2006-04-02 05:06:04 +00003411
3412 // Add the offset to the index.
3413 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3414 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3415 DAG.getConstant(EltSize, Idx.getValueType()));
3416 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3417
Evan Chenge71fe34d2006-10-09 20:57:25 +00003418 return DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner42a5fca2006-04-02 05:06:04 +00003419}
3420
Chris Lattner6f423252006-03-31 17:55:51 +00003421
Nate Begeman7e7f4392006-02-01 07:19:44 +00003422/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3423/// with condition CC on the current target. This usually involves legalizing
3424/// or promoting the arguments. In the case where LHS and RHS must be expanded,
3425/// there may be no choice but to create a new SetCC node to represent the
3426/// legalized value of setcc lhs, rhs. In this case, the value is returned in
3427/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3428void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3429 SDOperand &RHS,
3430 SDOperand &CC) {
3431 SDOperand Tmp1, Tmp2, Result;
3432
3433 switch (getTypeAction(LHS.getValueType())) {
3434 case Legal:
3435 Tmp1 = LegalizeOp(LHS); // LHS
3436 Tmp2 = LegalizeOp(RHS); // RHS
3437 break;
3438 case Promote:
3439 Tmp1 = PromoteOp(LHS); // LHS
3440 Tmp2 = PromoteOp(RHS); // RHS
3441
3442 // If this is an FP compare, the operands have already been extended.
3443 if (MVT::isInteger(LHS.getValueType())) {
3444 MVT::ValueType VT = LHS.getValueType();
3445 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3446
3447 // Otherwise, we have to insert explicit sign or zero extends. Note
3448 // that we could insert sign extends for ALL conditions, but zero extend
3449 // is cheaper on many machines (an AND instead of two shifts), so prefer
3450 // it.
3451 switch (cast<CondCodeSDNode>(CC)->get()) {
3452 default: assert(0 && "Unknown integer comparison!");
3453 case ISD::SETEQ:
3454 case ISD::SETNE:
3455 case ISD::SETUGE:
3456 case ISD::SETUGT:
3457 case ISD::SETULE:
3458 case ISD::SETULT:
3459 // ALL of these operations will work if we either sign or zero extend
3460 // the operands (including the unsigned comparisons!). Zero extend is
3461 // usually a simpler/cheaper operation, so prefer it.
3462 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3463 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3464 break;
3465 case ISD::SETGE:
3466 case ISD::SETGT:
3467 case ISD::SETLT:
3468 case ISD::SETLE:
3469 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3470 DAG.getValueType(VT));
3471 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3472 DAG.getValueType(VT));
3473 break;
3474 }
3475 }
3476 break;
3477 case Expand:
3478 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
3479 ExpandOp(LHS, LHSLo, LHSHi);
3480 ExpandOp(RHS, RHSLo, RHSHi);
3481 switch (cast<CondCodeSDNode>(CC)->get()) {
3482 case ISD::SETEQ:
3483 case ISD::SETNE:
3484 if (RHSLo == RHSHi)
3485 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
3486 if (RHSCST->isAllOnesValue()) {
3487 // Comparison to -1.
3488 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
3489 Tmp2 = RHSLo;
3490 break;
3491 }
3492
3493 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
3494 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
3495 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3496 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3497 break;
3498 default:
3499 // If this is a comparison of the sign bit, just look at the top part.
3500 // X > -1, x < 0
3501 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
3502 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
3503 CST->getValue() == 0) || // X < 0
3504 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
3505 CST->isAllOnesValue())) { // X > -1
3506 Tmp1 = LHSHi;
3507 Tmp2 = RHSHi;
3508 break;
3509 }
3510
3511 // FIXME: This generated code sucks.
3512 ISD::CondCode LowCC;
3513 switch (cast<CondCodeSDNode>(CC)->get()) {
3514 default: assert(0 && "Unknown integer setcc!");
3515 case ISD::SETLT:
3516 case ISD::SETULT: LowCC = ISD::SETULT; break;
3517 case ISD::SETGT:
3518 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
3519 case ISD::SETLE:
3520 case ISD::SETULE: LowCC = ISD::SETULE; break;
3521 case ISD::SETGE:
3522 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
3523 }
3524
3525 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
3526 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
3527 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
3528
3529 // NOTE: on targets without efficient SELECT of bools, we can always use
3530 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
3531 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
3532 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
3533 Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
3534 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
3535 Result, Tmp1, Tmp2));
3536 Tmp1 = Result;
Nate Begeman01bd9d92006-02-01 19:05:15 +00003537 Tmp2 = SDOperand();
Nate Begeman7e7f4392006-02-01 07:19:44 +00003538 }
3539 }
3540 LHS = Tmp1;
3541 RHS = Tmp2;
3542}
3543
Chris Lattner36e663d2005-12-23 00:16:34 +00003544/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner884eb3ad2005-12-23 00:52:30 +00003545/// The resultant code need not be legal. Note that SrcOp is the input operand
3546/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner36e663d2005-12-23 00:16:34 +00003547SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
3548 SDOperand SrcOp) {
3549 // Create the stack frame object.
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003550 SDOperand FIPtr = CreateStackTemporary(DestVT);
Chris Lattner36e663d2005-12-23 00:16:34 +00003551
3552 // Emit a store to the stack slot.
Evan Chengab51cf22006-10-13 21:14:26 +00003553 SDOperand Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, NULL, 0);
Chris Lattner36e663d2005-12-23 00:16:34 +00003554 // Result is a load from the stack slot.
Evan Chenge71fe34d2006-10-09 20:57:25 +00003555 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
Chris Lattner36e663d2005-12-23 00:16:34 +00003556}
3557
Chris Lattner6be79822006-04-04 17:23:26 +00003558SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
3559 // Create a vector sized/aligned stack slot, store the value to element #0,
3560 // then load the whole vector back out.
3561 SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
Evan Chengdf9ac472006-10-05 23:01:46 +00003562 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Evan Chengab51cf22006-10-13 21:14:26 +00003563 NULL, 0);
Evan Chenge71fe34d2006-10-09 20:57:25 +00003564 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, NULL, 0);
Chris Lattner6be79822006-04-04 17:23:26 +00003565}
3566
3567
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003568/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
3569/// support the operation, but do support the resultant packed vector type.
3570SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
3571
3572 // If the only non-undef value is the low element, turn this into a
Chris Lattner21e68c82006-03-20 01:52:29 +00003573 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng1d2e9952006-03-24 01:17:21 +00003574 unsigned NumElems = Node->getNumOperands();
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003575 bool isOnlyLowElement = true;
Chris Lattner21e68c82006-03-20 01:52:29 +00003576 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng1d2e9952006-03-24 01:17:21 +00003577 std::map<SDOperand, std::vector<unsigned> > Values;
3578 Values[SplatValue].push_back(0);
Chris Lattner77e271c2006-03-24 07:29:17 +00003579 bool isConstant = true;
3580 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
3581 SplatValue.getOpcode() != ISD::UNDEF)
3582 isConstant = false;
3583
Evan Cheng1d2e9952006-03-24 01:17:21 +00003584 for (unsigned i = 1; i < NumElems; ++i) {
3585 SDOperand V = Node->getOperand(i);
Chris Lattner73eb58e2006-04-19 23:17:50 +00003586 Values[V].push_back(i);
Evan Cheng1d2e9952006-03-24 01:17:21 +00003587 if (V.getOpcode() != ISD::UNDEF)
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003588 isOnlyLowElement = false;
Evan Cheng1d2e9952006-03-24 01:17:21 +00003589 if (SplatValue != V)
Chris Lattner21e68c82006-03-20 01:52:29 +00003590 SplatValue = SDOperand(0,0);
Chris Lattner77e271c2006-03-24 07:29:17 +00003591
3592 // If this isn't a constant element or an undef, we can't use a constant
3593 // pool load.
3594 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
3595 V.getOpcode() != ISD::UNDEF)
3596 isConstant = false;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003597 }
3598
3599 if (isOnlyLowElement) {
3600 // If the low element is an undef too, then this whole things is an undef.
3601 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
3602 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
3603 // Otherwise, turn this into a scalar_to_vector node.
3604 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3605 Node->getOperand(0));
3606 }
3607
Chris Lattner77e271c2006-03-24 07:29:17 +00003608 // If all elements are constants, create a load from the constant pool.
3609 if (isConstant) {
3610 MVT::ValueType VT = Node->getValueType(0);
3611 const Type *OpNTy =
3612 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
3613 std::vector<Constant*> CV;
3614 for (unsigned i = 0, e = NumElems; i != e; ++i) {
3615 if (ConstantFPSDNode *V =
3616 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
3617 CV.push_back(ConstantFP::get(OpNTy, V->getValue()));
3618 } else if (ConstantSDNode *V =
3619 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00003620 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner77e271c2006-03-24 07:29:17 +00003621 } else {
3622 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
3623 CV.push_back(UndefValue::get(OpNTy));
3624 }
3625 }
3626 Constant *CP = ConstantPacked::get(CV);
3627 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Chenge71fe34d2006-10-09 20:57:25 +00003628 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner77e271c2006-03-24 07:29:17 +00003629 }
3630
Chris Lattner21e68c82006-03-20 01:52:29 +00003631 if (SplatValue.Val) { // Splat of one value?
3632 // Build the shuffle constant vector: <0, 0, 0, 0>
3633 MVT::ValueType MaskVT =
Evan Cheng1d2e9952006-03-24 01:17:21 +00003634 MVT::getIntVectorWithNumElements(NumElems);
Chris Lattner21e68c82006-03-20 01:52:29 +00003635 SDOperand Zero = DAG.getConstant(0, MVT::getVectorBaseType(MaskVT));
Evan Cheng1d2e9952006-03-24 01:17:21 +00003636 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003637 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3638 &ZeroVec[0], ZeroVec.size());
Chris Lattner21e68c82006-03-20 01:52:29 +00003639
3640 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner6be79822006-04-04 17:23:26 +00003641 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner21e68c82006-03-20 01:52:29 +00003642 // Get the splatted value into the low element of a vector register.
3643 SDOperand LowValVec =
3644 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
3645
3646 // Return shuffle(LowValVec, undef, <0,0,0,0>)
3647 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
3648 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
3649 SplatMask);
3650 }
3651 }
3652
Evan Cheng1d2e9952006-03-24 01:17:21 +00003653 // If there are only two unique elements, we may be able to turn this into a
3654 // vector shuffle.
3655 if (Values.size() == 2) {
3656 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
3657 MVT::ValueType MaskVT =
3658 MVT::getIntVectorWithNumElements(NumElems);
3659 std::vector<SDOperand> MaskVec(NumElems);
3660 unsigned i = 0;
3661 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3662 E = Values.end(); I != E; ++I) {
3663 for (std::vector<unsigned>::iterator II = I->second.begin(),
3664 EE = I->second.end(); II != EE; ++II)
3665 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorBaseType(MaskVT));
3666 i += NumElems;
3667 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003668 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3669 &MaskVec[0], MaskVec.size());
Evan Cheng1d2e9952006-03-24 01:17:21 +00003670
3671 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner6be79822006-04-04 17:23:26 +00003672 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
3673 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003674 SmallVector<SDOperand, 8> Ops;
Evan Cheng1d2e9952006-03-24 01:17:21 +00003675 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3676 E = Values.end(); I != E; ++I) {
3677 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3678 I->first);
3679 Ops.push_back(Op);
3680 }
3681 Ops.push_back(ShuffleMask);
3682
3683 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003684 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
3685 &Ops[0], Ops.size());
Evan Cheng1d2e9952006-03-24 01:17:21 +00003686 }
3687 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003688
3689 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
3690 // aligned object on the stack, store each element into it, then load
3691 // the result as a vector.
3692 MVT::ValueType VT = Node->getValueType(0);
3693 // Create the stack frame object.
3694 SDOperand FIPtr = CreateStackTemporary(VT);
3695
3696 // Emit a store of each element to the stack slot.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003697 SmallVector<SDOperand, 8> Stores;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003698 unsigned TypeByteSize =
3699 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003700 // Store (in the right endianness) the elements to memory.
3701 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3702 // Ignore undef elements.
3703 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
3704
Chris Lattner8fa445a2006-03-22 01:46:54 +00003705 unsigned Offset = TypeByteSize*i;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003706
3707 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
3708 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
3709
Evan Chengdf9ac472006-10-05 23:01:46 +00003710 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Chengab51cf22006-10-13 21:14:26 +00003711 NULL, 0));
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003712 }
3713
3714 SDOperand StoreChain;
3715 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003716 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3717 &Stores[0], Stores.size());
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003718 else
3719 StoreChain = DAG.getEntryNode();
3720
3721 // Result is a load from the stack slot.
Evan Chenge71fe34d2006-10-09 20:57:25 +00003722 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00003723}
3724
3725/// CreateStackTemporary - Create a stack temporary, suitable for holding the
3726/// specified value type.
3727SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
3728 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3729 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
3730 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, ByteSize);
3731 return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
3732}
3733
Chris Lattner4157c412005-04-02 04:00:59 +00003734void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
3735 SDOperand Op, SDOperand Amt,
3736 SDOperand &Lo, SDOperand &Hi) {
3737 // Expand the subcomponents.
3738 SDOperand LHSL, LHSH;
3739 ExpandOp(Op, LHSL, LHSH);
3740
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003741 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerbd887772006-08-14 23:53:35 +00003742 MVT::ValueType VT = LHSL.getValueType();
3743 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner4157c412005-04-02 04:00:59 +00003744 Hi = Lo.getValue(1);
3745}
3746
3747
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003748/// ExpandShift - Try to find a clever way to expand this shift operation out to
3749/// smaller elements. If we can't find a way that is more efficient than a
3750/// libcall on this target, return false. Otherwise, return true with the
3751/// low-parts expanded into Lo and Hi.
3752bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
3753 SDOperand &Lo, SDOperand &Hi) {
3754 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
3755 "This is not a shift!");
Nate Begemanb0674922005-04-06 21:13:14 +00003756
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003757 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanb0674922005-04-06 21:13:14 +00003758 SDOperand ShAmt = LegalizeOp(Amt);
3759 MVT::ValueType ShTy = ShAmt.getValueType();
3760 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
3761 unsigned NVTBits = MVT::getSizeInBits(NVT);
3762
3763 // Handle the case when Amt is an immediate. Other cases are currently broken
3764 // and are disabled.
3765 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
3766 unsigned Cst = CN->getValue();
3767 // Expand the incoming operand to be shifted, so that we have its parts
3768 SDOperand InL, InH;
3769 ExpandOp(Op, InL, InH);
3770 switch(Opc) {
3771 case ISD::SHL:
3772 if (Cst > VTBits) {
3773 Lo = DAG.getConstant(0, NVT);
3774 Hi = DAG.getConstant(0, NVT);
3775 } else if (Cst > NVTBits) {
3776 Lo = DAG.getConstant(0, NVT);
3777 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneredd19702005-04-11 20:08:52 +00003778 } else if (Cst == NVTBits) {
3779 Lo = DAG.getConstant(0, NVT);
3780 Hi = InL;
Nate Begemanb0674922005-04-06 21:13:14 +00003781 } else {
3782 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
3783 Hi = DAG.getNode(ISD::OR, NVT,
3784 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
3785 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
3786 }
3787 return true;
3788 case ISD::SRL:
3789 if (Cst > VTBits) {
3790 Lo = DAG.getConstant(0, NVT);
3791 Hi = DAG.getConstant(0, NVT);
3792 } else if (Cst > NVTBits) {
3793 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
3794 Hi = DAG.getConstant(0, NVT);
Chris Lattneredd19702005-04-11 20:08:52 +00003795 } else if (Cst == NVTBits) {
3796 Lo = InH;
3797 Hi = DAG.getConstant(0, NVT);
Nate Begemanb0674922005-04-06 21:13:14 +00003798 } else {
3799 Lo = DAG.getNode(ISD::OR, NVT,
3800 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3801 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3802 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
3803 }
3804 return true;
3805 case ISD::SRA:
3806 if (Cst > VTBits) {
Misha Brukman835702a2005-04-21 22:36:52 +00003807 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00003808 DAG.getConstant(NVTBits-1, ShTy));
3809 } else if (Cst > NVTBits) {
Misha Brukman835702a2005-04-21 22:36:52 +00003810 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00003811 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukman835702a2005-04-21 22:36:52 +00003812 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00003813 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneredd19702005-04-11 20:08:52 +00003814 } else if (Cst == NVTBits) {
3815 Lo = InH;
Misha Brukman835702a2005-04-21 22:36:52 +00003816 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneredd19702005-04-11 20:08:52 +00003817 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanb0674922005-04-06 21:13:14 +00003818 } else {
3819 Lo = DAG.getNode(ISD::OR, NVT,
3820 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3821 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3822 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
3823 }
3824 return true;
3825 }
3826 }
Chris Lattner875ea0c2006-09-20 03:38:48 +00003827
3828 // Okay, the shift amount isn't constant. However, if we can tell that it is
3829 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
3830 uint64_t Mask = NVTBits, KnownZero, KnownOne;
3831 TLI.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
3832
3833 // If we know that the high bit of the shift amount is one, then we can do
3834 // this as a couple of simple shifts.
3835 if (KnownOne & Mask) {
3836 // Mask out the high bit, which we know is set.
3837 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
3838 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3839
3840 // Expand the incoming operand to be shifted, so that we have its parts
3841 SDOperand InL, InH;
3842 ExpandOp(Op, InL, InH);
3843 switch(Opc) {
3844 case ISD::SHL:
3845 Lo = DAG.getConstant(0, NVT); // Low part is zero.
3846 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
3847 return true;
3848 case ISD::SRL:
3849 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
3850 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
3851 return true;
3852 case ISD::SRA:
3853 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
3854 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3855 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
3856 return true;
3857 }
3858 }
3859
3860 // If we know that the high bit of the shift amount is zero, then we can do
3861 // this as a couple of simple shifts.
3862 if (KnownZero & Mask) {
3863 // Compute 32-amt.
3864 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
3865 DAG.getConstant(NVTBits, Amt.getValueType()),
3866 Amt);
3867
3868 // Expand the incoming operand to be shifted, so that we have its parts
3869 SDOperand InL, InH;
3870 ExpandOp(Op, InL, InH);
3871 switch(Opc) {
3872 case ISD::SHL:
3873 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
3874 Hi = DAG.getNode(ISD::OR, NVT,
3875 DAG.getNode(ISD::SHL, NVT, InH, Amt),
3876 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
3877 return true;
3878 case ISD::SRL:
3879 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
3880 Lo = DAG.getNode(ISD::OR, NVT,
3881 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3882 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3883 return true;
3884 case ISD::SRA:
3885 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
3886 Lo = DAG.getNode(ISD::OR, NVT,
3887 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3888 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3889 return true;
3890 }
3891 }
3892
Nate Begemanb0674922005-04-06 21:13:14 +00003893 return false;
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003894}
Chris Lattneraac464e2005-01-21 06:05:23 +00003895
Chris Lattner4add7e32005-01-23 04:42:50 +00003896
Chris Lattneraac464e2005-01-21 06:05:23 +00003897// ExpandLibCall - Expand a node into a call to a libcall. If the result value
3898// does not fit into a register, return the lo part and set the hi part to the
3899// by-reg argument. If it does fit into a single register, return the result
3900// and leave the Hi part unset.
3901SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
3902 SDOperand &Hi) {
Chris Lattner462505f2006-02-13 09:18:02 +00003903 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
3904 // The input chain to this libcall is the entry node of the function.
3905 // Legalizing the call will automatically add the previous call to the
3906 // dependence.
3907 SDOperand InChain = DAG.getEntryNode();
3908
Chris Lattneraac464e2005-01-21 06:05:23 +00003909 TargetLowering::ArgListTy Args;
3910 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3911 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
3912 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
3913 Args.push_back(std::make_pair(Node->getOperand(i), ArgTy));
3914 }
3915 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukman835702a2005-04-21 22:36:52 +00003916
Chris Lattner06bbeb62005-05-11 19:02:11 +00003917 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattneraac464e2005-01-21 06:05:23 +00003918 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner06bbeb62005-05-11 19:02:11 +00003919 std::pair<SDOperand,SDOperand> CallInfo =
Chris Lattner2e77db62005-05-13 18:50:42 +00003920 TLI.LowerCallTo(InChain, RetTy, false, CallingConv::C, false,
3921 Callee, Args, DAG);
Chris Lattnera5bf1032005-05-12 04:49:08 +00003922
Chris Lattner462505f2006-02-13 09:18:02 +00003923 // Legalize the call sequence, starting with the chain. This will advance
3924 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
3925 // was added by LowerCallTo (guaranteeing proper serialization of calls).
3926 LegalizeOp(CallInfo.second);
Chris Lattner63022662005-09-02 20:26:58 +00003927 SDOperand Result;
Chris Lattner06bbeb62005-05-11 19:02:11 +00003928 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattneraac464e2005-01-21 06:05:23 +00003929 default: assert(0 && "Unknown thing");
3930 case Legal:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003931 Result = CallInfo.first;
Chris Lattner63022662005-09-02 20:26:58 +00003932 break;
Chris Lattneraac464e2005-01-21 06:05:23 +00003933 case Expand:
Chris Lattner63022662005-09-02 20:26:58 +00003934 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner63022662005-09-02 20:26:58 +00003935 break;
Chris Lattneraac464e2005-01-21 06:05:23 +00003936 }
Chris Lattner63022662005-09-02 20:26:58 +00003937 return Result;
Chris Lattneraac464e2005-01-21 06:05:23 +00003938}
3939
Chris Lattner4add7e32005-01-23 04:42:50 +00003940
Chris Lattneraac464e2005-01-21 06:05:23 +00003941/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
3942/// destination type is legal.
3943SDOperand SelectionDAGLegalize::
3944ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00003945 assert(isTypeLegal(DestTy) && "Destination type is not legal!");
Chris Lattneraac464e2005-01-21 06:05:23 +00003946 assert(getTypeAction(Source.getValueType()) == Expand &&
3947 "This is not an expansion!");
3948 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
3949
Chris Lattner06bbeb62005-05-11 19:02:11 +00003950 if (!isSigned) {
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003951 assert(Source.getValueType() == MVT::i64 &&
3952 "This only works for 64-bit -> FP");
3953 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
3954 // incoming integer is set. To handle this, we dynamically test to see if
3955 // it is set, and, if so, add a fudge factor.
3956 SDOperand Lo, Hi;
3957 ExpandOp(Source, Lo, Hi);
3958
Chris Lattner2a4f7312005-05-13 04:45:13 +00003959 // If this is unsigned, and not supported, first perform the conversion to
3960 // signed, then adjust the result if the sign bit is set.
3961 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
3962 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
3963
Chris Lattnerd47675e2005-08-09 20:20:18 +00003964 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
3965 DAG.getConstant(0, Hi.getValueType()),
3966 ISD::SETLT);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003967 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3968 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3969 SignSet, Four, Zero);
Chris Lattner26f03172005-05-12 18:52:34 +00003970 uint64_t FF = 0x5f800000ULL;
3971 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencere0fc4df2006-10-20 07:07:24 +00003972 static Constant *FudgeFactor = ConstantInt::get(Type::ULongTy, FF);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003973
Chris Lattnerc30405e2005-08-26 17:15:30 +00003974 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003975 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3976 SDOperand FudgeInReg;
3977 if (DestTy == MVT::f32)
Evan Chenge71fe34d2006-10-09 20:57:25 +00003978 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003979 else {
3980 assert(DestTy == MVT::f64 && "Unexpected conversion");
Chris Lattnerde0a4b12005-07-10 01:55:33 +00003981 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Chenge71fe34d2006-10-09 20:57:25 +00003982 CPIdx, NULL, 0, MVT::f32);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003983 }
Chris Lattner5b2be1f2005-09-29 06:44:39 +00003984 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattneraac464e2005-01-21 06:05:23 +00003985 }
Chris Lattner06bbeb62005-05-11 19:02:11 +00003986
Chris Lattnerd3cc9962005-05-14 05:33:54 +00003987 // Check to see if the target has a custom way to lower this. If so, use it.
3988 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
3989 default: assert(0 && "This action not implemented for this operation!");
3990 case TargetLowering::Legal:
3991 case TargetLowering::Expand:
3992 break; // This case is handled below.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00003993 case TargetLowering::Custom: {
3994 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
3995 Source), DAG);
3996 if (NV.Val)
3997 return LegalizeOp(NV);
3998 break; // The target decided this was legal after all
3999 }
Chris Lattnerd3cc9962005-05-14 05:33:54 +00004000 }
4001
Chris Lattner153587e2005-05-12 07:00:44 +00004002 // Expand the source, then glue it back together for the call. We must expand
4003 // the source in case it is shared (this pass of legalize must traverse it).
4004 SDOperand SrcLo, SrcHi;
4005 ExpandOp(Source, SrcLo, SrcHi);
4006 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
4007
Chris Lattner06bbeb62005-05-11 19:02:11 +00004008 const char *FnName = 0;
4009 if (DestTy == MVT::f32)
4010 FnName = "__floatdisf";
4011 else {
4012 assert(DestTy == MVT::f64 && "Unknown fp value type!");
4013 FnName = "__floatdidf";
4014 }
Chris Lattner462505f2006-02-13 09:18:02 +00004015
4016 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
4017 SDOperand UnusedHiPart;
Chris Lattner9ec392b2006-02-17 04:32:33 +00004018 return ExpandLibCall(FnName, Source.Val, UnusedHiPart);
Chris Lattneraac464e2005-01-21 06:05:23 +00004019}
Misha Brukman835702a2005-04-21 22:36:52 +00004020
Chris Lattner689bdcc2006-01-28 08:25:58 +00004021/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
4022/// INT_TO_FP operation of the specified operand when the target requests that
4023/// we expand it. At this point, we know that the result and operand types are
4024/// legal for the target.
4025SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
4026 SDOperand Op0,
4027 MVT::ValueType DestVT) {
4028 if (Op0.getValueType() == MVT::i32) {
4029 // simple 32-bit [signed|unsigned] integer to float/double expansion
4030
4031 // get the stack frame index of a 8 byte buffer
4032 MachineFunction &MF = DAG.getMachineFunction();
4033 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
4034 // get address of 8 byte buffer
4035 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4036 // word offset constant for Hi/Lo address computation
4037 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
4038 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner9ea1b3f2006-03-23 05:29:04 +00004039 SDOperand Hi = StackSlot;
4040 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
4041 if (TLI.isLittleEndian())
4042 std::swap(Hi, Lo);
4043
Chris Lattner689bdcc2006-01-28 08:25:58 +00004044 // if signed map to unsigned space
4045 SDOperand Op0Mapped;
4046 if (isSigned) {
4047 // constant used to invert sign bit (signed to unsigned mapping)
4048 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
4049 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
4050 } else {
4051 Op0Mapped = Op0;
4052 }
4053 // store the lo of the constructed double - based on integer input
Evan Chengdf9ac472006-10-05 23:01:46 +00004054 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Chengab51cf22006-10-13 21:14:26 +00004055 Op0Mapped, Lo, NULL, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00004056 // initial hi portion of constructed double
4057 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
4058 // store the hi of the constructed double - biased exponent
Evan Chengab51cf22006-10-13 21:14:26 +00004059 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00004060 // load the constructed double
Evan Chenge71fe34d2006-10-09 20:57:25 +00004061 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00004062 // FP constant to bias correct the final result
4063 SDOperand Bias = DAG.getConstantFP(isSigned ?
4064 BitsToDouble(0x4330000080000000ULL)
4065 : BitsToDouble(0x4330000000000000ULL),
4066 MVT::f64);
4067 // subtract the bias
4068 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
4069 // final result
4070 SDOperand Result;
4071 // handle final rounding
4072 if (DestVT == MVT::f64) {
4073 // do nothing
4074 Result = Sub;
4075 } else {
4076 // if f32 then cast to f32
4077 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
4078 }
4079 return Result;
4080 }
4081 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
4082 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
4083
4084 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
4085 DAG.getConstant(0, Op0.getValueType()),
4086 ISD::SETLT);
4087 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4088 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4089 SignSet, Four, Zero);
4090
4091 // If the sign bit of the integer is set, the large number will be treated
4092 // as a negative number. To counteract this, the dynamic code adds an
4093 // offset depending on the data type.
4094 uint64_t FF;
4095 switch (Op0.getValueType()) {
4096 default: assert(0 && "Unsupported integer type!");
4097 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
4098 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
4099 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
4100 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
4101 }
4102 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencere0fc4df2006-10-20 07:07:24 +00004103 static Constant *FudgeFactor = ConstantInt::get(Type::ULongTy, FF);
Chris Lattner689bdcc2006-01-28 08:25:58 +00004104
4105 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4106 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4107 SDOperand FudgeInReg;
4108 if (DestVT == MVT::f32)
Evan Chenge71fe34d2006-10-09 20:57:25 +00004109 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00004110 else {
4111 assert(DestVT == MVT::f64 && "Unexpected conversion");
4112 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
4113 DAG.getEntryNode(), CPIdx,
Evan Chenge71fe34d2006-10-09 20:57:25 +00004114 NULL, 0, MVT::f32));
Chris Lattner689bdcc2006-01-28 08:25:58 +00004115 }
4116
4117 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
4118}
4119
4120/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
4121/// *INT_TO_FP operation of the specified operand when the target requests that
4122/// we promote it. At this point, we know that the result and operand types are
4123/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
4124/// operation that takes a larger input.
4125SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
4126 MVT::ValueType DestVT,
4127 bool isSigned) {
4128 // First step, figure out the appropriate *INT_TO_FP operation to use.
4129 MVT::ValueType NewInTy = LegalOp.getValueType();
4130
4131 unsigned OpToUse = 0;
4132
4133 // Scan for the appropriate larger type to use.
4134 while (1) {
4135 NewInTy = (MVT::ValueType)(NewInTy+1);
4136 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
4137
4138 // If the target supports SINT_TO_FP of this type, use it.
4139 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4140 default: break;
4141 case TargetLowering::Legal:
4142 if (!TLI.isTypeLegal(NewInTy))
4143 break; // Can't use this datatype.
4144 // FALL THROUGH.
4145 case TargetLowering::Custom:
4146 OpToUse = ISD::SINT_TO_FP;
4147 break;
4148 }
4149 if (OpToUse) break;
4150 if (isSigned) continue;
4151
4152 // If the target supports UINT_TO_FP of this type, use it.
4153 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4154 default: break;
4155 case TargetLowering::Legal:
4156 if (!TLI.isTypeLegal(NewInTy))
4157 break; // Can't use this datatype.
4158 // FALL THROUGH.
4159 case TargetLowering::Custom:
4160 OpToUse = ISD::UINT_TO_FP;
4161 break;
4162 }
4163 if (OpToUse) break;
4164
4165 // Otherwise, try a larger type.
4166 }
4167
4168 // Okay, we found the operation and type to use. Zero extend our input to the
4169 // desired type then run the operation on it.
4170 return DAG.getNode(OpToUse, DestVT,
4171 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4172 NewInTy, LegalOp));
4173}
4174
4175/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4176/// FP_TO_*INT operation of the specified operand when the target requests that
4177/// we promote it. At this point, we know that the result and operand types are
4178/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4179/// operation that returns a larger result.
4180SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4181 MVT::ValueType DestVT,
4182 bool isSigned) {
4183 // First step, figure out the appropriate FP_TO*INT operation to use.
4184 MVT::ValueType NewOutTy = DestVT;
4185
4186 unsigned OpToUse = 0;
4187
4188 // Scan for the appropriate larger type to use.
4189 while (1) {
4190 NewOutTy = (MVT::ValueType)(NewOutTy+1);
4191 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4192
4193 // If the target supports FP_TO_SINT returning this type, use it.
4194 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4195 default: break;
4196 case TargetLowering::Legal:
4197 if (!TLI.isTypeLegal(NewOutTy))
4198 break; // Can't use this datatype.
4199 // FALL THROUGH.
4200 case TargetLowering::Custom:
4201 OpToUse = ISD::FP_TO_SINT;
4202 break;
4203 }
4204 if (OpToUse) break;
4205
4206 // If the target supports FP_TO_UINT of this type, use it.
4207 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4208 default: break;
4209 case TargetLowering::Legal:
4210 if (!TLI.isTypeLegal(NewOutTy))
4211 break; // Can't use this datatype.
4212 // FALL THROUGH.
4213 case TargetLowering::Custom:
4214 OpToUse = ISD::FP_TO_UINT;
4215 break;
4216 }
4217 if (OpToUse) break;
4218
4219 // Otherwise, try a larger type.
4220 }
4221
4222 // Okay, we found the operation and type to use. Truncate the result of the
4223 // extended FP_TO_*INT operation to the desired size.
4224 return DAG.getNode(ISD::TRUNCATE, DestVT,
4225 DAG.getNode(OpToUse, NewOutTy, LegalOp));
4226}
4227
4228/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4229///
4230SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4231 MVT::ValueType VT = Op.getValueType();
4232 MVT::ValueType SHVT = TLI.getShiftAmountTy();
4233 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4234 switch (VT) {
4235 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4236 case MVT::i16:
4237 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4238 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4239 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4240 case MVT::i32:
4241 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4242 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4243 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4244 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4245 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4246 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4247 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4248 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4249 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4250 case MVT::i64:
4251 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4252 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4253 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4254 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4255 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4256 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4257 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4258 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4259 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4260 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4261 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4262 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4263 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4264 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4265 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4266 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4267 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4268 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4269 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4270 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4271 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4272 }
4273}
4274
4275/// ExpandBitCount - Expand the specified bitcount instruction into operations.
4276///
4277SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4278 switch (Opc) {
4279 default: assert(0 && "Cannot expand this yet!");
4280 case ISD::CTPOP: {
4281 static const uint64_t mask[6] = {
4282 0x5555555555555555ULL, 0x3333333333333333ULL,
4283 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4284 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4285 };
4286 MVT::ValueType VT = Op.getValueType();
4287 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4288 unsigned len = getSizeInBits(VT);
4289 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4290 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4291 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4292 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4293 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4294 DAG.getNode(ISD::AND, VT,
4295 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4296 }
4297 return Op;
4298 }
4299 case ISD::CTLZ: {
4300 // for now, we do this:
4301 // x = x | (x >> 1);
4302 // x = x | (x >> 2);
4303 // ...
4304 // x = x | (x >>16);
4305 // x = x | (x >>32); // for 64-bit input
4306 // return popcount(~x);
4307 //
4308 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4309 MVT::ValueType VT = Op.getValueType();
4310 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4311 unsigned len = getSizeInBits(VT);
4312 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4313 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4314 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4315 }
4316 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4317 return DAG.getNode(ISD::CTPOP, VT, Op);
4318 }
4319 case ISD::CTTZ: {
4320 // for now, we use: { return popcount(~x & (x - 1)); }
4321 // unless the target has ctlz but not ctpop, in which case we use:
4322 // { return 32 - nlz(~x & (x-1)); }
4323 // see also http://www.hackersdelight.org/HDcode/ntz.cc
4324 MVT::ValueType VT = Op.getValueType();
4325 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4326 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4327 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4328 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4329 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4330 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4331 TLI.isOperationLegal(ISD::CTLZ, VT))
4332 return DAG.getNode(ISD::SUB, VT,
4333 DAG.getConstant(getSizeInBits(VT), VT),
4334 DAG.getNode(ISD::CTLZ, VT, Tmp3));
4335 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4336 }
4337 }
4338}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004339
Chris Lattnerdc750592005-01-07 07:47:09 +00004340/// ExpandOp - Expand the specified SDOperand into its two component pieces
4341/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
4342/// LegalizeNodes map is filled in for any results that are not expanded, the
4343/// ExpandedNodes map is filled in for any results that are expanded, and the
4344/// Lo/Hi values are returned.
4345void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4346 MVT::ValueType VT = Op.getValueType();
Chris Lattner87a769c2005-01-16 01:11:45 +00004347 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattnerdc750592005-01-07 07:47:09 +00004348 SDNode *Node = Op.Val;
4349 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Nate Begemand37c1312005-11-22 18:16:00 +00004350 assert((MVT::isInteger(VT) || VT == MVT::Vector) &&
4351 "Cannot expand FP values!");
4352 assert(((MVT::isInteger(NVT) && NVT < VT) || VT == MVT::Vector) &&
Chris Lattnerdc750592005-01-07 07:47:09 +00004353 "Cannot expand to FP value or to larger int value!");
4354
Chris Lattner1a570f12005-09-02 20:32:45 +00004355 // See if we already expanded it.
4356 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4357 = ExpandedNodes.find(Op);
4358 if (I != ExpandedNodes.end()) {
4359 Lo = I->second.first;
4360 Hi = I->second.second;
4361 return;
Chris Lattnerdc750592005-01-07 07:47:09 +00004362 }
4363
Chris Lattnerdc750592005-01-07 07:47:09 +00004364 switch (Node->getOpcode()) {
Chris Lattner44cab002006-01-21 04:27:00 +00004365 case ISD::CopyFromReg:
4366 assert(0 && "CopyFromReg must be legal!");
4367 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004368#ifndef NDEBUG
Chris Lattnerdc750592005-01-07 07:47:09 +00004369 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004370#endif
Chris Lattnerdc750592005-01-07 07:47:09 +00004371 assert(0 && "Do not know how to expand this operator!");
4372 abort();
Nate Begemancda9aa72005-04-01 22:34:39 +00004373 case ISD::UNDEF:
4374 Lo = DAG.getNode(ISD::UNDEF, NVT);
4375 Hi = DAG.getNode(ISD::UNDEF, NVT);
4376 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00004377 case ISD::Constant: {
4378 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4379 Lo = DAG.getConstant(Cst, NVT);
4380 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
4381 break;
4382 }
Chris Lattner32e08b72005-03-28 22:03:13 +00004383 case ISD::BUILD_PAIR:
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004384 // Return the operands.
4385 Lo = Node->getOperand(0);
4386 Hi = Node->getOperand(1);
Chris Lattner32e08b72005-03-28 22:03:13 +00004387 break;
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00004388
4389 case ISD::SIGN_EXTEND_INREG:
4390 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnerf5839a02006-10-06 17:34:12 +00004391 // sext_inreg the low part if needed.
4392 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
4393
4394 // The high part gets the sign extension from the lo-part. This handles
4395 // things like sextinreg V:i64 from i8.
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00004396 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4397 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
4398 TLI.getShiftAmountTy()));
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00004399 break;
Chris Lattner32e08b72005-03-28 22:03:13 +00004400
Nate Begeman2fba8a32006-01-14 03:14:10 +00004401 case ISD::BSWAP: {
4402 ExpandOp(Node->getOperand(0), Lo, Hi);
4403 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
4404 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
4405 Lo = TempLo;
4406 break;
4407 }
4408
Chris Lattner55e9cde2005-05-11 04:51:16 +00004409 case ISD::CTPOP:
4410 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner3740f392005-05-11 05:09:47 +00004411 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
4412 DAG.getNode(ISD::CTPOP, NVT, Lo),
4413 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattner55e9cde2005-05-11 04:51:16 +00004414 Hi = DAG.getConstant(0, NVT);
4415 break;
4416
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004417 case ISD::CTLZ: {
4418 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner0bfd1772005-05-12 19:27:51 +00004419 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004420 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4421 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattnerd47675e2005-08-09 20:20:18 +00004422 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
4423 ISD::SETNE);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004424 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
4425 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
4426
4427 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
4428 Hi = DAG.getConstant(0, NVT);
4429 break;
4430 }
4431
4432 case ISD::CTTZ: {
4433 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner0bfd1772005-05-12 19:27:51 +00004434 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004435 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4436 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattnerd47675e2005-08-09 20:20:18 +00004437 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
4438 ISD::SETNE);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00004439 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
4440 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
4441
4442 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
4443 Hi = DAG.getConstant(0, NVT);
4444 break;
4445 }
Chris Lattner55e9cde2005-05-11 04:51:16 +00004446
Nate Begemane74795c2006-01-25 18:21:52 +00004447 case ISD::VAARG: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004448 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4449 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemane74795c2006-01-25 18:21:52 +00004450 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
4451 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
4452
4453 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004454 Hi = LegalizeOp(Hi);
Nate Begemane74795c2006-01-25 18:21:52 +00004455 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
4456 if (!TLI.isLittleEndian())
4457 std::swap(Lo, Hi);
4458 break;
4459 }
4460
Chris Lattnerdc750592005-01-07 07:47:09 +00004461 case ISD::LOAD: {
Evan Chenge71fe34d2006-10-09 20:57:25 +00004462 LoadSDNode *LD = cast<LoadSDNode>(Node);
4463 SDOperand Ch = LD->getChain(); // Legalize the chain.
4464 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
4465 ISD::LoadExtType ExtType = LD->getExtensionType();
Chris Lattnerdc750592005-01-07 07:47:09 +00004466
Evan Chenge71fe34d2006-10-09 20:57:25 +00004467 if (ExtType == ISD::NON_EXTLOAD) {
4468 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
Chris Lattner0d03eb42005-01-19 18:02:17 +00004469
Evan Chenge71fe34d2006-10-09 20:57:25 +00004470 // Increment the pointer to the other half.
4471 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
4472 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4473 getIntPtrConstant(IncrementSize));
4474 // FIXME: This creates a bogus srcvalue!
4475 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
Misha Brukman835702a2005-04-21 22:36:52 +00004476
Evan Chenge71fe34d2006-10-09 20:57:25 +00004477 // Build a factor node to remember that this load is independent of the
4478 // other one.
4479 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4480 Hi.getValue(1));
4481
4482 // Remember that we legalized the chain.
4483 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
4484 if (!TLI.isLittleEndian())
4485 std::swap(Lo, Hi);
4486 } else {
Evan Chengd35734b2006-10-11 07:10:22 +00004487 MVT::ValueType EVT = LD->getLoadedVT();
Evan Chenge71fe34d2006-10-09 20:57:25 +00004488
4489 if (EVT == NVT)
4490 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
4491 LD->getSrcValueOffset());
4492 else
4493 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
4494 LD->getSrcValueOffset(), EVT);
4495
4496 // Remember that we legalized the chain.
4497 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
4498
4499 if (ExtType == ISD::SEXTLOAD) {
4500 // The high part is obtained by SRA'ing all but one of the bits of the
4501 // lo part.
4502 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
4503 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4504 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
4505 } else if (ExtType == ISD::ZEXTLOAD) {
4506 // The high part is just a zero.
4507 Hi = DAG.getConstant(0, NVT);
4508 } else /* if (ExtType == ISD::EXTLOAD) */ {
4509 // The high part is undefined.
4510 Hi = DAG.getNode(ISD::UNDEF, NVT);
4511 }
4512 }
Chris Lattnerdc750592005-01-07 07:47:09 +00004513 break;
4514 }
Chris Lattnerdc750592005-01-07 07:47:09 +00004515 case ISD::AND:
4516 case ISD::OR:
4517 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
4518 SDOperand LL, LH, RL, RH;
4519 ExpandOp(Node->getOperand(0), LL, LH);
4520 ExpandOp(Node->getOperand(1), RL, RH);
4521 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
4522 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
4523 break;
4524 }
4525 case ISD::SELECT: {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004526 SDOperand LL, LH, RL, RH;
Chris Lattnerdc750592005-01-07 07:47:09 +00004527 ExpandOp(Node->getOperand(1), LL, LH);
4528 ExpandOp(Node->getOperand(2), RL, RH);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004529 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
4530 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattnerdc750592005-01-07 07:47:09 +00004531 break;
4532 }
Nate Begemane5b86d72005-08-10 20:51:12 +00004533 case ISD::SELECT_CC: {
4534 SDOperand TL, TH, FL, FH;
4535 ExpandOp(Node->getOperand(2), TL, TH);
4536 ExpandOp(Node->getOperand(3), FL, FH);
4537 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4538 Node->getOperand(1), TL, FL, Node->getOperand(4));
4539 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4540 Node->getOperand(1), TH, FH, Node->getOperand(4));
4541 break;
4542 }
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004543 case ISD::ANY_EXTEND:
4544 // The low part is any extension of the input (which degenerates to a copy).
4545 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
4546 // The high part is undefined.
4547 Hi = DAG.getNode(ISD::UNDEF, NVT);
4548 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00004549 case ISD::SIGN_EXTEND: {
4550 // The low part is just a sign extension of the input (which degenerates to
4551 // a copy).
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004552 Lo = DAG.getNode(ISD::SIGN_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 obtained by SRA'ing all but one of the bits of the lo
4555 // part.
Chris Lattner9864b082005-01-12 18:19:52 +00004556 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004557 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4558 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattnerdc750592005-01-07 07:47:09 +00004559 break;
4560 }
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004561 case ISD::ZERO_EXTEND:
Chris Lattnerdc750592005-01-07 07:47:09 +00004562 // The low part is just a zero extension of the input (which degenerates to
4563 // a copy).
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004564 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00004565
Chris Lattnerdc750592005-01-07 07:47:09 +00004566 // The high part is just a zero.
4567 Hi = DAG.getConstant(0, NVT);
4568 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00004569
4570 case ISD::BIT_CONVERT: {
Chris Lattnere4bbb6c2006-09-09 00:20:27 +00004571 SDOperand Tmp;
4572 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
4573 // If the target wants to, allow it to lower this itself.
4574 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4575 case Expand: assert(0 && "cannot expand FP!");
4576 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
4577 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
4578 }
4579 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
4580 }
4581
4582 // Turn this into a load/store pair by default.
4583 if (Tmp.Val == 0)
4584 Tmp = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
4585
Chris Lattner36e663d2005-12-23 00:16:34 +00004586 ExpandOp(Tmp, Lo, Hi);
4587 break;
4588 }
Andrew Lenharth627cbd42005-11-20 21:32:07 +00004589
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004590 case ISD::READCYCLECOUNTER:
Chris Lattner44c28c22005-11-20 22:56:56 +00004591 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
4592 TargetLowering::Custom &&
4593 "Must custom expand ReadCycleCounter");
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004594 Lo = TLI.LowerOperation(Op, DAG);
4595 assert(Lo.Val && "Node must be custom expanded!");
4596 Hi = Lo.getValue(1);
Chris Lattner44c28c22005-11-20 22:56:56 +00004597 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004598 LegalizeOp(Lo.getValue(2)));
Andrew Lenharth627cbd42005-11-20 21:32:07 +00004599 break;
4600
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004601 // These operators cannot be expanded directly, emit them as calls to
4602 // library functions.
4603 case ISD::FP_TO_SINT:
Chris Lattnerfe68d752005-07-29 00:33:32 +00004604 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattner941d84a2005-07-30 01:40:57 +00004605 SDOperand Op;
4606 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4607 case Expand: assert(0 && "cannot expand FP!");
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004608 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4609 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattner941d84a2005-07-30 01:40:57 +00004610 }
Jeff Cohen546fd592005-07-30 18:33:25 +00004611
Chris Lattner941d84a2005-07-30 01:40:57 +00004612 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
4613
Chris Lattnerfe68d752005-07-29 00:33:32 +00004614 // Now that the custom expander is done, expand the result, which is still
4615 // VT.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00004616 if (Op.Val) {
4617 ExpandOp(Op, Lo, Hi);
4618 break;
4619 }
Chris Lattnerfe68d752005-07-29 00:33:32 +00004620 }
Jeff Cohen546fd592005-07-30 18:33:25 +00004621
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004622 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattneraac464e2005-01-21 06:05:23 +00004623 Lo = ExpandLibCall("__fixsfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004624 else
Chris Lattneraac464e2005-01-21 06:05:23 +00004625 Lo = ExpandLibCall("__fixdfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004626 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00004627
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004628 case ISD::FP_TO_UINT:
Chris Lattnerfe68d752005-07-29 00:33:32 +00004629 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004630 SDOperand Op;
4631 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4632 case Expand: assert(0 && "cannot expand FP!");
4633 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4634 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
4635 }
4636
4637 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
4638
4639 // Now that the custom expander is done, expand the result.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00004640 if (Op.Val) {
4641 ExpandOp(Op, Lo, Hi);
4642 break;
4643 }
Chris Lattnerfe68d752005-07-29 00:33:32 +00004644 }
Jeff Cohen546fd592005-07-30 18:33:25 +00004645
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004646 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattneraac464e2005-01-21 06:05:23 +00004647 Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004648 else
Chris Lattneraac464e2005-01-21 06:05:23 +00004649 Lo = ExpandLibCall("__fixunsdfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00004650 break;
4651
Evan Cheng870e4f82006-01-09 18:31:59 +00004652 case ISD::SHL: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004653 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00004654 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004655 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004656 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004657 Op = TLI.LowerOperation(Op, DAG);
4658 if (Op.Val) {
4659 // Now that the custom expander is done, expand the result, which is
4660 // still VT.
4661 ExpandOp(Op, Lo, Hi);
4662 break;
4663 }
4664 }
4665
Chris Lattner72b503b2006-09-13 03:50:39 +00004666 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
4667 // this X << 1 as X+X.
4668 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
4669 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
4670 TLI.isOperationLegal(ISD::ADDE, NVT)) {
4671 SDOperand LoOps[2], HiOps[3];
4672 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
4673 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
4674 LoOps[1] = LoOps[0];
4675 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
4676
4677 HiOps[1] = HiOps[0];
4678 HiOps[2] = Lo.getValue(1);
4679 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
4680 break;
4681 }
4682 }
4683
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004684 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00004685 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004686 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00004687
4688 // If this target supports SHL_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00004689 TargetLowering::LegalizeAction Action =
4690 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
4691 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4692 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00004693 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00004694 break;
4695 }
4696
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004697 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00004698 Lo = ExpandLibCall("__ashldi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004699 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00004700 }
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004701
Evan Cheng870e4f82006-01-09 18:31:59 +00004702 case ISD::SRA: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004703 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00004704 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004705 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004706 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004707 Op = TLI.LowerOperation(Op, DAG);
4708 if (Op.Val) {
4709 // Now that the custom expander is done, expand the result, which is
4710 // still VT.
4711 ExpandOp(Op, Lo, Hi);
4712 break;
4713 }
4714 }
4715
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004716 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00004717 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004718 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00004719
4720 // If this target supports SRA_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00004721 TargetLowering::LegalizeAction Action =
4722 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
4723 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4724 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00004725 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00004726 break;
4727 }
4728
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004729 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00004730 Lo = ExpandLibCall("__ashrdi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004731 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00004732 }
4733
4734 case ISD::SRL: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004735 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00004736 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004737 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004738 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00004739 Op = TLI.LowerOperation(Op, DAG);
4740 if (Op.Val) {
4741 // Now that the custom expander is done, expand the result, which is
4742 // still VT.
4743 ExpandOp(Op, Lo, Hi);
4744 break;
4745 }
4746 }
4747
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004748 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00004749 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004750 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00004751
4752 // If this target supports SRL_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00004753 TargetLowering::LegalizeAction Action =
4754 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
4755 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4756 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00004757 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00004758 break;
4759 }
4760
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004761 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00004762 Lo = ExpandLibCall("__lshrdi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004763 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00004764 }
Chris Lattner2a7f8a92005-01-19 04:19:40 +00004765
Misha Brukman835702a2005-04-21 22:36:52 +00004766 case ISD::ADD:
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004767 case ISD::SUB: {
4768 // If the target wants to custom expand this, let them.
4769 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
4770 TargetLowering::Custom) {
4771 Op = TLI.LowerOperation(Op, DAG);
4772 if (Op.Val) {
4773 ExpandOp(Op, Lo, Hi);
4774 break;
4775 }
4776 }
4777
4778 // Expand the subcomponents.
4779 SDOperand LHSL, LHSH, RHSL, RHSH;
4780 ExpandOp(Node->getOperand(0), LHSL, LHSH);
4781 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner72b503b2006-09-13 03:50:39 +00004782 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
4783 SDOperand LoOps[2], HiOps[3];
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004784 LoOps[0] = LHSL;
4785 LoOps[1] = RHSL;
4786 HiOps[0] = LHSH;
4787 HiOps[1] = RHSH;
Nate Begeman5965bd12006-02-17 05:43:56 +00004788 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner72b503b2006-09-13 03:50:39 +00004789 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004790 HiOps[2] = Lo.getValue(1);
Chris Lattner72b503b2006-09-13 03:50:39 +00004791 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman5965bd12006-02-17 05:43:56 +00004792 } else {
Chris Lattner72b503b2006-09-13 03:50:39 +00004793 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004794 HiOps[2] = Lo.getValue(1);
Chris Lattner72b503b2006-09-13 03:50:39 +00004795 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman5965bd12006-02-17 05:43:56 +00004796 }
Chris Lattnerb3f83b282005-01-20 18:52:28 +00004797 break;
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00004798 }
Nate Begemanadd0c632005-04-11 03:01:51 +00004799 case ISD::MUL: {
Chris Lattnerfbadbda2006-09-16 00:09:24 +00004800 // If the target wants to custom expand this, let them.
4801 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattnere50f5d12006-09-16 05:08:34 +00004802 SDOperand New = TLI.LowerOperation(Op, DAG);
4803 if (New.Val) {
4804 ExpandOp(New, Lo, Hi);
Chris Lattnerfbadbda2006-09-16 00:09:24 +00004805 break;
4806 }
4807 }
4808
Evan Chenge93762d2006-09-01 18:17:58 +00004809 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
4810 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Evan Chenge93762d2006-09-01 18:17:58 +00004811 if (HasMULHS || HasMULHU) {
Nate Begemanadd0c632005-04-11 03:01:51 +00004812 SDOperand LL, LH, RL, RH;
4813 ExpandOp(Node->getOperand(0), LL, LH);
4814 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman43144a22005-08-30 02:44:00 +00004815 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
4816 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
4817 // extended the sign bit of the low half through the upper half, and if so
4818 // emit a MULHS instead of the alternate sequence that is valid for any
4819 // i64 x i64 multiply.
Evan Chenge93762d2006-09-01 18:17:58 +00004820 if (HasMULHS &&
Nate Begeman43144a22005-08-30 02:44:00 +00004821 // is RH an extension of the sign bit of RL?
4822 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
4823 RH.getOperand(1).getOpcode() == ISD::Constant &&
4824 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
4825 // is LH an extension of the sign bit of LL?
4826 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
4827 LH.getOperand(1).getOpcode() == ISD::Constant &&
4828 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
Chris Lattner1b633912006-09-16 00:21:44 +00004829 // FIXME: Move this to the dag combiner.
4830
4831 // Low part:
4832 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4833 // High part:
Nate Begeman43144a22005-08-30 02:44:00 +00004834 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
Chris Lattner1b633912006-09-16 00:21:44 +00004835 break;
Evan Chenge93762d2006-09-01 18:17:58 +00004836 } else if (HasMULHU) {
Chris Lattner1b633912006-09-16 00:21:44 +00004837 // Low part:
4838 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4839
4840 // High part:
Nate Begeman43144a22005-08-30 02:44:00 +00004841 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
4842 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
4843 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
4844 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
4845 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattner1b633912006-09-16 00:21:44 +00004846 break;
Nate Begeman43144a22005-08-30 02:44:00 +00004847 }
Nate Begemanadd0c632005-04-11 03:01:51 +00004848 }
Evan Chenge93762d2006-09-01 18:17:58 +00004849
Chris Lattner1b633912006-09-16 00:21:44 +00004850 Lo = ExpandLibCall("__muldi3" , Node, Hi);
Nate Begemanadd0c632005-04-11 03:01:51 +00004851 break;
4852 }
Chris Lattneraac464e2005-01-21 06:05:23 +00004853 case ISD::SDIV: Lo = ExpandLibCall("__divdi3" , Node, Hi); break;
4854 case ISD::UDIV: Lo = ExpandLibCall("__udivdi3", Node, Hi); break;
4855 case ISD::SREM: Lo = ExpandLibCall("__moddi3" , Node, Hi); break;
4856 case ISD::UREM: Lo = ExpandLibCall("__umoddi3", Node, Hi); break;
Chris Lattnerdc750592005-01-07 07:47:09 +00004857 }
4858
Chris Lattnerac12f682005-12-21 18:02:52 +00004859 // Make sure the resultant values have been legalized themselves, unless this
4860 // is a type that requires multi-step expansion.
4861 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
4862 Lo = LegalizeOp(Lo);
4863 Hi = LegalizeOp(Hi);
4864 }
Evan Cheng870e4f82006-01-09 18:31:59 +00004865
4866 // Remember in a map if the values will be reused later.
4867 bool isNew =
4868 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4869 assert(isNew && "Value already expanded?!?");
Chris Lattnerdc750592005-01-07 07:47:09 +00004870}
4871
Chris Lattner32206f52006-03-18 01:44:44 +00004872/// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
4873/// two smaller values of MVT::Vector type.
4874void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
4875 SDOperand &Hi) {
4876 assert(Op.getValueType() == MVT::Vector && "Cannot split non-vector type!");
4877 SDNode *Node = Op.Val;
4878 unsigned NumElements = cast<ConstantSDNode>(*(Node->op_end()-2))->getValue();
4879 assert(NumElements > 1 && "Cannot split a single element vector!");
4880 unsigned NewNumElts = NumElements/2;
4881 SDOperand NewNumEltsNode = DAG.getConstant(NewNumElts, MVT::i32);
4882 SDOperand TypeNode = *(Node->op_end()-1);
4883
4884 // See if we already split it.
4885 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4886 = SplitNodes.find(Op);
4887 if (I != SplitNodes.end()) {
4888 Lo = I->second.first;
4889 Hi = I->second.second;
4890 return;
4891 }
4892
4893 switch (Node->getOpcode()) {
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004894 default:
4895#ifndef NDEBUG
4896 Node->dump();
4897#endif
4898 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerf4e1a532006-03-19 00:52:58 +00004899 case ISD::VBUILD_VECTOR: {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004900 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
4901 Node->op_begin()+NewNumElts);
Chris Lattner32206f52006-03-18 01:44:44 +00004902 LoOps.push_back(NewNumEltsNode);
4903 LoOps.push_back(TypeNode);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004904 Lo = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &LoOps[0], LoOps.size());
Chris Lattner32206f52006-03-18 01:44:44 +00004905
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004906 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts,
4907 Node->op_end()-2);
Chris Lattner32206f52006-03-18 01:44:44 +00004908 HiOps.push_back(NewNumEltsNode);
4909 HiOps.push_back(TypeNode);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004910 Hi = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &HiOps[0], HiOps.size());
Chris Lattner32206f52006-03-18 01:44:44 +00004911 break;
4912 }
4913 case ISD::VADD:
4914 case ISD::VSUB:
4915 case ISD::VMUL:
4916 case ISD::VSDIV:
4917 case ISD::VUDIV:
4918 case ISD::VAND:
4919 case ISD::VOR:
4920 case ISD::VXOR: {
4921 SDOperand LL, LH, RL, RH;
4922 SplitVectorOp(Node->getOperand(0), LL, LH);
4923 SplitVectorOp(Node->getOperand(1), RL, RH);
4924
4925 Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, LL, RL,
4926 NewNumEltsNode, TypeNode);
4927 Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, LH, RH,
4928 NewNumEltsNode, TypeNode);
4929 break;
4930 }
4931 case ISD::VLOAD: {
4932 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4933 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
4934 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4935
4936 Lo = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4937 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(EVT)/8;
4938 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4939 getIntPtrConstant(IncrementSize));
4940 // FIXME: This creates a bogus srcvalue!
4941 Hi = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4942
4943 // Build a factor node to remember that this load is independent of the
4944 // other one.
4945 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4946 Hi.getValue(1));
4947
4948 // Remember that we legalized the chain.
4949 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattner32206f52006-03-18 01:44:44 +00004950 break;
4951 }
Chris Lattnerd7c4e7d2006-03-23 21:16:34 +00004952 case ISD::VBIT_CONVERT: {
4953 // We know the result is a vector. The input may be either a vector or a
4954 // scalar value.
4955 if (Op.getOperand(0).getValueType() != MVT::Vector) {
4956 // Lower to a store/load. FIXME: this could be improved probably.
4957 SDOperand Ptr = CreateStackTemporary(Op.getOperand(0).getValueType());
4958
Evan Chengdf9ac472006-10-05 23:01:46 +00004959 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Evan Chengab51cf22006-10-13 21:14:26 +00004960 Op.getOperand(0), Ptr, NULL, 0);
Chris Lattnerd7c4e7d2006-03-23 21:16:34 +00004961 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4962 St = DAG.getVecLoad(NumElements, EVT, St, Ptr, DAG.getSrcValue(0));
4963 SplitVectorOp(St, Lo, Hi);
4964 } else {
4965 // If the input is a vector type, we have to either scalarize it, pack it
4966 // or convert it based on whether the input vector type is legal.
4967 SDNode *InVal = Node->getOperand(0).Val;
4968 unsigned NumElems =
4969 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
4970 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
4971
4972 // If the input is from a single element vector, scalarize the vector,
4973 // then treat like a scalar.
4974 if (NumElems == 1) {
4975 SDOperand Scalar = PackVectorOp(Op.getOperand(0), EVT);
4976 Scalar = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Scalar,
4977 Op.getOperand(1), Op.getOperand(2));
4978 SplitVectorOp(Scalar, Lo, Hi);
4979 } else {
4980 // Split the input vector.
4981 SplitVectorOp(Op.getOperand(0), Lo, Hi);
4982
4983 // Convert each of the pieces now.
4984 Lo = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Lo,
4985 NewNumEltsNode, TypeNode);
4986 Hi = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Hi,
4987 NewNumEltsNode, TypeNode);
4988 }
4989 break;
4990 }
4991 }
Chris Lattner32206f52006-03-18 01:44:44 +00004992 }
4993
4994 // Remember in a map if the values will be reused later.
4995 bool isNew =
4996 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4997 assert(isNew && "Value already expanded?!?");
4998}
4999
5000
5001/// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
5002/// equivalent operation that returns a scalar (e.g. F32) or packed value
5003/// (e.g. MVT::V4F32). When this is called, we know that PackedVT is the right
5004/// type for the result.
5005SDOperand SelectionDAGLegalize::PackVectorOp(SDOperand Op,
5006 MVT::ValueType NewVT) {
5007 assert(Op.getValueType() == MVT::Vector && "Bad PackVectorOp invocation!");
5008 SDNode *Node = Op.Val;
5009
5010 // See if we already packed it.
5011 std::map<SDOperand, SDOperand>::iterator I = PackedNodes.find(Op);
5012 if (I != PackedNodes.end()) return I->second;
5013
5014 SDOperand Result;
5015 switch (Node->getOpcode()) {
Chris Lattner29b23012006-03-19 01:17:20 +00005016 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00005017#ifndef NDEBUG
Chris Lattner29b23012006-03-19 01:17:20 +00005018 Node->dump(); std::cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00005019#endif
Chris Lattner29b23012006-03-19 01:17:20 +00005020 assert(0 && "Unknown vector operation in PackVectorOp!");
Chris Lattner32206f52006-03-18 01:44:44 +00005021 case ISD::VADD:
5022 case ISD::VSUB:
5023 case ISD::VMUL:
5024 case ISD::VSDIV:
5025 case ISD::VUDIV:
5026 case ISD::VAND:
5027 case ISD::VOR:
5028 case ISD::VXOR:
5029 Result = DAG.getNode(getScalarizedOpcode(Node->getOpcode(), NewVT),
5030 NewVT,
5031 PackVectorOp(Node->getOperand(0), NewVT),
5032 PackVectorOp(Node->getOperand(1), NewVT));
5033 break;
5034 case ISD::VLOAD: {
Chris Lattner93640542006-03-19 00:07:49 +00005035 SDOperand Ch = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
5036 SDOperand Ptr = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattner32206f52006-03-18 01:44:44 +00005037
Evan Chenge71fe34d2006-10-09 20:57:25 +00005038 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
5039 Result = DAG.getLoad(NewVT, Ch, Ptr, SV->getValue(), SV->getOffset());
Chris Lattner32206f52006-03-18 01:44:44 +00005040
5041 // Remember that we legalized the chain.
5042 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
5043 break;
5044 }
Chris Lattnerf4e1a532006-03-19 00:52:58 +00005045 case ISD::VBUILD_VECTOR:
Chris Lattner5fe1f542006-03-31 02:06:56 +00005046 if (Node->getOperand(0).getValueType() == NewVT) {
Chris Lattnerf4e1a532006-03-19 00:52:58 +00005047 // Returning a scalar?
Chris Lattner32206f52006-03-18 01:44:44 +00005048 Result = Node->getOperand(0);
5049 } else {
Chris Lattnerf4e1a532006-03-19 00:52:58 +00005050 // Returning a BUILD_VECTOR?
Chris Lattnere1401e32006-04-08 05:34:25 +00005051
5052 // If all elements of the build_vector are undefs, return an undef.
5053 bool AllUndef = true;
5054 for (unsigned i = 0, e = Node->getNumOperands()-2; i != e; ++i)
5055 if (Node->getOperand(i).getOpcode() != ISD::UNDEF) {
5056 AllUndef = false;
5057 break;
5058 }
5059 if (AllUndef) {
5060 Result = DAG.getNode(ISD::UNDEF, NewVT);
5061 } else {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00005062 Result = DAG.getNode(ISD::BUILD_VECTOR, NewVT, Node->op_begin(),
5063 Node->getNumOperands()-2);
Chris Lattnere1401e32006-04-08 05:34:25 +00005064 }
Chris Lattner32206f52006-03-18 01:44:44 +00005065 }
5066 break;
Chris Lattner29b23012006-03-19 01:17:20 +00005067 case ISD::VINSERT_VECTOR_ELT:
5068 if (!MVT::isVector(NewVT)) {
5069 // Returning a scalar? Must be the inserted element.
5070 Result = Node->getOperand(1);
5071 } else {
5072 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT,
5073 PackVectorOp(Node->getOperand(0), NewVT),
5074 Node->getOperand(1), Node->getOperand(2));
5075 }
5076 break;
Chris Lattnerf6f94d32006-03-28 20:24:43 +00005077 case ISD::VVECTOR_SHUFFLE:
5078 if (!MVT::isVector(NewVT)) {
5079 // Returning a scalar? Figure out if it is the LHS or RHS and return it.
5080 SDOperand EltNum = Node->getOperand(2).getOperand(0);
5081 if (cast<ConstantSDNode>(EltNum)->getValue())
5082 Result = PackVectorOp(Node->getOperand(1), NewVT);
5083 else
5084 Result = PackVectorOp(Node->getOperand(0), NewVT);
5085 } else {
5086 // Otherwise, return a VECTOR_SHUFFLE node. First convert the index
5087 // vector from a VBUILD_VECTOR to a BUILD_VECTOR.
5088 std::vector<SDOperand> BuildVecIdx(Node->getOperand(2).Val->op_begin(),
5089 Node->getOperand(2).Val->op_end()-2);
5090 MVT::ValueType BVT = MVT::getIntVectorWithNumElements(BuildVecIdx.size());
Chris Lattnerc24a1d32006-08-08 02:23:42 +00005091 SDOperand BV = DAG.getNode(ISD::BUILD_VECTOR, BVT,
5092 Node->getOperand(2).Val->op_begin(),
5093 Node->getOperand(2).Val->getNumOperands()-2);
Chris Lattnerf6f94d32006-03-28 20:24:43 +00005094
5095 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT,
5096 PackVectorOp(Node->getOperand(0), NewVT),
5097 PackVectorOp(Node->getOperand(1), NewVT), BV);
5098 }
5099 break;
Chris Lattner2f4119a2006-03-22 20:09:35 +00005100 case ISD::VBIT_CONVERT:
5101 if (Op.getOperand(0).getValueType() != MVT::Vector)
5102 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
5103 else {
5104 // If the input is a vector type, we have to either scalarize it, pack it
5105 // or convert it based on whether the input vector type is legal.
5106 SDNode *InVal = Node->getOperand(0).Val;
5107 unsigned NumElems =
5108 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5109 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5110
5111 // Figure out if there is a Packed type corresponding to this Vector
5112 // type. If so, convert to the packed type.
5113 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
5114 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
5115 // Turn this into a bit convert of the packed input.
5116 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5117 PackVectorOp(Node->getOperand(0), TVT));
5118 break;
5119 } else if (NumElems == 1) {
5120 // Turn this into a bit convert of the scalar input.
5121 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5122 PackVectorOp(Node->getOperand(0), EVT));
5123 break;
5124 } else {
5125 // FIXME: UNIMP!
5126 assert(0 && "Cast from unsupported vector type not implemented yet!");
5127 }
5128 }
Evan Chengcb73b8d2006-04-10 18:54:36 +00005129 break;
Chris Lattner02274a52006-04-08 22:22:57 +00005130 case ISD::VSELECT:
5131 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
5132 PackVectorOp(Op.getOperand(1), NewVT),
5133 PackVectorOp(Op.getOperand(2), NewVT));
5134 break;
Chris Lattner32206f52006-03-18 01:44:44 +00005135 }
5136
5137 if (TLI.isTypeLegal(NewVT))
5138 Result = LegalizeOp(Result);
5139 bool isNew = PackedNodes.insert(std::make_pair(Op, Result)).second;
5140 assert(isNew && "Value already packed?");
5141 return Result;
5142}
5143
Chris Lattnerdc750592005-01-07 07:47:09 +00005144
5145// SelectionDAG::Legalize - This is the entry point for the file.
5146//
Chris Lattner4add7e32005-01-23 04:42:50 +00005147void SelectionDAG::Legalize() {
Chris Lattneref598052006-04-02 03:07:27 +00005148 if (ViewLegalizeDAGs) viewGraph();
5149
Chris Lattnerdc750592005-01-07 07:47:09 +00005150 /// run - This is the main entry point to this class.
5151 ///
Chris Lattner9dcce6d2006-01-28 07:39:30 +00005152 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattnerdc750592005-01-07 07:47:09 +00005153}
5154