blob: 23e544212e7cfdc50c2cd6db8a8419c4f50a5735 [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskey02659d22005-08-17 17:42:52 +000017#include "llvm/Support/MathExtras.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000018#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000019#include "llvm/Target/TargetData.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000020#include "llvm/Target/TargetOptions.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000021#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000022#include "llvm/Constants.h"
23#include <iostream>
Chris Lattner82299e72005-08-05 18:10:27 +000024#include <set>
Chris Lattner3e928bb2005-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 Lattner3e928bb2005-01-07 07:47:09 +000044 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000045 Legal, // The target natively supports this operation.
46 Promote, // This operation should be executed in a larger type.
47 Expand, // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000048 };
49
Chris Lattner3e928bb2005-01-07 07:47:09 +000050 /// ValueTypeActions - This is a bitvector that contains two bits for each
51 /// value type, where the two bits correspond to the LegalizeAction enum.
52 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000053 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000054
Chris Lattner3e928bb2005-01-07 07:47:09 +000055 /// LegalizedNodes - For nodes that are of legal width, and that have more
56 /// than one use, this map indicates what regularized operand to use. This
57 /// allows us to avoid legalizing the same thing more than once.
58 std::map<SDOperand, SDOperand> LegalizedNodes;
59
Chris Lattner03c85462005-01-15 05:21:40 +000060 /// PromotedNodes - For nodes that are below legal width, and that have more
61 /// than one use, this map indicates what promoted value to use. This allows
62 /// us to avoid promoting the same thing more than once.
63 std::map<SDOperand, SDOperand> PromotedNodes;
64
Chris Lattner3e928bb2005-01-07 07:47:09 +000065 /// ExpandedNodes - For nodes that need to be expanded, and which have more
66 /// than one use, this map indicates which which operands are the expanded
67 /// version of the input. This allows us to avoid expanding the same node
68 /// more than once.
69 std::map<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
70
Chris Lattner8afc48e2005-01-07 22:28:47 +000071 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner69a889e2005-12-20 00:53:54 +000072 LegalizedNodes.insert(std::make_pair(From, To));
73 // If someone requests legalization of the new node, return itself.
74 if (From != To)
75 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +000076 }
Chris Lattner03c85462005-01-15 05:21:40 +000077 void AddPromotedOperand(SDOperand From, SDOperand To) {
78 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
79 assert(isNew && "Got into the map somehow?");
Chris Lattner69a889e2005-12-20 00:53:54 +000080 // If someone requests legalization of the new node, return itself.
81 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +000082 }
Chris Lattner8afc48e2005-01-07 22:28:47 +000083
Chris Lattner3e928bb2005-01-07 07:47:09 +000084public:
85
Chris Lattner9c32d3b2005-01-23 04:42:50 +000086 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +000087
Chris Lattner3e928bb2005-01-07 07:47:09 +000088 /// getTypeAction - Return how we should legalize values of this type, either
89 /// it is already legal or we need to expand it into multiple registers of
90 /// smaller integer type, or we need to promote it to a larger type.
91 LegalizeAction getTypeAction(MVT::ValueType VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +000092 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +000093 }
94
95 /// isTypeLegal - Return true if this type is legal on this target.
96 ///
97 bool isTypeLegal(MVT::ValueType VT) const {
98 return getTypeAction(VT) == Legal;
99 }
100
Chris Lattner3e928bb2005-01-07 07:47:09 +0000101 void LegalizeDAG();
102
Chris Lattner456a93a2006-01-28 07:39:30 +0000103private:
104
Chris Lattner3e928bb2005-01-07 07:47:09 +0000105 SDOperand LegalizeOp(SDOperand O);
106 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
Chris Lattner03c85462005-01-15 05:21:40 +0000107 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000108
Nate Begeman750ac1b2006-02-01 07:19:44 +0000109 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
110
Chris Lattner77e77a62005-01-21 06:05:23 +0000111 SDOperand ExpandLibCall(const char *Name, SDNode *Node,
112 SDOperand &Hi);
113 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
114 SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000115
Chris Lattner35481892005-12-23 00:16:34 +0000116 SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
Jim Laskey6269ed12005-08-17 00:39:29 +0000117 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
118 SDOperand LegalOp,
119 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000120 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
121 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000122 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
123 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000124
Chris Lattner456a93a2006-01-28 07:39:30 +0000125 SDOperand ExpandBSWAP(SDOperand Op);
126 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000127 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
128 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000129 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
130 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000131 void SpliceCallInto(const SDOperand &CallResult, SDNode *OutChain);
132
Chris Lattner3e928bb2005-01-07 07:47:09 +0000133 SDOperand getIntPtrConstant(uint64_t Val) {
134 return DAG.getConstant(Val, TLI.getPointerTy());
135 }
136};
137}
138
Chris Lattnerb89175f2005-11-19 05:51:46 +0000139static unsigned getScalarizedOpcode(unsigned VecOp, MVT::ValueType VT) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000140 switch (VecOp) {
141 default: assert(0 && "Don't know how to scalarize this opcode!");
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000142 case ISD::VADD: return MVT::isInteger(VT) ? ISD::ADD : ISD::FADD;
143 case ISD::VSUB: return MVT::isInteger(VT) ? ISD::SUB : ISD::FSUB;
144 case ISD::VMUL: return MVT::isInteger(VT) ? ISD::MUL : ISD::FMUL;
145 }
146}
Chris Lattner3e928bb2005-01-07 07:47:09 +0000147
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000148SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
149 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
150 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000151 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000152 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000153}
154
Chris Lattner32fca002005-10-06 01:20:27 +0000155/// ComputeTopDownOrdering - Add the specified node to the Order list if it has
156/// not been visited yet and if all of its operands have already been visited.
157static void ComputeTopDownOrdering(SDNode *N, std::vector<SDNode*> &Order,
158 std::map<SDNode*, unsigned> &Visited) {
159 if (++Visited[N] != N->getNumOperands())
160 return; // Haven't visited all operands yet
161
162 Order.push_back(N);
163
164 if (N->hasOneUse()) { // Tail recurse in common case.
165 ComputeTopDownOrdering(*N->use_begin(), Order, Visited);
166 return;
167 }
168
169 // Now that we have N in, add anything that uses it if all of their operands
170 // are now done.
Chris Lattner32fca002005-10-06 01:20:27 +0000171 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end(); UI != E;++UI)
172 ComputeTopDownOrdering(*UI, Order, Visited);
173}
174
Chris Lattner1618beb2005-07-29 00:11:56 +0000175
Chris Lattner3e928bb2005-01-07 07:47:09 +0000176void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattnerab510a72005-10-02 17:49:46 +0000177 // The legalize process is inherently a bottom-up recursive process (users
178 // legalize their uses before themselves). Given infinite stack space, we
179 // could just start legalizing on the root and traverse the whole graph. In
180 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000181 // blocks. To avoid this problem, compute an ordering of the nodes where each
182 // node is only legalized after all of its operands are legalized.
183 std::map<SDNode*, unsigned> Visited;
184 std::vector<SDNode*> Order;
Chris Lattnerab510a72005-10-02 17:49:46 +0000185
Chris Lattner32fca002005-10-06 01:20:27 +0000186 // Compute ordering from all of the leaves in the graphs, those (like the
187 // entry node) that have no operands.
188 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
189 E = DAG.allnodes_end(); I != E; ++I) {
Chris Lattnerde202b32005-11-09 23:47:37 +0000190 if (I->getNumOperands() == 0) {
191 Visited[I] = 0 - 1U;
192 ComputeTopDownOrdering(I, Order, Visited);
Chris Lattnerab510a72005-10-02 17:49:46 +0000193 }
Chris Lattnerab510a72005-10-02 17:49:46 +0000194 }
195
Chris Lattnerde202b32005-11-09 23:47:37 +0000196 assert(Order.size() == Visited.size() &&
197 Order.size() ==
198 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
Chris Lattner32fca002005-10-06 01:20:27 +0000199 "Error: DAG is cyclic!");
200 Visited.clear();
Chris Lattnerab510a72005-10-02 17:49:46 +0000201
Chris Lattner32fca002005-10-06 01:20:27 +0000202 for (unsigned i = 0, e = Order.size(); i != e; ++i) {
203 SDNode *N = Order[i];
204 switch (getTypeAction(N->getValueType(0))) {
205 default: assert(0 && "Bad type action!");
206 case Legal:
207 LegalizeOp(SDOperand(N, 0));
208 break;
209 case Promote:
210 PromoteOp(SDOperand(N, 0));
211 break;
212 case Expand: {
213 SDOperand X, Y;
214 ExpandOp(SDOperand(N, 0), X, Y);
215 break;
216 }
217 }
218 }
219
220 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000221 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000222 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
223 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000224
225 ExpandedNodes.clear();
226 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000227 PromotedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000228
229 // Remove dead nodes now.
Chris Lattner62fd2692005-01-07 21:09:37 +0000230 DAG.RemoveDeadNodes(OldRoot.Val);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000231}
232
233SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000234 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000235 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000236 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000237
Chris Lattner3e928bb2005-01-07 07:47:09 +0000238 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000239 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000240 if (Node->getNumValues() > 1) {
241 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
242 switch (getTypeAction(Node->getValueType(i))) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000243 case Legal: break; // Nothing to do.
244 case Expand: {
245 SDOperand T1, T2;
246 ExpandOp(Op.getValue(i), T1, T2);
247 assert(LegalizedNodes.count(Op) &&
248 "Expansion didn't add legal operands!");
249 return LegalizedNodes[Op];
250 }
251 case Promote:
Chris Lattner03c85462005-01-15 05:21:40 +0000252 PromoteOp(Op.getValue(i));
253 assert(LegalizedNodes.count(Op) &&
Chris Lattner456a93a2006-01-28 07:39:30 +0000254 "Promotion didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000255 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000256 }
257 }
258
Chris Lattner45982da2005-05-12 16:53:42 +0000259 // Note that LegalizeOp may be reentered even from single-use nodes, which
260 // means that we always must cache transformed nodes.
Chris Lattnere1bd8222005-01-11 05:57:22 +0000261 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
262 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000263
Nate Begeman9373a812005-08-10 20:51:12 +0000264 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000265 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000266 bool isCustom = false;
267
Chris Lattner3e928bb2005-01-07 07:47:09 +0000268 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000269 case ISD::FrameIndex:
270 case ISD::EntryToken:
271 case ISD::Register:
272 case ISD::BasicBlock:
273 case ISD::TargetFrameIndex:
274 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000275 case ISD::TargetConstantFP:
276 case ISD::TargetConstantVec:
Chris Lattner948c1b12006-01-28 08:31:04 +0000277 case ISD::TargetConstantPool:
278 case ISD::TargetGlobalAddress:
279 case ISD::TargetExternalSymbol:
280 case ISD::VALUETYPE:
281 case ISD::SRCVALUE:
282 case ISD::STRING:
283 case ISD::CONDCODE:
284 // Primitives must all be legal.
285 assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
286 "This must be legal!");
287 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000288 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000289 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
290 // If this is a target node, legalize it by legalizing the operands then
291 // passing it through.
292 std::vector<SDOperand> Ops;
293 bool Changed = false;
294 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
295 Ops.push_back(LegalizeOp(Node->getOperand(i)));
296 Changed = Changed || Node->getOperand(i) != Ops.back();
297 }
298 if (Changed)
299 if (Node->getNumValues() == 1)
300 Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Ops);
301 else {
302 std::vector<MVT::ValueType> VTs(Node->value_begin(),
303 Node->value_end());
304 Result = DAG.getNode(Node->getOpcode(), VTs, Ops);
305 }
306
307 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
308 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
309 return Result.getValue(Op.ResNo);
310 }
311 // Otherwise this is an unhandled builtin node. splat.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000312 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
313 assert(0 && "Do not know how to legalize this operator!");
314 abort();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000315 case ISD::GlobalAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000316 case ISD::ExternalSymbol:
Chris Lattner69a52152005-01-14 22:38:01 +0000317 case ISD::ConstantPool: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000318 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
319 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000320 case TargetLowering::Custom:
321 Tmp1 = TLI.LowerOperation(Op, DAG);
322 if (Tmp1.Val) Result = Tmp1;
323 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000324 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000325 break;
326 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000327 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000328 case ISD::AssertSext:
329 case ISD::AssertZext:
330 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000331 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000332 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000333 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000334 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000335 Result = Node->getOperand(Op.ResNo);
336 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000337 case ISD::CopyFromReg:
338 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000339 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000340 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000341 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000342 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000343 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000344 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000345 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000346 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
347 } else {
348 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
349 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000350 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
351 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000352 // Since CopyFromReg produces two values, make sure to remember that we
353 // legalized both of them.
354 AddLegalizedOperand(Op.getValue(0), Result);
355 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
356 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000357 case ISD::UNDEF: {
358 MVT::ValueType VT = Op.getValueType();
359 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000360 default: assert(0 && "This action is not supported yet!");
361 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000362 if (MVT::isInteger(VT))
363 Result = DAG.getConstant(0, VT);
364 else if (MVT::isFloatingPoint(VT))
365 Result = DAG.getConstantFP(0, VT);
366 else
367 assert(0 && "Unknown value type!");
368 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000369 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000370 break;
371 }
372 break;
373 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000374
375 case ISD::LOCATION:
376 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
377 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
378
379 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
380 case TargetLowering::Promote:
381 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000382 case TargetLowering::Expand: {
Jim Laskeyb2efb852006-01-04 22:28:25 +0000383 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000384 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
385 bool useDEBUG_LABEL = TLI.isOperationLegal(ISD::DEBUG_LABEL, MVT::Other);
386
387 if (DebugInfo && (useDEBUG_LOC || useDEBUG_LABEL)) {
388 const std::string &FName =
389 cast<StringSDNode>(Node->getOperand(3))->getValue();
390 const std::string &DirName =
391 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey063e7652006-01-17 17:31:53 +0000392 unsigned SrcFile = DebugInfo->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000393
Jim Laskeye81aecb2005-12-21 20:51:37 +0000394 std::vector<SDOperand> Ops;
395 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +0000396 SDOperand LineOp = Node->getOperand(1);
397 SDOperand ColOp = Node->getOperand(2);
398
399 if (useDEBUG_LOC) {
400 Ops.push_back(LineOp); // line #
401 Ops.push_back(ColOp); // col #
402 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
403 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops);
404 } else {
405 unsigned Line = dyn_cast<ConstantSDNode>(LineOp)->getValue();
406 unsigned Col = dyn_cast<ConstantSDNode>(ColOp)->getValue();
407 unsigned ID = DebugInfo->RecordLabel(Line, Col, SrcFile);
408 Ops.push_back(DAG.getConstant(ID, MVT::i32));
409 Result = DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops);
410 }
Jim Laskeye81aecb2005-12-21 20:51:37 +0000411 } else {
412 Result = Tmp1; // chain
413 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000414 break;
Chris Lattnere7736732005-12-18 23:54:29 +0000415 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000416 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +0000417 if (Tmp1 != Node->getOperand(0) ||
418 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattner36ce6912005-11-29 06:21:05 +0000419 std::vector<SDOperand> Ops;
420 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +0000421 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
422 Ops.push_back(Node->getOperand(1)); // line # must be legal.
423 Ops.push_back(Node->getOperand(2)); // col # must be legal.
424 } else {
425 // Otherwise promote them.
426 Ops.push_back(PromoteOp(Node->getOperand(1)));
427 Ops.push_back(PromoteOp(Node->getOperand(2)));
428 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000429 Ops.push_back(Node->getOperand(3)); // filename must be legal.
430 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000431 Result = DAG.UpdateNodeOperands(Result, Ops);
Chris Lattner36ce6912005-11-29 06:21:05 +0000432 }
433 break;
434 }
435 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000436
437 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +0000438 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000439 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000440 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +0000441 case TargetLowering::Legal:
442 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
443 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
444 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
445 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000446 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000447 break;
448 }
449 break;
450
451 case ISD::DEBUG_LABEL:
452 assert(Node->getNumOperands() == 2 && "Invalid DEBUG_LABEL node!");
453 switch (TLI.getOperationAction(ISD::DEBUG_LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000454 default: assert(0 && "This action is not supported yet!");
455 case TargetLowering::Legal:
456 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
457 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000458 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000459 break;
460 }
461 break;
Chris Lattner36ce6912005-11-29 06:21:05 +0000462
Chris Lattner3e928bb2005-01-07 07:47:09 +0000463 case ISD::Constant:
464 // We know we don't need to expand constants here, constants only have one
465 // value and we check that it is fine above.
466
467 // FIXME: Maybe we should handle things like targets that don't support full
468 // 32-bit immediates?
469 break;
470 case ISD::ConstantFP: {
471 // Spill FP immediates to the constant pool if the target cannot directly
472 // codegen them. Targets often have some immediate values that can be
473 // efficiently generated into an FP register without a load. We explicitly
474 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000475 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
476
477 // Check to see if this FP immediate is already legal.
478 bool isLegal = false;
479 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
480 E = TLI.legal_fpimm_end(); I != E; ++I)
481 if (CFP->isExactlyValue(*I)) {
482 isLegal = true;
483 break;
484 }
485
Chris Lattner3181a772006-01-29 06:26:56 +0000486 // If this is a legal constant, turn it into a TargetConstantFP node.
487 if (isLegal) {
488 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
489 break;
490 }
491
492 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
493 default: assert(0 && "This action is not supported yet!");
494 case TargetLowering::Custom:
495 Tmp3 = TLI.LowerOperation(Result, DAG);
496 if (Tmp3.Val) {
497 Result = Tmp3;
498 break;
499 }
500 // FALLTHROUGH
501 case TargetLowering::Expand:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000502 // Otherwise we need to spill the constant to memory.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000503 bool Extend = false;
504
Chris Lattner456a93a2006-01-28 07:39:30 +0000505 // If a FP immediate is precise when represented as a float and if the
506 // target can do an extending load from float to double, we put it into
507 // the constant pool as a float, even if it's is statically typed as a
508 // double.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000509 MVT::ValueType VT = CFP->getValueType(0);
510 bool isDouble = VT == MVT::f64;
511 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
512 Type::FloatTy, CFP->getValue());
Chris Lattner99939d32005-01-28 22:58:25 +0000513 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
514 // Only do this if the target has a native EXTLOAD instruction from
515 // f32.
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000516 TLI.isOperationLegal(ISD::EXTLOAD, MVT::f32)) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000517 LLVMC = cast<ConstantFP>(ConstantExpr::getCast(LLVMC, Type::FloatTy));
518 VT = MVT::f32;
519 Extend = true;
520 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000521
Chris Lattner456a93a2006-01-28 07:39:30 +0000522 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Chris Lattnerf8161d82005-01-16 05:06:12 +0000523 if (Extend) {
Chris Lattner5f056bf2005-07-10 01:55:33 +0000524 Result = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
525 CPIdx, DAG.getSrcValue(NULL), MVT::f32);
Chris Lattnerf8161d82005-01-16 05:06:12 +0000526 } else {
Chris Lattner52d08bd2005-05-09 20:23:03 +0000527 Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
528 DAG.getSrcValue(NULL));
Chris Lattnerf8161d82005-01-16 05:06:12 +0000529 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000530 }
531 break;
532 }
Chris Lattner8ca05e02006-01-29 06:34:16 +0000533 case ISD::ConstantVec:
534 switch (TLI.getOperationAction(ISD::ConstantVec, Node->getValueType(0))) {
535 default: assert(0 && "This action is not supported yet!");
536 case TargetLowering::Custom:
537 Tmp3 = TLI.LowerOperation(Result, DAG);
538 if (Tmp3.Val) {
539 Result = Tmp3;
540 break;
541 }
542 // FALLTHROUGH
543 case TargetLowering::Expand:
544 // We assume that vector constants are not legal, and will be immediately
545 // spilled to the constant pool.
546 //
547 // Create a ConstantPacked, and put it in the constant pool.
548 MVT::ValueType VT = Node->getValueType(0);
549 const Type *OpNTy =
550 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
551 std::vector<Constant*> CV;
552 if (MVT::isFloatingPoint(VT)) {
553 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
554 double V = cast<ConstantFPSDNode>(Node->getOperand(i))->getValue();
555 CV.push_back(ConstantFP::get(OpNTy, V));
556 }
557 } else {
558 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
559 uint64_t V = cast<ConstantSDNode>(Node->getOperand(i))->getValue();
560 CV.push_back(ConstantUInt::get(OpNTy, V));
561 }
562 }
563 Constant *CP = ConstantPacked::get(CV);
564 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
565 Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
566 DAG.getSrcValue(NULL));
567 break;
Nate Begeman8cfa57b2005-12-06 06:18:55 +0000568 }
Nate Begeman8cfa57b2005-12-06 06:18:55 +0000569 break;
Chris Lattner040c11c2005-11-09 18:48:57 +0000570 case ISD::TokenFactor:
571 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000572 Tmp1 = LegalizeOp(Node->getOperand(0));
573 Tmp2 = LegalizeOp(Node->getOperand(1));
574 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
575 } else if (Node->getNumOperands() == 3) {
576 Tmp1 = LegalizeOp(Node->getOperand(0));
577 Tmp2 = LegalizeOp(Node->getOperand(1));
578 Tmp3 = LegalizeOp(Node->getOperand(2));
579 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +0000580 } else {
581 std::vector<SDOperand> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +0000582 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000583 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
584 Ops.push_back(LegalizeOp(Node->getOperand(i)));
585 Result = DAG.UpdateNodeOperands(Result, Ops);
Chris Lattnera385e9b2005-01-13 17:59:25 +0000586 }
Chris Lattnera385e9b2005-01-13 17:59:25 +0000587 break;
Chris Lattnera385e9b2005-01-13 17:59:25 +0000588
Chris Lattner16cd04d2005-05-12 23:24:06 +0000589 case ISD::CALLSEQ_START:
590 case ISD::CALLSEQ_END:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000591 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +0000592 // Do not try to legalize the target-specific arguments (#1+), except for
593 // an optional flag input.
594 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
595 if (Tmp1 != Node->getOperand(0)) {
596 std::vector<SDOperand> Ops(Node->op_begin(), Node->op_end());
597 Ops[0] = Tmp1;
598 Result = DAG.UpdateNodeOperands(Result, Ops);
599 }
600 } else {
601 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
602 if (Tmp1 != Node->getOperand(0) ||
603 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
604 std::vector<SDOperand> Ops(Node->op_begin(), Node->op_end());
605 Ops[0] = Tmp1;
606 Ops.back() = Tmp2;
607 Result = DAG.UpdateNodeOperands(Result, Ops);
608 }
Chris Lattner6a542892006-01-24 05:48:21 +0000609 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000610 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +0000611 case ISD::DYNAMIC_STACKALLOC: {
Chris Lattnerfa404e82005-01-09 19:03:49 +0000612 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
613 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
614 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000615 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +0000616
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000617 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +0000618 Tmp2 = Result.getValue(1);
Evan Chenga7dce3c2006-01-11 22:14:47 +0000619 switch (TLI.getOperationAction(Node->getOpcode(),
620 Node->getValueType(0))) {
621 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +0000622 case TargetLowering::Expand: {
623 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
624 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
625 " not tell us which reg is the stack pointer!");
626 SDOperand Chain = Tmp1.getOperand(0);
627 SDOperand Size = Tmp2.getOperand(1);
628 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
629 Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size); // Value
630 Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1); // Output chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000631 Tmp1 = LegalizeOp(Tmp1);
632 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +0000633 break;
634 }
635 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +0000636 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
637 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000638 Tmp1 = LegalizeOp(Tmp3);
639 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +0000640 }
Chris Lattner903d2782006-01-15 08:54:32 +0000641 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +0000642 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +0000643 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +0000644 }
Chris Lattner903d2782006-01-15 08:54:32 +0000645 // Since this op produce two values, make sure to remember that we
646 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000647 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
648 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +0000649 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +0000650 }
Chris Lattnerce7518c2006-01-26 22:24:51 +0000651 case ISD::INLINEASM:
652 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize Chain.
653 Tmp2 = Node->getOperand(Node->getNumOperands()-1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000654 if (Tmp2.getValueType() == MVT::Flag) // Legalize Flag if it exists.
Chris Lattnerce7518c2006-01-26 22:24:51 +0000655 Tmp2 = Tmp3 = SDOperand(0, 0);
656 else
657 Tmp3 = LegalizeOp(Tmp2);
658
659 if (Tmp1 != Node->getOperand(0) || Tmp2 != Tmp3) {
660 std::vector<SDOperand> Ops(Node->op_begin(), Node->op_end());
661 Ops[0] = Tmp1;
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000662 if (Tmp3.Val) Ops.back() = Tmp3;
663 Result = DAG.UpdateNodeOperands(Result, Ops);
Chris Lattnerce7518c2006-01-26 22:24:51 +0000664 }
665
666 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000667 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +0000668 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
669 return Result.getValue(Op.ResNo);
Chris Lattnerc7af1792005-01-07 22:12:08 +0000670 case ISD::BR:
671 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000672 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +0000673 break;
674
Chris Lattnerc18ae4c2005-01-07 08:19:42 +0000675 case ISD::BRCOND:
676 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Nate Begeman7cbd5252005-08-16 19:49:35 +0000677
Chris Lattner47e92232005-01-18 19:27:06 +0000678 switch (getTypeAction(Node->getOperand(1).getValueType())) {
679 case Expand: assert(0 && "It's impossible to expand bools");
680 case Legal:
681 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
682 break;
683 case Promote:
684 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
685 break;
686 }
Chris Lattner456a93a2006-01-28 07:39:30 +0000687
688 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000689 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +0000690
691 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
692 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +0000693 case TargetLowering::Legal: break;
694 case TargetLowering::Custom:
695 Tmp1 = TLI.LowerOperation(Result, DAG);
696 if (Tmp1.Val) Result = Tmp1;
697 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +0000698 case TargetLowering::Expand:
699 // Expand brcond's setcc into its constituent parts and create a BR_CC
700 // Node.
701 if (Tmp2.getOpcode() == ISD::SETCC) {
702 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
703 Tmp2.getOperand(0), Tmp2.getOperand(1),
704 Node->getOperand(2));
705 } else {
Chris Lattner550b1e52005-08-21 18:03:09 +0000706 // Make sure the condition is either zero or one. It may have been
707 // promoted from something else.
Chris Lattner19c5c4c2006-01-31 05:04:52 +0000708 unsigned NumBits = MVT::getSizeInBits(Tmp2.getValueType());
709 if (!TLI.MaskedValueIsZero(Tmp2, (~0ULL >> (64-NumBits))^1))
710 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner550b1e52005-08-21 18:03:09 +0000711
Nate Begeman7cbd5252005-08-16 19:49:35 +0000712 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
713 DAG.getCondCode(ISD::SETNE), Tmp2,
714 DAG.getConstant(0, Tmp2.getValueType()),
715 Node->getOperand(2));
716 }
717 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +0000718 }
719 break;
720 case ISD::BR_CC:
721 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Nate Begeman750ac1b2006-02-01 07:19:44 +0000722 Tmp2 = Node->getOperand(2); // LHS
723 Tmp3 = Node->getOperand(3); // RHS
724 Tmp4 = Node->getOperand(1); // CC
725
726 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
727
728 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
729 // the LHS is a legal SETCC itself. In this case, we need to compare
730 // the result against zero to select between true and false values.
731 if (Tmp3.Val == 0) {
732 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
733 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +0000734 }
Nate Begeman750ac1b2006-02-01 07:19:44 +0000735
736 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
737 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +0000738
Chris Lattner181b7a32005-12-17 23:46:46 +0000739 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
740 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +0000741 case TargetLowering::Legal: break;
742 case TargetLowering::Custom:
743 Tmp4 = TLI.LowerOperation(Result, DAG);
744 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +0000745 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +0000746 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +0000747 break;
Chris Lattner411e8882005-04-09 03:30:19 +0000748 case ISD::BRCONDTWOWAY:
749 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
750 switch (getTypeAction(Node->getOperand(1).getValueType())) {
751 case Expand: assert(0 && "It's impossible to expand bools");
752 case Legal:
753 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
754 break;
755 case Promote:
756 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
757 break;
758 }
Chris Lattner456a93a2006-01-28 07:39:30 +0000759
Chris Lattner411e8882005-04-09 03:30:19 +0000760 // If this target does not support BRCONDTWOWAY, lower it to a BRCOND/BR
761 // pair.
762 switch (TLI.getOperationAction(ISD::BRCONDTWOWAY, MVT::Other)) {
763 case TargetLowering::Promote:
764 default: assert(0 && "This action is not supported yet!");
765 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000766 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
767 Node->getOperand(3));
Chris Lattner411e8882005-04-09 03:30:19 +0000768 break;
769 case TargetLowering::Expand:
Nate Begeman7cbd5252005-08-16 19:49:35 +0000770 // If BRTWOWAY_CC is legal for this target, then simply expand this node
771 // to that. Otherwise, skip BRTWOWAY_CC and expand directly to a
772 // BRCOND/BR pair.
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000773 if (TLI.isOperationLegal(ISD::BRTWOWAY_CC, MVT::Other)) {
Nate Begeman7cbd5252005-08-16 19:49:35 +0000774 if (Tmp2.getOpcode() == ISD::SETCC) {
Chris Lattner03d5e872006-01-29 06:00:45 +0000775 Tmp3 = Tmp2.getOperand(0);
776 Tmp4 = Tmp2.getOperand(1);
777 Tmp2 = Tmp2.getOperand(2);
Nate Begeman7cbd5252005-08-16 19:49:35 +0000778 } else {
Chris Lattner03d5e872006-01-29 06:00:45 +0000779 Tmp3 = Tmp2;
780 Tmp4 = DAG.getConstant(0, Tmp2.getValueType());
781 Tmp2 = DAG.getCondCode(ISD::SETNE);
Nate Begeman7cbd5252005-08-16 19:49:35 +0000782 }
Chris Lattner03d5e872006-01-29 06:00:45 +0000783 std::vector<SDOperand> Ops;
784 Ops.push_back(Tmp1);
785 Ops.push_back(Tmp2);
786 Ops.push_back(Tmp3);
787 Ops.push_back(Tmp4);
788 Ops.push_back(Node->getOperand(2));
789 Ops.push_back(Node->getOperand(3));
790 Result = DAG.getNode(ISD::BRTWOWAY_CC, MVT::Other, Ops);
Nate Begeman7cbd5252005-08-16 19:49:35 +0000791 } else {
792 Result = DAG.getNode(ISD::BRCOND, MVT::Other, Tmp1, Tmp2,
Chris Lattner456a93a2006-01-28 07:39:30 +0000793 Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +0000794 Result = DAG.getNode(ISD::BR, MVT::Other, Result, Node->getOperand(3));
795 }
Chris Lattner411e8882005-04-09 03:30:19 +0000796 break;
797 }
798 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +0000799 case ISD::BRTWOWAY_CC: {
Nate Begeman7cbd5252005-08-16 19:49:35 +0000800 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Nate Begeman750ac1b2006-02-01 07:19:44 +0000801 Tmp2 = Node->getOperand(2); // LHS
802 Tmp3 = Node->getOperand(3); // RHS
803 Tmp4 = Node->getOperand(1); // CC
804
805 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
806
807 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
808 // the LHS is a legal SETCC itself. In this case, we need to compare
809 // the result against zero to select between true and false values.
810 if (Tmp3.Val == 0) {
811 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
812 Tmp4 = DAG.getCondCode(ISD::SETNE);
813 }
814 std::vector<SDOperand> Ops;
815 Ops.push_back(Tmp1);
816 Ops.push_back(Tmp4);
817 Ops.push_back(Tmp2);
818 Ops.push_back(Tmp3);
819 Ops.push_back(Node->getOperand(4));
820 Ops.push_back(Node->getOperand(5));
821 Result = DAG.UpdateNodeOperands(Result, Ops);
822
823 // Everything is legal, see if we should expand this op or something.
824 switch (TLI.getOperationAction(ISD::BRTWOWAY_CC, MVT::Other)) {
825 default: assert(0 && "This action is not supported yet!");
826 case TargetLowering::Legal: break;
827 case TargetLowering::Expand:
828 Result = DAG.getNode(ISD::BRCOND, MVT::Other, Tmp1,
829 DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), Tmp2,
830 Tmp3, Tmp4),
831 Result.getOperand(4));
832 Result = DAG.getNode(ISD::BR, MVT::Other, Result, Result.getOperand(5));
Nate Begeman7cbd5252005-08-16 19:49:35 +0000833 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +0000834 }
835 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +0000836 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +0000837 case ISD::LOAD: {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000838 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
839 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000840
Evan Chengf3fd9fe2005-12-23 07:29:34 +0000841 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000842 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
843 Tmp2 = Result.getValue(0);
844 Tmp3 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +0000845
Evan Chengf3fd9fe2005-12-23 07:29:34 +0000846 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
847 default: assert(0 && "This action is not supported yet!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000848 case TargetLowering::Legal: break;
Chris Lattner456a93a2006-01-28 07:39:30 +0000849 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000850 Tmp1 = TLI.LowerOperation(Tmp2, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +0000851 if (Tmp1.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000852 Tmp2 = LegalizeOp(Tmp1);
853 Tmp3 = LegalizeOp(Tmp1.getValue(1));
Evan Chengf3fd9fe2005-12-23 07:29:34 +0000854 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000855 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +0000856 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000857 // Since loads produce two values, make sure to remember that we
858 // legalized both of them.
859 AddLegalizedOperand(SDOperand(Node, 0), Tmp2);
860 AddLegalizedOperand(SDOperand(Node, 1), Tmp3);
861 return Op.ResNo ? Tmp3 : Tmp2;
Evan Chengf3fd9fe2005-12-23 07:29:34 +0000862 }
Chris Lattner0f69b292005-01-15 06:18:18 +0000863 case ISD::EXTLOAD:
864 case ISD::SEXTLOAD:
Chris Lattner01ff7212005-04-10 22:54:25 +0000865 case ISD::ZEXTLOAD: {
Chris Lattner0f69b292005-01-15 06:18:18 +0000866 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
867 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattner0f69b292005-01-15 06:18:18 +0000868
Chris Lattner5f056bf2005-07-10 01:55:33 +0000869 MVT::ValueType SrcVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
Chris Lattner01ff7212005-04-10 22:54:25 +0000870 switch (TLI.getOperationAction(Node->getOpcode(), SrcVT)) {
Chris Lattner01ff7212005-04-10 22:54:25 +0000871 default: assert(0 && "This action is not supported yet!");
Chris Lattner1c51c6a2005-04-12 20:30:10 +0000872 case TargetLowering::Promote:
873 assert(SrcVT == MVT::i1 && "Can only promote EXTLOAD from i1 -> i8!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000874 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
875 DAG.getValueType(MVT::i8));
876 Tmp1 = Result.getValue(0);
877 Tmp2 = Result.getValue(1);
878 break;
Chris Lattner456a93a2006-01-28 07:39:30 +0000879 case TargetLowering::Custom:
880 isCustom = true;
881 // FALLTHROUGH
Chris Lattner01ff7212005-04-10 22:54:25 +0000882 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000883 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
884 Node->getOperand(3));
885 Tmp1 = Result.getValue(0);
886 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +0000887
888 if (isCustom) {
889 Tmp3 = TLI.LowerOperation(Tmp3, DAG);
890 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000891 Tmp1 = LegalizeOp(Tmp3);
892 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +0000893 }
894 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000895 break;
Chris Lattner01ff7212005-04-10 22:54:25 +0000896 case TargetLowering::Expand:
Chris Lattner69a889e2005-12-20 00:53:54 +0000897 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Andrew Lenharth9d416f72005-06-30 19:22:37 +0000898 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
899 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, Node->getOperand(2));
Andrew Lenharth31559082005-06-30 19:32:57 +0000900 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000901 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
902 Tmp2 = LegalizeOp(Load.getValue(1));
903 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +0000904 }
Chris Lattner01ff7212005-04-10 22:54:25 +0000905 assert(Node->getOpcode() != ISD::EXTLOAD &&
906 "EXTLOAD should always be supported!");
907 // Turn the unsupported load into an EXTLOAD followed by an explicit
908 // zero/sign extend inreg.
Chris Lattner5f056bf2005-07-10 01:55:33 +0000909 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
910 Tmp1, Tmp2, Node->getOperand(2), SrcVT);
Chris Lattner23993562005-04-13 02:38:47 +0000911 SDOperand ValRes;
912 if (Node->getOpcode() == ISD::SEXTLOAD)
913 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +0000914 Result, DAG.getValueType(SrcVT));
Chris Lattner23993562005-04-13 02:38:47 +0000915 else
916 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000917 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
918 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
919 break;
Chris Lattner01ff7212005-04-10 22:54:25 +0000920 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000921 // Since loads produce two values, make sure to remember that we legalized
922 // both of them.
923 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
924 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
925 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +0000926 }
Nate Begeman5dc897b2005-10-19 00:06:56 +0000927 case ISD::EXTRACT_ELEMENT: {
928 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
929 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000930 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +0000931 case Legal:
932 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
933 // 1 -> Hi
934 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
935 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
936 TLI.getShiftAmountTy()));
937 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
938 } else {
939 // 0 -> Lo
940 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
941 Node->getOperand(0));
942 }
Nate Begeman5dc897b2005-10-19 00:06:56 +0000943 break;
944 case Expand:
945 // Get both the low and high parts.
946 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
947 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
948 Result = Tmp2; // 1 -> Hi
949 else
950 Result = Tmp1; // 0 -> Lo
951 break;
952 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000953 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +0000954 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000955
956 case ISD::CopyToReg:
957 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000958
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000959 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000960 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +0000961 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000962 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000963 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000964 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +0000965 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000966 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000967 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000968 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000969 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
970 Tmp3);
971 } else {
972 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +0000973 }
974
975 // Since this produces two values, make sure to remember that we legalized
976 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000977 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000978 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000979 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +0000980 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000981 break;
982
983 case ISD::RET:
984 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
985 switch (Node->getNumOperands()) {
986 case 2: // ret val
987 switch (getTypeAction(Node->getOperand(1).getValueType())) {
988 case Legal:
989 Tmp2 = LegalizeOp(Node->getOperand(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000990 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000991 break;
992 case Expand: {
993 SDOperand Lo, Hi;
994 ExpandOp(Node->getOperand(1), Lo, Hi);
995 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Hi);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000996 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000997 }
998 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +0000999 Tmp2 = PromoteOp(Node->getOperand(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001000 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1001 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001002 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001003 }
1004 break;
1005 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001006 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001007 break;
1008 default: { // ret <values>
1009 std::vector<SDOperand> NewValues;
1010 NewValues.push_back(Tmp1);
1011 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i)
1012 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1013 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00001014 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001015 break;
1016 case Expand: {
1017 SDOperand Lo, Hi;
1018 ExpandOp(Node->getOperand(i), Lo, Hi);
1019 NewValues.push_back(Lo);
1020 NewValues.push_back(Hi);
Misha Brukmanedf128a2005-04-21 22:36:52 +00001021 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001022 }
1023 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001024 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001025 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001026
1027 if (NewValues.size() == Node->getNumOperands())
1028 Result = DAG.UpdateNodeOperands(Result, NewValues);
1029 else
1030 Result = DAG.getNode(ISD::RET, MVT::Other, NewValues);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001031 break;
1032 }
1033 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001034
Chris Lattner6862dbc2006-01-29 21:02:23 +00001035 if (Result.getOpcode() == ISD::RET) {
1036 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1037 default: assert(0 && "This action is not supported yet!");
1038 case TargetLowering::Legal: break;
1039 case TargetLowering::Custom:
1040 Tmp1 = TLI.LowerOperation(Result, DAG);
1041 if (Tmp1.Val) Result = Tmp1;
1042 break;
1043 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001044 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001045 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001046 case ISD::STORE: {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001047 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1048 Tmp2 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
1049
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001050 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Chris Lattner456a93a2006-01-28 07:39:30 +00001051 // FIXME: We shouldn't do this for TargetConstantFP's.
Chris Lattner03c85462005-01-15 05:21:40 +00001052 if (ConstantFPSDNode *CFP =dyn_cast<ConstantFPSDNode>(Node->getOperand(1))){
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001053 if (CFP->getValueType(0) == MVT::f32) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001054 Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001055 } else {
1056 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001057 Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001058 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001059 Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Tmp3, Tmp2,
1060 Node->getOperand(3));
Chris Lattner6a542892006-01-24 05:48:21 +00001061 break;
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001062 }
1063
Chris Lattner3e928bb2005-01-07 07:47:09 +00001064 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1065 case Legal: {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001066 Tmp3 = LegalizeOp(Node->getOperand(1));
1067 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1068 Node->getOperand(3));
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001069
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001070 MVT::ValueType VT = Tmp3.getValueType();
Chris Lattner456a93a2006-01-28 07:39:30 +00001071 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1072 default: assert(0 && "This action is not supported yet!");
1073 case TargetLowering::Legal: break;
1074 case TargetLowering::Custom:
1075 Tmp1 = TLI.LowerOperation(Result, DAG);
1076 if (Tmp1.Val) Result = Tmp1;
1077 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001078 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001079 break;
1080 }
1081 case Promote:
Chris Lattner03c85462005-01-15 05:21:40 +00001082 // Truncate the value and store the result.
1083 Tmp3 = PromoteOp(Node->getOperand(1));
1084 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp3, Tmp2,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001085 Node->getOperand(3),
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001086 DAG.getValueType(Node->getOperand(1).getValueType()));
Chris Lattner03c85462005-01-15 05:21:40 +00001087 break;
1088
Chris Lattner3e928bb2005-01-07 07:47:09 +00001089 case Expand:
1090 SDOperand Lo, Hi;
1091 ExpandOp(Node->getOperand(1), Lo, Hi);
1092
1093 if (!TLI.isLittleEndian())
1094 std::swap(Lo, Hi);
1095
Chris Lattneredb1add2005-05-11 04:51:16 +00001096 Lo = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Lo, Tmp2,
1097 Node->getOperand(3));
Nate Begemanab48be32005-11-22 18:16:00 +00001098 // If this is a vector type, then we have to calculate the increment as
1099 // the product of the element size in bytes, and the number of elements
1100 // in the high half of the vector.
Chris Lattner456a93a2006-01-28 07:39:30 +00001101 unsigned IncrementSize;
Nate Begemanab48be32005-11-22 18:16:00 +00001102 if (MVT::Vector == Hi.getValueType()) {
1103 unsigned NumElems = cast<ConstantSDNode>(Hi.getOperand(2))->getValue();
1104 MVT::ValueType EVT = cast<VTSDNode>(Hi.getOperand(3))->getVT();
1105 IncrementSize = NumElems * MVT::getSizeInBits(EVT)/8;
1106 } else {
1107 IncrementSize = MVT::getSizeInBits(Hi.getValueType())/8;
1108 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001109 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1110 getIntPtrConstant(IncrementSize));
1111 assert(isTypeLegal(Tmp2.getValueType()) &&
1112 "Pointers must be legal!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001113 // FIXME: This sets the srcvalue of both halves to be the same, which is
1114 // wrong.
Chris Lattneredb1add2005-05-11 04:51:16 +00001115 Hi = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Hi, Tmp2,
1116 Node->getOperand(3));
Chris Lattnerec39a452005-01-19 18:02:17 +00001117 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1118 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001119 }
1120 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001121 }
Andrew Lenharth95762122005-03-31 21:24:06 +00001122 case ISD::PCMARKER:
1123 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001124 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00001125 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001126 case ISD::STACKSAVE:
1127 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001128 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1129 Tmp1 = Result.getValue(0);
1130 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001131
Chris Lattner140d53c2006-01-13 02:50:02 +00001132 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1133 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001134 case TargetLowering::Legal: break;
1135 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001136 Tmp3 = TLI.LowerOperation(Result, DAG);
1137 if (Tmp3.Val) {
1138 Tmp1 = LegalizeOp(Tmp3);
1139 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00001140 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001141 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001142 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001143 // Expand to CopyFromReg if the target set
1144 // StackPointerRegisterToSaveRestore.
1145 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001146 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001147 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001148 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001149 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001150 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1151 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001152 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001153 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001154 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001155
1156 // Since stacksave produce two values, make sure to remember that we
1157 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001158 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1159 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1160 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00001161
Chris Lattner140d53c2006-01-13 02:50:02 +00001162 case ISD::STACKRESTORE:
1163 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1164 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001165 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00001166
1167 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1168 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001169 case TargetLowering::Legal: break;
1170 case TargetLowering::Custom:
1171 Tmp1 = TLI.LowerOperation(Result, DAG);
1172 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00001173 break;
1174 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001175 // Expand to CopyToReg if the target set
1176 // StackPointerRegisterToSaveRestore.
1177 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1178 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1179 } else {
1180 Result = Tmp1;
1181 }
Chris Lattner140d53c2006-01-13 02:50:02 +00001182 break;
1183 }
1184 break;
1185
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001186 case ISD::READCYCLECOUNTER:
1187 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001188 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth49c709f2005-12-02 04:56:24 +00001189
1190 // Since rdcc produce two values, make sure to remember that we legalized
1191 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001192 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Andrew Lenharth49c709f2005-12-02 04:56:24 +00001193 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001194 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00001195
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001196 case ISD::TRUNCSTORE: {
Chris Lattner0f69b292005-01-15 06:18:18 +00001197 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1198 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
1199
Chris Lattner456a93a2006-01-28 07:39:30 +00001200 assert(isTypeLegal(Node->getOperand(1).getValueType()) &&
1201 "Cannot handle illegal TRUNCSTORE yet!");
1202 Tmp2 = LegalizeOp(Node->getOperand(1));
1203
1204 // The only promote case we handle is TRUNCSTORE:i1 X into
1205 // -> TRUNCSTORE:i8 (and X, 1)
1206 if (cast<VTSDNode>(Node->getOperand(4))->getVT() == MVT::i1 &&
1207 TLI.getOperationAction(ISD::TRUNCSTORE, MVT::i1) ==
1208 TargetLowering::Promote) {
1209 // Promote the bool to a mask then store.
1210 Tmp2 = DAG.getNode(ISD::AND, Tmp2.getValueType(), Tmp2,
1211 DAG.getConstant(1, Tmp2.getValueType()));
1212 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp2, Tmp3,
1213 Node->getOperand(3), DAG.getValueType(MVT::i8));
Chris Lattner13d58e72005-09-10 00:20:18 +00001214
Chris Lattner456a93a2006-01-28 07:39:30 +00001215 } else if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) ||
1216 Tmp3 != Node->getOperand(2)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001217 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
1218 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001219 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001220
Chris Lattner456a93a2006-01-28 07:39:30 +00001221 MVT::ValueType StVT = cast<VTSDNode>(Result.Val->getOperand(4))->getVT();
1222 switch (TLI.getOperationAction(Result.Val->getOpcode(), StVT)) {
1223 default: assert(0 && "This action is not supported yet!");
1224 case TargetLowering::Legal: break;
1225 case TargetLowering::Custom:
1226 Tmp1 = TLI.LowerOperation(Result, DAG);
1227 if (Tmp1.Val) Result = Tmp1;
Chris Lattner0f69b292005-01-15 06:18:18 +00001228 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00001229 }
1230 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001231 }
Chris Lattner2ee743f2005-01-14 22:08:15 +00001232 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00001233 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1234 case Expand: assert(0 && "It's impossible to expand bools");
1235 case Legal:
1236 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1237 break;
1238 case Promote:
1239 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
1240 break;
1241 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001242 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00001243 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001244
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001245 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00001246
Nate Begemanb942a3d2005-08-23 04:29:48 +00001247 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001248 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001249 case TargetLowering::Legal: break;
1250 case TargetLowering::Custom: {
1251 Tmp1 = TLI.LowerOperation(Result, DAG);
1252 if (Tmp1.Val) Result = Tmp1;
1253 break;
1254 }
Nate Begeman9373a812005-08-10 20:51:12 +00001255 case TargetLowering::Expand:
1256 if (Tmp1.getOpcode() == ISD::SETCC) {
1257 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
1258 Tmp2, Tmp3,
1259 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1260 } else {
Chris Lattner550b1e52005-08-21 18:03:09 +00001261 // Make sure the condition is either zero or one. It may have been
1262 // promoted from something else.
Chris Lattner0e753d62006-01-30 04:22:28 +00001263 unsigned NumBits = MVT::getSizeInBits(Tmp1.getValueType());
1264 if (!TLI.MaskedValueIsZero(Tmp1, (~0ULL >> (64-NumBits))^1))
1265 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Nate Begeman9373a812005-08-10 20:51:12 +00001266 Result = DAG.getSelectCC(Tmp1,
1267 DAG.getConstant(0, Tmp1.getValueType()),
1268 Tmp2, Tmp3, ISD::SETNE);
1269 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001270 break;
1271 case TargetLowering::Promote: {
1272 MVT::ValueType NVT =
1273 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1274 unsigned ExtOp, TruncOp;
1275 if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001276 ExtOp = ISD::ANY_EXTEND;
1277 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001278 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00001279 ExtOp = ISD::FP_EXTEND;
1280 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001281 }
1282 // Promote each of the values to the new type.
1283 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
1284 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
1285 // Perform the larger operation, then round down.
1286 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
1287 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
1288 break;
1289 }
1290 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001291 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00001292 case ISD::SELECT_CC: {
1293 Tmp1 = Node->getOperand(0); // LHS
1294 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00001295 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
1296 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00001297 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00001298
Nate Begeman750ac1b2006-02-01 07:19:44 +00001299 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
1300
1301 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1302 // the LHS is a legal SETCC itself. In this case, we need to compare
1303 // the result against zero to select between true and false values.
1304 if (Tmp2.Val == 0) {
1305 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
1306 CC = DAG.getCondCode(ISD::SETNE);
1307 }
1308 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
1309
1310 // Everything is legal, see if we should expand this op or something.
1311 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
1312 default: assert(0 && "This action is not supported yet!");
1313 case TargetLowering::Legal: break;
1314 case TargetLowering::Custom:
1315 Tmp1 = TLI.LowerOperation(Result, DAG);
1316 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00001317 break;
Nate Begeman9373a812005-08-10 20:51:12 +00001318 }
1319 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00001320 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001321 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00001322 Tmp1 = Node->getOperand(0);
1323 Tmp2 = Node->getOperand(1);
1324 Tmp3 = Node->getOperand(2);
1325 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
1326
1327 // If we had to Expand the SetCC operands into a SELECT node, then it may
1328 // not always be possible to return a true LHS & RHS. In this case, just
1329 // return the value we legalized, returned in the LHS
1330 if (Tmp2.Val == 0) {
1331 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001332 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001333 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00001334
Chris Lattner73e142f2006-01-30 22:43:50 +00001335 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001336 default: assert(0 && "Cannot handle this action for SETCC yet!");
1337 case TargetLowering::Custom:
1338 isCustom = true;
1339 // FALLTHROUGH.
1340 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001341 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00001342 if (isCustom) {
1343 Tmp3 = TLI.LowerOperation(Result, DAG);
1344 if (Tmp3.Val) Result = Tmp3;
1345 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00001346 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00001347 case TargetLowering::Promote: {
1348 // First step, figure out the appropriate operation to use.
1349 // Allow SETCC to not be supported for all legal data types
1350 // Mostly this targets FP
1351 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
1352 MVT::ValueType OldVT = NewInTy;
1353
1354 // Scan for the appropriate larger type to use.
1355 while (1) {
1356 NewInTy = (MVT::ValueType)(NewInTy+1);
1357
1358 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
1359 "Fell off of the edge of the integer world");
1360 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
1361 "Fell off of the edge of the floating point world");
1362
1363 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00001364 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00001365 break;
1366 }
1367 if (MVT::isInteger(NewInTy))
1368 assert(0 && "Cannot promote Legal Integer SETCC yet");
1369 else {
1370 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
1371 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
1372 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001373 Tmp1 = LegalizeOp(Tmp1);
1374 Tmp2 = LegalizeOp(Tmp2);
1375 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Cheng433f8ac2006-01-17 19:47:13 +00001376 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00001377 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00001378 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00001379 case TargetLowering::Expand:
1380 // Expand a setcc node into a select_cc of the same condition, lhs, and
1381 // rhs that selects between const 1 (true) and const 0 (false).
1382 MVT::ValueType VT = Node->getValueType(0);
1383 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
1384 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
1385 Node->getOperand(2));
Nate Begemanb942a3d2005-08-23 04:29:48 +00001386 break;
1387 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001388 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00001389 case ISD::MEMSET:
1390 case ISD::MEMCPY:
1391 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00001392 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00001393 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
1394
1395 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
1396 switch (getTypeAction(Node->getOperand(2).getValueType())) {
1397 case Expand: assert(0 && "Cannot expand a byte!");
1398 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00001399 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00001400 break;
1401 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00001402 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00001403 break;
1404 }
1405 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00001406 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00001407 }
Chris Lattner272455b2005-02-02 03:44:41 +00001408
1409 SDOperand Tmp4;
1410 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00001411 case Expand: {
1412 // Length is too big, just take the lo-part of the length.
1413 SDOperand HiPart;
1414 ExpandOp(Node->getOperand(3), HiPart, Tmp4);
1415 break;
1416 }
Chris Lattnere5605212005-01-28 22:29:18 +00001417 case Legal:
1418 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00001419 break;
1420 case Promote:
1421 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00001422 break;
1423 }
1424
1425 SDOperand Tmp5;
1426 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
1427 case Expand: assert(0 && "Cannot expand this yet!");
1428 case Legal:
1429 Tmp5 = LegalizeOp(Node->getOperand(4));
1430 break;
1431 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00001432 Tmp5 = PromoteOp(Node->getOperand(4));
1433 break;
1434 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001435
1436 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
1437 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001438 case TargetLowering::Custom:
1439 isCustom = true;
1440 // FALLTHROUGH
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001441 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001442 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner456a93a2006-01-28 07:39:30 +00001443 if (isCustom) {
1444 Tmp1 = TLI.LowerOperation(Result, DAG);
1445 if (Tmp1.Val) Result = Tmp1;
1446 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001447 break;
1448 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00001449 // Otherwise, the target does not support this operation. Lower the
1450 // operation to an explicit libcall as appropriate.
1451 MVT::ValueType IntPtr = TLI.getPointerTy();
1452 const Type *IntPtrTy = TLI.getTargetData().getIntPtrType();
1453 std::vector<std::pair<SDOperand, const Type*> > Args;
1454
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00001455 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00001456 if (Node->getOpcode() == ISD::MEMSET) {
1457 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
1458 // Extend the ubyte argument to be an int value for the call.
1459 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
1460 Args.push_back(std::make_pair(Tmp3, Type::IntTy));
1461 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
1462
1463 FnName = "memset";
1464 } else if (Node->getOpcode() == ISD::MEMCPY ||
1465 Node->getOpcode() == ISD::MEMMOVE) {
1466 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
1467 Args.push_back(std::make_pair(Tmp3, IntPtrTy));
1468 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
1469 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
1470 } else {
1471 assert(0 && "Unknown op!");
1472 }
Chris Lattner45982da2005-05-12 16:53:42 +00001473
Chris Lattnere1bd8222005-01-11 05:57:22 +00001474 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattneradf6a962005-05-13 18:50:42 +00001475 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00001476 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00001477 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001478 break;
1479 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00001480 }
1481 break;
1482 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00001483
1484 case ISD::READPORT:
Chris Lattner52d08bd2005-05-09 20:23:03 +00001485 Tmp1 = LegalizeOp(Node->getOperand(0));
1486 Tmp2 = LegalizeOp(Node->getOperand(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001487 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner6d5b8e12005-05-09 20:36:57 +00001488
Chris Lattner52d08bd2005-05-09 20:23:03 +00001489 // Since these produce two values, make sure to remember that we legalized
1490 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001491 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner52d08bd2005-05-09 20:23:03 +00001492 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001493 return Result;
Chris Lattner52d08bd2005-05-09 20:23:03 +00001494 case ISD::WRITEPORT:
Chris Lattner52d08bd2005-05-09 20:23:03 +00001495 Tmp1 = LegalizeOp(Node->getOperand(0));
1496 Tmp2 = LegalizeOp(Node->getOperand(1));
1497 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001498 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner52d08bd2005-05-09 20:23:03 +00001499 break;
1500
Chris Lattner6d5b8e12005-05-09 20:36:57 +00001501 case ISD::READIO:
1502 Tmp1 = LegalizeOp(Node->getOperand(0));
1503 Tmp2 = LegalizeOp(Node->getOperand(1));
1504
1505 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1506 case TargetLowering::Custom:
1507 default: assert(0 && "This action not implemented for this operation!");
1508 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001509 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner6d5b8e12005-05-09 20:36:57 +00001510 break;
1511 case TargetLowering::Expand:
1512 // Replace this with a load from memory.
1513 Result = DAG.getLoad(Node->getValueType(0), Node->getOperand(0),
1514 Node->getOperand(1), DAG.getSrcValue(NULL));
1515 Result = LegalizeOp(Result);
1516 break;
1517 }
1518
1519 // Since these produce two values, make sure to remember that we legalized
1520 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001521 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner6d5b8e12005-05-09 20:36:57 +00001522 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1523 return Result.getValue(Op.ResNo);
1524
1525 case ISD::WRITEIO:
1526 Tmp1 = LegalizeOp(Node->getOperand(0));
1527 Tmp2 = LegalizeOp(Node->getOperand(1));
1528 Tmp3 = LegalizeOp(Node->getOperand(2));
1529
1530 switch (TLI.getOperationAction(Node->getOpcode(),
1531 Node->getOperand(1).getValueType())) {
1532 case TargetLowering::Custom:
1533 default: assert(0 && "This action not implemented for this operation!");
1534 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001535 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner6d5b8e12005-05-09 20:36:57 +00001536 break;
1537 case TargetLowering::Expand:
1538 // Replace this with a store to memory.
1539 Result = DAG.getNode(ISD::STORE, MVT::Other, Node->getOperand(0),
1540 Node->getOperand(1), Node->getOperand(2),
1541 DAG.getSrcValue(NULL));
Chris Lattner6d5b8e12005-05-09 20:36:57 +00001542 break;
1543 }
1544 break;
1545
Chris Lattner84f67882005-01-20 18:52:28 +00001546 case ISD::ADD_PARTS:
Chris Lattner5b359c62005-04-02 04:00:59 +00001547 case ISD::SUB_PARTS:
1548 case ISD::SHL_PARTS:
1549 case ISD::SRA_PARTS:
1550 case ISD::SRL_PARTS: {
Chris Lattner84f67882005-01-20 18:52:28 +00001551 std::vector<SDOperand> Ops;
1552 bool Changed = false;
1553 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1554 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1555 Changed |= Ops.back() != Node->getOperand(i);
1556 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001557 if (Changed)
1558 Result = DAG.UpdateNodeOperands(Result, Ops);
Chris Lattner2c8086f2005-04-02 05:00:07 +00001559
Evan Cheng05a2d562006-01-09 18:31:59 +00001560 switch (TLI.getOperationAction(Node->getOpcode(),
1561 Node->getValueType(0))) {
1562 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001563 case TargetLowering::Legal: break;
1564 case TargetLowering::Custom:
1565 Tmp1 = TLI.LowerOperation(Result, DAG);
1566 if (Tmp1.Val) {
1567 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00001568 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001569 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00001570 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
1571 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00001572 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00001573 }
Chris Lattner269f8c02006-01-10 19:43:26 +00001574 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00001575 return RetVal;
1576 }
Evan Cheng05a2d562006-01-09 18:31:59 +00001577 break;
1578 }
1579
Chris Lattner2c8086f2005-04-02 05:00:07 +00001580 // Since these produce multiple values, make sure to remember that we
1581 // legalized all of them.
1582 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1583 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
1584 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00001585 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00001586
1587 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00001588 case ISD::ADD:
1589 case ISD::SUB:
1590 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00001591 case ISD::MULHS:
1592 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001593 case ISD::UDIV:
1594 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001595 case ISD::AND:
1596 case ISD::OR:
1597 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00001598 case ISD::SHL:
1599 case ISD::SRL:
1600 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00001601 case ISD::FADD:
1602 case ISD::FSUB:
1603 case ISD::FMUL:
1604 case ISD::FDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001605 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00001606 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1607 case Expand: assert(0 && "Not possible");
1608 case Legal:
1609 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
1610 break;
1611 case Promote:
1612 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
1613 break;
1614 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001615
1616 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00001617
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00001618 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001619 default: assert(0 && "Operation not supported");
1620 case TargetLowering::Legal: break;
1621 case TargetLowering::Custom:
1622 Tmp1 = TLI.LowerOperation(Result, DAG);
1623 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00001624 break;
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00001625 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001626 break;
Misha Brukmanedf128a2005-04-21 22:36:52 +00001627
Nate Begeman419f8b62005-10-18 00:27:41 +00001628 case ISD::BUILD_PAIR: {
1629 MVT::ValueType PairTy = Node->getValueType(0);
1630 // TODO: handle the case where the Lo and Hi operands are not of legal type
1631 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
1632 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
1633 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001634 case TargetLowering::Promote:
1635 case TargetLowering::Custom:
1636 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00001637 case TargetLowering::Legal:
1638 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
1639 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
1640 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00001641 case TargetLowering::Expand:
1642 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
1643 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
1644 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
1645 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
1646 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00001647 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00001648 break;
1649 }
1650 break;
1651 }
1652
Nate Begemanc105e192005-04-06 00:23:54 +00001653 case ISD::UREM:
1654 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00001655 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00001656 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
1657 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00001658
Nate Begemanc105e192005-04-06 00:23:54 +00001659 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001660 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
1661 case TargetLowering::Custom:
1662 isCustom = true;
1663 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00001664 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001665 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00001666 if (isCustom) {
1667 Tmp1 = TLI.LowerOperation(Result, DAG);
1668 if (Tmp1.Val) Result = Tmp1;
1669 }
Nate Begemanc105e192005-04-06 00:23:54 +00001670 break;
Chris Lattner4c64dd72005-08-03 20:31:37 +00001671 case TargetLowering::Expand:
1672 if (MVT::isInteger(Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001673 // X % Y -> X-X/Y*Y
Chris Lattner4c64dd72005-08-03 20:31:37 +00001674 MVT::ValueType VT = Node->getValueType(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00001675 unsigned Opc = Node->getOpcode() == ISD::UREM ? ISD::UDIV : ISD::SDIV;
Chris Lattner4c64dd72005-08-03 20:31:37 +00001676 Result = DAG.getNode(Opc, VT, Tmp1, Tmp2);
1677 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
1678 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
1679 } else {
1680 // Floating point mod -> fmod libcall.
1681 const char *FnName = Node->getValueType(0) == MVT::f32 ? "fmodf":"fmod";
1682 SDOperand Dummy;
Chris Lattner9c6b4b82006-01-28 04:28:26 +00001683 Result = ExpandLibCall(FnName, Node, Dummy);
Nate Begemanc105e192005-04-06 00:23:54 +00001684 }
1685 break;
1686 }
1687 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00001688 case ISD::VAARG: {
1689 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1690 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
1691
Chris Lattner5c62f332006-01-28 07:42:08 +00001692 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00001693 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
1694 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001695 case TargetLowering::Custom:
1696 isCustom = true;
1697 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00001698 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001699 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1700 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00001701 Tmp1 = Result.getValue(1);
1702
1703 if (isCustom) {
1704 Tmp2 = TLI.LowerOperation(Result, DAG);
1705 if (Tmp2.Val) {
1706 Result = LegalizeOp(Tmp2);
1707 Tmp1 = LegalizeOp(Tmp2.getValue(1));
1708 }
1709 }
Nate Begemanacc398c2006-01-25 18:21:52 +00001710 break;
1711 case TargetLowering::Expand: {
1712 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
1713 Node->getOperand(2));
1714 // Increment the pointer, VAList, to the next vaarg
1715 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
1716 DAG.getConstant(MVT::getSizeInBits(VT)/8,
1717 TLI.getPointerTy()));
1718 // Store the incremented VAList to the legalized pointer
1719 Tmp3 = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), Tmp3, Tmp2,
1720 Node->getOperand(2));
1721 // Load the actual argument out of the pointer VAList
1722 Result = DAG.getLoad(VT, Tmp3, VAList, DAG.getSrcValue(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00001723 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00001724 Result = LegalizeOp(Result);
1725 break;
1726 }
1727 }
1728 // Since VAARG produces two values, make sure to remember that we
1729 // legalized both of them.
1730 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00001731 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
1732 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00001733 }
1734
1735 case ISD::VACOPY:
1736 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1737 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
1738 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
1739
1740 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
1741 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001742 case TargetLowering::Custom:
1743 isCustom = true;
1744 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00001745 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001746 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
1747 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001748 if (isCustom) {
1749 Tmp1 = TLI.LowerOperation(Result, DAG);
1750 if (Tmp1.Val) Result = Tmp1;
1751 }
Nate Begemanacc398c2006-01-25 18:21:52 +00001752 break;
1753 case TargetLowering::Expand:
1754 // This defaults to loading a pointer from the input and storing it to the
1755 // output, returning the chain.
1756 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, Node->getOperand(3));
1757 Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp4.getValue(1), Tmp4, Tmp2,
1758 Node->getOperand(4));
Nate Begemanacc398c2006-01-25 18:21:52 +00001759 break;
1760 }
1761 break;
1762
1763 case ISD::VAEND:
1764 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1765 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
1766
1767 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
1768 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001769 case TargetLowering::Custom:
1770 isCustom = true;
1771 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00001772 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001773 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00001774 if (isCustom) {
1775 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
1776 if (Tmp1.Val) Result = Tmp1;
1777 }
Nate Begemanacc398c2006-01-25 18:21:52 +00001778 break;
1779 case TargetLowering::Expand:
1780 Result = Tmp1; // Default to a no-op, return the chain
1781 break;
1782 }
1783 break;
1784
1785 case ISD::VASTART:
1786 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1787 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
1788
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001789 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1790
Nate Begemanacc398c2006-01-25 18:21:52 +00001791 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
1792 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001793 case TargetLowering::Legal: break;
1794 case TargetLowering::Custom:
1795 Tmp1 = TLI.LowerOperation(Result, DAG);
1796 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00001797 break;
1798 }
1799 break;
1800
Nate Begeman35ef9132006-01-11 21:21:00 +00001801 case ISD::ROTL:
1802 case ISD::ROTR:
1803 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
1804 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00001805
1806 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
1807 "Cannot handle this yet!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001808 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Nate Begeman35ef9132006-01-11 21:21:00 +00001809 break;
1810
Nate Begemand88fc032006-01-14 03:14:10 +00001811 case ISD::BSWAP:
1812 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
1813 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001814 case TargetLowering::Custom:
1815 assert(0 && "Cannot custom legalize this yet!");
1816 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001817 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001818 break;
1819 case TargetLowering::Promote: {
1820 MVT::ValueType OVT = Tmp1.getValueType();
1821 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1822 unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00001823
Chris Lattner456a93a2006-01-28 07:39:30 +00001824 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
1825 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
1826 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
1827 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
1828 break;
1829 }
1830 case TargetLowering::Expand:
1831 Result = ExpandBSWAP(Tmp1);
1832 break;
Nate Begemand88fc032006-01-14 03:14:10 +00001833 }
1834 break;
1835
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001836 case ISD::CTPOP:
1837 case ISD::CTTZ:
1838 case ISD::CTLZ:
1839 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
1840 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001841 case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001842 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001843 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001844 break;
1845 case TargetLowering::Promote: {
1846 MVT::ValueType OVT = Tmp1.getValueType();
1847 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00001848
1849 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001850 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
1851 // Perform the larger operation, then subtract if needed.
1852 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001853 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001854 case ISD::CTPOP:
1855 Result = Tmp1;
1856 break;
1857 case ISD::CTTZ:
1858 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001859 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
1860 DAG.getConstant(getSizeInBits(NVT), NVT),
1861 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00001862 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001863 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
1864 break;
1865 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00001866 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00001867 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
1868 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001869 getSizeInBits(OVT), NVT));
1870 break;
1871 }
1872 break;
1873 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001874 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00001875 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001876 break;
1877 }
1878 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00001879
Chris Lattner2c8086f2005-04-02 05:00:07 +00001880 // Unary operators
1881 case ISD::FABS:
1882 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00001883 case ISD::FSQRT:
1884 case ISD::FSIN:
1885 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00001886 Tmp1 = LegalizeOp(Node->getOperand(0));
1887 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001888 case TargetLowering::Promote:
1889 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00001890 isCustom = true;
1891 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00001892 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001893 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00001894 if (isCustom) {
1895 Tmp1 = TLI.LowerOperation(Result, DAG);
1896 if (Tmp1.Val) Result = Tmp1;
1897 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00001898 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00001899 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00001900 switch (Node->getOpcode()) {
1901 default: assert(0 && "Unreachable!");
1902 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00001903 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
1904 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00001905 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001906 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001907 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00001908 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
1909 MVT::ValueType VT = Node->getValueType(0);
1910 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001911 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00001912 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
1913 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001914 break;
1915 }
1916 case ISD::FSQRT:
1917 case ISD::FSIN:
1918 case ISD::FCOS: {
1919 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001920 const char *FnName = 0;
1921 switch(Node->getOpcode()) {
1922 case ISD::FSQRT: FnName = VT == MVT::f32 ? "sqrtf" : "sqrt"; break;
1923 case ISD::FSIN: FnName = VT == MVT::f32 ? "sinf" : "sin"; break;
1924 case ISD::FCOS: FnName = VT == MVT::f32 ? "cosf" : "cos"; break;
1925 default: assert(0 && "Unreachable!");
1926 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00001927 SDOperand Dummy;
Chris Lattner9c6b4b82006-01-28 04:28:26 +00001928 Result = ExpandLibCall(FnName, Node, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001929 break;
1930 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00001931 }
1932 break;
1933 }
1934 break;
Chris Lattner35481892005-12-23 00:16:34 +00001935
1936 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00001937 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner35481892005-12-23 00:16:34 +00001938 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Chris Lattner67993f72006-01-23 07:30:46 +00001939 } else {
Chris Lattner35481892005-12-23 00:16:34 +00001940 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
1941 Node->getOperand(0).getValueType())) {
1942 default: assert(0 && "Unknown operation action!");
1943 case TargetLowering::Expand:
1944 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
1945 break;
1946 case TargetLowering::Legal:
1947 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001948 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00001949 break;
1950 }
1951 }
1952 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00001953 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001954 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00001955 case ISD::UINT_TO_FP: {
1956 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001957 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1958 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00001959 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00001960 Node->getOperand(0).getValueType())) {
1961 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001962 case TargetLowering::Custom:
1963 isCustom = true;
1964 // FALLTHROUGH
1965 case TargetLowering::Legal:
1966 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001967 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001968 if (isCustom) {
1969 Tmp1 = TLI.LowerOperation(Result, DAG);
1970 if (Tmp1.Val) Result = Tmp1;
1971 }
1972 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00001973 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00001974 Result = ExpandLegalINT_TO_FP(isSigned,
1975 LegalizeOp(Node->getOperand(0)),
1976 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00001977 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00001978 case TargetLowering::Promote:
1979 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
1980 Node->getValueType(0),
1981 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00001982 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00001983 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001984 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00001985 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00001986 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
1987 Node->getValueType(0), Node->getOperand(0));
1988 break;
1989 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001990 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00001991 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001992 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
1993 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00001994 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001995 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
1996 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00001997 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001998 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1999 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002000 break;
2001 }
2002 break;
2003 }
2004 case ISD::TRUNCATE:
2005 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2006 case Legal:
2007 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002008 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002009 break;
2010 case Expand:
2011 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2012
2013 // Since the result is legal, we should just be able to truncate the low
2014 // part of the source.
2015 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2016 break;
2017 case Promote:
2018 Result = PromoteOp(Node->getOperand(0));
2019 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2020 break;
2021 }
2022 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002023
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002024 case ISD::FP_TO_SINT:
2025 case ISD::FP_TO_UINT:
2026 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2027 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00002028 Tmp1 = LegalizeOp(Node->getOperand(0));
2029
Chris Lattner1618beb2005-07-29 00:11:56 +00002030 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2031 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002032 case TargetLowering::Custom:
2033 isCustom = true;
2034 // FALLTHROUGH
2035 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002036 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002037 if (isCustom) {
2038 Tmp1 = TLI.LowerOperation(Result, DAG);
2039 if (Tmp1.Val) Result = Tmp1;
2040 }
2041 break;
2042 case TargetLowering::Promote:
2043 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2044 Node->getOpcode() == ISD::FP_TO_SINT);
2045 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00002046 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00002047 if (Node->getOpcode() == ISD::FP_TO_UINT) {
2048 SDOperand True, False;
2049 MVT::ValueType VT = Node->getOperand(0).getValueType();
2050 MVT::ValueType NVT = Node->getValueType(0);
2051 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2052 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2053 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2054 Node->getOperand(0), Tmp2, ISD::SETLT);
2055 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2056 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00002057 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00002058 Tmp2));
2059 False = DAG.getNode(ISD::XOR, NVT, False,
2060 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00002061 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2062 break;
Nate Begemand2558e32005-08-14 01:20:53 +00002063 } else {
2064 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2065 }
2066 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00002067 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002068 break;
2069 case Expand:
2070 assert(0 && "Shouldn't need to expand other operators here!");
2071 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002072 Tmp1 = PromoteOp(Node->getOperand(0));
2073 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2074 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002075 break;
2076 }
2077 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002078
Chris Lattner13c78e22005-09-02 00:18:10 +00002079 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002080 case ISD::ZERO_EXTEND:
2081 case ISD::SIGN_EXTEND:
2082 case ISD::FP_EXTEND:
2083 case ISD::FP_ROUND:
2084 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002085 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002086 case Legal:
2087 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002088 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002089 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002090 case Promote:
2091 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00002092 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002093 Tmp1 = PromoteOp(Node->getOperand(0));
2094 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00002095 break;
Chris Lattner1713e732005-01-16 00:38:00 +00002096 case ISD::ZERO_EXTEND:
2097 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002098 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00002099 Result = DAG.getZeroExtendInReg(Result,
2100 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00002101 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002102 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00002103 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002104 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00002105 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00002106 Result,
2107 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00002108 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002109 case ISD::FP_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00002110 Result = PromoteOp(Node->getOperand(0));
2111 if (Result.getValueType() != Op.getValueType())
2112 // Dynamically dead while we have only 2 FP types.
2113 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
2114 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002115 case ISD::FP_ROUND:
Chris Lattnerf8161d82005-01-16 05:06:12 +00002116 Result = PromoteOp(Node->getOperand(0));
2117 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
2118 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002119 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002120 }
2121 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00002122 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00002123 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00002124 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00002125 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00002126
2127 // If this operation is not supported, convert it to a shl/shr or load/store
2128 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002129 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
2130 default: assert(0 && "This action not supported for this op yet!");
2131 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002132 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002133 break;
2134 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00002135 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00002136 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00002137 // NOTE: we could fall back on load/store here too for targets without
2138 // SAR. However, it is doubtful that any exist.
2139 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
2140 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00002141 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00002142 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
2143 Node->getOperand(0), ShiftCst);
2144 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
2145 Result, ShiftCst);
2146 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
2147 // The only way we can lower this is to turn it into a STORETRUNC,
2148 // EXTLOAD pair, targetting a temporary location (a stack slot).
2149
2150 // NOTE: there is a choice here between constantly creating new stack
2151 // slots and always reusing the same one. We currently always create
2152 // new ones, as reuse may inhibit scheduling.
2153 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
2154 unsigned TySize = (unsigned)TLI.getTargetData().getTypeSize(Ty);
2155 unsigned Align = TLI.getTargetData().getTypeAlignment(Ty);
2156 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukmanedf128a2005-04-21 22:36:52 +00002157 int SSFI =
Chris Lattner45b8caf2005-01-15 07:15:18 +00002158 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
2159 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
2160 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, DAG.getEntryNode(),
Chris Lattner52d08bd2005-05-09 20:23:03 +00002161 Node->getOperand(0), StackSlot,
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002162 DAG.getSrcValue(NULL), DAG.getValueType(ExtraVT));
Chris Lattner5f056bf2005-07-10 01:55:33 +00002163 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2164 Result, StackSlot, DAG.getSrcValue(NULL),
2165 ExtraVT);
Chris Lattner45b8caf2005-01-15 07:15:18 +00002166 } else {
2167 assert(0 && "Unknown op");
2168 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002169 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00002170 }
Chris Lattner0f69b292005-01-15 06:18:18 +00002171 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002172 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00002173 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002174
2175 // Make sure that the generated code is itself legal.
2176 if (Result != Op)
2177 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002178
Chris Lattner45982da2005-05-12 16:53:42 +00002179 // Note that LegalizeOp may be reentered even from single-use nodes, which
2180 // means that we always must cache transformed nodes.
2181 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002182 return Result;
2183}
2184
Chris Lattner8b6fa222005-01-15 22:16:26 +00002185/// PromoteOp - Given an operation that produces a value in an invalid type,
2186/// promote it to compute the value into a larger type. The produced value will
2187/// have the correct bits for the low portion of the register, but no guarantee
2188/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00002189SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
2190 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00002191 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00002192 assert(getTypeAction(VT) == Promote &&
2193 "Caller should expand or legalize operands that are not promotable!");
2194 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
2195 "Cannot promote to smaller type!");
2196
Chris Lattner03c85462005-01-15 05:21:40 +00002197 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00002198 SDOperand Result;
2199 SDNode *Node = Op.Val;
2200
Chris Lattner6fdcb252005-09-02 20:32:45 +00002201 std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
2202 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00002203
Chris Lattner03c85462005-01-15 05:21:40 +00002204 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002205 case ISD::CopyFromReg:
2206 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00002207 default:
2208 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
2209 assert(0 && "Do not know how to promote this operator!");
2210 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00002211 case ISD::UNDEF:
2212 Result = DAG.getNode(ISD::UNDEF, NVT);
2213 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002214 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00002215 if (VT != MVT::i1)
2216 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
2217 else
2218 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00002219 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
2220 break;
2221 case ISD::ConstantFP:
2222 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
2223 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
2224 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00002225
Chris Lattner82fbfb62005-01-18 02:59:52 +00002226 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002227 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002228 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
2229 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00002230 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002231
2232 case ISD::TRUNCATE:
2233 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2234 case Legal:
2235 Result = LegalizeOp(Node->getOperand(0));
2236 assert(Result.getValueType() >= NVT &&
2237 "This truncation doesn't make sense!");
2238 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
2239 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
2240 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00002241 case Promote:
2242 // The truncation is not required, because we don't guarantee anything
2243 // about high bits anyway.
2244 Result = PromoteOp(Node->getOperand(0));
2245 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002246 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00002247 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2248 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00002249 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00002250 }
2251 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00002252 case ISD::SIGN_EXTEND:
2253 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00002254 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002255 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2256 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
2257 case Legal:
2258 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00002259 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002260 break;
2261 case Promote:
2262 // Promote the reg if it's smaller.
2263 Result = PromoteOp(Node->getOperand(0));
2264 // The high bits are not guaranteed to be anything. Insert an extend.
2265 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00002266 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00002267 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00002268 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00002269 Result = DAG.getZeroExtendInReg(Result,
2270 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00002271 break;
2272 }
2273 break;
Chris Lattner35481892005-12-23 00:16:34 +00002274 case ISD::BIT_CONVERT:
2275 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2276 Result = PromoteOp(Result);
2277 break;
2278
Chris Lattner8b6fa222005-01-15 22:16:26 +00002279 case ISD::FP_EXTEND:
2280 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
2281 case ISD::FP_ROUND:
2282 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2283 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
2284 case Promote: assert(0 && "Unreachable with 2 FP types!");
2285 case Legal:
2286 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner456a93a2006-01-28 07:39:30 +00002287 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner15e4b012005-07-10 00:07:11 +00002288 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002289 break;
2290 }
2291 break;
2292
2293 case ISD::SINT_TO_FP:
2294 case ISD::UINT_TO_FP:
2295 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2296 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00002297 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00002298 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002299 break;
2300
2301 case Promote:
2302 Result = PromoteOp(Node->getOperand(0));
2303 if (Node->getOpcode() == ISD::SINT_TO_FP)
2304 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00002305 Result,
2306 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002307 else
Chris Lattner23993562005-04-13 02:38:47 +00002308 Result = DAG.getZeroExtendInReg(Result,
2309 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00002310 // No extra round required here.
2311 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002312 break;
2313 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00002314 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
2315 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00002316 // Round if we cannot tolerate excess precision.
2317 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00002318 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2319 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00002320 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00002321 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00002322 break;
2323
Chris Lattner5e3c5b42005-12-09 17:32:47 +00002324 case ISD::SIGN_EXTEND_INREG:
2325 Result = PromoteOp(Node->getOperand(0));
2326 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
2327 Node->getOperand(1));
2328 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00002329 case ISD::FP_TO_SINT:
2330 case ISD::FP_TO_UINT:
2331 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2332 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00002333 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002334 break;
2335 case Promote:
2336 // The input result is prerounded, so we don't have to do anything
2337 // special.
2338 Tmp1 = PromoteOp(Node->getOperand(0));
2339 break;
2340 case Expand:
2341 assert(0 && "not implemented");
2342 }
Nate Begemand2558e32005-08-14 01:20:53 +00002343 // If we're promoting a UINT to a larger size, check to see if the new node
2344 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
2345 // we can use that instead. This allows us to generate better code for
2346 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
2347 // legal, such as PowerPC.
2348 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002349 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00002350 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
2351 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00002352 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
2353 } else {
2354 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
2355 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00002356 break;
2357
Chris Lattner2c8086f2005-04-02 05:00:07 +00002358 case ISD::FABS:
2359 case ISD::FNEG:
2360 Tmp1 = PromoteOp(Node->getOperand(0));
2361 assert(Tmp1.getValueType() == NVT);
2362 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
2363 // NOTE: we do not have to do any extra rounding here for
2364 // NoExcessFPPrecision, because we know the input will have the appropriate
2365 // precision, and these operations don't modify precision at all.
2366 break;
2367
Chris Lattnerda6ba872005-04-28 21:44:33 +00002368 case ISD::FSQRT:
2369 case ISD::FSIN:
2370 case ISD::FCOS:
2371 Tmp1 = PromoteOp(Node->getOperand(0));
2372 assert(Tmp1.getValueType() == NVT);
2373 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002374 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00002375 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2376 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00002377 break;
2378
Chris Lattner03c85462005-01-15 05:21:40 +00002379 case ISD::AND:
2380 case ISD::OR:
2381 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00002382 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002383 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00002384 case ISD::MUL:
2385 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00002386 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00002387 // that too is okay if they are integer operations.
2388 Tmp1 = PromoteOp(Node->getOperand(0));
2389 Tmp2 = PromoteOp(Node->getOperand(1));
2390 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
2391 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00002392 break;
2393 case ISD::FADD:
2394 case ISD::FSUB:
2395 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00002396 Tmp1 = PromoteOp(Node->getOperand(0));
2397 Tmp2 = PromoteOp(Node->getOperand(1));
2398 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
2399 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2400
2401 // Floating point operations will give excess precision that we may not be
2402 // able to tolerate. If we DO allow excess precision, just leave it,
2403 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00002404 // FIXME: Why would we need to round FP ops more than integer ones?
2405 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00002406 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00002407 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2408 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00002409 break;
2410
Chris Lattner8b6fa222005-01-15 22:16:26 +00002411 case ISD::SDIV:
2412 case ISD::SREM:
2413 // These operators require that their input be sign extended.
2414 Tmp1 = PromoteOp(Node->getOperand(0));
2415 Tmp2 = PromoteOp(Node->getOperand(1));
2416 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00002417 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
2418 DAG.getValueType(VT));
2419 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
2420 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002421 }
2422 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2423
2424 // Perform FP_ROUND: this is probably overly pessimistic.
2425 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00002426 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2427 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002428 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002429 case ISD::FDIV:
2430 case ISD::FREM:
2431 // These operators require that their input be fp extended.
2432 Tmp1 = PromoteOp(Node->getOperand(0));
2433 Tmp2 = PromoteOp(Node->getOperand(1));
2434 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2435
2436 // Perform FP_ROUND: this is probably overly pessimistic.
2437 if (NoExcessFPPrecision)
2438 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2439 DAG.getValueType(VT));
2440 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00002441
2442 case ISD::UDIV:
2443 case ISD::UREM:
2444 // These operators require that their input be zero extended.
2445 Tmp1 = PromoteOp(Node->getOperand(0));
2446 Tmp2 = PromoteOp(Node->getOperand(1));
2447 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00002448 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
2449 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002450 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2451 break;
2452
2453 case ISD::SHL:
2454 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002455 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002456 break;
2457 case ISD::SRA:
2458 // The input value must be properly sign extended.
2459 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00002460 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
2461 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00002462 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002463 break;
2464 case ISD::SRL:
2465 // The input value must be properly zero extended.
2466 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00002467 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00002468 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002469 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00002470
2471 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00002472 Tmp1 = Node->getOperand(0); // Get the chain.
2473 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00002474 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
2475 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
2476 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
2477 } else {
2478 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
2479 Node->getOperand(2));
2480 // Increment the pointer, VAList, to the next vaarg
2481 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2482 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2483 TLI.getPointerTy()));
2484 // Store the incremented VAList to the legalized pointer
2485 Tmp3 = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), Tmp3, Tmp2,
2486 Node->getOperand(2));
2487 // Load the actual argument out of the pointer VAList
2488 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList,
2489 DAG.getSrcValue(0), VT);
2490 }
2491 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00002492 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00002493 break;
2494
Chris Lattner03c85462005-01-15 05:21:40 +00002495 case ISD::LOAD:
Chris Lattner456a93a2006-01-28 07:39:30 +00002496 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Node->getOperand(0),
2497 Node->getOperand(1), Node->getOperand(2), VT);
Chris Lattner03c85462005-01-15 05:21:40 +00002498 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00002499 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00002500 break;
Chris Lattner4c8f8f02005-10-13 20:07:41 +00002501 case ISD::SEXTLOAD:
2502 case ISD::ZEXTLOAD:
2503 case ISD::EXTLOAD:
Chris Lattner456a93a2006-01-28 07:39:30 +00002504 Result = DAG.getExtLoad(Node->getOpcode(), NVT, Node->getOperand(0),
2505 Node->getOperand(1), Node->getOperand(2),
Chris Lattner8136cda2005-10-15 20:24:07 +00002506 cast<VTSDNode>(Node->getOperand(3))->getVT());
Chris Lattner4c8f8f02005-10-13 20:07:41 +00002507 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00002508 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner4c8f8f02005-10-13 20:07:41 +00002509 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002510 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00002511 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
2512 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00002513 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00002514 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002515 case ISD::SELECT_CC:
2516 Tmp2 = PromoteOp(Node->getOperand(2)); // True
2517 Tmp3 = PromoteOp(Node->getOperand(3)); // False
2518 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00002519 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00002520 break;
Nate Begemand88fc032006-01-14 03:14:10 +00002521 case ISD::BSWAP:
2522 Tmp1 = Node->getOperand(0);
2523 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2524 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2525 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2526 DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
2527 TLI.getShiftAmountTy()));
2528 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00002529 case ISD::CTPOP:
2530 case ISD::CTTZ:
2531 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00002532 // Zero extend the argument
2533 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00002534 // Perform the larger operation, then subtract if needed.
2535 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002536 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00002537 case ISD::CTPOP:
2538 Result = Tmp1;
2539 break;
2540 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00002541 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00002542 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002543 DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00002544 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Chris Lattner456a93a2006-01-28 07:39:30 +00002545 DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00002546 break;
2547 case ISD::CTLZ:
2548 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00002549 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2550 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharthfecf0952005-05-04 19:11:05 +00002551 getSizeInBits(VT), NVT));
2552 break;
2553 }
2554 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002555 }
2556
2557 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002558
2559 // Make sure the result is itself legal.
2560 Result = LegalizeOp(Result);
2561
2562 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00002563 AddPromotedOperand(Op, Result);
2564 return Result;
2565}
Chris Lattner3e928bb2005-01-07 07:47:09 +00002566
Nate Begeman750ac1b2006-02-01 07:19:44 +00002567/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
2568/// with condition CC on the current target. This usually involves legalizing
2569/// or promoting the arguments. In the case where LHS and RHS must be expanded,
2570/// there may be no choice but to create a new SetCC node to represent the
2571/// legalized value of setcc lhs, rhs. In this case, the value is returned in
2572/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
2573void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
2574 SDOperand &RHS,
2575 SDOperand &CC) {
2576 SDOperand Tmp1, Tmp2, Result;
2577
2578 switch (getTypeAction(LHS.getValueType())) {
2579 case Legal:
2580 Tmp1 = LegalizeOp(LHS); // LHS
2581 Tmp2 = LegalizeOp(RHS); // RHS
2582 break;
2583 case Promote:
2584 Tmp1 = PromoteOp(LHS); // LHS
2585 Tmp2 = PromoteOp(RHS); // RHS
2586
2587 // If this is an FP compare, the operands have already been extended.
2588 if (MVT::isInteger(LHS.getValueType())) {
2589 MVT::ValueType VT = LHS.getValueType();
2590 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
2591
2592 // Otherwise, we have to insert explicit sign or zero extends. Note
2593 // that we could insert sign extends for ALL conditions, but zero extend
2594 // is cheaper on many machines (an AND instead of two shifts), so prefer
2595 // it.
2596 switch (cast<CondCodeSDNode>(CC)->get()) {
2597 default: assert(0 && "Unknown integer comparison!");
2598 case ISD::SETEQ:
2599 case ISD::SETNE:
2600 case ISD::SETUGE:
2601 case ISD::SETUGT:
2602 case ISD::SETULE:
2603 case ISD::SETULT:
2604 // ALL of these operations will work if we either sign or zero extend
2605 // the operands (including the unsigned comparisons!). Zero extend is
2606 // usually a simpler/cheaper operation, so prefer it.
2607 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
2608 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
2609 break;
2610 case ISD::SETGE:
2611 case ISD::SETGT:
2612 case ISD::SETLT:
2613 case ISD::SETLE:
2614 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
2615 DAG.getValueType(VT));
2616 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
2617 DAG.getValueType(VT));
2618 break;
2619 }
2620 }
2621 break;
2622 case Expand:
2623 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
2624 ExpandOp(LHS, LHSLo, LHSHi);
2625 ExpandOp(RHS, RHSLo, RHSHi);
2626 switch (cast<CondCodeSDNode>(CC)->get()) {
2627 case ISD::SETEQ:
2628 case ISD::SETNE:
2629 if (RHSLo == RHSHi)
2630 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
2631 if (RHSCST->isAllOnesValue()) {
2632 // Comparison to -1.
2633 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
2634 Tmp2 = RHSLo;
2635 break;
2636 }
2637
2638 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
2639 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
2640 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
2641 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2642 break;
2643 default:
2644 // If this is a comparison of the sign bit, just look at the top part.
2645 // X > -1, x < 0
2646 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
2647 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
2648 CST->getValue() == 0) || // X < 0
2649 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
2650 CST->isAllOnesValue())) { // X > -1
2651 Tmp1 = LHSHi;
2652 Tmp2 = RHSHi;
2653 break;
2654 }
2655
2656 // FIXME: This generated code sucks.
2657 ISD::CondCode LowCC;
2658 switch (cast<CondCodeSDNode>(CC)->get()) {
2659 default: assert(0 && "Unknown integer setcc!");
2660 case ISD::SETLT:
2661 case ISD::SETULT: LowCC = ISD::SETULT; break;
2662 case ISD::SETGT:
2663 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
2664 case ISD::SETLE:
2665 case ISD::SETULE: LowCC = ISD::SETULE; break;
2666 case ISD::SETGE:
2667 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
2668 }
2669
2670 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
2671 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
2672 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
2673
2674 // NOTE: on targets without efficient SELECT of bools, we can always use
2675 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
2676 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
2677 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
2678 Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
2679 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
2680 Result, Tmp1, Tmp2));
2681 Tmp1 = Result;
2682 }
2683 }
2684 LHS = Tmp1;
2685 RHS = Tmp2;
2686}
2687
Chris Lattner35481892005-12-23 00:16:34 +00002688/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner232348d2005-12-23 00:52:30 +00002689/// The resultant code need not be legal. Note that SrcOp is the input operand
2690/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner35481892005-12-23 00:16:34 +00002691SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
2692 SDOperand SrcOp) {
2693 // Create the stack frame object.
2694 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
2695 unsigned ByteSize = MVT::getSizeInBits(DestVT)/8;
Chris Lattner232348d2005-12-23 00:52:30 +00002696 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, ByteSize);
Chris Lattner35481892005-12-23 00:16:34 +00002697 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
2698
2699 // Emit a store to the stack slot.
2700 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
Chris Lattnered7b5ba2005-12-23 00:50:25 +00002701 SrcOp, FIPtr, DAG.getSrcValue(NULL));
Chris Lattner35481892005-12-23 00:16:34 +00002702 // Result is a load from the stack slot.
2703 return DAG.getLoad(DestVT, Store, FIPtr, DAG.getSrcValue(0));
2704}
2705
Chris Lattner5b359c62005-04-02 04:00:59 +00002706void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
2707 SDOperand Op, SDOperand Amt,
2708 SDOperand &Lo, SDOperand &Hi) {
2709 // Expand the subcomponents.
2710 SDOperand LHSL, LHSH;
2711 ExpandOp(Op, LHSL, LHSH);
2712
2713 std::vector<SDOperand> Ops;
2714 Ops.push_back(LHSL);
2715 Ops.push_back(LHSH);
2716 Ops.push_back(Amt);
Chris Lattnercc0675a2005-08-30 17:21:17 +00002717 std::vector<MVT::ValueType> VTs(2, LHSL.getValueType());
Chris Lattnere89083a2005-05-14 07:25:05 +00002718 Lo = DAG.getNode(NodeOp, VTs, Ops);
Chris Lattner5b359c62005-04-02 04:00:59 +00002719 Hi = Lo.getValue(1);
2720}
2721
2722
Chris Lattnere34b3962005-01-19 04:19:40 +00002723/// ExpandShift - Try to find a clever way to expand this shift operation out to
2724/// smaller elements. If we can't find a way that is more efficient than a
2725/// libcall on this target, return false. Otherwise, return true with the
2726/// low-parts expanded into Lo and Hi.
2727bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
2728 SDOperand &Lo, SDOperand &Hi) {
2729 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
2730 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00002731
Chris Lattnere34b3962005-01-19 04:19:40 +00002732 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00002733 SDOperand ShAmt = LegalizeOp(Amt);
2734 MVT::ValueType ShTy = ShAmt.getValueType();
2735 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
2736 unsigned NVTBits = MVT::getSizeInBits(NVT);
2737
2738 // Handle the case when Amt is an immediate. Other cases are currently broken
2739 // and are disabled.
2740 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
2741 unsigned Cst = CN->getValue();
2742 // Expand the incoming operand to be shifted, so that we have its parts
2743 SDOperand InL, InH;
2744 ExpandOp(Op, InL, InH);
2745 switch(Opc) {
2746 case ISD::SHL:
2747 if (Cst > VTBits) {
2748 Lo = DAG.getConstant(0, NVT);
2749 Hi = DAG.getConstant(0, NVT);
2750 } else if (Cst > NVTBits) {
2751 Lo = DAG.getConstant(0, NVT);
2752 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00002753 } else if (Cst == NVTBits) {
2754 Lo = DAG.getConstant(0, NVT);
2755 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00002756 } else {
2757 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
2758 Hi = DAG.getNode(ISD::OR, NVT,
2759 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
2760 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
2761 }
2762 return true;
2763 case ISD::SRL:
2764 if (Cst > VTBits) {
2765 Lo = DAG.getConstant(0, NVT);
2766 Hi = DAG.getConstant(0, NVT);
2767 } else if (Cst > NVTBits) {
2768 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
2769 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00002770 } else if (Cst == NVTBits) {
2771 Lo = InH;
2772 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00002773 } else {
2774 Lo = DAG.getNode(ISD::OR, NVT,
2775 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
2776 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
2777 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
2778 }
2779 return true;
2780 case ISD::SRA:
2781 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002782 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00002783 DAG.getConstant(NVTBits-1, ShTy));
2784 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002785 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00002786 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00002787 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00002788 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00002789 } else if (Cst == NVTBits) {
2790 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002791 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00002792 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00002793 } else {
2794 Lo = DAG.getNode(ISD::OR, NVT,
2795 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
2796 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
2797 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
2798 }
2799 return true;
2800 }
2801 }
Nate Begemanf1fe32e2005-04-06 21:13:14 +00002802 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00002803}
Chris Lattner77e77a62005-01-21 06:05:23 +00002804
Chris Lattner9530ddc2005-05-13 05:09:11 +00002805/// FindLatestCallSeqStart - Scan up the dag to find the latest (highest
2806/// NodeDepth) node that is an CallSeqStart operation and occurs later than
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002807/// Found.
Chris Lattnerde387ce2006-01-09 23:21:49 +00002808static void FindLatestCallSeqStart(SDNode *Node, SDNode *&Found,
2809 std::set<SDNode*> &Visited) {
Chris Lattnera68d2042006-01-20 18:40:10 +00002810 if (Node->getNodeDepth() <= Found->getNodeDepth() ||
Chris Lattnerde387ce2006-01-09 23:21:49 +00002811 !Visited.insert(Node).second) return;
Chris Lattner2f4eca32005-08-05 16:23:57 +00002812
Chris Lattner16cd04d2005-05-12 23:24:06 +00002813 // If we found an CALLSEQ_START, we already know this node occurs later
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002814 // than the Found node. Just remember this node and return.
Chris Lattner16cd04d2005-05-12 23:24:06 +00002815 if (Node->getOpcode() == ISD::CALLSEQ_START) {
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002816 Found = Node;
2817 return;
2818 }
2819
2820 // Otherwise, scan the operands of Node to see if any of them is a call.
2821 assert(Node->getNumOperands() != 0 &&
2822 "All leaves should have depth equal to the entry node!");
Nate Begeman829cb812005-10-05 21:44:10 +00002823 for (unsigned i = 0, e = Node->getNumOperands()-1; i != e; ++i)
Chris Lattnerde387ce2006-01-09 23:21:49 +00002824 FindLatestCallSeqStart(Node->getOperand(i).Val, Found, Visited);
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002825
2826 // Tail recurse for the last iteration.
Chris Lattner9530ddc2005-05-13 05:09:11 +00002827 FindLatestCallSeqStart(Node->getOperand(Node->getNumOperands()-1).Val,
Chris Lattnerde387ce2006-01-09 23:21:49 +00002828 Found, Visited);
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002829}
2830
2831
Chris Lattner9530ddc2005-05-13 05:09:11 +00002832/// FindEarliestCallSeqEnd - Scan down the dag to find the earliest (lowest
2833/// NodeDepth) node that is an CallSeqEnd operation and occurs more recent
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002834/// than Found.
Chris Lattner82299e72005-08-05 18:10:27 +00002835static void FindEarliestCallSeqEnd(SDNode *Node, SDNode *&Found,
2836 std::set<SDNode*> &Visited) {
Chris Lattnera68d2042006-01-20 18:40:10 +00002837 if ((Found && Node->getNodeDepth() >= Found->getNodeDepth()) ||
Chris Lattner82299e72005-08-05 18:10:27 +00002838 !Visited.insert(Node).second) return;
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002839
Chris Lattner16cd04d2005-05-12 23:24:06 +00002840 // If we found an CALLSEQ_END, we already know this node occurs earlier
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002841 // than the Found node. Just remember this node and return.
Chris Lattner16cd04d2005-05-12 23:24:06 +00002842 if (Node->getOpcode() == ISD::CALLSEQ_END) {
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002843 Found = Node;
2844 return;
2845 }
2846
2847 // Otherwise, scan the operands of Node to see if any of them is a call.
2848 SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
2849 if (UI == E) return;
2850 for (--E; UI != E; ++UI)
Chris Lattner82299e72005-08-05 18:10:27 +00002851 FindEarliestCallSeqEnd(*UI, Found, Visited);
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002852
2853 // Tail recurse for the last iteration.
Chris Lattner82299e72005-08-05 18:10:27 +00002854 FindEarliestCallSeqEnd(*UI, Found, Visited);
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002855}
2856
Chris Lattner9530ddc2005-05-13 05:09:11 +00002857/// FindCallSeqEnd - Given a chained node that is part of a call sequence,
Chris Lattner16cd04d2005-05-12 23:24:06 +00002858/// find the CALLSEQ_END node that terminates the call sequence.
Chris Lattner9530ddc2005-05-13 05:09:11 +00002859static SDNode *FindCallSeqEnd(SDNode *Node) {
Chris Lattner16cd04d2005-05-12 23:24:06 +00002860 if (Node->getOpcode() == ISD::CALLSEQ_END)
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002861 return Node;
Chris Lattnerf4b45792005-04-02 03:22:40 +00002862 if (Node->use_empty())
Chris Lattner9530ddc2005-05-13 05:09:11 +00002863 return 0; // No CallSeqEnd
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002864
Chris Lattnerc0ab5222006-01-14 22:41:46 +00002865 // The chain is usually at the end.
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002866 SDOperand TheChain(Node, Node->getNumValues()-1);
Chris Lattnerc0ab5222006-01-14 22:41:46 +00002867 if (TheChain.getValueType() != MVT::Other) {
2868 // Sometimes it's at the beginning.
Chris Lattner2789bde2005-05-14 08:34:53 +00002869 TheChain = SDOperand(Node, 0);
Chris Lattnerc0ab5222006-01-14 22:41:46 +00002870 if (TheChain.getValueType() != MVT::Other) {
2871 // Otherwise, hunt for it.
2872 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
2873 if (Node->getValueType(i) == MVT::Other) {
2874 TheChain = SDOperand(Node, i);
2875 break;
2876 }
2877
2878 // Otherwise, we walked into a node without a chain.
2879 if (TheChain.getValueType() != MVT::Other)
2880 return 0;
2881 }
2882 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002883
2884 for (SDNode::use_iterator UI = Node->use_begin(),
Chris Lattner2f4eca32005-08-05 16:23:57 +00002885 E = Node->use_end(); UI != E; ++UI) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002886
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002887 // Make sure to only follow users of our token chain.
2888 SDNode *User = *UI;
2889 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
2890 if (User->getOperand(i) == TheChain)
Chris Lattnereb516e72005-05-13 05:17:00 +00002891 if (SDNode *Result = FindCallSeqEnd(User))
2892 return Result;
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002893 }
Chris Lattner2f4eca32005-08-05 16:23:57 +00002894 return 0;
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002895}
2896
Chris Lattner9530ddc2005-05-13 05:09:11 +00002897/// FindCallSeqStart - Given a chained node that is part of a call sequence,
Chris Lattner16cd04d2005-05-12 23:24:06 +00002898/// find the CALLSEQ_START node that initiates the call sequence.
Chris Lattner9530ddc2005-05-13 05:09:11 +00002899static SDNode *FindCallSeqStart(SDNode *Node) {
2900 assert(Node && "Didn't find callseq_start for a call??");
Chris Lattner16cd04d2005-05-12 23:24:06 +00002901 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002902
2903 assert(Node->getOperand(0).getValueType() == MVT::Other &&
2904 "Node doesn't have a token chain argument!");
Chris Lattner9530ddc2005-05-13 05:09:11 +00002905 return FindCallSeqStart(Node->getOperand(0).Val);
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002906}
2907
2908
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002909/// FindInputOutputChains - If we are replacing an operation with a call we need
2910/// to find the call that occurs before and the call that occurs after it to
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002911/// properly serialize the calls in the block. The returned operand is the
2912/// input chain value for the new call (e.g. the entry node or the previous
2913/// call), and OutChain is set to be the chain node to update to point to the
2914/// end of the call chain.
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002915static SDOperand FindInputOutputChains(SDNode *OpNode, SDNode *&OutChain,
2916 SDOperand Entry) {
Chris Lattner9530ddc2005-05-13 05:09:11 +00002917 SDNode *LatestCallSeqStart = Entry.Val;
2918 SDNode *LatestCallSeqEnd = 0;
Chris Lattnerde387ce2006-01-09 23:21:49 +00002919 std::set<SDNode*> Visited;
2920 FindLatestCallSeqStart(OpNode, LatestCallSeqStart, Visited);
2921 Visited.clear();
Chris Lattner9530ddc2005-05-13 05:09:11 +00002922 //std::cerr<<"Found node: "; LatestCallSeqStart->dump(); std::cerr <<"\n";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002923
Chris Lattner16cd04d2005-05-12 23:24:06 +00002924 // It is possible that no ISD::CALLSEQ_START was found because there is no
Nate Begemanc7c16572005-04-11 03:01:51 +00002925 // previous call in the function. LatestCallStackDown may in that case be
Chris Lattner16cd04d2005-05-12 23:24:06 +00002926 // the entry node itself. Do not attempt to find a matching CALLSEQ_END
2927 // unless LatestCallStackDown is an CALLSEQ_START.
Nate Begeman1aa19722005-10-04 02:10:55 +00002928 if (LatestCallSeqStart->getOpcode() == ISD::CALLSEQ_START) {
Chris Lattner9530ddc2005-05-13 05:09:11 +00002929 LatestCallSeqEnd = FindCallSeqEnd(LatestCallSeqStart);
Nate Begeman1aa19722005-10-04 02:10:55 +00002930 //std::cerr<<"Found end node: "; LatestCallSeqEnd->dump(); std::cerr <<"\n";
2931 } else {
Chris Lattner9530ddc2005-05-13 05:09:11 +00002932 LatestCallSeqEnd = Entry.Val;
Nate Begeman1aa19722005-10-04 02:10:55 +00002933 }
Chris Lattner9530ddc2005-05-13 05:09:11 +00002934 assert(LatestCallSeqEnd && "NULL return from FindCallSeqEnd");
Misha Brukmanedf128a2005-04-21 22:36:52 +00002935
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002936 // Finally, find the first call that this must come before, first we find the
Chris Lattner9530ddc2005-05-13 05:09:11 +00002937 // CallSeqEnd that ends the call.
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002938 OutChain = 0;
Chris Lattner82299e72005-08-05 18:10:27 +00002939 FindEarliestCallSeqEnd(OpNode, OutChain, Visited);
Chris Lattnerde387ce2006-01-09 23:21:49 +00002940 Visited.clear();
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002941
Chris Lattner9530ddc2005-05-13 05:09:11 +00002942 // If we found one, translate from the adj up to the callseq_start.
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002943 if (OutChain)
Chris Lattner9530ddc2005-05-13 05:09:11 +00002944 OutChain = FindCallSeqStart(OutChain);
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002945
Chris Lattner9530ddc2005-05-13 05:09:11 +00002946 return SDOperand(LatestCallSeqEnd, 0);
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002947}
2948
Jeff Cohen00b168892005-07-27 06:12:32 +00002949/// SpliceCallInto - Given the result chain of a libcall (CallResult), and a
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00002950void SelectionDAGLegalize::SpliceCallInto(const SDOperand &CallResult,
2951 SDNode *OutChain) {
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002952 // Nothing to splice it into?
2953 if (OutChain == 0) return;
2954
2955 assert(OutChain->getOperand(0).getValueType() == MVT::Other);
2956 //OutChain->dump();
2957
2958 // Form a token factor node merging the old inval and the new inval.
2959 SDOperand InToken = DAG.getNode(ISD::TokenFactor, MVT::Other, CallResult,
2960 OutChain->getOperand(0));
2961 // Change the node to refer to the new token.
Chris Lattner70814bc2006-01-29 07:58:15 +00002962 std::vector<SDOperand> Ops(OutChain->op_begin(), OutChain->op_end());
2963 Ops[0] = InToken;
2964 SDOperand Res = DAG.UpdateNodeOperands(SDOperand(OutChain, 0), Ops);
2965 assert(Res.Val == OutChain && "Didn't update in place!");
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002966}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002967
2968
Chris Lattner77e77a62005-01-21 06:05:23 +00002969// ExpandLibCall - Expand a node into a call to a libcall. If the result value
2970// does not fit into a register, return the lo part and set the hi part to the
2971// by-reg argument. If it does fit into a single register, return the result
2972// and leave the Hi part unset.
2973SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
2974 SDOperand &Hi) {
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002975 SDNode *OutChain;
2976 SDOperand InChain = FindInputOutputChains(Node, OutChain,
2977 DAG.getEntryNode());
Chris Lattnerf4b45792005-04-02 03:22:40 +00002978 if (InChain.Val == 0)
2979 InChain = DAG.getEntryNode();
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002980
Chris Lattner77e77a62005-01-21 06:05:23 +00002981 TargetLowering::ArgListTy Args;
2982 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2983 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
2984 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
2985 Args.push_back(std::make_pair(Node->getOperand(i), ArgTy));
2986 }
2987 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00002988
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002989 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00002990 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002991 std::pair<SDOperand,SDOperand> CallInfo =
Chris Lattneradf6a962005-05-13 18:50:42 +00002992 TLI.LowerCallTo(InChain, RetTy, false, CallingConv::C, false,
2993 Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00002994
Chris Lattner99c25b82005-09-02 20:26:58 +00002995 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002996 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00002997 default: assert(0 && "Unknown thing");
2998 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00002999 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00003000 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00003001 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00003002 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00003003 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00003004 }
Chris Lattner9c6b4b82006-01-28 04:28:26 +00003005
3006 CallInfo.second = LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00003007 SpliceCallInto(CallInfo.second, OutChain);
Chris Lattner99c25b82005-09-02 20:26:58 +00003008 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00003009}
3010
Chris Lattner9c32d3b2005-01-23 04:42:50 +00003011
Chris Lattner77e77a62005-01-21 06:05:23 +00003012/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
3013/// destination type is legal.
3014SDOperand SelectionDAGLegalize::
3015ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003016 assert(isTypeLegal(DestTy) && "Destination type is not legal!");
Chris Lattner77e77a62005-01-21 06:05:23 +00003017 assert(getTypeAction(Source.getValueType()) == Expand &&
3018 "This is not an expansion!");
3019 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
3020
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003021 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00003022 assert(Source.getValueType() == MVT::i64 &&
3023 "This only works for 64-bit -> FP");
3024 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
3025 // incoming integer is set. To handle this, we dynamically test to see if
3026 // it is set, and, if so, add a fudge factor.
3027 SDOperand Lo, Hi;
3028 ExpandOp(Source, Lo, Hi);
3029
Chris Lattner66de05b2005-05-13 04:45:13 +00003030 // If this is unsigned, and not supported, first perform the conversion to
3031 // signed, then adjust the result if the sign bit is set.
3032 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
3033 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
3034
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003035 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
3036 DAG.getConstant(0, Hi.getValueType()),
3037 ISD::SETLT);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003038 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3039 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3040 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00003041 uint64_t FF = 0x5f800000ULL;
3042 if (TLI.isLittleEndian()) FF <<= 32;
3043 static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003044
Chris Lattner5839bf22005-08-26 17:15:30 +00003045 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00003046 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3047 SDOperand FudgeInReg;
3048 if (DestTy == MVT::f32)
Chris Lattner52d08bd2005-05-09 20:23:03 +00003049 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
3050 DAG.getSrcValue(NULL));
Chris Lattnere9c35e72005-04-13 05:09:42 +00003051 else {
3052 assert(DestTy == MVT::f64 && "Unexpected conversion");
Chris Lattner5f056bf2005-07-10 01:55:33 +00003053 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
3054 CPIdx, DAG.getSrcValue(NULL), MVT::f32);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003055 }
Chris Lattner473a9902005-09-29 06:44:39 +00003056 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00003057 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003058
Chris Lattnera88a2602005-05-14 05:33:54 +00003059 // Check to see if the target has a custom way to lower this. If so, use it.
3060 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
3061 default: assert(0 && "This action not implemented for this operation!");
3062 case TargetLowering::Legal:
3063 case TargetLowering::Expand:
3064 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00003065 case TargetLowering::Custom: {
3066 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
3067 Source), DAG);
3068 if (NV.Val)
3069 return LegalizeOp(NV);
3070 break; // The target decided this was legal after all
3071 }
Chris Lattnera88a2602005-05-14 05:33:54 +00003072 }
3073
Chris Lattner13689e22005-05-12 07:00:44 +00003074 // Expand the source, then glue it back together for the call. We must expand
3075 // the source in case it is shared (this pass of legalize must traverse it).
3076 SDOperand SrcLo, SrcHi;
3077 ExpandOp(Source, SrcLo, SrcHi);
3078 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
3079
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003080 SDNode *OutChain = 0;
3081 SDOperand InChain = FindInputOutputChains(Source.Val, OutChain,
3082 DAG.getEntryNode());
3083 const char *FnName = 0;
3084 if (DestTy == MVT::f32)
3085 FnName = "__floatdisf";
3086 else {
3087 assert(DestTy == MVT::f64 && "Unknown fp value type!");
3088 FnName = "__floatdidf";
3089 }
3090
Chris Lattner77e77a62005-01-21 06:05:23 +00003091 SDOperand Callee = DAG.getExternalSymbol(FnName, TLI.getPointerTy());
3092
3093 TargetLowering::ArgListTy Args;
3094 const Type *ArgTy = MVT::getTypeForValueType(Source.getValueType());
Chris Lattner44d105b2005-05-12 06:54:21 +00003095
Chris Lattner77e77a62005-01-21 06:05:23 +00003096 Args.push_back(std::make_pair(Source, ArgTy));
3097
3098 // We don't care about token chains for libcalls. We just use the entry
3099 // node as our input and ignore the output chain. This allows us to place
3100 // calls wherever we need them to satisfy data dependences.
3101 const Type *RetTy = MVT::getTypeForValueType(DestTy);
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003102
3103 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattneradf6a962005-05-13 18:50:42 +00003104 TLI.LowerCallTo(InChain, RetTy, false, CallingConv::C, true,
3105 Callee, Args, DAG);
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003106
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00003107 SpliceCallInto(CallResult.second, OutChain);
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003108 return CallResult.first;
Chris Lattner77e77a62005-01-21 06:05:23 +00003109}
Misha Brukmanedf128a2005-04-21 22:36:52 +00003110
Chris Lattner22cde6a2006-01-28 08:25:58 +00003111/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
3112/// INT_TO_FP operation of the specified operand when the target requests that
3113/// we expand it. At this point, we know that the result and operand types are
3114/// legal for the target.
3115SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
3116 SDOperand Op0,
3117 MVT::ValueType DestVT) {
3118 if (Op0.getValueType() == MVT::i32) {
3119 // simple 32-bit [signed|unsigned] integer to float/double expansion
3120
3121 // get the stack frame index of a 8 byte buffer
3122 MachineFunction &MF = DAG.getMachineFunction();
3123 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
3124 // get address of 8 byte buffer
3125 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
3126 // word offset constant for Hi/Lo address computation
3127 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
3128 // set up Hi and Lo (into buffer) address based on endian
3129 SDOperand Hi, Lo;
3130 if (TLI.isLittleEndian()) {
3131 Hi = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot, WordOff);
3132 Lo = StackSlot;
3133 } else {
3134 Hi = StackSlot;
3135 Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot, WordOff);
3136 }
3137 // if signed map to unsigned space
3138 SDOperand Op0Mapped;
3139 if (isSigned) {
3140 // constant used to invert sign bit (signed to unsigned mapping)
3141 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
3142 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
3143 } else {
3144 Op0Mapped = Op0;
3145 }
3146 // store the lo of the constructed double - based on integer input
3147 SDOperand Store1 = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3148 Op0Mapped, Lo, DAG.getSrcValue(NULL));
3149 // initial hi portion of constructed double
3150 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
3151 // store the hi of the constructed double - biased exponent
3152 SDOperand Store2 = DAG.getNode(ISD::STORE, MVT::Other, Store1,
3153 InitialHi, Hi, DAG.getSrcValue(NULL));
3154 // load the constructed double
3155 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot,
3156 DAG.getSrcValue(NULL));
3157 // FP constant to bias correct the final result
3158 SDOperand Bias = DAG.getConstantFP(isSigned ?
3159 BitsToDouble(0x4330000080000000ULL)
3160 : BitsToDouble(0x4330000000000000ULL),
3161 MVT::f64);
3162 // subtract the bias
3163 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
3164 // final result
3165 SDOperand Result;
3166 // handle final rounding
3167 if (DestVT == MVT::f64) {
3168 // do nothing
3169 Result = Sub;
3170 } else {
3171 // if f32 then cast to f32
3172 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
3173 }
3174 return Result;
3175 }
3176 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
3177 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
3178
3179 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
3180 DAG.getConstant(0, Op0.getValueType()),
3181 ISD::SETLT);
3182 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3183 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3184 SignSet, Four, Zero);
3185
3186 // If the sign bit of the integer is set, the large number will be treated
3187 // as a negative number. To counteract this, the dynamic code adds an
3188 // offset depending on the data type.
3189 uint64_t FF;
3190 switch (Op0.getValueType()) {
3191 default: assert(0 && "Unsupported integer type!");
3192 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
3193 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
3194 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
3195 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
3196 }
3197 if (TLI.isLittleEndian()) FF <<= 32;
3198 static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
3199
3200 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
3201 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3202 SDOperand FudgeInReg;
3203 if (DestVT == MVT::f32)
3204 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
3205 DAG.getSrcValue(NULL));
3206 else {
3207 assert(DestVT == MVT::f64 && "Unexpected conversion");
3208 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
3209 DAG.getEntryNode(), CPIdx,
3210 DAG.getSrcValue(NULL), MVT::f32));
3211 }
3212
3213 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
3214}
3215
3216/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
3217/// *INT_TO_FP operation of the specified operand when the target requests that
3218/// we promote it. At this point, we know that the result and operand types are
3219/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
3220/// operation that takes a larger input.
3221SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
3222 MVT::ValueType DestVT,
3223 bool isSigned) {
3224 // First step, figure out the appropriate *INT_TO_FP operation to use.
3225 MVT::ValueType NewInTy = LegalOp.getValueType();
3226
3227 unsigned OpToUse = 0;
3228
3229 // Scan for the appropriate larger type to use.
3230 while (1) {
3231 NewInTy = (MVT::ValueType)(NewInTy+1);
3232 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
3233
3234 // If the target supports SINT_TO_FP of this type, use it.
3235 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
3236 default: break;
3237 case TargetLowering::Legal:
3238 if (!TLI.isTypeLegal(NewInTy))
3239 break; // Can't use this datatype.
3240 // FALL THROUGH.
3241 case TargetLowering::Custom:
3242 OpToUse = ISD::SINT_TO_FP;
3243 break;
3244 }
3245 if (OpToUse) break;
3246 if (isSigned) continue;
3247
3248 // If the target supports UINT_TO_FP of this type, use it.
3249 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
3250 default: break;
3251 case TargetLowering::Legal:
3252 if (!TLI.isTypeLegal(NewInTy))
3253 break; // Can't use this datatype.
3254 // FALL THROUGH.
3255 case TargetLowering::Custom:
3256 OpToUse = ISD::UINT_TO_FP;
3257 break;
3258 }
3259 if (OpToUse) break;
3260
3261 // Otherwise, try a larger type.
3262 }
3263
3264 // Okay, we found the operation and type to use. Zero extend our input to the
3265 // desired type then run the operation on it.
3266 return DAG.getNode(OpToUse, DestVT,
3267 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
3268 NewInTy, LegalOp));
3269}
3270
3271/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
3272/// FP_TO_*INT operation of the specified operand when the target requests that
3273/// we promote it. At this point, we know that the result and operand types are
3274/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
3275/// operation that returns a larger result.
3276SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
3277 MVT::ValueType DestVT,
3278 bool isSigned) {
3279 // First step, figure out the appropriate FP_TO*INT operation to use.
3280 MVT::ValueType NewOutTy = DestVT;
3281
3282 unsigned OpToUse = 0;
3283
3284 // Scan for the appropriate larger type to use.
3285 while (1) {
3286 NewOutTy = (MVT::ValueType)(NewOutTy+1);
3287 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
3288
3289 // If the target supports FP_TO_SINT returning this type, use it.
3290 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
3291 default: break;
3292 case TargetLowering::Legal:
3293 if (!TLI.isTypeLegal(NewOutTy))
3294 break; // Can't use this datatype.
3295 // FALL THROUGH.
3296 case TargetLowering::Custom:
3297 OpToUse = ISD::FP_TO_SINT;
3298 break;
3299 }
3300 if (OpToUse) break;
3301
3302 // If the target supports FP_TO_UINT of this type, use it.
3303 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
3304 default: break;
3305 case TargetLowering::Legal:
3306 if (!TLI.isTypeLegal(NewOutTy))
3307 break; // Can't use this datatype.
3308 // FALL THROUGH.
3309 case TargetLowering::Custom:
3310 OpToUse = ISD::FP_TO_UINT;
3311 break;
3312 }
3313 if (OpToUse) break;
3314
3315 // Otherwise, try a larger type.
3316 }
3317
3318 // Okay, we found the operation and type to use. Truncate the result of the
3319 // extended FP_TO_*INT operation to the desired size.
3320 return DAG.getNode(ISD::TRUNCATE, DestVT,
3321 DAG.getNode(OpToUse, NewOutTy, LegalOp));
3322}
3323
3324/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
3325///
3326SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
3327 MVT::ValueType VT = Op.getValueType();
3328 MVT::ValueType SHVT = TLI.getShiftAmountTy();
3329 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
3330 switch (VT) {
3331 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
3332 case MVT::i16:
3333 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
3334 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
3335 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
3336 case MVT::i32:
3337 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
3338 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
3339 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
3340 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
3341 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
3342 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
3343 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
3344 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
3345 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
3346 case MVT::i64:
3347 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
3348 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
3349 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
3350 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
3351 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
3352 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
3353 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
3354 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
3355 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
3356 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
3357 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
3358 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
3359 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
3360 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
3361 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
3362 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
3363 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
3364 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
3365 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
3366 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
3367 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
3368 }
3369}
3370
3371/// ExpandBitCount - Expand the specified bitcount instruction into operations.
3372///
3373SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
3374 switch (Opc) {
3375 default: assert(0 && "Cannot expand this yet!");
3376 case ISD::CTPOP: {
3377 static const uint64_t mask[6] = {
3378 0x5555555555555555ULL, 0x3333333333333333ULL,
3379 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
3380 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
3381 };
3382 MVT::ValueType VT = Op.getValueType();
3383 MVT::ValueType ShVT = TLI.getShiftAmountTy();
3384 unsigned len = getSizeInBits(VT);
3385 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
3386 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
3387 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
3388 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
3389 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
3390 DAG.getNode(ISD::AND, VT,
3391 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
3392 }
3393 return Op;
3394 }
3395 case ISD::CTLZ: {
3396 // for now, we do this:
3397 // x = x | (x >> 1);
3398 // x = x | (x >> 2);
3399 // ...
3400 // x = x | (x >>16);
3401 // x = x | (x >>32); // for 64-bit input
3402 // return popcount(~x);
3403 //
3404 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
3405 MVT::ValueType VT = Op.getValueType();
3406 MVT::ValueType ShVT = TLI.getShiftAmountTy();
3407 unsigned len = getSizeInBits(VT);
3408 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
3409 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
3410 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
3411 }
3412 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
3413 return DAG.getNode(ISD::CTPOP, VT, Op);
3414 }
3415 case ISD::CTTZ: {
3416 // for now, we use: { return popcount(~x & (x - 1)); }
3417 // unless the target has ctlz but not ctpop, in which case we use:
3418 // { return 32 - nlz(~x & (x-1)); }
3419 // see also http://www.hackersdelight.org/HDcode/ntz.cc
3420 MVT::ValueType VT = Op.getValueType();
3421 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
3422 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
3423 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
3424 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
3425 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
3426 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
3427 TLI.isOperationLegal(ISD::CTLZ, VT))
3428 return DAG.getNode(ISD::SUB, VT,
3429 DAG.getConstant(getSizeInBits(VT), VT),
3430 DAG.getNode(ISD::CTLZ, VT, Tmp3));
3431 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
3432 }
3433 }
3434}
Chris Lattnere34b3962005-01-19 04:19:40 +00003435
3436
Chris Lattner3e928bb2005-01-07 07:47:09 +00003437/// ExpandOp - Expand the specified SDOperand into its two component pieces
3438/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
3439/// LegalizeNodes map is filled in for any results that are not expanded, the
3440/// ExpandedNodes map is filled in for any results that are expanded, and the
3441/// Lo/Hi values are returned.
3442void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
3443 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00003444 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003445 SDNode *Node = Op.Val;
3446 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Nate Begemanab48be32005-11-22 18:16:00 +00003447 assert((MVT::isInteger(VT) || VT == MVT::Vector) &&
3448 "Cannot expand FP values!");
3449 assert(((MVT::isInteger(NVT) && NVT < VT) || VT == MVT::Vector) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00003450 "Cannot expand to FP value or to larger int value!");
3451
Chris Lattner6fdcb252005-09-02 20:32:45 +00003452 // See if we already expanded it.
3453 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
3454 = ExpandedNodes.find(Op);
3455 if (I != ExpandedNodes.end()) {
3456 Lo = I->second.first;
3457 Hi = I->second.second;
3458 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003459 }
3460
Chris Lattner3e928bb2005-01-07 07:47:09 +00003461 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00003462 case ISD::CopyFromReg:
3463 assert(0 && "CopyFromReg must be legal!");
3464 default:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003465 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
3466 assert(0 && "Do not know how to expand this operator!");
3467 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003468 case ISD::UNDEF:
3469 Lo = DAG.getNode(ISD::UNDEF, NVT);
3470 Hi = DAG.getNode(ISD::UNDEF, NVT);
3471 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003472 case ISD::Constant: {
3473 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
3474 Lo = DAG.getConstant(Cst, NVT);
3475 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
3476 break;
3477 }
Nate Begemancc827e62005-12-07 19:48:11 +00003478 case ISD::ConstantVec: {
3479 unsigned NumElements = Node->getNumOperands();
3480 // If we only have two elements left in the constant vector, just break it
3481 // apart into the two scalar constants it contains. Otherwise, bisect the
3482 // ConstantVec, and return each half as a new ConstantVec.
3483 // FIXME: this is hard coded as big endian, it may have to change to support
3484 // SSE and Alpha MVI
3485 if (NumElements == 2) {
3486 Hi = Node->getOperand(0);
3487 Lo = Node->getOperand(1);
3488 } else {
3489 NumElements /= 2;
3490 std::vector<SDOperand> LoOps, HiOps;
3491 for (unsigned I = 0, E = NumElements; I < E; ++I) {
3492 HiOps.push_back(Node->getOperand(I));
3493 LoOps.push_back(Node->getOperand(I+NumElements));
3494 }
3495 Lo = DAG.getNode(ISD::ConstantVec, MVT::Vector, LoOps);
3496 Hi = DAG.getNode(ISD::ConstantVec, MVT::Vector, HiOps);
3497 }
3498 break;
3499 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003500
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00003501 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00003502 // Return the operands.
3503 Lo = Node->getOperand(0);
3504 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00003505 break;
Chris Lattner58f79632005-12-12 22:27:43 +00003506
3507 case ISD::SIGN_EXTEND_INREG:
3508 ExpandOp(Node->getOperand(0), Lo, Hi);
3509 // Sign extend the lo-part.
3510 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
3511 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
3512 TLI.getShiftAmountTy()));
3513 // sext_inreg the low part if needed.
3514 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
3515 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00003516
Nate Begemand88fc032006-01-14 03:14:10 +00003517 case ISD::BSWAP: {
3518 ExpandOp(Node->getOperand(0), Lo, Hi);
3519 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
3520 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
3521 Lo = TempLo;
3522 break;
3523 }
3524
Chris Lattneredb1add2005-05-11 04:51:16 +00003525 case ISD::CTPOP:
3526 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00003527 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
3528 DAG.getNode(ISD::CTPOP, NVT, Lo),
3529 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00003530 Hi = DAG.getConstant(0, NVT);
3531 break;
3532
Chris Lattner39a8f332005-05-12 19:05:01 +00003533 case ISD::CTLZ: {
3534 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00003535 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00003536 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
3537 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003538 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
3539 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00003540 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
3541 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
3542
3543 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
3544 Hi = DAG.getConstant(0, NVT);
3545 break;
3546 }
3547
3548 case ISD::CTTZ: {
3549 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00003550 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00003551 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
3552 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003553 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
3554 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00003555 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
3556 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
3557
3558 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
3559 Hi = DAG.getConstant(0, NVT);
3560 break;
3561 }
Chris Lattneredb1add2005-05-11 04:51:16 +00003562
Nate Begemanacc398c2006-01-25 18:21:52 +00003563 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00003564 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
3565 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00003566 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
3567 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
3568
3569 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00003570 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00003571 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
3572 if (!TLI.isLittleEndian())
3573 std::swap(Lo, Hi);
3574 break;
3575 }
3576
Chris Lattner3e928bb2005-01-07 07:47:09 +00003577 case ISD::LOAD: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00003578 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
3579 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00003580 Lo = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
Chris Lattner3e928bb2005-01-07 07:47:09 +00003581
3582 // Increment the pointer to the other half.
Chris Lattner38d6be52005-01-09 19:43:23 +00003583 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003584 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
3585 getIntPtrConstant(IncrementSize));
Chris Lattner8137c9e2006-01-28 05:07:51 +00003586 // FIXME: This creates a bogus srcvalue!
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00003587 Hi = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
Chris Lattnerec39a452005-01-19 18:02:17 +00003588
3589 // Build a factor node to remember that this load is independent of the
3590 // other one.
3591 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
3592 Hi.getValue(1));
Misha Brukmanedf128a2005-04-21 22:36:52 +00003593
Chris Lattner3e928bb2005-01-07 07:47:09 +00003594 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00003595 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattner3e928bb2005-01-07 07:47:09 +00003596 if (!TLI.isLittleEndian())
3597 std::swap(Lo, Hi);
3598 break;
3599 }
Nate Begemanab48be32005-11-22 18:16:00 +00003600 case ISD::VLOAD: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00003601 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
3602 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanab48be32005-11-22 18:16:00 +00003603 unsigned NumElements =cast<ConstantSDNode>(Node->getOperand(2))->getValue();
3604 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
3605
3606 // If we only have two elements, turn into a pair of scalar loads.
3607 // FIXME: handle case where a vector of two elements is fine, such as
3608 // 2 x double on SSE2.
3609 if (NumElements == 2) {
3610 Lo = DAG.getLoad(EVT, Ch, Ptr, Node->getOperand(4));
3611 // Increment the pointer to the other half.
3612 unsigned IncrementSize = MVT::getSizeInBits(EVT)/8;
3613 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
3614 getIntPtrConstant(IncrementSize));
Chris Lattner8137c9e2006-01-28 05:07:51 +00003615 // FIXME: This creates a bogus srcvalue!
Nate Begemanab48be32005-11-22 18:16:00 +00003616 Hi = DAG.getLoad(EVT, Ch, Ptr, Node->getOperand(4));
3617 } else {
3618 NumElements /= 2; // Split the vector in half
3619 Lo = DAG.getVecLoad(NumElements, EVT, Ch, Ptr, Node->getOperand(4));
3620 unsigned IncrementSize = NumElements * MVT::getSizeInBits(EVT)/8;
3621 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
3622 getIntPtrConstant(IncrementSize));
Chris Lattner8137c9e2006-01-28 05:07:51 +00003623 // FIXME: This creates a bogus srcvalue!
Nate Begemanab48be32005-11-22 18:16:00 +00003624 Hi = DAG.getVecLoad(NumElements, EVT, Ch, Ptr, Node->getOperand(4));
3625 }
3626
3627 // Build a factor node to remember that this load is independent of the
3628 // other one.
3629 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
3630 Hi.getValue(1));
3631
3632 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00003633 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Nate Begemanab48be32005-11-22 18:16:00 +00003634 if (!TLI.isLittleEndian())
3635 std::swap(Lo, Hi);
3636 break;
3637 }
3638 case ISD::VADD:
3639 case ISD::VSUB:
3640 case ISD::VMUL: {
3641 unsigned NumElements =cast<ConstantSDNode>(Node->getOperand(2))->getValue();
3642 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
3643 SDOperand LL, LH, RL, RH;
3644
3645 ExpandOp(Node->getOperand(0), LL, LH);
3646 ExpandOp(Node->getOperand(1), RL, RH);
3647
3648 // If we only have two elements, turn into a pair of scalar loads.
3649 // FIXME: handle case where a vector of two elements is fine, such as
3650 // 2 x double on SSE2.
3651 if (NumElements == 2) {
3652 unsigned Opc = getScalarizedOpcode(Node->getOpcode(), EVT);
3653 Lo = DAG.getNode(Opc, EVT, LL, RL);
3654 Hi = DAG.getNode(Opc, EVT, LH, RH);
3655 } else {
3656 Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, LL, RL, LL.getOperand(2),
3657 LL.getOperand(3));
3658 Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, LH, RH, LH.getOperand(2),
3659 LH.getOperand(3));
3660 }
3661 break;
3662 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003663 case ISD::AND:
3664 case ISD::OR:
3665 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
3666 SDOperand LL, LH, RL, RH;
3667 ExpandOp(Node->getOperand(0), LL, LH);
3668 ExpandOp(Node->getOperand(1), RL, RH);
3669 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
3670 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
3671 break;
3672 }
3673 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00003674 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003675 ExpandOp(Node->getOperand(1), LL, LH);
3676 ExpandOp(Node->getOperand(2), RL, RH);
Chris Lattner456a93a2006-01-28 07:39:30 +00003677 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
3678 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003679 break;
3680 }
Nate Begeman9373a812005-08-10 20:51:12 +00003681 case ISD::SELECT_CC: {
3682 SDOperand TL, TH, FL, FH;
3683 ExpandOp(Node->getOperand(2), TL, TH);
3684 ExpandOp(Node->getOperand(3), FL, FH);
3685 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
3686 Node->getOperand(1), TL, FL, Node->getOperand(4));
3687 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
3688 Node->getOperand(1), TH, FH, Node->getOperand(4));
3689 break;
3690 }
Nate Begeman144ff662005-10-13 17:15:37 +00003691 case ISD::SEXTLOAD: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00003692 SDOperand Chain = Node->getOperand(0);
3693 SDOperand Ptr = Node->getOperand(1);
Nate Begeman144ff662005-10-13 17:15:37 +00003694 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
3695
3696 if (EVT == NVT)
3697 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
3698 else
3699 Lo = DAG.getExtLoad(ISD::SEXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
3700 EVT);
Chris Lattner9ad84812005-10-13 21:44:47 +00003701
3702 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00003703 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner9ad84812005-10-13 21:44:47 +00003704
Nate Begeman144ff662005-10-13 17:15:37 +00003705 // The high part is obtained by SRA'ing all but one of the bits of the lo
3706 // part.
3707 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
3708 Hi = DAG.getNode(ISD::SRA, NVT, Lo, DAG.getConstant(LoSize-1,
3709 TLI.getShiftAmountTy()));
Nate Begeman144ff662005-10-13 17:15:37 +00003710 break;
3711 }
3712 case ISD::ZEXTLOAD: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00003713 SDOperand Chain = Node->getOperand(0);
3714 SDOperand Ptr = Node->getOperand(1);
Nate Begeman144ff662005-10-13 17:15:37 +00003715 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
3716
3717 if (EVT == NVT)
3718 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
3719 else
3720 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
3721 EVT);
Chris Lattner9ad84812005-10-13 21:44:47 +00003722
3723 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00003724 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner9ad84812005-10-13 21:44:47 +00003725
Nate Begeman144ff662005-10-13 17:15:37 +00003726 // The high part is just a zero.
Chris Lattner8137c9e2006-01-28 05:07:51 +00003727 Hi = DAG.getConstant(0, NVT);
Chris Lattner9ad84812005-10-13 21:44:47 +00003728 break;
3729 }
3730 case ISD::EXTLOAD: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00003731 SDOperand Chain = Node->getOperand(0);
3732 SDOperand Ptr = Node->getOperand(1);
Chris Lattner9ad84812005-10-13 21:44:47 +00003733 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
3734
3735 if (EVT == NVT)
3736 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
3737 else
3738 Lo = DAG.getExtLoad(ISD::EXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
3739 EVT);
3740
3741 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00003742 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner9ad84812005-10-13 21:44:47 +00003743
3744 // The high part is undefined.
Chris Lattner13c78e22005-09-02 00:18:10 +00003745 Hi = DAG.getNode(ISD::UNDEF, NVT);
3746 break;
3747 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00003748 case ISD::ANY_EXTEND:
3749 // The low part is any extension of the input (which degenerates to a copy).
3750 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
3751 // The high part is undefined.
3752 Hi = DAG.getNode(ISD::UNDEF, NVT);
3753 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003754 case ISD::SIGN_EXTEND: {
3755 // The low part is just a sign extension of the input (which degenerates to
3756 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00003757 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00003758
Chris Lattner3e928bb2005-01-07 07:47:09 +00003759 // The high part is obtained by SRA'ing all but one of the bits of the lo
3760 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00003761 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00003762 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
3763 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00003764 break;
3765 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00003766 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003767 // The low part is just a zero extension of the input (which degenerates to
3768 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00003769 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00003770
Chris Lattner3e928bb2005-01-07 07:47:09 +00003771 // The high part is just a zero.
3772 Hi = DAG.getConstant(0, NVT);
3773 break;
Chris Lattner35481892005-12-23 00:16:34 +00003774
3775 case ISD::BIT_CONVERT: {
3776 SDOperand Tmp = ExpandBIT_CONVERT(Node->getValueType(0),
3777 Node->getOperand(0));
3778 ExpandOp(Tmp, Lo, Hi);
3779 break;
3780 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00003781
Chris Lattner8137c9e2006-01-28 05:07:51 +00003782 case ISD::READCYCLECOUNTER:
Chris Lattner308575b2005-11-20 22:56:56 +00003783 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
3784 TargetLowering::Custom &&
3785 "Must custom expand ReadCycleCounter");
Chris Lattner8137c9e2006-01-28 05:07:51 +00003786 Lo = TLI.LowerOperation(Op, DAG);
3787 assert(Lo.Val && "Node must be custom expanded!");
3788 Hi = Lo.getValue(1);
Chris Lattner308575b2005-11-20 22:56:56 +00003789 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00003790 LegalizeOp(Lo.getValue(2)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00003791 break;
3792
Chris Lattner4e6c7462005-01-08 19:27:05 +00003793 // These operators cannot be expanded directly, emit them as calls to
3794 // library functions.
3795 case ISD::FP_TO_SINT:
Chris Lattner80a3e942005-07-29 00:33:32 +00003796 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00003797 SDOperand Op;
3798 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3799 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00003800 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
3801 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00003802 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003803
Chris Lattnerf20d1832005-07-30 01:40:57 +00003804 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
3805
Chris Lattner80a3e942005-07-29 00:33:32 +00003806 // Now that the custom expander is done, expand the result, which is still
3807 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00003808 if (Op.Val) {
3809 ExpandOp(Op, Lo, Hi);
3810 break;
3811 }
Chris Lattner80a3e942005-07-29 00:33:32 +00003812 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003813
Chris Lattner4e6c7462005-01-08 19:27:05 +00003814 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00003815 Lo = ExpandLibCall("__fixsfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00003816 else
Chris Lattner77e77a62005-01-21 06:05:23 +00003817 Lo = ExpandLibCall("__fixdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00003818 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003819
Chris Lattner4e6c7462005-01-08 19:27:05 +00003820 case ISD::FP_TO_UINT:
Chris Lattner80a3e942005-07-29 00:33:32 +00003821 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00003822 SDOperand Op;
3823 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3824 case Expand: assert(0 && "cannot expand FP!");
3825 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
3826 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
3827 }
3828
3829 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
3830
3831 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00003832 if (Op.Val) {
3833 ExpandOp(Op, Lo, Hi);
3834 break;
3835 }
Chris Lattner80a3e942005-07-29 00:33:32 +00003836 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003837
Chris Lattner4e6c7462005-01-08 19:27:05 +00003838 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00003839 Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00003840 else
Chris Lattner77e77a62005-01-21 06:05:23 +00003841 Lo = ExpandLibCall("__fixunsdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00003842 break;
3843
Evan Cheng05a2d562006-01-09 18:31:59 +00003844 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00003845 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00003846 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00003847 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00003848 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00003849 Op = TLI.LowerOperation(Op, DAG);
3850 if (Op.Val) {
3851 // Now that the custom expander is done, expand the result, which is
3852 // still VT.
3853 ExpandOp(Op, Lo, Hi);
3854 break;
3855 }
3856 }
3857
Chris Lattnere34b3962005-01-19 04:19:40 +00003858 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00003859 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00003860 break;
Chris Lattner47599822005-04-02 03:38:53 +00003861
3862 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00003863 TargetLowering::LegalizeAction Action =
3864 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
3865 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
3866 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00003867 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00003868 break;
3869 }
3870
Chris Lattnere34b3962005-01-19 04:19:40 +00003871 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00003872 Lo = ExpandLibCall("__ashldi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00003873 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00003874 }
Chris Lattnere34b3962005-01-19 04:19:40 +00003875
Evan Cheng05a2d562006-01-09 18:31:59 +00003876 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00003877 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00003878 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00003879 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00003880 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00003881 Op = TLI.LowerOperation(Op, DAG);
3882 if (Op.Val) {
3883 // Now that the custom expander is done, expand the result, which is
3884 // still VT.
3885 ExpandOp(Op, Lo, Hi);
3886 break;
3887 }
3888 }
3889
Chris Lattnere34b3962005-01-19 04:19:40 +00003890 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00003891 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00003892 break;
Chris Lattner47599822005-04-02 03:38:53 +00003893
3894 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00003895 TargetLowering::LegalizeAction Action =
3896 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
3897 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
3898 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00003899 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00003900 break;
3901 }
3902
Chris Lattnere34b3962005-01-19 04:19:40 +00003903 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00003904 Lo = ExpandLibCall("__ashrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00003905 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00003906 }
3907
3908 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00003909 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00003910 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00003911 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00003912 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00003913 Op = TLI.LowerOperation(Op, DAG);
3914 if (Op.Val) {
3915 // Now that the custom expander is done, expand the result, which is
3916 // still VT.
3917 ExpandOp(Op, Lo, Hi);
3918 break;
3919 }
3920 }
3921
Chris Lattnere34b3962005-01-19 04:19:40 +00003922 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00003923 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00003924 break;
Chris Lattner47599822005-04-02 03:38:53 +00003925
3926 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00003927 TargetLowering::LegalizeAction Action =
3928 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
3929 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
3930 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00003931 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00003932 break;
3933 }
3934
Chris Lattnere34b3962005-01-19 04:19:40 +00003935 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00003936 Lo = ExpandLibCall("__lshrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00003937 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00003938 }
Chris Lattnere34b3962005-01-19 04:19:40 +00003939
Misha Brukmanedf128a2005-04-21 22:36:52 +00003940 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00003941 case ISD::SUB: {
3942 // If the target wants to custom expand this, let them.
3943 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
3944 TargetLowering::Custom) {
3945 Op = TLI.LowerOperation(Op, DAG);
3946 if (Op.Val) {
3947 ExpandOp(Op, Lo, Hi);
3948 break;
3949 }
3950 }
3951
3952 // Expand the subcomponents.
3953 SDOperand LHSL, LHSH, RHSL, RHSH;
3954 ExpandOp(Node->getOperand(0), LHSL, LHSH);
3955 ExpandOp(Node->getOperand(1), RHSL, RHSH);
3956
3957 std::vector<SDOperand> Ops;
3958 Ops.push_back(LHSL);
3959 Ops.push_back(LHSH);
3960 Ops.push_back(RHSL);
3961 Ops.push_back(RHSH);
3962 std::vector<MVT::ValueType> VTs(2, LHSL.getValueType());
3963 unsigned Opc =
3964 Node->getOpcode() == ISD::ADD ? ISD::ADD_PARTS : ISD::SUB_PARTS;
3965 Lo = DAG.getNode(Opc, VTs, Ops);
3966 Hi = Lo.getValue(1);
Chris Lattner84f67882005-01-20 18:52:28 +00003967 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00003968 }
Nate Begemanc7c16572005-04-11 03:01:51 +00003969 case ISD::MUL: {
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003970 if (TLI.isOperationLegal(ISD::MULHU, NVT)) {
Nate Begemanc7c16572005-04-11 03:01:51 +00003971 SDOperand LL, LH, RL, RH;
3972 ExpandOp(Node->getOperand(0), LL, LH);
3973 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman56eb8682005-08-30 02:44:00 +00003974 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
3975 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
3976 // extended the sign bit of the low half through the upper half, and if so
3977 // emit a MULHS instead of the alternate sequence that is valid for any
3978 // i64 x i64 multiply.
3979 if (TLI.isOperationLegal(ISD::MULHS, NVT) &&
3980 // is RH an extension of the sign bit of RL?
3981 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
3982 RH.getOperand(1).getOpcode() == ISD::Constant &&
3983 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
3984 // is LH an extension of the sign bit of LL?
3985 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
3986 LH.getOperand(1).getOpcode() == ISD::Constant &&
3987 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
3988 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
3989 } else {
3990 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
3991 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
3992 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
3993 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
3994 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
3995 }
Nate Begemanc7c16572005-04-11 03:01:51 +00003996 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
3997 } else {
Chris Lattner9c6b4b82006-01-28 04:28:26 +00003998 Lo = ExpandLibCall("__muldi3" , Node, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00003999 }
4000 break;
4001 }
Chris Lattner77e77a62005-01-21 06:05:23 +00004002 case ISD::SDIV: Lo = ExpandLibCall("__divdi3" , Node, Hi); break;
4003 case ISD::UDIV: Lo = ExpandLibCall("__udivdi3", Node, Hi); break;
4004 case ISD::SREM: Lo = ExpandLibCall("__moddi3" , Node, Hi); break;
4005 case ISD::UREM: Lo = ExpandLibCall("__umoddi3", Node, Hi); break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004006 }
4007
Chris Lattner83397362005-12-21 18:02:52 +00004008 // Make sure the resultant values have been legalized themselves, unless this
4009 // is a type that requires multi-step expansion.
4010 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
4011 Lo = LegalizeOp(Lo);
4012 Hi = LegalizeOp(Hi);
4013 }
Evan Cheng05a2d562006-01-09 18:31:59 +00004014
4015 // Remember in a map if the values will be reused later.
4016 bool isNew =
4017 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4018 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00004019}
4020
4021
4022// SelectionDAG::Legalize - This is the entry point for the file.
4023//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00004024void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00004025 /// run - This is the main entry point to this class.
4026 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00004027 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00004028}
4029