blob: dd8a4f3851e9302f3c69e85ef30b723a87020bf4 [file] [log] [blame]
Chris Lattnerdc750592005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukman835702a2005-04-21 22:36:52 +00002//
Chris Lattnerdc750592005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman835702a2005-04-21 22:36:52 +00007//
Chris Lattnerdc750592005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner99222f72005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskey686d6a12005-08-17 17:42:52 +000017#include "llvm/Support/MathExtras.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000018#include "llvm/Target/TargetLowering.h"
Chris Lattner85d70c62005-01-11 05:57:22 +000019#include "llvm/Target/TargetData.h"
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +000020#include "llvm/Target/TargetOptions.h"
Chris Lattner2e77db62005-05-13 18:50:42 +000021#include "llvm/CallingConv.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000022#include "llvm/Constants.h"
23#include <iostream>
Chris Lattner96ad3132005-08-05 18:10:27 +000024#include <set>
Chris Lattnerdc750592005-01-07 07:47:09 +000025using namespace llvm;
26
27//===----------------------------------------------------------------------===//
28/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
29/// hacks on it until the target machine can handle it. This involves
30/// eliminating value sizes the machine cannot handle (promoting small sizes to
31/// large sizes or splitting up large values into small values) as well as
32/// eliminating operations the machine cannot handle.
33///
34/// This code also does a small amount of optimization and recognition of idioms
35/// as part of its processing. For example, if a target does not support a
36/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
37/// will attempt merge setcc and brc instructions into brcc's.
38///
39namespace {
40class SelectionDAGLegalize {
41 TargetLowering &TLI;
42 SelectionDAG &DAG;
43
Chris Lattner462505f2006-02-13 09:18:02 +000044 // Libcall insertion helpers.
45
46 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
47 /// legalized. We use this to ensure that calls are properly serialized
48 /// against each other, including inserted libcalls.
49 SDOperand LastCALLSEQ_END;
50
51 /// IsLegalizingCall - This member is used *only* for purposes of providing
52 /// helpful assertions that a libcall isn't created while another call is
53 /// being legalized (which could lead to non-serialized call sequences).
54 bool IsLegalizingCall;
55
Chris Lattnerdc750592005-01-07 07:47:09 +000056 enum LegalizeAction {
Chris Lattner2c748af2006-01-29 08:42:06 +000057 Legal, // The target natively supports this operation.
58 Promote, // This operation should be executed in a larger type.
59 Expand, // Try to expand this to other ops, otherwise use a libcall.
Chris Lattnerdc750592005-01-07 07:47:09 +000060 };
Chris Lattner462505f2006-02-13 09:18:02 +000061
Chris Lattnerdc750592005-01-07 07:47:09 +000062 /// ValueTypeActions - This is a bitvector that contains two bits for each
63 /// value type, where the two bits correspond to the LegalizeAction enum.
64 /// This can be queried with "getTypeAction(VT)".
Chris Lattner2c748af2006-01-29 08:42:06 +000065 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattnerdc750592005-01-07 07:47:09 +000066
Chris Lattnerdc750592005-01-07 07:47:09 +000067 /// LegalizedNodes - For nodes that are of legal width, and that have more
68 /// than one use, this map indicates what regularized operand to use. This
69 /// allows us to avoid legalizing the same thing more than once.
70 std::map<SDOperand, SDOperand> LegalizedNodes;
71
Chris Lattner1f2c9d82005-01-15 05:21:40 +000072 /// PromotedNodes - For nodes that are below legal width, and that have more
73 /// than one use, this map indicates what promoted value to use. This allows
74 /// us to avoid promoting the same thing more than once.
75 std::map<SDOperand, SDOperand> PromotedNodes;
76
Chris Lattnerdc750592005-01-07 07:47:09 +000077 /// ExpandedNodes - For nodes that need to be expanded, and which have more
78 /// than one use, this map indicates which which operands are the expanded
79 /// version of the input. This allows us to avoid expanding the same node
80 /// more than once.
81 std::map<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
82
Chris Lattnerea4ca942005-01-07 22:28:47 +000083 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner2af3ee42005-12-20 00:53:54 +000084 LegalizedNodes.insert(std::make_pair(From, To));
85 // If someone requests legalization of the new node, return itself.
86 if (From != To)
87 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattnerea4ca942005-01-07 22:28:47 +000088 }
Chris Lattner1f2c9d82005-01-15 05:21:40 +000089 void AddPromotedOperand(SDOperand From, SDOperand To) {
90 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
91 assert(isNew && "Got into the map somehow?");
Chris Lattner2af3ee42005-12-20 00:53:54 +000092 // If someone requests legalization of the new node, return itself.
93 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner1f2c9d82005-01-15 05:21:40 +000094 }
Chris Lattnerea4ca942005-01-07 22:28:47 +000095
Chris Lattnerdc750592005-01-07 07:47:09 +000096public:
97
Chris Lattner4add7e32005-01-23 04:42:50 +000098 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattnerdc750592005-01-07 07:47:09 +000099
Chris Lattnerdc750592005-01-07 07:47:09 +0000100 /// getTypeAction - Return how we should legalize values of this type, either
101 /// it is already legal or we need to expand it into multiple registers of
102 /// smaller integer type, or we need to promote it to a larger type.
103 LegalizeAction getTypeAction(MVT::ValueType VT) const {
Chris Lattner2c748af2006-01-29 08:42:06 +0000104 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattnerdc750592005-01-07 07:47:09 +0000105 }
106
107 /// isTypeLegal - Return true if this type is legal on this target.
108 ///
109 bool isTypeLegal(MVT::ValueType VT) const {
110 return getTypeAction(VT) == Legal;
111 }
112
Chris Lattnerdc750592005-01-07 07:47:09 +0000113 void LegalizeDAG();
114
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000115private:
116
Chris Lattnerdc750592005-01-07 07:47:09 +0000117 SDOperand LegalizeOp(SDOperand O);
118 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
Chris Lattner1f2c9d82005-01-15 05:21:40 +0000119 SDOperand PromoteOp(SDOperand O);
Chris Lattnerdc750592005-01-07 07:47:09 +0000120
Chris Lattner462505f2006-02-13 09:18:02 +0000121 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest);
122
Nate Begeman7e7f4392006-02-01 07:19:44 +0000123 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
124
Chris Lattneraac464e2005-01-21 06:05:23 +0000125 SDOperand ExpandLibCall(const char *Name, SDNode *Node,
126 SDOperand &Hi);
127 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
128 SDOperand Source);
Chris Lattnere3e847b2005-07-16 00:19:57 +0000129
Chris Lattner36e663d2005-12-23 00:16:34 +0000130 SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
Jim Laskeyf2516a92005-08-17 00:39:29 +0000131 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
132 SDOperand LegalOp,
133 MVT::ValueType DestVT);
Nate Begeman7e74c832005-07-16 02:02:34 +0000134 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
135 bool isSigned);
Chris Lattner44fe26f2005-07-29 00:11:56 +0000136 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
137 bool isSigned);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000138
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000139 SDOperand ExpandBSWAP(SDOperand Op);
140 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattner2a7f8a92005-01-19 04:19:40 +0000141 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
142 SDOperand &Lo, SDOperand &Hi);
Chris Lattner4157c412005-04-02 04:00:59 +0000143 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
144 SDOperand &Lo, SDOperand &Hi);
Chris Lattnera5bf1032005-05-12 04:49:08 +0000145
Chris Lattnerdc750592005-01-07 07:47:09 +0000146 SDOperand getIntPtrConstant(uint64_t Val) {
147 return DAG.getConstant(Val, TLI.getPointerTy());
148 }
149};
150}
151
Chris Lattner301015a2005-11-19 05:51:46 +0000152static unsigned getScalarizedOpcode(unsigned VecOp, MVT::ValueType VT) {
Nate Begemanb2e089c2005-11-19 00:36:38 +0000153 switch (VecOp) {
154 default: assert(0 && "Don't know how to scalarize this opcode!");
Evan Cheng3bf916d2006-03-03 07:01:07 +0000155 case ISD::VADD: return MVT::isInteger(VT) ? ISD::ADD : ISD::FADD;
156 case ISD::VSUB: return MVT::isInteger(VT) ? ISD::SUB : ISD::FSUB;
157 case ISD::VMUL: return MVT::isInteger(VT) ? ISD::MUL : ISD::FMUL;
158 case ISD::VSDIV: return MVT::isInteger(VT) ? ISD::SDIV: ISD::FDIV;
159 case ISD::VUDIV: return MVT::isInteger(VT) ? ISD::UDIV: ISD::FDIV;
160 case ISD::VAND: return MVT::isInteger(VT) ? ISD::AND : 0;
161 case ISD::VOR: return MVT::isInteger(VT) ? ISD::OR : 0;
162 case ISD::VXOR: return MVT::isInteger(VT) ? ISD::XOR : 0;
Nate Begemanb2e089c2005-11-19 00:36:38 +0000163 }
164}
Chris Lattnerdc750592005-01-07 07:47:09 +0000165
Chris Lattner4add7e32005-01-23 04:42:50 +0000166SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
167 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
168 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman89b049a2005-11-29 05:45:29 +0000169 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattnerdc750592005-01-07 07:47:09 +0000170 "Too many value types for ValueTypeActions to hold!");
Chris Lattnerdc750592005-01-07 07:47:09 +0000171}
172
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000173/// ComputeTopDownOrdering - Add the specified node to the Order list if it has
174/// not been visited yet and if all of its operands have already been visited.
175static void ComputeTopDownOrdering(SDNode *N, std::vector<SDNode*> &Order,
176 std::map<SDNode*, unsigned> &Visited) {
177 if (++Visited[N] != N->getNumOperands())
178 return; // Haven't visited all operands yet
179
180 Order.push_back(N);
181
182 if (N->hasOneUse()) { // Tail recurse in common case.
183 ComputeTopDownOrdering(*N->use_begin(), Order, Visited);
184 return;
185 }
186
187 // Now that we have N in, add anything that uses it if all of their operands
188 // are now done.
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000189 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end(); UI != E;++UI)
190 ComputeTopDownOrdering(*UI, Order, Visited);
191}
192
Chris Lattner44fe26f2005-07-29 00:11:56 +0000193
Chris Lattnerdc750592005-01-07 07:47:09 +0000194void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner462505f2006-02-13 09:18:02 +0000195 LastCALLSEQ_END = DAG.getEntryNode();
196 IsLegalizingCall = false;
197
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000198 // The legalize process is inherently a bottom-up recursive process (users
199 // legalize their uses before themselves). Given infinite stack space, we
200 // could just start legalizing on the root and traverse the whole graph. In
201 // practice however, this causes us to run out of stack space on large basic
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000202 // blocks. To avoid this problem, compute an ordering of the nodes where each
203 // node is only legalized after all of its operands are legalized.
204 std::map<SDNode*, unsigned> Visited;
205 std::vector<SDNode*> Order;
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000206
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000207 // Compute ordering from all of the leaves in the graphs, those (like the
208 // entry node) that have no operands.
209 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
210 E = DAG.allnodes_end(); I != E; ++I) {
Chris Lattnerbf4f23322005-11-09 23:47:37 +0000211 if (I->getNumOperands() == 0) {
212 Visited[I] = 0 - 1U;
213 ComputeTopDownOrdering(I, Order, Visited);
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000214 }
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000215 }
216
Chris Lattnerbf4f23322005-11-09 23:47:37 +0000217 assert(Order.size() == Visited.size() &&
218 Order.size() ==
219 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000220 "Error: DAG is cyclic!");
221 Visited.clear();
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000222
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000223 for (unsigned i = 0, e = Order.size(); i != e; ++i) {
224 SDNode *N = Order[i];
225 switch (getTypeAction(N->getValueType(0))) {
226 default: assert(0 && "Bad type action!");
227 case Legal:
228 LegalizeOp(SDOperand(N, 0));
229 break;
230 case Promote:
231 PromoteOp(SDOperand(N, 0));
232 break;
233 case Expand: {
234 SDOperand X, Y;
235 ExpandOp(SDOperand(N, 0), X, Y);
236 break;
237 }
238 }
239 }
240
241 // Finally, it's possible the root changed. Get the new root.
Chris Lattnerdc750592005-01-07 07:47:09 +0000242 SDOperand OldRoot = DAG.getRoot();
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000243 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
244 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattnerdc750592005-01-07 07:47:09 +0000245
246 ExpandedNodes.clear();
247 LegalizedNodes.clear();
Chris Lattner87a769c2005-01-16 01:11:45 +0000248 PromotedNodes.clear();
Chris Lattnerdc750592005-01-07 07:47:09 +0000249
250 // Remove dead nodes now.
Chris Lattner473825c2005-01-07 21:09:37 +0000251 DAG.RemoveDeadNodes(OldRoot.Val);
Chris Lattnerdc750592005-01-07 07:47:09 +0000252}
253
Chris Lattner462505f2006-02-13 09:18:02 +0000254
255/// FindCallEndFromCallStart - Given a chained node that is part of a call
256/// sequence, find the CALLSEQ_END node that terminates the call sequence.
257static SDNode *FindCallEndFromCallStart(SDNode *Node) {
258 if (Node->getOpcode() == ISD::CALLSEQ_END)
259 return Node;
260 if (Node->use_empty())
261 return 0; // No CallSeqEnd
262
263 // The chain is usually at the end.
264 SDOperand TheChain(Node, Node->getNumValues()-1);
265 if (TheChain.getValueType() != MVT::Other) {
266 // Sometimes it's at the beginning.
267 TheChain = SDOperand(Node, 0);
268 if (TheChain.getValueType() != MVT::Other) {
269 // Otherwise, hunt for it.
270 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
271 if (Node->getValueType(i) == MVT::Other) {
272 TheChain = SDOperand(Node, i);
273 break;
274 }
275
276 // Otherwise, we walked into a node without a chain.
277 if (TheChain.getValueType() != MVT::Other)
278 return 0;
279 }
280 }
281
282 for (SDNode::use_iterator UI = Node->use_begin(),
283 E = Node->use_end(); UI != E; ++UI) {
284
285 // Make sure to only follow users of our token chain.
286 SDNode *User = *UI;
287 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
288 if (User->getOperand(i) == TheChain)
289 if (SDNode *Result = FindCallEndFromCallStart(User))
290 return Result;
291 }
292 return 0;
293}
294
295/// FindCallStartFromCallEnd - Given a chained node that is part of a call
296/// sequence, find the CALLSEQ_START node that initiates the call sequence.
297static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
298 assert(Node && "Didn't find callseq_start for a call??");
299 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
300
301 assert(Node->getOperand(0).getValueType() == MVT::Other &&
302 "Node doesn't have a token chain argument!");
303 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
304}
305
306/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
307/// see if any uses can reach Dest. If no dest operands can get to dest,
308/// legalize them, legalize ourself, and return false, otherwise, return true.
309bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N,
310 SDNode *Dest) {
311 if (N == Dest) return true; // N certainly leads to Dest :)
312
313 // If the first result of this node has been already legalized, then it cannot
314 // reach N.
315 switch (getTypeAction(N->getValueType(0))) {
316 case Legal:
317 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
318 break;
319 case Promote:
320 if (PromotedNodes.count(SDOperand(N, 0))) return false;
321 break;
322 case Expand:
323 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
324 break;
325 }
326
327 // Okay, this node has not already been legalized. Check and legalize all
328 // operands. If none lead to Dest, then we can legalize this node.
329 bool OperandsLeadToDest = false;
330 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
331 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
332 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest);
333
334 if (OperandsLeadToDest) return true;
335
336 // Okay, this node looks safe, legalize it and return false.
337 switch (getTypeAction(N->getValueType(0))) {
338 case Legal:
339 LegalizeOp(SDOperand(N, 0));
340 break;
341 case Promote:
342 PromoteOp(SDOperand(N, 0));
343 break;
344 case Expand: {
345 SDOperand X, Y;
346 ExpandOp(SDOperand(N, 0), X, Y);
347 break;
348 }
349 }
350 return false;
351}
352
353
354
Chris Lattnerdc750592005-01-07 07:47:09 +0000355SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattnerf12eb4d2005-08-24 16:35:28 +0000356 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnerc0f31c52005-01-08 20:35:13 +0000357 "Caller should expand or promote operands that are not legal!");
Chris Lattnerb5a78e02005-05-12 16:53:42 +0000358 SDNode *Node = Op.Val;
Chris Lattnerc0f31c52005-01-08 20:35:13 +0000359
Chris Lattnerdc750592005-01-07 07:47:09 +0000360 // If this operation defines any values that cannot be represented in a
Chris Lattnerc0f31c52005-01-08 20:35:13 +0000361 // register on this target, make sure to expand or promote them.
Chris Lattnerb5a78e02005-05-12 16:53:42 +0000362 if (Node->getNumValues() > 1) {
363 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
364 switch (getTypeAction(Node->getValueType(i))) {
Chris Lattnerdc750592005-01-07 07:47:09 +0000365 case Legal: break; // Nothing to do.
366 case Expand: {
367 SDOperand T1, T2;
368 ExpandOp(Op.getValue(i), T1, T2);
369 assert(LegalizedNodes.count(Op) &&
370 "Expansion didn't add legal operands!");
371 return LegalizedNodes[Op];
372 }
373 case Promote:
Chris Lattner1f2c9d82005-01-15 05:21:40 +0000374 PromoteOp(Op.getValue(i));
375 assert(LegalizedNodes.count(Op) &&
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000376 "Promotion didn't add legal operands!");
Chris Lattner1f2c9d82005-01-15 05:21:40 +0000377 return LegalizedNodes[Op];
Chris Lattnerdc750592005-01-07 07:47:09 +0000378 }
379 }
380
Chris Lattnerb5a78e02005-05-12 16:53:42 +0000381 // Note that LegalizeOp may be reentered even from single-use nodes, which
382 // means that we always must cache transformed nodes.
Chris Lattner85d70c62005-01-11 05:57:22 +0000383 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
384 if (I != LegalizedNodes.end()) return I->second;
Chris Lattnerdc750592005-01-07 07:47:09 +0000385
Nate Begemane5b86d72005-08-10 20:51:12 +0000386 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerdc750592005-01-07 07:47:09 +0000387 SDOperand Result = Op;
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000388 bool isCustom = false;
389
Chris Lattnerdc750592005-01-07 07:47:09 +0000390 switch (Node->getOpcode()) {
Chris Lattnereb637512006-01-28 08:31:04 +0000391 case ISD::FrameIndex:
392 case ISD::EntryToken:
393 case ISD::Register:
394 case ISD::BasicBlock:
395 case ISD::TargetFrameIndex:
396 case ISD::TargetConstant:
Chris Lattner758b0ac2006-01-29 06:26:56 +0000397 case ISD::TargetConstantFP:
398 case ISD::TargetConstantVec:
Chris Lattnereb637512006-01-28 08:31:04 +0000399 case ISD::TargetConstantPool:
400 case ISD::TargetGlobalAddress:
401 case ISD::TargetExternalSymbol:
402 case ISD::VALUETYPE:
403 case ISD::SRCVALUE:
404 case ISD::STRING:
405 case ISD::CONDCODE:
406 // Primitives must all be legal.
407 assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
408 "This must be legal!");
409 break;
Chris Lattnerdc750592005-01-07 07:47:09 +0000410 default:
Chris Lattner3eb86932005-05-14 06:34:48 +0000411 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
412 // If this is a target node, legalize it by legalizing the operands then
413 // passing it through.
414 std::vector<SDOperand> Ops;
415 bool Changed = false;
416 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
417 Ops.push_back(LegalizeOp(Node->getOperand(i)));
418 Changed = Changed || Node->getOperand(i) != Ops.back();
419 }
420 if (Changed)
421 if (Node->getNumValues() == 1)
422 Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Ops);
423 else {
424 std::vector<MVT::ValueType> VTs(Node->value_begin(),
425 Node->value_end());
426 Result = DAG.getNode(Node->getOpcode(), VTs, Ops);
427 }
428
429 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
430 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
431 return Result.getValue(Op.ResNo);
432 }
433 // Otherwise this is an unhandled builtin node. splat.
Chris Lattnerdc750592005-01-07 07:47:09 +0000434 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
435 assert(0 && "Do not know how to legalize this operator!");
436 abort();
Chris Lattnerdc750592005-01-07 07:47:09 +0000437 case ISD::GlobalAddress:
Chris Lattner32f20bf2005-01-07 21:45:56 +0000438 case ISD::ExternalSymbol:
Chris Lattner3b8e7192005-01-14 22:38:01 +0000439 case ISD::ConstantPool: // Nothing to do.
Chris Lattner45ca1c02005-11-17 06:41:44 +0000440 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
441 default: assert(0 && "This action is not supported yet!");
Chris Lattnereb637512006-01-28 08:31:04 +0000442 case TargetLowering::Custom:
443 Tmp1 = TLI.LowerOperation(Op, DAG);
444 if (Tmp1.Val) Result = Tmp1;
445 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner45ca1c02005-11-17 06:41:44 +0000446 case TargetLowering::Legal:
Chris Lattner45ca1c02005-11-17 06:41:44 +0000447 break;
448 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000449 break;
Chris Lattnerd9af1aa2005-09-02 01:15:01 +0000450 case ISD::AssertSext:
451 case ISD::AssertZext:
452 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +0000453 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerd9af1aa2005-09-02 01:15:01 +0000454 break;
Chris Lattner44c28c22005-11-20 22:56:56 +0000455 case ISD::MERGE_VALUES:
Chris Lattnerd02b0542006-01-28 10:58:55 +0000456 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000457 Result = Node->getOperand(Op.ResNo);
458 break;
Chris Lattner3b8e7192005-01-14 22:38:01 +0000459 case ISD::CopyFromReg:
460 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnere3c67e92005-12-18 15:27:43 +0000461 Result = Op.getValue(0);
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000462 if (Node->getNumValues() == 2) {
Chris Lattnerd02b0542006-01-28 10:58:55 +0000463 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnere3c67e92005-12-18 15:27:43 +0000464 } else {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000465 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerd02b0542006-01-28 10:58:55 +0000466 if (Node->getNumOperands() == 3) {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +0000467 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerd02b0542006-01-28 10:58:55 +0000468 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
469 } else {
470 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
471 }
Chris Lattnere3c67e92005-12-18 15:27:43 +0000472 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
473 }
Chris Lattnereb6614d2005-01-28 06:27:38 +0000474 // Since CopyFromReg produces two values, make sure to remember that we
475 // legalized both of them.
476 AddLegalizedOperand(Op.getValue(0), Result);
477 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
478 return Result.getValue(Op.ResNo);
Nate Begemancda9aa72005-04-01 22:34:39 +0000479 case ISD::UNDEF: {
480 MVT::ValueType VT = Op.getValueType();
481 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begeman69d39432005-04-02 00:41:14 +0000482 default: assert(0 && "This action is not supported yet!");
483 case TargetLowering::Expand:
Nate Begemancda9aa72005-04-01 22:34:39 +0000484 if (MVT::isInteger(VT))
485 Result = DAG.getConstant(0, VT);
486 else if (MVT::isFloatingPoint(VT))
487 Result = DAG.getConstantFP(0, VT);
488 else
489 assert(0 && "Unknown value type!");
490 break;
Nate Begeman69d39432005-04-02 00:41:14 +0000491 case TargetLowering::Legal:
Nate Begemancda9aa72005-04-01 22:34:39 +0000492 break;
493 }
494 break;
495 }
Chris Lattner435b4022005-11-29 06:21:05 +0000496
497 case ISD::LOCATION:
498 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
499 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
500
501 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
502 case TargetLowering::Promote:
503 default: assert(0 && "This action is not supported yet!");
Jim Laskey7c462762005-12-16 22:45:29 +0000504 case TargetLowering::Expand: {
Jim Laskey219d5592006-01-04 22:28:25 +0000505 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskey762e9ec2006-01-05 01:25:28 +0000506 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
507 bool useDEBUG_LABEL = TLI.isOperationLegal(ISD::DEBUG_LABEL, MVT::Other);
508
509 if (DebugInfo && (useDEBUG_LOC || useDEBUG_LABEL)) {
510 const std::string &FName =
511 cast<StringSDNode>(Node->getOperand(3))->getValue();
512 const std::string &DirName =
513 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskeyb9966022006-01-17 17:31:53 +0000514 unsigned SrcFile = DebugInfo->RecordSource(DirName, FName);
Jim Laskey762e9ec2006-01-05 01:25:28 +0000515
Jim Laskey9e296be2005-12-21 20:51:37 +0000516 std::vector<SDOperand> Ops;
517 Ops.push_back(Tmp1); // chain
Jim Laskey762e9ec2006-01-05 01:25:28 +0000518 SDOperand LineOp = Node->getOperand(1);
519 SDOperand ColOp = Node->getOperand(2);
520
521 if (useDEBUG_LOC) {
522 Ops.push_back(LineOp); // line #
523 Ops.push_back(ColOp); // col #
524 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
525 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops);
526 } else {
Jim Laskey2eea4362006-02-15 19:34:44 +0000527 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
528 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskey762e9ec2006-01-05 01:25:28 +0000529 unsigned ID = DebugInfo->RecordLabel(Line, Col, SrcFile);
530 Ops.push_back(DAG.getConstant(ID, MVT::i32));
531 Result = DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops);
532 }
Jim Laskey9e296be2005-12-21 20:51:37 +0000533 } else {
534 Result = Tmp1; // chain
535 }
Chris Lattner435b4022005-11-29 06:21:05 +0000536 break;
Chris Lattnerc06da622005-12-18 23:54:29 +0000537 }
Chris Lattner435b4022005-11-29 06:21:05 +0000538 case TargetLowering::Legal:
Chris Lattner05b0b452005-12-01 18:21:35 +0000539 if (Tmp1 != Node->getOperand(0) ||
540 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattner435b4022005-11-29 06:21:05 +0000541 std::vector<SDOperand> Ops;
542 Ops.push_back(Tmp1);
Chris Lattner05b0b452005-12-01 18:21:35 +0000543 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
544 Ops.push_back(Node->getOperand(1)); // line # must be legal.
545 Ops.push_back(Node->getOperand(2)); // col # must be legal.
546 } else {
547 // Otherwise promote them.
548 Ops.push_back(PromoteOp(Node->getOperand(1)));
549 Ops.push_back(PromoteOp(Node->getOperand(2)));
550 }
Chris Lattner435b4022005-11-29 06:21:05 +0000551 Ops.push_back(Node->getOperand(3)); // filename must be legal.
552 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000553 Result = DAG.UpdateNodeOperands(Result, Ops);
Chris Lattner435b4022005-11-29 06:21:05 +0000554 }
555 break;
556 }
557 break;
Jim Laskey7c462762005-12-16 22:45:29 +0000558
559 case ISD::DEBUG_LOC:
Jim Laskey762e9ec2006-01-05 01:25:28 +0000560 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskey7c462762005-12-16 22:45:29 +0000561 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskey7c462762005-12-16 22:45:29 +0000562 default: assert(0 && "This action is not supported yet!");
Jim Laskey762e9ec2006-01-05 01:25:28 +0000563 case TargetLowering::Legal:
564 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
565 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
566 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
567 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000568 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskey762e9ec2006-01-05 01:25:28 +0000569 break;
570 }
571 break;
572
573 case ISD::DEBUG_LABEL:
574 assert(Node->getNumOperands() == 2 && "Invalid DEBUG_LABEL node!");
575 switch (TLI.getOperationAction(ISD::DEBUG_LABEL, MVT::Other)) {
Jim Laskey762e9ec2006-01-05 01:25:28 +0000576 default: assert(0 && "This action is not supported yet!");
577 case TargetLowering::Legal:
578 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
579 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000580 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskey7c462762005-12-16 22:45:29 +0000581 break;
582 }
Nate Begeman5965bd12006-02-17 05:43:56 +0000583 break;
Chris Lattner435b4022005-11-29 06:21:05 +0000584
Chris Lattnerdc750592005-01-07 07:47:09 +0000585 case ISD::Constant:
586 // We know we don't need to expand constants here, constants only have one
587 // value and we check that it is fine above.
588
589 // FIXME: Maybe we should handle things like targets that don't support full
590 // 32-bit immediates?
591 break;
592 case ISD::ConstantFP: {
593 // Spill FP immediates to the constant pool if the target cannot directly
594 // codegen them. Targets often have some immediate values that can be
595 // efficiently generated into an FP register without a load. We explicitly
596 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattnerdc750592005-01-07 07:47:09 +0000597 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
598
599 // Check to see if this FP immediate is already legal.
600 bool isLegal = false;
601 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
602 E = TLI.legal_fpimm_end(); I != E; ++I)
603 if (CFP->isExactlyValue(*I)) {
604 isLegal = true;
605 break;
606 }
607
Chris Lattner758b0ac2006-01-29 06:26:56 +0000608 // If this is a legal constant, turn it into a TargetConstantFP node.
609 if (isLegal) {
610 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
611 break;
612 }
613
614 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
615 default: assert(0 && "This action is not supported yet!");
616 case TargetLowering::Custom:
617 Tmp3 = TLI.LowerOperation(Result, DAG);
618 if (Tmp3.Val) {
619 Result = Tmp3;
620 break;
621 }
622 // FALLTHROUGH
623 case TargetLowering::Expand:
Chris Lattnerdc750592005-01-07 07:47:09 +0000624 // Otherwise we need to spill the constant to memory.
Chris Lattnerdc750592005-01-07 07:47:09 +0000625 bool Extend = false;
626
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000627 // If a FP immediate is precise when represented as a float and if the
628 // target can do an extending load from float to double, we put it into
629 // the constant pool as a float, even if it's is statically typed as a
630 // double.
Chris Lattnerdc750592005-01-07 07:47:09 +0000631 MVT::ValueType VT = CFP->getValueType(0);
632 bool isDouble = VT == MVT::f64;
633 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
634 Type::FloatTy, CFP->getValue());
Chris Lattnerbc7497d2005-01-28 22:58:25 +0000635 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
636 // Only do this if the target has a native EXTLOAD instruction from
637 // f32.
Chris Lattnerf12eb4d2005-08-24 16:35:28 +0000638 TLI.isOperationLegal(ISD::EXTLOAD, MVT::f32)) {
Chris Lattnerdc750592005-01-07 07:47:09 +0000639 LLVMC = cast<ConstantFP>(ConstantExpr::getCast(LLVMC, Type::FloatTy));
640 VT = MVT::f32;
641 Extend = true;
642 }
Misha Brukman835702a2005-04-21 22:36:52 +0000643
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000644 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Chris Lattner3ba56b32005-01-16 05:06:12 +0000645 if (Extend) {
Chris Lattnerde0a4b12005-07-10 01:55:33 +0000646 Result = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
647 CPIdx, DAG.getSrcValue(NULL), MVT::f32);
Chris Lattner3ba56b32005-01-16 05:06:12 +0000648 } else {
Chris Lattner5385db52005-05-09 20:23:03 +0000649 Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
650 DAG.getSrcValue(NULL));
Chris Lattner3ba56b32005-01-16 05:06:12 +0000651 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000652 }
653 break;
654 }
Chris Lattner2f2927892006-01-29 06:34:16 +0000655 case ISD::ConstantVec:
656 switch (TLI.getOperationAction(ISD::ConstantVec, Node->getValueType(0))) {
657 default: assert(0 && "This action is not supported yet!");
658 case TargetLowering::Custom:
659 Tmp3 = TLI.LowerOperation(Result, DAG);
660 if (Tmp3.Val) {
661 Result = Tmp3;
662 break;
663 }
664 // FALLTHROUGH
665 case TargetLowering::Expand:
666 // We assume that vector constants are not legal, and will be immediately
667 // spilled to the constant pool.
668 //
669 // Create a ConstantPacked, and put it in the constant pool.
670 MVT::ValueType VT = Node->getValueType(0);
671 const Type *OpNTy =
672 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
673 std::vector<Constant*> CV;
674 if (MVT::isFloatingPoint(VT)) {
675 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
676 double V = cast<ConstantFPSDNode>(Node->getOperand(i))->getValue();
677 CV.push_back(ConstantFP::get(OpNTy, V));
678 }
679 } else {
680 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
681 uint64_t V = cast<ConstantSDNode>(Node->getOperand(i))->getValue();
682 CV.push_back(ConstantUInt::get(OpNTy, V));
683 }
684 }
685 Constant *CP = ConstantPacked::get(CV);
686 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
687 Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
688 DAG.getSrcValue(NULL));
689 break;
Nate Begeman41b1cdc2005-12-06 06:18:55 +0000690 }
Nate Begeman41b1cdc2005-12-06 06:18:55 +0000691 break;
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000692 case ISD::TokenFactor:
693 if (Node->getNumOperands() == 2) {
Chris Lattnerd02b0542006-01-28 10:58:55 +0000694 Tmp1 = LegalizeOp(Node->getOperand(0));
695 Tmp2 = LegalizeOp(Node->getOperand(1));
696 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
697 } else if (Node->getNumOperands() == 3) {
698 Tmp1 = LegalizeOp(Node->getOperand(0));
699 Tmp2 = LegalizeOp(Node->getOperand(1));
700 Tmp3 = LegalizeOp(Node->getOperand(2));
701 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000702 } else {
703 std::vector<SDOperand> Ops;
Chris Lattneraf3aefa2005-11-09 18:48:57 +0000704 // Legalize the operands.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000705 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
706 Ops.push_back(LegalizeOp(Node->getOperand(i)));
707 Result = DAG.UpdateNodeOperands(Result, Ops);
Chris Lattner05b4e372005-01-13 17:59:25 +0000708 }
Chris Lattner05b4e372005-01-13 17:59:25 +0000709 break;
Chris Lattner05b4e372005-01-13 17:59:25 +0000710
Chris Lattner462505f2006-02-13 09:18:02 +0000711 case ISD::CALLSEQ_START: {
712 SDNode *CallEnd = FindCallEndFromCallStart(Node);
713
714 // Recursively Legalize all of the inputs of the call end that do not lead
715 // to this call start. This ensures that any libcalls that need be inserted
716 // are inserted *before* the CALLSEQ_START.
717 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
718 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node);
719
720 // Now that we legalized all of the inputs (which may have inserted
721 // libcalls) create the new CALLSEQ_START node.
722 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
723
724 // Merge in the last call, to ensure that this call start after the last
725 // call ended.
726 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
727 Tmp1 = LegalizeOp(Tmp1);
728
729 // Do not try to legalize the target-specific arguments (#1+).
730 if (Tmp1 != Node->getOperand(0)) {
731 std::vector<SDOperand> Ops(Node->op_begin(), Node->op_end());
732 Ops[0] = Tmp1;
733 Result = DAG.UpdateNodeOperands(Result, Ops);
734 }
735
736 // Remember that the CALLSEQ_START is legalized.
Chris Lattner8e2ee732006-02-14 00:55:02 +0000737 AddLegalizedOperand(Op.getValue(0), Result);
738 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
739 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
740
Chris Lattner462505f2006-02-13 09:18:02 +0000741 // Now that the callseq_start and all of the non-call nodes above this call
742 // sequence have been legalized, legalize the call itself. During this
743 // process, no libcalls can/will be inserted, guaranteeing that no calls
744 // can overlap.
745 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
746 SDOperand InCallSEQ = LastCALLSEQ_END;
747 // Note that we are selecting this call!
748 LastCALLSEQ_END = SDOperand(CallEnd, 0);
749 IsLegalizingCall = true;
750
751 // Legalize the call, starting from the CALLSEQ_END.
752 LegalizeOp(LastCALLSEQ_END);
753 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
754 return Result;
755 }
Chris Lattner2dce7032005-05-12 23:24:06 +0000756 case ISD::CALLSEQ_END:
Chris Lattner462505f2006-02-13 09:18:02 +0000757 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
758 // will cause this node to be legalized as well as handling libcalls right.
759 if (LastCALLSEQ_END.Val != Node) {
760 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
761 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
762 assert(I != LegalizedNodes.end() &&
763 "Legalizing the call start should have legalized this node!");
764 return I->second;
765 }
766
767 // Otherwise, the call start has been legalized and everything is going
768 // according to plan. Just legalize ourselves normally here.
Chris Lattnerdc750592005-01-07 07:47:09 +0000769 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerccb44762006-01-29 07:58:15 +0000770 // Do not try to legalize the target-specific arguments (#1+), except for
771 // an optional flag input.
772 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
773 if (Tmp1 != Node->getOperand(0)) {
774 std::vector<SDOperand> Ops(Node->op_begin(), Node->op_end());
775 Ops[0] = Tmp1;
776 Result = DAG.UpdateNodeOperands(Result, Ops);
777 }
778 } else {
779 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
780 if (Tmp1 != Node->getOperand(0) ||
781 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
782 std::vector<SDOperand> Ops(Node->op_begin(), Node->op_end());
783 Ops[0] = Tmp1;
784 Ops.back() = Tmp2;
785 Result = DAG.UpdateNodeOperands(Result, Ops);
786 }
Chris Lattnerf9a1e3a2006-01-24 05:48:21 +0000787 }
Chris Lattner8e2ee732006-02-14 00:55:02 +0000788 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner462505f2006-02-13 09:18:02 +0000789 // This finishes up call legalization.
790 IsLegalizingCall = false;
Chris Lattner8e2ee732006-02-14 00:55:02 +0000791
792 // If the CALLSEQ_END node has a flag, remember that we legalized it.
793 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
794 if (Node->getNumValues() == 2)
795 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
796 return Result.getValue(Op.ResNo);
Evan Cheng7f4ec822006-01-11 22:14:47 +0000797 case ISD::DYNAMIC_STACKALLOC: {
Chris Lattnerec26b482005-01-09 19:03:49 +0000798 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
799 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
800 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000801 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerec26b482005-01-09 19:03:49 +0000802
Chris Lattnerd02b0542006-01-28 10:58:55 +0000803 Tmp1 = Result.getValue(0);
Chris Lattner2d591422006-01-15 08:43:08 +0000804 Tmp2 = Result.getValue(1);
Evan Cheng7f4ec822006-01-11 22:14:47 +0000805 switch (TLI.getOperationAction(Node->getOpcode(),
806 Node->getValueType(0))) {
807 default: assert(0 && "This action is not supported yet!");
Chris Lattner59b82f92006-01-15 08:54:32 +0000808 case TargetLowering::Expand: {
809 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
810 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
811 " not tell us which reg is the stack pointer!");
812 SDOperand Chain = Tmp1.getOperand(0);
813 SDOperand Size = Tmp2.getOperand(1);
814 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
815 Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size); // Value
816 Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1); // Output chain
Chris Lattnerd02b0542006-01-28 10:58:55 +0000817 Tmp1 = LegalizeOp(Tmp1);
818 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner59b82f92006-01-15 08:54:32 +0000819 break;
820 }
821 case TargetLowering::Custom:
Chris Lattner2d591422006-01-15 08:43:08 +0000822 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
823 if (Tmp3.Val) {
Chris Lattnerd02b0542006-01-28 10:58:55 +0000824 Tmp1 = LegalizeOp(Tmp3);
825 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Cheng7f4ec822006-01-11 22:14:47 +0000826 }
Chris Lattner59b82f92006-01-15 08:54:32 +0000827 break;
Evan Cheng7f4ec822006-01-11 22:14:47 +0000828 case TargetLowering::Legal:
Chris Lattner59b82f92006-01-15 08:54:32 +0000829 break;
Evan Cheng7f4ec822006-01-11 22:14:47 +0000830 }
Chris Lattner59b82f92006-01-15 08:54:32 +0000831 // Since this op produce two values, make sure to remember that we
832 // legalized both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000833 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
834 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner59b82f92006-01-15 08:54:32 +0000835 return Op.ResNo ? Tmp2 : Tmp1;
Evan Cheng7f4ec822006-01-11 22:14:47 +0000836 }
Chris Lattner476e67b2006-01-26 22:24:51 +0000837 case ISD::INLINEASM:
838 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize Chain.
839 Tmp2 = Node->getOperand(Node->getNumOperands()-1);
Chris Lattnerd02b0542006-01-28 10:58:55 +0000840 if (Tmp2.getValueType() == MVT::Flag) // Legalize Flag if it exists.
Chris Lattner476e67b2006-01-26 22:24:51 +0000841 Tmp2 = Tmp3 = SDOperand(0, 0);
842 else
843 Tmp3 = LegalizeOp(Tmp2);
844
845 if (Tmp1 != Node->getOperand(0) || Tmp2 != Tmp3) {
846 std::vector<SDOperand> Ops(Node->op_begin(), Node->op_end());
847 Ops[0] = Tmp1;
Chris Lattnerd02b0542006-01-28 10:58:55 +0000848 if (Tmp3.Val) Ops.back() = Tmp3;
849 Result = DAG.UpdateNodeOperands(Result, Ops);
Chris Lattner476e67b2006-01-26 22:24:51 +0000850 }
851
852 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000853 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner476e67b2006-01-26 22:24:51 +0000854 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
855 return Result.getValue(Op.ResNo);
Chris Lattner68a12142005-01-07 22:12:08 +0000856 case ISD::BR:
857 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +0000858 // Ensure that libcalls are emitted before a branch.
859 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
860 Tmp1 = LegalizeOp(Tmp1);
861 LastCALLSEQ_END = DAG.getEntryNode();
862
Chris Lattnerd02b0542006-01-28 10:58:55 +0000863 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner68a12142005-01-07 22:12:08 +0000864 break;
865
Chris Lattnerec3fe7c2005-01-07 08:19:42 +0000866 case ISD::BRCOND:
867 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +0000868 // Ensure that libcalls are emitted before a return.
869 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
870 Tmp1 = LegalizeOp(Tmp1);
871 LastCALLSEQ_END = DAG.getEntryNode();
872
Chris Lattnerd65c3f32005-01-18 19:27:06 +0000873 switch (getTypeAction(Node->getOperand(1).getValueType())) {
874 case Expand: assert(0 && "It's impossible to expand bools");
875 case Legal:
876 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
877 break;
878 case Promote:
879 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
880 break;
881 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000882
883 // Basic block destination (Op#2) is always legal.
Chris Lattnerd02b0542006-01-28 10:58:55 +0000884 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman371e4952005-08-16 19:49:35 +0000885
886 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
887 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000888 case TargetLowering::Legal: break;
889 case TargetLowering::Custom:
890 Tmp1 = TLI.LowerOperation(Result, DAG);
891 if (Tmp1.Val) Result = Tmp1;
892 break;
Nate Begeman371e4952005-08-16 19:49:35 +0000893 case TargetLowering::Expand:
894 // Expand brcond's setcc into its constituent parts and create a BR_CC
895 // Node.
896 if (Tmp2.getOpcode() == ISD::SETCC) {
897 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
898 Tmp2.getOperand(0), Tmp2.getOperand(1),
899 Node->getOperand(2));
900 } else {
Chris Lattner539c3fa2005-08-21 18:03:09 +0000901 // Make sure the condition is either zero or one. It may have been
902 // promoted from something else.
Chris Lattnere9721b22006-01-31 05:04:52 +0000903 unsigned NumBits = MVT::getSizeInBits(Tmp2.getValueType());
904 if (!TLI.MaskedValueIsZero(Tmp2, (~0ULL >> (64-NumBits))^1))
905 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner539c3fa2005-08-21 18:03:09 +0000906
Nate Begeman371e4952005-08-16 19:49:35 +0000907 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
908 DAG.getCondCode(ISD::SETNE), Tmp2,
909 DAG.getConstant(0, Tmp2.getValueType()),
910 Node->getOperand(2));
911 }
912 break;
Nate Begeman371e4952005-08-16 19:49:35 +0000913 }
914 break;
915 case ISD::BR_CC:
916 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +0000917 // Ensure that libcalls are emitted before a branch.
918 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
919 Tmp1 = LegalizeOp(Tmp1);
920 LastCALLSEQ_END = DAG.getEntryNode();
921
Nate Begeman7e7f4392006-02-01 07:19:44 +0000922 Tmp2 = Node->getOperand(2); // LHS
923 Tmp3 = Node->getOperand(3); // RHS
924 Tmp4 = Node->getOperand(1); // CC
925
926 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
927
928 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
929 // the LHS is a legal SETCC itself. In this case, we need to compare
930 // the result against zero to select between true and false values.
931 if (Tmp3.Val == 0) {
932 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
933 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattnerbf0bd992005-12-17 23:46:46 +0000934 }
Nate Begeman7e7f4392006-02-01 07:19:44 +0000935
936 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
937 Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000938
Chris Lattnerbf0bd992005-12-17 23:46:46 +0000939 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
940 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000941 case TargetLowering::Legal: break;
942 case TargetLowering::Custom:
943 Tmp4 = TLI.LowerOperation(Result, DAG);
944 if (Tmp4.Val) Result = Tmp4;
Chris Lattnerbf0bd992005-12-17 23:46:46 +0000945 break;
Nate Begeman371e4952005-08-16 19:49:35 +0000946 }
Chris Lattnerec3fe7c2005-01-07 08:19:42 +0000947 break;
Chris Lattnerfd986782005-04-09 03:30:19 +0000948 case ISD::BRCONDTWOWAY:
949 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
950 switch (getTypeAction(Node->getOperand(1).getValueType())) {
951 case Expand: assert(0 && "It's impossible to expand bools");
952 case Legal:
953 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
954 break;
955 case Promote:
956 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
957 break;
958 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000959
Chris Lattnerfd986782005-04-09 03:30:19 +0000960 // If this target does not support BRCONDTWOWAY, lower it to a BRCOND/BR
961 // pair.
962 switch (TLI.getOperationAction(ISD::BRCONDTWOWAY, MVT::Other)) {
963 case TargetLowering::Promote:
964 default: assert(0 && "This action is not supported yet!");
965 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +0000966 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
967 Node->getOperand(3));
Chris Lattnerfd986782005-04-09 03:30:19 +0000968 break;
969 case TargetLowering::Expand:
Nate Begeman371e4952005-08-16 19:49:35 +0000970 // If BRTWOWAY_CC is legal for this target, then simply expand this node
971 // to that. Otherwise, skip BRTWOWAY_CC and expand directly to a
972 // BRCOND/BR pair.
Chris Lattnerf12eb4d2005-08-24 16:35:28 +0000973 if (TLI.isOperationLegal(ISD::BRTWOWAY_CC, MVT::Other)) {
Nate Begeman371e4952005-08-16 19:49:35 +0000974 if (Tmp2.getOpcode() == ISD::SETCC) {
Chris Lattner678da982006-01-29 06:00:45 +0000975 Tmp3 = Tmp2.getOperand(0);
976 Tmp4 = Tmp2.getOperand(1);
977 Tmp2 = Tmp2.getOperand(2);
Nate Begeman371e4952005-08-16 19:49:35 +0000978 } else {
Chris Lattner678da982006-01-29 06:00:45 +0000979 Tmp3 = Tmp2;
980 Tmp4 = DAG.getConstant(0, Tmp2.getValueType());
981 Tmp2 = DAG.getCondCode(ISD::SETNE);
Nate Begeman371e4952005-08-16 19:49:35 +0000982 }
Chris Lattner678da982006-01-29 06:00:45 +0000983 std::vector<SDOperand> Ops;
984 Ops.push_back(Tmp1);
985 Ops.push_back(Tmp2);
986 Ops.push_back(Tmp3);
987 Ops.push_back(Tmp4);
988 Ops.push_back(Node->getOperand(2));
989 Ops.push_back(Node->getOperand(3));
990 Result = DAG.getNode(ISD::BRTWOWAY_CC, MVT::Other, Ops);
Nate Begeman371e4952005-08-16 19:49:35 +0000991 } else {
992 Result = DAG.getNode(ISD::BRCOND, MVT::Other, Tmp1, Tmp2,
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000993 Node->getOperand(2));
Nate Begeman371e4952005-08-16 19:49:35 +0000994 Result = DAG.getNode(ISD::BR, MVT::Other, Result, Node->getOperand(3));
995 }
Chris Lattnerfd986782005-04-09 03:30:19 +0000996 break;
997 }
998 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +0000999 case ISD::BRTWOWAY_CC: {
Nate Begeman371e4952005-08-16 19:49:35 +00001000 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001001 // Ensure that libcalls are emitted before a branch.
1002 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1003 Tmp1 = LegalizeOp(Tmp1);
1004 LastCALLSEQ_END = DAG.getEntryNode();
1005
Nate Begeman7e7f4392006-02-01 07:19:44 +00001006 Tmp2 = Node->getOperand(2); // LHS
1007 Tmp3 = Node->getOperand(3); // RHS
1008 Tmp4 = Node->getOperand(1); // CC
1009
1010 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1011
1012 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1013 // the LHS is a legal SETCC itself. In this case, we need to compare
1014 // the result against zero to select between true and false values.
1015 if (Tmp3.Val == 0) {
1016 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1017 Tmp4 = DAG.getCondCode(ISD::SETNE);
1018 }
1019 std::vector<SDOperand> Ops;
1020 Ops.push_back(Tmp1);
1021 Ops.push_back(Tmp4);
1022 Ops.push_back(Tmp2);
1023 Ops.push_back(Tmp3);
1024 Ops.push_back(Node->getOperand(4));
1025 Ops.push_back(Node->getOperand(5));
1026 Result = DAG.UpdateNodeOperands(Result, Ops);
1027
1028 // Everything is legal, see if we should expand this op or something.
1029 switch (TLI.getOperationAction(ISD::BRTWOWAY_CC, MVT::Other)) {
1030 default: assert(0 && "This action is not supported yet!");
1031 case TargetLowering::Legal: break;
1032 case TargetLowering::Expand:
1033 Result = DAG.getNode(ISD::BRCOND, MVT::Other, Tmp1,
1034 DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), Tmp2,
1035 Tmp3, Tmp4),
1036 Result.getOperand(4));
1037 Result = DAG.getNode(ISD::BR, MVT::Other, Result, Result.getOperand(5));
Nate Begeman371e4952005-08-16 19:49:35 +00001038 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001039 }
1040 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +00001041 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00001042 case ISD::LOAD: {
Chris Lattnerdc750592005-01-07 07:47:09 +00001043 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1044 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00001045
Evan Cheng31d15fa2005-12-23 07:29:34 +00001046 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001047 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1048 Tmp2 = Result.getValue(0);
1049 Tmp3 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001050
Evan Cheng31d15fa2005-12-23 07:29:34 +00001051 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1052 default: assert(0 && "This action is not supported yet!");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001053 case TargetLowering::Legal: break;
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001054 case TargetLowering::Custom:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001055 Tmp1 = TLI.LowerOperation(Tmp2, DAG);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001056 if (Tmp1.Val) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001057 Tmp2 = LegalizeOp(Tmp1);
1058 Tmp3 = LegalizeOp(Tmp1.getValue(1));
Evan Cheng31d15fa2005-12-23 07:29:34 +00001059 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001060 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001061 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001062 // Since loads produce two values, make sure to remember that we
1063 // legalized both of them.
1064 AddLegalizedOperand(SDOperand(Node, 0), Tmp2);
1065 AddLegalizedOperand(SDOperand(Node, 1), Tmp3);
1066 return Op.ResNo ? Tmp3 : Tmp2;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001067 }
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001068 case ISD::EXTLOAD:
1069 case ISD::SEXTLOAD:
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001070 case ISD::ZEXTLOAD: {
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001071 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1072 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001073
Chris Lattnerde0a4b12005-07-10 01:55:33 +00001074 MVT::ValueType SrcVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001075 switch (TLI.getOperationAction(Node->getOpcode(), SrcVT)) {
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001076 default: assert(0 && "This action is not supported yet!");
Chris Lattner0b73a6d2005-04-12 20:30:10 +00001077 case TargetLowering::Promote:
1078 assert(SrcVT == MVT::i1 && "Can only promote EXTLOAD from i1 -> i8!");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001079 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
1080 DAG.getValueType(MVT::i8));
1081 Tmp1 = Result.getValue(0);
1082 Tmp2 = Result.getValue(1);
1083 break;
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001084 case TargetLowering::Custom:
1085 isCustom = true;
1086 // FALLTHROUGH
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001087 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001088 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
1089 Node->getOperand(3));
1090 Tmp1 = Result.getValue(0);
1091 Tmp2 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001092
1093 if (isCustom) {
1094 Tmp3 = TLI.LowerOperation(Tmp3, DAG);
1095 if (Tmp3.Val) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001096 Tmp1 = LegalizeOp(Tmp3);
1097 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001098 }
1099 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001100 break;
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001101 case TargetLowering::Expand:
Chris Lattner2af3ee42005-12-20 00:53:54 +00001102 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Andrew Lenharthb5597e32005-06-30 19:22:37 +00001103 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1104 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, Node->getOperand(2));
Andrew Lenharth0a370f42005-06-30 19:32:57 +00001105 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001106 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1107 Tmp2 = LegalizeOp(Load.getValue(1));
1108 break;
Andrew Lenharthb5597e32005-06-30 19:22:37 +00001109 }
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001110 assert(Node->getOpcode() != ISD::EXTLOAD &&
1111 "EXTLOAD should always be supported!");
1112 // Turn the unsupported load into an EXTLOAD followed by an explicit
1113 // zero/sign extend inreg.
Chris Lattnerde0a4b12005-07-10 01:55:33 +00001114 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1115 Tmp1, Tmp2, Node->getOperand(2), SrcVT);
Chris Lattner0e852af2005-04-13 02:38:47 +00001116 SDOperand ValRes;
1117 if (Node->getOpcode() == ISD::SEXTLOAD)
1118 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00001119 Result, DAG.getValueType(SrcVT));
Chris Lattner0e852af2005-04-13 02:38:47 +00001120 else
1121 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
Chris Lattnerd02b0542006-01-28 10:58:55 +00001122 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1123 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1124 break;
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001125 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001126 // Since loads produce two values, make sure to remember that we legalized
1127 // both of them.
1128 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1129 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1130 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001131 }
Nate Begeman5172ce62005-10-19 00:06:56 +00001132 case ISD::EXTRACT_ELEMENT: {
1133 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1134 switch (getTypeAction(OpTy)) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001135 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5172ce62005-10-19 00:06:56 +00001136 case Legal:
1137 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1138 // 1 -> Hi
1139 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1140 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1141 TLI.getShiftAmountTy()));
1142 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1143 } else {
1144 // 0 -> Lo
1145 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1146 Node->getOperand(0));
1147 }
Nate Begeman5172ce62005-10-19 00:06:56 +00001148 break;
1149 case Expand:
1150 // Get both the low and high parts.
1151 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1152 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1153 Result = Tmp2; // 1 -> Hi
1154 else
1155 Result = Tmp1; // 0 -> Lo
1156 break;
1157 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001158 break;
Nate Begeman5172ce62005-10-19 00:06:56 +00001159 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001160
1161 case ISD::CopyToReg:
1162 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukman835702a2005-04-21 22:36:52 +00001163
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00001164 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattner33182322005-08-16 21:55:35 +00001165 "Register type must be legal!");
Chris Lattnere3c67e92005-12-18 15:27:43 +00001166 // Legalize the incoming value (must be a legal type).
Chris Lattner33182322005-08-16 21:55:35 +00001167 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001168 if (Node->getNumValues() == 1) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001169 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattnere3c67e92005-12-18 15:27:43 +00001170 } else {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001171 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001172 if (Node->getNumOperands() == 4) {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001173 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001174 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1175 Tmp3);
1176 } else {
1177 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattnere3c67e92005-12-18 15:27:43 +00001178 }
1179
1180 // Since this produces two values, make sure to remember that we legalized
1181 // both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001182 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnere3c67e92005-12-18 15:27:43 +00001183 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001184 return Result;
Chris Lattnere3c67e92005-12-18 15:27:43 +00001185 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001186 break;
1187
1188 case ISD::RET:
1189 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001190
1191 // Ensure that libcalls are emitted before a return.
1192 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1193 Tmp1 = LegalizeOp(Tmp1);
1194 LastCALLSEQ_END = DAG.getEntryNode();
1195
Chris Lattnerdc750592005-01-07 07:47:09 +00001196 switch (Node->getNumOperands()) {
1197 case 2: // ret val
1198 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1199 case Legal:
1200 Tmp2 = LegalizeOp(Node->getOperand(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001201 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattnerdc750592005-01-07 07:47:09 +00001202 break;
1203 case Expand: {
1204 SDOperand Lo, Hi;
1205 ExpandOp(Node->getOperand(1), Lo, Hi);
1206 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Hi);
Misha Brukman835702a2005-04-21 22:36:52 +00001207 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001208 }
1209 case Promote:
Chris Lattner4d978642005-01-15 22:16:26 +00001210 Tmp2 = PromoteOp(Node->getOperand(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001211 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1212 Result = LegalizeOp(Result);
Chris Lattner4d978642005-01-15 22:16:26 +00001213 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001214 }
1215 break;
1216 case 1: // ret void
Chris Lattnerd02b0542006-01-28 10:58:55 +00001217 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerdc750592005-01-07 07:47:09 +00001218 break;
1219 default: { // ret <values>
1220 std::vector<SDOperand> NewValues;
1221 NewValues.push_back(Tmp1);
1222 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i)
1223 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1224 case Legal:
Chris Lattner7e6eeba2005-01-08 19:27:05 +00001225 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerdc750592005-01-07 07:47:09 +00001226 break;
1227 case Expand: {
1228 SDOperand Lo, Hi;
1229 ExpandOp(Node->getOperand(i), Lo, Hi);
1230 NewValues.push_back(Lo);
1231 NewValues.push_back(Hi);
Misha Brukman835702a2005-04-21 22:36:52 +00001232 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001233 }
1234 case Promote:
Chris Lattner4d978642005-01-15 22:16:26 +00001235 assert(0 && "Can't promote multiple return value yet!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001236 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001237
1238 if (NewValues.size() == Node->getNumOperands())
1239 Result = DAG.UpdateNodeOperands(Result, NewValues);
1240 else
1241 Result = DAG.getNode(ISD::RET, MVT::Other, NewValues);
Chris Lattnerdc750592005-01-07 07:47:09 +00001242 break;
1243 }
1244 }
Evan Chengf35b1c82006-01-06 00:41:43 +00001245
Chris Lattner4d1ea712006-01-29 21:02:23 +00001246 if (Result.getOpcode() == ISD::RET) {
1247 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1248 default: assert(0 && "This action is not supported yet!");
1249 case TargetLowering::Legal: break;
1250 case TargetLowering::Custom:
1251 Tmp1 = TLI.LowerOperation(Result, DAG);
1252 if (Tmp1.Val) Result = Tmp1;
1253 break;
1254 }
Evan Chengf35b1c82006-01-06 00:41:43 +00001255 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001256 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001257 case ISD::STORE: {
Chris Lattnerdc750592005-01-07 07:47:09 +00001258 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1259 Tmp2 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
1260
Chris Lattnere69daaf2005-01-08 06:25:56 +00001261 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001262 // FIXME: We shouldn't do this for TargetConstantFP's.
Chris Lattner1f2c9d82005-01-15 05:21:40 +00001263 if (ConstantFPSDNode *CFP =dyn_cast<ConstantFPSDNode>(Node->getOperand(1))){
Chris Lattnere69daaf2005-01-08 06:25:56 +00001264 if (CFP->getValueType(0) == MVT::f32) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001265 Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
Chris Lattnere69daaf2005-01-08 06:25:56 +00001266 } else {
1267 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001268 Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
Chris Lattnere69daaf2005-01-08 06:25:56 +00001269 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001270 Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Tmp3, Tmp2,
1271 Node->getOperand(3));
Chris Lattnerf9a1e3a2006-01-24 05:48:21 +00001272 break;
Chris Lattnere69daaf2005-01-08 06:25:56 +00001273 }
1274
Chris Lattnerdc750592005-01-07 07:47:09 +00001275 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1276 case Legal: {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001277 Tmp3 = LegalizeOp(Node->getOperand(1));
1278 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1279 Node->getOperand(3));
Evan Cheng31d15fa2005-12-23 07:29:34 +00001280
Chris Lattnerd02b0542006-01-28 10:58:55 +00001281 MVT::ValueType VT = Tmp3.getValueType();
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001282 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1283 default: assert(0 && "This action is not supported yet!");
1284 case TargetLowering::Legal: break;
1285 case TargetLowering::Custom:
1286 Tmp1 = TLI.LowerOperation(Result, DAG);
1287 if (Tmp1.Val) Result = Tmp1;
1288 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001289 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001290 break;
1291 }
1292 case Promote:
Chris Lattner1f2c9d82005-01-15 05:21:40 +00001293 // Truncate the value and store the result.
1294 Tmp3 = PromoteOp(Node->getOperand(1));
1295 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp3, Tmp2,
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00001296 Node->getOperand(3),
Chris Lattner36db1ed2005-07-10 00:29:18 +00001297 DAG.getValueType(Node->getOperand(1).getValueType()));
Chris Lattner1f2c9d82005-01-15 05:21:40 +00001298 break;
1299
Chris Lattnerdc750592005-01-07 07:47:09 +00001300 case Expand:
1301 SDOperand Lo, Hi;
1302 ExpandOp(Node->getOperand(1), Lo, Hi);
1303
1304 if (!TLI.isLittleEndian())
1305 std::swap(Lo, Hi);
1306
Chris Lattner55e9cde2005-05-11 04:51:16 +00001307 Lo = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Lo, Tmp2,
1308 Node->getOperand(3));
Nate Begemand37c1312005-11-22 18:16:00 +00001309 // If this is a vector type, then we have to calculate the increment as
1310 // the product of the element size in bytes, and the number of elements
1311 // in the high half of the vector.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001312 unsigned IncrementSize;
Nate Begemand37c1312005-11-22 18:16:00 +00001313 if (MVT::Vector == Hi.getValueType()) {
Evan Chengb97aab42006-03-01 01:09:54 +00001314 unsigned NumElems = cast<ConstantSDNode>(Hi.getOperand(0))->getValue();
1315 MVT::ValueType EVT = cast<VTSDNode>(Hi.getOperand(1))->getVT();
Nate Begemand37c1312005-11-22 18:16:00 +00001316 IncrementSize = NumElems * MVT::getSizeInBits(EVT)/8;
1317 } else {
1318 IncrementSize = MVT::getSizeInBits(Hi.getValueType())/8;
1319 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001320 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1321 getIntPtrConstant(IncrementSize));
1322 assert(isTypeLegal(Tmp2.getValueType()) &&
1323 "Pointers must be legal!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001324 // FIXME: This sets the srcvalue of both halves to be the same, which is
1325 // wrong.
Chris Lattner55e9cde2005-05-11 04:51:16 +00001326 Hi = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Hi, Tmp2,
1327 Node->getOperand(3));
Chris Lattner0d03eb42005-01-19 18:02:17 +00001328 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1329 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001330 }
1331 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001332 }
Andrew Lenharthdec53922005-03-31 21:24:06 +00001333 case ISD::PCMARKER:
1334 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001335 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharthdec53922005-03-31 21:24:06 +00001336 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001337 case ISD::STACKSAVE:
1338 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001339 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1340 Tmp1 = Result.getValue(0);
1341 Tmp2 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001342
Chris Lattnerb3266452006-01-13 02:50:02 +00001343 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1344 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001345 case TargetLowering::Legal: break;
1346 case TargetLowering::Custom:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001347 Tmp3 = TLI.LowerOperation(Result, DAG);
1348 if (Tmp3.Val) {
1349 Tmp1 = LegalizeOp(Tmp3);
1350 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattnerb3266452006-01-13 02:50:02 +00001351 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001352 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001353 case TargetLowering::Expand:
Chris Lattnered9b3e12006-01-13 17:48:44 +00001354 // Expand to CopyFromReg if the target set
1355 // StackPointerRegisterToSaveRestore.
1356 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001357 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattnered9b3e12006-01-13 17:48:44 +00001358 Node->getValueType(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001359 Tmp2 = Tmp1.getValue(1);
Chris Lattnered9b3e12006-01-13 17:48:44 +00001360 } else {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001361 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1362 Tmp2 = Node->getOperand(0);
Chris Lattnered9b3e12006-01-13 17:48:44 +00001363 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001364 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00001365 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001366
1367 // Since stacksave produce two values, make sure to remember that we
1368 // legalized both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001369 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1370 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1371 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001372
Chris Lattnerb3266452006-01-13 02:50:02 +00001373 case ISD::STACKRESTORE:
1374 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1375 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001376 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattnerb3266452006-01-13 02:50:02 +00001377
1378 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1379 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001380 case TargetLowering::Legal: break;
1381 case TargetLowering::Custom:
1382 Tmp1 = TLI.LowerOperation(Result, DAG);
1383 if (Tmp1.Val) Result = Tmp1;
Chris Lattnerb3266452006-01-13 02:50:02 +00001384 break;
1385 case TargetLowering::Expand:
Chris Lattnered9b3e12006-01-13 17:48:44 +00001386 // Expand to CopyToReg if the target set
1387 // StackPointerRegisterToSaveRestore.
1388 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1389 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1390 } else {
1391 Result = Tmp1;
1392 }
Chris Lattnerb3266452006-01-13 02:50:02 +00001393 break;
1394 }
1395 break;
1396
Andrew Lenharth01aa5632005-11-11 16:47:30 +00001397 case ISD::READCYCLECOUNTER:
1398 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerd02b0542006-01-28 10:58:55 +00001399 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth73420b32005-12-02 04:56:24 +00001400
1401 // Since rdcc produce two values, make sure to remember that we legalized
1402 // both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001403 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Andrew Lenharth73420b32005-12-02 04:56:24 +00001404 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001405 return Result;
Andrew Lenharth627cbd42005-11-20 21:32:07 +00001406
Evan Cheng31d15fa2005-12-23 07:29:34 +00001407 case ISD::TRUNCSTORE: {
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001408 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1409 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
1410
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001411 assert(isTypeLegal(Node->getOperand(1).getValueType()) &&
1412 "Cannot handle illegal TRUNCSTORE yet!");
1413 Tmp2 = LegalizeOp(Node->getOperand(1));
1414
1415 // The only promote case we handle is TRUNCSTORE:i1 X into
1416 // -> TRUNCSTORE:i8 (and X, 1)
1417 if (cast<VTSDNode>(Node->getOperand(4))->getVT() == MVT::i1 &&
1418 TLI.getOperationAction(ISD::TRUNCSTORE, MVT::i1) ==
1419 TargetLowering::Promote) {
1420 // Promote the bool to a mask then store.
1421 Tmp2 = DAG.getNode(ISD::AND, Tmp2.getValueType(), Tmp2,
1422 DAG.getConstant(1, Tmp2.getValueType()));
1423 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp2, Tmp3,
1424 Node->getOperand(3), DAG.getValueType(MVT::i8));
Chris Lattner2d454bf2005-09-10 00:20:18 +00001425
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001426 } else if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) ||
1427 Tmp3 != Node->getOperand(2)) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001428 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
1429 Node->getOperand(3), Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001430 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00001431
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001432 MVT::ValueType StVT = cast<VTSDNode>(Result.Val->getOperand(4))->getVT();
1433 switch (TLI.getOperationAction(Result.Val->getOpcode(), StVT)) {
1434 default: assert(0 && "This action is not supported yet!");
1435 case TargetLowering::Legal: break;
1436 case TargetLowering::Custom:
1437 Tmp1 = TLI.LowerOperation(Result, DAG);
1438 if (Tmp1.Val) Result = Tmp1;
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001439 break;
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00001440 }
1441 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001442 }
Chris Lattner39c67442005-01-14 22:08:15 +00001443 case ISD::SELECT:
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001444 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1445 case Expand: assert(0 && "It's impossible to expand bools");
1446 case Legal:
1447 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1448 break;
1449 case Promote:
1450 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
1451 break;
1452 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001453 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner39c67442005-01-14 22:08:15 +00001454 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner3c0dd462005-01-16 07:29:19 +00001455
Chris Lattnerd02b0542006-01-28 10:58:55 +00001456 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001457
Nate Begeman987121a2005-08-23 04:29:48 +00001458 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner3c0dd462005-01-16 07:29:19 +00001459 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001460 case TargetLowering::Legal: break;
1461 case TargetLowering::Custom: {
1462 Tmp1 = TLI.LowerOperation(Result, DAG);
1463 if (Tmp1.Val) Result = Tmp1;
1464 break;
1465 }
Nate Begemane5b86d72005-08-10 20:51:12 +00001466 case TargetLowering::Expand:
1467 if (Tmp1.getOpcode() == ISD::SETCC) {
1468 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
1469 Tmp2, Tmp3,
1470 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1471 } else {
Chris Lattner539c3fa2005-08-21 18:03:09 +00001472 // Make sure the condition is either zero or one. It may have been
1473 // promoted from something else.
Chris Lattnerd6f5ae42006-01-30 04:22:28 +00001474 unsigned NumBits = MVT::getSizeInBits(Tmp1.getValueType());
1475 if (!TLI.MaskedValueIsZero(Tmp1, (~0ULL >> (64-NumBits))^1))
1476 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Nate Begemane5b86d72005-08-10 20:51:12 +00001477 Result = DAG.getSelectCC(Tmp1,
1478 DAG.getConstant(0, Tmp1.getValueType()),
1479 Tmp2, Tmp3, ISD::SETNE);
1480 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00001481 break;
1482 case TargetLowering::Promote: {
1483 MVT::ValueType NVT =
1484 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1485 unsigned ExtOp, TruncOp;
1486 if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001487 ExtOp = ISD::ANY_EXTEND;
1488 TruncOp = ISD::TRUNCATE;
Chris Lattner3c0dd462005-01-16 07:29:19 +00001489 } else {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001490 ExtOp = ISD::FP_EXTEND;
1491 TruncOp = ISD::FP_ROUND;
Chris Lattner3c0dd462005-01-16 07:29:19 +00001492 }
1493 // Promote each of the values to the new type.
1494 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
1495 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
1496 // Perform the larger operation, then round down.
1497 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
1498 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
1499 break;
1500 }
1501 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001502 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +00001503 case ISD::SELECT_CC: {
1504 Tmp1 = Node->getOperand(0); // LHS
1505 Tmp2 = Node->getOperand(1); // RHS
Nate Begemane5b86d72005-08-10 20:51:12 +00001506 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
1507 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman7e7f4392006-02-01 07:19:44 +00001508 SDOperand CC = Node->getOperand(4);
Nate Begemane5b86d72005-08-10 20:51:12 +00001509
Nate Begeman7e7f4392006-02-01 07:19:44 +00001510 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
1511
1512 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1513 // the LHS is a legal SETCC itself. In this case, we need to compare
1514 // the result against zero to select between true and false values.
1515 if (Tmp2.Val == 0) {
1516 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
1517 CC = DAG.getCondCode(ISD::SETNE);
1518 }
1519 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
1520
1521 // Everything is legal, see if we should expand this op or something.
1522 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
1523 default: assert(0 && "This action is not supported yet!");
1524 case TargetLowering::Legal: break;
1525 case TargetLowering::Custom:
1526 Tmp1 = TLI.LowerOperation(Result, DAG);
1527 if (Tmp1.Val) Result = Tmp1;
Nate Begemane5b86d72005-08-10 20:51:12 +00001528 break;
Nate Begemane5b86d72005-08-10 20:51:12 +00001529 }
1530 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +00001531 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001532 case ISD::SETCC:
Nate Begeman7e7f4392006-02-01 07:19:44 +00001533 Tmp1 = Node->getOperand(0);
1534 Tmp2 = Node->getOperand(1);
1535 Tmp3 = Node->getOperand(2);
1536 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
1537
1538 // If we had to Expand the SetCC operands into a SELECT node, then it may
1539 // not always be possible to return a true LHS & RHS. In this case, just
1540 // return the value we legalized, returned in the LHS
1541 if (Tmp2.Val == 0) {
1542 Result = Tmp1;
Chris Lattnerdc750592005-01-07 07:47:09 +00001543 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00001544 }
Nate Begeman987121a2005-08-23 04:29:48 +00001545
Chris Lattnerf263a232006-01-30 22:43:50 +00001546 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001547 default: assert(0 && "Cannot handle this action for SETCC yet!");
1548 case TargetLowering::Custom:
1549 isCustom = true;
1550 // FALLTHROUGH.
1551 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001552 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001553 if (isCustom) {
1554 Tmp3 = TLI.LowerOperation(Result, DAG);
1555 if (Tmp3.Val) Result = Tmp3;
1556 }
Nate Begeman987121a2005-08-23 04:29:48 +00001557 break;
Andrew Lenharth6ee85662005-11-30 17:12:26 +00001558 case TargetLowering::Promote: {
1559 // First step, figure out the appropriate operation to use.
1560 // Allow SETCC to not be supported for all legal data types
1561 // Mostly this targets FP
1562 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
1563 MVT::ValueType OldVT = NewInTy;
1564
1565 // Scan for the appropriate larger type to use.
1566 while (1) {
1567 NewInTy = (MVT::ValueType)(NewInTy+1);
1568
1569 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
1570 "Fell off of the edge of the integer world");
1571 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
1572 "Fell off of the edge of the floating point world");
1573
1574 // If the target supports SETCC of this type, use it.
Chris Lattner1408c052005-12-22 05:23:45 +00001575 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharth6ee85662005-11-30 17:12:26 +00001576 break;
1577 }
1578 if (MVT::isInteger(NewInTy))
1579 assert(0 && "Cannot promote Legal Integer SETCC yet");
1580 else {
1581 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
1582 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
1583 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001584 Tmp1 = LegalizeOp(Tmp1);
1585 Tmp2 = LegalizeOp(Tmp2);
1586 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Cheng6f86a7d2006-01-17 19:47:13 +00001587 Result = LegalizeOp(Result);
Andrew Lenharth835cbb32005-08-29 20:46:51 +00001588 break;
Andrew Lenharth6ee85662005-11-30 17:12:26 +00001589 }
Nate Begeman987121a2005-08-23 04:29:48 +00001590 case TargetLowering::Expand:
1591 // Expand a setcc node into a select_cc of the same condition, lhs, and
1592 // rhs that selects between const 1 (true) and const 0 (false).
1593 MVT::ValueType VT = Node->getValueType(0);
1594 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
1595 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
1596 Node->getOperand(2));
Nate Begeman987121a2005-08-23 04:29:48 +00001597 break;
1598 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001599 break;
Chris Lattner85d70c62005-01-11 05:57:22 +00001600 case ISD::MEMSET:
1601 case ISD::MEMCPY:
1602 case ISD::MEMMOVE: {
Chris Lattner4487b2e2005-02-01 18:38:28 +00001603 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001604 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
1605
1606 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
1607 switch (getTypeAction(Node->getOperand(2).getValueType())) {
1608 case Expand: assert(0 && "Cannot expand a byte!");
1609 case Legal:
Chris Lattner4487b2e2005-02-01 18:38:28 +00001610 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001611 break;
1612 case Promote:
Chris Lattner4487b2e2005-02-01 18:38:28 +00001613 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001614 break;
1615 }
1616 } else {
Misha Brukman835702a2005-04-21 22:36:52 +00001617 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001618 }
Chris Lattner5aa75e42005-02-02 03:44:41 +00001619
1620 SDOperand Tmp4;
1621 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattnerba08a332005-07-13 01:42:45 +00001622 case Expand: {
1623 // Length is too big, just take the lo-part of the length.
1624 SDOperand HiPart;
1625 ExpandOp(Node->getOperand(3), HiPart, Tmp4);
1626 break;
1627 }
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001628 case Legal:
1629 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001630 break;
1631 case Promote:
1632 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner5aa75e42005-02-02 03:44:41 +00001633 break;
1634 }
1635
1636 SDOperand Tmp5;
1637 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
1638 case Expand: assert(0 && "Cannot expand this yet!");
1639 case Legal:
1640 Tmp5 = LegalizeOp(Node->getOperand(4));
1641 break;
1642 case Promote:
Chris Lattnera4cfafe2005-01-28 22:29:18 +00001643 Tmp5 = PromoteOp(Node->getOperand(4));
1644 break;
1645 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00001646
1647 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
1648 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001649 case TargetLowering::Custom:
1650 isCustom = true;
1651 // FALLTHROUGH
Chris Lattner3c0dd462005-01-16 07:29:19 +00001652 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001653 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001654 if (isCustom) {
1655 Tmp1 = TLI.LowerOperation(Result, DAG);
1656 if (Tmp1.Val) Result = Tmp1;
1657 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00001658 break;
1659 case TargetLowering::Expand: {
Chris Lattner85d70c62005-01-11 05:57:22 +00001660 // Otherwise, the target does not support this operation. Lower the
1661 // operation to an explicit libcall as appropriate.
1662 MVT::ValueType IntPtr = TLI.getPointerTy();
1663 const Type *IntPtrTy = TLI.getTargetData().getIntPtrType();
1664 std::vector<std::pair<SDOperand, const Type*> > Args;
1665
Reid Spencer6dced922005-01-12 14:53:45 +00001666 const char *FnName = 0;
Chris Lattner85d70c62005-01-11 05:57:22 +00001667 if (Node->getOpcode() == ISD::MEMSET) {
1668 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
Chris Lattner486d1bc2006-02-20 06:38:35 +00001669 // Extend the (previously legalized) ubyte argument to be an int value
1670 // for the call.
1671 if (Tmp3.getValueType() > MVT::i32)
1672 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
1673 else
1674 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Chris Lattner85d70c62005-01-11 05:57:22 +00001675 Args.push_back(std::make_pair(Tmp3, Type::IntTy));
1676 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
1677
1678 FnName = "memset";
1679 } else if (Node->getOpcode() == ISD::MEMCPY ||
1680 Node->getOpcode() == ISD::MEMMOVE) {
1681 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
1682 Args.push_back(std::make_pair(Tmp3, IntPtrTy));
1683 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
1684 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
1685 } else {
1686 assert(0 && "Unknown op!");
1687 }
Chris Lattnerb5a78e02005-05-12 16:53:42 +00001688
Chris Lattner85d70c62005-01-11 05:57:22 +00001689 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattner2e77db62005-05-13 18:50:42 +00001690 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, CallingConv::C, false,
Chris Lattner85d70c62005-01-11 05:57:22 +00001691 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001692 Result = CallResult.second;
Chris Lattner3c0dd462005-01-16 07:29:19 +00001693 break;
1694 }
Chris Lattner85d70c62005-01-11 05:57:22 +00001695 }
1696 break;
1697 }
Chris Lattner5385db52005-05-09 20:23:03 +00001698
Chris Lattner4157c412005-04-02 04:00:59 +00001699 case ISD::SHL_PARTS:
1700 case ISD::SRA_PARTS:
1701 case ISD::SRL_PARTS: {
Chris Lattnerb3f83b282005-01-20 18:52:28 +00001702 std::vector<SDOperand> Ops;
1703 bool Changed = false;
1704 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1705 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1706 Changed |= Ops.back() != Node->getOperand(i);
1707 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001708 if (Changed)
1709 Result = DAG.UpdateNodeOperands(Result, Ops);
Chris Lattner13fe99c2005-04-02 05:00:07 +00001710
Evan Cheng870e4f82006-01-09 18:31:59 +00001711 switch (TLI.getOperationAction(Node->getOpcode(),
1712 Node->getValueType(0))) {
1713 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001714 case TargetLowering::Legal: break;
1715 case TargetLowering::Custom:
1716 Tmp1 = TLI.LowerOperation(Result, DAG);
1717 if (Tmp1.Val) {
1718 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng870e4f82006-01-09 18:31:59 +00001719 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001720 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng870e4f82006-01-09 18:31:59 +00001721 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
1722 if (i == Op.ResNo)
Evan Cheng13e8c9d2006-01-19 04:54:52 +00001723 RetVal = Tmp2;
Evan Cheng870e4f82006-01-09 18:31:59 +00001724 }
Chris Lattnerfb5f4652006-01-10 19:43:26 +00001725 assert(RetVal.Val && "Illegal result number");
Evan Cheng870e4f82006-01-09 18:31:59 +00001726 return RetVal;
1727 }
Evan Cheng870e4f82006-01-09 18:31:59 +00001728 break;
1729 }
1730
Chris Lattner13fe99c2005-04-02 05:00:07 +00001731 // Since these produce multiple values, make sure to remember that we
1732 // legalized all of them.
1733 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1734 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
1735 return Result.getValue(Op.ResNo);
Chris Lattnerb3f83b282005-01-20 18:52:28 +00001736 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00001737
1738 // Binary operators
Chris Lattnerdc750592005-01-07 07:47:09 +00001739 case ISD::ADD:
1740 case ISD::SUB:
1741 case ISD::MUL:
Nate Begemanadd0c632005-04-11 03:01:51 +00001742 case ISD::MULHS:
1743 case ISD::MULHU:
Chris Lattnerdc750592005-01-07 07:47:09 +00001744 case ISD::UDIV:
1745 case ISD::SDIV:
Chris Lattnerdc750592005-01-07 07:47:09 +00001746 case ISD::AND:
1747 case ISD::OR:
1748 case ISD::XOR:
Chris Lattner32f20bf2005-01-07 21:45:56 +00001749 case ISD::SHL:
1750 case ISD::SRL:
1751 case ISD::SRA:
Chris Lattner6f3b5772005-09-28 22:28:18 +00001752 case ISD::FADD:
1753 case ISD::FSUB:
1754 case ISD::FMUL:
1755 case ISD::FDIV:
Chris Lattnerdc750592005-01-07 07:47:09 +00001756 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharth80fe4112005-07-05 19:52:39 +00001757 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1758 case Expand: assert(0 && "Not possible");
1759 case Legal:
1760 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
1761 break;
1762 case Promote:
1763 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
1764 break;
1765 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001766
1767 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001768
Andrew Lenharth72594262005-12-24 23:42:32 +00001769 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001770 default: assert(0 && "Operation not supported");
1771 case TargetLowering::Legal: break;
1772 case TargetLowering::Custom:
1773 Tmp1 = TLI.LowerOperation(Result, DAG);
1774 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth30db2ec2005-12-25 01:07:37 +00001775 break;
Andrew Lenharth72594262005-12-24 23:42:32 +00001776 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001777 break;
Nate Begeman5965bd12006-02-17 05:43:56 +00001778
1779 case ISD::ADDC:
1780 case ISD::SUBC:
1781 Tmp1 = LegalizeOp(Node->getOperand(0));
1782 Tmp2 = LegalizeOp(Node->getOperand(1));
1783 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1784 // Since this produces two values, make sure to remember that we legalized
1785 // both of them.
1786 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1787 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1788 return Result;
1789 break;
Misha Brukman835702a2005-04-21 22:36:52 +00001790
Nate Begeman5965bd12006-02-17 05:43:56 +00001791 case ISD::ADDE:
1792 case ISD::SUBE:
1793 Tmp1 = LegalizeOp(Node->getOperand(0));
1794 Tmp2 = LegalizeOp(Node->getOperand(1));
1795 Tmp3 = LegalizeOp(Node->getOperand(2));
1796 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1797 // Since this produces two values, make sure to remember that we legalized
1798 // both of them.
1799 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1800 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1801 return Result;
1802 break;
1803
Nate Begemanbd5f41a2005-10-18 00:27:41 +00001804 case ISD::BUILD_PAIR: {
1805 MVT::ValueType PairTy = Node->getValueType(0);
1806 // TODO: handle the case where the Lo and Hi operands are not of legal type
1807 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
1808 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
1809 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001810 case TargetLowering::Promote:
1811 case TargetLowering::Custom:
1812 assert(0 && "Cannot promote/custom this yet!");
Nate Begemanbd5f41a2005-10-18 00:27:41 +00001813 case TargetLowering::Legal:
1814 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
1815 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
1816 break;
Nate Begemanbd5f41a2005-10-18 00:27:41 +00001817 case TargetLowering::Expand:
1818 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
1819 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
1820 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
1821 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
1822 TLI.getShiftAmountTy()));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001823 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begemanbd5f41a2005-10-18 00:27:41 +00001824 break;
1825 }
1826 break;
1827 }
1828
Nate Begeman20b7d2a2005-04-06 00:23:54 +00001829 case ISD::UREM:
1830 case ISD::SREM:
Chris Lattner6f3b5772005-09-28 22:28:18 +00001831 case ISD::FREM:
Nate Begeman20b7d2a2005-04-06 00:23:54 +00001832 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
1833 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001834
Nate Begeman20b7d2a2005-04-06 00:23:54 +00001835 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001836 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
1837 case TargetLowering::Custom:
1838 isCustom = true;
1839 // FALLTHROUGH
Nate Begeman20b7d2a2005-04-06 00:23:54 +00001840 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001841 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001842 if (isCustom) {
1843 Tmp1 = TLI.LowerOperation(Result, DAG);
1844 if (Tmp1.Val) Result = Tmp1;
1845 }
Nate Begeman20b7d2a2005-04-06 00:23:54 +00001846 break;
Chris Lattner81914422005-08-03 20:31:37 +00001847 case TargetLowering::Expand:
1848 if (MVT::isInteger(Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001849 // X % Y -> X-X/Y*Y
Chris Lattner81914422005-08-03 20:31:37 +00001850 MVT::ValueType VT = Node->getValueType(0);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001851 unsigned Opc = Node->getOpcode() == ISD::UREM ? ISD::UDIV : ISD::SDIV;
Chris Lattner81914422005-08-03 20:31:37 +00001852 Result = DAG.getNode(Opc, VT, Tmp1, Tmp2);
1853 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
1854 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
1855 } else {
1856 // Floating point mod -> fmod libcall.
1857 const char *FnName = Node->getValueType(0) == MVT::f32 ? "fmodf":"fmod";
1858 SDOperand Dummy;
Chris Lattner10f67752006-01-28 04:28:26 +00001859 Result = ExpandLibCall(FnName, Node, Dummy);
Nate Begeman20b7d2a2005-04-06 00:23:54 +00001860 }
1861 break;
1862 }
1863 break;
Nate Begemane74795c2006-01-25 18:21:52 +00001864 case ISD::VAARG: {
1865 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1866 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
1867
Chris Lattner364b89a2006-01-28 07:42:08 +00001868 MVT::ValueType VT = Node->getValueType(0);
Nate Begemane74795c2006-01-25 18:21:52 +00001869 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
1870 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001871 case TargetLowering::Custom:
1872 isCustom = true;
1873 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00001874 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001875 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1876 Result = Result.getValue(0);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001877 Tmp1 = Result.getValue(1);
1878
1879 if (isCustom) {
1880 Tmp2 = TLI.LowerOperation(Result, DAG);
1881 if (Tmp2.Val) {
1882 Result = LegalizeOp(Tmp2);
1883 Tmp1 = LegalizeOp(Tmp2.getValue(1));
1884 }
1885 }
Nate Begemane74795c2006-01-25 18:21:52 +00001886 break;
1887 case TargetLowering::Expand: {
1888 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
1889 Node->getOperand(2));
1890 // Increment the pointer, VAList, to the next vaarg
1891 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
1892 DAG.getConstant(MVT::getSizeInBits(VT)/8,
1893 TLI.getPointerTy()));
1894 // Store the incremented VAList to the legalized pointer
1895 Tmp3 = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), Tmp3, Tmp2,
1896 Node->getOperand(2));
1897 // Load the actual argument out of the pointer VAList
1898 Result = DAG.getLoad(VT, Tmp3, VAList, DAG.getSrcValue(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001899 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemane74795c2006-01-25 18:21:52 +00001900 Result = LegalizeOp(Result);
1901 break;
1902 }
1903 }
1904 // Since VAARG produces two values, make sure to remember that we
1905 // legalized both of them.
1906 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001907 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
1908 return Op.ResNo ? Tmp1 : Result;
Nate Begemane74795c2006-01-25 18:21:52 +00001909 }
1910
1911 case ISD::VACOPY:
1912 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1913 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
1914 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
1915
1916 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
1917 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001918 case TargetLowering::Custom:
1919 isCustom = true;
1920 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00001921 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001922 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
1923 Node->getOperand(3), Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001924 if (isCustom) {
1925 Tmp1 = TLI.LowerOperation(Result, DAG);
1926 if (Tmp1.Val) Result = Tmp1;
1927 }
Nate Begemane74795c2006-01-25 18:21:52 +00001928 break;
1929 case TargetLowering::Expand:
1930 // This defaults to loading a pointer from the input and storing it to the
1931 // output, returning the chain.
1932 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, Node->getOperand(3));
1933 Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp4.getValue(1), Tmp4, Tmp2,
1934 Node->getOperand(4));
Nate Begemane74795c2006-01-25 18:21:52 +00001935 break;
1936 }
1937 break;
1938
1939 case ISD::VAEND:
1940 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1941 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
1942
1943 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
1944 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001945 case TargetLowering::Custom:
1946 isCustom = true;
1947 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00001948 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001949 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001950 if (isCustom) {
1951 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
1952 if (Tmp1.Val) Result = Tmp1;
1953 }
Nate Begemane74795c2006-01-25 18:21:52 +00001954 break;
1955 case TargetLowering::Expand:
1956 Result = Tmp1; // Default to a no-op, return the chain
1957 break;
1958 }
1959 break;
1960
1961 case ISD::VASTART:
1962 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1963 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
1964
Chris Lattnerd02b0542006-01-28 10:58:55 +00001965 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1966
Nate Begemane74795c2006-01-25 18:21:52 +00001967 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
1968 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001969 case TargetLowering::Legal: break;
1970 case TargetLowering::Custom:
1971 Tmp1 = TLI.LowerOperation(Result, DAG);
1972 if (Tmp1.Val) Result = Tmp1;
Nate Begemane74795c2006-01-25 18:21:52 +00001973 break;
1974 }
1975 break;
1976
Nate Begeman1b8121b2006-01-11 21:21:00 +00001977 case ISD::ROTL:
1978 case ISD::ROTR:
1979 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
1980 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001981
1982 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
1983 "Cannot handle this yet!");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001984 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Nate Begeman1b8121b2006-01-11 21:21:00 +00001985 break;
1986
Nate Begeman2fba8a32006-01-14 03:14:10 +00001987 case ISD::BSWAP:
1988 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
1989 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001990 case TargetLowering::Custom:
1991 assert(0 && "Cannot custom legalize this yet!");
1992 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001993 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001994 break;
1995 case TargetLowering::Promote: {
1996 MVT::ValueType OVT = Tmp1.getValueType();
1997 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1998 unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
Nate Begeman2fba8a32006-01-14 03:14:10 +00001999
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002000 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2001 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2002 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2003 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2004 break;
2005 }
2006 case TargetLowering::Expand:
2007 Result = ExpandBSWAP(Tmp1);
2008 break;
Nate Begeman2fba8a32006-01-14 03:14:10 +00002009 }
2010 break;
2011
Andrew Lenharth5e177822005-05-03 17:19:30 +00002012 case ISD::CTPOP:
2013 case ISD::CTTZ:
2014 case ISD::CTLZ:
2015 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2016 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002017 case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
Andrew Lenharth5e177822005-05-03 17:19:30 +00002018 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002019 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth5e177822005-05-03 17:19:30 +00002020 break;
2021 case TargetLowering::Promote: {
2022 MVT::ValueType OVT = Tmp1.getValueType();
2023 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner55e9cde2005-05-11 04:51:16 +00002024
2025 // Zero extend the argument.
Andrew Lenharth5e177822005-05-03 17:19:30 +00002026 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2027 // Perform the larger operation, then subtract if needed.
2028 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002029 switch (Node->getOpcode()) {
Andrew Lenharth5e177822005-05-03 17:19:30 +00002030 case ISD::CTPOP:
2031 Result = Tmp1;
2032 break;
2033 case ISD::CTTZ:
2034 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattnerd47675e2005-08-09 20:20:18 +00002035 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2036 DAG.getConstant(getSizeInBits(NVT), NVT),
2037 ISD::SETEQ);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002038 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Andrew Lenharth5e177822005-05-03 17:19:30 +00002039 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2040 break;
2041 case ISD::CTLZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002042 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002043 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2044 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharth5e177822005-05-03 17:19:30 +00002045 getSizeInBits(OVT), NVT));
2046 break;
2047 }
2048 break;
2049 }
Andrew Lenharth5e177822005-05-03 17:19:30 +00002050 case TargetLowering::Expand:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002051 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth5e177822005-05-03 17:19:30 +00002052 break;
2053 }
2054 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002055
Chris Lattner13fe99c2005-04-02 05:00:07 +00002056 // Unary operators
2057 case ISD::FABS:
2058 case ISD::FNEG:
Chris Lattner9d6fa982005-04-28 21:44:33 +00002059 case ISD::FSQRT:
2060 case ISD::FSIN:
2061 case ISD::FCOS:
Chris Lattner13fe99c2005-04-02 05:00:07 +00002062 Tmp1 = LegalizeOp(Node->getOperand(0));
2063 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002064 case TargetLowering::Promote:
2065 case TargetLowering::Custom:
Evan Cheng2443ab92006-01-31 18:14:25 +00002066 isCustom = true;
2067 // FALLTHROUGH
Chris Lattner13fe99c2005-04-02 05:00:07 +00002068 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002069 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng2443ab92006-01-31 18:14:25 +00002070 if (isCustom) {
2071 Tmp1 = TLI.LowerOperation(Result, DAG);
2072 if (Tmp1.Val) Result = Tmp1;
2073 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002074 break;
Chris Lattner13fe99c2005-04-02 05:00:07 +00002075 case TargetLowering::Expand:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002076 switch (Node->getOpcode()) {
2077 default: assert(0 && "Unreachable!");
2078 case ISD::FNEG:
Chris Lattner13fe99c2005-04-02 05:00:07 +00002079 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2080 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002081 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattner80026402005-04-30 04:43:14 +00002082 break;
Chris Lattner80026402005-04-30 04:43:14 +00002083 case ISD::FABS: {
Chris Lattnera0c72cf2005-04-02 05:26:37 +00002084 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2085 MVT::ValueType VT = Node->getValueType(0);
2086 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattnerd47675e2005-08-09 20:20:18 +00002087 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattnera0c72cf2005-04-02 05:26:37 +00002088 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2089 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattner80026402005-04-30 04:43:14 +00002090 break;
2091 }
2092 case ISD::FSQRT:
2093 case ISD::FSIN:
2094 case ISD::FCOS: {
2095 MVT::ValueType VT = Node->getValueType(0);
Chris Lattner80026402005-04-30 04:43:14 +00002096 const char *FnName = 0;
2097 switch(Node->getOpcode()) {
2098 case ISD::FSQRT: FnName = VT == MVT::f32 ? "sqrtf" : "sqrt"; break;
2099 case ISD::FSIN: FnName = VT == MVT::f32 ? "sinf" : "sin"; break;
2100 case ISD::FCOS: FnName = VT == MVT::f32 ? "cosf" : "cos"; break;
2101 default: assert(0 && "Unreachable!");
2102 }
Nate Begeman77558da2005-08-04 21:43:28 +00002103 SDOperand Dummy;
Chris Lattner10f67752006-01-28 04:28:26 +00002104 Result = ExpandLibCall(FnName, Node, Dummy);
Chris Lattner80026402005-04-30 04:43:14 +00002105 break;
2106 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002107 }
2108 break;
2109 }
2110 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00002111
2112 case ISD::BIT_CONVERT:
Chris Lattner763dfd72006-01-23 07:30:46 +00002113 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner36e663d2005-12-23 00:16:34 +00002114 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Chris Lattner763dfd72006-01-23 07:30:46 +00002115 } else {
Chris Lattner36e663d2005-12-23 00:16:34 +00002116 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2117 Node->getOperand(0).getValueType())) {
2118 default: assert(0 && "Unknown operation action!");
2119 case TargetLowering::Expand:
2120 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2121 break;
2122 case TargetLowering::Legal:
2123 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002124 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner36e663d2005-12-23 00:16:34 +00002125 break;
2126 }
2127 }
2128 break;
Chris Lattner13fe99c2005-04-02 05:00:07 +00002129 // Conversion operators. The source and destination have different types.
Chris Lattner2a6db3c2005-01-08 08:08:56 +00002130 case ISD::SINT_TO_FP:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002131 case ISD::UINT_TO_FP: {
2132 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattnerdc750592005-01-07 07:47:09 +00002133 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2134 case Legal:
Jeff Cohen546fd592005-07-30 18:33:25 +00002135 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002136 Node->getOperand(0).getValueType())) {
2137 default: assert(0 && "Unknown operation action!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002138 case TargetLowering::Custom:
2139 isCustom = true;
2140 // FALLTHROUGH
2141 case TargetLowering::Legal:
2142 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002143 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002144 if (isCustom) {
2145 Tmp1 = TLI.LowerOperation(Result, DAG);
2146 if (Tmp1.Val) Result = Tmp1;
2147 }
2148 break;
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002149 case TargetLowering::Expand:
Jim Laskeyf2516a92005-08-17 00:39:29 +00002150 Result = ExpandLegalINT_TO_FP(isSigned,
2151 LegalizeOp(Node->getOperand(0)),
2152 Node->getValueType(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002153 break;
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002154 case TargetLowering::Promote:
2155 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2156 Node->getValueType(0),
2157 isSigned);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002158 break;
Andrew Lenharth8d17c702005-11-30 06:43:03 +00002159 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002160 break;
Chris Lattnera65a2f02005-01-07 22:37:48 +00002161 case Expand:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002162 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2163 Node->getValueType(0), Node->getOperand(0));
2164 break;
2165 case Promote:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002166 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002167 if (isSigned) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002168 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2169 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002170 } else {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002171 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2172 Node->getOperand(0).getValueType());
Chris Lattneraac464e2005-01-21 06:05:23 +00002173 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002174 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2175 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002176 break;
2177 }
2178 break;
2179 }
2180 case ISD::TRUNCATE:
2181 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2182 case Legal:
2183 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002184 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002185 break;
2186 case Expand:
2187 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2188
2189 // Since the result is legal, we should just be able to truncate the low
2190 // part of the source.
2191 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2192 break;
2193 case Promote:
2194 Result = PromoteOp(Node->getOperand(0));
2195 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2196 break;
2197 }
2198 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00002199
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002200 case ISD::FP_TO_SINT:
2201 case ISD::FP_TO_UINT:
2202 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2203 case Legal:
Chris Lattnerf59b2da2005-07-30 00:04:12 +00002204 Tmp1 = LegalizeOp(Node->getOperand(0));
2205
Chris Lattner44fe26f2005-07-29 00:11:56 +00002206 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2207 default: assert(0 && "Unknown operation action!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002208 case TargetLowering::Custom:
2209 isCustom = true;
2210 // FALLTHROUGH
2211 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002212 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002213 if (isCustom) {
2214 Tmp1 = TLI.LowerOperation(Result, DAG);
2215 if (Tmp1.Val) Result = Tmp1;
2216 }
2217 break;
2218 case TargetLowering::Promote:
2219 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2220 Node->getOpcode() == ISD::FP_TO_SINT);
2221 break;
Chris Lattner44fe26f2005-07-29 00:11:56 +00002222 case TargetLowering::Expand:
Nate Begeman36853ee2005-08-14 01:20:53 +00002223 if (Node->getOpcode() == ISD::FP_TO_UINT) {
2224 SDOperand True, False;
2225 MVT::ValueType VT = Node->getOperand(0).getValueType();
2226 MVT::ValueType NVT = Node->getValueType(0);
2227 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2228 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2229 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2230 Node->getOperand(0), Tmp2, ISD::SETLT);
2231 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2232 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner6f3b5772005-09-28 22:28:18 +00002233 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begeman36853ee2005-08-14 01:20:53 +00002234 Tmp2));
2235 False = DAG.getNode(ISD::XOR, NVT, False,
2236 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002237 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2238 break;
Nate Begeman36853ee2005-08-14 01:20:53 +00002239 } else {
2240 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2241 }
2242 break;
Chris Lattnerdff50ca2005-08-26 00:14:16 +00002243 }
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002244 break;
2245 case Expand:
2246 assert(0 && "Shouldn't need to expand other operators here!");
2247 case Promote:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002248 Tmp1 = PromoteOp(Node->getOperand(0));
2249 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2250 Result = LegalizeOp(Result);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002251 break;
2252 }
2253 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00002254
Chris Lattner7753f172005-09-02 00:18:10 +00002255 case ISD::ANY_EXTEND:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002256 case ISD::ZERO_EXTEND:
2257 case ISD::SIGN_EXTEND:
2258 case ISD::FP_EXTEND:
2259 case ISD::FP_ROUND:
2260 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002261 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002262 case Legal:
2263 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002264 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00002265 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002266 case Promote:
2267 switch (Node->getOpcode()) {
Chris Lattner7753f172005-09-02 00:18:10 +00002268 case ISD::ANY_EXTEND:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002269 Tmp1 = PromoteOp(Node->getOperand(0));
2270 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner7753f172005-09-02 00:18:10 +00002271 break;
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002272 case ISD::ZERO_EXTEND:
2273 Result = PromoteOp(Node->getOperand(0));
Chris Lattner7753f172005-09-02 00:18:10 +00002274 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner0e852af2005-04-13 02:38:47 +00002275 Result = DAG.getZeroExtendInReg(Result,
2276 Node->getOperand(0).getValueType());
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002277 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002278 case ISD::SIGN_EXTEND:
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002279 Result = PromoteOp(Node->getOperand(0));
Chris Lattner7753f172005-09-02 00:18:10 +00002280 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002281 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00002282 Result,
2283 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002284 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002285 case ISD::FP_EXTEND:
Chris Lattner71d7f6e2005-01-16 00:38:00 +00002286 Result = PromoteOp(Node->getOperand(0));
2287 if (Result.getValueType() != Op.getValueType())
2288 // Dynamically dead while we have only 2 FP types.
2289 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
2290 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002291 case ISD::FP_ROUND:
Chris Lattner3ba56b32005-01-16 05:06:12 +00002292 Result = PromoteOp(Node->getOperand(0));
2293 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
2294 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002295 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002296 }
2297 break;
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002298 case ISD::FP_ROUND_INREG:
Chris Lattner0e852af2005-04-13 02:38:47 +00002299 case ISD::SIGN_EXTEND_INREG: {
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002300 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0b6ba902005-07-10 00:07:11 +00002301 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner99222f72005-01-15 07:15:18 +00002302
2303 // If this operation is not supported, convert it to a shl/shr or load/store
2304 // pair.
Chris Lattner3c0dd462005-01-16 07:29:19 +00002305 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
2306 default: assert(0 && "This action not supported for this op yet!");
2307 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002308 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner3c0dd462005-01-16 07:29:19 +00002309 break;
2310 case TargetLowering::Expand:
Chris Lattner99222f72005-01-15 07:15:18 +00002311 // If this is an integer extend and shifts are supported, do that.
Chris Lattner0e852af2005-04-13 02:38:47 +00002312 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner99222f72005-01-15 07:15:18 +00002313 // NOTE: we could fall back on load/store here too for targets without
2314 // SAR. However, it is doubtful that any exist.
2315 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
2316 MVT::getSizeInBits(ExtraVT);
Chris Lattnerec218372005-01-22 00:31:52 +00002317 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner99222f72005-01-15 07:15:18 +00002318 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
2319 Node->getOperand(0), ShiftCst);
2320 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
2321 Result, ShiftCst);
2322 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
2323 // The only way we can lower this is to turn it into a STORETRUNC,
2324 // EXTLOAD pair, targetting a temporary location (a stack slot).
2325
2326 // NOTE: there is a choice here between constantly creating new stack
2327 // slots and always reusing the same one. We currently always create
2328 // new ones, as reuse may inhibit scheduling.
2329 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
2330 unsigned TySize = (unsigned)TLI.getTargetData().getTypeSize(Ty);
2331 unsigned Align = TLI.getTargetData().getTypeAlignment(Ty);
2332 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukman835702a2005-04-21 22:36:52 +00002333 int SSFI =
Chris Lattner99222f72005-01-15 07:15:18 +00002334 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
2335 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
2336 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, DAG.getEntryNode(),
Chris Lattner5385db52005-05-09 20:23:03 +00002337 Node->getOperand(0), StackSlot,
Chris Lattner36db1ed2005-07-10 00:29:18 +00002338 DAG.getSrcValue(NULL), DAG.getValueType(ExtraVT));
Chris Lattnerde0a4b12005-07-10 01:55:33 +00002339 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2340 Result, StackSlot, DAG.getSrcValue(NULL),
2341 ExtraVT);
Chris Lattner99222f72005-01-15 07:15:18 +00002342 } else {
2343 assert(0 && "Unknown op");
2344 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002345 break;
Chris Lattner99222f72005-01-15 07:15:18 +00002346 }
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002347 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00002348 }
Chris Lattner99222f72005-01-15 07:15:18 +00002349 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002350
2351 // Make sure that the generated code is itself legal.
2352 if (Result != Op)
2353 Result = LegalizeOp(Result);
Chris Lattnerdc750592005-01-07 07:47:09 +00002354
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002355 // Note that LegalizeOp may be reentered even from single-use nodes, which
2356 // means that we always must cache transformed nodes.
2357 AddLegalizedOperand(Op, Result);
Chris Lattnerdc750592005-01-07 07:47:09 +00002358 return Result;
2359}
2360
Chris Lattner4d978642005-01-15 22:16:26 +00002361/// PromoteOp - Given an operation that produces a value in an invalid type,
2362/// promote it to compute the value into a larger type. The produced value will
2363/// have the correct bits for the low portion of the register, but no guarantee
2364/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002365SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
2366 MVT::ValueType VT = Op.getValueType();
Chris Lattner87a769c2005-01-16 01:11:45 +00002367 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002368 assert(getTypeAction(VT) == Promote &&
2369 "Caller should expand or legalize operands that are not promotable!");
2370 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
2371 "Cannot promote to smaller type!");
2372
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002373 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002374 SDOperand Result;
2375 SDNode *Node = Op.Val;
2376
Chris Lattner1a570f12005-09-02 20:32:45 +00002377 std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
2378 if (I != PromotedNodes.end()) return I->second;
Chris Lattnerb5a78e02005-05-12 16:53:42 +00002379
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002380 switch (Node->getOpcode()) {
Chris Lattner33182322005-08-16 21:55:35 +00002381 case ISD::CopyFromReg:
2382 assert(0 && "CopyFromReg must be legal!");
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002383 default:
2384 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
2385 assert(0 && "Do not know how to promote this operator!");
2386 abort();
Nate Begemancda9aa72005-04-01 22:34:39 +00002387 case ISD::UNDEF:
2388 Result = DAG.getNode(ISD::UNDEF, NVT);
2389 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002390 case ISD::Constant:
Chris Lattner9a4ad482005-08-30 16:56:19 +00002391 if (VT != MVT::i1)
2392 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
2393 else
2394 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002395 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
2396 break;
2397 case ISD::ConstantFP:
2398 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
2399 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
2400 break;
Chris Lattner9f2c4a52005-01-18 17:54:55 +00002401
Chris Lattner2cb338d2005-01-18 02:59:52 +00002402 case ISD::SETCC:
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00002403 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattnerd47675e2005-08-09 20:20:18 +00002404 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
2405 Node->getOperand(1), Node->getOperand(2));
Chris Lattner2cb338d2005-01-18 02:59:52 +00002406 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002407
2408 case ISD::TRUNCATE:
2409 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2410 case Legal:
2411 Result = LegalizeOp(Node->getOperand(0));
2412 assert(Result.getValueType() >= NVT &&
2413 "This truncation doesn't make sense!");
2414 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
2415 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
2416 break;
Chris Lattnerbf8c1ad2005-01-28 22:52:50 +00002417 case Promote:
2418 // The truncation is not required, because we don't guarantee anything
2419 // about high bits anyway.
2420 Result = PromoteOp(Node->getOperand(0));
2421 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002422 case Expand:
Nate Begemancc00a7c2005-04-04 00:57:08 +00002423 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2424 // Truncate the low part of the expanded value to the result type
Chris Lattner4398daf2005-08-01 18:16:37 +00002425 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002426 }
2427 break;
Chris Lattner4d978642005-01-15 22:16:26 +00002428 case ISD::SIGN_EXTEND:
2429 case ISD::ZERO_EXTEND:
Chris Lattner7753f172005-09-02 00:18:10 +00002430 case ISD::ANY_EXTEND:
Chris Lattner4d978642005-01-15 22:16:26 +00002431 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2432 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
2433 case Legal:
2434 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002435 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner4d978642005-01-15 22:16:26 +00002436 break;
2437 case Promote:
2438 // Promote the reg if it's smaller.
2439 Result = PromoteOp(Node->getOperand(0));
2440 // The high bits are not guaranteed to be anything. Insert an extend.
2441 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner05596912005-02-04 18:39:19 +00002442 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner0b6ba902005-07-10 00:07:11 +00002443 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner7753f172005-09-02 00:18:10 +00002444 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner0e852af2005-04-13 02:38:47 +00002445 Result = DAG.getZeroExtendInReg(Result,
2446 Node->getOperand(0).getValueType());
Chris Lattner4d978642005-01-15 22:16:26 +00002447 break;
2448 }
2449 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00002450 case ISD::BIT_CONVERT:
2451 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2452 Result = PromoteOp(Result);
2453 break;
2454
Chris Lattner4d978642005-01-15 22:16:26 +00002455 case ISD::FP_EXTEND:
2456 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
2457 case ISD::FP_ROUND:
2458 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2459 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
2460 case Promote: assert(0 && "Unreachable with 2 FP types!");
2461 case Legal:
2462 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002463 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner0b6ba902005-07-10 00:07:11 +00002464 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00002465 break;
2466 }
2467 break;
2468
2469 case ISD::SINT_TO_FP:
2470 case ISD::UINT_TO_FP:
2471 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2472 case Legal:
Chris Lattneraac464e2005-01-21 06:05:23 +00002473 // No extra round required here.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002474 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner4d978642005-01-15 22:16:26 +00002475 break;
2476
2477 case Promote:
2478 Result = PromoteOp(Node->getOperand(0));
2479 if (Node->getOpcode() == ISD::SINT_TO_FP)
2480 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00002481 Result,
2482 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner4d978642005-01-15 22:16:26 +00002483 else
Chris Lattner0e852af2005-04-13 02:38:47 +00002484 Result = DAG.getZeroExtendInReg(Result,
2485 Node->getOperand(0).getValueType());
Chris Lattneraac464e2005-01-21 06:05:23 +00002486 // No extra round required here.
2487 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner4d978642005-01-15 22:16:26 +00002488 break;
2489 case Expand:
Chris Lattneraac464e2005-01-21 06:05:23 +00002490 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
2491 Node->getOperand(0));
Chris Lattneraac464e2005-01-21 06:05:23 +00002492 // Round if we cannot tolerate excess precision.
2493 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00002494 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2495 DAG.getValueType(VT));
Chris Lattneraac464e2005-01-21 06:05:23 +00002496 break;
Chris Lattner4d978642005-01-15 22:16:26 +00002497 }
Chris Lattner4d978642005-01-15 22:16:26 +00002498 break;
2499
Chris Lattner268d4572005-12-09 17:32:47 +00002500 case ISD::SIGN_EXTEND_INREG:
2501 Result = PromoteOp(Node->getOperand(0));
2502 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
2503 Node->getOperand(1));
2504 break;
Chris Lattner4d978642005-01-15 22:16:26 +00002505 case ISD::FP_TO_SINT:
2506 case ISD::FP_TO_UINT:
2507 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2508 case Legal:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002509 Tmp1 = Node->getOperand(0);
Chris Lattner4d978642005-01-15 22:16:26 +00002510 break;
2511 case Promote:
2512 // The input result is prerounded, so we don't have to do anything
2513 // special.
2514 Tmp1 = PromoteOp(Node->getOperand(0));
2515 break;
2516 case Expand:
2517 assert(0 && "not implemented");
2518 }
Nate Begeman36853ee2005-08-14 01:20:53 +00002519 // If we're promoting a UINT to a larger size, check to see if the new node
2520 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
2521 // we can use that instead. This allows us to generate better code for
2522 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
2523 // legal, such as PowerPC.
2524 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00002525 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemand8f2a1a2005-10-25 23:47:25 +00002526 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
2527 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begeman36853ee2005-08-14 01:20:53 +00002528 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
2529 } else {
2530 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
2531 }
Chris Lattner4d978642005-01-15 22:16:26 +00002532 break;
2533
Chris Lattner13fe99c2005-04-02 05:00:07 +00002534 case ISD::FABS:
2535 case ISD::FNEG:
2536 Tmp1 = PromoteOp(Node->getOperand(0));
2537 assert(Tmp1.getValueType() == NVT);
2538 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
2539 // NOTE: we do not have to do any extra rounding here for
2540 // NoExcessFPPrecision, because we know the input will have the appropriate
2541 // precision, and these operations don't modify precision at all.
2542 break;
2543
Chris Lattner9d6fa982005-04-28 21:44:33 +00002544 case ISD::FSQRT:
2545 case ISD::FSIN:
2546 case ISD::FCOS:
2547 Tmp1 = PromoteOp(Node->getOperand(0));
2548 assert(Tmp1.getValueType() == NVT);
2549 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002550 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00002551 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2552 DAG.getValueType(VT));
Chris Lattner9d6fa982005-04-28 21:44:33 +00002553 break;
2554
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002555 case ISD::AND:
2556 case ISD::OR:
2557 case ISD::XOR:
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002558 case ISD::ADD:
Chris Lattner4d978642005-01-15 22:16:26 +00002559 case ISD::SUB:
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002560 case ISD::MUL:
2561 // The input may have strange things in the top bits of the registers, but
Chris Lattner6f3b5772005-09-28 22:28:18 +00002562 // these operations don't care. They may have weird bits going out, but
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002563 // that too is okay if they are integer operations.
2564 Tmp1 = PromoteOp(Node->getOperand(0));
2565 Tmp2 = PromoteOp(Node->getOperand(1));
2566 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
2567 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner6f3b5772005-09-28 22:28:18 +00002568 break;
2569 case ISD::FADD:
2570 case ISD::FSUB:
2571 case ISD::FMUL:
Chris Lattner6f3b5772005-09-28 22:28:18 +00002572 Tmp1 = PromoteOp(Node->getOperand(0));
2573 Tmp2 = PromoteOp(Node->getOperand(1));
2574 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
2575 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2576
2577 // Floating point operations will give excess precision that we may not be
2578 // able to tolerate. If we DO allow excess precision, just leave it,
2579 // otherwise excise it.
Chris Lattner4d978642005-01-15 22:16:26 +00002580 // FIXME: Why would we need to round FP ops more than integer ones?
2581 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner6f3b5772005-09-28 22:28:18 +00002582 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00002583 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2584 DAG.getValueType(VT));
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00002585 break;
2586
Chris Lattner4d978642005-01-15 22:16:26 +00002587 case ISD::SDIV:
2588 case ISD::SREM:
2589 // These operators require that their input be sign extended.
2590 Tmp1 = PromoteOp(Node->getOperand(0));
2591 Tmp2 = PromoteOp(Node->getOperand(1));
2592 if (MVT::isInteger(NVT)) {
Chris Lattner0b6ba902005-07-10 00:07:11 +00002593 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
2594 DAG.getValueType(VT));
2595 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
2596 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00002597 }
2598 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2599
2600 // Perform FP_ROUND: this is probably overly pessimistic.
2601 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00002602 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2603 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00002604 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00002605 case ISD::FDIV:
2606 case ISD::FREM:
2607 // These operators require that their input be fp extended.
2608 Tmp1 = PromoteOp(Node->getOperand(0));
2609 Tmp2 = PromoteOp(Node->getOperand(1));
2610 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2611
2612 // Perform FP_ROUND: this is probably overly pessimistic.
2613 if (NoExcessFPPrecision)
2614 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2615 DAG.getValueType(VT));
2616 break;
Chris Lattner4d978642005-01-15 22:16:26 +00002617
2618 case ISD::UDIV:
2619 case ISD::UREM:
2620 // These operators require that their input be zero extended.
2621 Tmp1 = PromoteOp(Node->getOperand(0));
2622 Tmp2 = PromoteOp(Node->getOperand(1));
2623 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner0e852af2005-04-13 02:38:47 +00002624 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
2625 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner4d978642005-01-15 22:16:26 +00002626 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2627 break;
2628
2629 case ISD::SHL:
2630 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002631 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00002632 break;
2633 case ISD::SRA:
2634 // The input value must be properly sign extended.
2635 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0b6ba902005-07-10 00:07:11 +00002636 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
2637 DAG.getValueType(VT));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002638 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00002639 break;
2640 case ISD::SRL:
2641 // The input value must be properly zero extended.
2642 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0e852af2005-04-13 02:38:47 +00002643 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002644 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00002645 break;
Nate Begeman595ec732006-01-28 03:14:31 +00002646
2647 case ISD::VAARG:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002648 Tmp1 = Node->getOperand(0); // Get the chain.
2649 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman595ec732006-01-28 03:14:31 +00002650 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
2651 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
2652 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
2653 } else {
2654 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
2655 Node->getOperand(2));
2656 // Increment the pointer, VAList, to the next vaarg
2657 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2658 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2659 TLI.getPointerTy()));
2660 // Store the incremented VAList to the legalized pointer
2661 Tmp3 = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), Tmp3, Tmp2,
2662 Node->getOperand(2));
2663 // Load the actual argument out of the pointer VAList
2664 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList,
2665 DAG.getSrcValue(0), VT);
2666 }
2667 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002668 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman595ec732006-01-28 03:14:31 +00002669 break;
2670
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002671 case ISD::LOAD:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002672 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Node->getOperand(0),
2673 Node->getOperand(1), Node->getOperand(2), VT);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002674 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002675 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002676 break;
Chris Lattnerd23f4b72005-10-13 20:07:41 +00002677 case ISD::SEXTLOAD:
2678 case ISD::ZEXTLOAD:
2679 case ISD::EXTLOAD:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002680 Result = DAG.getExtLoad(Node->getOpcode(), NVT, Node->getOperand(0),
2681 Node->getOperand(1), Node->getOperand(2),
Chris Lattnerb986f472005-10-15 20:24:07 +00002682 cast<VTSDNode>(Node->getOperand(3))->getVT());
Chris Lattnerd23f4b72005-10-13 20:07:41 +00002683 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002684 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattnerd23f4b72005-10-13 20:07:41 +00002685 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002686 case ISD::SELECT:
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002687 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
2688 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002689 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002690 break;
Nate Begemane5b86d72005-08-10 20:51:12 +00002691 case ISD::SELECT_CC:
2692 Tmp2 = PromoteOp(Node->getOperand(2)); // True
2693 Tmp3 = PromoteOp(Node->getOperand(3)); // False
2694 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002695 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begemane5b86d72005-08-10 20:51:12 +00002696 break;
Nate Begeman2fba8a32006-01-14 03:14:10 +00002697 case ISD::BSWAP:
2698 Tmp1 = Node->getOperand(0);
2699 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2700 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2701 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2702 DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
2703 TLI.getShiftAmountTy()));
2704 break;
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00002705 case ISD::CTPOP:
2706 case ISD::CTTZ:
2707 case ISD::CTLZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002708 // Zero extend the argument
2709 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00002710 // Perform the larger operation, then subtract if needed.
2711 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002712 switch(Node->getOpcode()) {
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00002713 case ISD::CTPOP:
2714 Result = Tmp1;
2715 break;
2716 case ISD::CTTZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002717 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begeman36853ee2005-08-14 01:20:53 +00002718 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Chris Lattnerd47675e2005-08-09 20:20:18 +00002719 DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002720 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002721 DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00002722 break;
2723 case ISD::CTLZ:
2724 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002725 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2726 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00002727 getSizeInBits(VT), NVT));
2728 break;
2729 }
2730 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002731 }
2732
2733 assert(Result.Val && "Didn't set a result!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002734
2735 // Make sure the result is itself legal.
2736 Result = LegalizeOp(Result);
2737
2738 // Remember that we promoted this!
Chris Lattner1f2c9d82005-01-15 05:21:40 +00002739 AddPromotedOperand(Op, Result);
2740 return Result;
2741}
Chris Lattnerdc750592005-01-07 07:47:09 +00002742
Nate Begeman7e7f4392006-02-01 07:19:44 +00002743/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
2744/// with condition CC on the current target. This usually involves legalizing
2745/// or promoting the arguments. In the case where LHS and RHS must be expanded,
2746/// there may be no choice but to create a new SetCC node to represent the
2747/// legalized value of setcc lhs, rhs. In this case, the value is returned in
2748/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
2749void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
2750 SDOperand &RHS,
2751 SDOperand &CC) {
2752 SDOperand Tmp1, Tmp2, Result;
2753
2754 switch (getTypeAction(LHS.getValueType())) {
2755 case Legal:
2756 Tmp1 = LegalizeOp(LHS); // LHS
2757 Tmp2 = LegalizeOp(RHS); // RHS
2758 break;
2759 case Promote:
2760 Tmp1 = PromoteOp(LHS); // LHS
2761 Tmp2 = PromoteOp(RHS); // RHS
2762
2763 // If this is an FP compare, the operands have already been extended.
2764 if (MVT::isInteger(LHS.getValueType())) {
2765 MVT::ValueType VT = LHS.getValueType();
2766 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
2767
2768 // Otherwise, we have to insert explicit sign or zero extends. Note
2769 // that we could insert sign extends for ALL conditions, but zero extend
2770 // is cheaper on many machines (an AND instead of two shifts), so prefer
2771 // it.
2772 switch (cast<CondCodeSDNode>(CC)->get()) {
2773 default: assert(0 && "Unknown integer comparison!");
2774 case ISD::SETEQ:
2775 case ISD::SETNE:
2776 case ISD::SETUGE:
2777 case ISD::SETUGT:
2778 case ISD::SETULE:
2779 case ISD::SETULT:
2780 // ALL of these operations will work if we either sign or zero extend
2781 // the operands (including the unsigned comparisons!). Zero extend is
2782 // usually a simpler/cheaper operation, so prefer it.
2783 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
2784 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
2785 break;
2786 case ISD::SETGE:
2787 case ISD::SETGT:
2788 case ISD::SETLT:
2789 case ISD::SETLE:
2790 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
2791 DAG.getValueType(VT));
2792 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
2793 DAG.getValueType(VT));
2794 break;
2795 }
2796 }
2797 break;
2798 case Expand:
2799 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
2800 ExpandOp(LHS, LHSLo, LHSHi);
2801 ExpandOp(RHS, RHSLo, RHSHi);
2802 switch (cast<CondCodeSDNode>(CC)->get()) {
2803 case ISD::SETEQ:
2804 case ISD::SETNE:
2805 if (RHSLo == RHSHi)
2806 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
2807 if (RHSCST->isAllOnesValue()) {
2808 // Comparison to -1.
2809 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
2810 Tmp2 = RHSLo;
2811 break;
2812 }
2813
2814 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
2815 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
2816 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
2817 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2818 break;
2819 default:
2820 // If this is a comparison of the sign bit, just look at the top part.
2821 // X > -1, x < 0
2822 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
2823 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
2824 CST->getValue() == 0) || // X < 0
2825 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
2826 CST->isAllOnesValue())) { // X > -1
2827 Tmp1 = LHSHi;
2828 Tmp2 = RHSHi;
2829 break;
2830 }
2831
2832 // FIXME: This generated code sucks.
2833 ISD::CondCode LowCC;
2834 switch (cast<CondCodeSDNode>(CC)->get()) {
2835 default: assert(0 && "Unknown integer setcc!");
2836 case ISD::SETLT:
2837 case ISD::SETULT: LowCC = ISD::SETULT; break;
2838 case ISD::SETGT:
2839 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
2840 case ISD::SETLE:
2841 case ISD::SETULE: LowCC = ISD::SETULE; break;
2842 case ISD::SETGE:
2843 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
2844 }
2845
2846 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
2847 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
2848 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
2849
2850 // NOTE: on targets without efficient SELECT of bools, we can always use
2851 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
2852 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
2853 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
2854 Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
2855 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
2856 Result, Tmp1, Tmp2));
2857 Tmp1 = Result;
Nate Begeman01bd9d92006-02-01 19:05:15 +00002858 Tmp2 = SDOperand();
Nate Begeman7e7f4392006-02-01 07:19:44 +00002859 }
2860 }
2861 LHS = Tmp1;
2862 RHS = Tmp2;
2863}
2864
Chris Lattner36e663d2005-12-23 00:16:34 +00002865/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner884eb3ad2005-12-23 00:52:30 +00002866/// The resultant code need not be legal. Note that SrcOp is the input operand
2867/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner36e663d2005-12-23 00:16:34 +00002868SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
2869 SDOperand SrcOp) {
2870 // Create the stack frame object.
2871 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
2872 unsigned ByteSize = MVT::getSizeInBits(DestVT)/8;
Chris Lattner884eb3ad2005-12-23 00:52:30 +00002873 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, ByteSize);
Chris Lattner36e663d2005-12-23 00:16:34 +00002874 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
2875
2876 // Emit a store to the stack slot.
2877 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
Chris Lattner9eae8d52005-12-23 00:50:25 +00002878 SrcOp, FIPtr, DAG.getSrcValue(NULL));
Chris Lattner36e663d2005-12-23 00:16:34 +00002879 // Result is a load from the stack slot.
2880 return DAG.getLoad(DestVT, Store, FIPtr, DAG.getSrcValue(0));
2881}
2882
Chris Lattner4157c412005-04-02 04:00:59 +00002883void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
2884 SDOperand Op, SDOperand Amt,
2885 SDOperand &Lo, SDOperand &Hi) {
2886 // Expand the subcomponents.
2887 SDOperand LHSL, LHSH;
2888 ExpandOp(Op, LHSL, LHSH);
2889
2890 std::vector<SDOperand> Ops;
2891 Ops.push_back(LHSL);
2892 Ops.push_back(LHSH);
2893 Ops.push_back(Amt);
Chris Lattner61d21b12005-08-30 17:21:17 +00002894 std::vector<MVT::ValueType> VTs(2, LHSL.getValueType());
Chris Lattner669e8c22005-05-14 07:25:05 +00002895 Lo = DAG.getNode(NodeOp, VTs, Ops);
Chris Lattner4157c412005-04-02 04:00:59 +00002896 Hi = Lo.getValue(1);
2897}
2898
2899
Chris Lattner2a7f8a92005-01-19 04:19:40 +00002900/// ExpandShift - Try to find a clever way to expand this shift operation out to
2901/// smaller elements. If we can't find a way that is more efficient than a
2902/// libcall on this target, return false. Otherwise, return true with the
2903/// low-parts expanded into Lo and Hi.
2904bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
2905 SDOperand &Lo, SDOperand &Hi) {
2906 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
2907 "This is not a shift!");
Nate Begemanb0674922005-04-06 21:13:14 +00002908
Chris Lattner2a7f8a92005-01-19 04:19:40 +00002909 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanb0674922005-04-06 21:13:14 +00002910 SDOperand ShAmt = LegalizeOp(Amt);
2911 MVT::ValueType ShTy = ShAmt.getValueType();
2912 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
2913 unsigned NVTBits = MVT::getSizeInBits(NVT);
2914
2915 // Handle the case when Amt is an immediate. Other cases are currently broken
2916 // and are disabled.
2917 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
2918 unsigned Cst = CN->getValue();
2919 // Expand the incoming operand to be shifted, so that we have its parts
2920 SDOperand InL, InH;
2921 ExpandOp(Op, InL, InH);
2922 switch(Opc) {
2923 case ISD::SHL:
2924 if (Cst > VTBits) {
2925 Lo = DAG.getConstant(0, NVT);
2926 Hi = DAG.getConstant(0, NVT);
2927 } else if (Cst > NVTBits) {
2928 Lo = DAG.getConstant(0, NVT);
2929 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneredd19702005-04-11 20:08:52 +00002930 } else if (Cst == NVTBits) {
2931 Lo = DAG.getConstant(0, NVT);
2932 Hi = InL;
Nate Begemanb0674922005-04-06 21:13:14 +00002933 } else {
2934 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
2935 Hi = DAG.getNode(ISD::OR, NVT,
2936 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
2937 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
2938 }
2939 return true;
2940 case ISD::SRL:
2941 if (Cst > VTBits) {
2942 Lo = DAG.getConstant(0, NVT);
2943 Hi = DAG.getConstant(0, NVT);
2944 } else if (Cst > NVTBits) {
2945 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
2946 Hi = DAG.getConstant(0, NVT);
Chris Lattneredd19702005-04-11 20:08:52 +00002947 } else if (Cst == NVTBits) {
2948 Lo = InH;
2949 Hi = DAG.getConstant(0, NVT);
Nate Begemanb0674922005-04-06 21:13:14 +00002950 } else {
2951 Lo = DAG.getNode(ISD::OR, NVT,
2952 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
2953 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
2954 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
2955 }
2956 return true;
2957 case ISD::SRA:
2958 if (Cst > VTBits) {
Misha Brukman835702a2005-04-21 22:36:52 +00002959 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00002960 DAG.getConstant(NVTBits-1, ShTy));
2961 } else if (Cst > NVTBits) {
Misha Brukman835702a2005-04-21 22:36:52 +00002962 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00002963 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukman835702a2005-04-21 22:36:52 +00002964 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00002965 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneredd19702005-04-11 20:08:52 +00002966 } else if (Cst == NVTBits) {
2967 Lo = InH;
Misha Brukman835702a2005-04-21 22:36:52 +00002968 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneredd19702005-04-11 20:08:52 +00002969 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanb0674922005-04-06 21:13:14 +00002970 } else {
2971 Lo = DAG.getNode(ISD::OR, NVT,
2972 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
2973 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
2974 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
2975 }
2976 return true;
2977 }
2978 }
Nate Begemanb0674922005-04-06 21:13:14 +00002979 return false;
Chris Lattner2a7f8a92005-01-19 04:19:40 +00002980}
Chris Lattneraac464e2005-01-21 06:05:23 +00002981
Chris Lattner4add7e32005-01-23 04:42:50 +00002982
Chris Lattneraac464e2005-01-21 06:05:23 +00002983// ExpandLibCall - Expand a node into a call to a libcall. If the result value
2984// does not fit into a register, return the lo part and set the hi part to the
2985// by-reg argument. If it does fit into a single register, return the result
2986// and leave the Hi part unset.
2987SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
2988 SDOperand &Hi) {
Chris Lattner462505f2006-02-13 09:18:02 +00002989 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
2990 // The input chain to this libcall is the entry node of the function.
2991 // Legalizing the call will automatically add the previous call to the
2992 // dependence.
2993 SDOperand InChain = DAG.getEntryNode();
2994
Chris Lattneraac464e2005-01-21 06:05:23 +00002995 TargetLowering::ArgListTy Args;
2996 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2997 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
2998 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
2999 Args.push_back(std::make_pair(Node->getOperand(i), ArgTy));
3000 }
3001 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukman835702a2005-04-21 22:36:52 +00003002
Chris Lattner06bbeb62005-05-11 19:02:11 +00003003 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattneraac464e2005-01-21 06:05:23 +00003004 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner06bbeb62005-05-11 19:02:11 +00003005 std::pair<SDOperand,SDOperand> CallInfo =
Chris Lattner2e77db62005-05-13 18:50:42 +00003006 TLI.LowerCallTo(InChain, RetTy, false, CallingConv::C, false,
3007 Callee, Args, DAG);
Chris Lattnera5bf1032005-05-12 04:49:08 +00003008
Chris Lattner462505f2006-02-13 09:18:02 +00003009 // Legalize the call sequence, starting with the chain. This will advance
3010 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
3011 // was added by LowerCallTo (guaranteeing proper serialization of calls).
3012 LegalizeOp(CallInfo.second);
Chris Lattner63022662005-09-02 20:26:58 +00003013 SDOperand Result;
Chris Lattner06bbeb62005-05-11 19:02:11 +00003014 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattneraac464e2005-01-21 06:05:23 +00003015 default: assert(0 && "Unknown thing");
3016 case Legal:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003017 Result = CallInfo.first;
Chris Lattner63022662005-09-02 20:26:58 +00003018 break;
Chris Lattneraac464e2005-01-21 06:05:23 +00003019 case Expand:
Chris Lattner63022662005-09-02 20:26:58 +00003020 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner63022662005-09-02 20:26:58 +00003021 break;
Chris Lattneraac464e2005-01-21 06:05:23 +00003022 }
Chris Lattner63022662005-09-02 20:26:58 +00003023 return Result;
Chris Lattneraac464e2005-01-21 06:05:23 +00003024}
3025
Chris Lattner4add7e32005-01-23 04:42:50 +00003026
Chris Lattneraac464e2005-01-21 06:05:23 +00003027/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
3028/// destination type is legal.
3029SDOperand SelectionDAGLegalize::
3030ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00003031 assert(isTypeLegal(DestTy) && "Destination type is not legal!");
Chris Lattneraac464e2005-01-21 06:05:23 +00003032 assert(getTypeAction(Source.getValueType()) == Expand &&
3033 "This is not an expansion!");
3034 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
3035
Chris Lattner06bbeb62005-05-11 19:02:11 +00003036 if (!isSigned) {
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003037 assert(Source.getValueType() == MVT::i64 &&
3038 "This only works for 64-bit -> FP");
3039 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
3040 // incoming integer is set. To handle this, we dynamically test to see if
3041 // it is set, and, if so, add a fudge factor.
3042 SDOperand Lo, Hi;
3043 ExpandOp(Source, Lo, Hi);
3044
Chris Lattner2a4f7312005-05-13 04:45:13 +00003045 // If this is unsigned, and not supported, first perform the conversion to
3046 // signed, then adjust the result if the sign bit is set.
3047 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
3048 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
3049
Chris Lattnerd47675e2005-08-09 20:20:18 +00003050 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
3051 DAG.getConstant(0, Hi.getValueType()),
3052 ISD::SETLT);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003053 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3054 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3055 SignSet, Four, Zero);
Chris Lattner26f03172005-05-12 18:52:34 +00003056 uint64_t FF = 0x5f800000ULL;
3057 if (TLI.isLittleEndian()) FF <<= 32;
3058 static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003059
Chris Lattnerc30405e2005-08-26 17:15:30 +00003060 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003061 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3062 SDOperand FudgeInReg;
3063 if (DestTy == MVT::f32)
Chris Lattner5385db52005-05-09 20:23:03 +00003064 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
3065 DAG.getSrcValue(NULL));
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003066 else {
3067 assert(DestTy == MVT::f64 && "Unexpected conversion");
Chris Lattnerde0a4b12005-07-10 01:55:33 +00003068 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
3069 CPIdx, DAG.getSrcValue(NULL), MVT::f32);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00003070 }
Chris Lattner5b2be1f2005-09-29 06:44:39 +00003071 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattneraac464e2005-01-21 06:05:23 +00003072 }
Chris Lattner06bbeb62005-05-11 19:02:11 +00003073
Chris Lattnerd3cc9962005-05-14 05:33:54 +00003074 // Check to see if the target has a custom way to lower this. If so, use it.
3075 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
3076 default: assert(0 && "This action not implemented for this operation!");
3077 case TargetLowering::Legal:
3078 case TargetLowering::Expand:
3079 break; // This case is handled below.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00003080 case TargetLowering::Custom: {
3081 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
3082 Source), DAG);
3083 if (NV.Val)
3084 return LegalizeOp(NV);
3085 break; // The target decided this was legal after all
3086 }
Chris Lattnerd3cc9962005-05-14 05:33:54 +00003087 }
3088
Chris Lattner153587e2005-05-12 07:00:44 +00003089 // Expand the source, then glue it back together for the call. We must expand
3090 // the source in case it is shared (this pass of legalize must traverse it).
3091 SDOperand SrcLo, SrcHi;
3092 ExpandOp(Source, SrcLo, SrcHi);
3093 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
3094
Chris Lattner06bbeb62005-05-11 19:02:11 +00003095 const char *FnName = 0;
3096 if (DestTy == MVT::f32)
3097 FnName = "__floatdisf";
3098 else {
3099 assert(DestTy == MVT::f64 && "Unknown fp value type!");
3100 FnName = "__floatdidf";
3101 }
Chris Lattner462505f2006-02-13 09:18:02 +00003102
3103 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
3104 SDOperand UnusedHiPart;
Chris Lattner9ec392b2006-02-17 04:32:33 +00003105 return ExpandLibCall(FnName, Source.Val, UnusedHiPart);
Chris Lattneraac464e2005-01-21 06:05:23 +00003106}
Misha Brukman835702a2005-04-21 22:36:52 +00003107
Chris Lattner689bdcc2006-01-28 08:25:58 +00003108/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
3109/// INT_TO_FP operation of the specified operand when the target requests that
3110/// we expand it. At this point, we know that the result and operand types are
3111/// legal for the target.
3112SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
3113 SDOperand Op0,
3114 MVT::ValueType DestVT) {
3115 if (Op0.getValueType() == MVT::i32) {
3116 // simple 32-bit [signed|unsigned] integer to float/double expansion
3117
3118 // get the stack frame index of a 8 byte buffer
3119 MachineFunction &MF = DAG.getMachineFunction();
3120 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
3121 // get address of 8 byte buffer
3122 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
3123 // word offset constant for Hi/Lo address computation
3124 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
3125 // set up Hi and Lo (into buffer) address based on endian
3126 SDOperand Hi, Lo;
3127 if (TLI.isLittleEndian()) {
3128 Hi = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot, WordOff);
3129 Lo = StackSlot;
3130 } else {
3131 Hi = StackSlot;
3132 Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot, WordOff);
3133 }
3134 // if signed map to unsigned space
3135 SDOperand Op0Mapped;
3136 if (isSigned) {
3137 // constant used to invert sign bit (signed to unsigned mapping)
3138 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
3139 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
3140 } else {
3141 Op0Mapped = Op0;
3142 }
3143 // store the lo of the constructed double - based on integer input
3144 SDOperand Store1 = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3145 Op0Mapped, Lo, DAG.getSrcValue(NULL));
3146 // initial hi portion of constructed double
3147 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
3148 // store the hi of the constructed double - biased exponent
3149 SDOperand Store2 = DAG.getNode(ISD::STORE, MVT::Other, Store1,
3150 InitialHi, Hi, DAG.getSrcValue(NULL));
3151 // load the constructed double
3152 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot,
3153 DAG.getSrcValue(NULL));
3154 // FP constant to bias correct the final result
3155 SDOperand Bias = DAG.getConstantFP(isSigned ?
3156 BitsToDouble(0x4330000080000000ULL)
3157 : BitsToDouble(0x4330000000000000ULL),
3158 MVT::f64);
3159 // subtract the bias
3160 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
3161 // final result
3162 SDOperand Result;
3163 // handle final rounding
3164 if (DestVT == MVT::f64) {
3165 // do nothing
3166 Result = Sub;
3167 } else {
3168 // if f32 then cast to f32
3169 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
3170 }
3171 return Result;
3172 }
3173 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
3174 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
3175
3176 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
3177 DAG.getConstant(0, Op0.getValueType()),
3178 ISD::SETLT);
3179 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3180 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3181 SignSet, Four, Zero);
3182
3183 // If the sign bit of the integer is set, the large number will be treated
3184 // as a negative number. To counteract this, the dynamic code adds an
3185 // offset depending on the data type.
3186 uint64_t FF;
3187 switch (Op0.getValueType()) {
3188 default: assert(0 && "Unsupported integer type!");
3189 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
3190 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
3191 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
3192 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
3193 }
3194 if (TLI.isLittleEndian()) FF <<= 32;
3195 static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
3196
3197 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
3198 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3199 SDOperand FudgeInReg;
3200 if (DestVT == MVT::f32)
3201 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
3202 DAG.getSrcValue(NULL));
3203 else {
3204 assert(DestVT == MVT::f64 && "Unexpected conversion");
3205 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
3206 DAG.getEntryNode(), CPIdx,
3207 DAG.getSrcValue(NULL), MVT::f32));
3208 }
3209
3210 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
3211}
3212
3213/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
3214/// *INT_TO_FP operation of the specified operand when the target requests that
3215/// we promote it. At this point, we know that the result and operand types are
3216/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
3217/// operation that takes a larger input.
3218SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
3219 MVT::ValueType DestVT,
3220 bool isSigned) {
3221 // First step, figure out the appropriate *INT_TO_FP operation to use.
3222 MVT::ValueType NewInTy = LegalOp.getValueType();
3223
3224 unsigned OpToUse = 0;
3225
3226 // Scan for the appropriate larger type to use.
3227 while (1) {
3228 NewInTy = (MVT::ValueType)(NewInTy+1);
3229 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
3230
3231 // If the target supports SINT_TO_FP of this type, use it.
3232 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
3233 default: break;
3234 case TargetLowering::Legal:
3235 if (!TLI.isTypeLegal(NewInTy))
3236 break; // Can't use this datatype.
3237 // FALL THROUGH.
3238 case TargetLowering::Custom:
3239 OpToUse = ISD::SINT_TO_FP;
3240 break;
3241 }
3242 if (OpToUse) break;
3243 if (isSigned) continue;
3244
3245 // If the target supports UINT_TO_FP of this type, use it.
3246 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
3247 default: break;
3248 case TargetLowering::Legal:
3249 if (!TLI.isTypeLegal(NewInTy))
3250 break; // Can't use this datatype.
3251 // FALL THROUGH.
3252 case TargetLowering::Custom:
3253 OpToUse = ISD::UINT_TO_FP;
3254 break;
3255 }
3256 if (OpToUse) break;
3257
3258 // Otherwise, try a larger type.
3259 }
3260
3261 // Okay, we found the operation and type to use. Zero extend our input to the
3262 // desired type then run the operation on it.
3263 return DAG.getNode(OpToUse, DestVT,
3264 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
3265 NewInTy, LegalOp));
3266}
3267
3268/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
3269/// FP_TO_*INT operation of the specified operand when the target requests that
3270/// we promote it. At this point, we know that the result and operand types are
3271/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
3272/// operation that returns a larger result.
3273SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
3274 MVT::ValueType DestVT,
3275 bool isSigned) {
3276 // First step, figure out the appropriate FP_TO*INT operation to use.
3277 MVT::ValueType NewOutTy = DestVT;
3278
3279 unsigned OpToUse = 0;
3280
3281 // Scan for the appropriate larger type to use.
3282 while (1) {
3283 NewOutTy = (MVT::ValueType)(NewOutTy+1);
3284 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
3285
3286 // If the target supports FP_TO_SINT returning this type, use it.
3287 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
3288 default: break;
3289 case TargetLowering::Legal:
3290 if (!TLI.isTypeLegal(NewOutTy))
3291 break; // Can't use this datatype.
3292 // FALL THROUGH.
3293 case TargetLowering::Custom:
3294 OpToUse = ISD::FP_TO_SINT;
3295 break;
3296 }
3297 if (OpToUse) break;
3298
3299 // If the target supports FP_TO_UINT of this type, use it.
3300 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
3301 default: break;
3302 case TargetLowering::Legal:
3303 if (!TLI.isTypeLegal(NewOutTy))
3304 break; // Can't use this datatype.
3305 // FALL THROUGH.
3306 case TargetLowering::Custom:
3307 OpToUse = ISD::FP_TO_UINT;
3308 break;
3309 }
3310 if (OpToUse) break;
3311
3312 // Otherwise, try a larger type.
3313 }
3314
3315 // Okay, we found the operation and type to use. Truncate the result of the
3316 // extended FP_TO_*INT operation to the desired size.
3317 return DAG.getNode(ISD::TRUNCATE, DestVT,
3318 DAG.getNode(OpToUse, NewOutTy, LegalOp));
3319}
3320
3321/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
3322///
3323SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
3324 MVT::ValueType VT = Op.getValueType();
3325 MVT::ValueType SHVT = TLI.getShiftAmountTy();
3326 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
3327 switch (VT) {
3328 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
3329 case MVT::i16:
3330 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
3331 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
3332 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
3333 case MVT::i32:
3334 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
3335 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
3336 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
3337 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
3338 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
3339 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
3340 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
3341 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
3342 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
3343 case MVT::i64:
3344 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
3345 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
3346 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
3347 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
3348 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
3349 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
3350 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
3351 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
3352 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
3353 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
3354 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
3355 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
3356 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
3357 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
3358 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
3359 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
3360 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
3361 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
3362 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
3363 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
3364 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
3365 }
3366}
3367
3368/// ExpandBitCount - Expand the specified bitcount instruction into operations.
3369///
3370SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
3371 switch (Opc) {
3372 default: assert(0 && "Cannot expand this yet!");
3373 case ISD::CTPOP: {
3374 static const uint64_t mask[6] = {
3375 0x5555555555555555ULL, 0x3333333333333333ULL,
3376 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
3377 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
3378 };
3379 MVT::ValueType VT = Op.getValueType();
3380 MVT::ValueType ShVT = TLI.getShiftAmountTy();
3381 unsigned len = getSizeInBits(VT);
3382 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
3383 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
3384 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
3385 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
3386 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
3387 DAG.getNode(ISD::AND, VT,
3388 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
3389 }
3390 return Op;
3391 }
3392 case ISD::CTLZ: {
3393 // for now, we do this:
3394 // x = x | (x >> 1);
3395 // x = x | (x >> 2);
3396 // ...
3397 // x = x | (x >>16);
3398 // x = x | (x >>32); // for 64-bit input
3399 // return popcount(~x);
3400 //
3401 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
3402 MVT::ValueType VT = Op.getValueType();
3403 MVT::ValueType ShVT = TLI.getShiftAmountTy();
3404 unsigned len = getSizeInBits(VT);
3405 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
3406 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
3407 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
3408 }
3409 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
3410 return DAG.getNode(ISD::CTPOP, VT, Op);
3411 }
3412 case ISD::CTTZ: {
3413 // for now, we use: { return popcount(~x & (x - 1)); }
3414 // unless the target has ctlz but not ctpop, in which case we use:
3415 // { return 32 - nlz(~x & (x-1)); }
3416 // see also http://www.hackersdelight.org/HDcode/ntz.cc
3417 MVT::ValueType VT = Op.getValueType();
3418 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
3419 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
3420 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
3421 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
3422 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
3423 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
3424 TLI.isOperationLegal(ISD::CTLZ, VT))
3425 return DAG.getNode(ISD::SUB, VT,
3426 DAG.getConstant(getSizeInBits(VT), VT),
3427 DAG.getNode(ISD::CTLZ, VT, Tmp3));
3428 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
3429 }
3430 }
3431}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003432
3433
Chris Lattnerdc750592005-01-07 07:47:09 +00003434/// ExpandOp - Expand the specified SDOperand into its two component pieces
3435/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
3436/// LegalizeNodes map is filled in for any results that are not expanded, the
3437/// ExpandedNodes map is filled in for any results that are expanded, and the
3438/// Lo/Hi values are returned.
3439void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
3440 MVT::ValueType VT = Op.getValueType();
Chris Lattner87a769c2005-01-16 01:11:45 +00003441 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattnerdc750592005-01-07 07:47:09 +00003442 SDNode *Node = Op.Val;
3443 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Nate Begemand37c1312005-11-22 18:16:00 +00003444 assert((MVT::isInteger(VT) || VT == MVT::Vector) &&
3445 "Cannot expand FP values!");
3446 assert(((MVT::isInteger(NVT) && NVT < VT) || VT == MVT::Vector) &&
Chris Lattnerdc750592005-01-07 07:47:09 +00003447 "Cannot expand to FP value or to larger int value!");
3448
Chris Lattner1a570f12005-09-02 20:32:45 +00003449 // See if we already expanded it.
3450 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
3451 = ExpandedNodes.find(Op);
3452 if (I != ExpandedNodes.end()) {
3453 Lo = I->second.first;
3454 Hi = I->second.second;
3455 return;
Chris Lattnerdc750592005-01-07 07:47:09 +00003456 }
3457
Chris Lattnerdc750592005-01-07 07:47:09 +00003458 switch (Node->getOpcode()) {
Chris Lattner44cab002006-01-21 04:27:00 +00003459 case ISD::CopyFromReg:
3460 assert(0 && "CopyFromReg must be legal!");
3461 default:
Chris Lattnerdc750592005-01-07 07:47:09 +00003462 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
3463 assert(0 && "Do not know how to expand this operator!");
3464 abort();
Nate Begemancda9aa72005-04-01 22:34:39 +00003465 case ISD::UNDEF:
3466 Lo = DAG.getNode(ISD::UNDEF, NVT);
3467 Hi = DAG.getNode(ISD::UNDEF, NVT);
3468 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00003469 case ISD::Constant: {
3470 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
3471 Lo = DAG.getConstant(Cst, NVT);
3472 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
3473 break;
3474 }
Evan Chengb97aab42006-03-01 01:09:54 +00003475 case ISD::VConstant: {
3476 unsigned NumElements =
3477 cast<ConstantSDNode>(Node->getOperand(0))->getValue() / 2;
3478 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
3479 MVT::ValueType TVT = (NumElements > 1)
3480 ? getVectorType(EVT, NumElements) : EVT;
3481 // If type of bisected vector is legal, turn it into a ConstantVec (which
3482 // will be lowered to a ConstantPool or something else). Otherwise, bisect
3483 // the VConstant, and return each half as a new VConstant.
3484 unsigned Opc = ISD::ConstantVec;
3485 std::vector<SDOperand> LoOps, HiOps;
3486 if (!(TVT != MVT::Other &&
3487 (!MVT::isVector(TVT) || TLI.isTypeLegal(TVT)))) {
3488 Opc = ISD::VConstant;
3489 TVT = MVT::Vector;
3490 SDOperand Num = DAG.getConstant(NumElements, MVT::i32);
3491 SDOperand Typ = DAG.getValueType(EVT);
3492 HiOps.push_back(Num);
3493 HiOps.push_back(Typ);
3494 LoOps.push_back(Num);
3495 LoOps.push_back(Typ);
3496 }
3497
3498 if (NumElements == 1) {
3499 Hi = Node->getOperand(2);
3500 Lo = Node->getOperand(3);
Nate Begemanae89d862005-12-07 19:48:11 +00003501 } else {
Nate Begemanae89d862005-12-07 19:48:11 +00003502 for (unsigned I = 0, E = NumElements; I < E; ++I) {
Evan Chengb97aab42006-03-01 01:09:54 +00003503 HiOps.push_back(Node->getOperand(I+2));
3504 LoOps.push_back(Node->getOperand(I+2+NumElements));
Nate Begemanae89d862005-12-07 19:48:11 +00003505 }
Evan Chengb97aab42006-03-01 01:09:54 +00003506 Hi = DAG.getNode(Opc, TVT, HiOps);
3507 Lo = DAG.getNode(Opc, TVT, LoOps);
Nate Begemanae89d862005-12-07 19:48:11 +00003508 }
3509 break;
3510 }
Chris Lattnerdc750592005-01-07 07:47:09 +00003511
Chris Lattner32e08b72005-03-28 22:03:13 +00003512 case ISD::BUILD_PAIR:
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003513 // Return the operands.
3514 Lo = Node->getOperand(0);
3515 Hi = Node->getOperand(1);
Chris Lattner32e08b72005-03-28 22:03:13 +00003516 break;
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00003517
3518 case ISD::SIGN_EXTEND_INREG:
3519 ExpandOp(Node->getOperand(0), Lo, Hi);
3520 // Sign extend the lo-part.
3521 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
3522 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
3523 TLI.getShiftAmountTy()));
3524 // sext_inreg the low part if needed.
3525 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
3526 break;
Chris Lattner32e08b72005-03-28 22:03:13 +00003527
Nate Begeman2fba8a32006-01-14 03:14:10 +00003528 case ISD::BSWAP: {
3529 ExpandOp(Node->getOperand(0), Lo, Hi);
3530 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
3531 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
3532 Lo = TempLo;
3533 break;
3534 }
3535
Chris Lattner55e9cde2005-05-11 04:51:16 +00003536 case ISD::CTPOP:
3537 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner3740f392005-05-11 05:09:47 +00003538 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
3539 DAG.getNode(ISD::CTPOP, NVT, Lo),
3540 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattner55e9cde2005-05-11 04:51:16 +00003541 Hi = DAG.getConstant(0, NVT);
3542 break;
3543
Chris Lattnercf5f6b02005-05-12 19:05:01 +00003544 case ISD::CTLZ: {
3545 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner0bfd1772005-05-12 19:27:51 +00003546 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00003547 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
3548 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattnerd47675e2005-08-09 20:20:18 +00003549 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
3550 ISD::SETNE);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00003551 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
3552 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
3553
3554 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
3555 Hi = DAG.getConstant(0, NVT);
3556 break;
3557 }
3558
3559 case ISD::CTTZ: {
3560 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner0bfd1772005-05-12 19:27:51 +00003561 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00003562 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
3563 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattnerd47675e2005-08-09 20:20:18 +00003564 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
3565 ISD::SETNE);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00003566 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
3567 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
3568
3569 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
3570 Hi = DAG.getConstant(0, NVT);
3571 break;
3572 }
Chris Lattner55e9cde2005-05-11 04:51:16 +00003573
Nate Begemane74795c2006-01-25 18:21:52 +00003574 case ISD::VAARG: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003575 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
3576 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemane74795c2006-01-25 18:21:52 +00003577 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
3578 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
3579
3580 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003581 Hi = LegalizeOp(Hi);
Nate Begemane74795c2006-01-25 18:21:52 +00003582 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
3583 if (!TLI.isLittleEndian())
3584 std::swap(Lo, Hi);
3585 break;
3586 }
3587
Chris Lattnerdc750592005-01-07 07:47:09 +00003588 case ISD::LOAD: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003589 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
3590 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00003591 Lo = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
Chris Lattnerdc750592005-01-07 07:47:09 +00003592
3593 // Increment the pointer to the other half.
Chris Lattner9242c502005-01-09 19:43:23 +00003594 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
Chris Lattnerdc750592005-01-07 07:47:09 +00003595 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
3596 getIntPtrConstant(IncrementSize));
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003597 // FIXME: This creates a bogus srcvalue!
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00003598 Hi = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
Chris Lattner0d03eb42005-01-19 18:02:17 +00003599
3600 // Build a factor node to remember that this load is independent of the
3601 // other one.
3602 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
3603 Hi.getValue(1));
Misha Brukman835702a2005-04-21 22:36:52 +00003604
Chris Lattnerdc750592005-01-07 07:47:09 +00003605 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003606 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerdc750592005-01-07 07:47:09 +00003607 if (!TLI.isLittleEndian())
3608 std::swap(Lo, Hi);
3609 break;
3610 }
Nate Begemand37c1312005-11-22 18:16:00 +00003611 case ISD::VLOAD: {
Evan Chengb97aab42006-03-01 01:09:54 +00003612 SDOperand Ch = Node->getOperand(2); // Legalize the chain.
3613 SDOperand Ptr = Node->getOperand(3); // Legalize the pointer.
3614 unsigned NumElements =cast<ConstantSDNode>(Node->getOperand(0))->getValue();
3615 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
3616 MVT::ValueType TVT = (NumElements/2 > 1)
3617 ? getVectorType(EVT, NumElements/2) : EVT;
Nate Begemand37c1312005-11-22 18:16:00 +00003618
Evan Chengb97aab42006-03-01 01:09:54 +00003619 // If type of split vector is legal, turn into a pair of scalar or
3620 // packed loads.
3621 if (TVT != MVT::Other &&
3622 (!MVT::isVector(TVT) ||
3623 (TLI.isTypeLegal(TVT) && TLI.isOperationLegal(ISD::LOAD, TVT)))) {
3624 Lo = DAG.getLoad(TVT, Ch, Ptr, Node->getOperand(4));
Nate Begemand37c1312005-11-22 18:16:00 +00003625 // Increment the pointer to the other half.
Evan Chengb97aab42006-03-01 01:09:54 +00003626 unsigned IncrementSize = MVT::getSizeInBits(TVT)/8;
Nate Begemand37c1312005-11-22 18:16:00 +00003627 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
3628 getIntPtrConstant(IncrementSize));
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003629 // FIXME: This creates a bogus srcvalue!
Evan Chengb97aab42006-03-01 01:09:54 +00003630 Hi = DAG.getLoad(TVT, Ch, Ptr, Node->getOperand(4));
Nate Begemand37c1312005-11-22 18:16:00 +00003631 } else {
3632 NumElements /= 2; // Split the vector in half
3633 Lo = DAG.getVecLoad(NumElements, EVT, Ch, Ptr, Node->getOperand(4));
3634 unsigned IncrementSize = NumElements * MVT::getSizeInBits(EVT)/8;
3635 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
3636 getIntPtrConstant(IncrementSize));
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003637 // FIXME: This creates a bogus srcvalue!
Nate Begemand37c1312005-11-22 18:16:00 +00003638 Hi = DAG.getVecLoad(NumElements, EVT, Ch, Ptr, Node->getOperand(4));
3639 }
3640
3641 // Build a factor node to remember that this load is independent of the
3642 // other one.
3643 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
3644 Hi.getValue(1));
3645
3646 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003647 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Nate Begemand37c1312005-11-22 18:16:00 +00003648 if (!TLI.isLittleEndian())
3649 std::swap(Lo, Hi);
3650 break;
3651 }
3652 case ISD::VADD:
3653 case ISD::VSUB:
Evan Cheng3bf916d2006-03-03 07:01:07 +00003654 case ISD::VMUL:
3655 case ISD::VSDIV:
3656 case ISD::VUDIV:
3657 case ISD::VAND:
3658 case ISD::VOR:
3659 case ISD::VXOR: {
Evan Chengb97aab42006-03-01 01:09:54 +00003660 unsigned NumElements =cast<ConstantSDNode>(Node->getOperand(0))->getValue();
3661 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
3662 MVT::ValueType TVT = (NumElements/2 > 1)
3663 ? getVectorType(EVT, NumElements/2) : EVT;
Nate Begemand37c1312005-11-22 18:16:00 +00003664 SDOperand LL, LH, RL, RH;
3665
Evan Chengb97aab42006-03-01 01:09:54 +00003666 ExpandOp(Node->getOperand(2), LL, LH);
3667 ExpandOp(Node->getOperand(3), RL, RH);
Nate Begemand37c1312005-11-22 18:16:00 +00003668
Evan Chengb97aab42006-03-01 01:09:54 +00003669 // If type of split vector is legal, turn into a pair of scalar / packed
3670 // ADD, SUB, or MUL.
3671 unsigned Opc = getScalarizedOpcode(Node->getOpcode(), EVT);
3672 if (TVT != MVT::Other &&
3673 (!MVT::isVector(TVT) ||
3674 (TLI.isTypeLegal(TVT) && TLI.isOperationLegal(Opc, TVT)))) {
3675 Lo = DAG.getNode(Opc, TVT, LL, RL);
3676 Hi = DAG.getNode(Opc, TVT, LH, RH);
Nate Begemand37c1312005-11-22 18:16:00 +00003677 } else {
Evan Chengb97aab42006-03-01 01:09:54 +00003678 SDOperand Num = DAG.getConstant(NumElements/2, MVT::i32);
3679 SDOperand Typ = DAG.getValueType(EVT);
3680 Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, Num, Typ, LL, RL);
3681 Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, Num, Typ, LH, RH);
Nate Begemand37c1312005-11-22 18:16:00 +00003682 }
3683 break;
3684 }
Chris Lattnerdc750592005-01-07 07:47:09 +00003685 case ISD::AND:
3686 case ISD::OR:
3687 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
3688 SDOperand LL, LH, RL, RH;
3689 ExpandOp(Node->getOperand(0), LL, LH);
3690 ExpandOp(Node->getOperand(1), RL, RH);
3691 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
3692 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
3693 break;
3694 }
3695 case ISD::SELECT: {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003696 SDOperand LL, LH, RL, RH;
Chris Lattnerdc750592005-01-07 07:47:09 +00003697 ExpandOp(Node->getOperand(1), LL, LH);
3698 ExpandOp(Node->getOperand(2), RL, RH);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003699 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
3700 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattnerdc750592005-01-07 07:47:09 +00003701 break;
3702 }
Nate Begemane5b86d72005-08-10 20:51:12 +00003703 case ISD::SELECT_CC: {
3704 SDOperand TL, TH, FL, FH;
3705 ExpandOp(Node->getOperand(2), TL, TH);
3706 ExpandOp(Node->getOperand(3), FL, FH);
3707 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
3708 Node->getOperand(1), TL, FL, Node->getOperand(4));
3709 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
3710 Node->getOperand(1), TH, FH, Node->getOperand(4));
3711 break;
3712 }
Nate Begemanc3a89c52005-10-13 17:15:37 +00003713 case ISD::SEXTLOAD: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003714 SDOperand Chain = Node->getOperand(0);
3715 SDOperand Ptr = Node->getOperand(1);
Nate Begemanc3a89c52005-10-13 17:15:37 +00003716 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
3717
3718 if (EVT == NVT)
3719 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
3720 else
3721 Lo = DAG.getExtLoad(ISD::SEXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
3722 EVT);
Chris Lattner258521d2005-10-13 21:44:47 +00003723
3724 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003725 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner258521d2005-10-13 21:44:47 +00003726
Nate Begemanc3a89c52005-10-13 17:15:37 +00003727 // The high part is obtained by SRA'ing all but one of the bits of the lo
3728 // part.
3729 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
3730 Hi = DAG.getNode(ISD::SRA, NVT, Lo, DAG.getConstant(LoSize-1,
3731 TLI.getShiftAmountTy()));
Nate Begemanc3a89c52005-10-13 17:15:37 +00003732 break;
3733 }
3734 case ISD::ZEXTLOAD: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003735 SDOperand Chain = Node->getOperand(0);
3736 SDOperand Ptr = Node->getOperand(1);
Nate Begemanc3a89c52005-10-13 17:15:37 +00003737 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
3738
3739 if (EVT == NVT)
3740 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
3741 else
3742 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
3743 EVT);
Chris Lattner258521d2005-10-13 21:44:47 +00003744
3745 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003746 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner258521d2005-10-13 21:44:47 +00003747
Nate Begemanc3a89c52005-10-13 17:15:37 +00003748 // The high part is just a zero.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003749 Hi = DAG.getConstant(0, NVT);
Chris Lattner258521d2005-10-13 21:44:47 +00003750 break;
3751 }
3752 case ISD::EXTLOAD: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003753 SDOperand Chain = Node->getOperand(0);
3754 SDOperand Ptr = Node->getOperand(1);
Chris Lattner258521d2005-10-13 21:44:47 +00003755 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
3756
3757 if (EVT == NVT)
3758 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
3759 else
3760 Lo = DAG.getExtLoad(ISD::EXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
3761 EVT);
3762
3763 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003764 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner258521d2005-10-13 21:44:47 +00003765
3766 // The high part is undefined.
Chris Lattner7753f172005-09-02 00:18:10 +00003767 Hi = DAG.getNode(ISD::UNDEF, NVT);
3768 break;
3769 }
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003770 case ISD::ANY_EXTEND:
3771 // The low part is any extension of the input (which degenerates to a copy).
3772 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
3773 // The high part is undefined.
3774 Hi = DAG.getNode(ISD::UNDEF, NVT);
3775 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00003776 case ISD::SIGN_EXTEND: {
3777 // The low part is just a sign extension of the input (which degenerates to
3778 // a copy).
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003779 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00003780
Chris Lattnerdc750592005-01-07 07:47:09 +00003781 // The high part is obtained by SRA'ing all but one of the bits of the lo
3782 // part.
Chris Lattner9864b082005-01-12 18:19:52 +00003783 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003784 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
3785 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattnerdc750592005-01-07 07:47:09 +00003786 break;
3787 }
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003788 case ISD::ZERO_EXTEND:
Chris Lattnerdc750592005-01-07 07:47:09 +00003789 // The low part is just a zero extension of the input (which degenerates to
3790 // a copy).
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003791 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00003792
Chris Lattnerdc750592005-01-07 07:47:09 +00003793 // The high part is just a zero.
3794 Hi = DAG.getConstant(0, NVT);
3795 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00003796
3797 case ISD::BIT_CONVERT: {
3798 SDOperand Tmp = ExpandBIT_CONVERT(Node->getValueType(0),
3799 Node->getOperand(0));
3800 ExpandOp(Tmp, Lo, Hi);
3801 break;
3802 }
Andrew Lenharth627cbd42005-11-20 21:32:07 +00003803
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003804 case ISD::READCYCLECOUNTER:
Chris Lattner44c28c22005-11-20 22:56:56 +00003805 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
3806 TargetLowering::Custom &&
3807 "Must custom expand ReadCycleCounter");
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003808 Lo = TLI.LowerOperation(Op, DAG);
3809 assert(Lo.Val && "Node must be custom expanded!");
3810 Hi = Lo.getValue(1);
Chris Lattner44c28c22005-11-20 22:56:56 +00003811 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003812 LegalizeOp(Lo.getValue(2)));
Andrew Lenharth627cbd42005-11-20 21:32:07 +00003813 break;
3814
Chris Lattner7e6eeba2005-01-08 19:27:05 +00003815 // These operators cannot be expanded directly, emit them as calls to
3816 // library functions.
3817 case ISD::FP_TO_SINT:
Chris Lattnerfe68d752005-07-29 00:33:32 +00003818 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattner941d84a2005-07-30 01:40:57 +00003819 SDOperand Op;
3820 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3821 case Expand: assert(0 && "cannot expand FP!");
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003822 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
3823 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattner941d84a2005-07-30 01:40:57 +00003824 }
Jeff Cohen546fd592005-07-30 18:33:25 +00003825
Chris Lattner941d84a2005-07-30 01:40:57 +00003826 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
3827
Chris Lattnerfe68d752005-07-29 00:33:32 +00003828 // Now that the custom expander is done, expand the result, which is still
3829 // VT.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00003830 if (Op.Val) {
3831 ExpandOp(Op, Lo, Hi);
3832 break;
3833 }
Chris Lattnerfe68d752005-07-29 00:33:32 +00003834 }
Jeff Cohen546fd592005-07-30 18:33:25 +00003835
Chris Lattner7e6eeba2005-01-08 19:27:05 +00003836 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattneraac464e2005-01-21 06:05:23 +00003837 Lo = ExpandLibCall("__fixsfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00003838 else
Chris Lattneraac464e2005-01-21 06:05:23 +00003839 Lo = ExpandLibCall("__fixdfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00003840 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00003841
Chris Lattner7e6eeba2005-01-08 19:27:05 +00003842 case ISD::FP_TO_UINT:
Chris Lattnerfe68d752005-07-29 00:33:32 +00003843 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003844 SDOperand Op;
3845 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3846 case Expand: assert(0 && "cannot expand FP!");
3847 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
3848 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
3849 }
3850
3851 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
3852
3853 // Now that the custom expander is done, expand the result.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00003854 if (Op.Val) {
3855 ExpandOp(Op, Lo, Hi);
3856 break;
3857 }
Chris Lattnerfe68d752005-07-29 00:33:32 +00003858 }
Jeff Cohen546fd592005-07-30 18:33:25 +00003859
Chris Lattner7e6eeba2005-01-08 19:27:05 +00003860 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattneraac464e2005-01-21 06:05:23 +00003861 Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00003862 else
Chris Lattneraac464e2005-01-21 06:05:23 +00003863 Lo = ExpandLibCall("__fixunsdfdi", Node, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00003864 break;
3865
Evan Cheng870e4f82006-01-09 18:31:59 +00003866 case ISD::SHL: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00003867 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00003868 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00003869 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003870 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00003871 Op = TLI.LowerOperation(Op, DAG);
3872 if (Op.Val) {
3873 // Now that the custom expander is done, expand the result, which is
3874 // still VT.
3875 ExpandOp(Op, Lo, Hi);
3876 break;
3877 }
3878 }
3879
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003880 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00003881 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003882 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00003883
3884 // If this target supports SHL_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00003885 TargetLowering::LegalizeAction Action =
3886 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
3887 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
3888 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00003889 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00003890 break;
3891 }
3892
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003893 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00003894 Lo = ExpandLibCall("__ashldi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003895 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00003896 }
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003897
Evan Cheng870e4f82006-01-09 18:31:59 +00003898 case ISD::SRA: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00003899 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00003900 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00003901 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003902 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00003903 Op = TLI.LowerOperation(Op, DAG);
3904 if (Op.Val) {
3905 // Now that the custom expander is done, expand the result, which is
3906 // still VT.
3907 ExpandOp(Op, Lo, Hi);
3908 break;
3909 }
3910 }
3911
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003912 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00003913 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003914 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00003915
3916 // If this target supports SRA_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00003917 TargetLowering::LegalizeAction Action =
3918 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
3919 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
3920 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00003921 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00003922 break;
3923 }
3924
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003925 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00003926 Lo = ExpandLibCall("__ashrdi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003927 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00003928 }
3929
3930 case ISD::SRL: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00003931 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00003932 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00003933 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003934 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00003935 Op = TLI.LowerOperation(Op, DAG);
3936 if (Op.Val) {
3937 // Now that the custom expander is done, expand the result, which is
3938 // still VT.
3939 ExpandOp(Op, Lo, Hi);
3940 break;
3941 }
3942 }
3943
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003944 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00003945 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003946 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00003947
3948 // If this target supports SRL_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00003949 TargetLowering::LegalizeAction Action =
3950 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
3951 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
3952 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00003953 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00003954 break;
3955 }
3956
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003957 // Otherwise, emit a libcall.
Chris Lattneraac464e2005-01-21 06:05:23 +00003958 Lo = ExpandLibCall("__lshrdi3", Node, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003959 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00003960 }
Chris Lattner2a7f8a92005-01-19 04:19:40 +00003961
Misha Brukman835702a2005-04-21 22:36:52 +00003962 case ISD::ADD:
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003963 case ISD::SUB: {
3964 // If the target wants to custom expand this, let them.
3965 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
3966 TargetLowering::Custom) {
3967 Op = TLI.LowerOperation(Op, DAG);
3968 if (Op.Val) {
3969 ExpandOp(Op, Lo, Hi);
3970 break;
3971 }
3972 }
3973
3974 // Expand the subcomponents.
3975 SDOperand LHSL, LHSH, RHSL, RHSH;
3976 ExpandOp(Node->getOperand(0), LHSL, LHSH);
3977 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Nate Begeman5965bd12006-02-17 05:43:56 +00003978 std::vector<MVT::ValueType> VTs;
3979 std::vector<SDOperand> LoOps, HiOps;
3980 VTs.push_back(LHSL.getValueType());
3981 VTs.push_back(MVT::Flag);
3982 LoOps.push_back(LHSL);
3983 LoOps.push_back(RHSL);
3984 HiOps.push_back(LHSH);
3985 HiOps.push_back(RHSH);
3986 if (Node->getOpcode() == ISD::ADD) {
3987 Lo = DAG.getNode(ISD::ADDC, VTs, LoOps);
3988 HiOps.push_back(Lo.getValue(1));
3989 Hi = DAG.getNode(ISD::ADDE, VTs, HiOps);
3990 } else {
3991 Lo = DAG.getNode(ISD::SUBC, VTs, LoOps);
3992 HiOps.push_back(Lo.getValue(1));
3993 Hi = DAG.getNode(ISD::SUBE, VTs, HiOps);
3994 }
Chris Lattnerb3f83b282005-01-20 18:52:28 +00003995 break;
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00003996 }
Nate Begemanadd0c632005-04-11 03:01:51 +00003997 case ISD::MUL: {
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00003998 if (TLI.isOperationLegal(ISD::MULHU, NVT)) {
Nate Begemanadd0c632005-04-11 03:01:51 +00003999 SDOperand LL, LH, RL, RH;
4000 ExpandOp(Node->getOperand(0), LL, LH);
4001 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman43144a22005-08-30 02:44:00 +00004002 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
4003 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
4004 // extended the sign bit of the low half through the upper half, and if so
4005 // emit a MULHS instead of the alternate sequence that is valid for any
4006 // i64 x i64 multiply.
4007 if (TLI.isOperationLegal(ISD::MULHS, NVT) &&
4008 // is RH an extension of the sign bit of RL?
4009 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
4010 RH.getOperand(1).getOpcode() == ISD::Constant &&
4011 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
4012 // is LH an extension of the sign bit of LL?
4013 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
4014 LH.getOperand(1).getOpcode() == ISD::Constant &&
4015 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
4016 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
4017 } else {
4018 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
4019 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
4020 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
4021 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
4022 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
4023 }
Nate Begemanadd0c632005-04-11 03:01:51 +00004024 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4025 } else {
Chris Lattner10f67752006-01-28 04:28:26 +00004026 Lo = ExpandLibCall("__muldi3" , Node, Hi);
Nate Begemanadd0c632005-04-11 03:01:51 +00004027 }
4028 break;
4029 }
Chris Lattneraac464e2005-01-21 06:05:23 +00004030 case ISD::SDIV: Lo = ExpandLibCall("__divdi3" , Node, Hi); break;
4031 case ISD::UDIV: Lo = ExpandLibCall("__udivdi3", Node, Hi); break;
4032 case ISD::SREM: Lo = ExpandLibCall("__moddi3" , Node, Hi); break;
4033 case ISD::UREM: Lo = ExpandLibCall("__umoddi3", Node, Hi); break;
Chris Lattnerdc750592005-01-07 07:47:09 +00004034 }
4035
Chris Lattnerac12f682005-12-21 18:02:52 +00004036 // Make sure the resultant values have been legalized themselves, unless this
4037 // is a type that requires multi-step expansion.
4038 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
4039 Lo = LegalizeOp(Lo);
4040 Hi = LegalizeOp(Hi);
4041 }
Evan Cheng870e4f82006-01-09 18:31:59 +00004042
4043 // Remember in a map if the values will be reused later.
4044 bool isNew =
4045 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4046 assert(isNew && "Value already expanded?!?");
Chris Lattnerdc750592005-01-07 07:47:09 +00004047}
4048
4049
4050// SelectionDAG::Legalize - This is the entry point for the file.
4051//
Chris Lattner4add7e32005-01-23 04:42:50 +00004052void SelectionDAG::Legalize() {
Chris Lattnerdc750592005-01-07 07:47:09 +00004053 /// run - This is the main entry point to this class.
4054 ///
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004055 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattnerdc750592005-01-07 07:47:09 +00004056}
4057