blob: bf467b733d08abe70f6dfb044903c548f549e5ef [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000017#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000018#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000019#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000020#include "llvm/Target/TargetOptions.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000021#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000022#include "llvm/Constants.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000023#include "llvm/Support/MathExtras.h"
24#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000025#include "llvm/Support/Compiler.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000026#include "llvm/ADT/SmallVector.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000027#include <iostream>
Evan Cheng033e6812006-03-24 01:17:21 +000028#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000029using namespace llvm;
30
Chris Lattner5e46a192006-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 Lattner3e928bb2005-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 Lattner360e8202006-06-28 21:58:30 +000052class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000053 TargetLowering &TLI;
54 SelectionDAG &DAG;
55
Chris Lattner6831a812006-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 Lattner3e928bb2005-01-07 07:47:09 +000068 enum LegalizeAction {
Chris Lattner68a17fe2006-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 Lattnerd74ea2b2006-05-24 17:04:05 +000071 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000072 };
Chris Lattner6831a812006-02-13 09:18:02 +000073
Chris Lattner3e928bb2005-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 Lattner68a17fe2006-01-29 08:42:06 +000077 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000078
Chris Lattner3e928bb2005-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 Lattner03c85462005-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 Lattnerc7029802006-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 Lattner3e928bb2005-01-07 07:47:09 +000092 std::map<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
93
Chris Lattnerc7029802006-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 Lattner8afc48e2005-01-07 22:28:47 +0000104 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner69a889e2005-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 Lattner8afc48e2005-01-07 22:28:47 +0000109 }
Chris Lattner03c85462005-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 Lattner69a889e2005-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 Lattner03c85462005-01-15 05:21:40 +0000115 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000116
Chris Lattner3e928bb2005-01-07 07:47:09 +0000117public:
118
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000119 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000120
Chris Lattner3e928bb2005-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 Lattner68a17fe2006-01-29 08:42:06 +0000125 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-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 Lattner3e928bb2005-01-07 07:47:09 +0000134 void LegalizeDAG();
135
Chris Lattner456a93a2006-01-28 07:39:30 +0000136private:
Chris Lattnerc7029802006-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 Lattner3e928bb2005-01-07 07:47:09 +0000144 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-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 Lattner03c85462005-01-15 05:21:40 +0000151 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000152
Chris Lattnerc7029802006-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 Lattner4352cc92006-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 Lattnerc9cf4f12006-07-26 23:55:56 +0000182 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
183 std::set<SDNode*> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000184
Nate Begeman750ac1b2006-02-01 07:19:44 +0000185 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
186
Chris Lattnerce872152006-03-19 06:31:19 +0000187 SDOperand CreateStackTemporary(MVT::ValueType VT);
188
Chris Lattner77e77a62005-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 Lattnercad063f2005-07-16 00:19:57 +0000193
Chris Lattner35481892005-12-23 00:16:34 +0000194 SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
Chris Lattnerce872152006-03-19 06:31:19 +0000195 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000196 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskey6269ed12005-08-17 00:39:29 +0000197 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
198 SDOperand LegalOp,
199 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000200 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
201 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000202 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
203 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000204
Chris Lattner456a93a2006-01-28 07:39:30 +0000205 SDOperand ExpandBSWAP(SDOperand Op);
206 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000207 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
208 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000209 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
210 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000211
Chris Lattner15972212006-03-31 17:55:51 +0000212 SDOperand LowerVEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000213 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner15972212006-03-31 17:55:51 +0000214
Chris Lattner3e928bb2005-01-07 07:47:09 +0000215 SDOperand getIntPtrConstant(uint64_t Val) {
216 return DAG.getConstant(Val, TLI.getPointerTy());
217 }
218};
219}
220
Chris Lattner4352cc92006-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 Lattnerbd564bf2006-08-08 02:23:42 +0000245 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-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 Lattnerbd564bf2006-08-08 02:23:42 +0000257 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-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 Lattnerc7029802006-03-18 01:44:44 +0000266/// getScalarizedOpcode - Return the scalar opcode that corresponds to the
267/// specified vector opcode.
Chris Lattnerb89175f2005-11-19 05:51:46 +0000268static unsigned getScalarizedOpcode(unsigned VecOp, MVT::ValueType VT) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000269 switch (VecOp) {
270 default: assert(0 && "Don't know how to scalarize this opcode!");
Evan Cheng3e1ce5a2006-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 Begeman5fbb5d22005-11-19 00:36:38 +0000279 }
280}
Chris Lattner3e928bb2005-01-07 07:47:09 +0000281
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000282SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
283 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
284 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000285 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000286 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000287}
288
Chris Lattner32fca002005-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 Lattner32fca002005-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 Lattner1618beb2005-07-29 00:11:56 +0000309
Chris Lattner3e928bb2005-01-07 07:47:09 +0000310void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000311 LastCALLSEQ_END = DAG.getEntryNode();
312 IsLegalizingCall = false;
313
Chris Lattnerab510a72005-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 Lattner32fca002005-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 Lattnerab510a72005-10-02 17:49:46 +0000322
Chris Lattner32fca002005-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 Lattnerde202b32005-11-09 23:47:37 +0000327 if (I->getNumOperands() == 0) {
328 Visited[I] = 0 - 1U;
329 ComputeTopDownOrdering(I, Order, Visited);
Chris Lattnerab510a72005-10-02 17:49:46 +0000330 }
Chris Lattnerab510a72005-10-02 17:49:46 +0000331 }
332
Chris Lattnerde202b32005-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 Lattner32fca002005-10-06 01:20:27 +0000336 "Error: DAG is cyclic!");
337 Visited.clear();
Chris Lattnerab510a72005-10-02 17:49:46 +0000338
Chris Lattnerc7029802006-03-18 01:44:44 +0000339 for (unsigned i = 0, e = Order.size(); i != e; ++i)
340 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000341
342 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000343 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000344 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
345 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000346
347 ExpandedNodes.clear();
348 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000349 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000350 SplitNodes.clear();
351 PackedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000352
353 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000354 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000355}
356
Chris Lattner6831a812006-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 Lattnerc9cf4f12006-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 Lattner6831a812006-02-13 09:18:02 +0000418 if (N == Dest) return true; // N certainly leads to Dest :)
419
Chris Lattnerc9cf4f12006-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 Lattner6831a812006-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 Lattnerc9cf4f12006-07-26 23:55:56 +0000443 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000444
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000445 if (OperandsLeadToDest) {
446 NodesLeadingTo.insert(N);
447 return true;
448 }
Chris Lattner6831a812006-02-13 09:18:02 +0000449
450 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000451 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000452 return false;
453}
454
Chris Lattnerc7029802006-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 Lattner4794a6b2006-03-19 00:07:49 +0000485 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000486 }
487 }
488 break;
489 }
490}
Chris Lattner6831a812006-02-13 09:18:02 +0000491
492
Chris Lattnerc7029802006-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 Lattner3e928bb2005-01-07 07:47:09 +0000496SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000497 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000498 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000499 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000500
Chris Lattner3e928bb2005-01-07 07:47:09 +0000501 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000502 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000503 if (Node->getNumValues() > 1) {
504 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000505 if (getTypeAction(Node->getValueType(i)) != Legal) {
506 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000507 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000508 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000509 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000510 }
511 }
512
Chris Lattner45982da2005-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 Lattnere1bd8222005-01-11 05:57:22 +0000515 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
516 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000517
Nate Begeman9373a812005-08-10 20:51:12 +0000518 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000519 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000520 bool isCustom = false;
521
Chris Lattner3e928bb2005-01-07 07:47:09 +0000522 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-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 Begeman37efe672006-04-22 18:53:45 +0000528 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000529 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000530 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-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 Lenharth82c3d8f2006-10-11 04:29:42 +0000538 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner948c1b12006-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 Lattner3e928bb2005-01-07 07:47:09 +0000543 default:
Chris Lattnerd73cc5d2005-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 Lattnerf06f35e2006-08-08 01:09:31 +0000547 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000548 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000549 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000550
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000551 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-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 Laskeye37fe9b2006-07-11 17:58:07 +0000558#ifndef NDEBUG
Chris Lattner3e928bb2005-01-07 07:47:09 +0000559 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000560#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000561 assert(0 && "Do not know how to legalize this operator!");
562 abort();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000563 case ISD::GlobalAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000564 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000565 case ISD::ConstantPool:
566 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-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 Lattner948c1b12006-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 Lattner0c8fbe32005-11-17 06:41:44 +0000573 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000574 break;
575 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000576 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000577 case ISD::AssertSext:
578 case ISD::AssertZext:
579 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000580 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000581 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000582 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000583 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000584 Result = Node->getOperand(Op.ResNo);
585 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000586 case ISD::CopyFromReg:
587 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000588 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000589 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000590 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000591 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000592 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000593 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000594 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-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 Lattner7310fb12005-12-18 15:27:43 +0000599 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
600 }
Chris Lattner13c184d2005-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 Begemanfc1b1da2005-04-01 22:34:39 +0000606 case ISD::UNDEF: {
607 MVT::ValueType VT = Op.getValueType();
608 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000609 default: assert(0 && "This action is not supported yet!");
610 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-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 Begemanea19cd52005-04-02 00:41:14 +0000618 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000619 break;
620 }
621 break;
622 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000623
Chris Lattner48b61a72006-03-28 00:40:33 +0000624 case ISD::INTRINSIC_W_CHAIN:
625 case ISD::INTRINSIC_WO_CHAIN:
626 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000627 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-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 Lattnerf06f35e2006-08-08 01:09:31 +0000630 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +0000631
632 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +0000633 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +0000634 TargetLowering::Custom) {
635 Tmp3 = TLI.LowerOperation(Result, DAG);
636 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-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 Lattnerd1f04d42006-03-24 02:26:29 +0000650 }
Chris Lattner36ce6912005-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 Laskeyf5395ce2005-12-16 22:45:29 +0000659 case TargetLowering::Expand: {
Jim Laskeyb2efb852006-01-04 22:28:25 +0000660 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskeyabf6d172006-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 Laskey063e7652006-01-17 17:31:53 +0000669 unsigned SrcFile = DebugInfo->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000670
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000671 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +0000672 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-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 Lattnerbd564bf2006-08-08 02:23:42 +0000680 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000681 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +0000682 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
683 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000684 unsigned ID = DebugInfo->RecordLabel(Line, Col, SrcFile);
685 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000686 Result = DAG.getNode(ISD::DEBUG_LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000687 }
Jim Laskeye81aecb2005-12-21 20:51:37 +0000688 } else {
689 Result = Tmp1; // chain
690 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000691 break;
Chris Lattnere7736732005-12-18 23:54:29 +0000692 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000693 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +0000694 if (Tmp1 != Node->getOperand(0) ||
695 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000696 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +0000697 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-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 Lattner36ce6912005-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 Lattnerf06f35e2006-08-08 01:09:31 +0000708 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +0000709 }
710 break;
711 }
712 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000713
714 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +0000715 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000716 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000717 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-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 Lattnerc52ad4f2006-01-28 10:58:55 +0000723 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-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 Laskeyabf6d172006-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 Lattnerc52ad4f2006-01-28 10:58:55 +0000735 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000736 break;
737 }
Nate Begeman551bf3f2006-02-17 05:43:56 +0000738 break;
Chris Lattner36ce6912005-11-29 06:21:05 +0000739
Chris Lattner3e928bb2005-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 Lattner3e928bb2005-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 Lattner3181a772006-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 Lattner3e928bb2005-01-07 07:47:09 +0000779 // Otherwise we need to spill the constant to memory.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000780 bool Extend = false;
781
Chris Lattner456a93a2006-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 Lattner3e928bb2005-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 Lattner99939d32005-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 Chengc5484282006-10-04 00:56:09 +0000793 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000794 LLVMC = cast<ConstantFP>(ConstantExpr::getCast(LLVMC, Type::FloatTy));
795 VT = MVT::f32;
796 Extend = true;
797 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000798
Chris Lattner456a93a2006-01-28 07:39:30 +0000799 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Chris Lattnerf8161d82005-01-16 05:06:12 +0000800 if (Extend) {
Chris Lattner5f056bf2005-07-10 01:55:33 +0000801 Result = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Cheng466685d2006-10-09 20:57:25 +0000802 CPIdx, NULL, 0, MVT::f32);
Chris Lattnerf8161d82005-01-16 05:06:12 +0000803 } else {
Evan Cheng466685d2006-10-09 20:57:25 +0000804 Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattnerf8161d82005-01-16 05:06:12 +0000805 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000806 }
807 break;
808 }
Chris Lattner040c11c2005-11-09 18:48:57 +0000809 case ISD::TokenFactor:
810 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-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 Lattner040c11c2005-11-09 18:48:57 +0000819 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000820 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +0000821 // Legalize the operands.
Chris Lattnerc52ad4f2006-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 Lattnerf06f35e2006-08-08 01:09:31 +0000824 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +0000825 }
Chris Lattnera385e9b2005-01-13 17:59:25 +0000826 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000827
828 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000829 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +0000830 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-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 Lattnere2e41732006-05-16 05:49:56 +0000835
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000836 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +0000837 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +0000838 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
839 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +0000840 if (Op.ResNo == i)
841 Tmp2 = Tmp1;
842 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
843 }
844 return Tmp2;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000845
Chris Lattnerb2827b02006-03-19 00:52:58 +0000846 case ISD::BUILD_VECTOR:
847 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-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 Lattnerce872152006-03-19 06:31:19 +0000856 case TargetLowering::Expand:
857 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +0000858 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +0000859 }
Chris Lattner2332b9f2006-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 Lattner8d5a8942006-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 Lattnerbd564bf2006-08-08 02:23:42 +0000893 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner8d5a8942006-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 Lattnerbd564bf2006-08-08 02:23:42 +0000900 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
901 &ShufOps[0], ShufOps.size());
Chris Lattner8d5a8942006-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 Lattner2332b9f2006-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 Chengf6bf87f2006-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 Chengeb0b4612006-03-31 01:27:51 +0000920 // Store the vector.
Evan Cheng8b2794a2006-10-13 21:14:26 +0000921 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +0000922
923 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000924 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
925 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +0000926 // Add the offset to the index.
Evan Chengf6bf87f2006-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 Chengeb0b4612006-03-31 01:27:51 +0000930 // Store the scalar value.
Evan Cheng8b2794a2006-10-13 21:14:26 +0000931 Ch = DAG.getStore(Ch, Tmp2, StackPtr2, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +0000932 // Load the updated vector.
Evan Cheng466685d2006-10-09 20:57:25 +0000933 Result = DAG.getLoad(VT, Ch, StackPtr, NULL, 0);
Chris Lattner2332b9f2006-03-19 01:17:20 +0000934 break;
935 }
936 }
937 break;
Chris Lattnerce872152006-03-19 06:31:19 +0000938 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-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 Lattnerce872152006-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 Lattner4d3abee2006-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 Lattner4352cc92006-04-04 17:23:26 +0000958 case TargetLowering::Expand:
959 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +0000960 break;
961 }
Chris Lattnerce872152006-03-19 06:31:19 +0000962 break;
Chris Lattner87100e02006-03-20 01:52:29 +0000963 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-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 Lattner4352cc92006-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 Cheng18dd6d02006-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 Lattnerbd564bf2006-08-08 02:23:42 +0000988 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-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 Lattnerbd564bf2006-08-08 02:23:42 +00001004 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001005 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001006 }
Chris Lattner4352cc92006-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 Lattner87100e02006-03-20 01:52:29 +00001023 }
1024 break;
Chris Lattner384504c2006-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 Lattnere35c2182006-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 Lattner4aab2f42006-04-02 05:06:04 +00001043 case TargetLowering::Expand:
1044 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattnere35c2182006-03-21 21:02:03 +00001045 break;
1046 }
Chris Lattner384504c2006-03-21 20:44:12 +00001047 break;
1048
Chris Lattner15972212006-03-31 17:55:51 +00001049 case ISD::VEXTRACT_VECTOR_ELT:
1050 Result = LegalizeOp(LowerVEXTRACT_VECTOR_ELT(Op));
Chris Lattner384504c2006-03-21 20:44:12 +00001051 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001052
Chris Lattner6831a812006-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 Lattnerc9cf4f12006-07-26 23:55:56 +00001059 {std::set<SDNode*> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001060 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001061 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1062 NodesLeadingTo);
1063 }
Chris Lattner6831a812006-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 Lattnerc5d7d7c2006-05-17 18:00:08 +00001071 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001072 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1073 Tmp1 = LegalizeOp(Tmp1);
1074 }
Chris Lattner6831a812006-02-13 09:18:02 +00001075
1076 // Do not try to legalize the target-specific arguments (#1+).
1077 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001078 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001079 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001080 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001081 }
1082
1083 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-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 Lattner6831a812006-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 Lattner16cd04d2005-05-12 23:24:06 +00001103 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-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 Lattner3e928bb2005-01-07 07:47:09 +00001116 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-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 Lattnerf06f35e2006-08-08 01:09:31 +00001121 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001122 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001123 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-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 Lattnerf06f35e2006-08-08 01:09:31 +00001129 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001130 Ops[0] = Tmp1;
1131 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001132 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001133 }
Chris Lattner6a542892006-01-24 05:48:21 +00001134 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001135 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001136 // This finishes up call legalization.
1137 IsLegalizingCall = false;
Chris Lattner4b653a02006-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 Chenga7dce3c2006-01-11 22:14:47 +00001144 case ISD::DYNAMIC_STACKALLOC: {
Chris Lattnerfa404e82005-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 Lattnerc52ad4f2006-01-28 10:58:55 +00001148 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001149
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001150 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001151 Tmp2 = Result.getValue(1);
Evan Chenga7dce3c2006-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 Lattner903d2782006-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 Lattnerc52ad4f2006-01-28 10:58:55 +00001164 Tmp1 = LegalizeOp(Tmp1);
1165 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001166 break;
1167 }
1168 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001169 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1170 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001171 Tmp1 = LegalizeOp(Tmp3);
1172 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001173 }
Chris Lattner903d2782006-01-15 08:54:32 +00001174 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001175 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001176 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001177 }
Chris Lattner903d2782006-01-15 08:54:32 +00001178 // Since this op produce two values, make sure to remember that we
1179 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001180 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1181 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001182 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001183 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001184 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001185 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-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 Lattnerce7518c2006-01-26 22:24:51 +00001204 }
Chris Lattner25a022c2006-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 Lattnerf06f35e2006-08-08 01:09:31 +00001213 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001214
1215 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001216 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001217 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1218 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001219 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001220 case ISD::BR:
1221 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-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 Lattnerc52ad4f2006-01-28 10:58:55 +00001227 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001228 break;
Nate Begeman37efe672006-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 Cheng3d4ce112006-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 Chengd0631892006-10-31 02:31:00 +00001282 Addr = (PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD;
Evan Cheng3d4ce112006-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 Lattnerc18ae4c2005-01-07 08:19:42 +00001291 case ISD::BRCOND:
1292 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-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 Lattner47e92232005-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 Lattnerf9908172006-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 Lattner47e92232005-01-18 19:27:06 +00001311 break;
1312 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001313
1314 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001315 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-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 Lattner456a93a2006-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 Begeman7cbd5252005-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 Begeman7cbd5252005-08-16 19:49:35 +00001338 }
1339 break;
1340 case ISD::BR_CC:
1341 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-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 Begeman750ac1b2006-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 Lattner181b7a32005-12-17 23:46:46 +00001359 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001360
1361 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1362 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001363
Chris Lattner181b7a32005-12-17 23:46:46 +00001364 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1365 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-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 Lattner181b7a32005-12-17 23:46:46 +00001370 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001371 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001372 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001373 case ISD::LOAD: {
Evan Cheng466685d2006-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 Lenharth2d86ea22005-04-27 20:10:01 +00001377
Evan Cheng466685d2006-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 Lattner456a93a2006-01-28 07:39:30 +00001384
Evan Cheng466685d2006-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 Lattner456a93a2006-01-28 07:39:30 +00001393 }
Evan Cheng466685d2006-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 Lattnerc52ad4f2006-01-28 10:58:55 +00001405 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001406 }
Evan Cheng466685d2006-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 Cheng2e49f092006-10-11 07:10:22 +00001414 MVT::ValueType SrcVT = LD->getLoadedVT();
Evan Cheng466685d2006-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 Lattnerc52ad4f2006-01-28 10:58:55 +00001425 break;
Evan Cheng466685d2006-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 Lattner01ff7212005-04-10 22:54:25 +00001473 }
Chris Lattner01ff7212005-04-10 22:54:25 +00001474 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001475 case ISD::EXTRACT_ELEMENT: {
1476 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1477 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001478 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-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 Begeman5dc897b2005-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 Lattner3e928bb2005-01-07 07:47:09 +00001501 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00001502 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001503
1504 case ISD::CopyToReg:
1505 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00001506
Chris Lattnerc9c60f62005-08-24 16:35:28 +00001507 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001508 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00001509 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001510 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001511 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001512 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001513 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001514 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001515 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001516 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-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 Lattner7310fb12005-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 Lattnerc52ad4f2006-01-28 10:58:55 +00001525 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001526 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001527 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00001528 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001529 break;
1530
1531 case ISD::RET:
1532 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-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 Lattnerf87324e2006-04-11 01:31:51 +00001538
Chris Lattner3e928bb2005-01-07 07:47:09 +00001539 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00001540 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00001541 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001542 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00001543 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001544 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00001545 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001546 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00001547 case Expand:
1548 if (Tmp2.getValueType() != MVT::Vector) {
1549 SDOperand Lo, Hi;
1550 ExpandOp(Tmp2, Lo, Hi);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001551 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00001552 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-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 Cheng8e7d0562006-05-26 23:09:09 +00001565 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-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 Cheng8e7d0562006-05-26 23:09:09 +00001569 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-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 Lattnerf87324e2006-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 Lattnerb49e52c2006-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 Lattnerf87324e2006-04-11 01:31:51 +00001580 SDOperand Lo, Hi;
1581 SplitVectorOp(Tmp2, Lo, Hi);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001582 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001583 Result = LegalizeOp(Result);
1584 }
1585 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001586 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001587 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001588 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001589 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001590 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001591 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001592 }
1593 break;
1594 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001595 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001596 break;
1597 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001598 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001599 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001600 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00001601 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1602 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00001603 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001604 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001605 break;
1606 case Expand: {
1607 SDOperand Lo, Hi;
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001608 assert(Node->getOperand(i).getValueType() != MVT::Vector &&
1609 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001610 ExpandOp(Node->getOperand(i), Lo, Hi);
1611 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001612 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001613 NewValues.push_back(Hi);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001614 NewValues.push_back(Node->getOperand(i+1));
Misha Brukmanedf128a2005-04-21 22:36:52 +00001615 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001616 }
1617 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001618 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001619 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001620
1621 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001622 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001623 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001624 Result = DAG.getNode(ISD::RET, MVT::Other,
1625 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00001626 break;
1627 }
1628 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001629
Chris Lattner6862dbc2006-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 Cheng17c428e2006-01-06 00:41:43 +00001639 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001640 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001641 case ISD::STORE: {
Evan Cheng8b2794a2006-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 Lattner3e928bb2005-01-07 07:47:09 +00001645
Evan Cheng8b2794a2006-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 Lattner5d2c6c72005-01-08 06:25:56 +00001660 }
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001661
Evan Cheng8b2794a2006-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 Chengf3fd9fe2005-12-23 07:29:34 +00001667
Evan Cheng8b2794a2006-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 Lattner456a93a2006-01-28 07:39:30 +00001773 default: assert(0 && "This action is not supported yet!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00001774 case TargetLowering::Legal: break;
Chris Lattner456a93a2006-01-28 07:39:30 +00001775 case TargetLowering::Custom:
1776 Tmp1 = TLI.LowerOperation(Result, DAG);
1777 if (Tmp1.Val) Result = Tmp1;
1778 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001779 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001780 }
1781 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001782 }
Andrew Lenharth95762122005-03-31 21:24:06 +00001783 case ISD::PCMARKER:
1784 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001785 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00001786 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001787 case ISD::STACKSAVE:
1788 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001789 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1790 Tmp1 = Result.getValue(0);
1791 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001792
Chris Lattner140d53c2006-01-13 02:50:02 +00001793 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1794 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001795 case TargetLowering::Legal: break;
1796 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-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 Lattner140d53c2006-01-13 02:50:02 +00001801 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001802 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001803 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001804 // Expand to CopyFromReg if the target set
1805 // StackPointerRegisterToSaveRestore.
1806 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001807 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001808 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001809 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001810 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001811 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1812 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001813 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001814 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001815 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001816
1817 // Since stacksave produce two values, make sure to remember that we
1818 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001819 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1820 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1821 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00001822
Chris Lattner140d53c2006-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 Lattnerc52ad4f2006-01-28 10:58:55 +00001826 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-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 Lattner456a93a2006-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 Lattner140d53c2006-01-13 02:50:02 +00001834 break;
1835 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-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 Lattner140d53c2006-01-13 02:50:02 +00001843 break;
1844 }
1845 break;
1846
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001847 case ISD::READCYCLECOUNTER:
1848 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001849 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-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!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00001853 case TargetLowering::Legal:
1854 Tmp1 = Result.getValue(0);
1855 Tmp2 = Result.getValue(1);
1856 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00001857 case TargetLowering::Custom:
1858 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00001859 Tmp1 = LegalizeOp(Result.getValue(0));
1860 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00001861 break;
1862 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00001863
1864 // Since rdcc produce two values, make sure to remember that we legalized
1865 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00001866 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1867 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001868 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00001869
Chris Lattner2ee743f2005-01-14 22:08:15 +00001870 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00001871 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1872 case Expand: assert(0 && "It's impossible to expand bools");
1873 case Legal:
1874 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1875 break;
1876 case Promote:
1877 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00001878 // Make sure the condition is either zero or one.
1879 if (!TLI.MaskedValueIsZero(Tmp1,
1880 MVT::getIntVTBitMask(Tmp1.getValueType())^1))
1881 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001882 break;
1883 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001884 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00001885 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001886
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001887 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00001888
Nate Begemanb942a3d2005-08-23 04:29:48 +00001889 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001890 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001891 case TargetLowering::Legal: break;
1892 case TargetLowering::Custom: {
1893 Tmp1 = TLI.LowerOperation(Result, DAG);
1894 if (Tmp1.Val) Result = Tmp1;
1895 break;
1896 }
Nate Begeman9373a812005-08-10 20:51:12 +00001897 case TargetLowering::Expand:
1898 if (Tmp1.getOpcode() == ISD::SETCC) {
1899 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
1900 Tmp2, Tmp3,
1901 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1902 } else {
1903 Result = DAG.getSelectCC(Tmp1,
1904 DAG.getConstant(0, Tmp1.getValueType()),
1905 Tmp2, Tmp3, ISD::SETNE);
1906 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001907 break;
1908 case TargetLowering::Promote: {
1909 MVT::ValueType NVT =
1910 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1911 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001912 if (MVT::isVector(Tmp2.getValueType())) {
1913 ExtOp = ISD::BIT_CONVERT;
1914 TruncOp = ISD::BIT_CONVERT;
1915 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001916 ExtOp = ISD::ANY_EXTEND;
1917 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001918 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00001919 ExtOp = ISD::FP_EXTEND;
1920 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001921 }
1922 // Promote each of the values to the new type.
1923 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
1924 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
1925 // Perform the larger operation, then round down.
1926 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
1927 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
1928 break;
1929 }
1930 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001931 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00001932 case ISD::SELECT_CC: {
1933 Tmp1 = Node->getOperand(0); // LHS
1934 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00001935 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
1936 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00001937 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00001938
Nate Begeman750ac1b2006-02-01 07:19:44 +00001939 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
1940
1941 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1942 // the LHS is a legal SETCC itself. In this case, we need to compare
1943 // the result against zero to select between true and false values.
1944 if (Tmp2.Val == 0) {
1945 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
1946 CC = DAG.getCondCode(ISD::SETNE);
1947 }
1948 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
1949
1950 // Everything is legal, see if we should expand this op or something.
1951 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
1952 default: assert(0 && "This action is not supported yet!");
1953 case TargetLowering::Legal: break;
1954 case TargetLowering::Custom:
1955 Tmp1 = TLI.LowerOperation(Result, DAG);
1956 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00001957 break;
Nate Begeman9373a812005-08-10 20:51:12 +00001958 }
1959 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00001960 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001961 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00001962 Tmp1 = Node->getOperand(0);
1963 Tmp2 = Node->getOperand(1);
1964 Tmp3 = Node->getOperand(2);
1965 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
1966
1967 // If we had to Expand the SetCC operands into a SELECT node, then it may
1968 // not always be possible to return a true LHS & RHS. In this case, just
1969 // return the value we legalized, returned in the LHS
1970 if (Tmp2.Val == 0) {
1971 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001972 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001973 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00001974
Chris Lattner73e142f2006-01-30 22:43:50 +00001975 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001976 default: assert(0 && "Cannot handle this action for SETCC yet!");
1977 case TargetLowering::Custom:
1978 isCustom = true;
1979 // FALLTHROUGH.
1980 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001981 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00001982 if (isCustom) {
1983 Tmp3 = TLI.LowerOperation(Result, DAG);
1984 if (Tmp3.Val) Result = Tmp3;
1985 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00001986 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00001987 case TargetLowering::Promote: {
1988 // First step, figure out the appropriate operation to use.
1989 // Allow SETCC to not be supported for all legal data types
1990 // Mostly this targets FP
1991 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
1992 MVT::ValueType OldVT = NewInTy;
1993
1994 // Scan for the appropriate larger type to use.
1995 while (1) {
1996 NewInTy = (MVT::ValueType)(NewInTy+1);
1997
1998 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
1999 "Fell off of the edge of the integer world");
2000 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2001 "Fell off of the edge of the floating point world");
2002
2003 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002004 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002005 break;
2006 }
2007 if (MVT::isInteger(NewInTy))
2008 assert(0 && "Cannot promote Legal Integer SETCC yet");
2009 else {
2010 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2011 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2012 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002013 Tmp1 = LegalizeOp(Tmp1);
2014 Tmp2 = LegalizeOp(Tmp2);
2015 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Cheng433f8ac2006-01-17 19:47:13 +00002016 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002017 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002018 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002019 case TargetLowering::Expand:
2020 // Expand a setcc node into a select_cc of the same condition, lhs, and
2021 // rhs that selects between const 1 (true) and const 0 (false).
2022 MVT::ValueType VT = Node->getValueType(0);
2023 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2024 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
2025 Node->getOperand(2));
Nate Begemanb942a3d2005-08-23 04:29:48 +00002026 break;
2027 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002028 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002029 case ISD::MEMSET:
2030 case ISD::MEMCPY:
2031 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002032 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00002033 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
2034
2035 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
2036 switch (getTypeAction(Node->getOperand(2).getValueType())) {
2037 case Expand: assert(0 && "Cannot expand a byte!");
2038 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002039 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002040 break;
2041 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002042 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002043 break;
2044 }
2045 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002046 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00002047 }
Chris Lattner272455b2005-02-02 03:44:41 +00002048
2049 SDOperand Tmp4;
2050 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00002051 case Expand: {
2052 // Length is too big, just take the lo-part of the length.
2053 SDOperand HiPart;
Chris Lattnerfa9aa2b2006-11-07 04:11:44 +00002054 ExpandOp(Node->getOperand(3), Tmp4, HiPart);
Chris Lattner6814f152005-07-13 01:42:45 +00002055 break;
2056 }
Chris Lattnere5605212005-01-28 22:29:18 +00002057 case Legal:
2058 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00002059 break;
2060 case Promote:
2061 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00002062 break;
2063 }
2064
2065 SDOperand Tmp5;
2066 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2067 case Expand: assert(0 && "Cannot expand this yet!");
2068 case Legal:
2069 Tmp5 = LegalizeOp(Node->getOperand(4));
2070 break;
2071 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00002072 Tmp5 = PromoteOp(Node->getOperand(4));
2073 break;
2074 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002075
2076 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2077 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002078 case TargetLowering::Custom:
2079 isCustom = true;
2080 // FALLTHROUGH
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002081 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002082 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner456a93a2006-01-28 07:39:30 +00002083 if (isCustom) {
2084 Tmp1 = TLI.LowerOperation(Result, DAG);
2085 if (Tmp1.Val) Result = Tmp1;
2086 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002087 break;
2088 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00002089 // Otherwise, the target does not support this operation. Lower the
2090 // operation to an explicit libcall as appropriate.
2091 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00002092 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Chris Lattnere1bd8222005-01-11 05:57:22 +00002093 std::vector<std::pair<SDOperand, const Type*> > Args;
2094
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00002095 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002096 if (Node->getOpcode() == ISD::MEMSET) {
2097 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
Chris Lattnerdca7abe2006-02-20 06:38:35 +00002098 // Extend the (previously legalized) ubyte argument to be an int value
2099 // for the call.
2100 if (Tmp3.getValueType() > MVT::i32)
2101 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2102 else
2103 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002104 Args.push_back(std::make_pair(Tmp3, Type::IntTy));
2105 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2106
2107 FnName = "memset";
2108 } else if (Node->getOpcode() == ISD::MEMCPY ||
2109 Node->getOpcode() == ISD::MEMMOVE) {
2110 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
2111 Args.push_back(std::make_pair(Tmp3, IntPtrTy));
2112 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2113 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2114 } else {
2115 assert(0 && "Unknown op!");
2116 }
Chris Lattner45982da2005-05-12 16:53:42 +00002117
Chris Lattnere1bd8222005-01-11 05:57:22 +00002118 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattneradf6a962005-05-13 18:50:42 +00002119 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00002120 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00002121 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002122 break;
2123 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00002124 }
2125 break;
2126 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002127
Chris Lattner5b359c62005-04-02 04:00:59 +00002128 case ISD::SHL_PARTS:
2129 case ISD::SRA_PARTS:
2130 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002131 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002132 bool Changed = false;
2133 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2134 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2135 Changed |= Ops.back() != Node->getOperand(i);
2136 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002137 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002138 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002139
Evan Cheng05a2d562006-01-09 18:31:59 +00002140 switch (TLI.getOperationAction(Node->getOpcode(),
2141 Node->getValueType(0))) {
2142 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002143 case TargetLowering::Legal: break;
2144 case TargetLowering::Custom:
2145 Tmp1 = TLI.LowerOperation(Result, DAG);
2146 if (Tmp1.Val) {
2147 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002148 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002149 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002150 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2151 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002152 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002153 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002154 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002155 return RetVal;
2156 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002157 break;
2158 }
2159
Chris Lattner2c8086f2005-04-02 05:00:07 +00002160 // Since these produce multiple values, make sure to remember that we
2161 // legalized all of them.
2162 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2163 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2164 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002165 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002166
2167 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002168 case ISD::ADD:
2169 case ISD::SUB:
2170 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002171 case ISD::MULHS:
2172 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002173 case ISD::UDIV:
2174 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002175 case ISD::AND:
2176 case ISD::OR:
2177 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002178 case ISD::SHL:
2179 case ISD::SRL:
2180 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002181 case ISD::FADD:
2182 case ISD::FSUB:
2183 case ISD::FMUL:
2184 case ISD::FDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002185 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002186 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2187 case Expand: assert(0 && "Not possible");
2188 case Legal:
2189 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2190 break;
2191 case Promote:
2192 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2193 break;
2194 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002195
2196 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002197
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002198 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002199 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002200 case TargetLowering::Legal: break;
2201 case TargetLowering::Custom:
2202 Tmp1 = TLI.LowerOperation(Result, DAG);
2203 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002204 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002205 case TargetLowering::Expand: {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002206 if (Node->getValueType(0) == MVT::i32) {
2207 switch (Node->getOpcode()) {
2208 default: assert(0 && "Do not know how to expand this integer BinOp!");
2209 case ISD::UDIV:
2210 case ISD::SDIV:
2211 const char *FnName = Node->getOpcode() == ISD::UDIV
2212 ? "__udivsi3" : "__divsi3";
2213 SDOperand Dummy;
2214 Result = ExpandLibCall(FnName, Node, Dummy);
2215 };
2216 break;
2217 }
2218
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002219 assert(MVT::isVector(Node->getValueType(0)) &&
2220 "Cannot expand this binary operator!");
2221 // Expand the operation into a bunch of nasty scalar code.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002222 SmallVector<SDOperand, 8> Ops;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002223 MVT::ValueType EltVT = MVT::getVectorBaseType(Node->getValueType(0));
2224 MVT::ValueType PtrVT = TLI.getPointerTy();
2225 for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2226 i != e; ++i) {
2227 SDOperand Idx = DAG.getConstant(i, PtrVT);
2228 SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2229 SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2230 Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2231 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002232 Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0),
2233 &Ops[0], Ops.size());
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002234 break;
2235 }
Evan Chengcc987612006-04-12 21:20:24 +00002236 case TargetLowering::Promote: {
2237 switch (Node->getOpcode()) {
2238 default: assert(0 && "Do not know how to promote this BinOp!");
2239 case ISD::AND:
2240 case ISD::OR:
2241 case ISD::XOR: {
2242 MVT::ValueType OVT = Node->getValueType(0);
2243 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2244 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2245 // Bit convert each of the values to the new type.
2246 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2247 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2248 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2249 // Bit convert the result back the original type.
2250 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2251 break;
2252 }
2253 }
2254 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002255 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002256 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002257
2258 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2259 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2260 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2261 case Expand: assert(0 && "Not possible");
2262 case Legal:
2263 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2264 break;
2265 case Promote:
2266 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2267 break;
2268 }
2269
2270 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2271
2272 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2273 default: assert(0 && "Operation not supported");
2274 case TargetLowering::Custom:
2275 Tmp1 = TLI.LowerOperation(Result, DAG);
2276 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00002277 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002278 case TargetLowering::Legal: break;
2279 case TargetLowering::Expand:
Chris Lattner8f4191d2006-03-13 06:08:38 +00002280 // If this target supports fabs/fneg natively, do this efficiently.
2281 if (TLI.isOperationLegal(ISD::FABS, Tmp1.getValueType()) &&
2282 TLI.isOperationLegal(ISD::FNEG, Tmp1.getValueType())) {
2283 // Get the sign bit of the RHS.
2284 MVT::ValueType IVT =
2285 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2286 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2287 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2288 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2289 // Get the absolute value of the result.
2290 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2291 // Select between the nabs and abs value based on the sign bit of
2292 // the input.
2293 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2294 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2295 AbsVal),
2296 AbsVal);
2297 Result = LegalizeOp(Result);
2298 break;
2299 }
2300
2301 // Otherwise, do bitwise ops!
2302
2303 // copysign -> copysignf/copysign libcall.
Chris Lattnera09f8482006-03-05 05:09:38 +00002304 const char *FnName;
2305 if (Node->getValueType(0) == MVT::f32) {
2306 FnName = "copysignf";
2307 if (Tmp2.getValueType() != MVT::f32) // Force operands to match type.
2308 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2309 DAG.getNode(ISD::FP_ROUND, MVT::f32, Tmp2));
2310 } else {
2311 FnName = "copysign";
2312 if (Tmp2.getValueType() != MVT::f64) // Force operands to match type.
2313 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2314 DAG.getNode(ISD::FP_EXTEND, MVT::f64, Tmp2));
2315 }
2316 SDOperand Dummy;
2317 Result = ExpandLibCall(FnName, Node, Dummy);
2318 break;
2319 }
2320 break;
2321
Nate Begeman551bf3f2006-02-17 05:43:56 +00002322 case ISD::ADDC:
2323 case ISD::SUBC:
2324 Tmp1 = LegalizeOp(Node->getOperand(0));
2325 Tmp2 = LegalizeOp(Node->getOperand(1));
2326 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2327 // Since this produces two values, make sure to remember that we legalized
2328 // both of them.
2329 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2330 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2331 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002332
Nate Begeman551bf3f2006-02-17 05:43:56 +00002333 case ISD::ADDE:
2334 case ISD::SUBE:
2335 Tmp1 = LegalizeOp(Node->getOperand(0));
2336 Tmp2 = LegalizeOp(Node->getOperand(1));
2337 Tmp3 = LegalizeOp(Node->getOperand(2));
2338 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2339 // Since this produces two values, make sure to remember that we legalized
2340 // both of them.
2341 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2342 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2343 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002344
Nate Begeman419f8b62005-10-18 00:27:41 +00002345 case ISD::BUILD_PAIR: {
2346 MVT::ValueType PairTy = Node->getValueType(0);
2347 // TODO: handle the case where the Lo and Hi operands are not of legal type
2348 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2349 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2350 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002351 case TargetLowering::Promote:
2352 case TargetLowering::Custom:
2353 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00002354 case TargetLowering::Legal:
2355 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2356 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2357 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00002358 case TargetLowering::Expand:
2359 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2360 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2361 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2362 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2363 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00002364 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00002365 break;
2366 }
2367 break;
2368 }
2369
Nate Begemanc105e192005-04-06 00:23:54 +00002370 case ISD::UREM:
2371 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002372 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00002373 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2374 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002375
Nate Begemanc105e192005-04-06 00:23:54 +00002376 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002377 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2378 case TargetLowering::Custom:
2379 isCustom = true;
2380 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00002381 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002382 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002383 if (isCustom) {
2384 Tmp1 = TLI.LowerOperation(Result, DAG);
2385 if (Tmp1.Val) Result = Tmp1;
2386 }
Nate Begemanc105e192005-04-06 00:23:54 +00002387 break;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002388 case TargetLowering::Expand:
Evan Cheng6b5578f2006-09-18 23:28:33 +00002389 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002390 if (MVT::isInteger(Node->getValueType(0))) {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002391 if (TLI.getOperationAction(DivOpc, Node->getValueType(0)) ==
2392 TargetLowering::Legal) {
2393 // X % Y -> X-X/Y*Y
2394 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng6b5578f2006-09-18 23:28:33 +00002395 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002396 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2397 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2398 } else {
2399 assert(Node->getValueType(0) == MVT::i32 &&
2400 "Cannot expand this binary operator!");
2401 const char *FnName = Node->getOpcode() == ISD::UREM
2402 ? "__umodsi3" : "__modsi3";
2403 SDOperand Dummy;
2404 Result = ExpandLibCall(FnName, Node, Dummy);
2405 }
Chris Lattner4c64dd72005-08-03 20:31:37 +00002406 } else {
2407 // Floating point mod -> fmod libcall.
2408 const char *FnName = Node->getValueType(0) == MVT::f32 ? "fmodf":"fmod";
2409 SDOperand Dummy;
Chris Lattner9c6b4b82006-01-28 04:28:26 +00002410 Result = ExpandLibCall(FnName, Node, Dummy);
Nate Begemanc105e192005-04-06 00:23:54 +00002411 }
2412 break;
2413 }
2414 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00002415 case ISD::VAARG: {
2416 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2417 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2418
Chris Lattner5c62f332006-01-28 07:42:08 +00002419 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00002420 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2421 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002422 case TargetLowering::Custom:
2423 isCustom = true;
2424 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002425 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002426 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2427 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002428 Tmp1 = Result.getValue(1);
2429
2430 if (isCustom) {
2431 Tmp2 = TLI.LowerOperation(Result, DAG);
2432 if (Tmp2.Val) {
2433 Result = LegalizeOp(Tmp2);
2434 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2435 }
2436 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002437 break;
2438 case TargetLowering::Expand: {
Evan Cheng466685d2006-10-09 20:57:25 +00002439 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00002440 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00002441 SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002442 // Increment the pointer, VAList, to the next vaarg
2443 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2444 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2445 TLI.getPointerTy()));
2446 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00002447 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
2448 SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002449 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00002450 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002451 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00002452 Result = LegalizeOp(Result);
2453 break;
2454 }
2455 }
2456 // Since VAARG produces two values, make sure to remember that we
2457 // legalized both of them.
2458 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00002459 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2460 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00002461 }
2462
2463 case ISD::VACOPY:
2464 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2465 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2466 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
2467
2468 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2469 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002470 case TargetLowering::Custom:
2471 isCustom = true;
2472 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002473 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002474 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2475 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00002476 if (isCustom) {
2477 Tmp1 = TLI.LowerOperation(Result, DAG);
2478 if (Tmp1.Val) Result = Tmp1;
2479 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002480 break;
2481 case TargetLowering::Expand:
2482 // This defaults to loading a pointer from the input and storing it to the
2483 // output, returning the chain.
Evan Cheng466685d2006-10-09 20:57:25 +00002484 SrcValueSDNode *SVD = cast<SrcValueSDNode>(Node->getOperand(3));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002485 SrcValueSDNode *SVS = cast<SrcValueSDNode>(Node->getOperand(4));
Evan Cheng466685d2006-10-09 20:57:25 +00002486 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, SVD->getValue(),
2487 SVD->getOffset());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002488 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, SVS->getValue(),
2489 SVS->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002490 break;
2491 }
2492 break;
2493
2494 case ISD::VAEND:
2495 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2496 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2497
2498 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2499 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002500 case TargetLowering::Custom:
2501 isCustom = true;
2502 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002503 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002504 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00002505 if (isCustom) {
2506 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2507 if (Tmp1.Val) Result = Tmp1;
2508 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002509 break;
2510 case TargetLowering::Expand:
2511 Result = Tmp1; // Default to a no-op, return the chain
2512 break;
2513 }
2514 break;
2515
2516 case ISD::VASTART:
2517 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2518 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2519
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002520 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2521
Nate Begemanacc398c2006-01-25 18:21:52 +00002522 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2523 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002524 case TargetLowering::Legal: break;
2525 case TargetLowering::Custom:
2526 Tmp1 = TLI.LowerOperation(Result, DAG);
2527 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00002528 break;
2529 }
2530 break;
2531
Nate Begeman35ef9132006-01-11 21:21:00 +00002532 case ISD::ROTL:
2533 case ISD::ROTR:
2534 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2535 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002536
2537 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
2538 "Cannot handle this yet!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002539 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Nate Begeman35ef9132006-01-11 21:21:00 +00002540 break;
2541
Nate Begemand88fc032006-01-14 03:14:10 +00002542 case ISD::BSWAP:
2543 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2544 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002545 case TargetLowering::Custom:
2546 assert(0 && "Cannot custom legalize this yet!");
2547 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002548 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002549 break;
2550 case TargetLowering::Promote: {
2551 MVT::ValueType OVT = Tmp1.getValueType();
2552 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2553 unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00002554
Chris Lattner456a93a2006-01-28 07:39:30 +00002555 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2556 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2557 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2558 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2559 break;
2560 }
2561 case TargetLowering::Expand:
2562 Result = ExpandBSWAP(Tmp1);
2563 break;
Nate Begemand88fc032006-01-14 03:14:10 +00002564 }
2565 break;
2566
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002567 case ISD::CTPOP:
2568 case ISD::CTTZ:
2569 case ISD::CTLZ:
2570 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2571 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002572 case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002573 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002574 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002575 break;
2576 case TargetLowering::Promote: {
2577 MVT::ValueType OVT = Tmp1.getValueType();
2578 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00002579
2580 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002581 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2582 // Perform the larger operation, then subtract if needed.
2583 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002584 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002585 case ISD::CTPOP:
2586 Result = Tmp1;
2587 break;
2588 case ISD::CTTZ:
2589 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002590 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2591 DAG.getConstant(getSizeInBits(NVT), NVT),
2592 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00002593 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002594 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2595 break;
2596 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00002597 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00002598 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2599 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002600 getSizeInBits(OVT), NVT));
2601 break;
2602 }
2603 break;
2604 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002605 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002606 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002607 break;
2608 }
2609 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00002610
Chris Lattner2c8086f2005-04-02 05:00:07 +00002611 // Unary operators
2612 case ISD::FABS:
2613 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00002614 case ISD::FSQRT:
2615 case ISD::FSIN:
2616 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002617 Tmp1 = LegalizeOp(Node->getOperand(0));
2618 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002619 case TargetLowering::Promote:
2620 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00002621 isCustom = true;
2622 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00002623 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002624 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00002625 if (isCustom) {
2626 Tmp1 = TLI.LowerOperation(Result, DAG);
2627 if (Tmp1.Val) Result = Tmp1;
2628 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002629 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00002630 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002631 switch (Node->getOpcode()) {
2632 default: assert(0 && "Unreachable!");
2633 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002634 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2635 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002636 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002637 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002638 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002639 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2640 MVT::ValueType VT = Node->getValueType(0);
2641 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002642 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002643 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2644 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002645 break;
2646 }
2647 case ISD::FSQRT:
2648 case ISD::FSIN:
2649 case ISD::FCOS: {
2650 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002651 const char *FnName = 0;
2652 switch(Node->getOpcode()) {
2653 case ISD::FSQRT: FnName = VT == MVT::f32 ? "sqrtf" : "sqrt"; break;
2654 case ISD::FSIN: FnName = VT == MVT::f32 ? "sinf" : "sin"; break;
2655 case ISD::FCOS: FnName = VT == MVT::f32 ? "cosf" : "cos"; break;
2656 default: assert(0 && "Unreachable!");
2657 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00002658 SDOperand Dummy;
Chris Lattner9c6b4b82006-01-28 04:28:26 +00002659 Result = ExpandLibCall(FnName, Node, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002660 break;
2661 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002662 }
2663 break;
2664 }
2665 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002666 case ISD::FPOWI: {
2667 // We always lower FPOWI into a libcall. No target support it yet.
2668 const char *FnName = Node->getValueType(0) == MVT::f32
2669 ? "__powisf2" : "__powidf2";
2670 SDOperand Dummy;
2671 Result = ExpandLibCall(FnName, Node, Dummy);
2672 break;
2673 }
Chris Lattner35481892005-12-23 00:16:34 +00002674 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00002675 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner35481892005-12-23 00:16:34 +00002676 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Chris Lattner67993f72006-01-23 07:30:46 +00002677 } else {
Chris Lattner35481892005-12-23 00:16:34 +00002678 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2679 Node->getOperand(0).getValueType())) {
2680 default: assert(0 && "Unknown operation action!");
2681 case TargetLowering::Expand:
2682 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2683 break;
2684 case TargetLowering::Legal:
2685 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002686 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00002687 break;
2688 }
2689 }
2690 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00002691 case ISD::VBIT_CONVERT: {
2692 assert(Op.getOperand(0).getValueType() == MVT::Vector &&
2693 "Can only have VBIT_CONVERT where input or output is MVT::Vector!");
2694
2695 // The input has to be a vector type, we have to either scalarize it, pack
2696 // it, or convert it based on whether the input vector type is legal.
2697 SDNode *InVal = Node->getOperand(0).Val;
2698 unsigned NumElems =
2699 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
2700 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
2701
2702 // Figure out if there is a Packed type corresponding to this Vector
2703 // type. If so, convert to the packed type.
2704 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
2705 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
2706 // Turn this into a bit convert of the packed input.
2707 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2708 PackVectorOp(Node->getOperand(0), TVT));
2709 break;
2710 } else if (NumElems == 1) {
2711 // Turn this into a bit convert of the scalar input.
2712 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2713 PackVectorOp(Node->getOperand(0), EVT));
2714 break;
2715 } else {
2716 // FIXME: UNIMP! Store then reload
2717 assert(0 && "Cast from unsupported vector type not implemented yet!");
2718 }
2719 }
2720
Chris Lattner2c8086f2005-04-02 05:00:07 +00002721 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00002722 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002723 case ISD::UINT_TO_FP: {
2724 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002725 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2726 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002727 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002728 Node->getOperand(0).getValueType())) {
2729 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002730 case TargetLowering::Custom:
2731 isCustom = true;
2732 // FALLTHROUGH
2733 case TargetLowering::Legal:
2734 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002735 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002736 if (isCustom) {
2737 Tmp1 = TLI.LowerOperation(Result, DAG);
2738 if (Tmp1.Val) Result = Tmp1;
2739 }
2740 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002741 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00002742 Result = ExpandLegalINT_TO_FP(isSigned,
2743 LegalizeOp(Node->getOperand(0)),
2744 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002745 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002746 case TargetLowering::Promote:
2747 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2748 Node->getValueType(0),
2749 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002750 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00002751 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002752 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00002753 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002754 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2755 Node->getValueType(0), Node->getOperand(0));
2756 break;
2757 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002758 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002759 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002760 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2761 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002762 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002763 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2764 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00002765 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002766 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2767 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002768 break;
2769 }
2770 break;
2771 }
2772 case ISD::TRUNCATE:
2773 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2774 case Legal:
2775 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002776 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002777 break;
2778 case Expand:
2779 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2780
2781 // Since the result is legal, we should just be able to truncate the low
2782 // part of the source.
2783 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2784 break;
2785 case Promote:
2786 Result = PromoteOp(Node->getOperand(0));
2787 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2788 break;
2789 }
2790 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002791
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002792 case ISD::FP_TO_SINT:
2793 case ISD::FP_TO_UINT:
2794 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2795 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00002796 Tmp1 = LegalizeOp(Node->getOperand(0));
2797
Chris Lattner1618beb2005-07-29 00:11:56 +00002798 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2799 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002800 case TargetLowering::Custom:
2801 isCustom = true;
2802 // FALLTHROUGH
2803 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002804 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002805 if (isCustom) {
2806 Tmp1 = TLI.LowerOperation(Result, DAG);
2807 if (Tmp1.Val) Result = Tmp1;
2808 }
2809 break;
2810 case TargetLowering::Promote:
2811 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2812 Node->getOpcode() == ISD::FP_TO_SINT);
2813 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00002814 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00002815 if (Node->getOpcode() == ISD::FP_TO_UINT) {
2816 SDOperand True, False;
2817 MVT::ValueType VT = Node->getOperand(0).getValueType();
2818 MVT::ValueType NVT = Node->getValueType(0);
2819 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2820 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2821 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2822 Node->getOperand(0), Tmp2, ISD::SETLT);
2823 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2824 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00002825 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00002826 Tmp2));
2827 False = DAG.getNode(ISD::XOR, NVT, False,
2828 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00002829 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2830 break;
Nate Begemand2558e32005-08-14 01:20:53 +00002831 } else {
2832 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2833 }
2834 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00002835 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002836 break;
2837 case Expand:
2838 assert(0 && "Shouldn't need to expand other operators here!");
2839 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002840 Tmp1 = PromoteOp(Node->getOperand(0));
2841 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2842 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002843 break;
2844 }
2845 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002846
Chris Lattner13c78e22005-09-02 00:18:10 +00002847 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002848 case ISD::ZERO_EXTEND:
2849 case ISD::SIGN_EXTEND:
2850 case ISD::FP_EXTEND:
2851 case ISD::FP_ROUND:
2852 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002853 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002854 case Legal:
2855 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002856 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002857 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002858 case Promote:
2859 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00002860 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002861 Tmp1 = PromoteOp(Node->getOperand(0));
2862 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00002863 break;
Chris Lattner1713e732005-01-16 00:38:00 +00002864 case ISD::ZERO_EXTEND:
2865 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002866 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00002867 Result = DAG.getZeroExtendInReg(Result,
2868 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00002869 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002870 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00002871 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002872 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00002873 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00002874 Result,
2875 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00002876 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002877 case ISD::FP_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00002878 Result = PromoteOp(Node->getOperand(0));
2879 if (Result.getValueType() != Op.getValueType())
2880 // Dynamically dead while we have only 2 FP types.
2881 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
2882 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002883 case ISD::FP_ROUND:
Chris Lattnerf8161d82005-01-16 05:06:12 +00002884 Result = PromoteOp(Node->getOperand(0));
2885 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
2886 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002887 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002888 }
2889 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00002890 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00002891 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00002892 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00002893 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00002894
2895 // If this operation is not supported, convert it to a shl/shr or load/store
2896 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002897 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
2898 default: assert(0 && "This action not supported for this op yet!");
2899 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002900 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002901 break;
2902 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00002903 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00002904 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00002905 // NOTE: we could fall back on load/store here too for targets without
2906 // SAR. However, it is doubtful that any exist.
2907 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
2908 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00002909 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00002910 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
2911 Node->getOperand(0), ShiftCst);
2912 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
2913 Result, ShiftCst);
2914 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00002915 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00002916 // EXTLOAD pair, targetting a temporary location (a stack slot).
2917
2918 // NOTE: there is a choice here between constantly creating new stack
2919 // slots and always reusing the same one. We currently always create
2920 // new ones, as reuse may inhibit scheduling.
2921 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Owen Andersona69571c2006-05-03 01:29:57 +00002922 unsigned TySize = (unsigned)TLI.getTargetData()->getTypeSize(Ty);
2923 unsigned Align = TLI.getTargetData()->getTypeAlignment(Ty);
Chris Lattner45b8caf2005-01-15 07:15:18 +00002924 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukmanedf128a2005-04-21 22:36:52 +00002925 int SSFI =
Chris Lattner45b8caf2005-01-15 07:15:18 +00002926 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
2927 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002928 Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
2929 StackSlot, NULL, 0, ExtraVT);
Chris Lattner5f056bf2005-07-10 01:55:33 +00002930 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
Evan Cheng466685d2006-10-09 20:57:25 +00002931 Result, StackSlot, NULL, 0, ExtraVT);
Chris Lattner45b8caf2005-01-15 07:15:18 +00002932 } else {
2933 assert(0 && "Unknown op");
2934 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002935 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00002936 }
Chris Lattner0f69b292005-01-15 06:18:18 +00002937 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002938 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00002939 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002940
Chris Lattner4ddd2832006-04-08 04:13:17 +00002941 assert(Result.getValueType() == Op.getValueType() &&
2942 "Bad legalization!");
2943
Chris Lattner456a93a2006-01-28 07:39:30 +00002944 // Make sure that the generated code is itself legal.
2945 if (Result != Op)
2946 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002947
Chris Lattner45982da2005-05-12 16:53:42 +00002948 // Note that LegalizeOp may be reentered even from single-use nodes, which
2949 // means that we always must cache transformed nodes.
2950 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002951 return Result;
2952}
2953
Chris Lattner8b6fa222005-01-15 22:16:26 +00002954/// PromoteOp - Given an operation that produces a value in an invalid type,
2955/// promote it to compute the value into a larger type. The produced value will
2956/// have the correct bits for the low portion of the register, but no guarantee
2957/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00002958SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
2959 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00002960 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00002961 assert(getTypeAction(VT) == Promote &&
2962 "Caller should expand or legalize operands that are not promotable!");
2963 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
2964 "Cannot promote to smaller type!");
2965
Chris Lattner03c85462005-01-15 05:21:40 +00002966 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00002967 SDOperand Result;
2968 SDNode *Node = Op.Val;
2969
Chris Lattner6fdcb252005-09-02 20:32:45 +00002970 std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
2971 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00002972
Chris Lattner03c85462005-01-15 05:21:40 +00002973 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002974 case ISD::CopyFromReg:
2975 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00002976 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00002977#ifndef NDEBUG
Chris Lattner03c85462005-01-15 05:21:40 +00002978 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00002979#endif
Chris Lattner03c85462005-01-15 05:21:40 +00002980 assert(0 && "Do not know how to promote this operator!");
2981 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00002982 case ISD::UNDEF:
2983 Result = DAG.getNode(ISD::UNDEF, NVT);
2984 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002985 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00002986 if (VT != MVT::i1)
2987 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
2988 else
2989 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00002990 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
2991 break;
2992 case ISD::ConstantFP:
2993 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
2994 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
2995 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00002996
Chris Lattner82fbfb62005-01-18 02:59:52 +00002997 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002998 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002999 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
3000 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00003001 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00003002
Chris Lattner03c85462005-01-15 05:21:40 +00003003 case ISD::TRUNCATE:
3004 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3005 case Legal:
3006 Result = LegalizeOp(Node->getOperand(0));
3007 assert(Result.getValueType() >= NVT &&
3008 "This truncation doesn't make sense!");
3009 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
3010 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
3011 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00003012 case Promote:
3013 // The truncation is not required, because we don't guarantee anything
3014 // about high bits anyway.
3015 Result = PromoteOp(Node->getOperand(0));
3016 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003017 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00003018 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3019 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00003020 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00003021 }
3022 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003023 case ISD::SIGN_EXTEND:
3024 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00003025 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003026 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3027 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
3028 case Legal:
3029 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00003030 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003031 break;
3032 case Promote:
3033 // Promote the reg if it's smaller.
3034 Result = PromoteOp(Node->getOperand(0));
3035 // The high bits are not guaranteed to be anything. Insert an extend.
3036 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00003037 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00003038 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00003039 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00003040 Result = DAG.getZeroExtendInReg(Result,
3041 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00003042 break;
3043 }
3044 break;
Chris Lattner35481892005-12-23 00:16:34 +00003045 case ISD::BIT_CONVERT:
3046 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3047 Result = PromoteOp(Result);
3048 break;
3049
Chris Lattner8b6fa222005-01-15 22:16:26 +00003050 case ISD::FP_EXTEND:
3051 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
3052 case ISD::FP_ROUND:
3053 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3054 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3055 case Promote: assert(0 && "Unreachable with 2 FP types!");
3056 case Legal:
3057 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner456a93a2006-01-28 07:39:30 +00003058 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner15e4b012005-07-10 00:07:11 +00003059 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003060 break;
3061 }
3062 break;
3063
3064 case ISD::SINT_TO_FP:
3065 case ISD::UINT_TO_FP:
3066 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3067 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00003068 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00003069 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003070 break;
3071
3072 case Promote:
3073 Result = PromoteOp(Node->getOperand(0));
3074 if (Node->getOpcode() == ISD::SINT_TO_FP)
3075 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003076 Result,
3077 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003078 else
Chris Lattner23993562005-04-13 02:38:47 +00003079 Result = DAG.getZeroExtendInReg(Result,
3080 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003081 // No extra round required here.
3082 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003083 break;
3084 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00003085 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3086 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00003087 // Round if we cannot tolerate excess precision.
3088 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003089 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3090 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00003091 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003092 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003093 break;
3094
Chris Lattner5e3c5b42005-12-09 17:32:47 +00003095 case ISD::SIGN_EXTEND_INREG:
3096 Result = PromoteOp(Node->getOperand(0));
3097 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3098 Node->getOperand(1));
3099 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003100 case ISD::FP_TO_SINT:
3101 case ISD::FP_TO_UINT:
3102 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3103 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00003104 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003105 break;
3106 case Promote:
3107 // The input result is prerounded, so we don't have to do anything
3108 // special.
3109 Tmp1 = PromoteOp(Node->getOperand(0));
3110 break;
3111 case Expand:
3112 assert(0 && "not implemented");
3113 }
Nate Begemand2558e32005-08-14 01:20:53 +00003114 // If we're promoting a UINT to a larger size, check to see if the new node
3115 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3116 // we can use that instead. This allows us to generate better code for
3117 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3118 // legal, such as PowerPC.
3119 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003120 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00003121 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3122 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00003123 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3124 } else {
3125 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3126 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003127 break;
3128
Chris Lattner2c8086f2005-04-02 05:00:07 +00003129 case ISD::FABS:
3130 case ISD::FNEG:
3131 Tmp1 = PromoteOp(Node->getOperand(0));
3132 assert(Tmp1.getValueType() == NVT);
3133 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3134 // NOTE: we do not have to do any extra rounding here for
3135 // NoExcessFPPrecision, because we know the input will have the appropriate
3136 // precision, and these operations don't modify precision at all.
3137 break;
3138
Chris Lattnerda6ba872005-04-28 21:44:33 +00003139 case ISD::FSQRT:
3140 case ISD::FSIN:
3141 case ISD::FCOS:
3142 Tmp1 = PromoteOp(Node->getOperand(0));
3143 assert(Tmp1.getValueType() == NVT);
3144 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003145 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003146 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3147 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00003148 break;
3149
Chris Lattner03c85462005-01-15 05:21:40 +00003150 case ISD::AND:
3151 case ISD::OR:
3152 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00003153 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003154 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00003155 case ISD::MUL:
3156 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00003157 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00003158 // that too is okay if they are integer operations.
3159 Tmp1 = PromoteOp(Node->getOperand(0));
3160 Tmp2 = PromoteOp(Node->getOperand(1));
3161 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3162 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00003163 break;
3164 case ISD::FADD:
3165 case ISD::FSUB:
3166 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00003167 Tmp1 = PromoteOp(Node->getOperand(0));
3168 Tmp2 = PromoteOp(Node->getOperand(1));
3169 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3170 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3171
3172 // Floating point operations will give excess precision that we may not be
3173 // able to tolerate. If we DO allow excess precision, just leave it,
3174 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00003175 // FIXME: Why would we need to round FP ops more than integer ones?
3176 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00003177 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003178 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3179 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00003180 break;
3181
Chris Lattner8b6fa222005-01-15 22:16:26 +00003182 case ISD::SDIV:
3183 case ISD::SREM:
3184 // These operators require that their input be sign extended.
3185 Tmp1 = PromoteOp(Node->getOperand(0));
3186 Tmp2 = PromoteOp(Node->getOperand(1));
3187 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00003188 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3189 DAG.getValueType(VT));
3190 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3191 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003192 }
3193 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3194
3195 // Perform FP_ROUND: this is probably overly pessimistic.
3196 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003197 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3198 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003199 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00003200 case ISD::FDIV:
3201 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00003202 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00003203 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00003204 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3205 case Legal:
3206 Tmp1 = LegalizeOp(Node->getOperand(0));
3207 break;
3208 case Promote:
3209 Tmp1 = PromoteOp(Node->getOperand(0));
3210 break;
3211 case Expand:
3212 assert(0 && "not implemented");
3213 }
3214 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3215 case Legal:
3216 Tmp2 = LegalizeOp(Node->getOperand(1));
3217 break;
3218 case Promote:
3219 Tmp2 = PromoteOp(Node->getOperand(1));
3220 break;
3221 case Expand:
3222 assert(0 && "not implemented");
3223 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003224 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3225
3226 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00003227 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00003228 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3229 DAG.getValueType(VT));
3230 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003231
3232 case ISD::UDIV:
3233 case ISD::UREM:
3234 // These operators require that their input be zero extended.
3235 Tmp1 = PromoteOp(Node->getOperand(0));
3236 Tmp2 = PromoteOp(Node->getOperand(1));
3237 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00003238 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3239 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003240 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3241 break;
3242
3243 case ISD::SHL:
3244 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003245 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003246 break;
3247 case ISD::SRA:
3248 // The input value must be properly sign extended.
3249 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003250 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3251 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003252 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003253 break;
3254 case ISD::SRL:
3255 // The input value must be properly zero extended.
3256 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00003257 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00003258 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003259 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00003260
3261 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00003262 Tmp1 = Node->getOperand(0); // Get the chain.
3263 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00003264 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3265 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3266 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3267 } else {
Evan Cheng466685d2006-10-09 20:57:25 +00003268 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begeman0aed7842006-01-28 03:14:31 +00003269 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00003270 SV->getValue(), SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003271 // Increment the pointer, VAList, to the next vaarg
3272 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3273 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3274 TLI.getPointerTy()));
3275 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00003276 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
3277 SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003278 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003279 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00003280 }
3281 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003282 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00003283 break;
3284
Evan Cheng466685d2006-10-09 20:57:25 +00003285 case ISD::LOAD: {
3286 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00003287 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
3288 ? ISD::EXTLOAD : LD->getExtensionType();
3289 Result = DAG.getExtLoad(ExtType, NVT,
3290 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00003291 LD->getSrcValue(), LD->getSrcValueOffset(),
Evan Cheng2e49f092006-10-11 07:10:22 +00003292 LD->getLoadedVT());
Chris Lattner03c85462005-01-15 05:21:40 +00003293 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003294 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00003295 break;
Evan Cheng466685d2006-10-09 20:57:25 +00003296 }
Chris Lattner03c85462005-01-15 05:21:40 +00003297 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00003298 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
3299 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00003300 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00003301 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003302 case ISD::SELECT_CC:
3303 Tmp2 = PromoteOp(Node->getOperand(2)); // True
3304 Tmp3 = PromoteOp(Node->getOperand(3)); // False
3305 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00003306 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00003307 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003308 case ISD::BSWAP:
3309 Tmp1 = Node->getOperand(0);
3310 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3311 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3312 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3313 DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
3314 TLI.getShiftAmountTy()));
3315 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003316 case ISD::CTPOP:
3317 case ISD::CTTZ:
3318 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003319 // Zero extend the argument
3320 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003321 // Perform the larger operation, then subtract if needed.
3322 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003323 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003324 case ISD::CTPOP:
3325 Result = Tmp1;
3326 break;
3327 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003328 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00003329 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003330 DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003331 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Chris Lattner456a93a2006-01-28 07:39:30 +00003332 DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003333 break;
3334 case ISD::CTLZ:
3335 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003336 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
3337 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003338 getSizeInBits(VT), NVT));
3339 break;
3340 }
3341 break;
Chris Lattner15972212006-03-31 17:55:51 +00003342 case ISD::VEXTRACT_VECTOR_ELT:
3343 Result = PromoteOp(LowerVEXTRACT_VECTOR_ELT(Op));
3344 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00003345 case ISD::EXTRACT_VECTOR_ELT:
3346 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3347 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003348 }
3349
3350 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003351
3352 // Make sure the result is itself legal.
3353 Result = LegalizeOp(Result);
3354
3355 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00003356 AddPromotedOperand(Op, Result);
3357 return Result;
3358}
Chris Lattner3e928bb2005-01-07 07:47:09 +00003359
Chris Lattner15972212006-03-31 17:55:51 +00003360/// LowerVEXTRACT_VECTOR_ELT - Lower a VEXTRACT_VECTOR_ELT operation into a
3361/// EXTRACT_VECTOR_ELT operation, to memory operations, or to scalar code based
3362/// on the vector type. The return type of this matches the element type of the
3363/// vector, which may not be legal for the target.
3364SDOperand SelectionDAGLegalize::LowerVEXTRACT_VECTOR_ELT(SDOperand Op) {
3365 // We know that operand #0 is the Vec vector. If the index is a constant
3366 // or if the invec is a supported hardware type, we can use it. Otherwise,
3367 // lower to a store then an indexed load.
3368 SDOperand Vec = Op.getOperand(0);
3369 SDOperand Idx = LegalizeOp(Op.getOperand(1));
3370
3371 SDNode *InVal = Vec.Val;
3372 unsigned NumElems = cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
3373 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
3374
3375 // Figure out if there is a Packed type corresponding to this Vector
3376 // type. If so, convert to the packed type.
3377 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3378 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
3379 // Turn this into a packed extract_vector_elt operation.
3380 Vec = PackVectorOp(Vec, TVT);
3381 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, Op.getValueType(), Vec, Idx);
3382 } else if (NumElems == 1) {
3383 // This must be an access of the only element. Return it.
3384 return PackVectorOp(Vec, EVT);
3385 } else if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
3386 SDOperand Lo, Hi;
3387 SplitVectorOp(Vec, Lo, Hi);
3388 if (CIdx->getValue() < NumElems/2) {
3389 Vec = Lo;
3390 } else {
3391 Vec = Hi;
3392 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3393 }
3394
3395 // It's now an extract from the appropriate high or low part. Recurse.
3396 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3397 return LowerVEXTRACT_VECTOR_ELT(Op);
3398 } else {
3399 // Variable index case for extract element.
3400 // FIXME: IMPLEMENT STORE/LOAD lowering. Need alignment of stack slot!!
3401 assert(0 && "unimp!");
3402 return SDOperand();
3403 }
3404}
3405
Chris Lattner4aab2f42006-04-02 05:06:04 +00003406/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3407/// memory traffic.
3408SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
3409 SDOperand Vector = Op.getOperand(0);
3410 SDOperand Idx = Op.getOperand(1);
3411
3412 // If the target doesn't support this, store the value to a temporary
3413 // stack slot, then LOAD the scalar element back out.
3414 SDOperand StackPtr = CreateStackTemporary(Vector.getValueType());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003415 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vector, StackPtr, NULL, 0);
Chris Lattner4aab2f42006-04-02 05:06:04 +00003416
3417 // Add the offset to the index.
3418 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3419 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3420 DAG.getConstant(EltSize, Idx.getValueType()));
3421 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3422
Evan Cheng466685d2006-10-09 20:57:25 +00003423 return DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner4aab2f42006-04-02 05:06:04 +00003424}
3425
Chris Lattner15972212006-03-31 17:55:51 +00003426
Nate Begeman750ac1b2006-02-01 07:19:44 +00003427/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3428/// with condition CC on the current target. This usually involves legalizing
3429/// or promoting the arguments. In the case where LHS and RHS must be expanded,
3430/// there may be no choice but to create a new SetCC node to represent the
3431/// legalized value of setcc lhs, rhs. In this case, the value is returned in
3432/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3433void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3434 SDOperand &RHS,
3435 SDOperand &CC) {
3436 SDOperand Tmp1, Tmp2, Result;
3437
3438 switch (getTypeAction(LHS.getValueType())) {
3439 case Legal:
3440 Tmp1 = LegalizeOp(LHS); // LHS
3441 Tmp2 = LegalizeOp(RHS); // RHS
3442 break;
3443 case Promote:
3444 Tmp1 = PromoteOp(LHS); // LHS
3445 Tmp2 = PromoteOp(RHS); // RHS
3446
3447 // If this is an FP compare, the operands have already been extended.
3448 if (MVT::isInteger(LHS.getValueType())) {
3449 MVT::ValueType VT = LHS.getValueType();
3450 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3451
3452 // Otherwise, we have to insert explicit sign or zero extends. Note
3453 // that we could insert sign extends for ALL conditions, but zero extend
3454 // is cheaper on many machines (an AND instead of two shifts), so prefer
3455 // it.
3456 switch (cast<CondCodeSDNode>(CC)->get()) {
3457 default: assert(0 && "Unknown integer comparison!");
3458 case ISD::SETEQ:
3459 case ISD::SETNE:
3460 case ISD::SETUGE:
3461 case ISD::SETUGT:
3462 case ISD::SETULE:
3463 case ISD::SETULT:
3464 // ALL of these operations will work if we either sign or zero extend
3465 // the operands (including the unsigned comparisons!). Zero extend is
3466 // usually a simpler/cheaper operation, so prefer it.
3467 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3468 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3469 break;
3470 case ISD::SETGE:
3471 case ISD::SETGT:
3472 case ISD::SETLT:
3473 case ISD::SETLE:
3474 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3475 DAG.getValueType(VT));
3476 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3477 DAG.getValueType(VT));
3478 break;
3479 }
3480 }
3481 break;
3482 case Expand:
3483 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
3484 ExpandOp(LHS, LHSLo, LHSHi);
3485 ExpandOp(RHS, RHSLo, RHSHi);
3486 switch (cast<CondCodeSDNode>(CC)->get()) {
3487 case ISD::SETEQ:
3488 case ISD::SETNE:
3489 if (RHSLo == RHSHi)
3490 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
3491 if (RHSCST->isAllOnesValue()) {
3492 // Comparison to -1.
3493 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
3494 Tmp2 = RHSLo;
3495 break;
3496 }
3497
3498 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
3499 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
3500 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3501 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3502 break;
3503 default:
3504 // If this is a comparison of the sign bit, just look at the top part.
3505 // X > -1, x < 0
3506 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
3507 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
3508 CST->getValue() == 0) || // X < 0
3509 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
3510 CST->isAllOnesValue())) { // X > -1
3511 Tmp1 = LHSHi;
3512 Tmp2 = RHSHi;
3513 break;
3514 }
3515
3516 // FIXME: This generated code sucks.
3517 ISD::CondCode LowCC;
3518 switch (cast<CondCodeSDNode>(CC)->get()) {
3519 default: assert(0 && "Unknown integer setcc!");
3520 case ISD::SETLT:
3521 case ISD::SETULT: LowCC = ISD::SETULT; break;
3522 case ISD::SETGT:
3523 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
3524 case ISD::SETLE:
3525 case ISD::SETULE: LowCC = ISD::SETULE; break;
3526 case ISD::SETGE:
3527 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
3528 }
3529
3530 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
3531 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
3532 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
3533
3534 // NOTE: on targets without efficient SELECT of bools, we can always use
3535 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
3536 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
3537 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
3538 Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
3539 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
3540 Result, Tmp1, Tmp2));
3541 Tmp1 = Result;
Nate Begemanda06e9e2006-02-01 19:05:15 +00003542 Tmp2 = SDOperand();
Nate Begeman750ac1b2006-02-01 07:19:44 +00003543 }
3544 }
3545 LHS = Tmp1;
3546 RHS = Tmp2;
3547}
3548
Chris Lattner35481892005-12-23 00:16:34 +00003549/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner232348d2005-12-23 00:52:30 +00003550/// The resultant code need not be legal. Note that SrcOp is the input operand
3551/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner35481892005-12-23 00:16:34 +00003552SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
3553 SDOperand SrcOp) {
3554 // Create the stack frame object.
Chris Lattnerce872152006-03-19 06:31:19 +00003555 SDOperand FIPtr = CreateStackTemporary(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00003556
3557 // Emit a store to the stack slot.
Evan Cheng8b2794a2006-10-13 21:14:26 +00003558 SDOperand Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00003559 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00003560 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00003561}
3562
Chris Lattner4352cc92006-04-04 17:23:26 +00003563SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
3564 // Create a vector sized/aligned stack slot, store the value to element #0,
3565 // then load the whole vector back out.
3566 SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
Evan Cheng786225a2006-10-05 23:01:46 +00003567 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003568 NULL, 0);
Evan Cheng466685d2006-10-09 20:57:25 +00003569 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, NULL, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00003570}
3571
3572
Chris Lattnerce872152006-03-19 06:31:19 +00003573/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
3574/// support the operation, but do support the resultant packed vector type.
3575SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
3576
3577 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00003578 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00003579 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00003580 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00003581 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng033e6812006-03-24 01:17:21 +00003582 std::map<SDOperand, std::vector<unsigned> > Values;
3583 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003584 bool isConstant = true;
3585 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
3586 SplatValue.getOpcode() != ISD::UNDEF)
3587 isConstant = false;
3588
Evan Cheng033e6812006-03-24 01:17:21 +00003589 for (unsigned i = 1; i < NumElems; ++i) {
3590 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00003591 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00003592 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00003593 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00003594 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00003595 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003596
3597 // If this isn't a constant element or an undef, we can't use a constant
3598 // pool load.
3599 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
3600 V.getOpcode() != ISD::UNDEF)
3601 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00003602 }
3603
3604 if (isOnlyLowElement) {
3605 // If the low element is an undef too, then this whole things is an undef.
3606 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
3607 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
3608 // Otherwise, turn this into a scalar_to_vector node.
3609 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3610 Node->getOperand(0));
3611 }
3612
Chris Lattner2eb86532006-03-24 07:29:17 +00003613 // If all elements are constants, create a load from the constant pool.
3614 if (isConstant) {
3615 MVT::ValueType VT = Node->getValueType(0);
3616 const Type *OpNTy =
3617 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
3618 std::vector<Constant*> CV;
3619 for (unsigned i = 0, e = NumElems; i != e; ++i) {
3620 if (ConstantFPSDNode *V =
3621 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
3622 CV.push_back(ConstantFP::get(OpNTy, V->getValue()));
3623 } else if (ConstantSDNode *V =
3624 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencerb83eb642006-10-20 07:07:24 +00003625 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00003626 } else {
3627 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
3628 CV.push_back(UndefValue::get(OpNTy));
3629 }
3630 }
3631 Constant *CP = ConstantPacked::get(CV);
3632 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng466685d2006-10-09 20:57:25 +00003633 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003634 }
3635
Chris Lattner87100e02006-03-20 01:52:29 +00003636 if (SplatValue.Val) { // Splat of one value?
3637 // Build the shuffle constant vector: <0, 0, 0, 0>
3638 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00003639 MVT::getIntVectorWithNumElements(NumElems);
Chris Lattner87100e02006-03-20 01:52:29 +00003640 SDOperand Zero = DAG.getConstant(0, MVT::getVectorBaseType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00003641 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003642 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3643 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00003644
3645 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003646 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00003647 // Get the splatted value into the low element of a vector register.
3648 SDOperand LowValVec =
3649 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
3650
3651 // Return shuffle(LowValVec, undef, <0,0,0,0>)
3652 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
3653 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
3654 SplatMask);
3655 }
3656 }
3657
Evan Cheng033e6812006-03-24 01:17:21 +00003658 // If there are only two unique elements, we may be able to turn this into a
3659 // vector shuffle.
3660 if (Values.size() == 2) {
3661 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
3662 MVT::ValueType MaskVT =
3663 MVT::getIntVectorWithNumElements(NumElems);
3664 std::vector<SDOperand> MaskVec(NumElems);
3665 unsigned i = 0;
3666 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3667 E = Values.end(); I != E; ++I) {
3668 for (std::vector<unsigned>::iterator II = I->second.begin(),
3669 EE = I->second.end(); II != EE; ++II)
3670 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorBaseType(MaskVT));
3671 i += NumElems;
3672 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003673 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3674 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00003675
3676 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003677 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
3678 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003679 SmallVector<SDOperand, 8> Ops;
Evan Cheng033e6812006-03-24 01:17:21 +00003680 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3681 E = Values.end(); I != E; ++I) {
3682 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3683 I->first);
3684 Ops.push_back(Op);
3685 }
3686 Ops.push_back(ShuffleMask);
3687
3688 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003689 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
3690 &Ops[0], Ops.size());
Evan Cheng033e6812006-03-24 01:17:21 +00003691 }
3692 }
Chris Lattnerce872152006-03-19 06:31:19 +00003693
3694 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
3695 // aligned object on the stack, store each element into it, then load
3696 // the result as a vector.
3697 MVT::ValueType VT = Node->getValueType(0);
3698 // Create the stack frame object.
3699 SDOperand FIPtr = CreateStackTemporary(VT);
3700
3701 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003702 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00003703 unsigned TypeByteSize =
3704 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00003705 // Store (in the right endianness) the elements to memory.
3706 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3707 // Ignore undef elements.
3708 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
3709
Chris Lattner841c8822006-03-22 01:46:54 +00003710 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00003711
3712 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
3713 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
3714
Evan Cheng786225a2006-10-05 23:01:46 +00003715 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003716 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00003717 }
3718
3719 SDOperand StoreChain;
3720 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003721 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3722 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00003723 else
3724 StoreChain = DAG.getEntryNode();
3725
3726 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00003727 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00003728}
3729
3730/// CreateStackTemporary - Create a stack temporary, suitable for holding the
3731/// specified value type.
3732SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
3733 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3734 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
3735 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, ByteSize);
3736 return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
3737}
3738
Chris Lattner5b359c62005-04-02 04:00:59 +00003739void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
3740 SDOperand Op, SDOperand Amt,
3741 SDOperand &Lo, SDOperand &Hi) {
3742 // Expand the subcomponents.
3743 SDOperand LHSL, LHSH;
3744 ExpandOp(Op, LHSL, LHSH);
3745
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003746 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003747 MVT::ValueType VT = LHSL.getValueType();
3748 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00003749 Hi = Lo.getValue(1);
3750}
3751
3752
Chris Lattnere34b3962005-01-19 04:19:40 +00003753/// ExpandShift - Try to find a clever way to expand this shift operation out to
3754/// smaller elements. If we can't find a way that is more efficient than a
3755/// libcall on this target, return false. Otherwise, return true with the
3756/// low-parts expanded into Lo and Hi.
3757bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
3758 SDOperand &Lo, SDOperand &Hi) {
3759 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
3760 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003761
Chris Lattnere34b3962005-01-19 04:19:40 +00003762 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003763 SDOperand ShAmt = LegalizeOp(Amt);
3764 MVT::ValueType ShTy = ShAmt.getValueType();
3765 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
3766 unsigned NVTBits = MVT::getSizeInBits(NVT);
3767
3768 // Handle the case when Amt is an immediate. Other cases are currently broken
3769 // and are disabled.
3770 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
3771 unsigned Cst = CN->getValue();
3772 // Expand the incoming operand to be shifted, so that we have its parts
3773 SDOperand InL, InH;
3774 ExpandOp(Op, InL, InH);
3775 switch(Opc) {
3776 case ISD::SHL:
3777 if (Cst > VTBits) {
3778 Lo = DAG.getConstant(0, NVT);
3779 Hi = DAG.getConstant(0, NVT);
3780 } else if (Cst > NVTBits) {
3781 Lo = DAG.getConstant(0, NVT);
3782 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00003783 } else if (Cst == NVTBits) {
3784 Lo = DAG.getConstant(0, NVT);
3785 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003786 } else {
3787 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
3788 Hi = DAG.getNode(ISD::OR, NVT,
3789 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
3790 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
3791 }
3792 return true;
3793 case ISD::SRL:
3794 if (Cst > VTBits) {
3795 Lo = DAG.getConstant(0, NVT);
3796 Hi = DAG.getConstant(0, NVT);
3797 } else if (Cst > NVTBits) {
3798 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
3799 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00003800 } else if (Cst == NVTBits) {
3801 Lo = InH;
3802 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003803 } else {
3804 Lo = DAG.getNode(ISD::OR, NVT,
3805 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3806 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3807 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
3808 }
3809 return true;
3810 case ISD::SRA:
3811 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003812 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003813 DAG.getConstant(NVTBits-1, ShTy));
3814 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003815 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003816 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00003817 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003818 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00003819 } else if (Cst == NVTBits) {
3820 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003821 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00003822 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003823 } else {
3824 Lo = DAG.getNode(ISD::OR, NVT,
3825 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3826 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3827 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
3828 }
3829 return true;
3830 }
3831 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00003832
3833 // Okay, the shift amount isn't constant. However, if we can tell that it is
3834 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
3835 uint64_t Mask = NVTBits, KnownZero, KnownOne;
3836 TLI.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
3837
3838 // If we know that the high bit of the shift amount is one, then we can do
3839 // this as a couple of simple shifts.
3840 if (KnownOne & Mask) {
3841 // Mask out the high bit, which we know is set.
3842 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
3843 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3844
3845 // Expand the incoming operand to be shifted, so that we have its parts
3846 SDOperand InL, InH;
3847 ExpandOp(Op, InL, InH);
3848 switch(Opc) {
3849 case ISD::SHL:
3850 Lo = DAG.getConstant(0, NVT); // Low part is zero.
3851 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
3852 return true;
3853 case ISD::SRL:
3854 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
3855 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
3856 return true;
3857 case ISD::SRA:
3858 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
3859 DAG.getConstant(NVTBits-1, Amt.getValueType()));
3860 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
3861 return true;
3862 }
3863 }
3864
3865 // If we know that the high bit of the shift amount is zero, then we can do
3866 // this as a couple of simple shifts.
3867 if (KnownZero & Mask) {
3868 // Compute 32-amt.
3869 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
3870 DAG.getConstant(NVTBits, Amt.getValueType()),
3871 Amt);
3872
3873 // Expand the incoming operand to be shifted, so that we have its parts
3874 SDOperand InL, InH;
3875 ExpandOp(Op, InL, InH);
3876 switch(Opc) {
3877 case ISD::SHL:
3878 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
3879 Hi = DAG.getNode(ISD::OR, NVT,
3880 DAG.getNode(ISD::SHL, NVT, InH, Amt),
3881 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
3882 return true;
3883 case ISD::SRL:
3884 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
3885 Lo = DAG.getNode(ISD::OR, NVT,
3886 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3887 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3888 return true;
3889 case ISD::SRA:
3890 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
3891 Lo = DAG.getNode(ISD::OR, NVT,
3892 DAG.getNode(ISD::SRL, NVT, InL, Amt),
3893 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
3894 return true;
3895 }
3896 }
3897
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003898 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00003899}
Chris Lattner77e77a62005-01-21 06:05:23 +00003900
Chris Lattner9c32d3b2005-01-23 04:42:50 +00003901
Chris Lattner77e77a62005-01-21 06:05:23 +00003902// ExpandLibCall - Expand a node into a call to a libcall. If the result value
3903// does not fit into a register, return the lo part and set the hi part to the
3904// by-reg argument. If it does fit into a single register, return the result
3905// and leave the Hi part unset.
3906SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
3907 SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00003908 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
3909 // The input chain to this libcall is the entry node of the function.
3910 // Legalizing the call will automatically add the previous call to the
3911 // dependence.
3912 SDOperand InChain = DAG.getEntryNode();
3913
Chris Lattner77e77a62005-01-21 06:05:23 +00003914 TargetLowering::ArgListTy Args;
3915 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3916 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
3917 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
3918 Args.push_back(std::make_pair(Node->getOperand(i), ArgTy));
3919 }
3920 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00003921
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003922 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00003923 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003924 std::pair<SDOperand,SDOperand> CallInfo =
Chris Lattneradf6a962005-05-13 18:50:42 +00003925 TLI.LowerCallTo(InChain, RetTy, false, CallingConv::C, false,
3926 Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00003927
Chris Lattner6831a812006-02-13 09:18:02 +00003928 // Legalize the call sequence, starting with the chain. This will advance
3929 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
3930 // was added by LowerCallTo (guaranteeing proper serialization of calls).
3931 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00003932 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003933 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00003934 default: assert(0 && "Unknown thing");
3935 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00003936 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00003937 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00003938 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00003939 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00003940 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00003941 }
Chris Lattner99c25b82005-09-02 20:26:58 +00003942 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00003943}
3944
Chris Lattner9c32d3b2005-01-23 04:42:50 +00003945
Chris Lattner77e77a62005-01-21 06:05:23 +00003946/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
3947/// destination type is legal.
3948SDOperand SelectionDAGLegalize::
3949ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003950 assert(isTypeLegal(DestTy) && "Destination type is not legal!");
Chris Lattner77e77a62005-01-21 06:05:23 +00003951 assert(getTypeAction(Source.getValueType()) == Expand &&
3952 "This is not an expansion!");
3953 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
3954
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003955 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00003956 assert(Source.getValueType() == MVT::i64 &&
3957 "This only works for 64-bit -> FP");
3958 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
3959 // incoming integer is set. To handle this, we dynamically test to see if
3960 // it is set, and, if so, add a fudge factor.
3961 SDOperand Lo, Hi;
3962 ExpandOp(Source, Lo, Hi);
3963
Chris Lattner66de05b2005-05-13 04:45:13 +00003964 // If this is unsigned, and not supported, first perform the conversion to
3965 // signed, then adjust the result if the sign bit is set.
3966 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
3967 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
3968
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003969 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
3970 DAG.getConstant(0, Hi.getValueType()),
3971 ISD::SETLT);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003972 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3973 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3974 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00003975 uint64_t FF = 0x5f800000ULL;
3976 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencerb83eb642006-10-20 07:07:24 +00003977 static Constant *FudgeFactor = ConstantInt::get(Type::ULongTy, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003978
Chris Lattner5839bf22005-08-26 17:15:30 +00003979 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00003980 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3981 SDOperand FudgeInReg;
3982 if (DestTy == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00003983 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003984 else {
3985 assert(DestTy == MVT::f64 && "Unexpected conversion");
Chris Lattner5f056bf2005-07-10 01:55:33 +00003986 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Cheng466685d2006-10-09 20:57:25 +00003987 CPIdx, NULL, 0, MVT::f32);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003988 }
Chris Lattner473a9902005-09-29 06:44:39 +00003989 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00003990 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003991
Chris Lattnera88a2602005-05-14 05:33:54 +00003992 // Check to see if the target has a custom way to lower this. If so, use it.
3993 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
3994 default: assert(0 && "This action not implemented for this operation!");
3995 case TargetLowering::Legal:
3996 case TargetLowering::Expand:
3997 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00003998 case TargetLowering::Custom: {
3999 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
4000 Source), DAG);
4001 if (NV.Val)
4002 return LegalizeOp(NV);
4003 break; // The target decided this was legal after all
4004 }
Chris Lattnera88a2602005-05-14 05:33:54 +00004005 }
4006
Chris Lattner13689e22005-05-12 07:00:44 +00004007 // Expand the source, then glue it back together for the call. We must expand
4008 // the source in case it is shared (this pass of legalize must traverse it).
4009 SDOperand SrcLo, SrcHi;
4010 ExpandOp(Source, SrcLo, SrcHi);
4011 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
4012
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004013 const char *FnName = 0;
4014 if (DestTy == MVT::f32)
4015 FnName = "__floatdisf";
4016 else {
4017 assert(DestTy == MVT::f64 && "Unknown fp value type!");
4018 FnName = "__floatdidf";
4019 }
Chris Lattner6831a812006-02-13 09:18:02 +00004020
4021 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
4022 SDOperand UnusedHiPart;
Chris Lattner25125692006-02-17 04:32:33 +00004023 return ExpandLibCall(FnName, Source.Val, UnusedHiPart);
Chris Lattner77e77a62005-01-21 06:05:23 +00004024}
Misha Brukmanedf128a2005-04-21 22:36:52 +00004025
Chris Lattner22cde6a2006-01-28 08:25:58 +00004026/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
4027/// INT_TO_FP operation of the specified operand when the target requests that
4028/// we expand it. At this point, we know that the result and operand types are
4029/// legal for the target.
4030SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
4031 SDOperand Op0,
4032 MVT::ValueType DestVT) {
4033 if (Op0.getValueType() == MVT::i32) {
4034 // simple 32-bit [signed|unsigned] integer to float/double expansion
4035
4036 // get the stack frame index of a 8 byte buffer
4037 MachineFunction &MF = DAG.getMachineFunction();
4038 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
4039 // get address of 8 byte buffer
4040 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4041 // word offset constant for Hi/Lo address computation
4042 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
4043 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00004044 SDOperand Hi = StackSlot;
4045 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
4046 if (TLI.isLittleEndian())
4047 std::swap(Hi, Lo);
4048
Chris Lattner22cde6a2006-01-28 08:25:58 +00004049 // if signed map to unsigned space
4050 SDOperand Op0Mapped;
4051 if (isSigned) {
4052 // constant used to invert sign bit (signed to unsigned mapping)
4053 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
4054 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
4055 } else {
4056 Op0Mapped = Op0;
4057 }
4058 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00004059 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004060 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004061 // initial hi portion of constructed double
4062 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
4063 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00004064 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004065 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00004066 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004067 // FP constant to bias correct the final result
4068 SDOperand Bias = DAG.getConstantFP(isSigned ?
4069 BitsToDouble(0x4330000080000000ULL)
4070 : BitsToDouble(0x4330000000000000ULL),
4071 MVT::f64);
4072 // subtract the bias
4073 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
4074 // final result
4075 SDOperand Result;
4076 // handle final rounding
4077 if (DestVT == MVT::f64) {
4078 // do nothing
4079 Result = Sub;
4080 } else {
4081 // if f32 then cast to f32
4082 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
4083 }
4084 return Result;
4085 }
4086 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
4087 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
4088
4089 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
4090 DAG.getConstant(0, Op0.getValueType()),
4091 ISD::SETLT);
4092 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4093 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4094 SignSet, Four, Zero);
4095
4096 // If the sign bit of the integer is set, the large number will be treated
4097 // as a negative number. To counteract this, the dynamic code adds an
4098 // offset depending on the data type.
4099 uint64_t FF;
4100 switch (Op0.getValueType()) {
4101 default: assert(0 && "Unsupported integer type!");
4102 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
4103 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
4104 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
4105 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
4106 }
4107 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencerb83eb642006-10-20 07:07:24 +00004108 static Constant *FudgeFactor = ConstantInt::get(Type::ULongTy, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004109
4110 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4111 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4112 SDOperand FudgeInReg;
4113 if (DestVT == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004114 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004115 else {
4116 assert(DestVT == MVT::f64 && "Unexpected conversion");
4117 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
4118 DAG.getEntryNode(), CPIdx,
Evan Cheng466685d2006-10-09 20:57:25 +00004119 NULL, 0, MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00004120 }
4121
4122 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
4123}
4124
4125/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
4126/// *INT_TO_FP operation of the specified operand when the target requests that
4127/// we promote it. At this point, we know that the result and operand types are
4128/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
4129/// operation that takes a larger input.
4130SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
4131 MVT::ValueType DestVT,
4132 bool isSigned) {
4133 // First step, figure out the appropriate *INT_TO_FP operation to use.
4134 MVT::ValueType NewInTy = LegalOp.getValueType();
4135
4136 unsigned OpToUse = 0;
4137
4138 // Scan for the appropriate larger type to use.
4139 while (1) {
4140 NewInTy = (MVT::ValueType)(NewInTy+1);
4141 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
4142
4143 // If the target supports SINT_TO_FP of this type, use it.
4144 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4145 default: break;
4146 case TargetLowering::Legal:
4147 if (!TLI.isTypeLegal(NewInTy))
4148 break; // Can't use this datatype.
4149 // FALL THROUGH.
4150 case TargetLowering::Custom:
4151 OpToUse = ISD::SINT_TO_FP;
4152 break;
4153 }
4154 if (OpToUse) break;
4155 if (isSigned) continue;
4156
4157 // If the target supports UINT_TO_FP of this type, use it.
4158 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4159 default: break;
4160 case TargetLowering::Legal:
4161 if (!TLI.isTypeLegal(NewInTy))
4162 break; // Can't use this datatype.
4163 // FALL THROUGH.
4164 case TargetLowering::Custom:
4165 OpToUse = ISD::UINT_TO_FP;
4166 break;
4167 }
4168 if (OpToUse) break;
4169
4170 // Otherwise, try a larger type.
4171 }
4172
4173 // Okay, we found the operation and type to use. Zero extend our input to the
4174 // desired type then run the operation on it.
4175 return DAG.getNode(OpToUse, DestVT,
4176 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4177 NewInTy, LegalOp));
4178}
4179
4180/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4181/// FP_TO_*INT operation of the specified operand when the target requests that
4182/// we promote it. At this point, we know that the result and operand types are
4183/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4184/// operation that returns a larger result.
4185SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4186 MVT::ValueType DestVT,
4187 bool isSigned) {
4188 // First step, figure out the appropriate FP_TO*INT operation to use.
4189 MVT::ValueType NewOutTy = DestVT;
4190
4191 unsigned OpToUse = 0;
4192
4193 // Scan for the appropriate larger type to use.
4194 while (1) {
4195 NewOutTy = (MVT::ValueType)(NewOutTy+1);
4196 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4197
4198 // If the target supports FP_TO_SINT returning this type, use it.
4199 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4200 default: break;
4201 case TargetLowering::Legal:
4202 if (!TLI.isTypeLegal(NewOutTy))
4203 break; // Can't use this datatype.
4204 // FALL THROUGH.
4205 case TargetLowering::Custom:
4206 OpToUse = ISD::FP_TO_SINT;
4207 break;
4208 }
4209 if (OpToUse) break;
4210
4211 // If the target supports FP_TO_UINT of this type, use it.
4212 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4213 default: break;
4214 case TargetLowering::Legal:
4215 if (!TLI.isTypeLegal(NewOutTy))
4216 break; // Can't use this datatype.
4217 // FALL THROUGH.
4218 case TargetLowering::Custom:
4219 OpToUse = ISD::FP_TO_UINT;
4220 break;
4221 }
4222 if (OpToUse) break;
4223
4224 // Otherwise, try a larger type.
4225 }
4226
4227 // Okay, we found the operation and type to use. Truncate the result of the
4228 // extended FP_TO_*INT operation to the desired size.
4229 return DAG.getNode(ISD::TRUNCATE, DestVT,
4230 DAG.getNode(OpToUse, NewOutTy, LegalOp));
4231}
4232
4233/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4234///
4235SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4236 MVT::ValueType VT = Op.getValueType();
4237 MVT::ValueType SHVT = TLI.getShiftAmountTy();
4238 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4239 switch (VT) {
4240 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4241 case MVT::i16:
4242 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4243 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4244 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4245 case MVT::i32:
4246 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4247 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4248 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4249 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4250 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4251 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4252 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4253 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4254 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4255 case MVT::i64:
4256 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4257 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4258 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4259 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4260 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4261 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4262 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4263 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4264 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4265 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4266 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4267 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4268 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4269 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4270 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4271 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4272 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4273 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4274 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4275 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4276 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4277 }
4278}
4279
4280/// ExpandBitCount - Expand the specified bitcount instruction into operations.
4281///
4282SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4283 switch (Opc) {
4284 default: assert(0 && "Cannot expand this yet!");
4285 case ISD::CTPOP: {
4286 static const uint64_t mask[6] = {
4287 0x5555555555555555ULL, 0x3333333333333333ULL,
4288 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4289 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4290 };
4291 MVT::ValueType VT = Op.getValueType();
4292 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4293 unsigned len = getSizeInBits(VT);
4294 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4295 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4296 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4297 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4298 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4299 DAG.getNode(ISD::AND, VT,
4300 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4301 }
4302 return Op;
4303 }
4304 case ISD::CTLZ: {
4305 // for now, we do this:
4306 // x = x | (x >> 1);
4307 // x = x | (x >> 2);
4308 // ...
4309 // x = x | (x >>16);
4310 // x = x | (x >>32); // for 64-bit input
4311 // return popcount(~x);
4312 //
4313 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4314 MVT::ValueType VT = Op.getValueType();
4315 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4316 unsigned len = getSizeInBits(VT);
4317 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4318 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4319 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4320 }
4321 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4322 return DAG.getNode(ISD::CTPOP, VT, Op);
4323 }
4324 case ISD::CTTZ: {
4325 // for now, we use: { return popcount(~x & (x - 1)); }
4326 // unless the target has ctlz but not ctpop, in which case we use:
4327 // { return 32 - nlz(~x & (x-1)); }
4328 // see also http://www.hackersdelight.org/HDcode/ntz.cc
4329 MVT::ValueType VT = Op.getValueType();
4330 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4331 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4332 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4333 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4334 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4335 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4336 TLI.isOperationLegal(ISD::CTLZ, VT))
4337 return DAG.getNode(ISD::SUB, VT,
4338 DAG.getConstant(getSizeInBits(VT), VT),
4339 DAG.getNode(ISD::CTLZ, VT, Tmp3));
4340 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4341 }
4342 }
4343}
Chris Lattnere34b3962005-01-19 04:19:40 +00004344
Chris Lattner3e928bb2005-01-07 07:47:09 +00004345/// ExpandOp - Expand the specified SDOperand into its two component pieces
4346/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
4347/// LegalizeNodes map is filled in for any results that are not expanded, the
4348/// ExpandedNodes map is filled in for any results that are expanded, and the
4349/// Lo/Hi values are returned.
4350void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4351 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00004352 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004353 SDNode *Node = Op.Val;
4354 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Nate Begemanab48be32005-11-22 18:16:00 +00004355 assert((MVT::isInteger(VT) || VT == MVT::Vector) &&
4356 "Cannot expand FP values!");
4357 assert(((MVT::isInteger(NVT) && NVT < VT) || VT == MVT::Vector) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00004358 "Cannot expand to FP value or to larger int value!");
4359
Chris Lattner6fdcb252005-09-02 20:32:45 +00004360 // See if we already expanded it.
4361 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4362 = ExpandedNodes.find(Op);
4363 if (I != ExpandedNodes.end()) {
4364 Lo = I->second.first;
4365 Hi = I->second.second;
4366 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004367 }
4368
Chris Lattner3e928bb2005-01-07 07:47:09 +00004369 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004370 case ISD::CopyFromReg:
4371 assert(0 && "CopyFromReg must be legal!");
4372 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004373#ifndef NDEBUG
Chris Lattner3e928bb2005-01-07 07:47:09 +00004374 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004375#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00004376 assert(0 && "Do not know how to expand this operator!");
4377 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004378 case ISD::UNDEF:
4379 Lo = DAG.getNode(ISD::UNDEF, NVT);
4380 Hi = DAG.getNode(ISD::UNDEF, NVT);
4381 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004382 case ISD::Constant: {
4383 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4384 Lo = DAG.getConstant(Cst, NVT);
4385 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
4386 break;
4387 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004388 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00004389 // Return the operands.
4390 Lo = Node->getOperand(0);
4391 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004392 break;
Chris Lattner58f79632005-12-12 22:27:43 +00004393
4394 case ISD::SIGN_EXTEND_INREG:
4395 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00004396 // sext_inreg the low part if needed.
4397 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
4398
4399 // The high part gets the sign extension from the lo-part. This handles
4400 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00004401 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4402 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
4403 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00004404 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004405
Nate Begemand88fc032006-01-14 03:14:10 +00004406 case ISD::BSWAP: {
4407 ExpandOp(Node->getOperand(0), Lo, Hi);
4408 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
4409 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
4410 Lo = TempLo;
4411 break;
4412 }
4413
Chris Lattneredb1add2005-05-11 04:51:16 +00004414 case ISD::CTPOP:
4415 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00004416 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
4417 DAG.getNode(ISD::CTPOP, NVT, Lo),
4418 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00004419 Hi = DAG.getConstant(0, NVT);
4420 break;
4421
Chris Lattner39a8f332005-05-12 19:05:01 +00004422 case ISD::CTLZ: {
4423 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004424 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004425 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4426 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004427 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
4428 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004429 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
4430 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
4431
4432 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
4433 Hi = DAG.getConstant(0, NVT);
4434 break;
4435 }
4436
4437 case ISD::CTTZ: {
4438 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004439 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004440 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4441 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004442 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
4443 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004444 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
4445 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
4446
4447 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
4448 Hi = DAG.getConstant(0, NVT);
4449 break;
4450 }
Chris Lattneredb1add2005-05-11 04:51:16 +00004451
Nate Begemanacc398c2006-01-25 18:21:52 +00004452 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004453 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4454 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00004455 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
4456 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
4457
4458 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004459 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00004460 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
4461 if (!TLI.isLittleEndian())
4462 std::swap(Lo, Hi);
4463 break;
4464 }
4465
Chris Lattner3e928bb2005-01-07 07:47:09 +00004466 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00004467 LoadSDNode *LD = cast<LoadSDNode>(Node);
4468 SDOperand Ch = LD->getChain(); // Legalize the chain.
4469 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
4470 ISD::LoadExtType ExtType = LD->getExtensionType();
Chris Lattner3e928bb2005-01-07 07:47:09 +00004471
Evan Cheng466685d2006-10-09 20:57:25 +00004472 if (ExtType == ISD::NON_EXTLOAD) {
4473 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
Chris Lattnerec39a452005-01-19 18:02:17 +00004474
Evan Cheng466685d2006-10-09 20:57:25 +00004475 // Increment the pointer to the other half.
4476 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
4477 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4478 getIntPtrConstant(IncrementSize));
4479 // FIXME: This creates a bogus srcvalue!
4480 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
Misha Brukmanedf128a2005-04-21 22:36:52 +00004481
Evan Cheng466685d2006-10-09 20:57:25 +00004482 // Build a factor node to remember that this load is independent of the
4483 // other one.
4484 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4485 Hi.getValue(1));
4486
4487 // Remember that we legalized the chain.
4488 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
4489 if (!TLI.isLittleEndian())
4490 std::swap(Lo, Hi);
4491 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00004492 MVT::ValueType EVT = LD->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00004493
4494 if (EVT == NVT)
4495 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
4496 LD->getSrcValueOffset());
4497 else
4498 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
4499 LD->getSrcValueOffset(), EVT);
4500
4501 // Remember that we legalized the chain.
4502 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
4503
4504 if (ExtType == ISD::SEXTLOAD) {
4505 // The high part is obtained by SRA'ing all but one of the bits of the
4506 // lo part.
4507 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
4508 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4509 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
4510 } else if (ExtType == ISD::ZEXTLOAD) {
4511 // The high part is just a zero.
4512 Hi = DAG.getConstant(0, NVT);
4513 } else /* if (ExtType == ISD::EXTLOAD) */ {
4514 // The high part is undefined.
4515 Hi = DAG.getNode(ISD::UNDEF, NVT);
4516 }
4517 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004518 break;
4519 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004520 case ISD::AND:
4521 case ISD::OR:
4522 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
4523 SDOperand LL, LH, RL, RH;
4524 ExpandOp(Node->getOperand(0), LL, LH);
4525 ExpandOp(Node->getOperand(1), RL, RH);
4526 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
4527 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
4528 break;
4529 }
4530 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00004531 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004532 ExpandOp(Node->getOperand(1), LL, LH);
4533 ExpandOp(Node->getOperand(2), RL, RH);
Chris Lattner456a93a2006-01-28 07:39:30 +00004534 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
4535 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004536 break;
4537 }
Nate Begeman9373a812005-08-10 20:51:12 +00004538 case ISD::SELECT_CC: {
4539 SDOperand TL, TH, FL, FH;
4540 ExpandOp(Node->getOperand(2), TL, TH);
4541 ExpandOp(Node->getOperand(3), FL, FH);
4542 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4543 Node->getOperand(1), TL, FL, Node->getOperand(4));
4544 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4545 Node->getOperand(1), TH, FH, Node->getOperand(4));
4546 break;
4547 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004548 case ISD::ANY_EXTEND:
4549 // The low part is any extension of the input (which degenerates to a copy).
4550 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
4551 // The high part is undefined.
4552 Hi = DAG.getNode(ISD::UNDEF, NVT);
4553 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004554 case ISD::SIGN_EXTEND: {
4555 // The low part is just a sign extension of the input (which degenerates to
4556 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004557 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004558
Chris Lattner3e928bb2005-01-07 07:47:09 +00004559 // The high part is obtained by SRA'ing all but one of the bits of the lo
4560 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00004561 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00004562 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4563 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00004564 break;
4565 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004566 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00004567 // The low part is just a zero extension of the input (which degenerates to
4568 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004569 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004570
Chris Lattner3e928bb2005-01-07 07:47:09 +00004571 // The high part is just a zero.
4572 Hi = DAG.getConstant(0, NVT);
4573 break;
Chris Lattner35481892005-12-23 00:16:34 +00004574
4575 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004576 SDOperand Tmp;
4577 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
4578 // If the target wants to, allow it to lower this itself.
4579 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4580 case Expand: assert(0 && "cannot expand FP!");
4581 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
4582 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
4583 }
4584 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
4585 }
4586
4587 // Turn this into a load/store pair by default.
4588 if (Tmp.Val == 0)
4589 Tmp = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
4590
Chris Lattner35481892005-12-23 00:16:34 +00004591 ExpandOp(Tmp, Lo, Hi);
4592 break;
4593 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004594
Chris Lattner8137c9e2006-01-28 05:07:51 +00004595 case ISD::READCYCLECOUNTER:
Chris Lattner308575b2005-11-20 22:56:56 +00004596 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
4597 TargetLowering::Custom &&
4598 "Must custom expand ReadCycleCounter");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004599 Lo = TLI.LowerOperation(Op, DAG);
4600 assert(Lo.Val && "Node must be custom expanded!");
4601 Hi = Lo.getValue(1);
Chris Lattner308575b2005-11-20 22:56:56 +00004602 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004603 LegalizeOp(Lo.getValue(2)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004604 break;
4605
Chris Lattner4e6c7462005-01-08 19:27:05 +00004606 // These operators cannot be expanded directly, emit them as calls to
4607 // library functions.
4608 case ISD::FP_TO_SINT:
Chris Lattner80a3e942005-07-29 00:33:32 +00004609 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00004610 SDOperand Op;
4611 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4612 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004613 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4614 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00004615 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004616
Chris Lattnerf20d1832005-07-30 01:40:57 +00004617 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
4618
Chris Lattner80a3e942005-07-29 00:33:32 +00004619 // Now that the custom expander is done, expand the result, which is still
4620 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00004621 if (Op.Val) {
4622 ExpandOp(Op, Lo, Hi);
4623 break;
4624 }
Chris Lattner80a3e942005-07-29 00:33:32 +00004625 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004626
Chris Lattner4e6c7462005-01-08 19:27:05 +00004627 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00004628 Lo = ExpandLibCall("__fixsfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004629 else
Chris Lattner77e77a62005-01-21 06:05:23 +00004630 Lo = ExpandLibCall("__fixdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004631 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004632
Chris Lattner4e6c7462005-01-08 19:27:05 +00004633 case ISD::FP_TO_UINT:
Chris Lattner80a3e942005-07-29 00:33:32 +00004634 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004635 SDOperand Op;
4636 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4637 case Expand: assert(0 && "cannot expand FP!");
4638 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4639 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
4640 }
4641
4642 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
4643
4644 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00004645 if (Op.Val) {
4646 ExpandOp(Op, Lo, Hi);
4647 break;
4648 }
Chris Lattner80a3e942005-07-29 00:33:32 +00004649 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004650
Chris Lattner4e6c7462005-01-08 19:27:05 +00004651 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00004652 Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004653 else
Chris Lattner77e77a62005-01-21 06:05:23 +00004654 Lo = ExpandLibCall("__fixunsdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004655 break;
4656
Evan Cheng05a2d562006-01-09 18:31:59 +00004657 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004658 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004659 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004660 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004661 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004662 Op = TLI.LowerOperation(Op, DAG);
4663 if (Op.Val) {
4664 // Now that the custom expander is done, expand the result, which is
4665 // still VT.
4666 ExpandOp(Op, Lo, Hi);
4667 break;
4668 }
4669 }
4670
Chris Lattner79980b02006-09-13 03:50:39 +00004671 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
4672 // this X << 1 as X+X.
4673 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
4674 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
4675 TLI.isOperationLegal(ISD::ADDE, NVT)) {
4676 SDOperand LoOps[2], HiOps[3];
4677 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
4678 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
4679 LoOps[1] = LoOps[0];
4680 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
4681
4682 HiOps[1] = HiOps[0];
4683 HiOps[2] = Lo.getValue(1);
4684 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
4685 break;
4686 }
4687 }
4688
Chris Lattnere34b3962005-01-19 04:19:40 +00004689 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004690 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004691 break;
Chris Lattner47599822005-04-02 03:38:53 +00004692
4693 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004694 TargetLowering::LegalizeAction Action =
4695 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
4696 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4697 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004698 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004699 break;
4700 }
4701
Chris Lattnere34b3962005-01-19 04:19:40 +00004702 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004703 Lo = ExpandLibCall("__ashldi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004704 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004705 }
Chris Lattnere34b3962005-01-19 04:19:40 +00004706
Evan Cheng05a2d562006-01-09 18:31:59 +00004707 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004708 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004709 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004710 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004711 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004712 Op = TLI.LowerOperation(Op, DAG);
4713 if (Op.Val) {
4714 // Now that the custom expander is done, expand the result, which is
4715 // still VT.
4716 ExpandOp(Op, Lo, Hi);
4717 break;
4718 }
4719 }
4720
Chris Lattnere34b3962005-01-19 04:19:40 +00004721 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004722 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004723 break;
Chris Lattner47599822005-04-02 03:38:53 +00004724
4725 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004726 TargetLowering::LegalizeAction Action =
4727 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
4728 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4729 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004730 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004731 break;
4732 }
4733
Chris Lattnere34b3962005-01-19 04:19:40 +00004734 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004735 Lo = ExpandLibCall("__ashrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004736 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004737 }
4738
4739 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004740 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004741 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004742 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004743 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004744 Op = TLI.LowerOperation(Op, DAG);
4745 if (Op.Val) {
4746 // Now that the custom expander is done, expand the result, which is
4747 // still VT.
4748 ExpandOp(Op, Lo, Hi);
4749 break;
4750 }
4751 }
4752
Chris Lattnere34b3962005-01-19 04:19:40 +00004753 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004754 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004755 break;
Chris Lattner47599822005-04-02 03:38:53 +00004756
4757 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004758 TargetLowering::LegalizeAction Action =
4759 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
4760 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4761 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004762 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004763 break;
4764 }
4765
Chris Lattnere34b3962005-01-19 04:19:40 +00004766 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004767 Lo = ExpandLibCall("__lshrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004768 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004769 }
Chris Lattnere34b3962005-01-19 04:19:40 +00004770
Misha Brukmanedf128a2005-04-21 22:36:52 +00004771 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00004772 case ISD::SUB: {
4773 // If the target wants to custom expand this, let them.
4774 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
4775 TargetLowering::Custom) {
4776 Op = TLI.LowerOperation(Op, DAG);
4777 if (Op.Val) {
4778 ExpandOp(Op, Lo, Hi);
4779 break;
4780 }
4781 }
4782
4783 // Expand the subcomponents.
4784 SDOperand LHSL, LHSH, RHSL, RHSH;
4785 ExpandOp(Node->getOperand(0), LHSL, LHSH);
4786 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00004787 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
4788 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004789 LoOps[0] = LHSL;
4790 LoOps[1] = RHSL;
4791 HiOps[0] = LHSH;
4792 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00004793 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00004794 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004795 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00004796 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00004797 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00004798 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004799 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00004800 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00004801 }
Chris Lattner84f67882005-01-20 18:52:28 +00004802 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00004803 }
Nate Begemanc7c16572005-04-11 03:01:51 +00004804 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00004805 // If the target wants to custom expand this, let them.
4806 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00004807 SDOperand New = TLI.LowerOperation(Op, DAG);
4808 if (New.Val) {
4809 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00004810 break;
4811 }
4812 }
4813
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004814 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
4815 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004816 if (HasMULHS || HasMULHU) {
Nate Begemanc7c16572005-04-11 03:01:51 +00004817 SDOperand LL, LH, RL, RH;
4818 ExpandOp(Node->getOperand(0), LL, LH);
4819 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman56eb8682005-08-30 02:44:00 +00004820 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
4821 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
4822 // extended the sign bit of the low half through the upper half, and if so
4823 // emit a MULHS instead of the alternate sequence that is valid for any
4824 // i64 x i64 multiply.
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004825 if (HasMULHS &&
Nate Begeman56eb8682005-08-30 02:44:00 +00004826 // is RH an extension of the sign bit of RL?
4827 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
4828 RH.getOperand(1).getOpcode() == ISD::Constant &&
4829 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
4830 // is LH an extension of the sign bit of LL?
4831 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
4832 LH.getOperand(1).getOpcode() == ISD::Constant &&
4833 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
Chris Lattnera89654b2006-09-16 00:21:44 +00004834 // FIXME: Move this to the dag combiner.
4835
4836 // Low part:
4837 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4838 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00004839 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
Chris Lattnera89654b2006-09-16 00:21:44 +00004840 break;
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004841 } else if (HasMULHU) {
Chris Lattnera89654b2006-09-16 00:21:44 +00004842 // Low part:
4843 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4844
4845 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00004846 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
4847 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
4848 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
4849 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
4850 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00004851 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00004852 }
Nate Begemanc7c16572005-04-11 03:01:51 +00004853 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00004854
Chris Lattnera89654b2006-09-16 00:21:44 +00004855 Lo = ExpandLibCall("__muldi3" , Node, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00004856 break;
4857 }
Chris Lattner77e77a62005-01-21 06:05:23 +00004858 case ISD::SDIV: Lo = ExpandLibCall("__divdi3" , Node, Hi); break;
4859 case ISD::UDIV: Lo = ExpandLibCall("__udivdi3", Node, Hi); break;
4860 case ISD::SREM: Lo = ExpandLibCall("__moddi3" , Node, Hi); break;
4861 case ISD::UREM: Lo = ExpandLibCall("__umoddi3", Node, Hi); break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004862 }
4863
Chris Lattner83397362005-12-21 18:02:52 +00004864 // Make sure the resultant values have been legalized themselves, unless this
4865 // is a type that requires multi-step expansion.
4866 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
4867 Lo = LegalizeOp(Lo);
4868 Hi = LegalizeOp(Hi);
4869 }
Evan Cheng05a2d562006-01-09 18:31:59 +00004870
4871 // Remember in a map if the values will be reused later.
4872 bool isNew =
4873 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4874 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00004875}
4876
Chris Lattnerc7029802006-03-18 01:44:44 +00004877/// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
4878/// two smaller values of MVT::Vector type.
4879void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
4880 SDOperand &Hi) {
4881 assert(Op.getValueType() == MVT::Vector && "Cannot split non-vector type!");
4882 SDNode *Node = Op.Val;
4883 unsigned NumElements = cast<ConstantSDNode>(*(Node->op_end()-2))->getValue();
4884 assert(NumElements > 1 && "Cannot split a single element vector!");
4885 unsigned NewNumElts = NumElements/2;
4886 SDOperand NewNumEltsNode = DAG.getConstant(NewNumElts, MVT::i32);
4887 SDOperand TypeNode = *(Node->op_end()-1);
4888
4889 // See if we already split it.
4890 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4891 = SplitNodes.find(Op);
4892 if (I != SplitNodes.end()) {
4893 Lo = I->second.first;
4894 Hi = I->second.second;
4895 return;
4896 }
4897
4898 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004899 default:
4900#ifndef NDEBUG
4901 Node->dump();
4902#endif
4903 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerb2827b02006-03-19 00:52:58 +00004904 case ISD::VBUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004905 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
4906 Node->op_begin()+NewNumElts);
Chris Lattnerc7029802006-03-18 01:44:44 +00004907 LoOps.push_back(NewNumEltsNode);
4908 LoOps.push_back(TypeNode);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004909 Lo = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00004910
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004911 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts,
4912 Node->op_end()-2);
Chris Lattnerc7029802006-03-18 01:44:44 +00004913 HiOps.push_back(NewNumEltsNode);
4914 HiOps.push_back(TypeNode);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004915 Hi = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00004916 break;
4917 }
4918 case ISD::VADD:
4919 case ISD::VSUB:
4920 case ISD::VMUL:
4921 case ISD::VSDIV:
4922 case ISD::VUDIV:
4923 case ISD::VAND:
4924 case ISD::VOR:
4925 case ISD::VXOR: {
4926 SDOperand LL, LH, RL, RH;
4927 SplitVectorOp(Node->getOperand(0), LL, LH);
4928 SplitVectorOp(Node->getOperand(1), RL, RH);
4929
4930 Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, LL, RL,
4931 NewNumEltsNode, TypeNode);
4932 Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, LH, RH,
4933 NewNumEltsNode, TypeNode);
4934 break;
4935 }
4936 case ISD::VLOAD: {
4937 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4938 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
4939 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4940
4941 Lo = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4942 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(EVT)/8;
4943 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4944 getIntPtrConstant(IncrementSize));
4945 // FIXME: This creates a bogus srcvalue!
4946 Hi = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4947
4948 // Build a factor node to remember that this load is independent of the
4949 // other one.
4950 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4951 Hi.getValue(1));
4952
4953 // Remember that we legalized the chain.
4954 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00004955 break;
4956 }
Chris Lattner7692eb42006-03-23 21:16:34 +00004957 case ISD::VBIT_CONVERT: {
4958 // We know the result is a vector. The input may be either a vector or a
4959 // scalar value.
4960 if (Op.getOperand(0).getValueType() != MVT::Vector) {
4961 // Lower to a store/load. FIXME: this could be improved probably.
4962 SDOperand Ptr = CreateStackTemporary(Op.getOperand(0).getValueType());
4963
Evan Cheng786225a2006-10-05 23:01:46 +00004964 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004965 Op.getOperand(0), Ptr, NULL, 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00004966 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4967 St = DAG.getVecLoad(NumElements, EVT, St, Ptr, DAG.getSrcValue(0));
4968 SplitVectorOp(St, Lo, Hi);
4969 } else {
4970 // If the input is a vector type, we have to either scalarize it, pack it
4971 // or convert it based on whether the input vector type is legal.
4972 SDNode *InVal = Node->getOperand(0).Val;
4973 unsigned NumElems =
4974 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
4975 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
4976
4977 // If the input is from a single element vector, scalarize the vector,
4978 // then treat like a scalar.
4979 if (NumElems == 1) {
4980 SDOperand Scalar = PackVectorOp(Op.getOperand(0), EVT);
4981 Scalar = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Scalar,
4982 Op.getOperand(1), Op.getOperand(2));
4983 SplitVectorOp(Scalar, Lo, Hi);
4984 } else {
4985 // Split the input vector.
4986 SplitVectorOp(Op.getOperand(0), Lo, Hi);
4987
4988 // Convert each of the pieces now.
4989 Lo = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Lo,
4990 NewNumEltsNode, TypeNode);
4991 Hi = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Hi,
4992 NewNumEltsNode, TypeNode);
4993 }
4994 break;
4995 }
4996 }
Chris Lattnerc7029802006-03-18 01:44:44 +00004997 }
4998
4999 // Remember in a map if the values will be reused later.
5000 bool isNew =
5001 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
5002 assert(isNew && "Value already expanded?!?");
5003}
5004
5005
5006/// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
5007/// equivalent operation that returns a scalar (e.g. F32) or packed value
5008/// (e.g. MVT::V4F32). When this is called, we know that PackedVT is the right
5009/// type for the result.
5010SDOperand SelectionDAGLegalize::PackVectorOp(SDOperand Op,
5011 MVT::ValueType NewVT) {
5012 assert(Op.getValueType() == MVT::Vector && "Bad PackVectorOp invocation!");
5013 SDNode *Node = Op.Val;
5014
5015 // See if we already packed it.
5016 std::map<SDOperand, SDOperand>::iterator I = PackedNodes.find(Op);
5017 if (I != PackedNodes.end()) return I->second;
5018
5019 SDOperand Result;
5020 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00005021 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005022#ifndef NDEBUG
Chris Lattner2332b9f2006-03-19 01:17:20 +00005023 Node->dump(); std::cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005024#endif
Chris Lattner2332b9f2006-03-19 01:17:20 +00005025 assert(0 && "Unknown vector operation in PackVectorOp!");
Chris Lattnerc7029802006-03-18 01:44:44 +00005026 case ISD::VADD:
5027 case ISD::VSUB:
5028 case ISD::VMUL:
5029 case ISD::VSDIV:
5030 case ISD::VUDIV:
5031 case ISD::VAND:
5032 case ISD::VOR:
5033 case ISD::VXOR:
5034 Result = DAG.getNode(getScalarizedOpcode(Node->getOpcode(), NewVT),
5035 NewVT,
5036 PackVectorOp(Node->getOperand(0), NewVT),
5037 PackVectorOp(Node->getOperand(1), NewVT));
5038 break;
5039 case ISD::VLOAD: {
Chris Lattner4794a6b2006-03-19 00:07:49 +00005040 SDOperand Ch = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
5041 SDOperand Ptr = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00005042
Evan Cheng466685d2006-10-09 20:57:25 +00005043 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
5044 Result = DAG.getLoad(NewVT, Ch, Ptr, SV->getValue(), SV->getOffset());
Chris Lattnerc7029802006-03-18 01:44:44 +00005045
5046 // Remember that we legalized the chain.
5047 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
5048 break;
5049 }
Chris Lattnerb2827b02006-03-19 00:52:58 +00005050 case ISD::VBUILD_VECTOR:
Chris Lattner70c2a612006-03-31 02:06:56 +00005051 if (Node->getOperand(0).getValueType() == NewVT) {
Chris Lattnerb2827b02006-03-19 00:52:58 +00005052 // Returning a scalar?
Chris Lattnerc7029802006-03-18 01:44:44 +00005053 Result = Node->getOperand(0);
5054 } else {
Chris Lattnerb2827b02006-03-19 00:52:58 +00005055 // Returning a BUILD_VECTOR?
Chris Lattner17614ea2006-04-08 05:34:25 +00005056
5057 // If all elements of the build_vector are undefs, return an undef.
5058 bool AllUndef = true;
5059 for (unsigned i = 0, e = Node->getNumOperands()-2; i != e; ++i)
5060 if (Node->getOperand(i).getOpcode() != ISD::UNDEF) {
5061 AllUndef = false;
5062 break;
5063 }
5064 if (AllUndef) {
5065 Result = DAG.getNode(ISD::UNDEF, NewVT);
5066 } else {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005067 Result = DAG.getNode(ISD::BUILD_VECTOR, NewVT, Node->op_begin(),
5068 Node->getNumOperands()-2);
Chris Lattner17614ea2006-04-08 05:34:25 +00005069 }
Chris Lattnerc7029802006-03-18 01:44:44 +00005070 }
5071 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00005072 case ISD::VINSERT_VECTOR_ELT:
5073 if (!MVT::isVector(NewVT)) {
5074 // Returning a scalar? Must be the inserted element.
5075 Result = Node->getOperand(1);
5076 } else {
5077 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT,
5078 PackVectorOp(Node->getOperand(0), NewVT),
5079 Node->getOperand(1), Node->getOperand(2));
5080 }
5081 break;
Chris Lattner5b2316e2006-03-28 20:24:43 +00005082 case ISD::VVECTOR_SHUFFLE:
5083 if (!MVT::isVector(NewVT)) {
5084 // Returning a scalar? Figure out if it is the LHS or RHS and return it.
5085 SDOperand EltNum = Node->getOperand(2).getOperand(0);
5086 if (cast<ConstantSDNode>(EltNum)->getValue())
5087 Result = PackVectorOp(Node->getOperand(1), NewVT);
5088 else
5089 Result = PackVectorOp(Node->getOperand(0), NewVT);
5090 } else {
5091 // Otherwise, return a VECTOR_SHUFFLE node. First convert the index
5092 // vector from a VBUILD_VECTOR to a BUILD_VECTOR.
5093 std::vector<SDOperand> BuildVecIdx(Node->getOperand(2).Val->op_begin(),
5094 Node->getOperand(2).Val->op_end()-2);
5095 MVT::ValueType BVT = MVT::getIntVectorWithNumElements(BuildVecIdx.size());
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005096 SDOperand BV = DAG.getNode(ISD::BUILD_VECTOR, BVT,
5097 Node->getOperand(2).Val->op_begin(),
5098 Node->getOperand(2).Val->getNumOperands()-2);
Chris Lattner5b2316e2006-03-28 20:24:43 +00005099
5100 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT,
5101 PackVectorOp(Node->getOperand(0), NewVT),
5102 PackVectorOp(Node->getOperand(1), NewVT), BV);
5103 }
5104 break;
Chris Lattnere25ca692006-03-22 20:09:35 +00005105 case ISD::VBIT_CONVERT:
5106 if (Op.getOperand(0).getValueType() != MVT::Vector)
5107 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
5108 else {
5109 // If the input is a vector type, we have to either scalarize it, pack it
5110 // or convert it based on whether the input vector type is legal.
5111 SDNode *InVal = Node->getOperand(0).Val;
5112 unsigned NumElems =
5113 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5114 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5115
5116 // Figure out if there is a Packed type corresponding to this Vector
5117 // type. If so, convert to the packed type.
5118 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
5119 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
5120 // Turn this into a bit convert of the packed input.
5121 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5122 PackVectorOp(Node->getOperand(0), TVT));
5123 break;
5124 } else if (NumElems == 1) {
5125 // Turn this into a bit convert of the scalar input.
5126 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5127 PackVectorOp(Node->getOperand(0), EVT));
5128 break;
5129 } else {
5130 // FIXME: UNIMP!
5131 assert(0 && "Cast from unsupported vector type not implemented yet!");
5132 }
5133 }
Evan Chengdb3c6262006-04-10 18:54:36 +00005134 break;
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005135 case ISD::VSELECT:
5136 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
5137 PackVectorOp(Op.getOperand(1), NewVT),
5138 PackVectorOp(Op.getOperand(2), NewVT));
5139 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00005140 }
5141
5142 if (TLI.isTypeLegal(NewVT))
5143 Result = LegalizeOp(Result);
5144 bool isNew = PackedNodes.insert(std::make_pair(Op, Result)).second;
5145 assert(isNew && "Value already packed?");
5146 return Result;
5147}
5148
Chris Lattner3e928bb2005-01-07 07:47:09 +00005149
5150// SelectionDAG::Legalize - This is the entry point for the file.
5151//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005152void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00005153 if (ViewLegalizeDAGs) viewGraph();
5154
Chris Lattner3e928bb2005-01-07 07:47:09 +00005155 /// run - This is the main entry point to this class.
5156 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00005157 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005158}
5159