blob: 04a2665feade069663d801770507da1f1b5d1340 [file] [log] [blame]
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001//===-- X86ISelPattern.cpp - A pattern matching inst selector for X86 -----===//
Chris Lattner24aad1b2005-01-10 22:10:13 +00002//
Chris Lattner8acb1ba2005-01-07 07:49:41 +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.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a pattern matching instruction selector for X86.
11//
12//===----------------------------------------------------------------------===//
13
14#include "X86.h"
15#include "X86InstrBuilder.h"
16#include "X86RegisterInfo.h"
Chris Lattner590d8002005-01-09 18:52:44 +000017#include "llvm/Constants.h" // FIXME: REMOVE
Chris Lattner8acb1ba2005-01-07 07:49:41 +000018#include "llvm/Function.h"
Chris Lattner590d8002005-01-09 18:52:44 +000019#include "llvm/CodeGen/MachineConstantPool.h" // FIXME: REMOVE
Chris Lattner8acb1ba2005-01-07 07:49:41 +000020#include "llvm/CodeGen/MachineFunction.h"
21#include "llvm/CodeGen/MachineFrameInfo.h"
22#include "llvm/CodeGen/SelectionDAG.h"
23#include "llvm/CodeGen/SelectionDAGISel.h"
24#include "llvm/CodeGen/SSARegMap.h"
25#include "llvm/Target/TargetData.h"
26#include "llvm/Target/TargetLowering.h"
27#include "llvm/Support/MathExtras.h"
28#include "llvm/ADT/Statistic.h"
29#include <set>
Jeff Cohen603fea92005-01-12 04:29:05 +000030#include <algorithm>
Chris Lattner8acb1ba2005-01-07 07:49:41 +000031using namespace llvm;
32
33//===----------------------------------------------------------------------===//
34// X86TargetLowering - X86 Implementation of the TargetLowering interface
35namespace {
36 class X86TargetLowering : public TargetLowering {
37 int VarArgsFrameIndex; // FrameIndex for start of varargs area.
Chris Lattner14824582005-01-09 00:01:27 +000038 int ReturnAddrIndex; // FrameIndex for return slot.
Chris Lattner8acb1ba2005-01-07 07:49:41 +000039 public:
40 X86TargetLowering(TargetMachine &TM) : TargetLowering(TM) {
41 // Set up the TargetLowering object.
Chris Lattner4df0de92005-01-17 00:00:33 +000042
43 // X86 is wierd, it always uses i8 for shift amounts and setcc results.
44 setShiftAmountType(MVT::i8);
45 setSetCCResultType(MVT::i8);
Chris Lattner009b55b2005-01-19 03:36:30 +000046 setShiftAmountFlavor(Mask); // shl X, 32 == shl X, 0
Chris Lattner4df0de92005-01-17 00:00:33 +000047
48 // Set up the register classes.
Chris Lattner8acb1ba2005-01-07 07:49:41 +000049 addRegisterClass(MVT::i8, X86::R8RegisterClass);
50 addRegisterClass(MVT::i16, X86::R16RegisterClass);
51 addRegisterClass(MVT::i32, X86::R32RegisterClass);
52 addRegisterClass(MVT::f64, X86::RFPRegisterClass);
53
54 // FIXME: Eliminate these two classes when legalize can handle promotions
55 // well.
Chris Lattnerda2ce112005-01-16 07:34:08 +000056/**/ addRegisterClass(MVT::i1, X86::R8RegisterClass);
Chris Lattnerda2ce112005-01-16 07:34:08 +000057
58 setOperationAction(ISD::MEMMOVE , MVT::Other, Expand);
59 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Expand);
60 setOperationAction(ISD::ZERO_EXTEND_INREG, MVT::i16 , Expand);
61 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
62 setOperationAction(ISD::ZERO_EXTEND_INREG, MVT::i1 , Expand);
63 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
64 setOperationAction(ISD::SEXTLOAD , MVT::i1 , Expand);
65 setOperationAction(ISD::SREM , MVT::f64 , Expand);
66
67 // These should be promoted to a larger select which is supported.
68/**/ setOperationAction(ISD::SELECT , MVT::i1 , Promote);
69 setOperationAction(ISD::SELECT , MVT::i8 , Promote);
Chris Lattner8acb1ba2005-01-07 07:49:41 +000070
71 computeRegisterProperties();
Chris Lattner8acb1ba2005-01-07 07:49:41 +000072
73 addLegalFPImmediate(+0.0); // FLD0
74 addLegalFPImmediate(+1.0); // FLD1
75 addLegalFPImmediate(-0.0); // FLD0/FCHS
76 addLegalFPImmediate(-1.0); // FLD1/FCHS
77 }
78
79 /// LowerArguments - This hook must be implemented to indicate how we should
80 /// lower the arguments for the specified function, into the specified DAG.
81 virtual std::vector<SDOperand>
82 LowerArguments(Function &F, SelectionDAG &DAG);
83
84 /// LowerCallTo - This hook lowers an abstract call to a function into an
85 /// actual call.
Chris Lattner5188ad72005-01-08 19:28:19 +000086 virtual std::pair<SDOperand, SDOperand>
87 LowerCallTo(SDOperand Chain, const Type *RetTy, SDOperand Callee,
88 ArgListTy &Args, SelectionDAG &DAG);
Chris Lattner14824582005-01-09 00:01:27 +000089
90 virtual std::pair<SDOperand, SDOperand>
91 LowerVAStart(SDOperand Chain, SelectionDAG &DAG);
92
93 virtual std::pair<SDOperand,SDOperand>
94 LowerVAArgNext(bool isVANext, SDOperand Chain, SDOperand VAList,
95 const Type *ArgTy, SelectionDAG &DAG);
96
97 virtual std::pair<SDOperand, SDOperand>
98 LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth,
99 SelectionDAG &DAG);
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000100 };
101}
102
103
104std::vector<SDOperand>
105X86TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
106 std::vector<SDOperand> ArgValues;
107
108 // Add DAG nodes to load the arguments... On entry to a function on the X86,
109 // the stack frame looks like this:
110 //
111 // [ESP] -- return address
112 // [ESP + 4] -- first argument (leftmost lexically)
113 // [ESP + 8] -- second argument, if first argument is four bytes in size
114 // ...
115 //
116 MachineFunction &MF = DAG.getMachineFunction();
117 MachineFrameInfo *MFI = MF.getFrameInfo();
118
119 unsigned ArgOffset = 0; // Frame mechanisms handle retaddr slot
120 for (Function::aiterator I = F.abegin(), E = F.aend(); I != E; ++I) {
121 MVT::ValueType ObjectVT = getValueType(I->getType());
122 unsigned ArgIncrement = 4;
123 unsigned ObjSize;
124 switch (ObjectVT) {
125 default: assert(0 && "Unhandled argument type!");
126 case MVT::i1:
127 case MVT::i8: ObjSize = 1; break;
128 case MVT::i16: ObjSize = 2; break;
129 case MVT::i32: ObjSize = 4; break;
130 case MVT::i64: ObjSize = ArgIncrement = 8; break;
131 case MVT::f32: ObjSize = 4; break;
132 case MVT::f64: ObjSize = ArgIncrement = 8; break;
133 }
134 // Create the frame index object for this incoming parameter...
135 int FI = MFI->CreateFixedObject(ObjSize, ArgOffset);
136
137 // Create the SelectionDAG nodes corresponding to a load from this parameter
138 SDOperand FIN = DAG.getFrameIndex(FI, MVT::i32);
139
140 // Don't codegen dead arguments. FIXME: remove this check when we can nuke
141 // dead loads.
142 SDOperand ArgValue;
143 if (!I->use_empty())
144 ArgValue = DAG.getLoad(ObjectVT, DAG.getEntryNode(), FIN);
145 else {
146 if (MVT::isInteger(ObjectVT))
147 ArgValue = DAG.getConstant(0, ObjectVT);
148 else
149 ArgValue = DAG.getConstantFP(0, ObjectVT);
150 }
151 ArgValues.push_back(ArgValue);
152
153 ArgOffset += ArgIncrement; // Move on to the next argument...
154 }
155
156 // If the function takes variable number of arguments, make a frame index for
157 // the start of the first vararg value... for expansion of llvm.va_start.
158 if (F.isVarArg())
159 VarArgsFrameIndex = MFI->CreateFixedObject(1, ArgOffset);
Chris Lattner14824582005-01-09 00:01:27 +0000160 ReturnAddrIndex = 0; // No return address slot generated yet.
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000161 return ArgValues;
162}
163
Chris Lattner5188ad72005-01-08 19:28:19 +0000164std::pair<SDOperand, SDOperand>
165X86TargetLowering::LowerCallTo(SDOperand Chain,
166 const Type *RetTy, SDOperand Callee,
167 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000168 // Count how many bytes are to be pushed on the stack.
169 unsigned NumBytes = 0;
170
171 if (Args.empty()) {
172 // Save zero bytes.
Chris Lattner5188ad72005-01-08 19:28:19 +0000173 Chain = DAG.getNode(ISD::ADJCALLSTACKDOWN, MVT::Other, Chain,
174 DAG.getConstant(0, getPointerTy()));
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000175 } else {
176 for (unsigned i = 0, e = Args.size(); i != e; ++i)
177 switch (getValueType(Args[i].second)) {
178 default: assert(0 && "Unknown value type!");
179 case MVT::i1:
180 case MVT::i8:
181 case MVT::i16:
182 case MVT::i32:
183 case MVT::f32:
184 NumBytes += 4;
185 break;
186 case MVT::i64:
187 case MVT::f64:
188 NumBytes += 8;
189 break;
190 }
191
Chris Lattner5188ad72005-01-08 19:28:19 +0000192 Chain = DAG.getNode(ISD::ADJCALLSTACKDOWN, MVT::Other, Chain,
193 DAG.getConstant(NumBytes, getPointerTy()));
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000194
195 // Arguments go on the stack in reverse order, as specified by the ABI.
196 unsigned ArgOffset = 0;
Chris Lattner7f2afac2005-01-14 22:37:41 +0000197 SDOperand StackPtr = DAG.getCopyFromReg(X86::ESP, MVT::i32,
198 DAG.getEntryNode());
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000199 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
200 unsigned ArgReg;
201 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
202 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
203
204 switch (getValueType(Args[i].second)) {
205 default: assert(0 && "Unexpected ValueType for argument!");
206 case MVT::i1:
207 case MVT::i8:
208 case MVT::i16:
209 // Promote the integer to 32 bits. If the input type is signed use a
210 // sign extend, otherwise use a zero extend.
211 if (Args[i].second->isSigned())
212 Args[i].first =DAG.getNode(ISD::SIGN_EXTEND, MVT::i32, Args[i].first);
213 else
214 Args[i].first =DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Args[i].first);
215
216 // FALL THROUGH
217 case MVT::i32:
218 case MVT::f32:
219 // FIXME: Note that all of these stores are independent of each other.
Chris Lattner5188ad72005-01-08 19:28:19 +0000220 Chain = DAG.getNode(ISD::STORE, MVT::Other, Chain,
221 Args[i].first, PtrOff);
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000222 ArgOffset += 4;
223 break;
224 case MVT::i64:
225 case MVT::f64:
226 // FIXME: Note that all of these stores are independent of each other.
Chris Lattner5188ad72005-01-08 19:28:19 +0000227 Chain = DAG.getNode(ISD::STORE, MVT::Other, Chain,
228 Args[i].first, PtrOff);
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000229 ArgOffset += 8;
230 break;
231 }
232 }
233 }
234
235 std::vector<MVT::ValueType> RetVals;
236 MVT::ValueType RetTyVT = getValueType(RetTy);
237 if (RetTyVT != MVT::isVoid)
238 RetVals.push_back(RetTyVT);
239 RetVals.push_back(MVT::Other);
240
Chris Lattner5188ad72005-01-08 19:28:19 +0000241 SDOperand TheCall = SDOperand(DAG.getCall(RetVals, Chain, Callee), 0);
Chris Lattnerb0802652005-01-08 20:51:36 +0000242 Chain = TheCall.getValue(RetTyVT != MVT::isVoid);
Chris Lattner5188ad72005-01-08 19:28:19 +0000243 Chain = DAG.getNode(ISD::ADJCALLSTACKUP, MVT::Other, Chain,
244 DAG.getConstant(NumBytes, getPointerTy()));
245 return std::make_pair(TheCall, Chain);
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000246}
247
Chris Lattner14824582005-01-09 00:01:27 +0000248std::pair<SDOperand, SDOperand>
249X86TargetLowering::LowerVAStart(SDOperand Chain, SelectionDAG &DAG) {
250 // vastart just returns the address of the VarArgsFrameIndex slot.
251 return std::make_pair(DAG.getFrameIndex(VarArgsFrameIndex, MVT::i32), Chain);
252}
253
254std::pair<SDOperand,SDOperand> X86TargetLowering::
255LowerVAArgNext(bool isVANext, SDOperand Chain, SDOperand VAList,
256 const Type *ArgTy, SelectionDAG &DAG) {
257 MVT::ValueType ArgVT = getValueType(ArgTy);
258 SDOperand Result;
259 if (!isVANext) {
260 Result = DAG.getLoad(ArgVT, DAG.getEntryNode(), VAList);
261 } else {
262 unsigned Amt;
263 if (ArgVT == MVT::i32)
264 Amt = 4;
265 else {
266 assert((ArgVT == MVT::i64 || ArgVT == MVT::f64) &&
267 "Other types should have been promoted for varargs!");
268 Amt = 8;
269 }
270 Result = DAG.getNode(ISD::ADD, VAList.getValueType(), VAList,
271 DAG.getConstant(Amt, VAList.getValueType()));
272 }
273 return std::make_pair(Result, Chain);
274}
275
276
277std::pair<SDOperand, SDOperand> X86TargetLowering::
278LowerFrameReturnAddress(bool isFrameAddress, SDOperand Chain, unsigned Depth,
279 SelectionDAG &DAG) {
280 SDOperand Result;
281 if (Depth) // Depths > 0 not supported yet!
282 Result = DAG.getConstant(0, getPointerTy());
283 else {
284 if (ReturnAddrIndex == 0) {
285 // Set up a frame object for the return address.
286 MachineFunction &MF = DAG.getMachineFunction();
287 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(4, -4);
288 }
289
290 SDOperand RetAddrFI = DAG.getFrameIndex(ReturnAddrIndex, MVT::i32);
291
292 if (!isFrameAddress)
293 // Just load the return address
294 Result = DAG.getLoad(MVT::i32, DAG.getEntryNode(), RetAddrFI);
295 else
296 Result = DAG.getNode(ISD::SUB, MVT::i32, RetAddrFI,
297 DAG.getConstant(4, MVT::i32));
298 }
299 return std::make_pair(Result, Chain);
300}
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000301
302
Chris Lattner98a8ba02005-01-18 01:06:26 +0000303namespace {
304 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
305 /// SDOperand's instead of register numbers for the leaves of the matched
306 /// tree.
307 struct X86ISelAddressMode {
308 enum {
309 RegBase,
310 FrameIndexBase,
311 } BaseType;
312
313 struct { // This is really a union, discriminated by BaseType!
314 SDOperand Reg;
315 int FrameIndex;
316 } Base;
317
318 unsigned Scale;
319 SDOperand IndexReg;
320 unsigned Disp;
321 GlobalValue *GV;
322
323 X86ISelAddressMode()
324 : BaseType(RegBase), Scale(1), IndexReg(), Disp(), GV(0) {
325 }
326 };
327}
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000328
329
330namespace {
331 Statistic<>
332 NumFPKill("x86-codegen", "Number of FP_REG_KILL instructions added");
333
334 //===--------------------------------------------------------------------===//
335 /// ISel - X86 specific code to select X86 machine instructions for
336 /// SelectionDAG operations.
337 ///
338 class ISel : public SelectionDAGISel {
339 /// ContainsFPCode - Every instruction we select that uses or defines a FP
340 /// register should set this to true.
341 bool ContainsFPCode;
342
343 /// X86Lowering - This object fully describes how to lower LLVM code to an
344 /// X86-specific SelectionDAG.
345 X86TargetLowering X86Lowering;
346
Chris Lattner11333092005-01-11 03:11:44 +0000347 /// RegPressureMap - This keeps an approximate count of the number of
348 /// registers required to evaluate each node in the graph.
349 std::map<SDNode*, unsigned> RegPressureMap;
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000350
351 /// ExprMap - As shared expressions are codegen'd, we keep track of which
352 /// vreg the value is produced in, so we only emit one copy of each compiled
353 /// tree.
354 std::map<SDOperand, unsigned> ExprMap;
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000355
356 public:
357 ISel(TargetMachine &TM) : SelectionDAGISel(X86Lowering), X86Lowering(TM) {
358 }
359
Chris Lattner11333092005-01-11 03:11:44 +0000360 unsigned getRegPressure(SDOperand O) {
361 return RegPressureMap[O.Val];
362 }
363 unsigned ComputeRegPressure(SDOperand O);
364
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000365 /// InstructionSelectBasicBlock - This callback is invoked by
366 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Chris Lattner7dbcb752005-01-12 04:21:28 +0000367 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000368
Chris Lattner4ff348b2005-01-17 06:26:58 +0000369 bool isFoldableLoad(SDOperand Op, SDOperand OtherOp);
Chris Lattnera5ade062005-01-11 21:19:59 +0000370 void EmitFoldedLoad(SDOperand Op, X86AddressMode &AM);
Chris Lattnere10269b2005-01-17 19:25:26 +0000371 bool TryToFoldLoadOpStore(SDNode *Node);
Chris Lattnera5ade062005-01-11 21:19:59 +0000372
Chris Lattner30ea1e92005-01-19 07:37:26 +0000373 bool EmitOrOpOp(SDOperand Op1, SDOperand Op2, unsigned DestReg);
Chris Lattnercb1aa8d2005-01-17 01:34:14 +0000374 void EmitCMP(SDOperand LHS, SDOperand RHS, bool isOnlyUse);
Chris Lattner6c07aee2005-01-11 04:06:27 +0000375 bool EmitBranchCC(MachineBasicBlock *Dest, SDOperand Chain, SDOperand Cond);
Chris Lattner24aad1b2005-01-10 22:10:13 +0000376 void EmitSelectCC(SDOperand Cond, MVT::ValueType SVT,
377 unsigned RTrue, unsigned RFalse, unsigned RDest);
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000378 unsigned SelectExpr(SDOperand N);
Chris Lattner98a8ba02005-01-18 01:06:26 +0000379
380 X86AddressMode SelectAddrExprs(const X86ISelAddressMode &IAM);
381 bool MatchAddress(SDOperand N, X86ISelAddressMode &AM);
382 void SelectAddress(SDOperand N, X86AddressMode &AM);
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000383 void Select(SDOperand N);
384 };
385}
386
Chris Lattner7dbcb752005-01-12 04:21:28 +0000387/// InstructionSelectBasicBlock - This callback is invoked by SelectionDAGISel
388/// when it has created a SelectionDAG for us to codegen.
389void ISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
390 // While we're doing this, keep track of whether we see any FP code for
391 // FP_REG_KILL insertion.
392 ContainsFPCode = false;
393
394 // Scan the PHI nodes that already are inserted into this basic block. If any
395 // of them is a PHI of a floating point value, we need to insert an
396 // FP_REG_KILL.
397 SSARegMap *RegMap = BB->getParent()->getSSARegMap();
398 for (MachineBasicBlock::iterator I = BB->begin(), E = BB->end();
399 I != E; ++I) {
400 assert(I->getOpcode() == X86::PHI &&
401 "Isn't just PHI nodes?");
402 if (RegMap->getRegClass(I->getOperand(0).getReg()) ==
403 X86::RFPRegisterClass) {
404 ContainsFPCode = true;
405 break;
406 }
407 }
408
409 // Compute the RegPressureMap, which is an approximation for the number of
410 // registers required to compute each node.
411 ComputeRegPressure(DAG.getRoot());
412
413 // Codegen the basic block.
414 Select(DAG.getRoot());
415
416 // Finally, look at all of the successors of this block. If any contain a PHI
417 // node of FP type, we need to insert an FP_REG_KILL in this block.
418 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
419 E = BB->succ_end(); SI != E && !ContainsFPCode; ++SI)
420 for (MachineBasicBlock::iterator I = (*SI)->begin(), E = (*SI)->end();
421 I != E && I->getOpcode() == X86::PHI; ++I) {
422 if (RegMap->getRegClass(I->getOperand(0).getReg()) ==
423 X86::RFPRegisterClass) {
424 ContainsFPCode = true;
425 break;
426 }
427 }
428
429 // Insert FP_REG_KILL instructions into basic blocks that need them. This
430 // only occurs due to the floating point stackifier not being aggressive
431 // enough to handle arbitrary global stackification.
432 //
433 // Currently we insert an FP_REG_KILL instruction into each block that uses or
434 // defines a floating point virtual register.
435 //
436 // When the global register allocators (like linear scan) finally update live
437 // variable analysis, we can keep floating point values in registers across
438 // basic blocks. This will be a huge win, but we are waiting on the global
439 // allocators before we can do this.
440 //
441 if (ContainsFPCode && BB->succ_size()) {
442 BuildMI(*BB, BB->getFirstTerminator(), X86::FP_REG_KILL, 0);
443 ++NumFPKill;
444 }
445
446 // Clear state used for selection.
447 ExprMap.clear();
Chris Lattner7dbcb752005-01-12 04:21:28 +0000448 RegPressureMap.clear();
449}
450
451
Chris Lattner11333092005-01-11 03:11:44 +0000452// ComputeRegPressure - Compute the RegPressureMap, which is an approximation
453// for the number of registers required to compute each node. This is basically
454// computing a generalized form of the Sethi-Ullman number for each node.
455unsigned ISel::ComputeRegPressure(SDOperand O) {
456 SDNode *N = O.Val;
457 unsigned &Result = RegPressureMap[N];
458 if (Result) return Result;
459
Chris Lattnera3aa2e22005-01-11 03:37:59 +0000460 // FIXME: Should operations like CALL (which clobber lots o regs) have a
461 // higher fixed cost??
462
Chris Lattnerc4b6a782005-01-11 22:29:12 +0000463 if (N->getNumOperands() == 0) {
464 Result = 1;
465 } else {
466 unsigned MaxRegUse = 0;
467 unsigned NumExtraMaxRegUsers = 0;
468 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
469 unsigned Regs;
470 if (N->getOperand(i).getOpcode() == ISD::Constant)
471 Regs = 0;
472 else
473 Regs = ComputeRegPressure(N->getOperand(i));
474 if (Regs > MaxRegUse) {
475 MaxRegUse = Regs;
476 NumExtraMaxRegUsers = 0;
477 } else if (Regs == MaxRegUse &&
478 N->getOperand(i).getValueType() != MVT::Other) {
479 ++NumExtraMaxRegUsers;
480 }
Chris Lattner11333092005-01-11 03:11:44 +0000481 }
Chris Lattner90d1be72005-01-17 22:56:09 +0000482
483 if (O.getOpcode() != ISD::TokenFactor)
484 Result = MaxRegUse+NumExtraMaxRegUsers;
485 else
Chris Lattner869e0432005-01-17 23:02:13 +0000486 Result = MaxRegUse == 1 ? 0 : MaxRegUse-1;
Chris Lattnerc4b6a782005-01-11 22:29:12 +0000487 }
Chris Lattnerafce4302005-01-12 02:19:06 +0000488
Chris Lattner837caa72005-01-11 23:21:30 +0000489 //std::cerr << " WEIGHT: " << Result << " "; N->dump(); std::cerr << "\n";
Chris Lattnerc4b6a782005-01-11 22:29:12 +0000490 return Result;
Chris Lattner11333092005-01-11 03:11:44 +0000491}
492
Chris Lattnerbf52d492005-01-20 16:50:16 +0000493/// NodeTransitivelyUsesValue - Return true if N or any of its uses uses Op.
494/// The DAG cannot have cycles in it, by definition, so the visited set is not
495/// needed to prevent infinite loops. The DAG CAN, however, have unbounded
496/// reuse, so it prevents exponential cases.
497///
498static bool NodeTransitivelyUsesValue(SDOperand N, SDOperand Op,
499 std::set<SDNode*> &Visited) {
500 if (N == Op) return true; // Found it.
501 SDNode *Node = N.Val;
502 if (Node->getNumOperands() == 0) return false; // Leaf?
503 if (!Visited.insert(Node).second) return false; // Already visited?
504
505 // Recurse for the first N-1 operands.
506 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i)
507 if (NodeTransitivelyUsesValue(Node->getOperand(i), Op, Visited))
508 return true;
509
510 // Tail recurse for the last operand.
511 return NodeTransitivelyUsesValue(Node->getOperand(0), Op, Visited);
512}
513
Chris Lattner98a8ba02005-01-18 01:06:26 +0000514X86AddressMode ISel::SelectAddrExprs(const X86ISelAddressMode &IAM) {
515 X86AddressMode Result;
516
517 // If we need to emit two register operands, emit the one with the highest
518 // register pressure first.
519 if (IAM.BaseType == X86ISelAddressMode::RegBase &&
520 IAM.Base.Reg.Val && IAM.IndexReg.Val) {
Chris Lattnerbf52d492005-01-20 16:50:16 +0000521 bool EmitBaseThenIndex;
Chris Lattner98a8ba02005-01-18 01:06:26 +0000522 if (getRegPressure(IAM.Base.Reg) > getRegPressure(IAM.IndexReg)) {
Chris Lattnerbf52d492005-01-20 16:50:16 +0000523 std::set<SDNode*> Visited;
524 EmitBaseThenIndex = true;
525 // If Base ends up pointing to Index, we must emit index first. This is
526 // because of the way we fold loads, we may end up doing bad things with
527 // the folded add.
528 if (NodeTransitivelyUsesValue(IAM.Base.Reg, IAM.IndexReg, Visited))
529 EmitBaseThenIndex = false;
530 } else {
531 std::set<SDNode*> Visited;
532 EmitBaseThenIndex = false;
533 // If Base ends up pointing to Index, we must emit index first. This is
534 // because of the way we fold loads, we may end up doing bad things with
535 // the folded add.
536 if (NodeTransitivelyUsesValue(IAM.IndexReg, IAM.Base.Reg, Visited))
537 EmitBaseThenIndex = true;
538 }
539
540 if (EmitBaseThenIndex) {
Chris Lattner98a8ba02005-01-18 01:06:26 +0000541 Result.Base.Reg = SelectExpr(IAM.Base.Reg);
542 Result.IndexReg = SelectExpr(IAM.IndexReg);
543 } else {
544 Result.IndexReg = SelectExpr(IAM.IndexReg);
545 Result.Base.Reg = SelectExpr(IAM.Base.Reg);
546 }
Chris Lattnerbf52d492005-01-20 16:50:16 +0000547
Chris Lattner98a8ba02005-01-18 01:06:26 +0000548 } else if (IAM.BaseType == X86ISelAddressMode::RegBase && IAM.Base.Reg.Val) {
549 Result.Base.Reg = SelectExpr(IAM.Base.Reg);
550 } else if (IAM.IndexReg.Val) {
551 Result.IndexReg = SelectExpr(IAM.IndexReg);
552 }
553
554 switch (IAM.BaseType) {
555 case X86ISelAddressMode::RegBase:
556 Result.BaseType = X86AddressMode::RegBase;
557 break;
558 case X86ISelAddressMode::FrameIndexBase:
559 Result.BaseType = X86AddressMode::FrameIndexBase;
560 Result.Base.FrameIndex = IAM.Base.FrameIndex;
561 break;
562 default:
563 assert(0 && "Unknown base type!");
564 break;
565 }
566 Result.Scale = IAM.Scale;
567 Result.Disp = IAM.Disp;
568 Result.GV = IAM.GV;
569 return Result;
570}
571
572/// SelectAddress - Pattern match the maximal addressing mode for this node and
573/// emit all of the leaf registers.
574void ISel::SelectAddress(SDOperand N, X86AddressMode &AM) {
575 X86ISelAddressMode IAM;
576 MatchAddress(N, IAM);
577 AM = SelectAddrExprs(IAM);
578}
579
580/// MatchAddress - Add the specified node to the specified addressing mode,
581/// returning true if it cannot be done. This just pattern matches for the
582/// addressing mode, it does not cause any code to be emitted. For that, use
583/// SelectAddress.
584bool ISel::MatchAddress(SDOperand N, X86ISelAddressMode &AM) {
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000585 switch (N.getOpcode()) {
586 default: break;
587 case ISD::FrameIndex:
Chris Lattner98a8ba02005-01-18 01:06:26 +0000588 if (AM.BaseType == X86ISelAddressMode::RegBase && AM.Base.Reg.Val == 0) {
589 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000590 AM.Base.FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
591 return false;
592 }
593 break;
594 case ISD::GlobalAddress:
595 if (AM.GV == 0) {
596 AM.GV = cast<GlobalAddressSDNode>(N)->getGlobal();
597 return false;
598 }
599 break;
600 case ISD::Constant:
601 AM.Disp += cast<ConstantSDNode>(N)->getValue();
602 return false;
603 case ISD::SHL:
Chris Lattner636e79a2005-01-13 05:53:16 +0000604 // We might have folded the load into this shift, so don't regen the value
605 // if so.
606 if (ExprMap.count(N)) break;
607
Chris Lattner98a8ba02005-01-18 01:06:26 +0000608 if (AM.IndexReg.Val == 0 && AM.Scale == 1)
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000609 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.Val->getOperand(1))) {
610 unsigned Val = CN->getValue();
611 if (Val == 1 || Val == 2 || Val == 3) {
612 AM.Scale = 1 << Val;
Chris Lattner51a26342005-01-11 06:36:20 +0000613 SDOperand ShVal = N.Val->getOperand(0);
614
615 // Okay, we know that we have a scale by now. However, if the scaled
616 // value is an add of something and a constant, we can fold the
617 // constant into the disp field here.
Chris Lattner811482a2005-01-18 04:18:32 +0000618 if (ShVal.Val->getOpcode() == ISD::ADD && ShVal.hasOneUse() &&
Chris Lattner51a26342005-01-11 06:36:20 +0000619 isa<ConstantSDNode>(ShVal.Val->getOperand(1))) {
Chris Lattner98a8ba02005-01-18 01:06:26 +0000620 AM.IndexReg = ShVal.Val->getOperand(0);
Chris Lattner51a26342005-01-11 06:36:20 +0000621 ConstantSDNode *AddVal =
622 cast<ConstantSDNode>(ShVal.Val->getOperand(1));
623 AM.Disp += AddVal->getValue() << Val;
Chris Lattner636e79a2005-01-13 05:53:16 +0000624 } else {
Chris Lattner98a8ba02005-01-18 01:06:26 +0000625 AM.IndexReg = ShVal;
Chris Lattner51a26342005-01-11 06:36:20 +0000626 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000627 return false;
628 }
629 }
630 break;
Chris Lattner947d5442005-01-11 19:37:02 +0000631 case ISD::MUL:
Chris Lattner636e79a2005-01-13 05:53:16 +0000632 // We might have folded the load into this mul, so don't regen the value if
633 // so.
634 if (ExprMap.count(N)) break;
635
Chris Lattner947d5442005-01-11 19:37:02 +0000636 // X*[3,5,9] -> X+X*[2,4,8]
Chris Lattner98a8ba02005-01-18 01:06:26 +0000637 if (AM.IndexReg.Val == 0 && AM.BaseType == X86ISelAddressMode::RegBase &&
638 AM.Base.Reg.Val == 0)
Chris Lattner947d5442005-01-11 19:37:02 +0000639 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.Val->getOperand(1)))
640 if (CN->getValue() == 3 || CN->getValue() == 5 || CN->getValue() == 9) {
641 AM.Scale = unsigned(CN->getValue())-1;
642
643 SDOperand MulVal = N.Val->getOperand(0);
Chris Lattner98a8ba02005-01-18 01:06:26 +0000644 SDOperand Reg;
Chris Lattner947d5442005-01-11 19:37:02 +0000645
646 // Okay, we know that we have a scale by now. However, if the scaled
647 // value is an add of something and a constant, we can fold the
648 // constant into the disp field here.
Chris Lattner811482a2005-01-18 04:18:32 +0000649 if (MulVal.Val->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
Chris Lattner947d5442005-01-11 19:37:02 +0000650 isa<ConstantSDNode>(MulVal.Val->getOperand(1))) {
Chris Lattner98a8ba02005-01-18 01:06:26 +0000651 Reg = MulVal.Val->getOperand(0);
Chris Lattner947d5442005-01-11 19:37:02 +0000652 ConstantSDNode *AddVal =
653 cast<ConstantSDNode>(MulVal.Val->getOperand(1));
654 AM.Disp += AddVal->getValue() * CN->getValue();
655 } else {
Chris Lattner98a8ba02005-01-18 01:06:26 +0000656 Reg = N.Val->getOperand(0);
Chris Lattner947d5442005-01-11 19:37:02 +0000657 }
658
659 AM.IndexReg = AM.Base.Reg = Reg;
660 return false;
661 }
662 break;
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000663
664 case ISD::ADD: {
Chris Lattner636e79a2005-01-13 05:53:16 +0000665 // We might have folded the load into this mul, so don't regen the value if
666 // so.
667 if (ExprMap.count(N)) break;
668
Chris Lattner98a8ba02005-01-18 01:06:26 +0000669 X86ISelAddressMode Backup = AM;
670 if (!MatchAddress(N.Val->getOperand(0), AM) &&
671 !MatchAddress(N.Val->getOperand(1), AM))
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000672 return false;
673 AM = Backup;
Chris Lattner98a8ba02005-01-18 01:06:26 +0000674 if (!MatchAddress(N.Val->getOperand(1), AM) &&
675 !MatchAddress(N.Val->getOperand(0), AM))
Chris Lattner9bbd9922005-01-12 18:08:53 +0000676 return false;
677 AM = Backup;
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000678 break;
679 }
680 }
681
Chris Lattnera95589b2005-01-11 04:40:19 +0000682 // Is the base register already occupied?
Chris Lattner98a8ba02005-01-18 01:06:26 +0000683 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base.Reg.Val) {
Chris Lattnera95589b2005-01-11 04:40:19 +0000684 // If so, check to see if the scale index register is set.
Chris Lattner98a8ba02005-01-18 01:06:26 +0000685 if (AM.IndexReg.Val == 0) {
686 AM.IndexReg = N;
Chris Lattnera95589b2005-01-11 04:40:19 +0000687 AM.Scale = 1;
688 return false;
689 }
690
691 // Otherwise, we cannot select it.
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000692 return true;
Chris Lattnera95589b2005-01-11 04:40:19 +0000693 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000694
695 // Default, generate it as a register.
Chris Lattner98a8ba02005-01-18 01:06:26 +0000696 AM.BaseType = X86ISelAddressMode::RegBase;
697 AM.Base.Reg = N;
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000698 return false;
699}
700
701/// Emit2SetCCsAndLogical - Emit the following sequence of instructions,
702/// assuming that the temporary registers are in the 8-bit register class.
703///
704/// Tmp1 = setcc1
705/// Tmp2 = setcc2
706/// DestReg = logicalop Tmp1, Tmp2
707///
708static void Emit2SetCCsAndLogical(MachineBasicBlock *BB, unsigned SetCC1,
709 unsigned SetCC2, unsigned LogicalOp,
710 unsigned DestReg) {
711 SSARegMap *RegMap = BB->getParent()->getSSARegMap();
712 unsigned Tmp1 = RegMap->createVirtualRegister(X86::R8RegisterClass);
713 unsigned Tmp2 = RegMap->createVirtualRegister(X86::R8RegisterClass);
714 BuildMI(BB, SetCC1, 0, Tmp1);
715 BuildMI(BB, SetCC2, 0, Tmp2);
716 BuildMI(BB, LogicalOp, 2, DestReg).addReg(Tmp1).addReg(Tmp2);
717}
718
719/// EmitSetCC - Emit the code to set the specified 8-bit register to 1 if the
720/// condition codes match the specified SetCCOpcode. Note that some conditions
721/// require multiple instructions to generate the correct value.
722static void EmitSetCC(MachineBasicBlock *BB, unsigned DestReg,
723 ISD::CondCode SetCCOpcode, bool isFP) {
724 unsigned Opc;
725 if (!isFP) {
726 switch (SetCCOpcode) {
727 default: assert(0 && "Illegal integer SetCC!");
728 case ISD::SETEQ: Opc = X86::SETEr; break;
729 case ISD::SETGT: Opc = X86::SETGr; break;
730 case ISD::SETGE: Opc = X86::SETGEr; break;
731 case ISD::SETLT: Opc = X86::SETLr; break;
732 case ISD::SETLE: Opc = X86::SETLEr; break;
733 case ISD::SETNE: Opc = X86::SETNEr; break;
734 case ISD::SETULT: Opc = X86::SETBr; break;
735 case ISD::SETUGT: Opc = X86::SETAr; break;
736 case ISD::SETULE: Opc = X86::SETBEr; break;
737 case ISD::SETUGE: Opc = X86::SETAEr; break;
738 }
739 } else {
740 // On a floating point condition, the flags are set as follows:
741 // ZF PF CF op
742 // 0 | 0 | 0 | X > Y
743 // 0 | 0 | 1 | X < Y
744 // 1 | 0 | 0 | X == Y
745 // 1 | 1 | 1 | unordered
746 //
747 switch (SetCCOpcode) {
748 default: assert(0 && "Invalid FP setcc!");
749 case ISD::SETUEQ:
750 case ISD::SETEQ:
751 Opc = X86::SETEr; // True if ZF = 1
752 break;
753 case ISD::SETOGT:
754 case ISD::SETGT:
755 Opc = X86::SETAr; // True if CF = 0 and ZF = 0
756 break;
757 case ISD::SETOGE:
758 case ISD::SETGE:
759 Opc = X86::SETAEr; // True if CF = 0
760 break;
761 case ISD::SETULT:
762 case ISD::SETLT:
763 Opc = X86::SETBr; // True if CF = 1
764 break;
765 case ISD::SETULE:
766 case ISD::SETLE:
767 Opc = X86::SETBEr; // True if CF = 1 or ZF = 1
768 break;
769 case ISD::SETONE:
770 case ISD::SETNE:
771 Opc = X86::SETNEr; // True if ZF = 0
772 break;
773 case ISD::SETUO:
774 Opc = X86::SETPr; // True if PF = 1
775 break;
776 case ISD::SETO:
777 Opc = X86::SETNPr; // True if PF = 0
778 break;
779 case ISD::SETOEQ: // !PF & ZF
780 Emit2SetCCsAndLogical(BB, X86::SETNPr, X86::SETEr, X86::AND8rr, DestReg);
781 return;
782 case ISD::SETOLT: // !PF & CF
783 Emit2SetCCsAndLogical(BB, X86::SETNPr, X86::SETBr, X86::AND8rr, DestReg);
784 return;
785 case ISD::SETOLE: // !PF & (CF || ZF)
786 Emit2SetCCsAndLogical(BB, X86::SETNPr, X86::SETBEr, X86::AND8rr, DestReg);
787 return;
788 case ISD::SETUGT: // PF | (!ZF & !CF)
789 Emit2SetCCsAndLogical(BB, X86::SETPr, X86::SETAr, X86::OR8rr, DestReg);
790 return;
791 case ISD::SETUGE: // PF | !CF
792 Emit2SetCCsAndLogical(BB, X86::SETPr, X86::SETAEr, X86::OR8rr, DestReg);
793 return;
794 case ISD::SETUNE: // PF | !ZF
795 Emit2SetCCsAndLogical(BB, X86::SETPr, X86::SETNEr, X86::OR8rr, DestReg);
796 return;
797 }
798 }
799 BuildMI(BB, Opc, 0, DestReg);
800}
801
802
803/// EmitBranchCC - Emit code into BB that arranges for control to transfer to
804/// the Dest block if the Cond condition is true. If we cannot fold this
805/// condition into the branch, return true.
806///
Chris Lattner6c07aee2005-01-11 04:06:27 +0000807bool ISel::EmitBranchCC(MachineBasicBlock *Dest, SDOperand Chain,
808 SDOperand Cond) {
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000809 // FIXME: Evaluate whether it would be good to emit code like (X < Y) | (A >
810 // B) using two conditional branches instead of one condbr, two setcc's, and
811 // an or.
812 if ((Cond.getOpcode() == ISD::OR ||
813 Cond.getOpcode() == ISD::AND) && Cond.Val->hasOneUse()) {
814 // And and or set the flags for us, so there is no need to emit a TST of the
815 // result. It is only safe to do this if there is only a single use of the
816 // AND/OR though, otherwise we don't know it will be emitted here.
Chris Lattner6c07aee2005-01-11 04:06:27 +0000817 Select(Chain);
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000818 SelectExpr(Cond);
819 BuildMI(BB, X86::JNE, 1).addMBB(Dest);
820 return false;
821 }
822
823 // Codegen br not C -> JE.
824 if (Cond.getOpcode() == ISD::XOR)
825 if (ConstantSDNode *NC = dyn_cast<ConstantSDNode>(Cond.Val->getOperand(1)))
826 if (NC->isAllOnesValue()) {
Chris Lattner6c07aee2005-01-11 04:06:27 +0000827 unsigned CondR;
828 if (getRegPressure(Chain) > getRegPressure(Cond)) {
829 Select(Chain);
830 CondR = SelectExpr(Cond.Val->getOperand(0));
831 } else {
832 CondR = SelectExpr(Cond.Val->getOperand(0));
833 Select(Chain);
834 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000835 BuildMI(BB, X86::TEST8rr, 2).addReg(CondR).addReg(CondR);
836 BuildMI(BB, X86::JE, 1).addMBB(Dest);
837 return false;
838 }
839
840 SetCCSDNode *SetCC = dyn_cast<SetCCSDNode>(Cond);
841 if (SetCC == 0)
842 return true; // Can only handle simple setcc's so far.
843
844 unsigned Opc;
845
846 // Handle integer conditions first.
847 if (MVT::isInteger(SetCC->getOperand(0).getValueType())) {
848 switch (SetCC->getCondition()) {
849 default: assert(0 && "Illegal integer SetCC!");
850 case ISD::SETEQ: Opc = X86::JE; break;
851 case ISD::SETGT: Opc = X86::JG; break;
852 case ISD::SETGE: Opc = X86::JGE; break;
853 case ISD::SETLT: Opc = X86::JL; break;
854 case ISD::SETLE: Opc = X86::JLE; break;
855 case ISD::SETNE: Opc = X86::JNE; break;
856 case ISD::SETULT: Opc = X86::JB; break;
857 case ISD::SETUGT: Opc = X86::JA; break;
858 case ISD::SETULE: Opc = X86::JBE; break;
859 case ISD::SETUGE: Opc = X86::JAE; break;
860 }
Chris Lattner6c07aee2005-01-11 04:06:27 +0000861 Select(Chain);
Chris Lattnercb1aa8d2005-01-17 01:34:14 +0000862 EmitCMP(SetCC->getOperand(0), SetCC->getOperand(1), SetCC->hasOneUse());
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000863 BuildMI(BB, Opc, 1).addMBB(Dest);
864 return false;
865 }
866
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000867 unsigned Opc2 = 0; // Second branch if needed.
868
869 // On a floating point condition, the flags are set as follows:
870 // ZF PF CF op
871 // 0 | 0 | 0 | X > Y
872 // 0 | 0 | 1 | X < Y
873 // 1 | 0 | 0 | X == Y
874 // 1 | 1 | 1 | unordered
875 //
876 switch (SetCC->getCondition()) {
877 default: assert(0 && "Invalid FP setcc!");
878 case ISD::SETUEQ:
879 case ISD::SETEQ: Opc = X86::JE; break; // True if ZF = 1
880 case ISD::SETOGT:
881 case ISD::SETGT: Opc = X86::JA; break; // True if CF = 0 and ZF = 0
882 case ISD::SETOGE:
883 case ISD::SETGE: Opc = X86::JAE; break; // True if CF = 0
884 case ISD::SETULT:
885 case ISD::SETLT: Opc = X86::JB; break; // True if CF = 1
886 case ISD::SETULE:
887 case ISD::SETLE: Opc = X86::JBE; break; // True if CF = 1 or ZF = 1
888 case ISD::SETONE:
889 case ISD::SETNE: Opc = X86::JNE; break; // True if ZF = 0
890 case ISD::SETUO: Opc = X86::JP; break; // True if PF = 1
891 case ISD::SETO: Opc = X86::JNP; break; // True if PF = 0
892 case ISD::SETUGT: // PF = 1 | (ZF = 0 & CF = 0)
893 Opc = X86::JA; // ZF = 0 & CF = 0
894 Opc2 = X86::JP; // PF = 1
895 break;
896 case ISD::SETUGE: // PF = 1 | CF = 0
897 Opc = X86::JAE; // CF = 0
898 Opc2 = X86::JP; // PF = 1
899 break;
900 case ISD::SETUNE: // PF = 1 | ZF = 0
901 Opc = X86::JNE; // ZF = 0
902 Opc2 = X86::JP; // PF = 1
903 break;
904 case ISD::SETOEQ: // PF = 0 & ZF = 1
905 //X86::JNP, X86::JE
906 //X86::AND8rr
907 return true; // FIXME: Emit more efficient code for this branch.
908 case ISD::SETOLT: // PF = 0 & CF = 1
909 //X86::JNP, X86::JB
910 //X86::AND8rr
911 return true; // FIXME: Emit more efficient code for this branch.
912 case ISD::SETOLE: // PF = 0 & (CF = 1 || ZF = 1)
913 //X86::JNP, X86::JBE
914 //X86::AND8rr
915 return true; // FIXME: Emit more efficient code for this branch.
916 }
917
Chris Lattner6c07aee2005-01-11 04:06:27 +0000918 Select(Chain);
Chris Lattnercb1aa8d2005-01-17 01:34:14 +0000919 EmitCMP(SetCC->getOperand(0), SetCC->getOperand(1), SetCC->hasOneUse());
Chris Lattner8acb1ba2005-01-07 07:49:41 +0000920 BuildMI(BB, Opc, 1).addMBB(Dest);
921 if (Opc2)
922 BuildMI(BB, Opc2, 1).addMBB(Dest);
923 return false;
924}
925
Chris Lattner24aad1b2005-01-10 22:10:13 +0000926/// EmitSelectCC - Emit code into BB that performs a select operation between
927/// the two registers RTrue and RFalse, generating a result into RDest. Return
928/// true if the fold cannot be performed.
929///
930void ISel::EmitSelectCC(SDOperand Cond, MVT::ValueType SVT,
931 unsigned RTrue, unsigned RFalse, unsigned RDest) {
932 enum Condition {
933 EQ, NE, LT, LE, GT, GE, B, BE, A, AE, P, NP,
934 NOT_SET
935 } CondCode = NOT_SET;
936
937 static const unsigned CMOVTAB16[] = {
938 X86::CMOVE16rr, X86::CMOVNE16rr, X86::CMOVL16rr, X86::CMOVLE16rr,
939 X86::CMOVG16rr, X86::CMOVGE16rr, X86::CMOVB16rr, X86::CMOVBE16rr,
940 X86::CMOVA16rr, X86::CMOVAE16rr, X86::CMOVP16rr, X86::CMOVNP16rr,
941 };
942 static const unsigned CMOVTAB32[] = {
943 X86::CMOVE32rr, X86::CMOVNE32rr, X86::CMOVL32rr, X86::CMOVLE32rr,
944 X86::CMOVG32rr, X86::CMOVGE32rr, X86::CMOVB32rr, X86::CMOVBE32rr,
945 X86::CMOVA32rr, X86::CMOVAE32rr, X86::CMOVP32rr, X86::CMOVNP32rr,
946 };
947 static const unsigned CMOVTABFP[] = {
948 X86::FCMOVE , X86::FCMOVNE, /*missing*/0, /*missing*/0,
949 /*missing*/0, /*missing*/0, X86::FCMOVB , X86::FCMOVBE,
950 X86::FCMOVA , X86::FCMOVAE, X86::FCMOVP , X86::FCMOVNP
951 };
952
953 if (SetCCSDNode *SetCC = dyn_cast<SetCCSDNode>(Cond)) {
954 if (MVT::isInteger(SetCC->getOperand(0).getValueType())) {
955 switch (SetCC->getCondition()) {
956 default: assert(0 && "Unknown integer comparison!");
957 case ISD::SETEQ: CondCode = EQ; break;
958 case ISD::SETGT: CondCode = GT; break;
959 case ISD::SETGE: CondCode = GE; break;
960 case ISD::SETLT: CondCode = LT; break;
961 case ISD::SETLE: CondCode = LE; break;
962 case ISD::SETNE: CondCode = NE; break;
963 case ISD::SETULT: CondCode = B; break;
964 case ISD::SETUGT: CondCode = A; break;
965 case ISD::SETULE: CondCode = BE; break;
966 case ISD::SETUGE: CondCode = AE; break;
967 }
968 } else {
969 // On a floating point condition, the flags are set as follows:
970 // ZF PF CF op
971 // 0 | 0 | 0 | X > Y
972 // 0 | 0 | 1 | X < Y
973 // 1 | 0 | 0 | X == Y
974 // 1 | 1 | 1 | unordered
975 //
976 switch (SetCC->getCondition()) {
977 default: assert(0 && "Unknown FP comparison!");
978 case ISD::SETUEQ:
979 case ISD::SETEQ: CondCode = EQ; break; // True if ZF = 1
980 case ISD::SETOGT:
981 case ISD::SETGT: CondCode = A; break; // True if CF = 0 and ZF = 0
982 case ISD::SETOGE:
983 case ISD::SETGE: CondCode = AE; break; // True if CF = 0
984 case ISD::SETULT:
985 case ISD::SETLT: CondCode = B; break; // True if CF = 1
986 case ISD::SETULE:
987 case ISD::SETLE: CondCode = BE; break; // True if CF = 1 or ZF = 1
988 case ISD::SETONE:
989 case ISD::SETNE: CondCode = NE; break; // True if ZF = 0
990 case ISD::SETUO: CondCode = P; break; // True if PF = 1
991 case ISD::SETO: CondCode = NP; break; // True if PF = 0
992 case ISD::SETUGT: // PF = 1 | (ZF = 0 & CF = 0)
993 case ISD::SETUGE: // PF = 1 | CF = 0
994 case ISD::SETUNE: // PF = 1 | ZF = 0
995 case ISD::SETOEQ: // PF = 0 & ZF = 1
996 case ISD::SETOLT: // PF = 0 & CF = 1
997 case ISD::SETOLE: // PF = 0 & (CF = 1 || ZF = 1)
998 // We cannot emit this comparison as a single cmov.
999 break;
1000 }
1001 }
1002 }
1003
1004 unsigned Opc = 0;
1005 if (CondCode != NOT_SET) {
1006 switch (SVT) {
1007 default: assert(0 && "Cannot select this type!");
1008 case MVT::i16: Opc = CMOVTAB16[CondCode]; break;
1009 case MVT::i32: Opc = CMOVTAB32[CondCode]; break;
Chris Lattneref7ba072005-01-11 03:50:45 +00001010 case MVT::f64: Opc = CMOVTABFP[CondCode]; break;
Chris Lattner24aad1b2005-01-10 22:10:13 +00001011 }
1012 }
1013
1014 // Finally, if we weren't able to fold this, just emit the condition and test
1015 // it.
1016 if (CondCode == NOT_SET || Opc == 0) {
1017 // Get the condition into the zero flag.
1018 unsigned CondReg = SelectExpr(Cond);
1019 BuildMI(BB, X86::TEST8rr, 2).addReg(CondReg).addReg(CondReg);
1020
1021 switch (SVT) {
1022 default: assert(0 && "Cannot select this type!");
1023 case MVT::i16: Opc = X86::CMOVE16rr; break;
1024 case MVT::i32: Opc = X86::CMOVE32rr; break;
Chris Lattneref7ba072005-01-11 03:50:45 +00001025 case MVT::f64: Opc = X86::FCMOVE; break;
Chris Lattner24aad1b2005-01-10 22:10:13 +00001026 }
1027 } else {
1028 // FIXME: CMP R, 0 -> TEST R, R
Chris Lattnercb1aa8d2005-01-17 01:34:14 +00001029 EmitCMP(Cond.getOperand(0), Cond.getOperand(1), Cond.Val->hasOneUse());
Chris Lattnera3aa2e22005-01-11 03:37:59 +00001030 std::swap(RTrue, RFalse);
Chris Lattner24aad1b2005-01-10 22:10:13 +00001031 }
1032 BuildMI(BB, Opc, 2, RDest).addReg(RTrue).addReg(RFalse);
1033}
1034
Chris Lattnercb1aa8d2005-01-17 01:34:14 +00001035void ISel::EmitCMP(SDOperand LHS, SDOperand RHS, bool HasOneUse) {
Chris Lattner11333092005-01-11 03:11:44 +00001036 unsigned Opc;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001037 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(RHS)) {
1038 Opc = 0;
Chris Lattner4ff348b2005-01-17 06:26:58 +00001039 if (HasOneUse && isFoldableLoad(LHS, RHS)) {
Chris Lattneref6806c2005-01-12 02:02:48 +00001040 switch (RHS.getValueType()) {
1041 default: break;
1042 case MVT::i1:
1043 case MVT::i8: Opc = X86::CMP8mi; break;
1044 case MVT::i16: Opc = X86::CMP16mi; break;
1045 case MVT::i32: Opc = X86::CMP32mi; break;
1046 }
1047 if (Opc) {
1048 X86AddressMode AM;
1049 EmitFoldedLoad(LHS, AM);
1050 addFullAddress(BuildMI(BB, Opc, 5), AM).addImm(CN->getValue());
1051 return;
1052 }
1053 }
1054
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001055 switch (RHS.getValueType()) {
1056 default: break;
1057 case MVT::i1:
1058 case MVT::i8: Opc = X86::CMP8ri; break;
1059 case MVT::i16: Opc = X86::CMP16ri; break;
1060 case MVT::i32: Opc = X86::CMP32ri; break;
1061 }
1062 if (Opc) {
Chris Lattner11333092005-01-11 03:11:44 +00001063 unsigned Tmp1 = SelectExpr(LHS);
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001064 BuildMI(BB, Opc, 2).addReg(Tmp1).addImm(CN->getValue());
1065 return;
1066 }
Chris Lattner7f2afac2005-01-14 22:37:41 +00001067 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(RHS)) {
1068 if (CN->isExactlyValue(+0.0) ||
1069 CN->isExactlyValue(-0.0)) {
1070 unsigned Reg = SelectExpr(LHS);
1071 BuildMI(BB, X86::FTST, 1).addReg(Reg);
1072 BuildMI(BB, X86::FNSTSW8r, 0);
1073 BuildMI(BB, X86::SAHF, 1);
1074 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001075 }
1076
Chris Lattneref6806c2005-01-12 02:02:48 +00001077 Opc = 0;
Chris Lattner4ff348b2005-01-17 06:26:58 +00001078 if (HasOneUse && isFoldableLoad(LHS, RHS)) {
Chris Lattneref6806c2005-01-12 02:02:48 +00001079 switch (RHS.getValueType()) {
1080 default: break;
1081 case MVT::i1:
1082 case MVT::i8: Opc = X86::CMP8mr; break;
1083 case MVT::i16: Opc = X86::CMP16mr; break;
1084 case MVT::i32: Opc = X86::CMP32mr; break;
1085 }
1086 if (Opc) {
1087 X86AddressMode AM;
Chris Lattner636e79a2005-01-13 05:53:16 +00001088 EmitFoldedLoad(LHS, AM);
1089 unsigned Reg = SelectExpr(RHS);
Chris Lattneref6806c2005-01-12 02:02:48 +00001090 addFullAddress(BuildMI(BB, Opc, 5), AM).addReg(Reg);
1091 return;
1092 }
1093 }
1094
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001095 switch (LHS.getValueType()) {
1096 default: assert(0 && "Cannot compare this value!");
1097 case MVT::i1:
1098 case MVT::i8: Opc = X86::CMP8rr; break;
1099 case MVT::i16: Opc = X86::CMP16rr; break;
1100 case MVT::i32: Opc = X86::CMP32rr; break;
Chris Lattneref7ba072005-01-11 03:50:45 +00001101 case MVT::f64: Opc = X86::FUCOMIr; break;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001102 }
Chris Lattner11333092005-01-11 03:11:44 +00001103 unsigned Tmp1, Tmp2;
1104 if (getRegPressure(LHS) > getRegPressure(RHS)) {
1105 Tmp1 = SelectExpr(LHS);
1106 Tmp2 = SelectExpr(RHS);
1107 } else {
1108 Tmp2 = SelectExpr(RHS);
1109 Tmp1 = SelectExpr(LHS);
1110 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001111 BuildMI(BB, Opc, 2).addReg(Tmp1).addReg(Tmp2);
1112}
1113
Chris Lattnera5ade062005-01-11 21:19:59 +00001114/// isFoldableLoad - Return true if this is a load instruction that can safely
1115/// be folded into an operation that uses it.
Chris Lattner4ff348b2005-01-17 06:26:58 +00001116bool ISel::isFoldableLoad(SDOperand Op, SDOperand OtherOp) {
Chris Lattnera5ade062005-01-11 21:19:59 +00001117 if (Op.getOpcode() != ISD::LOAD ||
1118 // FIXME: currently can't fold constant pool indexes.
1119 isa<ConstantPoolSDNode>(Op.getOperand(1)))
1120 return false;
1121
1122 // If this load has already been emitted, we clearly can't fold it.
Chris Lattner636e79a2005-01-13 05:53:16 +00001123 assert(Op.ResNo == 0 && "Not a use of the value of the load?");
1124 if (ExprMap.count(Op.getValue(1))) return false;
1125 assert(!ExprMap.count(Op.getValue(0)) && "Value in map but not token chain?");
Chris Lattner4a108662005-01-18 03:51:59 +00001126 assert(!ExprMap.count(Op.getValue(1))&&"Token lowered but value not in map?");
Chris Lattnera5ade062005-01-11 21:19:59 +00001127
Chris Lattner4ff348b2005-01-17 06:26:58 +00001128 // If there is not just one use of its value, we cannot fold.
1129 if (!Op.Val->hasNUsesOfValue(1, 0)) return false;
1130
1131 // Finally, we cannot fold the load into the operation if this would induce a
1132 // cycle into the resultant dag. To check for this, see if OtherOp (the other
1133 // operand of the operation we are folding the load into) can possible use the
1134 // chain node defined by the load.
1135 if (OtherOp.Val && !Op.Val->hasNUsesOfValue(0, 1)) { // Has uses of chain?
1136 std::set<SDNode*> Visited;
1137 if (NodeTransitivelyUsesValue(OtherOp, Op.getValue(1), Visited))
1138 return false;
1139 }
1140 return true;
Chris Lattnera5ade062005-01-11 21:19:59 +00001141}
1142
Chris Lattner4ff348b2005-01-17 06:26:58 +00001143
Chris Lattnera5ade062005-01-11 21:19:59 +00001144/// EmitFoldedLoad - Ensure that the arguments of the load are code generated,
1145/// and compute the address being loaded into AM.
1146void ISel::EmitFoldedLoad(SDOperand Op, X86AddressMode &AM) {
1147 SDOperand Chain = Op.getOperand(0);
1148 SDOperand Address = Op.getOperand(1);
Chris Lattner98a8ba02005-01-18 01:06:26 +00001149
Chris Lattnera5ade062005-01-11 21:19:59 +00001150 if (getRegPressure(Chain) > getRegPressure(Address)) {
1151 Select(Chain);
1152 SelectAddress(Address, AM);
1153 } else {
1154 SelectAddress(Address, AM);
1155 Select(Chain);
1156 }
1157
1158 // The chain for this load is now lowered.
Chris Lattner636e79a2005-01-13 05:53:16 +00001159 assert(ExprMap.count(SDOperand(Op.Val, 1)) == 0 &&
1160 "Load emitted more than once?");
Chris Lattner4a108662005-01-18 03:51:59 +00001161 if (!ExprMap.insert(std::make_pair(Op.getValue(1), 1)).second)
Chris Lattner636e79a2005-01-13 05:53:16 +00001162 assert(0 && "Load emitted more than once!");
Chris Lattnera5ade062005-01-11 21:19:59 +00001163}
1164
Chris Lattner30ea1e92005-01-19 07:37:26 +00001165// EmitOrOpOp - Pattern match the expression (Op1|Op2), where we know that op1
1166// and op2 are i8/i16/i32 values with one use each (the or). If we can form a
1167// SHLD or SHRD, emit the instruction (generating the value into DestReg) and
1168// return true.
1169bool ISel::EmitOrOpOp(SDOperand Op1, SDOperand Op2, unsigned DestReg) {
Chris Lattner85716372005-01-19 06:18:43 +00001170 if (Op1.getOpcode() == ISD::SHL && Op2.getOpcode() == ISD::SRL) {
1171 // good!
1172 } else if (Op2.getOpcode() == ISD::SHL && Op1.getOpcode() == ISD::SRL) {
1173 std::swap(Op1, Op2); // Op1 is the SHL now.
1174 } else {
1175 return false; // No match
1176 }
1177
1178 SDOperand ShlVal = Op1.getOperand(0);
1179 SDOperand ShlAmt = Op1.getOperand(1);
1180 SDOperand ShrVal = Op2.getOperand(0);
1181 SDOperand ShrAmt = Op2.getOperand(1);
1182
Chris Lattner30ea1e92005-01-19 07:37:26 +00001183 unsigned RegSize = MVT::getSizeInBits(Op1.getValueType());
1184
Chris Lattner85716372005-01-19 06:18:43 +00001185 // Find out if ShrAmt = 32-ShlAmt or ShlAmt = 32-ShrAmt.
1186 if (ShlAmt.getOpcode() == ISD::SUB && ShlAmt.getOperand(1) == ShrAmt)
1187 if (ConstantSDNode *SubCST = dyn_cast<ConstantSDNode>(ShlAmt.getOperand(0)))
Chris Lattner4053b1e2005-01-19 08:07:05 +00001188 if (SubCST->getValue() == RegSize) {
1189 // (A >> ShrAmt) | (A << (32-ShrAmt)) ==> ROR A, ShrAmt
Chris Lattner85716372005-01-19 06:18:43 +00001190 // (A >> ShrAmt) | (B << (32-ShrAmt)) ==> SHRD A, B, ShrAmt
Chris Lattner4053b1e2005-01-19 08:07:05 +00001191 if (ShrVal == ShlVal) {
1192 unsigned Reg, ShAmt;
1193 if (getRegPressure(ShrVal) > getRegPressure(ShrAmt)) {
1194 Reg = SelectExpr(ShrVal);
1195 ShAmt = SelectExpr(ShrAmt);
1196 } else {
1197 ShAmt = SelectExpr(ShrAmt);
1198 Reg = SelectExpr(ShrVal);
1199 }
1200 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(ShAmt);
1201 unsigned Opc = RegSize == 8 ? X86::ROR8rCL :
1202 (RegSize == 16 ? X86::ROR16rCL : X86::ROR32rCL);
1203 BuildMI(BB, Opc, 1, DestReg).addReg(Reg);
1204 return true;
1205 } else if (RegSize != 8) {
Chris Lattner85716372005-01-19 06:18:43 +00001206 unsigned AReg, BReg;
1207 if (getRegPressure(ShlVal) > getRegPressure(ShrVal)) {
Chris Lattner85716372005-01-19 06:18:43 +00001208 BReg = SelectExpr(ShlVal);
Chris Lattnerc3c021b2005-01-19 17:24:34 +00001209 AReg = SelectExpr(ShrVal);
Chris Lattner85716372005-01-19 06:18:43 +00001210 } else {
Chris Lattner85716372005-01-19 06:18:43 +00001211 AReg = SelectExpr(ShrVal);
Chris Lattnerc3c021b2005-01-19 17:24:34 +00001212 BReg = SelectExpr(ShlVal);
Chris Lattner85716372005-01-19 06:18:43 +00001213 }
Chris Lattner4053b1e2005-01-19 08:07:05 +00001214 unsigned ShAmt = SelectExpr(ShrAmt);
1215 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(ShAmt);
1216 unsigned Opc = RegSize == 16 ? X86::SHRD16rrCL : X86::SHRD32rrCL;
1217 BuildMI(BB, Opc, 2, DestReg).addReg(AReg).addReg(BReg);
Chris Lattner85716372005-01-19 06:18:43 +00001218 return true;
1219 }
1220 }
1221
Chris Lattner4053b1e2005-01-19 08:07:05 +00001222 if (ShrAmt.getOpcode() == ISD::SUB && ShrAmt.getOperand(1) == ShlAmt)
1223 if (ConstantSDNode *SubCST = dyn_cast<ConstantSDNode>(ShrAmt.getOperand(0)))
1224 if (SubCST->getValue() == RegSize) {
1225 // (A << ShlAmt) | (A >> (32-ShlAmt)) ==> ROL A, ShrAmt
1226 // (A << ShlAmt) | (B >> (32-ShlAmt)) ==> SHLD A, B, ShrAmt
1227 if (ShrVal == ShlVal) {
1228 unsigned Reg, ShAmt;
1229 if (getRegPressure(ShrVal) > getRegPressure(ShlAmt)) {
1230 Reg = SelectExpr(ShrVal);
1231 ShAmt = SelectExpr(ShlAmt);
1232 } else {
1233 ShAmt = SelectExpr(ShlAmt);
1234 Reg = SelectExpr(ShrVal);
1235 }
1236 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(ShAmt);
1237 unsigned Opc = RegSize == 8 ? X86::ROL8rCL :
1238 (RegSize == 16 ? X86::ROL16rCL : X86::ROL32rCL);
1239 BuildMI(BB, Opc, 1, DestReg).addReg(Reg);
1240 return true;
1241 } else if (RegSize != 8) {
1242 unsigned AReg, BReg;
1243 if (getRegPressure(ShlVal) > getRegPressure(ShrVal)) {
Chris Lattnerc3c021b2005-01-19 17:24:34 +00001244 AReg = SelectExpr(ShlVal);
1245 BReg = SelectExpr(ShrVal);
Chris Lattner4053b1e2005-01-19 08:07:05 +00001246 } else {
Chris Lattnerc3c021b2005-01-19 17:24:34 +00001247 BReg = SelectExpr(ShrVal);
1248 AReg = SelectExpr(ShlVal);
Chris Lattner4053b1e2005-01-19 08:07:05 +00001249 }
1250 unsigned ShAmt = SelectExpr(ShlAmt);
1251 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(ShAmt);
1252 unsigned Opc = RegSize == 16 ? X86::SHLD16rrCL : X86::SHLD32rrCL;
1253 BuildMI(BB, Opc, 2, DestReg).addReg(AReg).addReg(BReg);
1254 return true;
1255 }
1256 }
Chris Lattner85716372005-01-19 06:18:43 +00001257
Chris Lattner4053b1e2005-01-19 08:07:05 +00001258 if (ConstantSDNode *ShrCst = dyn_cast<ConstantSDNode>(ShrAmt))
1259 if (ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(ShlAmt))
1260 if (ShrCst->getValue() < RegSize && ShlCst->getValue() < RegSize)
1261 if (ShrCst->getValue() == RegSize-ShlCst->getValue()) {
1262 // (A >> 5) | (A << 27) --> ROR A, 5
1263 // (A >> 5) | (B << 27) --> SHRD A, B, 5
1264 if (ShrVal == ShlVal) {
1265 unsigned Reg = SelectExpr(ShrVal);
1266 unsigned Opc = RegSize == 8 ? X86::ROR8ri :
1267 (RegSize == 16 ? X86::ROR16ri : X86::ROR32ri);
1268 BuildMI(BB, Opc, 2, DestReg).addReg(Reg).addImm(ShrCst->getValue());
1269 return true;
1270 } else if (RegSize != 8) {
1271 unsigned AReg, BReg;
1272 if (getRegPressure(ShlVal) > getRegPressure(ShrVal)) {
Chris Lattner4053b1e2005-01-19 08:07:05 +00001273 BReg = SelectExpr(ShlVal);
Chris Lattnerc3c021b2005-01-19 17:24:34 +00001274 AReg = SelectExpr(ShrVal);
Chris Lattner4053b1e2005-01-19 08:07:05 +00001275 } else {
Chris Lattner4053b1e2005-01-19 08:07:05 +00001276 AReg = SelectExpr(ShrVal);
Chris Lattnerc3c021b2005-01-19 17:24:34 +00001277 BReg = SelectExpr(ShlVal);
Chris Lattner4053b1e2005-01-19 08:07:05 +00001278 }
1279 unsigned Opc = RegSize == 16 ? X86::SHRD16rri8 : X86::SHRD32rri8;
1280 BuildMI(BB, Opc, 3, DestReg).addReg(AReg).addReg(BReg)
1281 .addImm(ShrCst->getValue());
1282 return true;
1283 }
1284 }
1285
Chris Lattner85716372005-01-19 06:18:43 +00001286 return false;
1287}
1288
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001289unsigned ISel::SelectExpr(SDOperand N) {
1290 unsigned Result;
1291 unsigned Tmp1, Tmp2, Tmp3;
1292 unsigned Opc = 0;
Chris Lattner5188ad72005-01-08 19:28:19 +00001293 SDNode *Node = N.Val;
Chris Lattnera5ade062005-01-11 21:19:59 +00001294 SDOperand Op0, Op1;
Chris Lattner5188ad72005-01-08 19:28:19 +00001295
Chris Lattner7f2afac2005-01-14 22:37:41 +00001296 if (Node->getOpcode() == ISD::CopyFromReg) {
1297 // FIXME: Handle copy from physregs!
1298
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001299 // Just use the specified register as our input.
Chris Lattner18c2f132005-01-13 20:50:02 +00001300 return dyn_cast<RegSDNode>(Node)->getReg();
Chris Lattner7f2afac2005-01-14 22:37:41 +00001301 }
Chris Lattnera5ade062005-01-11 21:19:59 +00001302
1303 unsigned &Reg = ExprMap[N];
1304 if (Reg) return Reg;
1305
1306 if (N.getOpcode() != ISD::CALL)
1307 Reg = Result = (N.getValueType() != MVT::Other) ?
1308 MakeReg(N.getValueType()) : 1;
1309 else {
1310 // If this is a call instruction, make sure to prepare ALL of the result
1311 // values as well as the chain.
1312 if (Node->getNumValues() == 1)
1313 Reg = Result = 1; // Void call, just a chain.
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001314 else {
Chris Lattnera5ade062005-01-11 21:19:59 +00001315 Result = MakeReg(Node->getValueType(0));
1316 ExprMap[N.getValue(0)] = Result;
1317 for (unsigned i = 1, e = N.Val->getNumValues()-1; i != e; ++i)
1318 ExprMap[N.getValue(i)] = MakeReg(Node->getValueType(i));
1319 ExprMap[SDOperand(Node, Node->getNumValues()-1)] = 1;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001320 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001321 }
Chris Lattnera5ade062005-01-11 21:19:59 +00001322
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001323 switch (N.getOpcode()) {
1324 default:
Chris Lattner5188ad72005-01-08 19:28:19 +00001325 Node->dump();
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001326 assert(0 && "Node not handled!\n");
1327 case ISD::FrameIndex:
1328 Tmp1 = cast<FrameIndexSDNode>(N)->getIndex();
1329 addFrameReference(BuildMI(BB, X86::LEA32r, 4, Result), (int)Tmp1);
1330 return Result;
1331 case ISD::ConstantPool:
1332 Tmp1 = cast<ConstantPoolSDNode>(N)->getIndex();
1333 addConstantPoolReference(BuildMI(BB, X86::LEA32r, 4, Result), Tmp1);
1334 return Result;
1335 case ISD::ConstantFP:
1336 ContainsFPCode = true;
1337 Tmp1 = Result; // Intermediate Register
1338 if (cast<ConstantFPSDNode>(N)->getValue() < 0.0 ||
1339 cast<ConstantFPSDNode>(N)->isExactlyValue(-0.0))
1340 Tmp1 = MakeReg(MVT::f64);
1341
1342 if (cast<ConstantFPSDNode>(N)->isExactlyValue(+0.0) ||
1343 cast<ConstantFPSDNode>(N)->isExactlyValue(-0.0))
1344 BuildMI(BB, X86::FLD0, 0, Tmp1);
1345 else if (cast<ConstantFPSDNode>(N)->isExactlyValue(+1.0) ||
1346 cast<ConstantFPSDNode>(N)->isExactlyValue(-1.0))
1347 BuildMI(BB, X86::FLD1, 0, Tmp1);
1348 else
1349 assert(0 && "Unexpected constant!");
1350 if (Tmp1 != Result)
1351 BuildMI(BB, X86::FCHS, 1, Result).addReg(Tmp1);
1352 return Result;
1353 case ISD::Constant:
1354 switch (N.getValueType()) {
1355 default: assert(0 && "Cannot use constants of this type!");
1356 case MVT::i1:
1357 case MVT::i8: Opc = X86::MOV8ri; break;
1358 case MVT::i16: Opc = X86::MOV16ri; break;
1359 case MVT::i32: Opc = X86::MOV32ri; break;
1360 }
1361 BuildMI(BB, Opc, 1,Result).addImm(cast<ConstantSDNode>(N)->getValue());
1362 return Result;
1363 case ISD::GlobalAddress: {
1364 GlobalValue *GV = cast<GlobalAddressSDNode>(N)->getGlobal();
1365 BuildMI(BB, X86::MOV32ri, 1, Result).addGlobalAddress(GV);
1366 return Result;
1367 }
1368 case ISD::ExternalSymbol: {
1369 const char *Sym = cast<ExternalSymbolSDNode>(N)->getSymbol();
1370 BuildMI(BB, X86::MOV32ri, 1, Result).addExternalSymbol(Sym);
1371 return Result;
1372 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001373 case ISD::ZERO_EXTEND: {
1374 int DestIs16 = N.getValueType() == MVT::i16;
1375 int SrcIs16 = N.getOperand(0).getValueType() == MVT::i16;
Chris Lattner590d8002005-01-09 18:52:44 +00001376
1377 // FIXME: This hack is here for zero extension casts from bool to i8. This
1378 // would not be needed if bools were promoted by Legalize.
1379 if (N.getValueType() == MVT::i8) {
Chris Lattnerdbba22f2005-01-11 23:33:00 +00001380 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattner590d8002005-01-09 18:52:44 +00001381 BuildMI(BB, X86::MOV8rr, 1, Result).addReg(Tmp1);
1382 return Result;
1383 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001384
Chris Lattner4ff348b2005-01-17 06:26:58 +00001385 if (isFoldableLoad(N.getOperand(0), SDOperand())) {
Chris Lattnerdbba22f2005-01-11 23:33:00 +00001386 static const unsigned Opc[3] = {
1387 X86::MOVZX32rm8, X86::MOVZX32rm16, X86::MOVZX16rm8
1388 };
1389
1390 X86AddressMode AM;
1391 EmitFoldedLoad(N.getOperand(0), AM);
1392 addFullAddress(BuildMI(BB, Opc[SrcIs16+DestIs16*2], 4, Result), AM);
1393
1394 return Result;
1395 }
1396
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001397 static const unsigned Opc[3] = {
1398 X86::MOVZX32rr8, X86::MOVZX32rr16, X86::MOVZX16rr8
1399 };
Chris Lattnerdbba22f2005-01-11 23:33:00 +00001400 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001401 BuildMI(BB, Opc[SrcIs16+DestIs16*2], 1, Result).addReg(Tmp1);
1402 return Result;
1403 }
1404 case ISD::SIGN_EXTEND: {
1405 int DestIs16 = N.getValueType() == MVT::i16;
1406 int SrcIs16 = N.getOperand(0).getValueType() == MVT::i16;
1407
Chris Lattner590d8002005-01-09 18:52:44 +00001408 // FIXME: Legalize should promote bools to i8!
1409 assert(N.getOperand(0).getValueType() != MVT::i1 &&
1410 "Sign extend from bool not implemented!");
1411
Chris Lattner4ff348b2005-01-17 06:26:58 +00001412 if (isFoldableLoad(N.getOperand(0), SDOperand())) {
Chris Lattnerdbba22f2005-01-11 23:33:00 +00001413 static const unsigned Opc[3] = {
1414 X86::MOVSX32rm8, X86::MOVSX32rm16, X86::MOVSX16rm8
1415 };
1416
1417 X86AddressMode AM;
1418 EmitFoldedLoad(N.getOperand(0), AM);
1419 addFullAddress(BuildMI(BB, Opc[SrcIs16+DestIs16*2], 4, Result), AM);
1420 return Result;
1421 }
1422
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001423 static const unsigned Opc[3] = {
1424 X86::MOVSX32rr8, X86::MOVSX32rr16, X86::MOVSX16rr8
1425 };
1426 Tmp1 = SelectExpr(N.getOperand(0));
1427 BuildMI(BB, Opc[SrcIs16+DestIs16*2], 1, Result).addReg(Tmp1);
1428 return Result;
1429 }
1430 case ISD::TRUNCATE:
Chris Lattnerafce4302005-01-12 02:19:06 +00001431 // Fold TRUNCATE (LOAD P) into a smaller load from P.
Chris Lattner477c9312005-01-18 20:05:56 +00001432 // FIXME: This should be performed by the DAGCombiner.
Chris Lattner4ff348b2005-01-17 06:26:58 +00001433 if (isFoldableLoad(N.getOperand(0), SDOperand())) {
Chris Lattnerafce4302005-01-12 02:19:06 +00001434 switch (N.getValueType()) {
1435 default: assert(0 && "Unknown truncate!");
1436 case MVT::i1:
1437 case MVT::i8: Opc = X86::MOV8rm; break;
1438 case MVT::i16: Opc = X86::MOV16rm; break;
1439 }
1440 X86AddressMode AM;
1441 EmitFoldedLoad(N.getOperand(0), AM);
1442 addFullAddress(BuildMI(BB, Opc, 4, Result), AM);
1443 return Result;
1444 }
1445
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001446 // Handle cast of LARGER int to SMALLER int using a move to EAX followed by
1447 // a move out of AX or AL.
1448 switch (N.getOperand(0).getValueType()) {
1449 default: assert(0 && "Unknown truncate!");
1450 case MVT::i8: Tmp2 = X86::AL; Opc = X86::MOV8rr; break;
1451 case MVT::i16: Tmp2 = X86::AX; Opc = X86::MOV16rr; break;
1452 case MVT::i32: Tmp2 = X86::EAX; Opc = X86::MOV32rr; break;
1453 }
1454 Tmp1 = SelectExpr(N.getOperand(0));
1455 BuildMI(BB, Opc, 1, Tmp2).addReg(Tmp1);
1456
1457 switch (N.getValueType()) {
1458 default: assert(0 && "Unknown truncate!");
1459 case MVT::i1:
1460 case MVT::i8: Tmp2 = X86::AL; Opc = X86::MOV8rr; break;
1461 case MVT::i16: Tmp2 = X86::AX; Opc = X86::MOV16rr; break;
1462 }
1463 BuildMI(BB, Opc, 1, Result).addReg(Tmp2);
1464 return Result;
1465
Chris Lattner590d8002005-01-09 18:52:44 +00001466 case ISD::SINT_TO_FP:
1467 case ISD::UINT_TO_FP: {
1468 // FIXME: Most of this grunt work should be done by legalize!
Chris Lattneref7ba072005-01-11 03:50:45 +00001469 ContainsFPCode = true;
Chris Lattner590d8002005-01-09 18:52:44 +00001470
1471 // Promote the integer to a type supported by FLD. We do this because there
1472 // are no unsigned FLD instructions, so we must promote an unsigned value to
1473 // a larger signed value, then use FLD on the larger value.
1474 //
1475 MVT::ValueType PromoteType = MVT::Other;
1476 MVT::ValueType SrcTy = N.getOperand(0).getValueType();
1477 unsigned PromoteOpcode = 0;
1478 unsigned RealDestReg = Result;
1479 switch (SrcTy) {
1480 case MVT::i1:
1481 case MVT::i8:
1482 // We don't have the facilities for directly loading byte sized data from
1483 // memory (even signed). Promote it to 16 bits.
1484 PromoteType = MVT::i16;
1485 PromoteOpcode = Node->getOpcode() == ISD::SINT_TO_FP ?
1486 X86::MOVSX16rr8 : X86::MOVZX16rr8;
1487 break;
1488 case MVT::i16:
1489 if (Node->getOpcode() == ISD::UINT_TO_FP) {
1490 PromoteType = MVT::i32;
1491 PromoteOpcode = X86::MOVZX32rr16;
1492 }
1493 break;
1494 default:
1495 // Don't fild into the real destination.
1496 if (Node->getOpcode() == ISD::UINT_TO_FP)
1497 Result = MakeReg(Node->getValueType(0));
1498 break;
1499 }
1500
1501 Tmp1 = SelectExpr(N.getOperand(0)); // Get the operand register
1502
1503 if (PromoteType != MVT::Other) {
1504 Tmp2 = MakeReg(PromoteType);
1505 BuildMI(BB, PromoteOpcode, 1, Tmp2).addReg(Tmp1);
1506 SrcTy = PromoteType;
1507 Tmp1 = Tmp2;
1508 }
1509
1510 // Spill the integer to memory and reload it from there.
1511 unsigned Size = MVT::getSizeInBits(SrcTy)/8;
1512 MachineFunction *F = BB->getParent();
1513 int FrameIdx = F->getFrameInfo()->CreateStackObject(Size, Size);
1514
1515 switch (SrcTy) {
1516 case MVT::i64:
Chris Lattner7dbcb752005-01-12 04:21:28 +00001517 assert(0 && "Cast ulong to FP not implemented yet!");
Chris Lattner590d8002005-01-09 18:52:44 +00001518 // FIXME: this won't work for cast [u]long to FP
1519 addFrameReference(BuildMI(BB, X86::MOV32mr, 5),
1520 FrameIdx).addReg(Tmp1);
1521 addFrameReference(BuildMI(BB, X86::MOV32mr, 5),
1522 FrameIdx, 4).addReg(Tmp1+1);
1523 addFrameReference(BuildMI(BB, X86::FILD64m, 5, Result), FrameIdx);
1524 break;
1525 case MVT::i32:
1526 addFrameReference(BuildMI(BB, X86::MOV32mr, 5),
1527 FrameIdx).addReg(Tmp1);
1528 addFrameReference(BuildMI(BB, X86::FILD32m, 5, Result), FrameIdx);
1529 break;
1530 case MVT::i16:
1531 addFrameReference(BuildMI(BB, X86::MOV16mr, 5),
1532 FrameIdx).addReg(Tmp1);
1533 addFrameReference(BuildMI(BB, X86::FILD16m, 5, Result), FrameIdx);
1534 break;
1535 default: break; // No promotion required.
1536 }
1537
Chris Lattner085c9952005-01-12 04:00:00 +00001538 if (Node->getOpcode() == ISD::UINT_TO_FP && Result != RealDestReg) {
Chris Lattner590d8002005-01-09 18:52:44 +00001539 // If this is a cast from uint -> double, we need to be careful when if
1540 // the "sign" bit is set. If so, we don't want to make a negative number,
1541 // we want to make a positive number. Emit code to add an offset if the
1542 // sign bit is set.
1543
1544 // Compute whether the sign bit is set by shifting the reg right 31 bits.
1545 unsigned IsNeg = MakeReg(MVT::i32);
1546 BuildMI(BB, X86::SHR32ri, 2, IsNeg).addReg(Tmp1).addImm(31);
1547
1548 // Create a CP value that has the offset in one word and 0 in the other.
1549 static ConstantInt *TheOffset = ConstantUInt::get(Type::ULongTy,
1550 0x4f80000000000000ULL);
1551 unsigned CPI = F->getConstantPool()->getConstantPoolIndex(TheOffset);
1552 BuildMI(BB, X86::FADD32m, 5, RealDestReg).addReg(Result)
1553 .addConstantPoolIndex(CPI).addZImm(4).addReg(IsNeg).addSImm(0);
1554
1555 } else if (Node->getOpcode() == ISD::UINT_TO_FP && SrcTy == MVT::i64) {
1556 // We need special handling for unsigned 64-bit integer sources. If the
1557 // input number has the "sign bit" set, then we loaded it incorrectly as a
1558 // negative 64-bit number. In this case, add an offset value.
1559
1560 // Emit a test instruction to see if the dynamic input value was signed.
1561 BuildMI(BB, X86::TEST32rr, 2).addReg(Tmp1+1).addReg(Tmp1+1);
1562
1563 // If the sign bit is set, get a pointer to an offset, otherwise get a
1564 // pointer to a zero.
1565 MachineConstantPool *CP = F->getConstantPool();
1566 unsigned Zero = MakeReg(MVT::i32);
1567 Constant *Null = Constant::getNullValue(Type::UIntTy);
1568 addConstantPoolReference(BuildMI(BB, X86::LEA32r, 5, Zero),
1569 CP->getConstantPoolIndex(Null));
1570 unsigned Offset = MakeReg(MVT::i32);
1571 Constant *OffsetCst = ConstantUInt::get(Type::UIntTy, 0x5f800000);
1572
1573 addConstantPoolReference(BuildMI(BB, X86::LEA32r, 5, Offset),
1574 CP->getConstantPoolIndex(OffsetCst));
1575 unsigned Addr = MakeReg(MVT::i32);
1576 BuildMI(BB, X86::CMOVS32rr, 2, Addr).addReg(Zero).addReg(Offset);
1577
1578 // Load the constant for an add. FIXME: this could make an 'fadd' that
1579 // reads directly from memory, but we don't support these yet.
1580 unsigned ConstReg = MakeReg(MVT::f64);
1581 addDirectMem(BuildMI(BB, X86::FLD32m, 4, ConstReg), Addr);
1582
1583 BuildMI(BB, X86::FpADD, 2, RealDestReg).addReg(ConstReg).addReg(Result);
1584 }
1585 return RealDestReg;
1586 }
1587 case ISD::FP_TO_SINT:
1588 case ISD::FP_TO_UINT: {
1589 // FIXME: Most of this grunt work should be done by legalize!
1590 Tmp1 = SelectExpr(N.getOperand(0)); // Get the operand register
1591
1592 // Change the floating point control register to use "round towards zero"
1593 // mode when truncating to an integer value.
1594 //
1595 MachineFunction *F = BB->getParent();
1596 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
1597 addFrameReference(BuildMI(BB, X86::FNSTCW16m, 4), CWFrameIdx);
1598
1599 // Load the old value of the high byte of the control word...
1600 unsigned HighPartOfCW = MakeReg(MVT::i8);
1601 addFrameReference(BuildMI(BB, X86::MOV8rm, 4, HighPartOfCW),
1602 CWFrameIdx, 1);
1603
1604 // Set the high part to be round to zero...
1605 addFrameReference(BuildMI(BB, X86::MOV8mi, 5),
1606 CWFrameIdx, 1).addImm(12);
1607
1608 // Reload the modified control word now...
1609 addFrameReference(BuildMI(BB, X86::FLDCW16m, 4), CWFrameIdx);
1610
1611 // Restore the memory image of control word to original value
1612 addFrameReference(BuildMI(BB, X86::MOV8mr, 5),
1613 CWFrameIdx, 1).addReg(HighPartOfCW);
1614
1615 // We don't have the facilities for directly storing byte sized data to
1616 // memory. Promote it to 16 bits. We also must promote unsigned values to
1617 // larger classes because we only have signed FP stores.
1618 MVT::ValueType StoreClass = Node->getValueType(0);
1619 if (StoreClass == MVT::i8 || Node->getOpcode() == ISD::FP_TO_UINT)
1620 switch (StoreClass) {
1621 case MVT::i8: StoreClass = MVT::i16; break;
1622 case MVT::i16: StoreClass = MVT::i32; break;
1623 case MVT::i32: StoreClass = MVT::i64; break;
1624 // The following treatment of cLong may not be perfectly right,
1625 // but it survives chains of casts of the form
1626 // double->ulong->double.
1627 case MVT::i64: StoreClass = MVT::i64; break;
1628 default: assert(0 && "Unknown store class!");
1629 }
1630
1631 // Spill the integer to memory and reload it from there.
1632 unsigned Size = MVT::getSizeInBits(StoreClass)/8;
1633 int FrameIdx = F->getFrameInfo()->CreateStackObject(Size, Size);
1634
1635 switch (StoreClass) {
1636 default: assert(0 && "Unknown store class!");
1637 case MVT::i16:
1638 addFrameReference(BuildMI(BB, X86::FIST16m, 5), FrameIdx).addReg(Tmp1);
1639 break;
1640 case MVT::i32:
Chris Lattner25020852005-01-09 19:49:59 +00001641 addFrameReference(BuildMI(BB, X86::FIST32m, 5), FrameIdx).addReg(Tmp1);
Chris Lattner590d8002005-01-09 18:52:44 +00001642 break;
1643 case MVT::i64:
Chris Lattner25020852005-01-09 19:49:59 +00001644 addFrameReference(BuildMI(BB, X86::FISTP64m, 5), FrameIdx).addReg(Tmp1);
Chris Lattner590d8002005-01-09 18:52:44 +00001645 break;
1646 }
1647
1648 switch (Node->getValueType(0)) {
1649 default:
1650 assert(0 && "Unknown integer type!");
1651 case MVT::i64:
1652 // FIXME: this isn't gunna work.
Chris Lattner7dbcb752005-01-12 04:21:28 +00001653 assert(0 && "Cast FP to long not implemented yet!");
Chris Lattner590d8002005-01-09 18:52:44 +00001654 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, Result), FrameIdx);
1655 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, Result+1), FrameIdx, 4);
1656 case MVT::i32:
1657 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, Result), FrameIdx);
1658 break;
1659 case MVT::i16:
1660 addFrameReference(BuildMI(BB, X86::MOV16rm, 4, Result), FrameIdx);
1661 break;
1662 case MVT::i8:
1663 addFrameReference(BuildMI(BB, X86::MOV8rm, 4, Result), FrameIdx);
1664 break;
1665 }
1666
1667 // Reload the original control word now.
1668 addFrameReference(BuildMI(BB, X86::FLDCW16m, 4), CWFrameIdx);
1669 return Result;
1670 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001671 case ISD::ADD:
Chris Lattnera5ade062005-01-11 21:19:59 +00001672 Op0 = N.getOperand(0);
1673 Op1 = N.getOperand(1);
1674
Chris Lattner4ff348b2005-01-17 06:26:58 +00001675 if (isFoldableLoad(Op0, Op1)) {
Chris Lattnera5ade062005-01-11 21:19:59 +00001676 std::swap(Op0, Op1);
Chris Lattner4ff348b2005-01-17 06:26:58 +00001677 goto FoldAdd;
1678 }
Chris Lattnera5ade062005-01-11 21:19:59 +00001679
Chris Lattner4ff348b2005-01-17 06:26:58 +00001680 if (isFoldableLoad(Op1, Op0)) {
1681 FoldAdd:
Chris Lattnera5ade062005-01-11 21:19:59 +00001682 switch (N.getValueType()) {
1683 default: assert(0 && "Cannot add this type!");
1684 case MVT::i1:
1685 case MVT::i8: Opc = X86::ADD8rm; break;
1686 case MVT::i16: Opc = X86::ADD16rm; break;
1687 case MVT::i32: Opc = X86::ADD32rm; break;
1688 case MVT::f32: Opc = X86::FADD32m; break;
1689 case MVT::f64: Opc = X86::FADD64m; break;
1690 }
1691 X86AddressMode AM;
Chris Lattner636e79a2005-01-13 05:53:16 +00001692 EmitFoldedLoad(Op1, AM);
1693 Tmp1 = SelectExpr(Op0);
Chris Lattnera5ade062005-01-11 21:19:59 +00001694 addFullAddress(BuildMI(BB, Opc, 5, Result).addReg(Tmp1), AM);
1695 return Result;
1696 }
1697
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001698 // See if we can codegen this as an LEA to fold operations together.
1699 if (N.getValueType() == MVT::i32) {
Chris Lattner883c86f2005-01-18 02:25:52 +00001700 ExprMap.erase(N);
Chris Lattner98a8ba02005-01-18 01:06:26 +00001701 X86ISelAddressMode AM;
Chris Lattner883c86f2005-01-18 02:25:52 +00001702 MatchAddress(N, AM);
1703 ExprMap[N] = Result;
1704
1705 // If this is not just an add, emit the LEA. For a simple add (like
1706 // reg+reg or reg+imm), we just emit an add. It might be a good idea to
1707 // leave this as LEA, then peephole it to 'ADD' after two address elim
1708 // happens.
1709 if (AM.Scale != 1 || AM.BaseType == X86ISelAddressMode::FrameIndexBase||
1710 AM.GV || (AM.Base.Reg.Val && AM.IndexReg.Val && AM.Disp)) {
1711 X86AddressMode XAM = SelectAddrExprs(AM);
1712 addFullAddress(BuildMI(BB, X86::LEA32r, 4, Result), XAM);
1713 return Result;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001714 }
1715 }
Chris Lattner11333092005-01-11 03:11:44 +00001716
Chris Lattnera5ade062005-01-11 21:19:59 +00001717 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op1)) {
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001718 Opc = 0;
1719 if (CN->getValue() == 1) { // add X, 1 -> inc X
1720 switch (N.getValueType()) {
1721 default: assert(0 && "Cannot integer add this type!");
1722 case MVT::i8: Opc = X86::INC8r; break;
1723 case MVT::i16: Opc = X86::INC16r; break;
1724 case MVT::i32: Opc = X86::INC32r; break;
1725 }
1726 } else if (CN->isAllOnesValue()) { // add X, -1 -> dec X
1727 switch (N.getValueType()) {
1728 default: assert(0 && "Cannot integer add this type!");
1729 case MVT::i8: Opc = X86::DEC8r; break;
1730 case MVT::i16: Opc = X86::DEC16r; break;
1731 case MVT::i32: Opc = X86::DEC32r; break;
1732 }
1733 }
1734
1735 if (Opc) {
Chris Lattnera5ade062005-01-11 21:19:59 +00001736 Tmp1 = SelectExpr(Op0);
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001737 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1738 return Result;
1739 }
1740
1741 switch (N.getValueType()) {
1742 default: assert(0 && "Cannot add this type!");
1743 case MVT::i8: Opc = X86::ADD8ri; break;
1744 case MVT::i16: Opc = X86::ADD16ri; break;
1745 case MVT::i32: Opc = X86::ADD32ri; break;
1746 }
1747 if (Opc) {
Chris Lattnera5ade062005-01-11 21:19:59 +00001748 Tmp1 = SelectExpr(Op0);
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001749 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(CN->getValue());
1750 return Result;
1751 }
1752 }
1753
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001754 switch (N.getValueType()) {
1755 default: assert(0 && "Cannot add this type!");
1756 case MVT::i8: Opc = X86::ADD8rr; break;
1757 case MVT::i16: Opc = X86::ADD16rr; break;
1758 case MVT::i32: Opc = X86::ADD32rr; break;
Chris Lattneref7ba072005-01-11 03:50:45 +00001759 case MVT::f64: Opc = X86::FpADD; break;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001760 }
Chris Lattner11333092005-01-11 03:11:44 +00001761
Chris Lattnera5ade062005-01-11 21:19:59 +00001762 if (getRegPressure(Op0) > getRegPressure(Op1)) {
1763 Tmp1 = SelectExpr(Op0);
1764 Tmp2 = SelectExpr(Op1);
Chris Lattner11333092005-01-11 03:11:44 +00001765 } else {
Chris Lattnera5ade062005-01-11 21:19:59 +00001766 Tmp2 = SelectExpr(Op1);
1767 Tmp1 = SelectExpr(Op0);
Chris Lattner11333092005-01-11 03:11:44 +00001768 }
1769
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001770 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
1771 return Result;
1772 case ISD::SUB:
Chris Lattnera5ade062005-01-11 21:19:59 +00001773 case ISD::MUL:
1774 case ISD::AND:
1775 case ISD::OR:
Chris Lattnera56cea42005-01-12 04:23:22 +00001776 case ISD::XOR: {
Chris Lattnera5ade062005-01-11 21:19:59 +00001777 static const unsigned SUBTab[] = {
1778 X86::SUB8ri, X86::SUB16ri, X86::SUB32ri, 0, 0,
1779 X86::SUB8rm, X86::SUB16rm, X86::SUB32rm, X86::FSUB32m, X86::FSUB64m,
1780 X86::SUB8rr, X86::SUB16rr, X86::SUB32rr, X86::FpSUB , X86::FpSUB,
1781 };
1782 static const unsigned MULTab[] = {
1783 0, X86::IMUL16rri, X86::IMUL32rri, 0, 0,
1784 0, X86::IMUL16rm , X86::IMUL32rm, X86::FMUL32m, X86::FMUL64m,
1785 0, X86::IMUL16rr , X86::IMUL32rr, X86::FpMUL , X86::FpMUL,
1786 };
1787 static const unsigned ANDTab[] = {
1788 X86::AND8ri, X86::AND16ri, X86::AND32ri, 0, 0,
1789 X86::AND8rm, X86::AND16rm, X86::AND32rm, 0, 0,
1790 X86::AND8rr, X86::AND16rr, X86::AND32rr, 0, 0,
1791 };
1792 static const unsigned ORTab[] = {
1793 X86::OR8ri, X86::OR16ri, X86::OR32ri, 0, 0,
1794 X86::OR8rm, X86::OR16rm, X86::OR32rm, 0, 0,
1795 X86::OR8rr, X86::OR16rr, X86::OR32rr, 0, 0,
1796 };
1797 static const unsigned XORTab[] = {
1798 X86::XOR8ri, X86::XOR16ri, X86::XOR32ri, 0, 0,
1799 X86::XOR8rm, X86::XOR16rm, X86::XOR32rm, 0, 0,
1800 X86::XOR8rr, X86::XOR16rr, X86::XOR32rr, 0, 0,
1801 };
1802
1803 Op0 = Node->getOperand(0);
1804 Op1 = Node->getOperand(1);
1805
Chris Lattner30ea1e92005-01-19 07:37:26 +00001806 if (Node->getOpcode() == ISD::OR && Op0.hasOneUse() && Op1.hasOneUse())
1807 if (EmitOrOpOp(Op0, Op1, Result)) // Match SHLD, SHRD, and rotates.
Chris Lattner85716372005-01-19 06:18:43 +00001808 return Result;
1809
1810 if (Node->getOpcode() == ISD::SUB)
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001811 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(0)))
1812 if (CN->isNullValue()) { // 0 - N -> neg N
1813 switch (N.getValueType()) {
1814 default: assert(0 && "Cannot sub this type!");
1815 case MVT::i1:
1816 case MVT::i8: Opc = X86::NEG8r; break;
1817 case MVT::i16: Opc = X86::NEG16r; break;
1818 case MVT::i32: Opc = X86::NEG32r; break;
1819 }
1820 Tmp1 = SelectExpr(N.getOperand(1));
1821 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1822 return Result;
1823 }
1824
Chris Lattnera5ade062005-01-11 21:19:59 +00001825 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op1)) {
1826 if (CN->isAllOnesValue() && Node->getOpcode() == ISD::XOR) {
Chris Lattnerc98279d2005-01-17 00:23:16 +00001827 Opc = 0;
Chris Lattnerd4dab922005-01-11 04:31:30 +00001828 switch (N.getValueType()) {
1829 default: assert(0 && "Cannot add this type!");
Chris Lattnerc98279d2005-01-17 00:23:16 +00001830 case MVT::i1: break; // Not supported, don't invert upper bits!
Chris Lattnerd4dab922005-01-11 04:31:30 +00001831 case MVT::i8: Opc = X86::NOT8r; break;
1832 case MVT::i16: Opc = X86::NOT16r; break;
1833 case MVT::i32: Opc = X86::NOT32r; break;
1834 }
Chris Lattnerc98279d2005-01-17 00:23:16 +00001835 if (Opc) {
1836 Tmp1 = SelectExpr(Op0);
1837 BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
1838 return Result;
1839 }
Chris Lattnerd4dab922005-01-11 04:31:30 +00001840 }
1841
Chris Lattner2a4e5082005-01-17 06:48:02 +00001842 // Fold common multiplies into LEA instructions.
1843 if (Node->getOpcode() == ISD::MUL && N.getValueType() == MVT::i32) {
1844 switch ((int)CN->getValue()) {
1845 default: break;
1846 case 3:
1847 case 5:
1848 case 9:
Chris Lattner2a4e5082005-01-17 06:48:02 +00001849 // Remove N from exprmap so SelectAddress doesn't get confused.
1850 ExprMap.erase(N);
Chris Lattner98a8ba02005-01-18 01:06:26 +00001851 X86AddressMode AM;
Chris Lattner2a4e5082005-01-17 06:48:02 +00001852 SelectAddress(N, AM);
1853 // Restore it to the map.
1854 ExprMap[N] = Result;
1855 addFullAddress(BuildMI(BB, X86::LEA32r, 4, Result), AM);
1856 return Result;
1857 }
1858 }
1859
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001860 switch (N.getValueType()) {
Chris Lattnerd4dab922005-01-11 04:31:30 +00001861 default: assert(0 && "Cannot xor this type!");
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001862 case MVT::i1:
Chris Lattnera5ade062005-01-11 21:19:59 +00001863 case MVT::i8: Opc = 0; break;
1864 case MVT::i16: Opc = 1; break;
1865 case MVT::i32: Opc = 2; break;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001866 }
Chris Lattnera5ade062005-01-11 21:19:59 +00001867 switch (Node->getOpcode()) {
1868 default: assert(0 && "Unreachable!");
1869 case ISD::SUB: Opc = SUBTab[Opc]; break;
1870 case ISD::MUL: Opc = MULTab[Opc]; break;
1871 case ISD::AND: Opc = ANDTab[Opc]; break;
1872 case ISD::OR: Opc = ORTab[Opc]; break;
1873 case ISD::XOR: Opc = XORTab[Opc]; break;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001874 }
Chris Lattnera5ade062005-01-11 21:19:59 +00001875 if (Opc) { // Can't fold MUL:i8 R, imm
1876 Tmp1 = SelectExpr(Op0);
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001877 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(CN->getValue());
1878 return Result;
1879 }
1880 }
Chris Lattner11333092005-01-11 03:11:44 +00001881
Chris Lattner4ff348b2005-01-17 06:26:58 +00001882 if (isFoldableLoad(Op0, Op1))
Chris Lattnera5ade062005-01-11 21:19:59 +00001883 if (Node->getOpcode() != ISD::SUB) {
1884 std::swap(Op0, Op1);
Chris Lattner4ff348b2005-01-17 06:26:58 +00001885 goto FoldOps;
Chris Lattnera5ade062005-01-11 21:19:59 +00001886 } else {
1887 // Emit 'reverse' subract, with a memory operand.
1888 switch (N.getValueType()) {
1889 default: Opc = 0; break;
1890 case MVT::f32: Opc = X86::FSUBR32m; break;
1891 case MVT::f64: Opc = X86::FSUBR64m; break;
1892 }
1893 if (Opc) {
1894 X86AddressMode AM;
Chris Lattner636e79a2005-01-13 05:53:16 +00001895 EmitFoldedLoad(Op0, AM);
1896 Tmp1 = SelectExpr(Op1);
Chris Lattnera5ade062005-01-11 21:19:59 +00001897 addFullAddress(BuildMI(BB, Opc, 5, Result).addReg(Tmp1), AM);
1898 return Result;
1899 }
1900 }
1901
Chris Lattner4ff348b2005-01-17 06:26:58 +00001902 if (isFoldableLoad(Op1, Op0)) {
1903 FoldOps:
Chris Lattnera5ade062005-01-11 21:19:59 +00001904 switch (N.getValueType()) {
1905 default: assert(0 && "Cannot operate on this type!");
1906 case MVT::i1:
1907 case MVT::i8: Opc = 5; break;
1908 case MVT::i16: Opc = 6; break;
1909 case MVT::i32: Opc = 7; break;
1910 case MVT::f32: Opc = 8; break;
1911 case MVT::f64: Opc = 9; break;
1912 }
1913 switch (Node->getOpcode()) {
1914 default: assert(0 && "Unreachable!");
1915 case ISD::SUB: Opc = SUBTab[Opc]; break;
1916 case ISD::MUL: Opc = MULTab[Opc]; break;
1917 case ISD::AND: Opc = ANDTab[Opc]; break;
1918 case ISD::OR: Opc = ORTab[Opc]; break;
1919 case ISD::XOR: Opc = XORTab[Opc]; break;
1920 }
1921
1922 X86AddressMode AM;
Chris Lattner636e79a2005-01-13 05:53:16 +00001923 EmitFoldedLoad(Op1, AM);
1924 Tmp1 = SelectExpr(Op0);
Chris Lattnera5ade062005-01-11 21:19:59 +00001925 if (Opc) {
1926 addFullAddress(BuildMI(BB, Opc, 5, Result).addReg(Tmp1), AM);
1927 } else {
1928 assert(Node->getOpcode() == ISD::MUL &&
1929 N.getValueType() == MVT::i8 && "Unexpected situation!");
1930 // Must use the MUL instruction, which forces use of AL.
1931 BuildMI(BB, X86::MOV8rr, 1, X86::AL).addReg(Tmp1);
1932 addFullAddress(BuildMI(BB, X86::MUL8m, 1), AM);
1933 BuildMI(BB, X86::MOV8rr, 1, Result).addReg(X86::AL);
1934 }
1935 return Result;
Chris Lattner11333092005-01-11 03:11:44 +00001936 }
Chris Lattnera5ade062005-01-11 21:19:59 +00001937
1938 if (getRegPressure(Op0) > getRegPressure(Op1)) {
1939 Tmp1 = SelectExpr(Op0);
1940 Tmp2 = SelectExpr(Op1);
1941 } else {
1942 Tmp2 = SelectExpr(Op1);
1943 Tmp1 = SelectExpr(Op0);
1944 }
1945
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001946 switch (N.getValueType()) {
1947 default: assert(0 && "Cannot add this type!");
Chris Lattnera5ade062005-01-11 21:19:59 +00001948 case MVT::i1:
1949 case MVT::i8: Opc = 10; break;
1950 case MVT::i16: Opc = 11; break;
1951 case MVT::i32: Opc = 12; break;
1952 case MVT::f32: Opc = 13; break;
1953 case MVT::f64: Opc = 14; break;
1954 }
1955 switch (Node->getOpcode()) {
1956 default: assert(0 && "Unreachable!");
1957 case ISD::SUB: Opc = SUBTab[Opc]; break;
1958 case ISD::MUL: Opc = MULTab[Opc]; break;
1959 case ISD::AND: Opc = ANDTab[Opc]; break;
1960 case ISD::OR: Opc = ORTab[Opc]; break;
1961 case ISD::XOR: Opc = XORTab[Opc]; break;
1962 }
1963 if (Opc) {
1964 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
1965 } else {
1966 assert(Node->getOpcode() == ISD::MUL &&
1967 N.getValueType() == MVT::i8 && "Unexpected situation!");
Chris Lattnera13d3232005-01-10 20:55:48 +00001968 // Must use the MUL instruction, which forces use of AL.
1969 BuildMI(BB, X86::MOV8rr, 1, X86::AL).addReg(Tmp1);
1970 BuildMI(BB, X86::MUL8r, 1).addReg(Tmp2);
1971 BuildMI(BB, X86::MOV8rr, 1, Result).addReg(X86::AL);
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001972 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001973 return Result;
Chris Lattnera56cea42005-01-12 04:23:22 +00001974 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001975 case ISD::SELECT:
Chris Lattnerda2ce112005-01-16 07:34:08 +00001976 if (getRegPressure(N.getOperand(1)) > getRegPressure(N.getOperand(2))) {
1977 Tmp2 = SelectExpr(N.getOperand(1));
1978 Tmp3 = SelectExpr(N.getOperand(2));
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001979 } else {
Chris Lattnerda2ce112005-01-16 07:34:08 +00001980 Tmp3 = SelectExpr(N.getOperand(2));
1981 Tmp2 = SelectExpr(N.getOperand(1));
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001982 }
Chris Lattnerda2ce112005-01-16 07:34:08 +00001983 EmitSelectCC(N.getOperand(0), N.getValueType(), Tmp2, Tmp3, Result);
1984 return Result;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001985
1986 case ISD::SDIV:
1987 case ISD::UDIV:
1988 case ISD::SREM:
1989 case ISD::UREM: {
Chris Lattnerda2ce112005-01-16 07:34:08 +00001990 assert((N.getOpcode() != ISD::SREM || MVT::isInteger(N.getValueType())) &&
1991 "We don't support this operator!");
1992
Chris Lattner8acb1ba2005-01-07 07:49:41 +00001993 if (N.getOpcode() == ISD::SDIV)
1994 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1995 // FIXME: These special cases should be handled by the lowering impl!
1996 unsigned RHS = CN->getValue();
1997 bool isNeg = false;
1998 if ((int)RHS < 0) {
1999 isNeg = true;
2000 RHS = -RHS;
2001 }
2002 if (RHS && (RHS & (RHS-1)) == 0) { // Signed division by power of 2?
2003 unsigned Log = log2(RHS);
2004 unsigned TmpReg = MakeReg(N.getValueType());
2005 unsigned SAROpc, SHROpc, ADDOpc, NEGOpc;
2006 switch (N.getValueType()) {
2007 default: assert("Unknown type to signed divide!");
2008 case MVT::i8:
2009 SAROpc = X86::SAR8ri;
2010 SHROpc = X86::SHR8ri;
2011 ADDOpc = X86::ADD8rr;
2012 NEGOpc = X86::NEG8r;
2013 break;
2014 case MVT::i16:
2015 SAROpc = X86::SAR16ri;
2016 SHROpc = X86::SHR16ri;
2017 ADDOpc = X86::ADD16rr;
2018 NEGOpc = X86::NEG16r;
2019 break;
2020 case MVT::i32:
2021 SAROpc = X86::SAR32ri;
2022 SHROpc = X86::SHR32ri;
2023 ADDOpc = X86::ADD32rr;
2024 NEGOpc = X86::NEG32r;
2025 break;
2026 }
Chris Lattner11333092005-01-11 03:11:44 +00002027 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002028 BuildMI(BB, SAROpc, 2, TmpReg).addReg(Tmp1).addImm(Log-1);
2029 unsigned TmpReg2 = MakeReg(N.getValueType());
2030 BuildMI(BB, SHROpc, 2, TmpReg2).addReg(TmpReg).addImm(32-Log);
2031 unsigned TmpReg3 = MakeReg(N.getValueType());
2032 BuildMI(BB, ADDOpc, 2, TmpReg3).addReg(Tmp1).addReg(TmpReg2);
2033
2034 unsigned TmpReg4 = isNeg ? MakeReg(N.getValueType()) : Result;
2035 BuildMI(BB, SAROpc, 2, TmpReg4).addReg(TmpReg3).addImm(Log);
2036 if (isNeg)
2037 BuildMI(BB, NEGOpc, 1, Result).addReg(TmpReg4);
2038 return Result;
2039 }
2040 }
2041
Chris Lattner11333092005-01-11 03:11:44 +00002042 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2043 Tmp1 = SelectExpr(N.getOperand(0));
2044 Tmp2 = SelectExpr(N.getOperand(1));
2045 } else {
2046 Tmp2 = SelectExpr(N.getOperand(1));
2047 Tmp1 = SelectExpr(N.getOperand(0));
2048 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002049
2050 bool isSigned = N.getOpcode() == ISD::SDIV || N.getOpcode() == ISD::SREM;
2051 bool isDiv = N.getOpcode() == ISD::SDIV || N.getOpcode() == ISD::UDIV;
2052 unsigned LoReg, HiReg, DivOpcode, MovOpcode, ClrOpcode, SExtOpcode;
2053 switch (N.getValueType()) {
2054 default: assert(0 && "Cannot sdiv this type!");
2055 case MVT::i8:
2056 DivOpcode = isSigned ? X86::IDIV8r : X86::DIV8r;
2057 LoReg = X86::AL;
2058 HiReg = X86::AH;
2059 MovOpcode = X86::MOV8rr;
2060 ClrOpcode = X86::MOV8ri;
2061 SExtOpcode = X86::CBW;
2062 break;
2063 case MVT::i16:
2064 DivOpcode = isSigned ? X86::IDIV16r : X86::DIV16r;
2065 LoReg = X86::AX;
2066 HiReg = X86::DX;
2067 MovOpcode = X86::MOV16rr;
2068 ClrOpcode = X86::MOV16ri;
2069 SExtOpcode = X86::CWD;
2070 break;
2071 case MVT::i32:
2072 DivOpcode = isSigned ? X86::IDIV32r : X86::DIV32r;
Chris Lattner42928302005-01-12 03:16:09 +00002073 LoReg = X86::EAX;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002074 HiReg = X86::EDX;
2075 MovOpcode = X86::MOV32rr;
2076 ClrOpcode = X86::MOV32ri;
2077 SExtOpcode = X86::CDQ;
2078 break;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002079 case MVT::f64:
Chris Lattnerda2ce112005-01-16 07:34:08 +00002080 BuildMI(BB, X86::FpDIV, 2, Result).addReg(Tmp1).addReg(Tmp2);
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002081 return Result;
2082 }
2083
2084 // Set up the low part.
2085 BuildMI(BB, MovOpcode, 1, LoReg).addReg(Tmp1);
2086
2087 if (isSigned) {
2088 // Sign extend the low part into the high part.
2089 BuildMI(BB, SExtOpcode, 0);
2090 } else {
2091 // Zero out the high part, effectively zero extending the input.
2092 BuildMI(BB, ClrOpcode, 1, HiReg).addImm(0);
2093 }
2094
2095 // Emit the DIV/IDIV instruction.
2096 BuildMI(BB, DivOpcode, 1).addReg(Tmp2);
2097
2098 // Get the result of the divide or rem.
2099 BuildMI(BB, MovOpcode, 1, Result).addReg(isDiv ? LoReg : HiReg);
2100 return Result;
2101 }
2102
2103 case ISD::SHL:
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002104 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
Chris Lattnera5ade062005-01-11 21:19:59 +00002105 if (CN->getValue() == 1) { // X = SHL Y, 1 -> X = ADD Y, Y
2106 switch (N.getValueType()) {
2107 default: assert(0 && "Cannot shift this type!");
2108 case MVT::i8: Opc = X86::ADD8rr; break;
2109 case MVT::i16: Opc = X86::ADD16rr; break;
2110 case MVT::i32: Opc = X86::ADD32rr; break;
2111 }
2112 Tmp1 = SelectExpr(N.getOperand(0));
2113 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp1);
2114 return Result;
2115 }
2116
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002117 switch (N.getValueType()) {
2118 default: assert(0 && "Cannot shift this type!");
2119 case MVT::i8: Opc = X86::SHL8ri; break;
2120 case MVT::i16: Opc = X86::SHL16ri; break;
2121 case MVT::i32: Opc = X86::SHL32ri; break;
2122 }
Chris Lattner11333092005-01-11 03:11:44 +00002123 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002124 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(CN->getValue());
2125 return Result;
2126 }
Chris Lattner11333092005-01-11 03:11:44 +00002127
2128 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2129 Tmp1 = SelectExpr(N.getOperand(0));
2130 Tmp2 = SelectExpr(N.getOperand(1));
2131 } else {
2132 Tmp2 = SelectExpr(N.getOperand(1));
2133 Tmp1 = SelectExpr(N.getOperand(0));
2134 }
2135
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002136 switch (N.getValueType()) {
2137 default: assert(0 && "Cannot shift this type!");
2138 case MVT::i8 : Opc = X86::SHL8rCL; break;
2139 case MVT::i16: Opc = X86::SHL16rCL; break;
2140 case MVT::i32: Opc = X86::SHL32rCL; break;
2141 }
2142 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(Tmp2);
2143 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
2144 return Result;
2145 case ISD::SRL:
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002146 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
2147 switch (N.getValueType()) {
2148 default: assert(0 && "Cannot shift this type!");
2149 case MVT::i8: Opc = X86::SHR8ri; break;
2150 case MVT::i16: Opc = X86::SHR16ri; break;
2151 case MVT::i32: Opc = X86::SHR32ri; break;
2152 }
Chris Lattner11333092005-01-11 03:11:44 +00002153 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002154 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(CN->getValue());
2155 return Result;
2156 }
Chris Lattner11333092005-01-11 03:11:44 +00002157
2158 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2159 Tmp1 = SelectExpr(N.getOperand(0));
2160 Tmp2 = SelectExpr(N.getOperand(1));
2161 } else {
2162 Tmp2 = SelectExpr(N.getOperand(1));
2163 Tmp1 = SelectExpr(N.getOperand(0));
2164 }
2165
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002166 switch (N.getValueType()) {
2167 default: assert(0 && "Cannot shift this type!");
2168 case MVT::i8 : Opc = X86::SHR8rCL; break;
2169 case MVT::i16: Opc = X86::SHR16rCL; break;
2170 case MVT::i32: Opc = X86::SHR32rCL; break;
2171 }
2172 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(Tmp2);
2173 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
2174 return Result;
2175 case ISD::SRA:
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002176 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
2177 switch (N.getValueType()) {
2178 default: assert(0 && "Cannot shift this type!");
2179 case MVT::i8: Opc = X86::SAR8ri; break;
2180 case MVT::i16: Opc = X86::SAR16ri; break;
2181 case MVT::i32: Opc = X86::SAR32ri; break;
2182 }
Chris Lattner11333092005-01-11 03:11:44 +00002183 Tmp1 = SelectExpr(N.getOperand(0));
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002184 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(CN->getValue());
2185 return Result;
2186 }
Chris Lattner11333092005-01-11 03:11:44 +00002187
2188 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2189 Tmp1 = SelectExpr(N.getOperand(0));
2190 Tmp2 = SelectExpr(N.getOperand(1));
2191 } else {
2192 Tmp2 = SelectExpr(N.getOperand(1));
2193 Tmp1 = SelectExpr(N.getOperand(0));
2194 }
2195
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002196 switch (N.getValueType()) {
2197 default: assert(0 && "Cannot shift this type!");
2198 case MVT::i8 : Opc = X86::SAR8rCL; break;
2199 case MVT::i16: Opc = X86::SAR16rCL; break;
2200 case MVT::i32: Opc = X86::SAR32rCL; break;
2201 }
2202 BuildMI(BB, X86::MOV8rr, 1, X86::CL).addReg(Tmp2);
2203 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
2204 return Result;
2205
2206 case ISD::SETCC:
Chris Lattnercb1aa8d2005-01-17 01:34:14 +00002207 EmitCMP(N.getOperand(0), N.getOperand(1), Node->hasOneUse());
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002208 EmitSetCC(BB, Result, cast<SetCCSDNode>(N)->getCondition(),
2209 MVT::isFloatingPoint(N.getOperand(1).getValueType()));
2210 return Result;
Chris Lattnere9ef81d2005-01-15 05:22:24 +00002211 case ISD::LOAD:
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002212 // Make sure we generate both values.
Chris Lattner4a108662005-01-18 03:51:59 +00002213 if (Result != 1) { // Generate the token
2214 if (!ExprMap.insert(std::make_pair(N.getValue(1), 1)).second)
2215 assert(0 && "Load already emitted!?");
2216 } else
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002217 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
2218
Chris Lattner5188ad72005-01-08 19:28:19 +00002219 switch (Node->getValueType(0)) {
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002220 default: assert(0 && "Cannot load this type!");
2221 case MVT::i1:
2222 case MVT::i8: Opc = X86::MOV8rm; break;
2223 case MVT::i16: Opc = X86::MOV16rm; break;
2224 case MVT::i32: Opc = X86::MOV32rm; break;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002225 case MVT::f64: Opc = X86::FLD64m; ContainsFPCode = true; break;
2226 }
Chris Lattner11333092005-01-11 03:11:44 +00002227
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002228 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N.getOperand(1))){
Chris Lattner11333092005-01-11 03:11:44 +00002229 Select(N.getOperand(0));
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002230 addConstantPoolReference(BuildMI(BB, Opc, 4, Result), CP->getIndex());
2231 } else {
2232 X86AddressMode AM;
Chris Lattner636e79a2005-01-13 05:53:16 +00002233
2234 SDOperand Chain = N.getOperand(0);
2235 SDOperand Address = N.getOperand(1);
2236 if (getRegPressure(Chain) > getRegPressure(Address)) {
2237 Select(Chain);
2238 SelectAddress(Address, AM);
2239 } else {
2240 SelectAddress(Address, AM);
2241 Select(Chain);
2242 }
2243
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002244 addFullAddress(BuildMI(BB, Opc, 4, Result), AM);
2245 }
2246 return Result;
Chris Lattnere9ef81d2005-01-15 05:22:24 +00002247
2248 case ISD::EXTLOAD: // Arbitrarily codegen extloads as MOVZX*
2249 case ISD::ZEXTLOAD: {
2250 // Make sure we generate both values.
2251 if (Result != 1)
2252 ExprMap[N.getValue(1)] = 1; // Generate the token
2253 else
2254 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
2255
Chris Lattnerda2ce112005-01-16 07:34:08 +00002256 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N.getOperand(1)))
2257 if (Node->getValueType(0) == MVT::f64) {
2258 assert(cast<MVTSDNode>(Node)->getExtraValueType() == MVT::f32 &&
2259 "Bad EXTLOAD!");
2260 addConstantPoolReference(BuildMI(BB, X86::FLD32m, 4, Result),
2261 CP->getIndex());
2262 return Result;
2263 }
2264
Chris Lattnere9ef81d2005-01-15 05:22:24 +00002265 X86AddressMode AM;
2266 if (getRegPressure(Node->getOperand(0)) >
2267 getRegPressure(Node->getOperand(1))) {
2268 Select(Node->getOperand(0)); // chain
2269 SelectAddress(Node->getOperand(1), AM);
2270 } else {
2271 SelectAddress(Node->getOperand(1), AM);
2272 Select(Node->getOperand(0)); // chain
2273 }
2274
2275 switch (Node->getValueType(0)) {
2276 default: assert(0 && "Unknown type to sign extend to.");
2277 case MVT::f64:
2278 assert(cast<MVTSDNode>(Node)->getExtraValueType() == MVT::f32 &&
2279 "Bad EXTLOAD!");
2280 addFullAddress(BuildMI(BB, X86::FLD32m, 5, Result), AM);
2281 break;
2282 case MVT::i32:
2283 switch (cast<MVTSDNode>(Node)->getExtraValueType()) {
2284 default:
2285 assert(0 && "Bad zero extend!");
2286 case MVT::i1:
2287 case MVT::i8:
2288 addFullAddress(BuildMI(BB, X86::MOVZX32rm8, 5, Result), AM);
2289 break;
2290 case MVT::i16:
2291 addFullAddress(BuildMI(BB, X86::MOVZX32rm16, 5, Result), AM);
2292 break;
2293 }
2294 break;
2295 case MVT::i16:
2296 assert(cast<MVTSDNode>(Node)->getExtraValueType() <= MVT::i8 &&
2297 "Bad zero extend!");
2298 addFullAddress(BuildMI(BB, X86::MOVSX16rm8, 5, Result), AM);
2299 break;
2300 case MVT::i8:
2301 assert(cast<MVTSDNode>(Node)->getExtraValueType() == MVT::i1 &&
2302 "Bad zero extend!");
2303 addFullAddress(BuildMI(BB, X86::MOV8rm, 5, Result), AM);
2304 break;
2305 }
2306 return Result;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002307 }
Chris Lattnere9ef81d2005-01-15 05:22:24 +00002308 case ISD::SEXTLOAD: {
2309 // Make sure we generate both values.
2310 if (Result != 1)
2311 ExprMap[N.getValue(1)] = 1; // Generate the token
2312 else
2313 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
2314
2315 X86AddressMode AM;
2316 if (getRegPressure(Node->getOperand(0)) >
2317 getRegPressure(Node->getOperand(1))) {
2318 Select(Node->getOperand(0)); // chain
2319 SelectAddress(Node->getOperand(1), AM);
2320 } else {
2321 SelectAddress(Node->getOperand(1), AM);
2322 Select(Node->getOperand(0)); // chain
2323 }
2324
2325 switch (Node->getValueType(0)) {
2326 case MVT::i8: assert(0 && "Cannot sign extend from bool!");
2327 default: assert(0 && "Unknown type to sign extend to.");
2328 case MVT::i32:
2329 switch (cast<MVTSDNode>(Node)->getExtraValueType()) {
2330 default:
2331 case MVT::i1: assert(0 && "Cannot sign extend from bool!");
2332 case MVT::i8:
2333 addFullAddress(BuildMI(BB, X86::MOVSX32rm8, 5, Result), AM);
2334 break;
2335 case MVT::i16:
2336 addFullAddress(BuildMI(BB, X86::MOVSX32rm16, 5, Result), AM);
2337 break;
2338 }
2339 break;
2340 case MVT::i16:
2341 assert(cast<MVTSDNode>(Node)->getExtraValueType() == MVT::i8 &&
2342 "Cannot sign extend from bool!");
2343 addFullAddress(BuildMI(BB, X86::MOVSX16rm8, 5, Result), AM);
2344 break;
2345 }
2346 return Result;
2347 }
2348
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002349 case ISD::DYNAMIC_STACKALLOC:
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002350 // Generate both result values.
2351 if (Result != 1)
2352 ExprMap[N.getValue(1)] = 1; // Generate the token
2353 else
2354 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
2355
2356 // FIXME: We are currently ignoring the requested alignment for handling
2357 // greater than the stack alignment. This will need to be revisited at some
2358 // point. Align = N.getOperand(2);
2359
2360 if (!isa<ConstantSDNode>(N.getOperand(2)) ||
2361 cast<ConstantSDNode>(N.getOperand(2))->getValue() != 0) {
2362 std::cerr << "Cannot allocate stack object with greater alignment than"
2363 << " the stack alignment yet!";
2364 abort();
2365 }
2366
2367 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
Chris Lattner11333092005-01-11 03:11:44 +00002368 Select(N.getOperand(0));
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002369 BuildMI(BB, X86::SUB32ri, 2, X86::ESP).addReg(X86::ESP)
2370 .addImm(CN->getValue());
2371 } else {
Chris Lattner11333092005-01-11 03:11:44 +00002372 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2373 Select(N.getOperand(0));
2374 Tmp1 = SelectExpr(N.getOperand(1));
2375 } else {
2376 Tmp1 = SelectExpr(N.getOperand(1));
2377 Select(N.getOperand(0));
2378 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002379
2380 // Subtract size from stack pointer, thereby allocating some space.
2381 BuildMI(BB, X86::SUB32rr, 2, X86::ESP).addReg(X86::ESP).addReg(Tmp1);
2382 }
2383
2384 // Put a pointer to the space into the result register, by copying the stack
2385 // pointer.
2386 BuildMI(BB, X86::MOV32rr, 1, Result).addReg(X86::ESP);
2387 return Result;
2388
2389 case ISD::CALL:
Chris Lattner5188ad72005-01-08 19:28:19 +00002390 // The chain for this call is now lowered.
Chris Lattner4a108662005-01-18 03:51:59 +00002391 ExprMap.insert(std::make_pair(N.getValue(Node->getNumValues()-1), 1));
Chris Lattner5188ad72005-01-08 19:28:19 +00002392
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002393 if (GlobalAddressSDNode *GASD =
2394 dyn_cast<GlobalAddressSDNode>(N.getOperand(1))) {
Chris Lattner11333092005-01-11 03:11:44 +00002395 Select(N.getOperand(0));
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002396 BuildMI(BB, X86::CALLpcrel32, 1).addGlobalAddress(GASD->getGlobal(),true);
2397 } else if (ExternalSymbolSDNode *ESSDN =
2398 dyn_cast<ExternalSymbolSDNode>(N.getOperand(1))) {
Chris Lattner11333092005-01-11 03:11:44 +00002399 Select(N.getOperand(0));
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002400 BuildMI(BB, X86::CALLpcrel32,
2401 1).addExternalSymbol(ESSDN->getSymbol(), true);
2402 } else {
Chris Lattner11333092005-01-11 03:11:44 +00002403 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2404 Select(N.getOperand(0));
2405 Tmp1 = SelectExpr(N.getOperand(1));
2406 } else {
2407 Tmp1 = SelectExpr(N.getOperand(1));
2408 Select(N.getOperand(0));
2409 }
2410
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002411 BuildMI(BB, X86::CALL32r, 1).addReg(Tmp1);
2412 }
Chris Lattner5188ad72005-01-08 19:28:19 +00002413 switch (Node->getValueType(0)) {
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002414 default: assert(0 && "Unknown value type for call result!");
2415 case MVT::Other: return 1;
2416 case MVT::i1:
2417 case MVT::i8:
2418 BuildMI(BB, X86::MOV8rr, 1, Result).addReg(X86::AL);
2419 break;
2420 case MVT::i16:
2421 BuildMI(BB, X86::MOV16rr, 1, Result).addReg(X86::AX);
2422 break;
2423 case MVT::i32:
2424 BuildMI(BB, X86::MOV32rr, 1, Result).addReg(X86::EAX);
Chris Lattner5188ad72005-01-08 19:28:19 +00002425 if (Node->getValueType(1) == MVT::i32)
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002426 BuildMI(BB, X86::MOV32rr, 1, Result+1).addReg(X86::EDX);
2427 break;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002428 case MVT::f64: // Floating-point return values live in %ST(0)
2429 ContainsFPCode = true;
2430 BuildMI(BB, X86::FpGETRESULT, 1, Result);
2431 break;
2432 }
2433 return Result+N.ResNo;
2434 }
2435
2436 return 0;
2437}
2438
Chris Lattnere10269b2005-01-17 19:25:26 +00002439/// TryToFoldLoadOpStore - Given a store node, try to fold together a
2440/// load/op/store instruction. If successful return true.
2441bool ISel::TryToFoldLoadOpStore(SDNode *Node) {
2442 assert(Node->getOpcode() == ISD::STORE && "Can only do this for stores!");
2443 SDOperand Chain = Node->getOperand(0);
2444 SDOperand StVal = Node->getOperand(1);
Chris Lattner5c659812005-01-17 22:10:42 +00002445 SDOperand StPtr = Node->getOperand(2);
Chris Lattnere10269b2005-01-17 19:25:26 +00002446
2447 // The chain has to be a load, the stored value must be an integer binary
2448 // operation with one use.
Chris Lattner5c659812005-01-17 22:10:42 +00002449 if (!StVal.Val->hasOneUse() || StVal.Val->getNumOperands() != 2 ||
Chris Lattnere10269b2005-01-17 19:25:26 +00002450 MVT::isFloatingPoint(StVal.getValueType()))
2451 return false;
2452
Chris Lattner5c659812005-01-17 22:10:42 +00002453 // Token chain must either be a factor node or the load to fold.
2454 if (Chain.getOpcode() != ISD::LOAD && Chain.getOpcode() != ISD::TokenFactor)
2455 return false;
Chris Lattnere10269b2005-01-17 19:25:26 +00002456
Chris Lattner5c659812005-01-17 22:10:42 +00002457 SDOperand TheLoad;
2458
2459 // Check to see if there is a load from the same pointer that we're storing
2460 // to in either operand of the binop.
2461 if (StVal.getOperand(0).getOpcode() == ISD::LOAD &&
2462 StVal.getOperand(0).getOperand(1) == StPtr)
2463 TheLoad = StVal.getOperand(0);
2464 else if (StVal.getOperand(1).getOpcode() == ISD::LOAD &&
2465 StVal.getOperand(1).getOperand(1) == StPtr)
2466 TheLoad = StVal.getOperand(1);
2467 else
2468 return false; // No matching load operand.
2469
2470 // We can only fold the load if there are no intervening side-effecting
2471 // operations. This means that the store uses the load as its token chain, or
2472 // there are only token factor nodes in between the store and load.
2473 if (Chain != TheLoad.getValue(1)) {
2474 // Okay, the other option is that we have a store referring to (possibly
2475 // nested) token factor nodes. For now, just try peeking through one level
2476 // of token factors to see if this is the case.
2477 bool ChainOk = false;
2478 if (Chain.getOpcode() == ISD::TokenFactor) {
2479 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
2480 if (Chain.getOperand(i) == TheLoad.getValue(1)) {
2481 ChainOk = true;
2482 break;
2483 }
2484 }
2485
2486 if (!ChainOk) return false;
2487 }
2488
2489 if (TheLoad.getOperand(1) != StPtr)
Chris Lattnere10269b2005-01-17 19:25:26 +00002490 return false;
2491
2492 // Make sure that one of the operands of the binop is the load, and that the
2493 // load folds into the binop.
2494 if (((StVal.getOperand(0) != TheLoad ||
2495 !isFoldableLoad(TheLoad, StVal.getOperand(1))) &&
2496 (StVal.getOperand(1) != TheLoad ||
2497 !isFoldableLoad(TheLoad, StVal.getOperand(0)))))
2498 return false;
2499
2500 // Finally, check to see if this is one of the ops we can handle!
2501 static const unsigned ADDTAB[] = {
2502 X86::ADD8mi, X86::ADD16mi, X86::ADD32mi,
2503 X86::ADD8mr, X86::ADD16mr, X86::ADD32mr,
2504 };
2505 static const unsigned SUBTAB[] = {
2506 X86::SUB8mi, X86::SUB16mi, X86::SUB32mi,
2507 X86::SUB8mr, X86::SUB16mr, X86::SUB32mr,
2508 };
2509 static const unsigned ANDTAB[] = {
2510 X86::AND8mi, X86::AND16mi, X86::AND32mi,
2511 X86::AND8mr, X86::AND16mr, X86::AND32mr,
2512 };
2513 static const unsigned ORTAB[] = {
2514 X86::OR8mi, X86::OR16mi, X86::OR32mi,
2515 X86::OR8mr, X86::OR16mr, X86::OR32mr,
2516 };
2517 static const unsigned XORTAB[] = {
2518 X86::XOR8mi, X86::XOR16mi, X86::XOR32mi,
2519 X86::XOR8mr, X86::XOR16mr, X86::XOR32mr,
2520 };
2521 static const unsigned SHLTAB[] = {
2522 X86::SHL8mi, X86::SHL16mi, X86::SHL32mi,
2523 /*Have to put the reg in CL*/0, 0, 0,
2524 };
2525 static const unsigned SARTAB[] = {
2526 X86::SAR8mi, X86::SAR16mi, X86::SAR32mi,
2527 /*Have to put the reg in CL*/0, 0, 0,
2528 };
2529 static const unsigned SHRTAB[] = {
2530 X86::SHR8mi, X86::SHR16mi, X86::SHR32mi,
2531 /*Have to put the reg in CL*/0, 0, 0,
2532 };
2533
2534 const unsigned *TabPtr = 0;
2535 switch (StVal.getOpcode()) {
2536 default:
2537 std::cerr << "CANNOT [mem] op= val: ";
2538 StVal.Val->dump(); std::cerr << "\n";
2539 case ISD::MUL:
2540 case ISD::SDIV:
2541 case ISD::UDIV:
2542 case ISD::SREM:
2543 case ISD::UREM: return false;
2544
2545 case ISD::ADD: TabPtr = ADDTAB; break;
2546 case ISD::SUB: TabPtr = SUBTAB; break;
2547 case ISD::AND: TabPtr = ANDTAB; break;
2548 case ISD:: OR: TabPtr = ORTAB; break;
2549 case ISD::XOR: TabPtr = XORTAB; break;
2550 case ISD::SHL: TabPtr = SHLTAB; break;
2551 case ISD::SRA: TabPtr = SARTAB; break;
2552 case ISD::SRL: TabPtr = SHRTAB; break;
2553 }
2554
2555 // Handle: [mem] op= CST
2556 SDOperand Op0 = StVal.getOperand(0);
2557 SDOperand Op1 = StVal.getOperand(1);
2558 unsigned Opc;
2559 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op1)) {
2560 switch (Op0.getValueType()) { // Use Op0's type because of shifts.
2561 default: break;
2562 case MVT::i1:
2563 case MVT::i8: Opc = TabPtr[0]; break;
2564 case MVT::i16: Opc = TabPtr[1]; break;
2565 case MVT::i32: Opc = TabPtr[2]; break;
2566 }
2567
2568 if (Opc) {
Chris Lattner4a108662005-01-18 03:51:59 +00002569 if (!ExprMap.insert(std::make_pair(TheLoad.getValue(1), 1)).second)
2570 assert(0 && "Already emitted?");
Chris Lattner5c659812005-01-17 22:10:42 +00002571 Select(Chain);
2572
Chris Lattnere10269b2005-01-17 19:25:26 +00002573 X86AddressMode AM;
2574 if (getRegPressure(TheLoad.getOperand(0)) >
2575 getRegPressure(TheLoad.getOperand(1))) {
2576 Select(TheLoad.getOperand(0));
2577 SelectAddress(TheLoad.getOperand(1), AM);
2578 } else {
2579 SelectAddress(TheLoad.getOperand(1), AM);
2580 Select(TheLoad.getOperand(0));
2581 }
Chris Lattner5c659812005-01-17 22:10:42 +00002582
2583 if (StVal.getOpcode() == ISD::ADD) {
2584 if (CN->getValue() == 1) {
2585 switch (Op0.getValueType()) {
2586 default: break;
2587 case MVT::i8:
2588 addFullAddress(BuildMI(BB, X86::INC8m, 4), AM);
2589 return true;
2590 case MVT::i16: Opc = TabPtr[1];
2591 addFullAddress(BuildMI(BB, X86::INC16m, 4), AM);
2592 return true;
2593 case MVT::i32: Opc = TabPtr[2];
2594 addFullAddress(BuildMI(BB, X86::INC32m, 4), AM);
2595 return true;
2596 }
2597 } else if (CN->getValue()+1 == 0) { // [X] += -1 -> DEC [X]
2598 switch (Op0.getValueType()) {
2599 default: break;
2600 case MVT::i8:
2601 addFullAddress(BuildMI(BB, X86::DEC8m, 4), AM);
2602 return true;
2603 case MVT::i16: Opc = TabPtr[1];
2604 addFullAddress(BuildMI(BB, X86::DEC16m, 4), AM);
2605 return true;
2606 case MVT::i32: Opc = TabPtr[2];
2607 addFullAddress(BuildMI(BB, X86::DEC32m, 4), AM);
2608 return true;
2609 }
2610 }
2611 }
Chris Lattnere10269b2005-01-17 19:25:26 +00002612
2613 addFullAddress(BuildMI(BB, Opc, 4+1),AM).addImm(CN->getValue());
2614 return true;
2615 }
2616 }
2617
2618 // If we have [mem] = V op [mem], try to turn it into:
2619 // [mem] = [mem] op V.
2620 if (Op1 == TheLoad && StVal.getOpcode() != ISD::SUB &&
2621 StVal.getOpcode() != ISD::SHL && StVal.getOpcode() != ISD::SRA &&
2622 StVal.getOpcode() != ISD::SRL)
2623 std::swap(Op0, Op1);
2624
2625 if (Op0 != TheLoad) return false;
2626
2627 switch (Op0.getValueType()) {
2628 default: return false;
2629 case MVT::i1:
2630 case MVT::i8: Opc = TabPtr[3]; break;
2631 case MVT::i16: Opc = TabPtr[4]; break;
2632 case MVT::i32: Opc = TabPtr[5]; break;
2633 }
Chris Lattner5c659812005-01-17 22:10:42 +00002634
Chris Lattnerb422aea2005-01-18 17:35:28 +00002635 // Table entry doesn't exist?
2636 if (Opc == 0) return false;
2637
Chris Lattner4a108662005-01-18 03:51:59 +00002638 if (!ExprMap.insert(std::make_pair(TheLoad.getValue(1), 1)).second)
2639 assert(0 && "Already emitted?");
Chris Lattner5c659812005-01-17 22:10:42 +00002640 Select(Chain);
Chris Lattnere10269b2005-01-17 19:25:26 +00002641 Select(TheLoad.getOperand(0));
Chris Lattner98a8ba02005-01-18 01:06:26 +00002642
Chris Lattnere10269b2005-01-17 19:25:26 +00002643 X86AddressMode AM;
2644 SelectAddress(TheLoad.getOperand(1), AM);
2645 unsigned Reg = SelectExpr(Op1);
Chris Lattner98a8ba02005-01-18 01:06:26 +00002646 addFullAddress(BuildMI(BB, Opc, 4+1), AM).addReg(Reg);
Chris Lattnere10269b2005-01-17 19:25:26 +00002647 return true;
2648}
2649
2650
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002651void ISel::Select(SDOperand N) {
2652 unsigned Tmp1, Tmp2, Opc;
2653
2654 // FIXME: Disable for our current expansion model!
Chris Lattner4a108662005-01-18 03:51:59 +00002655 if (/*!N->hasOneUse() &&*/ !ExprMap.insert(std::make_pair(N, 1)).second)
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002656 return; // Already selected.
2657
Chris Lattner989de032005-01-11 06:14:36 +00002658 SDNode *Node = N.Val;
2659
2660 switch (Node->getOpcode()) {
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002661 default:
Chris Lattner989de032005-01-11 06:14:36 +00002662 Node->dump(); std::cerr << "\n";
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002663 assert(0 && "Node not handled yet!");
2664 case ISD::EntryToken: return; // Noop
Chris Lattnerc3580712005-01-13 18:01:36 +00002665 case ISD::TokenFactor:
Chris Lattner1d50b7f2005-01-13 19:56:00 +00002666 if (Node->getNumOperands() == 2) {
2667 bool OneFirst =
2668 getRegPressure(Node->getOperand(1))>getRegPressure(Node->getOperand(0));
2669 Select(Node->getOperand(OneFirst));
2670 Select(Node->getOperand(!OneFirst));
2671 } else {
2672 std::vector<std::pair<unsigned, unsigned> > OpsP;
2673 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
2674 OpsP.push_back(std::make_pair(getRegPressure(Node->getOperand(i)), i));
2675 std::sort(OpsP.begin(), OpsP.end());
2676 std::reverse(OpsP.begin(), OpsP.end());
2677 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
2678 Select(Node->getOperand(OpsP[i].second));
2679 }
Chris Lattnerc3580712005-01-13 18:01:36 +00002680 return;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002681 case ISD::CopyToReg:
Chris Lattneref6806c2005-01-12 02:02:48 +00002682 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2683 Select(N.getOperand(0));
2684 Tmp1 = SelectExpr(N.getOperand(1));
2685 } else {
2686 Tmp1 = SelectExpr(N.getOperand(1));
2687 Select(N.getOperand(0));
2688 }
Chris Lattner18c2f132005-01-13 20:50:02 +00002689 Tmp2 = cast<RegSDNode>(N)->getReg();
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002690
2691 if (Tmp1 != Tmp2) {
2692 switch (N.getOperand(1).getValueType()) {
2693 default: assert(0 && "Invalid type for operation!");
2694 case MVT::i1:
2695 case MVT::i8: Opc = X86::MOV8rr; break;
2696 case MVT::i16: Opc = X86::MOV16rr; break;
2697 case MVT::i32: Opc = X86::MOV32rr; break;
Chris Lattneref7ba072005-01-11 03:50:45 +00002698 case MVT::f64: Opc = X86::FpMOV; ContainsFPCode = true; break;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002699 }
2700 BuildMI(BB, Opc, 1, Tmp2).addReg(Tmp1);
2701 }
2702 return;
2703 case ISD::RET:
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002704 switch (N.getNumOperands()) {
2705 default:
2706 assert(0 && "Unknown return instruction!");
2707 case 3:
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002708 assert(N.getOperand(1).getValueType() == MVT::i32 &&
2709 N.getOperand(2).getValueType() == MVT::i32 &&
2710 "Unknown two-register value!");
Chris Lattner11333092005-01-11 03:11:44 +00002711 if (getRegPressure(N.getOperand(1)) > getRegPressure(N.getOperand(2))) {
2712 Tmp1 = SelectExpr(N.getOperand(1));
2713 Tmp2 = SelectExpr(N.getOperand(2));
2714 } else {
2715 Tmp2 = SelectExpr(N.getOperand(2));
2716 Tmp1 = SelectExpr(N.getOperand(1));
2717 }
2718 Select(N.getOperand(0));
2719
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002720 BuildMI(BB, X86::MOV32rr, 1, X86::EAX).addReg(Tmp1);
2721 BuildMI(BB, X86::MOV32rr, 1, X86::EDX).addReg(Tmp2);
2722 // Declare that EAX & EDX are live on exit.
2723 BuildMI(BB, X86::IMPLICIT_USE, 3).addReg(X86::EAX).addReg(X86::EDX)
2724 .addReg(X86::ESP);
2725 break;
2726 case 2:
Chris Lattner11333092005-01-11 03:11:44 +00002727 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2728 Select(N.getOperand(0));
2729 Tmp1 = SelectExpr(N.getOperand(1));
2730 } else {
2731 Tmp1 = SelectExpr(N.getOperand(1));
2732 Select(N.getOperand(0));
2733 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002734 switch (N.getOperand(1).getValueType()) {
2735 default: assert(0 && "All other types should have been promoted!!");
2736 case MVT::f64:
2737 BuildMI(BB, X86::FpSETRESULT, 1).addReg(Tmp1);
2738 // Declare that top-of-stack is live on exit
2739 BuildMI(BB, X86::IMPLICIT_USE, 2).addReg(X86::ST0).addReg(X86::ESP);
2740 break;
2741 case MVT::i32:
2742 BuildMI(BB, X86::MOV32rr, 1, X86::EAX).addReg(Tmp1);
2743 BuildMI(BB, X86::IMPLICIT_USE, 2).addReg(X86::EAX).addReg(X86::ESP);
2744 break;
2745 }
2746 break;
2747 case 1:
Chris Lattner11333092005-01-11 03:11:44 +00002748 Select(N.getOperand(0));
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002749 break;
2750 }
2751 BuildMI(BB, X86::RET, 0); // Just emit a 'ret' instruction
2752 return;
2753 case ISD::BR: {
2754 Select(N.getOperand(0));
2755 MachineBasicBlock *Dest =
2756 cast<BasicBlockSDNode>(N.getOperand(1))->getBasicBlock();
2757 BuildMI(BB, X86::JMP, 1).addMBB(Dest);
2758 return;
2759 }
2760
2761 case ISD::BRCOND: {
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002762 MachineBasicBlock *Dest =
2763 cast<BasicBlockSDNode>(N.getOperand(2))->getBasicBlock();
Chris Lattner11333092005-01-11 03:11:44 +00002764
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002765 // Try to fold a setcc into the branch. If this fails, emit a test/jne
2766 // pair.
Chris Lattner6c07aee2005-01-11 04:06:27 +00002767 if (EmitBranchCC(Dest, N.getOperand(0), N.getOperand(1))) {
2768 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(1))) {
2769 Select(N.getOperand(0));
2770 Tmp1 = SelectExpr(N.getOperand(1));
2771 } else {
2772 Tmp1 = SelectExpr(N.getOperand(1));
2773 Select(N.getOperand(0));
2774 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002775 BuildMI(BB, X86::TEST8rr, 2).addReg(Tmp1).addReg(Tmp1);
2776 BuildMI(BB, X86::JNE, 1).addMBB(Dest);
2777 }
Chris Lattner11333092005-01-11 03:11:44 +00002778
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002779 return;
2780 }
Chris Lattnere9ef81d2005-01-15 05:22:24 +00002781
Chris Lattner4df0de92005-01-17 00:00:33 +00002782 case ISD::LOAD:
2783 // If this load could be folded into the only using instruction, and if it
2784 // is safe to emit the instruction here, try to do so now.
2785 if (Node->hasNUsesOfValue(1, 0)) {
2786 SDOperand TheVal = N.getValue(0);
2787 SDNode *User = 0;
2788 for (SDNode::use_iterator UI = Node->use_begin(); ; ++UI) {
2789 assert(UI != Node->use_end() && "Didn't find use!");
2790 SDNode *UN = *UI;
2791 for (unsigned i = 0, e = UN->getNumOperands(); i != e; ++i)
2792 if (UN->getOperand(i) == TheVal) {
2793 User = UN;
2794 goto FoundIt;
2795 }
2796 }
2797 FoundIt:
2798 // Only handle unary operators right now.
2799 if (User->getNumOperands() == 1) {
Chris Lattner4a108662005-01-18 03:51:59 +00002800 ExprMap.erase(N);
Chris Lattner4df0de92005-01-17 00:00:33 +00002801 SelectExpr(SDOperand(User, 0));
2802 return;
2803 }
2804 }
Chris Lattnerb71f8fc2005-01-18 04:00:54 +00002805 ExprMap.erase(N);
Chris Lattner4df0de92005-01-17 00:00:33 +00002806 SelectExpr(N);
2807 return;
2808
Chris Lattnere9ef81d2005-01-15 05:22:24 +00002809 case ISD::EXTLOAD:
2810 case ISD::SEXTLOAD:
2811 case ISD::ZEXTLOAD:
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002812 case ISD::CALL:
2813 case ISD::DYNAMIC_STACKALLOC:
Chris Lattnerb71f8fc2005-01-18 04:00:54 +00002814 ExprMap.erase(N);
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002815 SelectExpr(N);
2816 return;
Chris Lattnere9ef81d2005-01-15 05:22:24 +00002817
2818 case ISD::TRUNCSTORE: { // truncstore chain, val, ptr :storety
2819 // On X86, we can represent all types except for Bool and Float natively.
2820 X86AddressMode AM;
2821 MVT::ValueType StoredTy = cast<MVTSDNode>(Node)->getExtraValueType();
Chris Lattnerda2ce112005-01-16 07:34:08 +00002822 assert((StoredTy == MVT::i1 || StoredTy == MVT::f32 ||
2823 StoredTy == MVT::i16 /*FIXME: THIS IS JUST FOR TESTING!*/)
2824 && "Unsupported TRUNCSTORE for this target!");
2825
2826 if (StoredTy == MVT::i16) {
2827 // FIXME: This is here just to allow testing. X86 doesn't really have a
2828 // TRUNCSTORE i16 operation, but this is required for targets that do not
2829 // have 16-bit integer registers. We occasionally disable 16-bit integer
2830 // registers to test the promotion code.
2831 Select(N.getOperand(0));
2832 Tmp1 = SelectExpr(N.getOperand(1));
2833 SelectAddress(N.getOperand(2), AM);
2834
2835 BuildMI(BB, X86::MOV32rr, 1, X86::EAX).addReg(Tmp1);
2836 addFullAddress(BuildMI(BB, X86::MOV16mr, 5), AM).addReg(X86::AX);
2837 return;
2838 }
Chris Lattnere9ef81d2005-01-15 05:22:24 +00002839
2840 // Store of constant bool?
2841 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
2842 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(2))) {
2843 Select(N.getOperand(0));
2844 SelectAddress(N.getOperand(2), AM);
2845 } else {
2846 SelectAddress(N.getOperand(2), AM);
2847 Select(N.getOperand(0));
2848 }
2849 addFullAddress(BuildMI(BB, X86::MOV8mi, 5), AM).addImm(CN->getValue());
2850 return;
2851 }
2852
2853 switch (StoredTy) {
2854 default: assert(0 && "Cannot truncstore this type!");
2855 case MVT::i1: Opc = X86::MOV8mr; break;
2856 case MVT::f32: Opc = X86::FST32m; break;
2857 }
2858
2859 std::vector<std::pair<unsigned, unsigned> > RP;
2860 RP.push_back(std::make_pair(getRegPressure(N.getOperand(0)), 0));
2861 RP.push_back(std::make_pair(getRegPressure(N.getOperand(1)), 1));
2862 RP.push_back(std::make_pair(getRegPressure(N.getOperand(2)), 2));
2863 std::sort(RP.begin(), RP.end());
2864
2865 for (unsigned i = 0; i != 3; ++i)
2866 switch (RP[2-i].second) {
2867 default: assert(0 && "Unknown operand number!");
2868 case 0: Select(N.getOperand(0)); break;
2869 case 1: Tmp1 = SelectExpr(N.getOperand(1)); break;
2870 case 2: SelectAddress(N.getOperand(2), AM); break;
2871 }
2872
2873 addFullAddress(BuildMI(BB, Opc, 4+1), AM).addReg(Tmp1);
2874 return;
2875 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002876 case ISD::STORE: {
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002877 X86AddressMode AM;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002878
2879 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
2880 Opc = 0;
2881 switch (CN->getValueType(0)) {
2882 default: assert(0 && "Invalid type for operation!");
2883 case MVT::i1:
2884 case MVT::i8: Opc = X86::MOV8mi; break;
2885 case MVT::i16: Opc = X86::MOV16mi; break;
2886 case MVT::i32: Opc = X86::MOV32mi; break;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002887 case MVT::f64: break;
2888 }
2889 if (Opc) {
Chris Lattner11333092005-01-11 03:11:44 +00002890 if (getRegPressure(N.getOperand(0)) > getRegPressure(N.getOperand(2))) {
2891 Select(N.getOperand(0));
2892 SelectAddress(N.getOperand(2), AM);
2893 } else {
2894 SelectAddress(N.getOperand(2), AM);
2895 Select(N.getOperand(0));
2896 }
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002897 addFullAddress(BuildMI(BB, Opc, 4+1), AM).addImm(CN->getValue());
2898 return;
2899 }
2900 }
Chris Lattner837caa72005-01-11 23:21:30 +00002901
2902 // Check to see if this is a load/op/store combination.
Chris Lattnere10269b2005-01-17 19:25:26 +00002903 if (TryToFoldLoadOpStore(Node))
2904 return;
Chris Lattner837caa72005-01-11 23:21:30 +00002905
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002906 switch (N.getOperand(1).getValueType()) {
2907 default: assert(0 && "Cannot store this type!");
2908 case MVT::i1:
2909 case MVT::i8: Opc = X86::MOV8mr; break;
2910 case MVT::i16: Opc = X86::MOV16mr; break;
2911 case MVT::i32: Opc = X86::MOV32mr; break;
Chris Lattneref7ba072005-01-11 03:50:45 +00002912 case MVT::f64: Opc = X86::FST64m; break;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002913 }
Chris Lattner11333092005-01-11 03:11:44 +00002914
2915 std::vector<std::pair<unsigned, unsigned> > RP;
2916 RP.push_back(std::make_pair(getRegPressure(N.getOperand(0)), 0));
2917 RP.push_back(std::make_pair(getRegPressure(N.getOperand(1)), 1));
2918 RP.push_back(std::make_pair(getRegPressure(N.getOperand(2)), 2));
2919 std::sort(RP.begin(), RP.end());
2920
2921 for (unsigned i = 0; i != 3; ++i)
2922 switch (RP[2-i].second) {
2923 default: assert(0 && "Unknown operand number!");
2924 case 0: Select(N.getOperand(0)); break;
2925 case 1: Tmp1 = SelectExpr(N.getOperand(1)); break;
Chris Lattnera3aa2e22005-01-11 03:37:59 +00002926 case 2: SelectAddress(N.getOperand(2), AM); break;
Chris Lattner11333092005-01-11 03:11:44 +00002927 }
2928
Chris Lattner8acb1ba2005-01-07 07:49:41 +00002929 addFullAddress(BuildMI(BB, Opc, 4+1), AM).addReg(Tmp1);
2930 return;
2931 }
2932 case ISD::ADJCALLSTACKDOWN:
2933 case ISD::ADJCALLSTACKUP:
2934 Select(N.getOperand(0));
2935 Tmp1 = cast<ConstantSDNode>(N.getOperand(1))->getValue();
2936
2937 Opc = N.getOpcode() == ISD::ADJCALLSTACKDOWN ? X86::ADJCALLSTACKDOWN :
2938 X86::ADJCALLSTACKUP;
2939 BuildMI(BB, Opc, 1).addImm(Tmp1);
2940 return;
Chris Lattner989de032005-01-11 06:14:36 +00002941 case ISD::MEMSET: {
2942 Select(N.getOperand(0)); // Select the chain.
2943 unsigned Align =
2944 (unsigned)cast<ConstantSDNode>(Node->getOperand(4))->getValue();
2945 if (Align == 0) Align = 1;
2946
2947 // Turn the byte code into # iterations
2948 unsigned CountReg;
2949 unsigned Opcode;
2950 if (ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
2951 unsigned Val = ValC->getValue() & 255;
2952
2953 // If the value is a constant, then we can potentially use larger sets.
2954 switch (Align & 3) {
2955 case 2: // WORD aligned
2956 CountReg = MakeReg(MVT::i32);
2957 if (ConstantSDNode *I = dyn_cast<ConstantSDNode>(Node->getOperand(3))) {
2958 BuildMI(BB, X86::MOV32ri, 1, CountReg).addImm(I->getValue()/2);
2959 } else {
2960 unsigned ByteReg = SelectExpr(Node->getOperand(3));
2961 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(1);
2962 }
2963 BuildMI(BB, X86::MOV16ri, 1, X86::AX).addImm((Val << 8) | Val);
2964 Opcode = X86::REP_STOSW;
2965 break;
2966 case 0: // DWORD aligned
2967 CountReg = MakeReg(MVT::i32);
2968 if (ConstantSDNode *I = dyn_cast<ConstantSDNode>(Node->getOperand(3))) {
2969 BuildMI(BB, X86::MOV32ri, 1, CountReg).addImm(I->getValue()/4);
2970 } else {
2971 unsigned ByteReg = SelectExpr(Node->getOperand(3));
2972 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(2);
2973 }
2974 Val = (Val << 8) | Val;
2975 BuildMI(BB, X86::MOV32ri, 1, X86::EAX).addImm((Val << 16) | Val);
2976 Opcode = X86::REP_STOSD;
2977 break;
2978 default: // BYTE aligned
2979 CountReg = SelectExpr(Node->getOperand(3));
2980 BuildMI(BB, X86::MOV8ri, 1, X86::AL).addImm(Val);
2981 Opcode = X86::REP_STOSB;
2982 break;
2983 }
2984 } else {
2985 // If it's not a constant value we are storing, just fall back. We could
2986 // try to be clever to form 16 bit and 32 bit values, but we don't yet.
2987 unsigned ValReg = SelectExpr(Node->getOperand(2));
2988 BuildMI(BB, X86::MOV8rr, 1, X86::AL).addReg(ValReg);
2989 CountReg = SelectExpr(Node->getOperand(3));
2990 Opcode = X86::REP_STOSB;
2991 }
2992
2993 // No matter what the alignment is, we put the source in ESI, the
2994 // destination in EDI, and the count in ECX.
2995 unsigned TmpReg1 = SelectExpr(Node->getOperand(1));
2996 BuildMI(BB, X86::MOV32rr, 1, X86::ECX).addReg(CountReg);
2997 BuildMI(BB, X86::MOV32rr, 1, X86::EDI).addReg(TmpReg1);
2998 BuildMI(BB, Opcode, 0);
2999 return;
3000 }
Chris Lattner31805bf2005-01-11 06:19:26 +00003001 case ISD::MEMCPY:
3002 Select(N.getOperand(0)); // Select the chain.
3003 unsigned Align =
3004 (unsigned)cast<ConstantSDNode>(Node->getOperand(4))->getValue();
3005 if (Align == 0) Align = 1;
3006
3007 // Turn the byte code into # iterations
3008 unsigned CountReg;
3009 unsigned Opcode;
3010 switch (Align & 3) {
3011 case 2: // WORD aligned
3012 CountReg = MakeReg(MVT::i32);
3013 if (ConstantSDNode *I = dyn_cast<ConstantSDNode>(Node->getOperand(3))) {
3014 BuildMI(BB, X86::MOV32ri, 1, CountReg).addImm(I->getValue()/2);
3015 } else {
3016 unsigned ByteReg = SelectExpr(Node->getOperand(3));
3017 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(1);
3018 }
3019 Opcode = X86::REP_MOVSW;
3020 break;
3021 case 0: // DWORD aligned
3022 CountReg = MakeReg(MVT::i32);
3023 if (ConstantSDNode *I = dyn_cast<ConstantSDNode>(Node->getOperand(3))) {
3024 BuildMI(BB, X86::MOV32ri, 1, CountReg).addImm(I->getValue()/4);
3025 } else {
3026 unsigned ByteReg = SelectExpr(Node->getOperand(3));
3027 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(2);
3028 }
3029 Opcode = X86::REP_MOVSD;
3030 break;
3031 default: // BYTE aligned
3032 CountReg = SelectExpr(Node->getOperand(3));
3033 Opcode = X86::REP_MOVSB;
3034 break;
3035 }
3036
3037 // No matter what the alignment is, we put the source in ESI, the
3038 // destination in EDI, and the count in ECX.
3039 unsigned TmpReg1 = SelectExpr(Node->getOperand(1));
3040 unsigned TmpReg2 = SelectExpr(Node->getOperand(2));
3041 BuildMI(BB, X86::MOV32rr, 1, X86::ECX).addReg(CountReg);
3042 BuildMI(BB, X86::MOV32rr, 1, X86::EDI).addReg(TmpReg1);
3043 BuildMI(BB, X86::MOV32rr, 1, X86::ESI).addReg(TmpReg2);
3044 BuildMI(BB, Opcode, 0);
3045 return;
Chris Lattner8acb1ba2005-01-07 07:49:41 +00003046 }
3047 assert(0 && "Should not be reached!");
3048}
3049
3050
3051/// createX86PatternInstructionSelector - This pass converts an LLVM function
3052/// into a machine code representation using pattern matching and a machine
3053/// description file.
3054///
3055FunctionPass *llvm::createX86PatternInstructionSelector(TargetMachine &TM) {
3056 return new ISel(TM);
3057}