blob: b2a3ac97b91223b0e95a9e29484a50f1f3e59a9c [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"
15#include "llvm/CodeGen/MachineConstantPool.h"
16#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000017#include "llvm/CodeGen/MachineFrameInfo.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 Lattner3e928bb2005-01-07 07:47:09 +000021#include "llvm/Constants.h"
22#include <iostream>
23using namespace llvm;
24
25//===----------------------------------------------------------------------===//
26/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
27/// hacks on it until the target machine can handle it. This involves
28/// eliminating value sizes the machine cannot handle (promoting small sizes to
29/// large sizes or splitting up large values into small values) as well as
30/// eliminating operations the machine cannot handle.
31///
32/// This code also does a small amount of optimization and recognition of idioms
33/// as part of its processing. For example, if a target does not support a
34/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
35/// will attempt merge setcc and brc instructions into brcc's.
36///
37namespace {
38class SelectionDAGLegalize {
39 TargetLowering &TLI;
40 SelectionDAG &DAG;
41
42 /// LegalizeAction - This enum indicates what action we should take for each
43 /// value type the can occur in the program.
44 enum LegalizeAction {
45 Legal, // The target natively supports this value type.
46 Promote, // This should be promoted to the next larger type.
47 Expand, // This integer type should be broken into smaller pieces.
48 };
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)".
53 unsigned ValueTypeActions;
54
55 /// NeedsAnotherIteration - This is set when we expand a large integer
56 /// operation into smaller integer operations, but the smaller operations are
57 /// not set. This occurs only rarely in practice, for targets that don't have
58 /// 32-bit or larger integer registers.
59 bool NeedsAnotherIteration;
60
61 /// LegalizedNodes - For nodes that are of legal width, and that have more
62 /// than one use, this map indicates what regularized operand to use. This
63 /// allows us to avoid legalizing the same thing more than once.
64 std::map<SDOperand, SDOperand> LegalizedNodes;
65
Chris Lattner03c85462005-01-15 05:21:40 +000066 /// PromotedNodes - For nodes that are below legal width, and that have more
67 /// than one use, this map indicates what promoted value to use. This allows
68 /// us to avoid promoting the same thing more than once.
69 std::map<SDOperand, SDOperand> PromotedNodes;
70
Chris Lattner3e928bb2005-01-07 07:47:09 +000071 /// ExpandedNodes - For nodes that need to be expanded, and which have more
72 /// than one use, this map indicates which which operands are the expanded
73 /// version of the input. This allows us to avoid expanding the same node
74 /// more than once.
75 std::map<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
76
Chris Lattner8afc48e2005-01-07 22:28:47 +000077 void AddLegalizedOperand(SDOperand From, SDOperand To) {
78 bool isNew = LegalizedNodes.insert(std::make_pair(From, To)).second;
79 assert(isNew && "Got into the map somehow?");
80 }
Chris Lattner03c85462005-01-15 05:21:40 +000081 void AddPromotedOperand(SDOperand From, SDOperand To) {
82 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
83 assert(isNew && "Got into the map somehow?");
84 }
Chris Lattner8afc48e2005-01-07 22:28:47 +000085
Chris Lattner3e928bb2005-01-07 07:47:09 +000086public:
87
Chris Lattner9c32d3b2005-01-23 04:42:50 +000088 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +000089
90 /// Run - While there is still lowering to do, perform a pass over the DAG.
91 /// Most regularization can be done in a single pass, but targets that require
92 /// large values to be split into registers multiple times (e.g. i64 -> 4x
93 /// i16) require iteration for these values (the first iteration will demote
94 /// to i32, the second will demote to i16).
95 void Run() {
96 do {
97 NeedsAnotherIteration = false;
98 LegalizeDAG();
99 } while (NeedsAnotherIteration);
100 }
101
102 /// getTypeAction - Return how we should legalize values of this type, either
103 /// it is already legal or we need to expand it into multiple registers of
104 /// smaller integer type, or we need to promote it to a larger type.
105 LegalizeAction getTypeAction(MVT::ValueType VT) const {
106 return (LegalizeAction)((ValueTypeActions >> (2*VT)) & 3);
107 }
108
109 /// isTypeLegal - Return true if this type is legal on this target.
110 ///
111 bool isTypeLegal(MVT::ValueType VT) const {
112 return getTypeAction(VT) == Legal;
113 }
114
115private:
116 void LegalizeDAG();
117
118 SDOperand LegalizeOp(SDOperand O);
119 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
Chris Lattner03c85462005-01-15 05:21:40 +0000120 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000121
Chris Lattner77e77a62005-01-21 06:05:23 +0000122 SDOperand ExpandLibCall(const char *Name, SDNode *Node,
123 SDOperand &Hi);
124 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
125 SDOperand Source);
Chris Lattnere34b3962005-01-19 04:19:40 +0000126 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
127 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000128 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
129 SDOperand &Lo, SDOperand &Hi);
130 void ExpandByParts(unsigned NodeOp, SDOperand LHS, SDOperand RHS,
Chris Lattner47599822005-04-02 03:38:53 +0000131 SDOperand &Lo, SDOperand &Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +0000132
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000133 void SpliceCallInto(const SDOperand &CallResult, SDNode *OutChain);
134
Chris Lattner3e928bb2005-01-07 07:47:09 +0000135 SDOperand getIntPtrConstant(uint64_t Val) {
136 return DAG.getConstant(Val, TLI.getPointerTy());
137 }
138};
139}
140
141
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000142SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
143 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
144 ValueTypeActions(TLI.getValueTypeActions()) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000145 assert(MVT::LAST_VALUETYPE <= 16 &&
146 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000147}
148
Chris Lattner3e928bb2005-01-07 07:47:09 +0000149void SelectionDAGLegalize::LegalizeDAG() {
150 SDOperand OldRoot = DAG.getRoot();
151 SDOperand NewRoot = LegalizeOp(OldRoot);
152 DAG.setRoot(NewRoot);
153
154 ExpandedNodes.clear();
155 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000156 PromotedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000157
158 // Remove dead nodes now.
Chris Lattner62fd2692005-01-07 21:09:37 +0000159 DAG.RemoveDeadNodes(OldRoot.Val);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000160}
161
162SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattnere3304a32005-01-08 20:35:13 +0000163 assert(getTypeAction(Op.getValueType()) == Legal &&
164 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000165 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000166
Chris Lattner3e928bb2005-01-07 07:47:09 +0000167 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000168 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000169 if (Node->getNumValues() > 1) {
170 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
171 switch (getTypeAction(Node->getValueType(i))) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000172 case Legal: break; // Nothing to do.
173 case Expand: {
174 SDOperand T1, T2;
175 ExpandOp(Op.getValue(i), T1, T2);
176 assert(LegalizedNodes.count(Op) &&
177 "Expansion didn't add legal operands!");
178 return LegalizedNodes[Op];
179 }
180 case Promote:
Chris Lattner03c85462005-01-15 05:21:40 +0000181 PromoteOp(Op.getValue(i));
182 assert(LegalizedNodes.count(Op) &&
183 "Expansion didn't add legal operands!");
184 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000185 }
186 }
187
Chris Lattner45982da2005-05-12 16:53:42 +0000188 // Note that LegalizeOp may be reentered even from single-use nodes, which
189 // means that we always must cache transformed nodes.
Chris Lattnere1bd8222005-01-11 05:57:22 +0000190 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
191 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000192
Chris Lattnerfa404e82005-01-09 19:03:49 +0000193 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000194
195 SDOperand Result = Op;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000196
197 switch (Node->getOpcode()) {
198 default:
199 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
200 assert(0 && "Do not know how to legalize this operator!");
201 abort();
202 case ISD::EntryToken:
203 case ISD::FrameIndex:
204 case ISD::GlobalAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000205 case ISD::ExternalSymbol:
Chris Lattner69a52152005-01-14 22:38:01 +0000206 case ISD::ConstantPool: // Nothing to do.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000207 assert(getTypeAction(Node->getValueType(0)) == Legal &&
208 "This must be legal!");
209 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000210 case ISD::CopyFromReg:
211 Tmp1 = LegalizeOp(Node->getOperand(0));
212 if (Tmp1 != Node->getOperand(0))
213 Result = DAG.getCopyFromReg(cast<RegSDNode>(Node)->getReg(),
214 Node->getValueType(0), Tmp1);
Chris Lattner13c184d2005-01-28 06:27:38 +0000215 else
216 Result = Op.getValue(0);
217
218 // Since CopyFromReg produces two values, make sure to remember that we
219 // legalized both of them.
220 AddLegalizedOperand(Op.getValue(0), Result);
221 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
222 return Result.getValue(Op.ResNo);
Chris Lattner18c2f132005-01-13 20:50:02 +0000223 case ISD::ImplicitDef:
224 Tmp1 = LegalizeOp(Node->getOperand(0));
225 if (Tmp1 != Node->getOperand(0))
Chris Lattner2ee743f2005-01-14 22:08:15 +0000226 Result = DAG.getImplicitDef(Tmp1, cast<RegSDNode>(Node)->getReg());
Chris Lattner18c2f132005-01-13 20:50:02 +0000227 break;
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000228 case ISD::UNDEF: {
229 MVT::ValueType VT = Op.getValueType();
230 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000231 default: assert(0 && "This action is not supported yet!");
232 case TargetLowering::Expand:
233 case TargetLowering::Promote:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000234 if (MVT::isInteger(VT))
235 Result = DAG.getConstant(0, VT);
236 else if (MVT::isFloatingPoint(VT))
237 Result = DAG.getConstantFP(0, VT);
238 else
239 assert(0 && "Unknown value type!");
240 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000241 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000242 break;
243 }
244 break;
245 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000246 case ISD::Constant:
247 // We know we don't need to expand constants here, constants only have one
248 // value and we check that it is fine above.
249
250 // FIXME: Maybe we should handle things like targets that don't support full
251 // 32-bit immediates?
252 break;
253 case ISD::ConstantFP: {
254 // Spill FP immediates to the constant pool if the target cannot directly
255 // codegen them. Targets often have some immediate values that can be
256 // efficiently generated into an FP register without a load. We explicitly
257 // leave these constants as ConstantFP nodes for the target to deal with.
258
259 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
260
261 // Check to see if this FP immediate is already legal.
262 bool isLegal = false;
263 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
264 E = TLI.legal_fpimm_end(); I != E; ++I)
265 if (CFP->isExactlyValue(*I)) {
266 isLegal = true;
267 break;
268 }
269
270 if (!isLegal) {
271 // Otherwise we need to spill the constant to memory.
272 MachineConstantPool *CP = DAG.getMachineFunction().getConstantPool();
273
274 bool Extend = false;
275
276 // If a FP immediate is precise when represented as a float, we put it
277 // into the constant pool as a float, even if it's is statically typed
278 // as a double.
279 MVT::ValueType VT = CFP->getValueType(0);
280 bool isDouble = VT == MVT::f64;
281 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
282 Type::FloatTy, CFP->getValue());
Chris Lattner99939d32005-01-28 22:58:25 +0000283 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
284 // Only do this if the target has a native EXTLOAD instruction from
285 // f32.
286 TLI.getOperationAction(ISD::EXTLOAD,
287 MVT::f32) == TargetLowering::Legal) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000288 LLVMC = cast<ConstantFP>(ConstantExpr::getCast(LLVMC, Type::FloatTy));
289 VT = MVT::f32;
290 Extend = true;
291 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000292
Chris Lattner3e928bb2005-01-07 07:47:09 +0000293 SDOperand CPIdx = DAG.getConstantPool(CP->getConstantPoolIndex(LLVMC),
294 TLI.getPointerTy());
Chris Lattnerf8161d82005-01-16 05:06:12 +0000295 if (Extend) {
296 Result = DAG.getNode(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(), CPIdx,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000297 DAG.getSrcValue(NULL), MVT::f32);
Chris Lattnerf8161d82005-01-16 05:06:12 +0000298 } else {
Chris Lattner52d08bd2005-05-09 20:23:03 +0000299 Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
300 DAG.getSrcValue(NULL));
Chris Lattnerf8161d82005-01-16 05:06:12 +0000301 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000302 }
303 break;
304 }
Chris Lattnera385e9b2005-01-13 17:59:25 +0000305 case ISD::TokenFactor: {
306 std::vector<SDOperand> Ops;
307 bool Changed = false;
308 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Chris Lattner1e81b9e2005-01-19 19:10:54 +0000309 SDOperand Op = Node->getOperand(i);
310 // Fold single-use TokenFactor nodes into this token factor as we go.
Chris Lattnere131e5b2005-05-12 06:04:14 +0000311 // FIXME: This is something that the DAGCombiner should do!!
Chris Lattner1e81b9e2005-01-19 19:10:54 +0000312 if (Op.getOpcode() == ISD::TokenFactor && Op.hasOneUse()) {
313 Changed = true;
314 for (unsigned j = 0, e = Op.getNumOperands(); j != e; ++j)
315 Ops.push_back(LegalizeOp(Op.getOperand(j)));
316 } else {
317 Ops.push_back(LegalizeOp(Op)); // Legalize the operands
318 Changed |= Ops[i] != Op;
319 }
Chris Lattnera385e9b2005-01-13 17:59:25 +0000320 }
321 if (Changed)
322 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Ops);
323 break;
324 }
325
Chris Lattner16cd04d2005-05-12 23:24:06 +0000326 case ISD::CALLSEQ_START:
327 case ISD::CALLSEQ_END:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000328 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
329 // There is no need to legalize the size argument (Operand #1)
Chris Lattner45982da2005-05-12 16:53:42 +0000330 Tmp2 = Node->getOperand(0);
331 if (Tmp1 != Tmp2) {
Chris Lattner88de6e72005-05-12 00:17:04 +0000332 Node->setAdjCallChain(Tmp1);
Chris Lattner45982da2005-05-12 16:53:42 +0000333
334 // If moving the operand from pointing to Tmp2 dropped its use count to 1,
335 // this will cause the maps used to memoize results to get confused.
336 // Create and add a dummy use, just to increase its use count. This will
337 // be removed at the end of legalize when dead nodes are removed.
338 if (Tmp2.Val->hasOneUse())
339 DAG.getNode(ISD::PCMARKER, MVT::Other, Tmp2,
340 DAG.getConstant(0, MVT::i32));
341 }
Chris Lattner16cd04d2005-05-12 23:24:06 +0000342 // Note that we do not create new CALLSEQ_DOWN/UP nodes here. These
Chris Lattner88de6e72005-05-12 00:17:04 +0000343 // nodes are treated specially and are mutated in place. This makes the dag
344 // legalization process more efficient and also makes libcall insertion
345 // easier.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000346 break;
Chris Lattnerfa404e82005-01-09 19:03:49 +0000347 case ISD::DYNAMIC_STACKALLOC:
348 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
349 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
350 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
351 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) ||
352 Tmp3 != Node->getOperand(2))
353 Result = DAG.getNode(ISD::DYNAMIC_STACKALLOC, Node->getValueType(0),
354 Tmp1, Tmp2, Tmp3);
Chris Lattner513e52e2005-01-09 19:07:54 +0000355 else
356 Result = Op.getValue(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +0000357
358 // Since this op produces two values, make sure to remember that we
359 // legalized both of them.
360 AddLegalizedOperand(SDOperand(Node, 0), Result);
361 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
362 return Result.getValue(Op.ResNo);
363
Chris Lattner3d9dffc2005-01-19 20:24:35 +0000364 case ISD::CALL: {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000365 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
366 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the callee.
Chris Lattner3d9dffc2005-01-19 20:24:35 +0000367
368 bool Changed = false;
369 std::vector<SDOperand> Ops;
370 for (unsigned i = 2, e = Node->getNumOperands(); i != e; ++i) {
371 Ops.push_back(LegalizeOp(Node->getOperand(i)));
372 Changed |= Ops.back() != Node->getOperand(i);
373 }
374
375 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) || Changed) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000376 std::vector<MVT::ValueType> RetTyVTs;
377 RetTyVTs.reserve(Node->getNumValues());
378 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerebda9422005-01-07 21:34:13 +0000379 RetTyVTs.push_back(Node->getValueType(i));
Chris Lattner3d9dffc2005-01-19 20:24:35 +0000380 Result = SDOperand(DAG.getCall(RetTyVTs, Tmp1, Tmp2, Ops), 0);
Chris Lattner38d6be52005-01-09 19:43:23 +0000381 } else {
382 Result = Result.getValue(0);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000383 }
Chris Lattner38d6be52005-01-09 19:43:23 +0000384 // Since calls produce multiple values, make sure to remember that we
385 // legalized all of them.
386 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
387 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
388 return Result.getValue(Op.ResNo);
Chris Lattner3d9dffc2005-01-19 20:24:35 +0000389 }
Chris Lattnerc7af1792005-01-07 22:12:08 +0000390 case ISD::BR:
391 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
392 if (Tmp1 != Node->getOperand(0))
393 Result = DAG.getNode(ISD::BR, MVT::Other, Tmp1, Node->getOperand(1));
394 break;
395
Chris Lattnerc18ae4c2005-01-07 08:19:42 +0000396 case ISD::BRCOND:
397 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner47e92232005-01-18 19:27:06 +0000398
399 switch (getTypeAction(Node->getOperand(1).getValueType())) {
400 case Expand: assert(0 && "It's impossible to expand bools");
401 case Legal:
402 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
403 break;
404 case Promote:
405 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
406 break;
407 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +0000408 // Basic block destination (Op#2) is always legal.
409 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
410 Result = DAG.getNode(ISD::BRCOND, MVT::Other, Tmp1, Tmp2,
411 Node->getOperand(2));
412 break;
Chris Lattner411e8882005-04-09 03:30:19 +0000413 case ISD::BRCONDTWOWAY:
414 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
415 switch (getTypeAction(Node->getOperand(1).getValueType())) {
416 case Expand: assert(0 && "It's impossible to expand bools");
417 case Legal:
418 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
419 break;
420 case Promote:
421 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
422 break;
423 }
424 // If this target does not support BRCONDTWOWAY, lower it to a BRCOND/BR
425 // pair.
426 switch (TLI.getOperationAction(ISD::BRCONDTWOWAY, MVT::Other)) {
427 case TargetLowering::Promote:
428 default: assert(0 && "This action is not supported yet!");
429 case TargetLowering::Legal:
430 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1)) {
431 std::vector<SDOperand> Ops;
432 Ops.push_back(Tmp1);
433 Ops.push_back(Tmp2);
434 Ops.push_back(Node->getOperand(2));
435 Ops.push_back(Node->getOperand(3));
436 Result = DAG.getNode(ISD::BRCONDTWOWAY, MVT::Other, Ops);
437 }
438 break;
439 case TargetLowering::Expand:
440 Result = DAG.getNode(ISD::BRCOND, MVT::Other, Tmp1, Tmp2,
441 Node->getOperand(2));
442 Result = DAG.getNode(ISD::BR, MVT::Other, Result, Node->getOperand(3));
443 break;
444 }
445 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +0000446
Chris Lattner3e928bb2005-01-07 07:47:09 +0000447 case ISD::LOAD:
448 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
449 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000450
Chris Lattner3e928bb2005-01-07 07:47:09 +0000451 if (Tmp1 != Node->getOperand(0) ||
452 Tmp2 != Node->getOperand(1))
Chris Lattner52d08bd2005-05-09 20:23:03 +0000453 Result = DAG.getLoad(Node->getValueType(0), Tmp1, Tmp2,
454 Node->getOperand(2));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000455 else
456 Result = SDOperand(Node, 0);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000457
Chris Lattner8afc48e2005-01-07 22:28:47 +0000458 // Since loads produce two values, make sure to remember that we legalized
459 // both of them.
460 AddLegalizedOperand(SDOperand(Node, 0), Result);
461 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
462 return Result.getValue(Op.ResNo);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000463
Chris Lattner0f69b292005-01-15 06:18:18 +0000464 case ISD::EXTLOAD:
465 case ISD::SEXTLOAD:
Chris Lattner01ff7212005-04-10 22:54:25 +0000466 case ISD::ZEXTLOAD: {
Chris Lattner0f69b292005-01-15 06:18:18 +0000467 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
468 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattner0f69b292005-01-15 06:18:18 +0000469
Chris Lattner01ff7212005-04-10 22:54:25 +0000470 MVT::ValueType SrcVT = cast<MVTSDNode>(Node)->getExtraValueType();
471 switch (TLI.getOperationAction(Node->getOpcode(), SrcVT)) {
Chris Lattner01ff7212005-04-10 22:54:25 +0000472 default: assert(0 && "This action is not supported yet!");
Chris Lattner1c51c6a2005-04-12 20:30:10 +0000473 case TargetLowering::Promote:
474 assert(SrcVT == MVT::i1 && "Can only promote EXTLOAD from i1 -> i8!");
475 Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0),
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000476 Tmp1, Tmp2, Node->getOperand(2), MVT::i8);
Chris Lattner1c51c6a2005-04-12 20:30:10 +0000477 // Since loads produce two values, make sure to remember that we legalized
478 // both of them.
479 AddLegalizedOperand(SDOperand(Node, 0), Result);
480 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
481 return Result.getValue(Op.ResNo);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000482
Chris Lattner01ff7212005-04-10 22:54:25 +0000483 case TargetLowering::Legal:
484 if (Tmp1 != Node->getOperand(0) ||
485 Tmp2 != Node->getOperand(1))
486 Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0),
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000487 Tmp1, Tmp2, Node->getOperand(2), SrcVT);
Chris Lattner01ff7212005-04-10 22:54:25 +0000488 else
489 Result = SDOperand(Node, 0);
490
491 // Since loads produce two values, make sure to remember that we legalized
492 // both of them.
493 AddLegalizedOperand(SDOperand(Node, 0), Result);
494 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
495 return Result.getValue(Op.ResNo);
Chris Lattner01ff7212005-04-10 22:54:25 +0000496 case TargetLowering::Expand:
497 assert(Node->getOpcode() != ISD::EXTLOAD &&
498 "EXTLOAD should always be supported!");
499 // Turn the unsupported load into an EXTLOAD followed by an explicit
500 // zero/sign extend inreg.
501 Result = DAG.getNode(ISD::EXTLOAD, Node->getValueType(0),
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000502 Tmp1, Tmp2, Node->getOperand(2), SrcVT);
Chris Lattner23993562005-04-13 02:38:47 +0000503 SDOperand ValRes;
504 if (Node->getOpcode() == ISD::SEXTLOAD)
505 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
506 Result, SrcVT);
507 else
508 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
Chris Lattner01ff7212005-04-10 22:54:25 +0000509 AddLegalizedOperand(SDOperand(Node, 0), ValRes);
510 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
511 if (Op.ResNo)
512 return Result.getValue(1);
513 return ValRes;
514 }
515 assert(0 && "Unreachable");
516 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000517 case ISD::EXTRACT_ELEMENT:
518 // Get both the low and high parts.
519 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
520 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
521 Result = Tmp2; // 1 -> Hi
522 else
523 Result = Tmp1; // 0 -> Lo
524 break;
525
526 case ISD::CopyToReg:
527 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000528
Chris Lattner3e928bb2005-01-07 07:47:09 +0000529 switch (getTypeAction(Node->getOperand(1).getValueType())) {
530 case Legal:
531 // Legalize the incoming value (must be legal).
532 Tmp2 = LegalizeOp(Node->getOperand(1));
533 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Chris Lattner18c2f132005-01-13 20:50:02 +0000534 Result = DAG.getCopyToReg(Tmp1, Tmp2, cast<RegSDNode>(Node)->getReg());
Chris Lattner3e928bb2005-01-07 07:47:09 +0000535 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +0000536 case Promote:
537 Tmp2 = PromoteOp(Node->getOperand(1));
538 Result = DAG.getCopyToReg(Tmp1, Tmp2, cast<RegSDNode>(Node)->getReg());
539 break;
540 case Expand:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000541 SDOperand Lo, Hi;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000542 ExpandOp(Node->getOperand(1), Lo, Hi);
Chris Lattner18c2f132005-01-13 20:50:02 +0000543 unsigned Reg = cast<RegSDNode>(Node)->getReg();
Chris Lattnerec39a452005-01-19 18:02:17 +0000544 Lo = DAG.getCopyToReg(Tmp1, Lo, Reg);
545 Hi = DAG.getCopyToReg(Tmp1, Hi, Reg+1);
546 // Note that the copytoreg nodes are independent of each other.
547 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000548 assert(isTypeLegal(Result.getValueType()) &&
549 "Cannot expand multiple times yet (i64 -> i16)");
550 break;
551 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000552 break;
553
554 case ISD::RET:
555 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
556 switch (Node->getNumOperands()) {
557 case 2: // ret val
558 switch (getTypeAction(Node->getOperand(1).getValueType())) {
559 case Legal:
560 Tmp2 = LegalizeOp(Node->getOperand(1));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000561 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Chris Lattner3e928bb2005-01-07 07:47:09 +0000562 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Tmp2);
563 break;
564 case Expand: {
565 SDOperand Lo, Hi;
566 ExpandOp(Node->getOperand(1), Lo, Hi);
567 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Hi);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000568 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000569 }
570 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +0000571 Tmp2 = PromoteOp(Node->getOperand(1));
572 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Tmp2);
573 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000574 }
575 break;
576 case 1: // ret void
577 if (Tmp1 != Node->getOperand(0))
578 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1);
579 break;
580 default: { // ret <values>
581 std::vector<SDOperand> NewValues;
582 NewValues.push_back(Tmp1);
583 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i)
584 switch (getTypeAction(Node->getOperand(i).getValueType())) {
585 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +0000586 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000587 break;
588 case Expand: {
589 SDOperand Lo, Hi;
590 ExpandOp(Node->getOperand(i), Lo, Hi);
591 NewValues.push_back(Lo);
592 NewValues.push_back(Hi);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000593 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000594 }
595 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +0000596 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000597 }
598 Result = DAG.getNode(ISD::RET, MVT::Other, NewValues);
599 break;
600 }
601 }
602 break;
603 case ISD::STORE:
604 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
605 Tmp2 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
606
Chris Lattner5d2c6c72005-01-08 06:25:56 +0000607 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Chris Lattner03c85462005-01-15 05:21:40 +0000608 if (ConstantFPSDNode *CFP =dyn_cast<ConstantFPSDNode>(Node->getOperand(1))){
Chris Lattner5d2c6c72005-01-08 06:25:56 +0000609 if (CFP->getValueType(0) == MVT::f32) {
610 union {
611 unsigned I;
612 float F;
613 } V;
614 V.F = CFP->getValue();
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000615 Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp1,
Chris Lattner6d5b8e12005-05-09 20:36:57 +0000616 DAG.getConstant(V.I, MVT::i32), Tmp2,
Chris Lattner52d08bd2005-05-09 20:23:03 +0000617 Node->getOperand(3));
Chris Lattner5d2c6c72005-01-08 06:25:56 +0000618 } else {
619 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
620 union {
621 uint64_t I;
622 double F;
623 } V;
624 V.F = CFP->getValue();
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000625 Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp1,
Chris Lattner52d08bd2005-05-09 20:23:03 +0000626 DAG.getConstant(V.I, MVT::i64), Tmp2,
627 Node->getOperand(3));
Chris Lattner5d2c6c72005-01-08 06:25:56 +0000628 }
Chris Lattner84734ce2005-02-22 07:23:39 +0000629 Node = Result.Val;
Chris Lattner5d2c6c72005-01-08 06:25:56 +0000630 }
631
Chris Lattner3e928bb2005-01-07 07:47:09 +0000632 switch (getTypeAction(Node->getOperand(1).getValueType())) {
633 case Legal: {
634 SDOperand Val = LegalizeOp(Node->getOperand(1));
635 if (Val != Node->getOperand(1) || Tmp1 != Node->getOperand(0) ||
636 Tmp2 != Node->getOperand(2))
Chris Lattner52d08bd2005-05-09 20:23:03 +0000637 Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Val, Tmp2,
638 Node->getOperand(3));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000639 break;
640 }
641 case Promote:
Chris Lattner03c85462005-01-15 05:21:40 +0000642 // Truncate the value and store the result.
643 Tmp3 = PromoteOp(Node->getOperand(1));
644 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp3, Tmp2,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000645 Node->getOperand(3),
646 Node->getOperand(1).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +0000647 break;
648
Chris Lattner3e928bb2005-01-07 07:47:09 +0000649 case Expand:
650 SDOperand Lo, Hi;
651 ExpandOp(Node->getOperand(1), Lo, Hi);
652
653 if (!TLI.isLittleEndian())
654 std::swap(Lo, Hi);
655
Chris Lattneredb1add2005-05-11 04:51:16 +0000656 Lo = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Lo, Tmp2,
657 Node->getOperand(3));
Chris Lattnerec39a452005-01-19 18:02:17 +0000658 unsigned IncrementSize = MVT::getSizeInBits(Hi.getValueType())/8;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000659 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
660 getIntPtrConstant(IncrementSize));
661 assert(isTypeLegal(Tmp2.getValueType()) &&
662 "Pointers must be legal!");
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000663 //Again, claiming both parts of the store came form the same Instr
Chris Lattneredb1add2005-05-11 04:51:16 +0000664 Hi = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Hi, Tmp2,
665 Node->getOperand(3));
Chris Lattnerec39a452005-01-19 18:02:17 +0000666 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
667 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000668 }
669 break;
Andrew Lenharth95762122005-03-31 21:24:06 +0000670 case ISD::PCMARKER:
671 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner2c8086f2005-04-02 05:00:07 +0000672 if (Tmp1 != Node->getOperand(0))
673 Result = DAG.getNode(ISD::PCMARKER, MVT::Other, Tmp1,Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +0000674 break;
Chris Lattner0f69b292005-01-15 06:18:18 +0000675 case ISD::TRUNCSTORE:
676 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
677 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
678
679 switch (getTypeAction(Node->getOperand(1).getValueType())) {
680 case Legal:
681 Tmp2 = LegalizeOp(Node->getOperand(1));
682 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) ||
683 Tmp3 != Node->getOperand(2))
Chris Lattner45b8caf2005-01-15 07:15:18 +0000684 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp2, Tmp3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000685 Node->getOperand(3),
Chris Lattner0f69b292005-01-15 06:18:18 +0000686 cast<MVTSDNode>(Node)->getExtraValueType());
687 break;
688 case Promote:
689 case Expand:
690 assert(0 && "Cannot handle illegal TRUNCSTORE yet!");
691 }
692 break;
Chris Lattner2ee743f2005-01-14 22:08:15 +0000693 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +0000694 switch (getTypeAction(Node->getOperand(0).getValueType())) {
695 case Expand: assert(0 && "It's impossible to expand bools");
696 case Legal:
697 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
698 break;
699 case Promote:
700 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
701 break;
702 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000703 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +0000704 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +0000705
706 switch (TLI.getOperationAction(Node->getOpcode(), Tmp2.getValueType())) {
707 default: assert(0 && "This action is not supported yet!");
708 case TargetLowering::Legal:
709 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) ||
710 Tmp3 != Node->getOperand(2))
711 Result = DAG.getNode(ISD::SELECT, Node->getValueType(0),
712 Tmp1, Tmp2, Tmp3);
713 break;
714 case TargetLowering::Promote: {
715 MVT::ValueType NVT =
716 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
717 unsigned ExtOp, TruncOp;
718 if (MVT::isInteger(Tmp2.getValueType())) {
719 ExtOp = ISD::ZERO_EXTEND;
720 TruncOp = ISD::TRUNCATE;
721 } else {
722 ExtOp = ISD::FP_EXTEND;
723 TruncOp = ISD::FP_ROUND;
724 }
725 // Promote each of the values to the new type.
726 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
727 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
728 // Perform the larger operation, then round down.
729 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
730 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
731 break;
732 }
733 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000734 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000735 case ISD::SETCC:
736 switch (getTypeAction(Node->getOperand(0).getValueType())) {
737 case Legal:
738 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
739 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
740 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
741 Result = DAG.getSetCC(cast<SetCCSDNode>(Node)->getCondition(),
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000742 Node->getValueType(0), Tmp1, Tmp2);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000743 break;
744 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +0000745 Tmp1 = PromoteOp(Node->getOperand(0)); // LHS
746 Tmp2 = PromoteOp(Node->getOperand(1)); // RHS
747
748 // If this is an FP compare, the operands have already been extended.
749 if (MVT::isInteger(Node->getOperand(0).getValueType())) {
750 MVT::ValueType VT = Node->getOperand(0).getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +0000751 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +0000752
753 // Otherwise, we have to insert explicit sign or zero extends. Note
754 // that we could insert sign extends for ALL conditions, but zero extend
755 // is cheaper on many machines (an AND instead of two shifts), so prefer
756 // it.
757 switch (cast<SetCCSDNode>(Node)->getCondition()) {
758 default: assert(0 && "Unknown integer comparison!");
759 case ISD::SETEQ:
760 case ISD::SETNE:
761 case ISD::SETUGE:
762 case ISD::SETUGT:
763 case ISD::SETULE:
764 case ISD::SETULT:
765 // ALL of these operations will work if we either sign or zero extend
766 // the operands (including the unsigned comparisons!). Zero extend is
767 // usually a simpler/cheaper operation, so prefer it.
Chris Lattner23993562005-04-13 02:38:47 +0000768 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
769 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +0000770 break;
771 case ISD::SETGE:
772 case ISD::SETGT:
773 case ISD::SETLT:
774 case ISD::SETLE:
775 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1, VT);
776 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2, VT);
777 break;
778 }
779
780 }
781 Result = DAG.getSetCC(cast<SetCCSDNode>(Node)->getCondition(),
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000782 Node->getValueType(0), Tmp1, Tmp2);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000783 break;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000784 case Expand:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000785 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
786 ExpandOp(Node->getOperand(0), LHSLo, LHSHi);
787 ExpandOp(Node->getOperand(1), RHSLo, RHSHi);
788 switch (cast<SetCCSDNode>(Node)->getCondition()) {
789 case ISD::SETEQ:
790 case ISD::SETNE:
Chris Lattner08b698e2005-04-12 01:46:05 +0000791 if (RHSLo == RHSHi)
792 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
793 if (RHSCST->isAllOnesValue()) {
794 // Comparison to -1.
795 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000796 Result = DAG.getSetCC(cast<SetCCSDNode>(Node)->getCondition(),
Chris Lattner08b698e2005-04-12 01:46:05 +0000797 Node->getValueType(0), Tmp1, RHSLo);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000798 break;
Chris Lattner08b698e2005-04-12 01:46:05 +0000799 }
800
Chris Lattner3e928bb2005-01-07 07:47:09 +0000801 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
802 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
803 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000804 Result = DAG.getSetCC(cast<SetCCSDNode>(Node)->getCondition(),
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000805 Node->getValueType(0), Tmp1,
Chris Lattner3e928bb2005-01-07 07:47:09 +0000806 DAG.getConstant(0, Tmp1.getValueType()));
807 break;
808 default:
Chris Lattner5b95ed62005-04-12 02:19:10 +0000809 // If this is a comparison of the sign bit, just look at the top part.
810 // X > -1, x < 0
811 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Node->getOperand(1)))
Misha Brukmanedf128a2005-04-21 22:36:52 +0000812 if ((cast<SetCCSDNode>(Node)->getCondition() == ISD::SETLT &&
Chris Lattner5b95ed62005-04-12 02:19:10 +0000813 CST->getValue() == 0) || // X < 0
814 (cast<SetCCSDNode>(Node)->getCondition() == ISD::SETGT &&
815 (CST->isAllOnesValue()))) // X > -1
816 return DAG.getSetCC(cast<SetCCSDNode>(Node)->getCondition(),
817 Node->getValueType(0), LHSHi, RHSHi);
818
Chris Lattner3e928bb2005-01-07 07:47:09 +0000819 // FIXME: This generated code sucks.
820 ISD::CondCode LowCC;
821 switch (cast<SetCCSDNode>(Node)->getCondition()) {
822 default: assert(0 && "Unknown integer setcc!");
823 case ISD::SETLT:
824 case ISD::SETULT: LowCC = ISD::SETULT; break;
825 case ISD::SETGT:
826 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
827 case ISD::SETLE:
828 case ISD::SETULE: LowCC = ISD::SETULE; break;
829 case ISD::SETGE:
830 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
831 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000832
Chris Lattner3e928bb2005-01-07 07:47:09 +0000833 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
834 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
835 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
836
837 // NOTE: on targets without efficient SELECT of bools, we can always use
838 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000839 Tmp1 = DAG.getSetCC(LowCC, Node->getValueType(0), LHSLo, RHSLo);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000840 Tmp2 = DAG.getSetCC(cast<SetCCSDNode>(Node)->getCondition(),
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000841 Node->getValueType(0), LHSHi, RHSHi);
842 Result = DAG.getSetCC(ISD::SETEQ, Node->getValueType(0), LHSHi, RHSHi);
843 Result = DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
844 Result, Tmp1, Tmp2);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000845 break;
846 }
847 }
848 break;
849
Chris Lattnere1bd8222005-01-11 05:57:22 +0000850 case ISD::MEMSET:
851 case ISD::MEMCPY:
852 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +0000853 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +0000854 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
855
856 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
857 switch (getTypeAction(Node->getOperand(2).getValueType())) {
858 case Expand: assert(0 && "Cannot expand a byte!");
859 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +0000860 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +0000861 break;
862 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +0000863 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +0000864 break;
865 }
866 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000867 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +0000868 }
Chris Lattner272455b2005-02-02 03:44:41 +0000869
870 SDOperand Tmp4;
871 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattnere5605212005-01-28 22:29:18 +0000872 case Expand: assert(0 && "Cannot expand this yet!");
873 case Legal:
874 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +0000875 break;
876 case Promote:
877 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +0000878 break;
879 }
880
881 SDOperand Tmp5;
882 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
883 case Expand: assert(0 && "Cannot expand this yet!");
884 case Legal:
885 Tmp5 = LegalizeOp(Node->getOperand(4));
886 break;
887 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +0000888 Tmp5 = PromoteOp(Node->getOperand(4));
889 break;
890 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +0000891
892 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
893 default: assert(0 && "This action not implemented for this operation!");
894 case TargetLowering::Legal:
Chris Lattnere1bd8222005-01-11 05:57:22 +0000895 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) ||
896 Tmp3 != Node->getOperand(2) || Tmp4 != Node->getOperand(3) ||
897 Tmp5 != Node->getOperand(4)) {
898 std::vector<SDOperand> Ops;
899 Ops.push_back(Tmp1); Ops.push_back(Tmp2); Ops.push_back(Tmp3);
900 Ops.push_back(Tmp4); Ops.push_back(Tmp5);
901 Result = DAG.getNode(Node->getOpcode(), MVT::Other, Ops);
902 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +0000903 break;
904 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +0000905 // Otherwise, the target does not support this operation. Lower the
906 // operation to an explicit libcall as appropriate.
907 MVT::ValueType IntPtr = TLI.getPointerTy();
908 const Type *IntPtrTy = TLI.getTargetData().getIntPtrType();
909 std::vector<std::pair<SDOperand, const Type*> > Args;
910
Reid Spencer3bfbf4e2005-01-12 14:53:45 +0000911 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +0000912 if (Node->getOpcode() == ISD::MEMSET) {
913 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
914 // Extend the ubyte argument to be an int value for the call.
915 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
916 Args.push_back(std::make_pair(Tmp3, Type::IntTy));
917 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
918
919 FnName = "memset";
920 } else if (Node->getOpcode() == ISD::MEMCPY ||
921 Node->getOpcode() == ISD::MEMMOVE) {
922 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
923 Args.push_back(std::make_pair(Tmp3, IntPtrTy));
924 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
925 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
926 } else {
927 assert(0 && "Unknown op!");
928 }
Chris Lattner45982da2005-05-12 16:53:42 +0000929
Chris Lattnere1bd8222005-01-11 05:57:22 +0000930 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattner9092fa32005-05-12 19:56:57 +0000931 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, 0,
Chris Lattnere1bd8222005-01-11 05:57:22 +0000932 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
933 Result = LegalizeOp(CallResult.second);
Chris Lattner55ba8fb2005-01-16 07:29:19 +0000934 break;
935 }
936 case TargetLowering::Custom:
937 std::vector<SDOperand> Ops;
938 Ops.push_back(Tmp1); Ops.push_back(Tmp2); Ops.push_back(Tmp3);
939 Ops.push_back(Tmp4); Ops.push_back(Tmp5);
940 Result = DAG.getNode(Node->getOpcode(), MVT::Other, Ops);
941 Result = TLI.LowerOperation(Result);
942 Result = LegalizeOp(Result);
943 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +0000944 }
945 break;
946 }
Chris Lattner52d08bd2005-05-09 20:23:03 +0000947
948 case ISD::READPORT:
Chris Lattner52d08bd2005-05-09 20:23:03 +0000949 Tmp1 = LegalizeOp(Node->getOperand(0));
950 Tmp2 = LegalizeOp(Node->getOperand(1));
Chris Lattner6d5b8e12005-05-09 20:36:57 +0000951
Chris Lattner52d08bd2005-05-09 20:23:03 +0000952 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Chris Lattner6d5b8e12005-05-09 20:36:57 +0000953 Result = DAG.getNode(ISD::READPORT, Node->getValueType(0), Tmp1, Tmp2);
Chris Lattner52d08bd2005-05-09 20:23:03 +0000954 else
955 Result = SDOperand(Node, 0);
956 // Since these produce two values, make sure to remember that we legalized
957 // both of them.
958 AddLegalizedOperand(SDOperand(Node, 0), Result);
959 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
960 return Result.getValue(Op.ResNo);
Chris Lattner52d08bd2005-05-09 20:23:03 +0000961 case ISD::WRITEPORT:
Chris Lattner52d08bd2005-05-09 20:23:03 +0000962 Tmp1 = LegalizeOp(Node->getOperand(0));
963 Tmp2 = LegalizeOp(Node->getOperand(1));
964 Tmp3 = LegalizeOp(Node->getOperand(2));
965 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) ||
966 Tmp3 != Node->getOperand(2))
967 Result = DAG.getNode(Node->getOpcode(), MVT::Other, Tmp1, Tmp2, Tmp3);
968 break;
969
Chris Lattner6d5b8e12005-05-09 20:36:57 +0000970 case ISD::READIO:
971 Tmp1 = LegalizeOp(Node->getOperand(0));
972 Tmp2 = LegalizeOp(Node->getOperand(1));
973
974 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
975 case TargetLowering::Custom:
976 default: assert(0 && "This action not implemented for this operation!");
977 case TargetLowering::Legal:
978 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
979 Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0),
980 Tmp1, Tmp2);
981 else
982 Result = SDOperand(Node, 0);
983 break;
984 case TargetLowering::Expand:
985 // Replace this with a load from memory.
986 Result = DAG.getLoad(Node->getValueType(0), Node->getOperand(0),
987 Node->getOperand(1), DAG.getSrcValue(NULL));
988 Result = LegalizeOp(Result);
989 break;
990 }
991
992 // Since these produce two values, make sure to remember that we legalized
993 // both of them.
994 AddLegalizedOperand(SDOperand(Node, 0), Result);
995 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
996 return Result.getValue(Op.ResNo);
997
998 case ISD::WRITEIO:
999 Tmp1 = LegalizeOp(Node->getOperand(0));
1000 Tmp2 = LegalizeOp(Node->getOperand(1));
1001 Tmp3 = LegalizeOp(Node->getOperand(2));
1002
1003 switch (TLI.getOperationAction(Node->getOpcode(),
1004 Node->getOperand(1).getValueType())) {
1005 case TargetLowering::Custom:
1006 default: assert(0 && "This action not implemented for this operation!");
1007 case TargetLowering::Legal:
1008 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) ||
1009 Tmp3 != Node->getOperand(2))
1010 Result = DAG.getNode(Node->getOpcode(), MVT::Other, Tmp1, Tmp2, Tmp3);
1011 break;
1012 case TargetLowering::Expand:
1013 // Replace this with a store to memory.
1014 Result = DAG.getNode(ISD::STORE, MVT::Other, Node->getOperand(0),
1015 Node->getOperand(1), Node->getOperand(2),
1016 DAG.getSrcValue(NULL));
1017 Result = LegalizeOp(Result);
1018 break;
1019 }
1020 break;
1021
Chris Lattner84f67882005-01-20 18:52:28 +00001022 case ISD::ADD_PARTS:
Chris Lattner5b359c62005-04-02 04:00:59 +00001023 case ISD::SUB_PARTS:
1024 case ISD::SHL_PARTS:
1025 case ISD::SRA_PARTS:
1026 case ISD::SRL_PARTS: {
Chris Lattner84f67882005-01-20 18:52:28 +00001027 std::vector<SDOperand> Ops;
1028 bool Changed = false;
1029 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1030 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1031 Changed |= Ops.back() != Node->getOperand(i);
1032 }
1033 if (Changed)
1034 Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Ops);
Chris Lattner2c8086f2005-04-02 05:00:07 +00001035
1036 // Since these produce multiple values, make sure to remember that we
1037 // legalized all of them.
1038 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1039 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
1040 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00001041 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00001042
1043 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00001044 case ISD::ADD:
1045 case ISD::SUB:
1046 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00001047 case ISD::MULHS:
1048 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001049 case ISD::UDIV:
1050 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001051 case ISD::AND:
1052 case ISD::OR:
1053 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00001054 case ISD::SHL:
1055 case ISD::SRL:
1056 case ISD::SRA:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001057 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
1058 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
1059 if (Tmp1 != Node->getOperand(0) ||
1060 Tmp2 != Node->getOperand(1))
1061 Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1,Tmp2);
1062 break;
Misha Brukmanedf128a2005-04-21 22:36:52 +00001063
Nate Begemanc105e192005-04-06 00:23:54 +00001064 case ISD::UREM:
1065 case ISD::SREM:
1066 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
1067 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
1068 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1069 case TargetLowering::Legal:
1070 if (Tmp1 != Node->getOperand(0) ||
1071 Tmp2 != Node->getOperand(1))
Misha Brukmanedf128a2005-04-21 22:36:52 +00001072 Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1,
Nate Begemanc105e192005-04-06 00:23:54 +00001073 Tmp2);
1074 break;
1075 case TargetLowering::Promote:
1076 case TargetLowering::Custom:
1077 assert(0 && "Cannot promote/custom handle this yet!");
1078 case TargetLowering::Expand: {
1079 MVT::ValueType VT = Node->getValueType(0);
1080 unsigned Opc = (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
1081 Result = DAG.getNode(Opc, VT, Tmp1, Tmp2);
1082 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
1083 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
1084 }
1085 break;
1086 }
1087 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00001088
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001089 case ISD::CTPOP:
1090 case ISD::CTTZ:
1091 case ISD::CTLZ:
1092 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
1093 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1094 case TargetLowering::Legal:
1095 if (Tmp1 != Node->getOperand(0))
1096 Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
1097 break;
1098 case TargetLowering::Promote: {
1099 MVT::ValueType OVT = Tmp1.getValueType();
1100 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00001101
1102 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001103 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
1104 // Perform the larger operation, then subtract if needed.
1105 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
1106 switch(Node->getOpcode())
1107 {
1108 case ISD::CTPOP:
1109 Result = Tmp1;
1110 break;
1111 case ISD::CTTZ:
1112 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner39a8f332005-05-12 19:05:01 +00001113 Tmp2 = DAG.getSetCC(ISD::SETEQ, TLI.getSetCCResultTy(), Tmp1,
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001114 DAG.getConstant(getSizeInBits(NVT), NVT));
1115 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
1116 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
1117 break;
1118 case ISD::CTLZ:
1119 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
1120 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
1121 DAG.getConstant(getSizeInBits(NVT) -
1122 getSizeInBits(OVT), NVT));
1123 break;
1124 }
1125 break;
1126 }
1127 case TargetLowering::Custom:
1128 assert(0 && "Cannot custom handle this yet!");
1129 case TargetLowering::Expand:
Andrew Lenharthded10bf2005-05-05 15:55:21 +00001130 switch(Node->getOpcode())
1131 {
1132 case ISD::CTPOP: {
Chris Lattnere3ef0a82005-05-11 05:21:31 +00001133 static const uint64_t mask[6] = {
1134 0x5555555555555555ULL, 0x3333333333333333ULL,
1135 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
1136 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
1137 };
Andrew Lenharthded10bf2005-05-05 15:55:21 +00001138 MVT::ValueType VT = Tmp1.getValueType();
Chris Lattnere3ef0a82005-05-11 05:21:31 +00001139 MVT::ValueType ShVT = TLI.getShiftAmountTy();
1140 unsigned len = getSizeInBits(VT);
1141 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Andrew Lenharthded10bf2005-05-05 15:55:21 +00001142 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Chris Lattnere3ef0a82005-05-11 05:21:31 +00001143 Tmp2 = DAG.getConstant(mask[i], VT);
1144 Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Andrew Lenharthded10bf2005-05-05 15:55:21 +00001145 Tmp1 = DAG.getNode(ISD::ADD, VT,
1146 DAG.getNode(ISD::AND, VT, Tmp1, Tmp2),
1147 DAG.getNode(ISD::AND, VT,
1148 DAG.getNode(ISD::SRL, VT, Tmp1, Tmp3),
1149 Tmp2));
1150 }
1151 Result = Tmp1;
1152 break;
1153 }
Duraid Madina57ff7e52005-05-11 08:45:08 +00001154 case ISD::CTLZ: {
1155 /* for now, we do this:
Chris Lattner5c33c9a2005-05-11 18:35:21 +00001156 x = x | (x >> 1);
1157 x = x | (x >> 2);
1158 ...
1159 x = x | (x >>16);
1160 x = x | (x >>32); // for 64-bit input
1161 return popcount(~x);
Duraid Madina57ff7e52005-05-11 08:45:08 +00001162
Chris Lattner5c33c9a2005-05-11 18:35:21 +00001163 but see also: http://www.hackersdelight.org/HDcode/nlz.cc */
1164 MVT::ValueType VT = Tmp1.getValueType();
Duraid Madina57ff7e52005-05-11 08:45:08 +00001165 MVT::ValueType ShVT = TLI.getShiftAmountTy();
1166 unsigned len = getSizeInBits(VT);
1167 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
1168 Tmp3 = DAG.getConstant(1ULL << i, ShVT);
1169 Tmp1 = DAG.getNode(ISD::OR, VT, Tmp1,
1170 DAG.getNode(ISD::SRL, VT, Tmp1, Tmp3));
1171 }
1172 Tmp3 = DAG.getNode(ISD::XOR, VT, Tmp1, DAG.getConstant(~0ULL, VT));
Chris Lattner5c33c9a2005-05-11 18:35:21 +00001173 Result = LegalizeOp(DAG.getNode(ISD::CTPOP, VT, Tmp3));
Chris Lattner18aa6802005-05-11 05:27:09 +00001174 break;
Duraid Madina57ff7e52005-05-11 08:45:08 +00001175 }
1176 case ISD::CTTZ: {
Nate Begemand7c4a4a2005-05-11 23:43:56 +00001177 // for now, we use: { return popcount(~x & (x - 1)); }
1178 // unless the target has ctlz but not ctpop, in which case we use:
1179 // { return 32 - nlz(~x & (x-1)); }
1180 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Chris Lattner5c33c9a2005-05-11 18:35:21 +00001181 MVT::ValueType VT = Tmp1.getValueType();
1182 Tmp2 = DAG.getConstant(~0ULL, VT);
1183 Tmp3 = DAG.getNode(ISD::AND, VT,
1184 DAG.getNode(ISD::XOR, VT, Tmp1, Tmp2),
1185 DAG.getNode(ISD::SUB, VT, Tmp1,
1186 DAG.getConstant(1, VT)));
Nate Begemand7c4a4a2005-05-11 23:43:56 +00001187 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead
1188 if (TLI.getOperationAction(ISD::CTPOP, VT) != TargetLowering::Legal &&
1189 TLI.getOperationAction(ISD::CTLZ, VT) == TargetLowering::Legal) {
1190 Result = LegalizeOp(DAG.getNode(ISD::SUB, VT,
1191 DAG.getConstant(getSizeInBits(VT), VT),
1192 DAG.getNode(ISD::CTLZ, VT, Tmp3)));
1193 } else {
1194 Result = LegalizeOp(DAG.getNode(ISD::CTPOP, VT, Tmp3));
1195 }
Chris Lattner18aa6802005-05-11 05:27:09 +00001196 break;
Duraid Madina57ff7e52005-05-11 08:45:08 +00001197 }
Andrew Lenharthded10bf2005-05-05 15:55:21 +00001198 default:
1199 assert(0 && "Cannot expand this yet!");
1200 break;
1201 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00001202 break;
1203 }
1204 break;
1205
Chris Lattner2c8086f2005-04-02 05:00:07 +00001206 // Unary operators
1207 case ISD::FABS:
1208 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00001209 case ISD::FSQRT:
1210 case ISD::FSIN:
1211 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00001212 Tmp1 = LegalizeOp(Node->getOperand(0));
1213 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1214 case TargetLowering::Legal:
1215 if (Tmp1 != Node->getOperand(0))
1216 Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
1217 break;
1218 case TargetLowering::Promote:
1219 case TargetLowering::Custom:
1220 assert(0 && "Cannot promote/custom handle this yet!");
1221 case TargetLowering::Expand:
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001222 switch(Node->getOpcode()) {
1223 case ISD::FNEG: {
Chris Lattner2c8086f2005-04-02 05:00:07 +00001224 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
1225 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
1226 Result = LegalizeOp(DAG.getNode(ISD::SUB, Node->getValueType(0),
1227 Tmp2, Tmp1));
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001228 break;
1229 }
1230 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00001231 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
1232 MVT::ValueType VT = Node->getValueType(0);
1233 Tmp2 = DAG.getConstantFP(0.0, VT);
1234 Tmp2 = DAG.getSetCC(ISD::SETUGT, TLI.getSetCCResultTy(), Tmp1, Tmp2);
1235 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
1236 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
1237 Result = LegalizeOp(Result);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001238 break;
1239 }
1240 case ISD::FSQRT:
1241 case ISD::FSIN:
1242 case ISD::FCOS: {
1243 MVT::ValueType VT = Node->getValueType(0);
1244 Type *T = VT == MVT::f32 ? Type::FloatTy : Type::DoubleTy;
1245 const char *FnName = 0;
1246 switch(Node->getOpcode()) {
1247 case ISD::FSQRT: FnName = VT == MVT::f32 ? "sqrtf" : "sqrt"; break;
1248 case ISD::FSIN: FnName = VT == MVT::f32 ? "sinf" : "sin"; break;
1249 case ISD::FCOS: FnName = VT == MVT::f32 ? "cosf" : "cos"; break;
1250 default: assert(0 && "Unreachable!");
1251 }
1252 std::vector<std::pair<SDOperand, const Type*> > Args;
1253 Args.push_back(std::make_pair(Tmp1, T));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00001254 // FIXME: should use ExpandLibCall!
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001255 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattner9092fa32005-05-12 19:56:57 +00001256 TLI.LowerCallTo(DAG.getEntryNode(), T, false, 0,
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00001257 DAG.getExternalSymbol(FnName, VT), Args, DAG);
1258 Result = LegalizeOp(CallResult.first);
1259 break;
1260 }
1261 default:
Chris Lattner4af6e0d2005-04-02 05:26:37 +00001262 assert(0 && "Unreachable!");
Chris Lattner2c8086f2005-04-02 05:00:07 +00001263 }
1264 break;
1265 }
1266 break;
1267
1268 // Conversion operators. The source and destination have different types.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001269 case ISD::ZERO_EXTEND:
1270 case ISD::SIGN_EXTEND:
Chris Lattner7cc47772005-01-07 21:56:57 +00001271 case ISD::TRUNCATE:
Chris Lattner03c0cf82005-01-07 21:45:56 +00001272 case ISD::FP_EXTEND:
1273 case ISD::FP_ROUND:
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001274 case ISD::FP_TO_SINT:
1275 case ISD::FP_TO_UINT:
1276 case ISD::SINT_TO_FP:
1277 case ISD::UINT_TO_FP:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001278 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1279 case Legal:
1280 Tmp1 = LegalizeOp(Node->getOperand(0));
1281 if (Tmp1 != Node->getOperand(0))
1282 Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
1283 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00001284 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00001285 if (Node->getOpcode() == ISD::SINT_TO_FP ||
1286 Node->getOpcode() == ISD::UINT_TO_FP) {
1287 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
1288 Node->getValueType(0), Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00001289 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00001290 } else if (Node->getOpcode() == ISD::TRUNCATE) {
1291 // In the expand case, we must be dealing with a truncate, because
1292 // otherwise the result would be larger than the source.
1293 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Misha Brukmanedf128a2005-04-21 22:36:52 +00001294
Chris Lattner2c8086f2005-04-02 05:00:07 +00001295 // Since the result is legal, we should just be able to truncate the low
1296 // part of the source.
1297 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
1298 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00001299 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00001300 assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerb00a6422005-01-07 22:37:48 +00001301
Chris Lattner03c85462005-01-15 05:21:40 +00001302 case Promote:
1303 switch (Node->getOpcode()) {
Chris Lattner1713e732005-01-16 00:38:00 +00001304 case ISD::ZERO_EXTEND:
1305 Result = PromoteOp(Node->getOperand(0));
Chris Lattner47e92232005-01-18 19:27:06 +00001306 // NOTE: Any extend would work here...
1307 Result = DAG.getNode(ISD::ZERO_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00001308 Result = DAG.getZeroExtendInReg(Result,
1309 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00001310 break;
Chris Lattner03c85462005-01-15 05:21:40 +00001311 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00001312 Result = PromoteOp(Node->getOperand(0));
Chris Lattner47e92232005-01-18 19:27:06 +00001313 // NOTE: Any extend would work here...
Chris Lattnerd5d56822005-01-18 21:57:59 +00001314 Result = DAG.getNode(ISD::ZERO_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00001315 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1316 Result, Node->getOperand(0).getValueType());
1317 break;
Chris Lattner03c85462005-01-15 05:21:40 +00001318 case ISD::TRUNCATE:
Chris Lattner1713e732005-01-16 00:38:00 +00001319 Result = PromoteOp(Node->getOperand(0));
1320 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
1321 break;
Chris Lattner03c85462005-01-15 05:21:40 +00001322 case ISD::FP_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00001323 Result = PromoteOp(Node->getOperand(0));
1324 if (Result.getValueType() != Op.getValueType())
1325 // Dynamically dead while we have only 2 FP types.
1326 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
1327 break;
Chris Lattner03c85462005-01-15 05:21:40 +00001328 case ISD::FP_ROUND:
1329 case ISD::FP_TO_SINT:
1330 case ISD::FP_TO_UINT:
Chris Lattnerf8161d82005-01-16 05:06:12 +00001331 Result = PromoteOp(Node->getOperand(0));
1332 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
1333 break;
Chris Lattner03c85462005-01-15 05:21:40 +00001334 case ISD::SINT_TO_FP:
Chris Lattnerf8161d82005-01-16 05:06:12 +00001335 Result = PromoteOp(Node->getOperand(0));
1336 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1337 Result, Node->getOperand(0).getValueType());
1338 Result = DAG.getNode(ISD::SINT_TO_FP, Op.getValueType(), Result);
1339 break;
Chris Lattner03c85462005-01-15 05:21:40 +00001340 case ISD::UINT_TO_FP:
Chris Lattnerf8161d82005-01-16 05:06:12 +00001341 Result = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00001342 Result = DAG.getZeroExtendInReg(Result,
1343 Node->getOperand(0).getValueType());
Chris Lattnerf8161d82005-01-16 05:06:12 +00001344 Result = DAG.getNode(ISD::UINT_TO_FP, Op.getValueType(), Result);
1345 break;
Chris Lattner03c85462005-01-15 05:21:40 +00001346 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001347 }
1348 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00001349 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00001350 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00001351 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00001352 MVT::ValueType ExtraVT = cast<MVTSDNode>(Node)->getExtraValueType();
1353
1354 // If this operation is not supported, convert it to a shl/shr or load/store
1355 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001356 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
1357 default: assert(0 && "This action not supported for this op yet!");
1358 case TargetLowering::Legal:
1359 if (Tmp1 != Node->getOperand(0))
1360 Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1,
1361 ExtraVT);
1362 break;
1363 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00001364 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00001365 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00001366 // NOTE: we could fall back on load/store here too for targets without
1367 // SAR. However, it is doubtful that any exist.
1368 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
1369 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00001370 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00001371 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
1372 Node->getOperand(0), ShiftCst);
1373 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
1374 Result, ShiftCst);
1375 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
1376 // The only way we can lower this is to turn it into a STORETRUNC,
1377 // EXTLOAD pair, targetting a temporary location (a stack slot).
1378
1379 // NOTE: there is a choice here between constantly creating new stack
1380 // slots and always reusing the same one. We currently always create
1381 // new ones, as reuse may inhibit scheduling.
1382 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
1383 unsigned TySize = (unsigned)TLI.getTargetData().getTypeSize(Ty);
1384 unsigned Align = TLI.getTargetData().getTypeAlignment(Ty);
1385 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukmanedf128a2005-04-21 22:36:52 +00001386 int SSFI =
Chris Lattner45b8caf2005-01-15 07:15:18 +00001387 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
1388 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
1389 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, DAG.getEntryNode(),
Chris Lattner52d08bd2005-05-09 20:23:03 +00001390 Node->getOperand(0), StackSlot,
1391 DAG.getSrcValue(NULL), ExtraVT);
Chris Lattner45b8caf2005-01-15 07:15:18 +00001392 Result = DAG.getNode(ISD::EXTLOAD, Node->getValueType(0),
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001393 Result, StackSlot, DAG.getSrcValue(NULL), ExtraVT);
Chris Lattner45b8caf2005-01-15 07:15:18 +00001394 } else {
1395 assert(0 && "Unknown op");
1396 }
1397 Result = LegalizeOp(Result);
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001398 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00001399 }
Chris Lattner0f69b292005-01-15 06:18:18 +00001400 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001401 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00001402 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001403
Chris Lattner45982da2005-05-12 16:53:42 +00001404 // Note that LegalizeOp may be reentered even from single-use nodes, which
1405 // means that we always must cache transformed nodes.
1406 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001407 return Result;
1408}
1409
Chris Lattner8b6fa222005-01-15 22:16:26 +00001410/// PromoteOp - Given an operation that produces a value in an invalid type,
1411/// promote it to compute the value into a larger type. The produced value will
1412/// have the correct bits for the low portion of the register, but no guarantee
1413/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00001414SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
1415 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00001416 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00001417 assert(getTypeAction(VT) == Promote &&
1418 "Caller should expand or legalize operands that are not promotable!");
1419 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
1420 "Cannot promote to smaller type!");
1421
Chris Lattner03c85462005-01-15 05:21:40 +00001422 SDOperand Tmp1, Tmp2, Tmp3;
1423
1424 SDOperand Result;
1425 SDNode *Node = Op.Val;
1426
Chris Lattner45982da2005-05-12 16:53:42 +00001427 if (!Node->hasOneUse()) {
1428 std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
1429 if (I != PromotedNodes.end()) return I->second;
1430 } else {
1431 assert(!PromotedNodes.count(Op) && "Repromoted this node??");
1432 }
1433
Chris Lattner0f69b292005-01-15 06:18:18 +00001434 // Promotion needs an optimization step to clean up after it, and is not
1435 // careful to avoid operations the target does not support. Make sure that
1436 // all generated operations are legalized in the next iteration.
1437 NeedsAnotherIteration = true;
1438
Chris Lattner03c85462005-01-15 05:21:40 +00001439 switch (Node->getOpcode()) {
1440 default:
1441 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
1442 assert(0 && "Do not know how to promote this operator!");
1443 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001444 case ISD::UNDEF:
1445 Result = DAG.getNode(ISD::UNDEF, NVT);
1446 break;
Chris Lattner03c85462005-01-15 05:21:40 +00001447 case ISD::Constant:
1448 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
1449 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
1450 break;
1451 case ISD::ConstantFP:
1452 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
1453 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
1454 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00001455 case ISD::CopyFromReg:
1456 Result = DAG.getCopyFromReg(cast<RegSDNode>(Node)->getReg(), NVT,
1457 Node->getOperand(0));
1458 // Remember that we legalized the chain.
1459 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1460 break;
1461
Chris Lattner82fbfb62005-01-18 02:59:52 +00001462 case ISD::SETCC:
1463 assert(getTypeAction(TLI.getSetCCResultTy()) == Legal &&
1464 "SetCC type is not legal??");
1465 Result = DAG.getSetCC(cast<SetCCSDNode>(Node)->getCondition(),
1466 TLI.getSetCCResultTy(), Node->getOperand(0),
1467 Node->getOperand(1));
1468 Result = LegalizeOp(Result);
1469 break;
Chris Lattner03c85462005-01-15 05:21:40 +00001470
1471 case ISD::TRUNCATE:
1472 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1473 case Legal:
1474 Result = LegalizeOp(Node->getOperand(0));
1475 assert(Result.getValueType() >= NVT &&
1476 "This truncation doesn't make sense!");
1477 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
1478 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
1479 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00001480 case Promote:
1481 // The truncation is not required, because we don't guarantee anything
1482 // about high bits anyway.
1483 Result = PromoteOp(Node->getOperand(0));
1484 break;
Chris Lattner03c85462005-01-15 05:21:40 +00001485 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00001486 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1487 // Truncate the low part of the expanded value to the result type
Misha Brukmanedf128a2005-04-21 22:36:52 +00001488 Result = DAG.getNode(ISD::TRUNCATE, VT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00001489 }
1490 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00001491 case ISD::SIGN_EXTEND:
1492 case ISD::ZERO_EXTEND:
1493 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1494 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
1495 case Legal:
1496 // Input is legal? Just do extend all the way to the larger type.
1497 Result = LegalizeOp(Node->getOperand(0));
1498 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
1499 break;
1500 case Promote:
1501 // Promote the reg if it's smaller.
1502 Result = PromoteOp(Node->getOperand(0));
1503 // The high bits are not guaranteed to be anything. Insert an extend.
1504 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00001505 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
1506 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00001507 else
Chris Lattner23993562005-04-13 02:38:47 +00001508 Result = DAG.getZeroExtendInReg(Result,
1509 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00001510 break;
1511 }
1512 break;
1513
1514 case ISD::FP_EXTEND:
1515 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
1516 case ISD::FP_ROUND:
1517 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1518 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
1519 case Promote: assert(0 && "Unreachable with 2 FP types!");
1520 case Legal:
1521 // Input is legal? Do an FP_ROUND_INREG.
1522 Result = LegalizeOp(Node->getOperand(0));
1523 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, VT);
1524 break;
1525 }
1526 break;
1527
1528 case ISD::SINT_TO_FP:
1529 case ISD::UINT_TO_FP:
1530 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1531 case Legal:
1532 Result = LegalizeOp(Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00001533 // No extra round required here.
1534 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001535 break;
1536
1537 case Promote:
1538 Result = PromoteOp(Node->getOperand(0));
1539 if (Node->getOpcode() == ISD::SINT_TO_FP)
1540 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1541 Result, Node->getOperand(0).getValueType());
1542 else
Chris Lattner23993562005-04-13 02:38:47 +00001543 Result = DAG.getZeroExtendInReg(Result,
1544 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00001545 // No extra round required here.
1546 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001547 break;
1548 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00001549 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
1550 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00001551 // Round if we cannot tolerate excess precision.
1552 if (NoExcessFPPrecision)
1553 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, VT);
1554 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00001555 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00001556 break;
1557
1558 case ISD::FP_TO_SINT:
1559 case ISD::FP_TO_UINT:
1560 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1561 case Legal:
1562 Tmp1 = LegalizeOp(Node->getOperand(0));
1563 break;
1564 case Promote:
1565 // The input result is prerounded, so we don't have to do anything
1566 // special.
1567 Tmp1 = PromoteOp(Node->getOperand(0));
1568 break;
1569 case Expand:
1570 assert(0 && "not implemented");
1571 }
1572 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
1573 break;
1574
Chris Lattner2c8086f2005-04-02 05:00:07 +00001575 case ISD::FABS:
1576 case ISD::FNEG:
1577 Tmp1 = PromoteOp(Node->getOperand(0));
1578 assert(Tmp1.getValueType() == NVT);
1579 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
1580 // NOTE: we do not have to do any extra rounding here for
1581 // NoExcessFPPrecision, because we know the input will have the appropriate
1582 // precision, and these operations don't modify precision at all.
1583 break;
1584
Chris Lattnerda6ba872005-04-28 21:44:33 +00001585 case ISD::FSQRT:
1586 case ISD::FSIN:
1587 case ISD::FCOS:
1588 Tmp1 = PromoteOp(Node->getOperand(0));
1589 assert(Tmp1.getValueType() == NVT);
1590 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
1591 if(NoExcessFPPrecision)
1592 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, VT);
1593 break;
1594
Chris Lattner03c85462005-01-15 05:21:40 +00001595 case ISD::AND:
1596 case ISD::OR:
1597 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00001598 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001599 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00001600 case ISD::MUL:
1601 // The input may have strange things in the top bits of the registers, but
1602 // these operations don't care. They may have wierd bits going out, but
1603 // that too is okay if they are integer operations.
1604 Tmp1 = PromoteOp(Node->getOperand(0));
1605 Tmp2 = PromoteOp(Node->getOperand(1));
1606 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
1607 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
1608
1609 // However, if this is a floating point operation, they will give excess
1610 // precision that we may not be able to tolerate. If we DO allow excess
1611 // precision, just leave it, otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00001612 // FIXME: Why would we need to round FP ops more than integer ones?
1613 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner0f69b292005-01-15 06:18:18 +00001614 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
1615 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, VT);
1616 break;
1617
Chris Lattner8b6fa222005-01-15 22:16:26 +00001618 case ISD::SDIV:
1619 case ISD::SREM:
1620 // These operators require that their input be sign extended.
1621 Tmp1 = PromoteOp(Node->getOperand(0));
1622 Tmp2 = PromoteOp(Node->getOperand(1));
1623 if (MVT::isInteger(NVT)) {
1624 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1, VT);
Chris Lattnerff3e50c2005-01-16 00:17:42 +00001625 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001626 }
1627 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
1628
1629 // Perform FP_ROUND: this is probably overly pessimistic.
1630 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
1631 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, VT);
1632 break;
1633
1634 case ISD::UDIV:
1635 case ISD::UREM:
1636 // These operators require that their input be zero extended.
1637 Tmp1 = PromoteOp(Node->getOperand(0));
1638 Tmp2 = PromoteOp(Node->getOperand(1));
1639 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00001640 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
1641 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001642 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
1643 break;
1644
1645 case ISD::SHL:
1646 Tmp1 = PromoteOp(Node->getOperand(0));
1647 Tmp2 = LegalizeOp(Node->getOperand(1));
1648 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Tmp2);
1649 break;
1650 case ISD::SRA:
1651 // The input value must be properly sign extended.
1652 Tmp1 = PromoteOp(Node->getOperand(0));
1653 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1, VT);
1654 Tmp2 = LegalizeOp(Node->getOperand(1));
1655 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Tmp2);
1656 break;
1657 case ISD::SRL:
1658 // The input value must be properly zero extended.
1659 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00001660 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001661 Tmp2 = LegalizeOp(Node->getOperand(1));
1662 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Tmp2);
1663 break;
Chris Lattner03c85462005-01-15 05:21:40 +00001664 case ISD::LOAD:
1665 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1666 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattner232ee952005-04-10 04:33:47 +00001667 // FIXME: When the DAG combiner exists, change this to use EXTLOAD!
Chris Lattner6841dec2005-04-10 17:40:35 +00001668 if (MVT::isInteger(NVT))
Chris Lattner52d08bd2005-05-09 20:23:03 +00001669 Result = DAG.getNode(ISD::ZEXTLOAD, NVT, Tmp1, Tmp2, Node->getOperand(2),
1670 VT);
Chris Lattner6841dec2005-04-10 17:40:35 +00001671 else
Chris Lattner52d08bd2005-05-09 20:23:03 +00001672 Result = DAG.getNode(ISD::EXTLOAD, NVT, Tmp1, Tmp2, Node->getOperand(2),
1673 VT);
Chris Lattner03c85462005-01-15 05:21:40 +00001674
1675 // Remember that we legalized the chain.
1676 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1677 break;
1678 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00001679 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1680 case Expand: assert(0 && "It's impossible to expand bools");
1681 case Legal:
1682 Tmp1 = LegalizeOp(Node->getOperand(0));// Legalize the condition.
1683 break;
1684 case Promote:
1685 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
1686 break;
1687 }
Chris Lattner03c85462005-01-15 05:21:40 +00001688 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
1689 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
1690 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2, Tmp3);
1691 break;
Chris Lattner8ac532c2005-01-16 19:46:48 +00001692 case ISD::CALL: {
1693 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1694 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the callee.
1695
Chris Lattner3d9dffc2005-01-19 20:24:35 +00001696 std::vector<SDOperand> Ops;
1697 for (unsigned i = 2, e = Node->getNumOperands(); i != e; ++i)
1698 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1699
Chris Lattner8ac532c2005-01-16 19:46:48 +00001700 assert(Node->getNumValues() == 2 && Op.ResNo == 0 &&
1701 "Can only promote single result calls");
1702 std::vector<MVT::ValueType> RetTyVTs;
1703 RetTyVTs.reserve(2);
1704 RetTyVTs.push_back(NVT);
1705 RetTyVTs.push_back(MVT::Other);
Chris Lattner3d9dffc2005-01-19 20:24:35 +00001706 SDNode *NC = DAG.getCall(RetTyVTs, Tmp1, Tmp2, Ops);
Chris Lattner8ac532c2005-01-16 19:46:48 +00001707 Result = SDOperand(NC, 0);
1708
1709 // Insert the new chain mapping.
1710 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1711 break;
Misha Brukmanedf128a2005-04-21 22:36:52 +00001712 }
Andrew Lenharthfecf0952005-05-04 19:11:05 +00001713 case ISD::CTPOP:
1714 case ISD::CTTZ:
1715 case ISD::CTLZ:
1716 Tmp1 = Node->getOperand(0);
1717 //Zero extend the argument
1718 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
1719 // Perform the larger operation, then subtract if needed.
1720 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
1721 switch(Node->getOpcode())
1722 {
1723 case ISD::CTPOP:
1724 Result = Tmp1;
1725 break;
1726 case ISD::CTTZ:
1727 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
1728 Tmp2 = DAG.getSetCC(ISD::SETEQ, MVT::i1, Tmp1,
1729 DAG.getConstant(getSizeInBits(NVT), NVT));
1730 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
1731 DAG.getConstant(getSizeInBits(VT),NVT), Tmp1);
1732 break;
1733 case ISD::CTLZ:
1734 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
1735 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
1736 DAG.getConstant(getSizeInBits(NVT) -
1737 getSizeInBits(VT), NVT));
1738 break;
1739 }
1740 break;
Chris Lattner03c85462005-01-15 05:21:40 +00001741 }
1742
1743 assert(Result.Val && "Didn't set a result!");
1744 AddPromotedOperand(Op, Result);
1745 return Result;
1746}
Chris Lattner3e928bb2005-01-07 07:47:09 +00001747
Chris Lattner84f67882005-01-20 18:52:28 +00001748/// ExpandAddSub - Find a clever way to expand this add operation into
1749/// subcomponents.
Chris Lattner47599822005-04-02 03:38:53 +00001750void SelectionDAGLegalize::
1751ExpandByParts(unsigned NodeOp, SDOperand LHS, SDOperand RHS,
1752 SDOperand &Lo, SDOperand &Hi) {
Chris Lattner84f67882005-01-20 18:52:28 +00001753 // Expand the subcomponents.
1754 SDOperand LHSL, LHSH, RHSL, RHSH;
1755 ExpandOp(LHS, LHSL, LHSH);
1756 ExpandOp(RHS, RHSL, RHSH);
1757
Chris Lattnerbd0781e2005-04-11 20:29:59 +00001758 // FIXME: this should be moved to the dag combiner someday.
1759 if (NodeOp == ISD::ADD_PARTS || NodeOp == ISD::SUB_PARTS)
1760 if (LHSL.getValueType() == MVT::i32) {
1761 SDOperand LowEl;
1762 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHSL))
1763 if (C->getValue() == 0)
1764 LowEl = RHSL;
1765 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHSL))
1766 if (C->getValue() == 0)
1767 LowEl = LHSL;
1768 if (LowEl.Val) {
1769 // Turn this into an add/sub of the high part only.
1770 SDOperand HiEl =
1771 DAG.getNode(NodeOp == ISD::ADD_PARTS ? ISD::ADD : ISD::SUB,
1772 LowEl.getValueType(), LHSH, RHSH);
1773 Lo = LowEl;
1774 Hi = HiEl;
1775 return;
1776 }
1777 }
1778
Chris Lattner84f67882005-01-20 18:52:28 +00001779 std::vector<SDOperand> Ops;
1780 Ops.push_back(LHSL);
1781 Ops.push_back(LHSH);
1782 Ops.push_back(RHSL);
1783 Ops.push_back(RHSH);
Chris Lattner47599822005-04-02 03:38:53 +00001784 Lo = DAG.getNode(NodeOp, LHSL.getValueType(), Ops);
Chris Lattner84f67882005-01-20 18:52:28 +00001785 Hi = Lo.getValue(1);
1786}
1787
Chris Lattner5b359c62005-04-02 04:00:59 +00001788void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
1789 SDOperand Op, SDOperand Amt,
1790 SDOperand &Lo, SDOperand &Hi) {
1791 // Expand the subcomponents.
1792 SDOperand LHSL, LHSH;
1793 ExpandOp(Op, LHSL, LHSH);
1794
1795 std::vector<SDOperand> Ops;
1796 Ops.push_back(LHSL);
1797 Ops.push_back(LHSH);
1798 Ops.push_back(Amt);
1799 Lo = DAG.getNode(NodeOp, LHSL.getValueType(), Ops);
1800 Hi = Lo.getValue(1);
1801}
1802
1803
Chris Lattnere34b3962005-01-19 04:19:40 +00001804/// ExpandShift - Try to find a clever way to expand this shift operation out to
1805/// smaller elements. If we can't find a way that is more efficient than a
1806/// libcall on this target, return false. Otherwise, return true with the
1807/// low-parts expanded into Lo and Hi.
1808bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
1809 SDOperand &Lo, SDOperand &Hi) {
1810 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
1811 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00001812
Chris Lattnere34b3962005-01-19 04:19:40 +00001813 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00001814 SDOperand ShAmt = LegalizeOp(Amt);
1815 MVT::ValueType ShTy = ShAmt.getValueType();
1816 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
1817 unsigned NVTBits = MVT::getSizeInBits(NVT);
1818
1819 // Handle the case when Amt is an immediate. Other cases are currently broken
1820 // and are disabled.
1821 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
1822 unsigned Cst = CN->getValue();
1823 // Expand the incoming operand to be shifted, so that we have its parts
1824 SDOperand InL, InH;
1825 ExpandOp(Op, InL, InH);
1826 switch(Opc) {
1827 case ISD::SHL:
1828 if (Cst > VTBits) {
1829 Lo = DAG.getConstant(0, NVT);
1830 Hi = DAG.getConstant(0, NVT);
1831 } else if (Cst > NVTBits) {
1832 Lo = DAG.getConstant(0, NVT);
1833 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00001834 } else if (Cst == NVTBits) {
1835 Lo = DAG.getConstant(0, NVT);
1836 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00001837 } else {
1838 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
1839 Hi = DAG.getNode(ISD::OR, NVT,
1840 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
1841 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
1842 }
1843 return true;
1844 case ISD::SRL:
1845 if (Cst > VTBits) {
1846 Lo = DAG.getConstant(0, NVT);
1847 Hi = DAG.getConstant(0, NVT);
1848 } else if (Cst > NVTBits) {
1849 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
1850 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00001851 } else if (Cst == NVTBits) {
1852 Lo = InH;
1853 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00001854 } else {
1855 Lo = DAG.getNode(ISD::OR, NVT,
1856 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
1857 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
1858 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
1859 }
1860 return true;
1861 case ISD::SRA:
1862 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00001863 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00001864 DAG.getConstant(NVTBits-1, ShTy));
1865 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00001866 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00001867 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00001868 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00001869 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00001870 } else if (Cst == NVTBits) {
1871 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00001872 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00001873 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00001874 } else {
1875 Lo = DAG.getNode(ISD::OR, NVT,
1876 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
1877 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
1878 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
1879 }
1880 return true;
1881 }
1882 }
1883 // FIXME: The following code for expanding shifts using ISD::SELECT is buggy,
1884 // so disable it for now. Currently targets are handling this via SHL_PARTS
1885 // and friends.
1886 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00001887
1888 // If we have an efficient select operation (or if the selects will all fold
1889 // away), lower to some complex code, otherwise just emit the libcall.
1890 if (TLI.getOperationAction(ISD::SELECT, NVT) != TargetLowering::Legal &&
1891 !isa<ConstantSDNode>(Amt))
1892 return false;
1893
1894 SDOperand InL, InH;
1895 ExpandOp(Op, InL, InH);
Chris Lattnere34b3962005-01-19 04:19:40 +00001896 SDOperand NAmt = DAG.getNode(ISD::SUB, ShTy, // NAmt = 32-ShAmt
1897 DAG.getConstant(NVTBits, ShTy), ShAmt);
1898
Chris Lattnere5544f82005-01-20 20:29:23 +00001899 // Compare the unmasked shift amount against 32.
1900 SDOperand Cond = DAG.getSetCC(ISD::SETGE, TLI.getSetCCResultTy(), ShAmt,
1901 DAG.getConstant(NVTBits, ShTy));
1902
Chris Lattnere34b3962005-01-19 04:19:40 +00001903 if (TLI.getShiftAmountFlavor() != TargetLowering::Mask) {
1904 ShAmt = DAG.getNode(ISD::AND, ShTy, ShAmt, // ShAmt &= 31
1905 DAG.getConstant(NVTBits-1, ShTy));
1906 NAmt = DAG.getNode(ISD::AND, ShTy, NAmt, // NAmt &= 31
1907 DAG.getConstant(NVTBits-1, ShTy));
1908 }
1909
1910 if (Opc == ISD::SHL) {
1911 SDOperand T1 = DAG.getNode(ISD::OR, NVT,// T1 = (Hi << Amt) | (Lo >> NAmt)
1912 DAG.getNode(ISD::SHL, NVT, InH, ShAmt),
1913 DAG.getNode(ISD::SRL, NVT, InL, NAmt));
Chris Lattnere5544f82005-01-20 20:29:23 +00001914 SDOperand T2 = DAG.getNode(ISD::SHL, NVT, InL, ShAmt); // T2 = Lo << Amt&31
Misha Brukmanedf128a2005-04-21 22:36:52 +00001915
Chris Lattnere34b3962005-01-19 04:19:40 +00001916 Hi = DAG.getNode(ISD::SELECT, NVT, Cond, T2, T1);
1917 Lo = DAG.getNode(ISD::SELECT, NVT, Cond, DAG.getConstant(0, NVT), T2);
1918 } else {
Chris Lattner77e77a62005-01-21 06:05:23 +00001919 SDOperand HiLoPart = DAG.getNode(ISD::SELECT, NVT,
1920 DAG.getSetCC(ISD::SETEQ,
1921 TLI.getSetCCResultTy(), NAmt,
1922 DAG.getConstant(32, ShTy)),
1923 DAG.getConstant(0, NVT),
1924 DAG.getNode(ISD::SHL, NVT, InH, NAmt));
Chris Lattnere34b3962005-01-19 04:19:40 +00001925 SDOperand T1 = DAG.getNode(ISD::OR, NVT,// T1 = (Hi << NAmt) | (Lo >> Amt)
Chris Lattner77e77a62005-01-21 06:05:23 +00001926 HiLoPart,
Chris Lattnere34b3962005-01-19 04:19:40 +00001927 DAG.getNode(ISD::SRL, NVT, InL, ShAmt));
Chris Lattnere5544f82005-01-20 20:29:23 +00001928 SDOperand T2 = DAG.getNode(Opc, NVT, InH, ShAmt); // T2 = InH >> ShAmt&31
Chris Lattnere34b3962005-01-19 04:19:40 +00001929
1930 SDOperand HiPart;
Chris Lattner77e77a62005-01-21 06:05:23 +00001931 if (Opc == ISD::SRA)
1932 HiPart = DAG.getNode(ISD::SRA, NVT, InH,
1933 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattnere34b3962005-01-19 04:19:40 +00001934 else
1935 HiPart = DAG.getConstant(0, NVT);
Chris Lattnere34b3962005-01-19 04:19:40 +00001936 Lo = DAG.getNode(ISD::SELECT, NVT, Cond, T2, T1);
Chris Lattnere5544f82005-01-20 20:29:23 +00001937 Hi = DAG.getNode(ISD::SELECT, NVT, Cond, HiPart, T2);
Chris Lattnere34b3962005-01-19 04:19:40 +00001938 }
1939 return true;
1940}
Chris Lattner77e77a62005-01-21 06:05:23 +00001941
Chris Lattner9c32d3b2005-01-23 04:42:50 +00001942/// FindLatestAdjCallStackDown - Scan up the dag to find the latest (highest
1943/// NodeDepth) node that is an AdjCallStackDown operation and occurs later than
1944/// Found.
1945static void FindLatestAdjCallStackDown(SDNode *Node, SDNode *&Found) {
1946 if (Node->getNodeDepth() <= Found->getNodeDepth()) return;
1947
Chris Lattner16cd04d2005-05-12 23:24:06 +00001948 // If we found an CALLSEQ_START, we already know this node occurs later
Chris Lattner9c32d3b2005-01-23 04:42:50 +00001949 // than the Found node. Just remember this node and return.
Chris Lattner16cd04d2005-05-12 23:24:06 +00001950 if (Node->getOpcode() == ISD::CALLSEQ_START) {
Chris Lattner9c32d3b2005-01-23 04:42:50 +00001951 Found = Node;
1952 return;
1953 }
1954
1955 // Otherwise, scan the operands of Node to see if any of them is a call.
1956 assert(Node->getNumOperands() != 0 &&
1957 "All leaves should have depth equal to the entry node!");
1958 for (unsigned i = 0, e = Node->getNumOperands()-1; i != e; ++i)
1959 FindLatestAdjCallStackDown(Node->getOperand(i).Val, Found);
1960
1961 // Tail recurse for the last iteration.
1962 FindLatestAdjCallStackDown(Node->getOperand(Node->getNumOperands()-1).Val,
1963 Found);
1964}
1965
1966
1967/// FindEarliestAdjCallStackUp - Scan down the dag to find the earliest (lowest
1968/// NodeDepth) node that is an AdjCallStackUp operation and occurs more recent
1969/// than Found.
1970static void FindEarliestAdjCallStackUp(SDNode *Node, SDNode *&Found) {
1971 if (Found && Node->getNodeDepth() >= Found->getNodeDepth()) return;
1972
Chris Lattner16cd04d2005-05-12 23:24:06 +00001973 // If we found an CALLSEQ_END, we already know this node occurs earlier
Chris Lattner9c32d3b2005-01-23 04:42:50 +00001974 // than the Found node. Just remember this node and return.
Chris Lattner16cd04d2005-05-12 23:24:06 +00001975 if (Node->getOpcode() == ISD::CALLSEQ_END) {
Chris Lattner9c32d3b2005-01-23 04:42:50 +00001976 Found = Node;
1977 return;
1978 }
1979
1980 // Otherwise, scan the operands of Node to see if any of them is a call.
1981 SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
1982 if (UI == E) return;
1983 for (--E; UI != E; ++UI)
1984 FindEarliestAdjCallStackUp(*UI, Found);
1985
1986 // Tail recurse for the last iteration.
1987 FindEarliestAdjCallStackUp(*UI, Found);
1988}
1989
1990/// FindAdjCallStackUp - Given a chained node that is part of a call sequence,
Chris Lattner16cd04d2005-05-12 23:24:06 +00001991/// find the CALLSEQ_END node that terminates the call sequence.
Chris Lattner9c32d3b2005-01-23 04:42:50 +00001992static SDNode *FindAdjCallStackUp(SDNode *Node) {
Chris Lattner16cd04d2005-05-12 23:24:06 +00001993 if (Node->getOpcode() == ISD::CALLSEQ_END)
Chris Lattner9c32d3b2005-01-23 04:42:50 +00001994 return Node;
Chris Lattnerf4b45792005-04-02 03:22:40 +00001995 if (Node->use_empty())
1996 return 0; // No adjcallstackup
Chris Lattner9c32d3b2005-01-23 04:42:50 +00001997
1998 if (Node->hasOneUse()) // Simple case, only has one user to check.
1999 return FindAdjCallStackUp(*Node->use_begin());
Misha Brukmanedf128a2005-04-21 22:36:52 +00002000
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002001 SDOperand TheChain(Node, Node->getNumValues()-1);
2002 assert(TheChain.getValueType() == MVT::Other && "Is not a token chain!");
Misha Brukmanedf128a2005-04-21 22:36:52 +00002003
2004 for (SDNode::use_iterator UI = Node->use_begin(),
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002005 E = Node->use_end(); ; ++UI) {
Chris Lattner16cd04d2005-05-12 23:24:06 +00002006 assert(UI != E && "Didn't find a user of the tokchain, no CALLSEQ_END!");
Misha Brukmanedf128a2005-04-21 22:36:52 +00002007
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002008 // Make sure to only follow users of our token chain.
2009 SDNode *User = *UI;
2010 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
2011 if (User->getOperand(i) == TheChain)
2012 return FindAdjCallStackUp(User);
2013 }
2014 assert(0 && "Unreachable");
2015 abort();
2016}
2017
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002018/// FindAdjCallStackDown - Given a chained node that is part of a call sequence,
Chris Lattner16cd04d2005-05-12 23:24:06 +00002019/// find the CALLSEQ_START node that initiates the call sequence.
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002020static SDNode *FindAdjCallStackDown(SDNode *Node) {
2021 assert(Node && "Didn't find adjcallstackdown for a call??");
Chris Lattner16cd04d2005-05-12 23:24:06 +00002022 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002023
2024 assert(Node->getOperand(0).getValueType() == MVT::Other &&
2025 "Node doesn't have a token chain argument!");
2026 return FindAdjCallStackDown(Node->getOperand(0).Val);
2027}
2028
2029
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002030/// FindInputOutputChains - If we are replacing an operation with a call we need
2031/// to find the call that occurs before and the call that occurs after it to
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002032/// properly serialize the calls in the block. The returned operand is the
2033/// input chain value for the new call (e.g. the entry node or the previous
2034/// call), and OutChain is set to be the chain node to update to point to the
2035/// end of the call chain.
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002036static SDOperand FindInputOutputChains(SDNode *OpNode, SDNode *&OutChain,
2037 SDOperand Entry) {
2038 SDNode *LatestAdjCallStackDown = Entry.Val;
Nate Begemanc7c16572005-04-11 03:01:51 +00002039 SDNode *LatestAdjCallStackUp = 0;
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002040 FindLatestAdjCallStackDown(OpNode, LatestAdjCallStackDown);
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002041 //std::cerr<<"Found node: "; LatestAdjCallStackDown->dump(); std::cerr <<"\n";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002042
Chris Lattner16cd04d2005-05-12 23:24:06 +00002043 // It is possible that no ISD::CALLSEQ_START was found because there is no
Nate Begemanc7c16572005-04-11 03:01:51 +00002044 // previous call in the function. LatestCallStackDown may in that case be
Chris Lattner16cd04d2005-05-12 23:24:06 +00002045 // the entry node itself. Do not attempt to find a matching CALLSEQ_END
2046 // unless LatestCallStackDown is an CALLSEQ_START.
2047 if (LatestAdjCallStackDown->getOpcode() == ISD::CALLSEQ_START)
Nate Begemanc7c16572005-04-11 03:01:51 +00002048 LatestAdjCallStackUp = FindAdjCallStackUp(LatestAdjCallStackDown);
2049 else
2050 LatestAdjCallStackUp = Entry.Val;
2051 assert(LatestAdjCallStackUp && "NULL return from FindAdjCallStackUp");
Misha Brukmanedf128a2005-04-21 22:36:52 +00002052
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002053 // Finally, find the first call that this must come before, first we find the
2054 // adjcallstackup that ends the call.
2055 OutChain = 0;
2056 FindEarliestAdjCallStackUp(OpNode, OutChain);
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002057
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002058 // If we found one, translate from the adj up to the adjdown.
2059 if (OutChain)
2060 OutChain = FindAdjCallStackDown(OutChain);
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002061
2062 return SDOperand(LatestAdjCallStackUp, 0);
2063}
2064
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002065/// SpliceCallInto - Given the result chain of a libcall (CallResult), and a
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00002066void SelectionDAGLegalize::SpliceCallInto(const SDOperand &CallResult,
2067 SDNode *OutChain) {
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002068 // Nothing to splice it into?
2069 if (OutChain == 0) return;
2070
2071 assert(OutChain->getOperand(0).getValueType() == MVT::Other);
2072 //OutChain->dump();
2073
2074 // Form a token factor node merging the old inval and the new inval.
2075 SDOperand InToken = DAG.getNode(ISD::TokenFactor, MVT::Other, CallResult,
2076 OutChain->getOperand(0));
2077 // Change the node to refer to the new token.
2078 OutChain->setAdjCallChain(InToken);
2079}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002080
2081
Chris Lattner77e77a62005-01-21 06:05:23 +00002082// ExpandLibCall - Expand a node into a call to a libcall. If the result value
2083// does not fit into a register, return the lo part and set the hi part to the
2084// by-reg argument. If it does fit into a single register, return the result
2085// and leave the Hi part unset.
2086SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
2087 SDOperand &Hi) {
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002088 SDNode *OutChain;
2089 SDOperand InChain = FindInputOutputChains(Node, OutChain,
2090 DAG.getEntryNode());
Chris Lattnerf4b45792005-04-02 03:22:40 +00002091 if (InChain.Val == 0)
2092 InChain = DAG.getEntryNode();
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002093
Chris Lattner77e77a62005-01-21 06:05:23 +00002094 TargetLowering::ArgListTy Args;
2095 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2096 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
2097 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
2098 Args.push_back(std::make_pair(Node->getOperand(i), ArgTy));
2099 }
2100 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00002101
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002102 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00002103 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002104 std::pair<SDOperand,SDOperand> CallInfo =
Chris Lattner9092fa32005-05-12 19:56:57 +00002105 TLI.LowerCallTo(InChain, RetTy, false, 0, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00002106 SpliceCallInto(CallInfo.second, OutChain);
2107
2108 NeedsAnotherIteration = true;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002109
2110 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00002111 default: assert(0 && "Unknown thing");
2112 case Legal:
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002113 return CallInfo.first;
Chris Lattner77e77a62005-01-21 06:05:23 +00002114 case Promote:
2115 assert(0 && "Cannot promote this yet!");
2116 case Expand:
2117 SDOperand Lo;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002118 ExpandOp(CallInfo.first, Lo, Hi);
Chris Lattner77e77a62005-01-21 06:05:23 +00002119 return Lo;
2120 }
2121}
2122
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002123
Chris Lattner77e77a62005-01-21 06:05:23 +00002124/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
2125/// destination type is legal.
2126SDOperand SelectionDAGLegalize::
2127ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
2128 assert(getTypeAction(DestTy) == Legal && "Destination type is not legal!");
2129 assert(getTypeAction(Source.getValueType()) == Expand &&
2130 "This is not an expansion!");
2131 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
2132
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002133 if (!isSigned) {
Chris Lattner77e77a62005-01-21 06:05:23 +00002134 // If this is unsigned, and not supported, first perform the conversion to
2135 // signed, then adjust the result if the sign bit is set.
Chris Lattnerffe284c2005-04-13 03:42:14 +00002136 SDOperand SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner77e77a62005-01-21 06:05:23 +00002137
Chris Lattnere9c35e72005-04-13 05:09:42 +00002138 assert(Source.getValueType() == MVT::i64 &&
2139 "This only works for 64-bit -> FP");
2140 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
2141 // incoming integer is set. To handle this, we dynamically test to see if
2142 // it is set, and, if so, add a fudge factor.
2143 SDOperand Lo, Hi;
2144 ExpandOp(Source, Lo, Hi);
2145
2146 SDOperand SignSet = DAG.getSetCC(ISD::SETLT, TLI.getSetCCResultTy(), Hi,
2147 DAG.getConstant(0, Hi.getValueType()));
2148 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
2149 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
2150 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00002151 uint64_t FF = 0x5f800000ULL;
2152 if (TLI.isLittleEndian()) FF <<= 32;
2153 static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00002154
2155 MachineConstantPool *CP = DAG.getMachineFunction().getConstantPool();
2156 SDOperand CPIdx = DAG.getConstantPool(CP->getConstantPoolIndex(FudgeFactor),
2157 TLI.getPointerTy());
2158 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
2159 SDOperand FudgeInReg;
2160 if (DestTy == MVT::f32)
Chris Lattner52d08bd2005-05-09 20:23:03 +00002161 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
2162 DAG.getSrcValue(NULL));
Chris Lattnere9c35e72005-04-13 05:09:42 +00002163 else {
2164 assert(DestTy == MVT::f64 && "Unexpected conversion");
2165 FudgeInReg = DAG.getNode(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002166 CPIdx, DAG.getSrcValue(NULL), MVT::f32);
Chris Lattnere9c35e72005-04-13 05:09:42 +00002167 }
2168 return DAG.getNode(ISD::ADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00002169 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002170
Chris Lattner13689e22005-05-12 07:00:44 +00002171 // Expand the source, then glue it back together for the call. We must expand
2172 // the source in case it is shared (this pass of legalize must traverse it).
2173 SDOperand SrcLo, SrcHi;
2174 ExpandOp(Source, SrcLo, SrcHi);
2175 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
2176
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002177 SDNode *OutChain = 0;
2178 SDOperand InChain = FindInputOutputChains(Source.Val, OutChain,
2179 DAG.getEntryNode());
2180 const char *FnName = 0;
2181 if (DestTy == MVT::f32)
2182 FnName = "__floatdisf";
2183 else {
2184 assert(DestTy == MVT::f64 && "Unknown fp value type!");
2185 FnName = "__floatdidf";
2186 }
2187
Chris Lattner77e77a62005-01-21 06:05:23 +00002188 SDOperand Callee = DAG.getExternalSymbol(FnName, TLI.getPointerTy());
2189
2190 TargetLowering::ArgListTy Args;
2191 const Type *ArgTy = MVT::getTypeForValueType(Source.getValueType());
Chris Lattner44d105b2005-05-12 06:54:21 +00002192
Chris Lattner77e77a62005-01-21 06:05:23 +00002193 Args.push_back(std::make_pair(Source, ArgTy));
2194
2195 // We don't care about token chains for libcalls. We just use the entry
2196 // node as our input and ignore the output chain. This allows us to place
2197 // calls wherever we need them to satisfy data dependences.
2198 const Type *RetTy = MVT::getTypeForValueType(DestTy);
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002199
2200 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattner9092fa32005-05-12 19:56:57 +00002201 TLI.LowerCallTo(InChain, RetTy, false, 0, Callee, Args, DAG);
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002202
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00002203 SpliceCallInto(CallResult.second, OutChain);
Chris Lattner0d67f0c2005-05-11 19:02:11 +00002204 return CallResult.first;
Chris Lattner77e77a62005-01-21 06:05:23 +00002205}
Misha Brukmanedf128a2005-04-21 22:36:52 +00002206
Chris Lattnere34b3962005-01-19 04:19:40 +00002207
2208
Chris Lattner3e928bb2005-01-07 07:47:09 +00002209/// ExpandOp - Expand the specified SDOperand into its two component pieces
2210/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
2211/// LegalizeNodes map is filled in for any results that are not expanded, the
2212/// ExpandedNodes map is filled in for any results that are expanded, and the
2213/// Lo/Hi values are returned.
2214void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
2215 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00002216 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002217 SDNode *Node = Op.Val;
2218 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
2219 assert(MVT::isInteger(VT) && "Cannot expand FP values!");
2220 assert(MVT::isInteger(NVT) && NVT < VT &&
2221 "Cannot expand to FP value or to larger int value!");
2222
2223 // If there is more than one use of this, see if we already expanded it.
2224 // There is no use remembering values that only have a single use, as the map
2225 // entries will never be reused.
2226 if (!Node->hasOneUse()) {
2227 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
2228 = ExpandedNodes.find(Op);
2229 if (I != ExpandedNodes.end()) {
2230 Lo = I->second.first;
2231 Hi = I->second.second;
2232 return;
2233 }
Chris Lattner45982da2005-05-12 16:53:42 +00002234 } else {
2235 assert(!ExpandedNodes.count(Op) && "Re-expanding a node!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002236 }
2237
Chris Lattner4e6c7462005-01-08 19:27:05 +00002238 // Expanding to multiple registers needs to perform an optimization step, and
2239 // is not careful to avoid operations the target does not support. Make sure
2240 // that all generated operations are legalized in the next iteration.
2241 NeedsAnotherIteration = true;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002242
Chris Lattner3e928bb2005-01-07 07:47:09 +00002243 switch (Node->getOpcode()) {
2244 default:
2245 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
2246 assert(0 && "Do not know how to expand this operator!");
2247 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00002248 case ISD::UNDEF:
2249 Lo = DAG.getNode(ISD::UNDEF, NVT);
2250 Hi = DAG.getNode(ISD::UNDEF, NVT);
2251 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002252 case ISD::Constant: {
2253 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
2254 Lo = DAG.getConstant(Cst, NVT);
2255 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
2256 break;
2257 }
2258
2259 case ISD::CopyFromReg: {
Chris Lattner18c2f132005-01-13 20:50:02 +00002260 unsigned Reg = cast<RegSDNode>(Node)->getReg();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002261 // Aggregate register values are always in consequtive pairs.
Chris Lattner69a52152005-01-14 22:38:01 +00002262 Lo = DAG.getCopyFromReg(Reg, NVT, Node->getOperand(0));
2263 Hi = DAG.getCopyFromReg(Reg+1, NVT, Lo.getValue(1));
Misha Brukmanedf128a2005-04-21 22:36:52 +00002264
Chris Lattner69a52152005-01-14 22:38:01 +00002265 // Remember that we legalized the chain.
2266 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
2267
Chris Lattner3e928bb2005-01-07 07:47:09 +00002268 assert(isTypeLegal(NVT) && "Cannot expand this multiple times yet!");
2269 break;
2270 }
2271
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00002272 case ISD::BUILD_PAIR:
2273 // Legalize both operands. FIXME: in the future we should handle the case
2274 // where the two elements are not legal.
2275 assert(isTypeLegal(NVT) && "Cannot expand this multiple times yet!");
2276 Lo = LegalizeOp(Node->getOperand(0));
2277 Hi = LegalizeOp(Node->getOperand(1));
2278 break;
2279
Chris Lattneredb1add2005-05-11 04:51:16 +00002280 case ISD::CTPOP:
2281 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00002282 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
2283 DAG.getNode(ISD::CTPOP, NVT, Lo),
2284 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00002285 Hi = DAG.getConstant(0, NVT);
2286 break;
2287
Chris Lattner39a8f332005-05-12 19:05:01 +00002288 case ISD::CTLZ: {
2289 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00002290 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00002291 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
2292 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
2293 SDOperand TopNotZero = DAG.getSetCC(ISD::SETNE, TLI.getSetCCResultTy(),
2294 HLZ, BitsC);
2295 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
2296 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
2297
2298 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
2299 Hi = DAG.getConstant(0, NVT);
2300 break;
2301 }
2302
2303 case ISD::CTTZ: {
2304 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00002305 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00002306 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
2307 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
2308 SDOperand BotNotZero = DAG.getSetCC(ISD::SETNE, TLI.getSetCCResultTy(),
2309 LTZ, BitsC);
2310 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
2311 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
2312
2313 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
2314 Hi = DAG.getConstant(0, NVT);
2315 break;
2316 }
Chris Lattneredb1add2005-05-11 04:51:16 +00002317
Chris Lattner3e928bb2005-01-07 07:47:09 +00002318 case ISD::LOAD: {
2319 SDOperand Ch = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2320 SDOperand Ptr = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002321 Lo = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002322
2323 // Increment the pointer to the other half.
Chris Lattner38d6be52005-01-09 19:43:23 +00002324 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002325 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
2326 getIntPtrConstant(IncrementSize));
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002327 //Is this safe? declaring that the two parts of the split load
2328 //are from the same instruction?
2329 Hi = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
Chris Lattnerec39a452005-01-19 18:02:17 +00002330
2331 // Build a factor node to remember that this load is independent of the
2332 // other one.
2333 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2334 Hi.getValue(1));
Misha Brukmanedf128a2005-04-21 22:36:52 +00002335
Chris Lattner3e928bb2005-01-07 07:47:09 +00002336 // Remember that we legalized the chain.
Chris Lattnerec39a452005-01-19 18:02:17 +00002337 AddLegalizedOperand(Op.getValue(1), TF);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002338 if (!TLI.isLittleEndian())
2339 std::swap(Lo, Hi);
2340 break;
2341 }
2342 case ISD::CALL: {
2343 SDOperand Chain = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2344 SDOperand Callee = LegalizeOp(Node->getOperand(1)); // Legalize the callee.
2345
Chris Lattner3d9dffc2005-01-19 20:24:35 +00002346 bool Changed = false;
2347 std::vector<SDOperand> Ops;
2348 for (unsigned i = 2, e = Node->getNumOperands(); i != e; ++i) {
2349 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2350 Changed |= Ops.back() != Node->getOperand(i);
2351 }
2352
Chris Lattner3e928bb2005-01-07 07:47:09 +00002353 assert(Node->getNumValues() == 2 && Op.ResNo == 0 &&
2354 "Can only expand a call once so far, not i64 -> i16!");
2355
2356 std::vector<MVT::ValueType> RetTyVTs;
2357 RetTyVTs.reserve(3);
2358 RetTyVTs.push_back(NVT);
2359 RetTyVTs.push_back(NVT);
2360 RetTyVTs.push_back(MVT::Other);
Chris Lattner3d9dffc2005-01-19 20:24:35 +00002361 SDNode *NC = DAG.getCall(RetTyVTs, Chain, Callee, Ops);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002362 Lo = SDOperand(NC, 0);
2363 Hi = SDOperand(NC, 1);
2364
2365 // Insert the new chain mapping.
Chris Lattnere3304a32005-01-08 20:35:13 +00002366 AddLegalizedOperand(Op.getValue(1), Hi.getValue(2));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002367 break;
2368 }
2369 case ISD::AND:
2370 case ISD::OR:
2371 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
2372 SDOperand LL, LH, RL, RH;
2373 ExpandOp(Node->getOperand(0), LL, LH);
2374 ExpandOp(Node->getOperand(1), RL, RH);
2375 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
2376 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
2377 break;
2378 }
2379 case ISD::SELECT: {
2380 SDOperand C, LL, LH, RL, RH;
Chris Lattner47e92232005-01-18 19:27:06 +00002381
2382 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2383 case Expand: assert(0 && "It's impossible to expand bools");
2384 case Legal:
2385 C = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2386 break;
2387 case Promote:
2388 C = PromoteOp(Node->getOperand(0)); // Promote the condition.
2389 break;
2390 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002391 ExpandOp(Node->getOperand(1), LL, LH);
2392 ExpandOp(Node->getOperand(2), RL, RH);
2393 Lo = DAG.getNode(ISD::SELECT, NVT, C, LL, RL);
2394 Hi = DAG.getNode(ISD::SELECT, NVT, C, LH, RH);
2395 break;
2396 }
2397 case ISD::SIGN_EXTEND: {
Chris Lattner06098e02005-04-03 23:41:52 +00002398 SDOperand In;
2399 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2400 case Expand: assert(0 && "expand-expand not implemented yet!");
2401 case Legal: In = LegalizeOp(Node->getOperand(0)); break;
2402 case Promote:
2403 In = PromoteOp(Node->getOperand(0));
2404 // Emit the appropriate sign_extend_inreg to get the value we want.
2405 In = DAG.getNode(ISD::SIGN_EXTEND_INREG, In.getValueType(), In,
2406 Node->getOperand(0).getValueType());
2407 break;
2408 }
2409
Chris Lattner3e928bb2005-01-07 07:47:09 +00002410 // The low part is just a sign extension of the input (which degenerates to
2411 // a copy).
Chris Lattner06098e02005-04-03 23:41:52 +00002412 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, In);
Misha Brukmanedf128a2005-04-21 22:36:52 +00002413
Chris Lattner3e928bb2005-01-07 07:47:09 +00002414 // The high part is obtained by SRA'ing all but one of the bits of the lo
2415 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00002416 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner27ff1122005-01-22 00:31:52 +00002417 Hi = DAG.getNode(ISD::SRA, NVT, Lo, DAG.getConstant(LoSize-1,
2418 TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002419 break;
2420 }
Chris Lattner06098e02005-04-03 23:41:52 +00002421 case ISD::ZERO_EXTEND: {
2422 SDOperand In;
2423 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2424 case Expand: assert(0 && "expand-expand not implemented yet!");
2425 case Legal: In = LegalizeOp(Node->getOperand(0)); break;
2426 case Promote:
2427 In = PromoteOp(Node->getOperand(0));
2428 // Emit the appropriate zero_extend_inreg to get the value we want.
Chris Lattner23993562005-04-13 02:38:47 +00002429 In = DAG.getZeroExtendInReg(In, Node->getOperand(0).getValueType());
Chris Lattner06098e02005-04-03 23:41:52 +00002430 break;
2431 }
2432
Chris Lattner3e928bb2005-01-07 07:47:09 +00002433 // The low part is just a zero extension of the input (which degenerates to
2434 // a copy).
Chris Lattnerdea29e22005-04-10 01:13:15 +00002435 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, In);
Misha Brukmanedf128a2005-04-21 22:36:52 +00002436
Chris Lattner3e928bb2005-01-07 07:47:09 +00002437 // The high part is just a zero.
2438 Hi = DAG.getConstant(0, NVT);
2439 break;
Chris Lattner06098e02005-04-03 23:41:52 +00002440 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00002441 // These operators cannot be expanded directly, emit them as calls to
2442 // library functions.
2443 case ISD::FP_TO_SINT:
2444 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00002445 Lo = ExpandLibCall("__fixsfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00002446 else
Chris Lattner77e77a62005-01-21 06:05:23 +00002447 Lo = ExpandLibCall("__fixdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00002448 break;
2449 case ISD::FP_TO_UINT:
2450 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00002451 Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00002452 else
Chris Lattner77e77a62005-01-21 06:05:23 +00002453 Lo = ExpandLibCall("__fixunsdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00002454 break;
2455
Chris Lattnere34b3962005-01-19 04:19:40 +00002456 case ISD::SHL:
2457 // If we can emit an efficient shift operation, do so now.
Chris Lattner77e77a62005-01-21 06:05:23 +00002458 if (ExpandShift(ISD::SHL, Node->getOperand(0), Node->getOperand(1), Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00002459 break;
Chris Lattner47599822005-04-02 03:38:53 +00002460
2461 // If this target supports SHL_PARTS, use it.
2462 if (TLI.getOperationAction(ISD::SHL_PARTS, NVT) == TargetLowering::Legal) {
Chris Lattner5b359c62005-04-02 04:00:59 +00002463 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), Node->getOperand(1),
2464 Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00002465 break;
2466 }
2467
Chris Lattnere34b3962005-01-19 04:19:40 +00002468 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00002469 Lo = ExpandLibCall("__ashldi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00002470 break;
2471
2472 case ISD::SRA:
2473 // If we can emit an efficient shift operation, do so now.
Chris Lattner77e77a62005-01-21 06:05:23 +00002474 if (ExpandShift(ISD::SRA, Node->getOperand(0), Node->getOperand(1), Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00002475 break;
Chris Lattner47599822005-04-02 03:38:53 +00002476
2477 // If this target supports SRA_PARTS, use it.
2478 if (TLI.getOperationAction(ISD::SRA_PARTS, NVT) == TargetLowering::Legal) {
Chris Lattner5b359c62005-04-02 04:00:59 +00002479 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), Node->getOperand(1),
2480 Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00002481 break;
2482 }
2483
Chris Lattnere34b3962005-01-19 04:19:40 +00002484 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00002485 Lo = ExpandLibCall("__ashrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00002486 break;
2487 case ISD::SRL:
2488 // If we can emit an efficient shift operation, do so now.
Chris Lattner77e77a62005-01-21 06:05:23 +00002489 if (ExpandShift(ISD::SRL, Node->getOperand(0), Node->getOperand(1), Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00002490 break;
Chris Lattner47599822005-04-02 03:38:53 +00002491
2492 // If this target supports SRL_PARTS, use it.
2493 if (TLI.getOperationAction(ISD::SRL_PARTS, NVT) == TargetLowering::Legal) {
Chris Lattner5b359c62005-04-02 04:00:59 +00002494 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), Node->getOperand(1),
2495 Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00002496 break;
2497 }
2498
Chris Lattnere34b3962005-01-19 04:19:40 +00002499 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00002500 Lo = ExpandLibCall("__lshrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00002501 break;
2502
Misha Brukmanedf128a2005-04-21 22:36:52 +00002503 case ISD::ADD:
Chris Lattner47599822005-04-02 03:38:53 +00002504 ExpandByParts(ISD::ADD_PARTS, Node->getOperand(0), Node->getOperand(1),
2505 Lo, Hi);
Chris Lattner84f67882005-01-20 18:52:28 +00002506 break;
2507 case ISD::SUB:
Chris Lattner47599822005-04-02 03:38:53 +00002508 ExpandByParts(ISD::SUB_PARTS, Node->getOperand(0), Node->getOperand(1),
2509 Lo, Hi);
Chris Lattner84f67882005-01-20 18:52:28 +00002510 break;
Nate Begemanc7c16572005-04-11 03:01:51 +00002511 case ISD::MUL: {
2512 if (TLI.getOperationAction(ISD::MULHU, NVT) == TargetLowering::Legal) {
2513 SDOperand LL, LH, RL, RH;
2514 ExpandOp(Node->getOperand(0), LL, LH);
2515 ExpandOp(Node->getOperand(1), RL, RH);
2516 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
2517 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
2518 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
2519 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
2520 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
2521 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
2522 } else {
2523 Lo = ExpandLibCall("__muldi3" , Node, Hi); break;
2524 }
2525 break;
2526 }
Chris Lattner77e77a62005-01-21 06:05:23 +00002527 case ISD::SDIV: Lo = ExpandLibCall("__divdi3" , Node, Hi); break;
2528 case ISD::UDIV: Lo = ExpandLibCall("__udivdi3", Node, Hi); break;
2529 case ISD::SREM: Lo = ExpandLibCall("__moddi3" , Node, Hi); break;
2530 case ISD::UREM: Lo = ExpandLibCall("__umoddi3", Node, Hi); break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002531 }
2532
2533 // Remember in a map if the values will be reused later.
2534 if (!Node->hasOneUse()) {
2535 bool isNew = ExpandedNodes.insert(std::make_pair(Op,
2536 std::make_pair(Lo, Hi))).second;
2537 assert(isNew && "Value already expanded?!?");
2538 }
2539}
2540
2541
2542// SelectionDAG::Legalize - This is the entry point for the file.
2543//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002544void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002545 /// run - This is the main entry point to this class.
2546 ///
Chris Lattner9c32d3b2005-01-23 04:42:50 +00002547 SelectionDAGLegalize(*this).Run();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002548}
2549