blob: f9d5387532061e46225fd190e5006ab0d993dc20 [file] [log] [blame]
Chris Lattner72614082002-10-25 22:55:53 +00001//===-- InstSelectSimple.cpp - A simple instruction selector for x86 ------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// 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//===----------------------------------------------------------------------===//
Chris Lattner72614082002-10-25 22:55:53 +00009//
Chris Lattner3e130a22003-01-13 00:32:26 +000010// This file defines a simple peephole instruction selector for the x86 target
Chris Lattner72614082002-10-25 22:55:53 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "X86.h"
Chris Lattner6fc3c522002-11-17 21:11:55 +000015#include "X86InstrBuilder.h"
Misha Brukmanc8893fc2003-10-23 16:22:08 +000016#include "X86InstrInfo.h"
17#include "llvm/Constants.h"
18#include "llvm/DerivedTypes.h"
Chris Lattner72614082002-10-25 22:55:53 +000019#include "llvm/Function.h"
Chris Lattner67580ed2003-05-13 20:21:19 +000020#include "llvm/Instructions.h"
Chris Lattner44827152003-12-28 09:47:19 +000021#include "llvm/IntrinsicLowering.h"
Misha Brukmanc8893fc2003-10-23 16:22:08 +000022#include "llvm/Pass.h"
23#include "llvm/CodeGen/MachineConstantPool.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner341a9372002-10-29 17:43:55 +000025#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner94af4142002-12-25 05:13:53 +000026#include "llvm/CodeGen/SSARegMap.h"
Misha Brukmand2cc0172002-11-20 00:58:23 +000027#include "llvm/Target/MRegisterInfo.h"
Misha Brukmanc8893fc2003-10-23 16:22:08 +000028#include "llvm/Target/TargetMachine.h"
Chris Lattner3f1e8e72004-02-22 07:04:00 +000029#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner67580ed2003-05-13 20:21:19 +000030#include "llvm/Support/InstVisitor.h"
Chris Lattner986618e2004-02-22 19:47:26 +000031#include "Support/Statistic.h"
Chris Lattner44827152003-12-28 09:47:19 +000032using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000033
Chris Lattner986618e2004-02-22 19:47:26 +000034namespace {
35 Statistic<>
36 NumFPKill("x86-codegen", "Number of FP_REG_KILL instructions added");
Chris Lattner427aeb42004-04-11 19:21:59 +000037
38 /// TypeClass - Used by the X86 backend to group LLVM types by their basic X86
39 /// Representation.
40 ///
41 enum TypeClass {
42 cByte, cShort, cInt, cFP, cLong
43 };
44}
45
46/// getClass - Turn a primitive type into a "class" number which is based on the
47/// size of the type, and whether or not it is floating point.
48///
49static inline TypeClass getClass(const Type *Ty) {
50 switch (Ty->getPrimitiveID()) {
51 case Type::SByteTyID:
52 case Type::UByteTyID: return cByte; // Byte operands are class #0
53 case Type::ShortTyID:
54 case Type::UShortTyID: return cShort; // Short operands are class #1
55 case Type::IntTyID:
56 case Type::UIntTyID:
57 case Type::PointerTyID: return cInt; // Int's and pointers are class #2
58
59 case Type::FloatTyID:
60 case Type::DoubleTyID: return cFP; // Floating Point is #3
61
62 case Type::LongTyID:
63 case Type::ULongTyID: return cLong; // Longs are class #4
64 default:
65 assert(0 && "Invalid type to getClass!");
66 return cByte; // not reached
67 }
68}
69
70// getClassB - Just like getClass, but treat boolean values as bytes.
71static inline TypeClass getClassB(const Type *Ty) {
72 if (Ty == Type::BoolTy) return cByte;
73 return getClass(Ty);
Chris Lattner986618e2004-02-22 19:47:26 +000074}
Chris Lattnercf93cdd2004-01-30 22:13:44 +000075
Chris Lattner72614082002-10-25 22:55:53 +000076namespace {
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000077 struct ISel : public FunctionPass, InstVisitor<ISel> {
78 TargetMachine &TM;
Chris Lattnereca195e2003-05-08 19:44:13 +000079 MachineFunction *F; // The function we are compiling into
80 MachineBasicBlock *BB; // The current MBB we are compiling
81 int VarArgsFrameIndex; // FrameIndex for start of varargs area
Chris Lattner0e5b79c2004-02-15 01:04:03 +000082 int ReturnAddressIndex; // FrameIndex for the return address
Chris Lattner72614082002-10-25 22:55:53 +000083
Chris Lattner72614082002-10-25 22:55:53 +000084 std::map<Value*, unsigned> RegMap; // Mapping between Val's and SSA Regs
85
Chris Lattner333b2fa2002-12-13 10:09:43 +000086 // MBBMap - Mapping between LLVM BB -> Machine BB
87 std::map<const BasicBlock*, MachineBasicBlock*> MBBMap;
88
Chris Lattnercb2fd552004-05-13 07:40:27 +000089 // AllocaMap - Mapping from fixed sized alloca instructions to the
90 // FrameIndex for the alloca.
91 std::map<AllocaInst*, unsigned> AllocaMap;
92
Chris Lattnerf70e0c22003-12-28 21:23:38 +000093 ISel(TargetMachine &tm) : TM(tm), F(0), BB(0) {}
Chris Lattner72614082002-10-25 22:55:53 +000094
95 /// runOnFunction - Top level implementation of instruction selection for
96 /// the entire function.
97 ///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000098 bool runOnFunction(Function &Fn) {
Chris Lattner44827152003-12-28 09:47:19 +000099 // First pass over the function, lower any unknown intrinsic functions
100 // with the IntrinsicLowering class.
101 LowerUnknownIntrinsicFunctionCalls(Fn);
102
Chris Lattner36b36032002-10-29 23:40:58 +0000103 F = &MachineFunction::construct(&Fn, TM);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000104
Chris Lattner065faeb2002-12-28 20:24:02 +0000105 // Create all of the machine basic blocks for the function...
Chris Lattner333b2fa2002-12-13 10:09:43 +0000106 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
107 F->getBasicBlockList().push_back(MBBMap[I] = new MachineBasicBlock(I));
108
Chris Lattner14aa7fe2002-12-16 22:54:46 +0000109 BB = &F->front();
Chris Lattnerdbd73722003-05-06 21:32:22 +0000110
Chris Lattner0e5b79c2004-02-15 01:04:03 +0000111 // Set up a frame object for the return address. This is used by the
112 // llvm.returnaddress & llvm.frameaddress intrinisics.
113 ReturnAddressIndex = F->getFrameInfo()->CreateFixedObject(4, -4);
114
Chris Lattnerdbd73722003-05-06 21:32:22 +0000115 // Copy incoming arguments off of the stack...
Chris Lattner065faeb2002-12-28 20:24:02 +0000116 LoadArgumentsToVirtualRegs(Fn);
Chris Lattner14aa7fe2002-12-16 22:54:46 +0000117
Chris Lattner333b2fa2002-12-13 10:09:43 +0000118 // Instruction select everything except PHI nodes
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000119 visit(Fn);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000120
121 // Select the PHI nodes
122 SelectPHINodes();
123
Chris Lattner986618e2004-02-22 19:47:26 +0000124 // Insert the FP_REG_KILL instructions into blocks that need them.
125 InsertFPRegKills();
126
Chris Lattner72614082002-10-25 22:55:53 +0000127 RegMap.clear();
Chris Lattner333b2fa2002-12-13 10:09:43 +0000128 MBBMap.clear();
Chris Lattnercb2fd552004-05-13 07:40:27 +0000129 AllocaMap.clear();
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000130 F = 0;
Chris Lattner2a865b02003-07-26 23:05:37 +0000131 // We always build a machine code representation for the function
132 return true;
Chris Lattner72614082002-10-25 22:55:53 +0000133 }
134
Chris Lattnerf0eb7be2002-12-15 21:13:40 +0000135 virtual const char *getPassName() const {
136 return "X86 Simple Instruction Selection";
137 }
138
Chris Lattner72614082002-10-25 22:55:53 +0000139 /// visitBasicBlock - This method is called when we are visiting a new basic
Chris Lattner33f53b52002-10-29 20:48:56 +0000140 /// block. This simply creates a new MachineBasicBlock to emit code into
141 /// and adds it to the current MachineFunction. Subsequent visit* for
142 /// instructions will be invoked for all instructions in the basic block.
Chris Lattner72614082002-10-25 22:55:53 +0000143 ///
144 void visitBasicBlock(BasicBlock &LLVM_BB) {
Chris Lattner333b2fa2002-12-13 10:09:43 +0000145 BB = MBBMap[&LLVM_BB];
Chris Lattner72614082002-10-25 22:55:53 +0000146 }
147
Chris Lattner44827152003-12-28 09:47:19 +0000148 /// LowerUnknownIntrinsicFunctionCalls - This performs a prepass over the
149 /// function, lowering any calls to unknown intrinsic functions into the
150 /// equivalent LLVM code.
Misha Brukman538607f2004-03-01 23:53:11 +0000151 ///
Chris Lattner44827152003-12-28 09:47:19 +0000152 void LowerUnknownIntrinsicFunctionCalls(Function &F);
153
Chris Lattner065faeb2002-12-28 20:24:02 +0000154 /// LoadArgumentsToVirtualRegs - Load all of the arguments to this function
155 /// from the stack into virtual registers.
156 ///
157 void LoadArgumentsToVirtualRegs(Function &F);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000158
159 /// SelectPHINodes - Insert machine code to generate phis. This is tricky
160 /// because we have to generate our sources into the source basic blocks,
161 /// not the current one.
162 ///
163 void SelectPHINodes();
164
Chris Lattner986618e2004-02-22 19:47:26 +0000165 /// InsertFPRegKills - Insert FP_REG_KILL instructions into basic blocks
166 /// that need them. This only occurs due to the floating point stackifier
167 /// not being aggressive enough to handle arbitrary global stackification.
168 ///
169 void InsertFPRegKills();
170
Chris Lattner72614082002-10-25 22:55:53 +0000171 // Visitation methods for various instructions. These methods simply emit
172 // fixed X86 code for each instruction.
173 //
Brian Gaekefa8d5712002-11-22 11:07:01 +0000174
175 // Control flow operators
Chris Lattner72614082002-10-25 22:55:53 +0000176 void visitReturnInst(ReturnInst &RI);
Chris Lattner2df035b2002-11-02 19:27:56 +0000177 void visitBranchInst(BranchInst &BI);
Chris Lattner3e130a22003-01-13 00:32:26 +0000178
179 struct ValueRecord {
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000180 Value *Val;
Chris Lattner3e130a22003-01-13 00:32:26 +0000181 unsigned Reg;
182 const Type *Ty;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000183 ValueRecord(unsigned R, const Type *T) : Val(0), Reg(R), Ty(T) {}
184 ValueRecord(Value *V) : Val(V), Reg(0), Ty(V->getType()) {}
Chris Lattner3e130a22003-01-13 00:32:26 +0000185 };
186 void doCall(const ValueRecord &Ret, MachineInstr *CallMI,
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000187 const std::vector<ValueRecord> &Args);
Brian Gaekefa8d5712002-11-22 11:07:01 +0000188 void visitCallInst(CallInst &I);
Brian Gaeked0fde302003-11-11 22:41:34 +0000189 void visitIntrinsicCall(Intrinsic::ID ID, CallInst &I);
Chris Lattnere2954c82002-11-02 20:04:26 +0000190
191 // Arithmetic operators
Chris Lattnerf01729e2002-11-02 20:54:46 +0000192 void visitSimpleBinary(BinaryOperator &B, unsigned OpcodeClass);
Chris Lattner68aad932002-11-02 20:13:22 +0000193 void visitAdd(BinaryOperator &B) { visitSimpleBinary(B, 0); }
194 void visitSub(BinaryOperator &B) { visitSimpleBinary(B, 1); }
Chris Lattnerca9671d2002-11-02 20:28:58 +0000195 void visitMul(BinaryOperator &B);
Chris Lattnere2954c82002-11-02 20:04:26 +0000196
Chris Lattnerf01729e2002-11-02 20:54:46 +0000197 void visitDiv(BinaryOperator &B) { visitDivRem(B); }
198 void visitRem(BinaryOperator &B) { visitDivRem(B); }
199 void visitDivRem(BinaryOperator &B);
200
Chris Lattnere2954c82002-11-02 20:04:26 +0000201 // Bitwise operators
Chris Lattner68aad932002-11-02 20:13:22 +0000202 void visitAnd(BinaryOperator &B) { visitSimpleBinary(B, 2); }
203 void visitOr (BinaryOperator &B) { visitSimpleBinary(B, 3); }
204 void visitXor(BinaryOperator &B) { visitSimpleBinary(B, 4); }
Chris Lattnere2954c82002-11-02 20:04:26 +0000205
Chris Lattner6d40c192003-01-16 16:43:00 +0000206 // Comparison operators...
207 void visitSetCondInst(SetCondInst &I);
Chris Lattnerb2acc512003-10-19 21:09:10 +0000208 unsigned EmitComparison(unsigned OpNum, Value *Op0, Value *Op1,
209 MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000210 MachineBasicBlock::iterator MBBI);
Chris Lattner12d96a02004-03-30 21:22:00 +0000211 void visitSelectInst(SelectInst &SI);
212
Chris Lattnerb2acc512003-10-19 21:09:10 +0000213
Chris Lattner6fc3c522002-11-17 21:11:55 +0000214 // Memory Instructions
215 void visitLoadInst(LoadInst &I);
216 void visitStoreInst(StoreInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000217 void visitGetElementPtrInst(GetElementPtrInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000218 void visitAllocaInst(AllocaInst &I);
Chris Lattner3e130a22003-01-13 00:32:26 +0000219 void visitMallocInst(MallocInst &I);
220 void visitFreeInst(FreeInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000221
Chris Lattnere2954c82002-11-02 20:04:26 +0000222 // Other operators
Brian Gaekea1719c92002-10-31 23:03:59 +0000223 void visitShiftInst(ShiftInst &I);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000224 void visitPHINode(PHINode &I) {} // PHI nodes handled by second pass
Brian Gaekefa8d5712002-11-22 11:07:01 +0000225 void visitCastInst(CastInst &I);
Chris Lattner73815062003-10-18 05:56:40 +0000226 void visitVANextInst(VANextInst &I);
227 void visitVAArgInst(VAArgInst &I);
Chris Lattner72614082002-10-25 22:55:53 +0000228
229 void visitInstruction(Instruction &I) {
230 std::cerr << "Cannot instruction select: " << I;
231 abort();
232 }
233
Brian Gaeke95780cc2002-12-13 07:56:18 +0000234 /// promote32 - Make a value 32-bits wide, and put it somewhere.
Chris Lattner3e130a22003-01-13 00:32:26 +0000235 ///
236 void promote32(unsigned targetReg, const ValueRecord &VR);
237
Chris Lattner721d2d42004-03-08 01:18:36 +0000238 /// getAddressingMode - Get the addressing mode to use to address the
239 /// specified value. The returned value should be used with addFullAddress.
240 void getAddressingMode(Value *Addr, unsigned &BaseReg, unsigned &Scale,
241 unsigned &IndexReg, unsigned &Disp);
242
243
244 /// getGEPIndex - This is used to fold GEP instructions into X86 addressing
245 /// expressions.
Chris Lattnerb6bac512004-02-25 06:13:04 +0000246 void getGEPIndex(MachineBasicBlock *MBB, MachineBasicBlock::iterator IP,
247 std::vector<Value*> &GEPOps,
248 std::vector<const Type*> &GEPTypes, unsigned &BaseReg,
249 unsigned &Scale, unsigned &IndexReg, unsigned &Disp);
250
251 /// isGEPFoldable - Return true if the specified GEP can be completely
252 /// folded into the addressing mode of a load/store or lea instruction.
253 bool isGEPFoldable(MachineBasicBlock *MBB,
254 Value *Src, User::op_iterator IdxBegin,
255 User::op_iterator IdxEnd, unsigned &BaseReg,
256 unsigned &Scale, unsigned &IndexReg, unsigned &Disp);
257
Chris Lattner3e130a22003-01-13 00:32:26 +0000258 /// emitGEPOperation - Common code shared between visitGetElementPtrInst and
259 /// constant expression GEP support.
260 ///
Chris Lattner827832c2004-02-22 17:05:38 +0000261 void emitGEPOperation(MachineBasicBlock *BB, MachineBasicBlock::iterator IP,
Chris Lattner333b2fa2002-12-13 10:09:43 +0000262 Value *Src, User::op_iterator IdxBegin,
Chris Lattnerc0812d82002-12-13 06:56:29 +0000263 User::op_iterator IdxEnd, unsigned TargetReg);
264
Chris Lattner548f61d2003-04-23 17:22:12 +0000265 /// emitCastOperation - Common code shared between visitCastInst and
266 /// constant expression cast support.
Misha Brukman538607f2004-03-01 23:53:11 +0000267 ///
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000268 void emitCastOperation(MachineBasicBlock *BB,MachineBasicBlock::iterator IP,
Chris Lattner548f61d2003-04-23 17:22:12 +0000269 Value *Src, const Type *DestTy, unsigned TargetReg);
270
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000271 /// emitSimpleBinaryOperation - Common code shared between visitSimpleBinary
272 /// and constant expression support.
Misha Brukman538607f2004-03-01 23:53:11 +0000273 ///
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000274 void emitSimpleBinaryOperation(MachineBasicBlock *BB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000275 MachineBasicBlock::iterator IP,
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000276 Value *Op0, Value *Op1,
277 unsigned OperatorClass, unsigned TargetReg);
278
Chris Lattner6621ed92004-04-11 21:23:56 +0000279 /// emitBinaryFPOperation - This method handles emission of floating point
280 /// Add (0), Sub (1), Mul (2), and Div (3) operations.
281 void emitBinaryFPOperation(MachineBasicBlock *BB,
282 MachineBasicBlock::iterator IP,
283 Value *Op0, Value *Op1,
284 unsigned OperatorClass, unsigned TargetReg);
285
Chris Lattner462fa822004-04-11 20:56:28 +0000286 void emitMultiply(MachineBasicBlock *BB, MachineBasicBlock::iterator IP,
287 Value *Op0, Value *Op1, unsigned TargetReg);
288
289 void doMultiply(MachineBasicBlock *MBB, MachineBasicBlock::iterator MBBI,
290 unsigned DestReg, const Type *DestTy,
291 unsigned Op0Reg, unsigned Op1Reg);
292 void doMultiplyConst(MachineBasicBlock *MBB,
293 MachineBasicBlock::iterator MBBI,
294 unsigned DestReg, const Type *DestTy,
295 unsigned Op0Reg, unsigned Op1Val);
296
Chris Lattnercadff442003-10-23 17:21:43 +0000297 void emitDivRemOperation(MachineBasicBlock *BB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000298 MachineBasicBlock::iterator IP,
Chris Lattner462fa822004-04-11 20:56:28 +0000299 Value *Op0, Value *Op1, bool isDiv,
300 unsigned TargetReg);
Chris Lattnercadff442003-10-23 17:21:43 +0000301
Chris Lattner58c41fe2003-08-24 19:19:47 +0000302 /// emitSetCCOperation - Common code shared between visitSetCondInst and
303 /// constant expression support.
Misha Brukman538607f2004-03-01 23:53:11 +0000304 ///
Chris Lattner58c41fe2003-08-24 19:19:47 +0000305 void emitSetCCOperation(MachineBasicBlock *BB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000306 MachineBasicBlock::iterator IP,
Chris Lattner58c41fe2003-08-24 19:19:47 +0000307 Value *Op0, Value *Op1, unsigned Opcode,
308 unsigned TargetReg);
Brian Gaeke2dd3e1b2003-11-22 05:18:35 +0000309
310 /// emitShiftOperation - Common code shared between visitShiftInst and
311 /// constant expression support.
Misha Brukman538607f2004-03-01 23:53:11 +0000312 ///
Brian Gaekedfcc9cf2003-11-22 06:49:41 +0000313 void emitShiftOperation(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000314 MachineBasicBlock::iterator IP,
Brian Gaekedfcc9cf2003-11-22 06:49:41 +0000315 Value *Op, Value *ShiftAmount, bool isLeftShift,
316 const Type *ResultTy, unsigned DestReg);
317
Chris Lattner12d96a02004-03-30 21:22:00 +0000318 /// emitSelectOperation - Common code shared between visitSelectInst and the
319 /// constant expression support.
320 void emitSelectOperation(MachineBasicBlock *MBB,
321 MachineBasicBlock::iterator IP,
322 Value *Cond, Value *TrueVal, Value *FalseVal,
323 unsigned DestReg);
Chris Lattner58c41fe2003-08-24 19:19:47 +0000324
Chris Lattnerc5291f52002-10-27 21:16:59 +0000325 /// copyConstantToRegister - Output the instructions required to put the
326 /// specified constant into the specified register.
327 ///
Chris Lattner8a307e82002-12-16 19:32:50 +0000328 void copyConstantToRegister(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000329 MachineBasicBlock::iterator MBBI,
Chris Lattner8a307e82002-12-16 19:32:50 +0000330 Constant *C, unsigned Reg);
Chris Lattnerc5291f52002-10-27 21:16:59 +0000331
Chris Lattner3e130a22003-01-13 00:32:26 +0000332 /// makeAnotherReg - This method returns the next register number we haven't
333 /// yet used.
334 ///
335 /// Long values are handled somewhat specially. They are always allocated
336 /// as pairs of 32 bit integer values. The register number returned is the
337 /// lower 32 bits of the long value, and the regNum+1 is the upper 32 bits
338 /// of the long value.
339 ///
Chris Lattnerc0812d82002-12-13 06:56:29 +0000340 unsigned makeAnotherReg(const Type *Ty) {
Chris Lattner7db1fa92003-07-30 05:33:48 +0000341 assert(dynamic_cast<const X86RegisterInfo*>(TM.getRegisterInfo()) &&
342 "Current target doesn't have X86 reg info??");
343 const X86RegisterInfo *MRI =
344 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Chris Lattner3e130a22003-01-13 00:32:26 +0000345 if (Ty == Type::LongTy || Ty == Type::ULongTy) {
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000346 const TargetRegisterClass *RC = MRI->getRegClassForType(Type::IntTy);
347 // Create the lower part
348 F->getSSARegMap()->createVirtualRegister(RC);
349 // Create the upper part.
350 return F->getSSARegMap()->createVirtualRegister(RC)-1;
Chris Lattner3e130a22003-01-13 00:32:26 +0000351 }
352
Chris Lattnerc0812d82002-12-13 06:56:29 +0000353 // Add the mapping of regnumber => reg class to MachineFunction
Chris Lattner7db1fa92003-07-30 05:33:48 +0000354 const TargetRegisterClass *RC = MRI->getRegClassForType(Ty);
Chris Lattner3e130a22003-01-13 00:32:26 +0000355 return F->getSSARegMap()->createVirtualRegister(RC);
Brian Gaeke20244b72002-12-12 15:33:40 +0000356 }
357
Chris Lattnercb2fd552004-05-13 07:40:27 +0000358 /// getReg - This method turns an LLVM value into a register number.
Chris Lattner72614082002-10-25 22:55:53 +0000359 ///
360 unsigned getReg(Value &V) { return getReg(&V); } // Allow references
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000361 unsigned getReg(Value *V) {
362 // Just append to the end of the current bb.
363 MachineBasicBlock::iterator It = BB->end();
364 return getReg(V, BB, It);
365 }
Brian Gaeke71794c02002-12-13 11:22:48 +0000366 unsigned getReg(Value *V, MachineBasicBlock *MBB,
Chris Lattnercb2fd552004-05-13 07:40:27 +0000367 MachineBasicBlock::iterator IPt);
Chris Lattner427aeb42004-04-11 19:21:59 +0000368
Chris Lattnercb2fd552004-05-13 07:40:27 +0000369 /// getFixedSizedAllocaFI - Return the frame index for a fixed sized alloca
370 /// that is to be statically allocated with the initial stack frame
371 /// adjustment.
372 unsigned getFixedSizedAllocaFI(AllocaInst *AI);
Chris Lattner72614082002-10-25 22:55:53 +0000373 };
374}
375
Chris Lattnercb2fd552004-05-13 07:40:27 +0000376/// dyn_castFixedAlloca - If the specified value is a fixed size alloca
377/// instruction in the entry block, return it. Otherwise, return a null
378/// pointer.
379static AllocaInst *dyn_castFixedAlloca(Value *V) {
380 if (AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
381 BasicBlock *BB = AI->getParent();
382 if (isa<ConstantUInt>(AI->getArraySize()) && BB ==&BB->getParent()->front())
383 return AI;
384 }
385 return 0;
386}
387
388/// getReg - This method turns an LLVM value into a register number.
389///
390unsigned ISel::getReg(Value *V, MachineBasicBlock *MBB,
391 MachineBasicBlock::iterator IPt) {
392 // If this operand is a constant, emit the code to copy the constant into
393 // the register here...
394 //
395 if (Constant *C = dyn_cast<Constant>(V)) {
396 unsigned Reg = makeAnotherReg(V->getType());
397 copyConstantToRegister(MBB, IPt, C, Reg);
398 return Reg;
399 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
400 unsigned Reg = makeAnotherReg(V->getType());
401 // Move the address of the global into the register
402 BuildMI(*MBB, IPt, X86::MOV32ri, 1, Reg).addGlobalAddress(GV);
403 return Reg;
404 } else if (CastInst *CI = dyn_cast<CastInst>(V)) {
405 // Do not emit noop casts at all.
406 if (getClassB(CI->getType()) == getClassB(CI->getOperand(0)->getType()))
407 return getReg(CI->getOperand(0), MBB, IPt);
408 } else if (AllocaInst *AI = dyn_castFixedAlloca(V)) {
409 // If the alloca address couldn't be folded into the instruction addressing,
410 // emit an explicit LEA as appropriate.
411 unsigned Reg = makeAnotherReg(V->getType());
412 unsigned FI = getFixedSizedAllocaFI(AI);
413 addFrameReference(BuildMI(*MBB, IPt, X86::LEA32r, 4, Reg), FI);
414 return Reg;
415 }
416
417 unsigned &Reg = RegMap[V];
418 if (Reg == 0) {
419 Reg = makeAnotherReg(V->getType());
420 RegMap[V] = Reg;
421 }
422
423 return Reg;
424}
425
426/// getFixedSizedAllocaFI - Return the frame index for a fixed sized alloca
427/// that is to be statically allocated with the initial stack frame
428/// adjustment.
429unsigned ISel::getFixedSizedAllocaFI(AllocaInst *AI) {
430 // Already computed this?
431 std::map<AllocaInst*, unsigned>::iterator I = AllocaMap.lower_bound(AI);
432 if (I != AllocaMap.end() && I->first == AI) return I->second;
433
434 const Type *Ty = AI->getAllocatedType();
435 ConstantUInt *CUI = cast<ConstantUInt>(AI->getArraySize());
436 unsigned TySize = TM.getTargetData().getTypeSize(Ty);
437 TySize *= CUI->getValue(); // Get total allocated size...
438 unsigned Alignment = TM.getTargetData().getTypeAlignment(Ty);
439
440 // Create a new stack object using the frame manager...
441 int FrameIdx = F->getFrameInfo()->CreateStackObject(TySize, Alignment);
442 AllocaMap.insert(I, std::make_pair(AI, FrameIdx));
443 return FrameIdx;
444}
445
446
Chris Lattnerc5291f52002-10-27 21:16:59 +0000447/// copyConstantToRegister - Output the instructions required to put the
448/// specified constant into the specified register.
449///
Chris Lattner8a307e82002-12-16 19:32:50 +0000450void ISel::copyConstantToRegister(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000451 MachineBasicBlock::iterator IP,
Chris Lattner8a307e82002-12-16 19:32:50 +0000452 Constant *C, unsigned R) {
Chris Lattnerc0812d82002-12-13 06:56:29 +0000453 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000454 unsigned Class = 0;
455 switch (CE->getOpcode()) {
456 case Instruction::GetElementPtr:
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000457 emitGEPOperation(MBB, IP, CE->getOperand(0),
Chris Lattner333b2fa2002-12-13 10:09:43 +0000458 CE->op_begin()+1, CE->op_end(), R);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000459 return;
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000460 case Instruction::Cast:
Chris Lattner548f61d2003-04-23 17:22:12 +0000461 emitCastOperation(MBB, IP, CE->getOperand(0), CE->getType(), R);
Chris Lattner4b12cde2003-04-21 21:33:44 +0000462 return;
Chris Lattnerc0812d82002-12-13 06:56:29 +0000463
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000464 case Instruction::Xor: ++Class; // FALL THROUGH
465 case Instruction::Or: ++Class; // FALL THROUGH
466 case Instruction::And: ++Class; // FALL THROUGH
467 case Instruction::Sub: ++Class; // FALL THROUGH
468 case Instruction::Add:
469 emitSimpleBinaryOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
470 Class, R);
471 return;
472
Chris Lattner462fa822004-04-11 20:56:28 +0000473 case Instruction::Mul:
474 emitMultiply(MBB, IP, CE->getOperand(0), CE->getOperand(1), R);
Chris Lattnercadff442003-10-23 17:21:43 +0000475 return;
Chris Lattner462fa822004-04-11 20:56:28 +0000476
Chris Lattnercadff442003-10-23 17:21:43 +0000477 case Instruction::Div:
Chris Lattner462fa822004-04-11 20:56:28 +0000478 case Instruction::Rem:
479 emitDivRemOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
480 CE->getOpcode() == Instruction::Div, R);
Chris Lattnercadff442003-10-23 17:21:43 +0000481 return;
Chris Lattnercadff442003-10-23 17:21:43 +0000482
Chris Lattner58c41fe2003-08-24 19:19:47 +0000483 case Instruction::SetNE:
484 case Instruction::SetEQ:
485 case Instruction::SetLT:
486 case Instruction::SetGT:
487 case Instruction::SetLE:
488 case Instruction::SetGE:
489 emitSetCCOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
490 CE->getOpcode(), R);
491 return;
492
Brian Gaeke2dd3e1b2003-11-22 05:18:35 +0000493 case Instruction::Shl:
494 case Instruction::Shr:
495 emitShiftOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
Brian Gaekedfcc9cf2003-11-22 06:49:41 +0000496 CE->getOpcode() == Instruction::Shl, CE->getType(), R);
497 return;
Brian Gaeke2dd3e1b2003-11-22 05:18:35 +0000498
Chris Lattner12d96a02004-03-30 21:22:00 +0000499 case Instruction::Select:
500 emitSelectOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
501 CE->getOperand(2), R);
502 return;
503
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000504 default:
505 std::cerr << "Offending expr: " << C << "\n";
Chris Lattnerb2acc512003-10-19 21:09:10 +0000506 assert(0 && "Constant expression not yet handled!\n");
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000507 }
Brian Gaeke20244b72002-12-12 15:33:40 +0000508 }
Chris Lattnerc5291f52002-10-27 21:16:59 +0000509
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000510 if (C->getType()->isIntegral()) {
Chris Lattner6b993cc2002-12-15 08:02:15 +0000511 unsigned Class = getClassB(C->getType());
Chris Lattner3e130a22003-01-13 00:32:26 +0000512
513 if (Class == cLong) {
514 // Copy the value into the register pair.
Chris Lattnerc07736a2003-07-23 15:22:26 +0000515 uint64_t Val = cast<ConstantInt>(C)->getRawValue();
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000516 BuildMI(*MBB, IP, X86::MOV32ri, 1, R).addImm(Val & 0xFFFFFFFF);
517 BuildMI(*MBB, IP, X86::MOV32ri, 1, R+1).addImm(Val >> 32);
Chris Lattner3e130a22003-01-13 00:32:26 +0000518 return;
519 }
520
Chris Lattner94af4142002-12-25 05:13:53 +0000521 assert(Class <= cInt && "Type not handled yet!");
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000522
523 static const unsigned IntegralOpcodeTab[] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000524 X86::MOV8ri, X86::MOV16ri, X86::MOV32ri
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000525 };
526
Chris Lattner6b993cc2002-12-15 08:02:15 +0000527 if (C->getType() == Type::BoolTy) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000528 BuildMI(*MBB, IP, X86::MOV8ri, 1, R).addImm(C == ConstantBool::True);
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000529 } else {
Chris Lattnerc07736a2003-07-23 15:22:26 +0000530 ConstantInt *CI = cast<ConstantInt>(C);
Chris Lattneree352852004-02-29 07:22:16 +0000531 BuildMI(*MBB, IP, IntegralOpcodeTab[Class],1,R).addImm(CI->getRawValue());
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000532 }
Chris Lattner94af4142002-12-25 05:13:53 +0000533 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
Chris Lattneraf703622004-02-02 18:56:30 +0000534 if (CFP->isExactlyValue(+0.0))
Chris Lattneree352852004-02-29 07:22:16 +0000535 BuildMI(*MBB, IP, X86::FLD0, 0, R);
Chris Lattneraf703622004-02-02 18:56:30 +0000536 else if (CFP->isExactlyValue(+1.0))
Chris Lattneree352852004-02-29 07:22:16 +0000537 BuildMI(*MBB, IP, X86::FLD1, 0, R);
Chris Lattner94af4142002-12-25 05:13:53 +0000538 else {
Chris Lattner3e130a22003-01-13 00:32:26 +0000539 // Otherwise we need to spill the constant to memory...
540 MachineConstantPool *CP = F->getConstantPool();
541 unsigned CPI = CP->getConstantPoolIndex(CFP);
Chris Lattner6c09db22003-10-20 04:11:23 +0000542 const Type *Ty = CFP->getType();
543
544 assert(Ty == Type::FloatTy || Ty == Type::DoubleTy && "Unknown FP type!");
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000545 unsigned LoadOpcode = Ty == Type::FloatTy ? X86::FLD32m : X86::FLD64m;
Chris Lattneree352852004-02-29 07:22:16 +0000546 addConstantPoolReference(BuildMI(*MBB, IP, LoadOpcode, 4, R), CPI);
Chris Lattner94af4142002-12-25 05:13:53 +0000547 }
548
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000549 } else if (isa<ConstantPointerNull>(C)) {
Brian Gaeke20244b72002-12-12 15:33:40 +0000550 // Copy zero (null pointer) to the register.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000551 BuildMI(*MBB, IP, X86::MOV32ri, 1, R).addImm(0);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000552 } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(C)) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000553 BuildMI(*MBB, IP, X86::MOV32ri, 1, R).addGlobalAddress(CPR->getValue());
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000554 } else {
Brian Gaeke20244b72002-12-12 15:33:40 +0000555 std::cerr << "Offending constant: " << C << "\n";
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000556 assert(0 && "Type not handled yet!");
Chris Lattnerc5291f52002-10-27 21:16:59 +0000557 }
558}
559
Chris Lattner065faeb2002-12-28 20:24:02 +0000560/// LoadArgumentsToVirtualRegs - Load all of the arguments to this function from
561/// the stack into virtual registers.
562///
563void ISel::LoadArgumentsToVirtualRegs(Function &Fn) {
564 // Emit instructions to load the arguments... On entry to a function on the
565 // X86, the stack frame looks like this:
566 //
567 // [ESP] -- return address
Chris Lattner3e130a22003-01-13 00:32:26 +0000568 // [ESP + 4] -- first argument (leftmost lexically)
569 // [ESP + 8] -- second argument, if first argument is four bytes in size
Chris Lattner065faeb2002-12-28 20:24:02 +0000570 // ...
571 //
Chris Lattnerf158da22003-01-16 02:20:12 +0000572 unsigned ArgOffset = 0; // Frame mechanisms handle retaddr slot
Chris Lattneraa09b752002-12-28 21:08:28 +0000573 MachineFrameInfo *MFI = F->getFrameInfo();
Chris Lattner065faeb2002-12-28 20:24:02 +0000574
575 for (Function::aiterator I = Fn.abegin(), E = Fn.aend(); I != E; ++I) {
Chris Lattner427aeb42004-04-11 19:21:59 +0000576 bool ArgLive = !I->use_empty();
577 unsigned Reg = ArgLive ? getReg(*I) : 0;
Chris Lattner065faeb2002-12-28 20:24:02 +0000578 int FI; // Frame object index
Chris Lattner427aeb42004-04-11 19:21:59 +0000579
Chris Lattner065faeb2002-12-28 20:24:02 +0000580 switch (getClassB(I->getType())) {
581 case cByte:
Chris Lattner427aeb42004-04-11 19:21:59 +0000582 if (ArgLive) {
583 FI = MFI->CreateFixedObject(1, ArgOffset);
584 addFrameReference(BuildMI(BB, X86::MOV8rm, 4, Reg), FI);
585 }
Chris Lattner065faeb2002-12-28 20:24:02 +0000586 break;
587 case cShort:
Chris Lattner427aeb42004-04-11 19:21:59 +0000588 if (ArgLive) {
589 FI = MFI->CreateFixedObject(2, ArgOffset);
590 addFrameReference(BuildMI(BB, X86::MOV16rm, 4, Reg), FI);
591 }
Chris Lattner065faeb2002-12-28 20:24:02 +0000592 break;
593 case cInt:
Chris Lattner427aeb42004-04-11 19:21:59 +0000594 if (ArgLive) {
595 FI = MFI->CreateFixedObject(4, ArgOffset);
596 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, Reg), FI);
597 }
Chris Lattner065faeb2002-12-28 20:24:02 +0000598 break;
Chris Lattner3e130a22003-01-13 00:32:26 +0000599 case cLong:
Chris Lattner427aeb42004-04-11 19:21:59 +0000600 if (ArgLive) {
601 FI = MFI->CreateFixedObject(8, ArgOffset);
602 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, Reg), FI);
603 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, Reg+1), FI, 4);
604 }
Chris Lattner3e130a22003-01-13 00:32:26 +0000605 ArgOffset += 4; // longs require 4 additional bytes
606 break;
Chris Lattner065faeb2002-12-28 20:24:02 +0000607 case cFP:
Chris Lattner427aeb42004-04-11 19:21:59 +0000608 if (ArgLive) {
609 unsigned Opcode;
610 if (I->getType() == Type::FloatTy) {
611 Opcode = X86::FLD32m;
612 FI = MFI->CreateFixedObject(4, ArgOffset);
613 } else {
614 Opcode = X86::FLD64m;
615 FI = MFI->CreateFixedObject(8, ArgOffset);
616 }
617 addFrameReference(BuildMI(BB, Opcode, 4, Reg), FI);
Chris Lattner065faeb2002-12-28 20:24:02 +0000618 }
Chris Lattner427aeb42004-04-11 19:21:59 +0000619 if (I->getType() == Type::DoubleTy)
620 ArgOffset += 4; // doubles require 4 additional bytes
Chris Lattner065faeb2002-12-28 20:24:02 +0000621 break;
622 default:
623 assert(0 && "Unhandled argument type!");
624 }
Chris Lattner3e130a22003-01-13 00:32:26 +0000625 ArgOffset += 4; // Each argument takes at least 4 bytes on the stack...
Chris Lattner065faeb2002-12-28 20:24:02 +0000626 }
Chris Lattnereca195e2003-05-08 19:44:13 +0000627
628 // If the function takes variable number of arguments, add a frame offset for
629 // the start of the first vararg value... this is used to expand
630 // llvm.va_start.
631 if (Fn.getFunctionType()->isVarArg())
632 VarArgsFrameIndex = MFI->CreateFixedObject(1, ArgOffset);
Chris Lattner065faeb2002-12-28 20:24:02 +0000633}
634
635
Chris Lattner333b2fa2002-12-13 10:09:43 +0000636/// SelectPHINodes - Insert machine code to generate phis. This is tricky
637/// because we have to generate our sources into the source basic blocks, not
638/// the current one.
639///
640void ISel::SelectPHINodes() {
Chris Lattner3501fea2003-01-14 22:00:31 +0000641 const TargetInstrInfo &TII = TM.getInstrInfo();
Chris Lattner333b2fa2002-12-13 10:09:43 +0000642 const Function &LF = *F->getFunction(); // The LLVM function...
643 for (Function::const_iterator I = LF.begin(), E = LF.end(); I != E; ++I) {
644 const BasicBlock *BB = I;
Chris Lattner168aa902004-02-29 07:10:16 +0000645 MachineBasicBlock &MBB = *MBBMap[I];
Chris Lattner333b2fa2002-12-13 10:09:43 +0000646
647 // Loop over all of the PHI nodes in the LLVM basic block...
Chris Lattner168aa902004-02-29 07:10:16 +0000648 MachineBasicBlock::iterator PHIInsertPoint = MBB.begin();
Chris Lattner333b2fa2002-12-13 10:09:43 +0000649 for (BasicBlock::const_iterator I = BB->begin();
Chris Lattnera81fc682003-10-19 00:26:11 +0000650 PHINode *PN = const_cast<PHINode*>(dyn_cast<PHINode>(I)); ++I) {
Chris Lattner3e130a22003-01-13 00:32:26 +0000651
Chris Lattner333b2fa2002-12-13 10:09:43 +0000652 // Create a new machine instr PHI node, and insert it.
Chris Lattner3e130a22003-01-13 00:32:26 +0000653 unsigned PHIReg = getReg(*PN);
Chris Lattner168aa902004-02-29 07:10:16 +0000654 MachineInstr *PhiMI = BuildMI(MBB, PHIInsertPoint,
655 X86::PHI, PN->getNumOperands(), PHIReg);
Chris Lattner3e130a22003-01-13 00:32:26 +0000656
657 MachineInstr *LongPhiMI = 0;
Chris Lattner168aa902004-02-29 07:10:16 +0000658 if (PN->getType() == Type::LongTy || PN->getType() == Type::ULongTy)
659 LongPhiMI = BuildMI(MBB, PHIInsertPoint,
660 X86::PHI, PN->getNumOperands(), PHIReg+1);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000661
Chris Lattnera6e73f12003-05-12 14:22:21 +0000662 // PHIValues - Map of blocks to incoming virtual registers. We use this
663 // so that we only initialize one incoming value for a particular block,
664 // even if the block has multiple entries in the PHI node.
665 //
666 std::map<MachineBasicBlock*, unsigned> PHIValues;
667
Chris Lattner333b2fa2002-12-13 10:09:43 +0000668 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
669 MachineBasicBlock *PredMBB = MBBMap[PN->getIncomingBlock(i)];
Chris Lattnera6e73f12003-05-12 14:22:21 +0000670 unsigned ValReg;
671 std::map<MachineBasicBlock*, unsigned>::iterator EntryIt =
672 PHIValues.lower_bound(PredMBB);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000673
Chris Lattnera6e73f12003-05-12 14:22:21 +0000674 if (EntryIt != PHIValues.end() && EntryIt->first == PredMBB) {
675 // We already inserted an initialization of the register for this
676 // predecessor. Recycle it.
677 ValReg = EntryIt->second;
678
679 } else {
Chris Lattnera81fc682003-10-19 00:26:11 +0000680 // Get the incoming value into a virtual register.
Chris Lattnera6e73f12003-05-12 14:22:21 +0000681 //
Chris Lattnera81fc682003-10-19 00:26:11 +0000682 Value *Val = PN->getIncomingValue(i);
683
684 // If this is a constant or GlobalValue, we may have to insert code
685 // into the basic block to compute it into a virtual register.
Chris Lattnercb2fd552004-05-13 07:40:27 +0000686 if ((isa<Constant>(Val) && !isa<ConstantExpr>(Val)) ||
687 isa<GlobalValue>(Val)) {
688 // Simple constants get emitted at the end of the basic block,
689 // before any terminator instructions. We "know" that the code to
690 // move a constant into a register will never clobber any flags.
691 ValReg = getReg(Val, PredMBB, PredMBB->getFirstTerminator());
Chris Lattnera81fc682003-10-19 00:26:11 +0000692 } else {
Chris Lattnercb2fd552004-05-13 07:40:27 +0000693 // Because we don't want to clobber any values which might be in
694 // physical registers with the computation of this constant (which
695 // might be arbitrarily complex if it is a constant expression),
696 // just insert the computation at the top of the basic block.
697 MachineBasicBlock::iterator PI = PredMBB->begin();
698
699 // Skip over any PHI nodes though!
700 while (PI != PredMBB->end() && PI->getOpcode() == X86::PHI)
701 ++PI;
702
703 ValReg = getReg(Val, PredMBB, PI);
Chris Lattnera81fc682003-10-19 00:26:11 +0000704 }
Chris Lattnera6e73f12003-05-12 14:22:21 +0000705
706 // Remember that we inserted a value for this PHI for this predecessor
707 PHIValues.insert(EntryIt, std::make_pair(PredMBB, ValReg));
708 }
709
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000710 PhiMI->addRegOperand(ValReg);
Chris Lattner3e130a22003-01-13 00:32:26 +0000711 PhiMI->addMachineBasicBlockOperand(PredMBB);
Misha Brukmanc8893fc2003-10-23 16:22:08 +0000712 if (LongPhiMI) {
713 LongPhiMI->addRegOperand(ValReg+1);
714 LongPhiMI->addMachineBasicBlockOperand(PredMBB);
715 }
Chris Lattner333b2fa2002-12-13 10:09:43 +0000716 }
Chris Lattner168aa902004-02-29 07:10:16 +0000717
718 // Now that we emitted all of the incoming values for the PHI node, make
719 // sure to reposition the InsertPoint after the PHI that we just added.
720 // This is needed because we might have inserted a constant into this
721 // block, right after the PHI's which is before the old insert point!
722 PHIInsertPoint = LongPhiMI ? LongPhiMI : PhiMI;
723 ++PHIInsertPoint;
Chris Lattner333b2fa2002-12-13 10:09:43 +0000724 }
725 }
726}
727
Chris Lattner986618e2004-02-22 19:47:26 +0000728/// RequiresFPRegKill - The floating point stackifier pass cannot insert
729/// compensation code on critical edges. As such, it requires that we kill all
730/// FP registers on the exit from any blocks that either ARE critical edges, or
731/// branch to a block that has incoming critical edges.
732///
733/// Note that this kill instruction will eventually be eliminated when
734/// restrictions in the stackifier are relaxed.
735///
Brian Gaeke1afe7732004-04-28 04:45:55 +0000736static bool RequiresFPRegKill(const MachineBasicBlock *MBB) {
Chris Lattner986618e2004-02-22 19:47:26 +0000737#if 0
Brian Gaeke1afe7732004-04-28 04:45:55 +0000738 const BasicBlock *BB = MBB->getBasicBlock ();
Chris Lattner986618e2004-02-22 19:47:26 +0000739 for (succ_const_iterator SI = succ_begin(BB), E = succ_end(BB); SI!=E; ++SI) {
740 const BasicBlock *Succ = *SI;
741 pred_const_iterator PI = pred_begin(Succ), PE = pred_end(Succ);
742 ++PI; // Block have at least one predecessory
743 if (PI != PE) { // If it has exactly one, this isn't crit edge
744 // If this block has more than one predecessor, check all of the
745 // predecessors to see if they have multiple successors. If so, then the
746 // block we are analyzing needs an FPRegKill.
747 for (PI = pred_begin(Succ); PI != PE; ++PI) {
748 const BasicBlock *Pred = *PI;
749 succ_const_iterator SI2 = succ_begin(Pred);
750 ++SI2; // There must be at least one successor of this block.
751 if (SI2 != succ_end(Pred))
752 return true; // Yes, we must insert the kill on this edge.
753 }
754 }
755 }
756 // If we got this far, there is no need to insert the kill instruction.
757 return false;
758#else
759 return true;
760#endif
761}
762
763// InsertFPRegKills - Insert FP_REG_KILL instructions into basic blocks that
764// need them. This only occurs due to the floating point stackifier not being
765// aggressive enough to handle arbitrary global stackification.
766//
767// Currently we insert an FP_REG_KILL instruction into each block that uses or
768// defines a floating point virtual register.
769//
770// When the global register allocators (like linear scan) finally update live
771// variable analysis, we can keep floating point values in registers across
772// portions of the CFG that do not involve critical edges. This will be a big
773// win, but we are waiting on the global allocators before we can do this.
774//
775// With a bit of work, the floating point stackifier pass can be enhanced to
776// break critical edges as needed (to make a place to put compensation code),
777// but this will require some infrastructure improvements as well.
778//
779void ISel::InsertFPRegKills() {
780 SSARegMap &RegMap = *F->getSSARegMap();
Chris Lattner986618e2004-02-22 19:47:26 +0000781
782 for (MachineFunction::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
Chris Lattner986618e2004-02-22 19:47:26 +0000783 for (MachineBasicBlock::iterator I = BB->begin(), E = BB->end(); I!=E; ++I)
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000784 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
785 MachineOperand& MO = I->getOperand(i);
786 if (MO.isRegister() && MO.getReg()) {
787 unsigned Reg = MO.getReg();
Chris Lattner986618e2004-02-22 19:47:26 +0000788 if (MRegisterInfo::isVirtualRegister(Reg))
Chris Lattner65cf42d2004-02-23 07:29:45 +0000789 if (RegMap.getRegClass(Reg)->getSize() == 10)
790 goto UsesFPReg;
Chris Lattner986618e2004-02-22 19:47:26 +0000791 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000792 }
Chris Lattner65cf42d2004-02-23 07:29:45 +0000793 // If we haven't found an FP register use or def in this basic block, check
794 // to see if any of our successors has an FP PHI node, which will cause a
795 // copy to be inserted into this block.
Brian Gaeke235aa5e2004-04-28 04:34:16 +0000796 for (MachineBasicBlock::const_succ_iterator SI = BB->succ_begin(),
797 SE = BB->succ_end(); SI != SE; ++SI) {
798 MachineBasicBlock *SBB = *SI;
Chris Lattnerfbc39d52004-02-23 07:42:19 +0000799 for (MachineBasicBlock::iterator I = SBB->begin();
800 I != SBB->end() && I->getOpcode() == X86::PHI; ++I) {
801 if (RegMap.getRegClass(I->getOperand(0).getReg())->getSize() == 10)
802 goto UsesFPReg;
Chris Lattner986618e2004-02-22 19:47:26 +0000803 }
Chris Lattnerfbc39d52004-02-23 07:42:19 +0000804 }
Chris Lattner65cf42d2004-02-23 07:29:45 +0000805 continue;
806 UsesFPReg:
807 // Okay, this block uses an FP register. If the block has successors (ie,
808 // it's not an unwind/return), insert the FP_REG_KILL instruction.
Brian Gaeke1afe7732004-04-28 04:45:55 +0000809 if (BB->succ_size () && RequiresFPRegKill(BB)) {
Chris Lattneree352852004-02-29 07:22:16 +0000810 BuildMI(*BB, BB->getFirstTerminator(), X86::FP_REG_KILL, 0);
Chris Lattner65cf42d2004-02-23 07:29:45 +0000811 ++NumFPKill;
Chris Lattner986618e2004-02-22 19:47:26 +0000812 }
813 }
814}
815
816
Chris Lattner9f1b5312004-05-13 15:12:43 +0000817void ISel::getAddressingMode(Value *Addr, unsigned &BaseReg, unsigned &Scale,
818 unsigned &IndexReg, unsigned &Disp) {
819 BaseReg = 0; Scale = 1; IndexReg = 0; Disp = 0;
820 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Addr)) {
821 if (isGEPFoldable(BB, GEP->getOperand(0), GEP->op_begin()+1, GEP->op_end(),
822 BaseReg, Scale, IndexReg, Disp))
823 return;
824 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr)) {
825 if (CE->getOpcode() == Instruction::GetElementPtr)
826 if (isGEPFoldable(BB, CE->getOperand(0), CE->op_begin()+1, CE->op_end(),
827 BaseReg, Scale, IndexReg, Disp))
828 return;
829 }
830
831 // If it's not foldable, reset addr mode.
832 BaseReg = getReg(Addr);
833 Scale = 1; IndexReg = 0; Disp = 0;
834}
835
Chris Lattner307ecba2004-03-30 22:39:09 +0000836// canFoldSetCCIntoBranchOrSelect - Return the setcc instruction if we can fold
837// it into the conditional branch or select instruction which is the only user
838// of the cc instruction. This is the case if the conditional branch is the
839// only user of the setcc, and if the setcc is in the same basic block as the
840// conditional branch. We also don't handle long arguments below, so we reject
841// them here as well.
Chris Lattner6d40c192003-01-16 16:43:00 +0000842//
Chris Lattner307ecba2004-03-30 22:39:09 +0000843static SetCondInst *canFoldSetCCIntoBranchOrSelect(Value *V) {
Chris Lattner6d40c192003-01-16 16:43:00 +0000844 if (SetCondInst *SCI = dyn_cast<SetCondInst>(V))
Chris Lattner307ecba2004-03-30 22:39:09 +0000845 if (SCI->hasOneUse()) {
846 Instruction *User = cast<Instruction>(SCI->use_back());
847 if ((isa<BranchInst>(User) || isa<SelectInst>(User)) &&
848 SCI->getParent() == User->getParent() &&
Chris Lattner48c937e2004-04-06 17:34:50 +0000849 (getClassB(SCI->getOperand(0)->getType()) != cLong ||
850 SCI->getOpcode() == Instruction::SetEQ ||
851 SCI->getOpcode() == Instruction::SetNE))
Chris Lattner6d40c192003-01-16 16:43:00 +0000852 return SCI;
853 }
854 return 0;
855}
Chris Lattner333b2fa2002-12-13 10:09:43 +0000856
Chris Lattner6d40c192003-01-16 16:43:00 +0000857// Return a fixed numbering for setcc instructions which does not depend on the
858// order of the opcodes.
859//
860static unsigned getSetCCNumber(unsigned Opcode) {
861 switch(Opcode) {
862 default: assert(0 && "Unknown setcc instruction!");
863 case Instruction::SetEQ: return 0;
864 case Instruction::SetNE: return 1;
865 case Instruction::SetLT: return 2;
Chris Lattner55f6fab2003-01-16 18:07:23 +0000866 case Instruction::SetGE: return 3;
867 case Instruction::SetGT: return 4;
868 case Instruction::SetLE: return 5;
Chris Lattner6d40c192003-01-16 16:43:00 +0000869 }
870}
Chris Lattner06925362002-11-17 21:56:38 +0000871
Chris Lattner6d40c192003-01-16 16:43:00 +0000872// LLVM -> X86 signed X86 unsigned
873// ----- ---------- ------------
874// seteq -> sete sete
875// setne -> setne setne
876// setlt -> setl setb
Chris Lattner55f6fab2003-01-16 18:07:23 +0000877// setge -> setge setae
Chris Lattner6d40c192003-01-16 16:43:00 +0000878// setgt -> setg seta
879// setle -> setle setbe
Chris Lattnerb2acc512003-10-19 21:09:10 +0000880// ----
881// sets // Used by comparison with 0 optimization
882// setns
883static const unsigned SetCCOpcodeTab[2][8] = {
884 { X86::SETEr, X86::SETNEr, X86::SETBr, X86::SETAEr, X86::SETAr, X86::SETBEr,
885 0, 0 },
886 { X86::SETEr, X86::SETNEr, X86::SETLr, X86::SETGEr, X86::SETGr, X86::SETLEr,
887 X86::SETSr, X86::SETNSr },
Chris Lattner6d40c192003-01-16 16:43:00 +0000888};
889
Chris Lattnerb2acc512003-10-19 21:09:10 +0000890// EmitComparison - This function emits a comparison of the two operands,
891// returning the extended setcc code to use.
892unsigned ISel::EmitComparison(unsigned OpNum, Value *Op0, Value *Op1,
893 MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +0000894 MachineBasicBlock::iterator IP) {
Brian Gaeke1749d632002-11-07 17:59:21 +0000895 // The arguments are already supposed to be of the same type.
Chris Lattner6d40c192003-01-16 16:43:00 +0000896 const Type *CompTy = Op0->getType();
Chris Lattner3e130a22003-01-13 00:32:26 +0000897 unsigned Class = getClassB(CompTy);
Chris Lattner58c41fe2003-08-24 19:19:47 +0000898 unsigned Op0r = getReg(Op0, MBB, IP);
Chris Lattner333864d2003-06-05 19:30:30 +0000899
900 // Special case handling of: cmp R, i
Chris Lattner260195d2004-05-07 19:55:55 +0000901 if (isa<ConstantPointerNull>(Op1)) {
902 if (OpNum < 2) // seteq/setne -> test
903 BuildMI(*MBB, IP, X86::TEST32rr, 2).addReg(Op0r).addReg(Op0r);
904 else
905 BuildMI(*MBB, IP, X86::CMP32ri, 2).addReg(Op0r).addImm(0);
906 return OpNum;
907
908 } else if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnere80e6372004-04-06 16:02:27 +0000909 if (Class == cByte || Class == cShort || Class == cInt) {
910 unsigned Op1v = CI->getRawValue();
Chris Lattnerc07736a2003-07-23 15:22:26 +0000911
Chris Lattner333864d2003-06-05 19:30:30 +0000912 // Mask off any upper bits of the constant, if there are any...
913 Op1v &= (1ULL << (8 << Class)) - 1;
914
Chris Lattnerb2acc512003-10-19 21:09:10 +0000915 // If this is a comparison against zero, emit more efficient code. We
916 // can't handle unsigned comparisons against zero unless they are == or
917 // !=. These should have been strength reduced already anyway.
918 if (Op1v == 0 && (CompTy->isSigned() || OpNum < 2)) {
919 static const unsigned TESTTab[] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000920 X86::TEST8rr, X86::TEST16rr, X86::TEST32rr
Chris Lattnerb2acc512003-10-19 21:09:10 +0000921 };
Chris Lattneree352852004-02-29 07:22:16 +0000922 BuildMI(*MBB, IP, TESTTab[Class], 2).addReg(Op0r).addReg(Op0r);
Chris Lattnerb2acc512003-10-19 21:09:10 +0000923
924 if (OpNum == 2) return 6; // Map jl -> js
925 if (OpNum == 3) return 7; // Map jg -> jns
926 return OpNum;
Chris Lattner333864d2003-06-05 19:30:30 +0000927 }
Chris Lattnerb2acc512003-10-19 21:09:10 +0000928
929 static const unsigned CMPTab[] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000930 X86::CMP8ri, X86::CMP16ri, X86::CMP32ri
Chris Lattnerb2acc512003-10-19 21:09:10 +0000931 };
932
Chris Lattneree352852004-02-29 07:22:16 +0000933 BuildMI(*MBB, IP, CMPTab[Class], 2).addReg(Op0r).addImm(Op1v);
Chris Lattnerb2acc512003-10-19 21:09:10 +0000934 return OpNum;
Chris Lattnere80e6372004-04-06 16:02:27 +0000935 } else {
936 assert(Class == cLong && "Unknown integer class!");
937 unsigned LowCst = CI->getRawValue();
938 unsigned HiCst = CI->getRawValue() >> 32;
939 if (OpNum < 2) { // seteq, setne
940 unsigned LoTmp = Op0r;
941 if (LowCst != 0) {
942 LoTmp = makeAnotherReg(Type::IntTy);
943 BuildMI(*MBB, IP, X86::XOR32ri, 2, LoTmp).addReg(Op0r).addImm(LowCst);
944 }
945 unsigned HiTmp = Op0r+1;
946 if (HiCst != 0) {
947 HiTmp = makeAnotherReg(Type::IntTy);
Chris Lattner48c937e2004-04-06 17:34:50 +0000948 BuildMI(*MBB, IP, X86::XOR32ri, 2,HiTmp).addReg(Op0r+1).addImm(HiCst);
Chris Lattnere80e6372004-04-06 16:02:27 +0000949 }
950 unsigned FinalTmp = makeAnotherReg(Type::IntTy);
951 BuildMI(*MBB, IP, X86::OR32rr, 2, FinalTmp).addReg(LoTmp).addReg(HiTmp);
952 return OpNum;
Chris Lattner48c937e2004-04-06 17:34:50 +0000953 } else {
954 // Emit a sequence of code which compares the high and low parts once
955 // each, then uses a conditional move to handle the overflow case. For
956 // example, a setlt for long would generate code like this:
957 //
Chris Lattner9984fd02004-05-09 23:16:33 +0000958 // AL = lo(op1) < lo(op2) // Always unsigned comparison
959 // BL = hi(op1) < hi(op2) // Signedness depends on operands
960 // dest = hi(op1) == hi(op2) ? BL : AL;
Chris Lattner48c937e2004-04-06 17:34:50 +0000961 //
962
963 // FIXME: This would be much better if we had hierarchical register
964 // classes! Until then, hardcode registers so that we can deal with
965 // their aliases (because we don't have conditional byte moves).
966 //
967 BuildMI(*MBB, IP, X86::CMP32ri, 2).addReg(Op0r).addImm(LowCst);
968 BuildMI(*MBB, IP, SetCCOpcodeTab[0][OpNum], 0, X86::AL);
969 BuildMI(*MBB, IP, X86::CMP32ri, 2).addReg(Op0r+1).addImm(HiCst);
970 BuildMI(*MBB, IP, SetCCOpcodeTab[CompTy->isSigned()][OpNum], 0,X86::BL);
971 BuildMI(*MBB, IP, X86::IMPLICIT_DEF, 0, X86::BH);
972 BuildMI(*MBB, IP, X86::IMPLICIT_DEF, 0, X86::AH);
973 BuildMI(*MBB, IP, X86::CMOVE16rr, 2, X86::BX).addReg(X86::BX)
974 .addReg(X86::AX);
975 // NOTE: visitSetCondInst knows that the value is dumped into the BL
976 // register at this point for long values...
977 return OpNum;
Chris Lattnere80e6372004-04-06 16:02:27 +0000978 }
Chris Lattner333864d2003-06-05 19:30:30 +0000979 }
Chris Lattnere80e6372004-04-06 16:02:27 +0000980 }
Chris Lattner333864d2003-06-05 19:30:30 +0000981
Chris Lattner9f08a922004-02-03 18:54:04 +0000982 // Special case handling of comparison against +/- 0.0
983 if (ConstantFP *CFP = dyn_cast<ConstantFP>(Op1))
984 if (CFP->isExactlyValue(+0.0) || CFP->isExactlyValue(-0.0)) {
Chris Lattneree352852004-02-29 07:22:16 +0000985 BuildMI(*MBB, IP, X86::FTST, 1).addReg(Op0r);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000986 BuildMI(*MBB, IP, X86::FNSTSW8r, 0);
Chris Lattneree352852004-02-29 07:22:16 +0000987 BuildMI(*MBB, IP, X86::SAHF, 1);
Chris Lattner9f08a922004-02-03 18:54:04 +0000988 return OpNum;
989 }
990
Chris Lattner58c41fe2003-08-24 19:19:47 +0000991 unsigned Op1r = getReg(Op1, MBB, IP);
Chris Lattner3e130a22003-01-13 00:32:26 +0000992 switch (Class) {
993 default: assert(0 && "Unknown type class!");
994 // Emit: cmp <var1>, <var2> (do the comparison). We can
995 // compare 8-bit with 8-bit, 16-bit with 16-bit, 32-bit with
996 // 32-bit.
997 case cByte:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000998 BuildMI(*MBB, IP, X86::CMP8rr, 2).addReg(Op0r).addReg(Op1r);
Chris Lattner3e130a22003-01-13 00:32:26 +0000999 break;
1000 case cShort:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001001 BuildMI(*MBB, IP, X86::CMP16rr, 2).addReg(Op0r).addReg(Op1r);
Chris Lattner3e130a22003-01-13 00:32:26 +00001002 break;
1003 case cInt:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001004 BuildMI(*MBB, IP, X86::CMP32rr, 2).addReg(Op0r).addReg(Op1r);
Chris Lattner3e130a22003-01-13 00:32:26 +00001005 break;
1006 case cFP:
Chris Lattner8d2822e2004-04-12 01:43:36 +00001007 if (0) { // for processors prior to the P6
1008 BuildMI(*MBB, IP, X86::FpUCOM, 2).addReg(Op0r).addReg(Op1r);
1009 BuildMI(*MBB, IP, X86::FNSTSW8r, 0);
1010 BuildMI(*MBB, IP, X86::SAHF, 1);
1011 } else {
Chris Lattner133dbb12004-04-12 03:02:48 +00001012 BuildMI(*MBB, IP, X86::FpUCOMI, 2).addReg(Op0r).addReg(Op1r);
Chris Lattner8d2822e2004-04-12 01:43:36 +00001013 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001014 break;
1015
1016 case cLong:
1017 if (OpNum < 2) { // seteq, setne
1018 unsigned LoTmp = makeAnotherReg(Type::IntTy);
1019 unsigned HiTmp = makeAnotherReg(Type::IntTy);
1020 unsigned FinalTmp = makeAnotherReg(Type::IntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001021 BuildMI(*MBB, IP, X86::XOR32rr, 2, LoTmp).addReg(Op0r).addReg(Op1r);
1022 BuildMI(*MBB, IP, X86::XOR32rr, 2, HiTmp).addReg(Op0r+1).addReg(Op1r+1);
1023 BuildMI(*MBB, IP, X86::OR32rr, 2, FinalTmp).addReg(LoTmp).addReg(HiTmp);
Chris Lattner3e130a22003-01-13 00:32:26 +00001024 break; // Allow the sete or setne to be generated from flags set by OR
1025 } else {
1026 // Emit a sequence of code which compares the high and low parts once
1027 // each, then uses a conditional move to handle the overflow case. For
1028 // example, a setlt for long would generate code like this:
1029 //
1030 // AL = lo(op1) < lo(op2) // Signedness depends on operands
1031 // BL = hi(op1) < hi(op2) // Always unsigned comparison
Chris Lattner9984fd02004-05-09 23:16:33 +00001032 // dest = hi(op1) == hi(op2) ? BL : AL;
Chris Lattner3e130a22003-01-13 00:32:26 +00001033 //
1034
Chris Lattner6d40c192003-01-16 16:43:00 +00001035 // FIXME: This would be much better if we had hierarchical register
Chris Lattner3e130a22003-01-13 00:32:26 +00001036 // classes! Until then, hardcode registers so that we can deal with their
1037 // aliases (because we don't have conditional byte moves).
1038 //
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001039 BuildMI(*MBB, IP, X86::CMP32rr, 2).addReg(Op0r).addReg(Op1r);
Chris Lattneree352852004-02-29 07:22:16 +00001040 BuildMI(*MBB, IP, SetCCOpcodeTab[0][OpNum], 0, X86::AL);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001041 BuildMI(*MBB, IP, X86::CMP32rr, 2).addReg(Op0r+1).addReg(Op1r+1);
Chris Lattneree352852004-02-29 07:22:16 +00001042 BuildMI(*MBB, IP, SetCCOpcodeTab[CompTy->isSigned()][OpNum], 0, X86::BL);
1043 BuildMI(*MBB, IP, X86::IMPLICIT_DEF, 0, X86::BH);
1044 BuildMI(*MBB, IP, X86::IMPLICIT_DEF, 0, X86::AH);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001045 BuildMI(*MBB, IP, X86::CMOVE16rr, 2, X86::BX).addReg(X86::BX)
Chris Lattneree352852004-02-29 07:22:16 +00001046 .addReg(X86::AX);
Chris Lattner6d40c192003-01-16 16:43:00 +00001047 // NOTE: visitSetCondInst knows that the value is dumped into the BL
1048 // register at this point for long values...
Chris Lattnerb2acc512003-10-19 21:09:10 +00001049 return OpNum;
Chris Lattner3e130a22003-01-13 00:32:26 +00001050 }
1051 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00001052 return OpNum;
Chris Lattner6d40c192003-01-16 16:43:00 +00001053}
Chris Lattner3e130a22003-01-13 00:32:26 +00001054
Chris Lattner6d40c192003-01-16 16:43:00 +00001055/// SetCC instructions - Here we just emit boilerplate code to set a byte-sized
1056/// register, then move it to wherever the result should be.
1057///
1058void ISel::visitSetCondInst(SetCondInst &I) {
Chris Lattner307ecba2004-03-30 22:39:09 +00001059 if (canFoldSetCCIntoBranchOrSelect(&I))
1060 return; // Fold this into a branch or select.
Chris Lattner6d40c192003-01-16 16:43:00 +00001061
Chris Lattner6d40c192003-01-16 16:43:00 +00001062 unsigned DestReg = getReg(I);
Chris Lattner58c41fe2003-08-24 19:19:47 +00001063 MachineBasicBlock::iterator MII = BB->end();
1064 emitSetCCOperation(BB, MII, I.getOperand(0), I.getOperand(1), I.getOpcode(),
1065 DestReg);
1066}
Chris Lattner6d40c192003-01-16 16:43:00 +00001067
Chris Lattner58c41fe2003-08-24 19:19:47 +00001068/// emitSetCCOperation - Common code shared between visitSetCondInst and
1069/// constant expression support.
Misha Brukman538607f2004-03-01 23:53:11 +00001070///
Chris Lattner58c41fe2003-08-24 19:19:47 +00001071void ISel::emitSetCCOperation(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +00001072 MachineBasicBlock::iterator IP,
Chris Lattner58c41fe2003-08-24 19:19:47 +00001073 Value *Op0, Value *Op1, unsigned Opcode,
1074 unsigned TargetReg) {
1075 unsigned OpNum = getSetCCNumber(Opcode);
Chris Lattnerb2acc512003-10-19 21:09:10 +00001076 OpNum = EmitComparison(OpNum, Op0, Op1, MBB, IP);
Chris Lattner58c41fe2003-08-24 19:19:47 +00001077
Chris Lattnerb2acc512003-10-19 21:09:10 +00001078 const Type *CompTy = Op0->getType();
1079 unsigned CompClass = getClassB(CompTy);
1080 bool isSigned = CompTy->isSigned() && CompClass != cFP;
1081
1082 if (CompClass != cLong || OpNum < 2) {
Chris Lattner6d40c192003-01-16 16:43:00 +00001083 // Handle normal comparisons with a setcc instruction...
Chris Lattneree352852004-02-29 07:22:16 +00001084 BuildMI(*MBB, IP, SetCCOpcodeTab[isSigned][OpNum], 0, TargetReg);
Chris Lattner6d40c192003-01-16 16:43:00 +00001085 } else {
1086 // Handle long comparisons by copying the value which is already in BL into
1087 // the register we want...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001088 BuildMI(*MBB, IP, X86::MOV8rr, 1, TargetReg).addReg(X86::BL);
Chris Lattner6d40c192003-01-16 16:43:00 +00001089 }
Brian Gaeke1749d632002-11-07 17:59:21 +00001090}
Chris Lattner51b49a92002-11-02 19:45:49 +00001091
Chris Lattner12d96a02004-03-30 21:22:00 +00001092void ISel::visitSelectInst(SelectInst &SI) {
1093 unsigned DestReg = getReg(SI);
1094 MachineBasicBlock::iterator MII = BB->end();
1095 emitSelectOperation(BB, MII, SI.getCondition(), SI.getTrueValue(),
1096 SI.getFalseValue(), DestReg);
1097}
1098
1099/// emitSelect - Common code shared between visitSelectInst and the constant
1100/// expression support.
1101void ISel::emitSelectOperation(MachineBasicBlock *MBB,
1102 MachineBasicBlock::iterator IP,
1103 Value *Cond, Value *TrueVal, Value *FalseVal,
1104 unsigned DestReg) {
1105 unsigned SelectClass = getClassB(TrueVal->getType());
1106
1107 // We don't support 8-bit conditional moves. If we have incoming constants,
1108 // transform them into 16-bit constants to avoid having a run-time conversion.
1109 if (SelectClass == cByte) {
1110 if (Constant *T = dyn_cast<Constant>(TrueVal))
1111 TrueVal = ConstantExpr::getCast(T, Type::ShortTy);
1112 if (Constant *F = dyn_cast<Constant>(FalseVal))
1113 FalseVal = ConstantExpr::getCast(F, Type::ShortTy);
1114 }
1115
Chris Lattner82c5a992004-04-13 21:56:09 +00001116 unsigned TrueReg = getReg(TrueVal, MBB, IP);
1117 unsigned FalseReg = getReg(FalseVal, MBB, IP);
1118 if (TrueReg == FalseReg) {
1119 static const unsigned Opcode[] = {
1120 X86::MOV8rr, X86::MOV16rr, X86::MOV32rr, X86::FpMOV, X86::MOV32rr
1121 };
1122 BuildMI(*MBB, IP, Opcode[SelectClass], 1, DestReg).addReg(TrueReg);
1123 if (SelectClass == cLong)
1124 BuildMI(*MBB, IP, X86::MOV32rr, 1, DestReg+1).addReg(TrueReg+1);
1125 return;
1126 }
1127
Chris Lattner307ecba2004-03-30 22:39:09 +00001128 unsigned Opcode;
1129 if (SetCondInst *SCI = canFoldSetCCIntoBranchOrSelect(Cond)) {
1130 // We successfully folded the setcc into the select instruction.
1131
1132 unsigned OpNum = getSetCCNumber(SCI->getOpcode());
1133 OpNum = EmitComparison(OpNum, SCI->getOperand(0), SCI->getOperand(1), MBB,
1134 IP);
1135
1136 const Type *CompTy = SCI->getOperand(0)->getType();
1137 bool isSigned = CompTy->isSigned() && getClassB(CompTy) != cFP;
1138
1139 // LLVM -> X86 signed X86 unsigned
1140 // ----- ---------- ------------
1141 // seteq -> cmovNE cmovNE
1142 // setne -> cmovE cmovE
1143 // setlt -> cmovGE cmovAE
1144 // setge -> cmovL cmovB
1145 // setgt -> cmovLE cmovBE
1146 // setle -> cmovG cmovA
1147 // ----
1148 // cmovNS // Used by comparison with 0 optimization
1149 // cmovS
1150
1151 switch (SelectClass) {
Chris Lattner352eb482004-03-31 22:03:35 +00001152 default: assert(0 && "Unknown value class!");
1153 case cFP: {
1154 // Annoyingly, we don't have a full set of floating point conditional
1155 // moves. :(
1156 static const unsigned OpcodeTab[2][8] = {
1157 { X86::FCMOVNE, X86::FCMOVE, X86::FCMOVAE, X86::FCMOVB,
1158 X86::FCMOVBE, X86::FCMOVA, 0, 0 },
1159 { X86::FCMOVNE, X86::FCMOVE, 0, 0, 0, 0, 0, 0 },
1160 };
1161 Opcode = OpcodeTab[isSigned][OpNum];
1162
1163 // If opcode == 0, we hit a case that we don't support. Output a setcc
1164 // and compare the result against zero.
1165 if (Opcode == 0) {
1166 unsigned CompClass = getClassB(CompTy);
1167 unsigned CondReg;
1168 if (CompClass != cLong || OpNum < 2) {
1169 CondReg = makeAnotherReg(Type::BoolTy);
1170 // Handle normal comparisons with a setcc instruction...
1171 BuildMI(*MBB, IP, SetCCOpcodeTab[isSigned][OpNum], 0, CondReg);
1172 } else {
1173 // Long comparisons end up in the BL register.
1174 CondReg = X86::BL;
1175 }
1176
Chris Lattner68626c22004-03-31 22:22:36 +00001177 BuildMI(*MBB, IP, X86::TEST8rr, 2).addReg(CondReg).addReg(CondReg);
Chris Lattner352eb482004-03-31 22:03:35 +00001178 Opcode = X86::FCMOVE;
1179 }
1180 break;
1181 }
Chris Lattner307ecba2004-03-30 22:39:09 +00001182 case cByte:
1183 case cShort: {
1184 static const unsigned OpcodeTab[2][8] = {
1185 { X86::CMOVNE16rr, X86::CMOVE16rr, X86::CMOVAE16rr, X86::CMOVB16rr,
1186 X86::CMOVBE16rr, X86::CMOVA16rr, 0, 0 },
1187 { X86::CMOVNE16rr, X86::CMOVE16rr, X86::CMOVGE16rr, X86::CMOVL16rr,
1188 X86::CMOVLE16rr, X86::CMOVG16rr, X86::CMOVNS16rr, X86::CMOVS16rr },
1189 };
1190 Opcode = OpcodeTab[isSigned][OpNum];
1191 break;
1192 }
1193 case cInt:
1194 case cLong: {
1195 static const unsigned OpcodeTab[2][8] = {
1196 { X86::CMOVNE32rr, X86::CMOVE32rr, X86::CMOVAE32rr, X86::CMOVB32rr,
1197 X86::CMOVBE32rr, X86::CMOVA32rr, 0, 0 },
1198 { X86::CMOVNE32rr, X86::CMOVE32rr, X86::CMOVGE32rr, X86::CMOVL32rr,
1199 X86::CMOVLE32rr, X86::CMOVG32rr, X86::CMOVNS32rr, X86::CMOVS32rr },
1200 };
1201 Opcode = OpcodeTab[isSigned][OpNum];
1202 break;
1203 }
1204 }
1205 } else {
1206 // Get the value being branched on, and use it to set the condition codes.
1207 unsigned CondReg = getReg(Cond, MBB, IP);
Chris Lattner68626c22004-03-31 22:22:36 +00001208 BuildMI(*MBB, IP, X86::TEST8rr, 2).addReg(CondReg).addReg(CondReg);
Chris Lattner307ecba2004-03-30 22:39:09 +00001209 switch (SelectClass) {
Chris Lattner352eb482004-03-31 22:03:35 +00001210 default: assert(0 && "Unknown value class!");
1211 case cFP: Opcode = X86::FCMOVE; break;
Chris Lattner307ecba2004-03-30 22:39:09 +00001212 case cByte:
Chris Lattner352eb482004-03-31 22:03:35 +00001213 case cShort: Opcode = X86::CMOVE16rr; break;
Chris Lattner307ecba2004-03-30 22:39:09 +00001214 case cInt:
Chris Lattner352eb482004-03-31 22:03:35 +00001215 case cLong: Opcode = X86::CMOVE32rr; break;
Chris Lattner307ecba2004-03-30 22:39:09 +00001216 }
1217 }
Chris Lattner12d96a02004-03-30 21:22:00 +00001218
Chris Lattner12d96a02004-03-30 21:22:00 +00001219 unsigned RealDestReg = DestReg;
Chris Lattner12d96a02004-03-30 21:22:00 +00001220
Chris Lattner12d96a02004-03-30 21:22:00 +00001221
1222 // Annoyingly enough, X86 doesn't HAVE 8-bit conditional moves. Because of
1223 // this, we have to promote the incoming values to 16 bits, perform a 16-bit
1224 // cmove, then truncate the result.
1225 if (SelectClass == cByte) {
1226 DestReg = makeAnotherReg(Type::ShortTy);
1227 if (getClassB(TrueVal->getType()) == cByte) {
1228 // Promote the true value, by storing it into AL, and reading from AX.
1229 BuildMI(*MBB, IP, X86::MOV8rr, 1, X86::AL).addReg(TrueReg);
1230 BuildMI(*MBB, IP, X86::MOV8ri, 1, X86::AH).addImm(0);
1231 TrueReg = makeAnotherReg(Type::ShortTy);
1232 BuildMI(*MBB, IP, X86::MOV16rr, 1, TrueReg).addReg(X86::AX);
1233 }
1234 if (getClassB(FalseVal->getType()) == cByte) {
1235 // Promote the true value, by storing it into CL, and reading from CX.
1236 BuildMI(*MBB, IP, X86::MOV8rr, 1, X86::CL).addReg(FalseReg);
1237 BuildMI(*MBB, IP, X86::MOV8ri, 1, X86::CH).addImm(0);
1238 FalseReg = makeAnotherReg(Type::ShortTy);
1239 BuildMI(*MBB, IP, X86::MOV16rr, 1, FalseReg).addReg(X86::CX);
1240 }
1241 }
1242
1243 BuildMI(*MBB, IP, Opcode, 2, DestReg).addReg(TrueReg).addReg(FalseReg);
1244
1245 switch (SelectClass) {
1246 case cByte:
1247 // We did the computation with 16-bit registers. Truncate back to our
1248 // result by copying into AX then copying out AL.
1249 BuildMI(*MBB, IP, X86::MOV16rr, 1, X86::AX).addReg(DestReg);
1250 BuildMI(*MBB, IP, X86::MOV8rr, 1, RealDestReg).addReg(X86::AL);
1251 break;
1252 case cLong:
1253 // Move the upper half of the value as well.
1254 BuildMI(*MBB, IP, Opcode, 2,DestReg+1).addReg(TrueReg+1).addReg(FalseReg+1);
1255 break;
1256 }
1257}
Chris Lattner58c41fe2003-08-24 19:19:47 +00001258
1259
1260
Brian Gaekec2505982002-11-30 11:57:28 +00001261/// promote32 - Emit instructions to turn a narrow operand into a 32-bit-wide
1262/// operand, in the specified target register.
Misha Brukman538607f2004-03-01 23:53:11 +00001263///
Chris Lattner3e130a22003-01-13 00:32:26 +00001264void ISel::promote32(unsigned targetReg, const ValueRecord &VR) {
Chris Lattner9984fd02004-05-09 23:16:33 +00001265 bool isUnsigned = VR.Ty->isUnsigned() || VR.Ty == Type::BoolTy;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001266
Chris Lattner29bf0622004-04-06 01:21:00 +00001267 Value *Val = VR.Val;
1268 const Type *Ty = VR.Ty;
Chris Lattner502e36c2004-04-06 01:25:33 +00001269 if (Val) {
Chris Lattner29bf0622004-04-06 01:21:00 +00001270 if (Constant *C = dyn_cast<Constant>(Val)) {
1271 Val = ConstantExpr::getCast(C, Type::IntTy);
1272 Ty = Type::IntTy;
1273 }
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001274
Chris Lattner502e36c2004-04-06 01:25:33 +00001275 // If this is a simple constant, just emit a MOVri directly to avoid the
1276 // copy.
1277 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
1278 int TheVal = CI->getRawValue() & 0xFFFFFFFF;
Chris Lattner2b10b082004-05-12 16:35:04 +00001279 BuildMI(BB, X86::MOV32ri, 1, targetReg).addImm(TheVal);
Chris Lattner502e36c2004-04-06 01:25:33 +00001280 return;
1281 }
1282 }
1283
Chris Lattner29bf0622004-04-06 01:21:00 +00001284 // Make sure we have the register number for this value...
1285 unsigned Reg = Val ? getReg(Val) : VR.Reg;
1286
1287 switch (getClassB(Ty)) {
Chris Lattner94af4142002-12-25 05:13:53 +00001288 case cByte:
1289 // Extend value into target register (8->32)
1290 if (isUnsigned)
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001291 BuildMI(BB, X86::MOVZX32rr8, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +00001292 else
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001293 BuildMI(BB, X86::MOVSX32rr8, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +00001294 break;
1295 case cShort:
1296 // Extend value into target register (16->32)
1297 if (isUnsigned)
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001298 BuildMI(BB, X86::MOVZX32rr16, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +00001299 else
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001300 BuildMI(BB, X86::MOVSX32rr16, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +00001301 break;
1302 case cInt:
1303 // Move value into target register (32->32)
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001304 BuildMI(BB, X86::MOV32rr, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +00001305 break;
1306 default:
1307 assert(0 && "Unpromotable operand class in promote32");
1308 }
Brian Gaekec2505982002-11-30 11:57:28 +00001309}
Chris Lattnerc5291f52002-10-27 21:16:59 +00001310
Chris Lattner72614082002-10-25 22:55:53 +00001311/// 'ret' instruction - Here we are interested in meeting the x86 ABI. As such,
1312/// we have the following possibilities:
1313///
1314/// ret void: No return value, simply emit a 'ret' instruction
1315/// ret sbyte, ubyte : Extend value into EAX and return
1316/// ret short, ushort: Extend value into EAX and return
1317/// ret int, uint : Move value into EAX and return
1318/// ret pointer : Move value into EAX and return
Chris Lattner06925362002-11-17 21:56:38 +00001319/// ret long, ulong : Move value into EAX/EDX and return
1320/// ret float/double : Top of FP stack
Chris Lattner72614082002-10-25 22:55:53 +00001321///
Chris Lattner3e130a22003-01-13 00:32:26 +00001322void ISel::visitReturnInst(ReturnInst &I) {
Chris Lattner94af4142002-12-25 05:13:53 +00001323 if (I.getNumOperands() == 0) {
1324 BuildMI(BB, X86::RET, 0); // Just emit a 'ret' instruction
1325 return;
1326 }
1327
1328 Value *RetVal = I.getOperand(0);
Chris Lattner3e130a22003-01-13 00:32:26 +00001329 switch (getClassB(RetVal->getType())) {
Chris Lattner94af4142002-12-25 05:13:53 +00001330 case cByte: // integral return values: extend or move into EAX and return
1331 case cShort:
1332 case cInt:
Chris Lattner29bf0622004-04-06 01:21:00 +00001333 promote32(X86::EAX, ValueRecord(RetVal));
Chris Lattnerdbd73722003-05-06 21:32:22 +00001334 // Declare that EAX is live on exit
Chris Lattnerc2489032003-05-07 19:21:28 +00001335 BuildMI(BB, X86::IMPLICIT_USE, 2).addReg(X86::EAX).addReg(X86::ESP);
Chris Lattner94af4142002-12-25 05:13:53 +00001336 break;
Chris Lattner29bf0622004-04-06 01:21:00 +00001337 case cFP: { // Floats & Doubles: Return in ST(0)
1338 unsigned RetReg = getReg(RetVal);
Chris Lattner3e130a22003-01-13 00:32:26 +00001339 BuildMI(BB, X86::FpSETRESULT, 1).addReg(RetReg);
Chris Lattnerdbd73722003-05-06 21:32:22 +00001340 // Declare that top-of-stack is live on exit
Chris Lattnerc2489032003-05-07 19:21:28 +00001341 BuildMI(BB, X86::IMPLICIT_USE, 2).addReg(X86::ST0).addReg(X86::ESP);
Chris Lattner94af4142002-12-25 05:13:53 +00001342 break;
Chris Lattner29bf0622004-04-06 01:21:00 +00001343 }
1344 case cLong: {
1345 unsigned RetReg = getReg(RetVal);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001346 BuildMI(BB, X86::MOV32rr, 1, X86::EAX).addReg(RetReg);
1347 BuildMI(BB, X86::MOV32rr, 1, X86::EDX).addReg(RetReg+1);
Chris Lattnerdbd73722003-05-06 21:32:22 +00001348 // Declare that EAX & EDX are live on exit
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001349 BuildMI(BB, X86::IMPLICIT_USE, 3).addReg(X86::EAX).addReg(X86::EDX)
1350 .addReg(X86::ESP);
Chris Lattner3e130a22003-01-13 00:32:26 +00001351 break;
Chris Lattner29bf0622004-04-06 01:21:00 +00001352 }
Chris Lattner94af4142002-12-25 05:13:53 +00001353 default:
Chris Lattner3e130a22003-01-13 00:32:26 +00001354 visitInstruction(I);
Chris Lattner94af4142002-12-25 05:13:53 +00001355 }
Chris Lattner43189d12002-11-17 20:07:45 +00001356 // Emit a 'ret' instruction
Chris Lattner94af4142002-12-25 05:13:53 +00001357 BuildMI(BB, X86::RET, 0);
Chris Lattner72614082002-10-25 22:55:53 +00001358}
1359
Chris Lattner55f6fab2003-01-16 18:07:23 +00001360// getBlockAfter - Return the basic block which occurs lexically after the
1361// specified one.
1362static inline BasicBlock *getBlockAfter(BasicBlock *BB) {
1363 Function::iterator I = BB; ++I; // Get iterator to next block
1364 return I != BB->getParent()->end() ? &*I : 0;
1365}
1366
Chris Lattner51b49a92002-11-02 19:45:49 +00001367/// visitBranchInst - Handle conditional and unconditional branches here. Note
1368/// that since code layout is frozen at this point, that if we are trying to
1369/// jump to a block that is the immediate successor of the current block, we can
Chris Lattner6d40c192003-01-16 16:43:00 +00001370/// just make a fall-through (but we don't currently).
Chris Lattner51b49a92002-11-02 19:45:49 +00001371///
Chris Lattner94af4142002-12-25 05:13:53 +00001372void ISel::visitBranchInst(BranchInst &BI) {
Brian Gaekeea9ca672004-04-28 04:19:37 +00001373 // Update machine-CFG edges
1374 BB->addSuccessor (MBBMap[BI.getSuccessor(0)]);
1375 if (BI.isConditional())
1376 BB->addSuccessor (MBBMap[BI.getSuccessor(1)]);
1377
Chris Lattner55f6fab2003-01-16 18:07:23 +00001378 BasicBlock *NextBB = getBlockAfter(BI.getParent()); // BB after current one
1379
1380 if (!BI.isConditional()) { // Unconditional branch?
Chris Lattnercf93cdd2004-01-30 22:13:44 +00001381 if (BI.getSuccessor(0) != NextBB)
Brian Gaeke9f088e42004-05-14 06:54:56 +00001382 BuildMI(BB, X86::JMP, 1).addMBB(MBBMap[BI.getSuccessor(0)]);
Chris Lattner6d40c192003-01-16 16:43:00 +00001383 return;
1384 }
1385
1386 // See if we can fold the setcc into the branch itself...
Chris Lattner307ecba2004-03-30 22:39:09 +00001387 SetCondInst *SCI = canFoldSetCCIntoBranchOrSelect(BI.getCondition());
Chris Lattner6d40c192003-01-16 16:43:00 +00001388 if (SCI == 0) {
1389 // Nope, cannot fold setcc into this branch. Emit a branch on a condition
1390 // computed some other way...
Chris Lattner065faeb2002-12-28 20:24:02 +00001391 unsigned condReg = getReg(BI.getCondition());
Chris Lattner68626c22004-03-31 22:22:36 +00001392 BuildMI(BB, X86::TEST8rr, 2).addReg(condReg).addReg(condReg);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001393 if (BI.getSuccessor(1) == NextBB) {
1394 if (BI.getSuccessor(0) != NextBB)
Brian Gaeke9f088e42004-05-14 06:54:56 +00001395 BuildMI(BB, X86::JNE, 1).addMBB(MBBMap[BI.getSuccessor(0)]);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001396 } else {
Brian Gaeke9f088e42004-05-14 06:54:56 +00001397 BuildMI(BB, X86::JE, 1).addMBB(MBBMap[BI.getSuccessor(1)]);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001398
1399 if (BI.getSuccessor(0) != NextBB)
Brian Gaeke9f088e42004-05-14 06:54:56 +00001400 BuildMI(BB, X86::JMP, 1).addMBB(MBBMap[BI.getSuccessor(0)]);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001401 }
Chris Lattner6d40c192003-01-16 16:43:00 +00001402 return;
Chris Lattner94af4142002-12-25 05:13:53 +00001403 }
Chris Lattner6d40c192003-01-16 16:43:00 +00001404
1405 unsigned OpNum = getSetCCNumber(SCI->getOpcode());
Chris Lattner58c41fe2003-08-24 19:19:47 +00001406 MachineBasicBlock::iterator MII = BB->end();
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001407 OpNum = EmitComparison(OpNum, SCI->getOperand(0), SCI->getOperand(1), BB,MII);
Chris Lattnerb2acc512003-10-19 21:09:10 +00001408
1409 const Type *CompTy = SCI->getOperand(0)->getType();
1410 bool isSigned = CompTy->isSigned() && getClassB(CompTy) != cFP;
Chris Lattner6d40c192003-01-16 16:43:00 +00001411
Chris Lattnerb2acc512003-10-19 21:09:10 +00001412
Chris Lattner6d40c192003-01-16 16:43:00 +00001413 // LLVM -> X86 signed X86 unsigned
1414 // ----- ---------- ------------
1415 // seteq -> je je
1416 // setne -> jne jne
1417 // setlt -> jl jb
Chris Lattner55f6fab2003-01-16 18:07:23 +00001418 // setge -> jge jae
Chris Lattner6d40c192003-01-16 16:43:00 +00001419 // setgt -> jg ja
1420 // setle -> jle jbe
Chris Lattnerb2acc512003-10-19 21:09:10 +00001421 // ----
1422 // js // Used by comparison with 0 optimization
1423 // jns
1424
1425 static const unsigned OpcodeTab[2][8] = {
1426 { X86::JE, X86::JNE, X86::JB, X86::JAE, X86::JA, X86::JBE, 0, 0 },
1427 { X86::JE, X86::JNE, X86::JL, X86::JGE, X86::JG, X86::JLE,
1428 X86::JS, X86::JNS },
Chris Lattner6d40c192003-01-16 16:43:00 +00001429 };
1430
Chris Lattner55f6fab2003-01-16 18:07:23 +00001431 if (BI.getSuccessor(0) != NextBB) {
Brian Gaeke9f088e42004-05-14 06:54:56 +00001432 BuildMI(BB, OpcodeTab[isSigned][OpNum], 1)
1433 .addMBB(MBBMap[BI.getSuccessor(0)]);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001434 if (BI.getSuccessor(1) != NextBB)
Brian Gaeke9f088e42004-05-14 06:54:56 +00001435 BuildMI(BB, X86::JMP, 1).addMBB(MBBMap[BI.getSuccessor(1)]);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001436 } else {
1437 // Change to the inverse condition...
1438 if (BI.getSuccessor(1) != NextBB) {
1439 OpNum ^= 1;
Brian Gaeke9f088e42004-05-14 06:54:56 +00001440 BuildMI(BB, OpcodeTab[isSigned][OpNum], 1)
1441 .addMBB(MBBMap[BI.getSuccessor(1)]);
Chris Lattner55f6fab2003-01-16 18:07:23 +00001442 }
1443 }
Chris Lattner2df035b2002-11-02 19:27:56 +00001444}
1445
Chris Lattner3e130a22003-01-13 00:32:26 +00001446
1447/// doCall - This emits an abstract call instruction, setting up the arguments
1448/// and the return value as appropriate. For the actual function call itself,
1449/// it inserts the specified CallMI instruction into the stream.
1450///
1451void ISel::doCall(const ValueRecord &Ret, MachineInstr *CallMI,
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001452 const std::vector<ValueRecord> &Args) {
Chris Lattner3e130a22003-01-13 00:32:26 +00001453
Chris Lattner065faeb2002-12-28 20:24:02 +00001454 // Count how many bytes are to be pushed on the stack...
1455 unsigned NumBytes = 0;
Misha Brukman0d2cf3a2002-12-04 19:22:53 +00001456
Chris Lattner3e130a22003-01-13 00:32:26 +00001457 if (!Args.empty()) {
1458 for (unsigned i = 0, e = Args.size(); i != e; ++i)
1459 switch (getClassB(Args[i].Ty)) {
Chris Lattner065faeb2002-12-28 20:24:02 +00001460 case cByte: case cShort: case cInt:
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001461 NumBytes += 4; break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001462 case cLong:
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001463 NumBytes += 8; break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001464 case cFP:
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001465 NumBytes += Args[i].Ty == Type::FloatTy ? 4 : 8;
1466 break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001467 default: assert(0 && "Unknown class!");
1468 }
1469
1470 // Adjust the stack pointer for the new arguments...
Chris Lattneree352852004-02-29 07:22:16 +00001471 BuildMI(BB, X86::ADJCALLSTACKDOWN, 1).addImm(NumBytes);
Chris Lattner065faeb2002-12-28 20:24:02 +00001472
1473 // Arguments go on the stack in reverse order, as specified by the ABI.
1474 unsigned ArgOffset = 0;
Chris Lattner3e130a22003-01-13 00:32:26 +00001475 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Chris Lattnerce6096f2004-03-01 02:34:08 +00001476 unsigned ArgReg;
Chris Lattner3e130a22003-01-13 00:32:26 +00001477 switch (getClassB(Args[i].Ty)) {
Chris Lattner065faeb2002-12-28 20:24:02 +00001478 case cByte:
Chris Lattner2b10b082004-05-12 16:35:04 +00001479 if (Args[i].Val && isa<ConstantBool>(Args[i].Val)) {
1480 addRegOffset(BuildMI(BB, X86::MOV32mi, 5), X86::ESP, ArgOffset)
1481 .addImm(Args[i].Val == ConstantBool::True);
1482 break;
1483 }
1484 // FALL THROUGH
Chris Lattner21585222004-03-01 02:42:43 +00001485 case cShort:
1486 if (Args[i].Val && isa<ConstantInt>(Args[i].Val)) {
1487 // Zero/Sign extend constant, then stuff into memory.
1488 ConstantInt *Val = cast<ConstantInt>(Args[i].Val);
1489 Val = cast<ConstantInt>(ConstantExpr::getCast(Val, Type::IntTy));
1490 addRegOffset(BuildMI(BB, X86::MOV32mi, 5), X86::ESP, ArgOffset)
1491 .addImm(Val->getRawValue() & 0xFFFFFFFF);
1492 } else {
1493 // Promote arg to 32 bits wide into a temporary register...
1494 ArgReg = makeAnotherReg(Type::UIntTy);
1495 promote32(ArgReg, Args[i]);
1496 addRegOffset(BuildMI(BB, X86::MOV32mr, 5),
1497 X86::ESP, ArgOffset).addReg(ArgReg);
1498 }
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001499 break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001500 case cInt:
Chris Lattner21585222004-03-01 02:42:43 +00001501 if (Args[i].Val && isa<ConstantInt>(Args[i].Val)) {
1502 unsigned Val = cast<ConstantInt>(Args[i].Val)->getRawValue();
1503 addRegOffset(BuildMI(BB, X86::MOV32mi, 5),
1504 X86::ESP, ArgOffset).addImm(Val);
Chris Lattnerb7cb9ff2004-05-13 15:26:48 +00001505 } else if (Args[i].Val && isa<ConstantPointerNull>(Args[i].Val)) {
1506 addRegOffset(BuildMI(BB, X86::MOV32mi, 5),
1507 X86::ESP, ArgOffset).addImm(0);
Chris Lattner21585222004-03-01 02:42:43 +00001508 } else {
1509 ArgReg = Args[i].Val ? getReg(Args[i].Val) : Args[i].Reg;
1510 addRegOffset(BuildMI(BB, X86::MOV32mr, 5),
1511 X86::ESP, ArgOffset).addReg(ArgReg);
1512 }
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001513 break;
Chris Lattner3e130a22003-01-13 00:32:26 +00001514 case cLong:
Chris Lattner92900a62004-04-06 03:23:00 +00001515 if (Args[i].Val && isa<ConstantInt>(Args[i].Val)) {
1516 uint64_t Val = cast<ConstantInt>(Args[i].Val)->getRawValue();
1517 addRegOffset(BuildMI(BB, X86::MOV32mi, 5),
1518 X86::ESP, ArgOffset).addImm(Val & ~0U);
1519 addRegOffset(BuildMI(BB, X86::MOV32mi, 5),
1520 X86::ESP, ArgOffset+4).addImm(Val >> 32ULL);
1521 } else {
1522 ArgReg = Args[i].Val ? getReg(Args[i].Val) : Args[i].Reg;
1523 addRegOffset(BuildMI(BB, X86::MOV32mr, 5),
1524 X86::ESP, ArgOffset).addReg(ArgReg);
1525 addRegOffset(BuildMI(BB, X86::MOV32mr, 5),
1526 X86::ESP, ArgOffset+4).addReg(ArgReg+1);
1527 }
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001528 ArgOffset += 4; // 8 byte entry, not 4.
1529 break;
1530
Chris Lattner065faeb2002-12-28 20:24:02 +00001531 case cFP:
Chris Lattnerce6096f2004-03-01 02:34:08 +00001532 ArgReg = Args[i].Val ? getReg(Args[i].Val) : Args[i].Reg;
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001533 if (Args[i].Ty == Type::FloatTy) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001534 addRegOffset(BuildMI(BB, X86::FST32m, 5),
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001535 X86::ESP, ArgOffset).addReg(ArgReg);
1536 } else {
1537 assert(Args[i].Ty == Type::DoubleTy && "Unknown FP type!");
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001538 addRegOffset(BuildMI(BB, X86::FST64m, 5),
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001539 X86::ESP, ArgOffset).addReg(ArgReg);
1540 ArgOffset += 4; // 8 byte entry, not 4.
1541 }
1542 break;
Chris Lattner065faeb2002-12-28 20:24:02 +00001543
Chris Lattner3e130a22003-01-13 00:32:26 +00001544 default: assert(0 && "Unknown class!");
Chris Lattner065faeb2002-12-28 20:24:02 +00001545 }
1546 ArgOffset += 4;
Chris Lattner94af4142002-12-25 05:13:53 +00001547 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001548 } else {
Chris Lattneree352852004-02-29 07:22:16 +00001549 BuildMI(BB, X86::ADJCALLSTACKDOWN, 1).addImm(0);
Chris Lattner94af4142002-12-25 05:13:53 +00001550 }
Chris Lattner6e49a4b2002-12-13 14:13:27 +00001551
Chris Lattner3e130a22003-01-13 00:32:26 +00001552 BB->push_back(CallMI);
Misha Brukman0d2cf3a2002-12-04 19:22:53 +00001553
Chris Lattneree352852004-02-29 07:22:16 +00001554 BuildMI(BB, X86::ADJCALLSTACKUP, 1).addImm(NumBytes);
Chris Lattnera3243642002-12-04 23:45:28 +00001555
1556 // If there is a return value, scavenge the result from the location the call
1557 // leaves it in...
1558 //
Chris Lattner3e130a22003-01-13 00:32:26 +00001559 if (Ret.Ty != Type::VoidTy) {
1560 unsigned DestClass = getClassB(Ret.Ty);
1561 switch (DestClass) {
Brian Gaeke20244b72002-12-12 15:33:40 +00001562 case cByte:
1563 case cShort:
1564 case cInt: {
1565 // Integral results are in %eax, or the appropriate portion
1566 // thereof.
1567 static const unsigned regRegMove[] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001568 X86::MOV8rr, X86::MOV16rr, X86::MOV32rr
Brian Gaeke20244b72002-12-12 15:33:40 +00001569 };
1570 static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX };
Chris Lattner3e130a22003-01-13 00:32:26 +00001571 BuildMI(BB, regRegMove[DestClass], 1, Ret.Reg).addReg(AReg[DestClass]);
Chris Lattner4fa1acc2002-12-04 23:50:28 +00001572 break;
Brian Gaeke20244b72002-12-12 15:33:40 +00001573 }
Chris Lattner94af4142002-12-25 05:13:53 +00001574 case cFP: // Floating-point return values live in %ST(0)
Chris Lattner3e130a22003-01-13 00:32:26 +00001575 BuildMI(BB, X86::FpGETRESULT, 1, Ret.Reg);
Brian Gaeke20244b72002-12-12 15:33:40 +00001576 break;
Chris Lattner3e130a22003-01-13 00:32:26 +00001577 case cLong: // Long values are left in EDX:EAX
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001578 BuildMI(BB, X86::MOV32rr, 1, Ret.Reg).addReg(X86::EAX);
1579 BuildMI(BB, X86::MOV32rr, 1, Ret.Reg+1).addReg(X86::EDX);
Chris Lattner3e130a22003-01-13 00:32:26 +00001580 break;
1581 default: assert(0 && "Unknown class!");
Chris Lattner4fa1acc2002-12-04 23:50:28 +00001582 }
Chris Lattnera3243642002-12-04 23:45:28 +00001583 }
Brian Gaekefa8d5712002-11-22 11:07:01 +00001584}
Chris Lattner2df035b2002-11-02 19:27:56 +00001585
Chris Lattner3e130a22003-01-13 00:32:26 +00001586
1587/// visitCallInst - Push args on stack and do a procedure call instruction.
1588void ISel::visitCallInst(CallInst &CI) {
1589 MachineInstr *TheCall;
1590 if (Function *F = CI.getCalledFunction()) {
Chris Lattnereca195e2003-05-08 19:44:13 +00001591 // Is it an intrinsic function call?
Brian Gaeked0fde302003-11-11 22:41:34 +00001592 if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID()) {
Chris Lattnereca195e2003-05-08 19:44:13 +00001593 visitIntrinsicCall(ID, CI); // Special intrinsics are not handled here
1594 return;
1595 }
1596
Chris Lattner3e130a22003-01-13 00:32:26 +00001597 // Emit a CALL instruction with PC-relative displacement.
1598 TheCall = BuildMI(X86::CALLpcrel32, 1).addGlobalAddress(F, true);
1599 } else { // Emit an indirect call...
1600 unsigned Reg = getReg(CI.getCalledValue());
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001601 TheCall = BuildMI(X86::CALL32r, 1).addReg(Reg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001602 }
1603
1604 std::vector<ValueRecord> Args;
1605 for (unsigned i = 1, e = CI.getNumOperands(); i != e; ++i)
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001606 Args.push_back(ValueRecord(CI.getOperand(i)));
Chris Lattner3e130a22003-01-13 00:32:26 +00001607
1608 unsigned DestReg = CI.getType() != Type::VoidTy ? getReg(CI) : 0;
1609 doCall(ValueRecord(DestReg, CI.getType()), TheCall, Args);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00001610}
Chris Lattner3e130a22003-01-13 00:32:26 +00001611
Chris Lattneraeb54b82003-08-28 21:23:43 +00001612
Chris Lattner44827152003-12-28 09:47:19 +00001613/// LowerUnknownIntrinsicFunctionCalls - This performs a prepass over the
1614/// function, lowering any calls to unknown intrinsic functions into the
1615/// equivalent LLVM code.
Misha Brukman538607f2004-03-01 23:53:11 +00001616///
Chris Lattner44827152003-12-28 09:47:19 +00001617void ISel::LowerUnknownIntrinsicFunctionCalls(Function &F) {
1618 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
1619 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; )
1620 if (CallInst *CI = dyn_cast<CallInst>(I++))
1621 if (Function *F = CI->getCalledFunction())
1622 switch (F->getIntrinsicID()) {
Chris Lattneraed386e2003-12-28 09:53:23 +00001623 case Intrinsic::not_intrinsic:
Chris Lattner317201d2004-03-13 00:24:00 +00001624 case Intrinsic::vastart:
1625 case Intrinsic::vacopy:
1626 case Intrinsic::vaend:
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001627 case Intrinsic::returnaddress:
1628 case Intrinsic::frameaddress:
Chris Lattner915e5e52004-02-12 17:53:22 +00001629 case Intrinsic::memcpy:
Chris Lattner2a0f2242004-02-14 04:46:05 +00001630 case Intrinsic::memset:
John Criswell4ffff9e2004-04-08 20:31:47 +00001631 case Intrinsic::readport:
1632 case Intrinsic::writeport:
Chris Lattner44827152003-12-28 09:47:19 +00001633 // We directly implement these intrinsics
1634 break;
John Criswelle5a4c152004-04-13 22:13:14 +00001635 case Intrinsic::readio: {
1636 // On X86, memory operations are in-order. Lower this intrinsic
1637 // into a volatile load.
1638 Instruction *Before = CI->getPrev();
1639 LoadInst * LI = new LoadInst (CI->getOperand(1), "", true, CI);
1640 CI->replaceAllUsesWith (LI);
1641 BB->getInstList().erase (CI);
John Criswelle5a4c152004-04-13 22:13:14 +00001642 break;
1643 }
1644 case Intrinsic::writeio: {
1645 // On X86, memory operations are in-order. Lower this intrinsic
1646 // into a volatile store.
1647 Instruction *Before = CI->getPrev();
1648 StoreInst * LI = new StoreInst (CI->getOperand(1),
1649 CI->getOperand(2), true, CI);
1650 CI->replaceAllUsesWith (LI);
1651 BB->getInstList().erase (CI);
John Criswelle5a4c152004-04-13 22:13:14 +00001652 break;
1653 }
Chris Lattner44827152003-12-28 09:47:19 +00001654 default:
1655 // All other intrinsic calls we must lower.
1656 Instruction *Before = CI->getPrev();
Chris Lattnerf70e0c22003-12-28 21:23:38 +00001657 TM.getIntrinsicLowering().LowerIntrinsicCall(CI);
Chris Lattner44827152003-12-28 09:47:19 +00001658 if (Before) { // Move iterator to instruction after call
1659 I = Before; ++I;
1660 } else {
1661 I = BB->begin();
1662 }
1663 }
1664
1665}
1666
Brian Gaeked0fde302003-11-11 22:41:34 +00001667void ISel::visitIntrinsicCall(Intrinsic::ID ID, CallInst &CI) {
Chris Lattnereca195e2003-05-08 19:44:13 +00001668 unsigned TmpReg1, TmpReg2;
1669 switch (ID) {
Chris Lattner5634b9f2004-03-13 00:24:52 +00001670 case Intrinsic::vastart:
Chris Lattnereca195e2003-05-08 19:44:13 +00001671 // Get the address of the first vararg value...
Chris Lattner73815062003-10-18 05:56:40 +00001672 TmpReg1 = getReg(CI);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001673 addFrameReference(BuildMI(BB, X86::LEA32r, 5, TmpReg1), VarArgsFrameIndex);
Chris Lattnereca195e2003-05-08 19:44:13 +00001674 return;
1675
Chris Lattner5634b9f2004-03-13 00:24:52 +00001676 case Intrinsic::vacopy:
Chris Lattner73815062003-10-18 05:56:40 +00001677 TmpReg1 = getReg(CI);
1678 TmpReg2 = getReg(CI.getOperand(1));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001679 BuildMI(BB, X86::MOV32rr, 1, TmpReg1).addReg(TmpReg2);
Chris Lattnereca195e2003-05-08 19:44:13 +00001680 return;
Chris Lattner5634b9f2004-03-13 00:24:52 +00001681 case Intrinsic::vaend: return; // Noop on X86
Chris Lattnereca195e2003-05-08 19:44:13 +00001682
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001683 case Intrinsic::returnaddress:
1684 case Intrinsic::frameaddress:
1685 TmpReg1 = getReg(CI);
1686 if (cast<Constant>(CI.getOperand(1))->isNullValue()) {
1687 if (ID == Intrinsic::returnaddress) {
1688 // Just load the return address
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001689 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, TmpReg1),
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001690 ReturnAddressIndex);
1691 } else {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001692 addFrameReference(BuildMI(BB, X86::LEA32r, 4, TmpReg1),
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001693 ReturnAddressIndex, -4);
1694 }
1695 } else {
1696 // Values other than zero are not implemented yet.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001697 BuildMI(BB, X86::MOV32ri, 1, TmpReg1).addImm(0);
Chris Lattner0e5b79c2004-02-15 01:04:03 +00001698 }
1699 return;
1700
Chris Lattner915e5e52004-02-12 17:53:22 +00001701 case Intrinsic::memcpy: {
1702 assert(CI.getNumOperands() == 5 && "Illegal llvm.memcpy call!");
1703 unsigned Align = 1;
1704 if (ConstantInt *AlignC = dyn_cast<ConstantInt>(CI.getOperand(4))) {
1705 Align = AlignC->getRawValue();
1706 if (Align == 0) Align = 1;
1707 }
1708
1709 // Turn the byte code into # iterations
Chris Lattner915e5e52004-02-12 17:53:22 +00001710 unsigned CountReg;
Chris Lattner2a0f2242004-02-14 04:46:05 +00001711 unsigned Opcode;
Chris Lattner915e5e52004-02-12 17:53:22 +00001712 switch (Align & 3) {
1713 case 2: // WORD aligned
Chris Lattner07122832004-02-13 23:36:47 +00001714 if (ConstantInt *I = dyn_cast<ConstantInt>(CI.getOperand(3))) {
1715 CountReg = getReg(ConstantUInt::get(Type::UIntTy, I->getRawValue()/2));
1716 } else {
1717 CountReg = makeAnotherReg(Type::IntTy);
Chris Lattner8dd8d262004-02-26 01:20:02 +00001718 unsigned ByteReg = getReg(CI.getOperand(3));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001719 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(1);
Chris Lattner07122832004-02-13 23:36:47 +00001720 }
Chris Lattner2a0f2242004-02-14 04:46:05 +00001721 Opcode = X86::REP_MOVSW;
Chris Lattner915e5e52004-02-12 17:53:22 +00001722 break;
1723 case 0: // DWORD aligned
Chris Lattner07122832004-02-13 23:36:47 +00001724 if (ConstantInt *I = dyn_cast<ConstantInt>(CI.getOperand(3))) {
1725 CountReg = getReg(ConstantUInt::get(Type::UIntTy, I->getRawValue()/4));
1726 } else {
1727 CountReg = makeAnotherReg(Type::IntTy);
Chris Lattner8dd8d262004-02-26 01:20:02 +00001728 unsigned ByteReg = getReg(CI.getOperand(3));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001729 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(2);
Chris Lattner07122832004-02-13 23:36:47 +00001730 }
Chris Lattner2a0f2242004-02-14 04:46:05 +00001731 Opcode = X86::REP_MOVSD;
Chris Lattner915e5e52004-02-12 17:53:22 +00001732 break;
Chris Lattner8dd8d262004-02-26 01:20:02 +00001733 default: // BYTE aligned
Chris Lattner07122832004-02-13 23:36:47 +00001734 CountReg = getReg(CI.getOperand(3));
Chris Lattner2a0f2242004-02-14 04:46:05 +00001735 Opcode = X86::REP_MOVSB;
Chris Lattner915e5e52004-02-12 17:53:22 +00001736 break;
1737 }
1738
1739 // No matter what the alignment is, we put the source in ESI, the
1740 // destination in EDI, and the count in ECX.
1741 TmpReg1 = getReg(CI.getOperand(1));
1742 TmpReg2 = getReg(CI.getOperand(2));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001743 BuildMI(BB, X86::MOV32rr, 1, X86::ECX).addReg(CountReg);
1744 BuildMI(BB, X86::MOV32rr, 1, X86::EDI).addReg(TmpReg1);
1745 BuildMI(BB, X86::MOV32rr, 1, X86::ESI).addReg(TmpReg2);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001746 BuildMI(BB, Opcode, 0);
1747 return;
1748 }
1749 case Intrinsic::memset: {
1750 assert(CI.getNumOperands() == 5 && "Illegal llvm.memset call!");
1751 unsigned Align = 1;
1752 if (ConstantInt *AlignC = dyn_cast<ConstantInt>(CI.getOperand(4))) {
1753 Align = AlignC->getRawValue();
1754 if (Align == 0) Align = 1;
Chris Lattner915e5e52004-02-12 17:53:22 +00001755 }
1756
Chris Lattner2a0f2242004-02-14 04:46:05 +00001757 // Turn the byte code into # iterations
Chris Lattner2a0f2242004-02-14 04:46:05 +00001758 unsigned CountReg;
1759 unsigned Opcode;
1760 if (ConstantInt *ValC = dyn_cast<ConstantInt>(CI.getOperand(2))) {
1761 unsigned Val = ValC->getRawValue() & 255;
1762
1763 // If the value is a constant, then we can potentially use larger copies.
1764 switch (Align & 3) {
1765 case 2: // WORD aligned
1766 if (ConstantInt *I = dyn_cast<ConstantInt>(CI.getOperand(3))) {
Chris Lattner300d0ed2004-02-14 06:00:36 +00001767 CountReg =getReg(ConstantUInt::get(Type::UIntTy, I->getRawValue()/2));
Chris Lattner2a0f2242004-02-14 04:46:05 +00001768 } else {
1769 CountReg = makeAnotherReg(Type::IntTy);
Chris Lattner8dd8d262004-02-26 01:20:02 +00001770 unsigned ByteReg = getReg(CI.getOperand(3));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001771 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(1);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001772 }
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001773 BuildMI(BB, X86::MOV16ri, 1, X86::AX).addImm((Val << 8) | Val);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001774 Opcode = X86::REP_STOSW;
1775 break;
1776 case 0: // DWORD aligned
1777 if (ConstantInt *I = dyn_cast<ConstantInt>(CI.getOperand(3))) {
Chris Lattner300d0ed2004-02-14 06:00:36 +00001778 CountReg =getReg(ConstantUInt::get(Type::UIntTy, I->getRawValue()/4));
Chris Lattner2a0f2242004-02-14 04:46:05 +00001779 } else {
1780 CountReg = makeAnotherReg(Type::IntTy);
Chris Lattner8dd8d262004-02-26 01:20:02 +00001781 unsigned ByteReg = getReg(CI.getOperand(3));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001782 BuildMI(BB, X86::SHR32ri, 2, CountReg).addReg(ByteReg).addImm(2);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001783 }
1784 Val = (Val << 8) | Val;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001785 BuildMI(BB, X86::MOV32ri, 1, X86::EAX).addImm((Val << 16) | Val);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001786 Opcode = X86::REP_STOSD;
1787 break;
Chris Lattner8dd8d262004-02-26 01:20:02 +00001788 default: // BYTE aligned
Chris Lattner2a0f2242004-02-14 04:46:05 +00001789 CountReg = getReg(CI.getOperand(3));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001790 BuildMI(BB, X86::MOV8ri, 1, X86::AL).addImm(Val);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001791 Opcode = X86::REP_STOSB;
1792 break;
1793 }
1794 } else {
1795 // If it's not a constant value we are storing, just fall back. We could
1796 // try to be clever to form 16 bit and 32 bit values, but we don't yet.
1797 unsigned ValReg = getReg(CI.getOperand(2));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001798 BuildMI(BB, X86::MOV8rr, 1, X86::AL).addReg(ValReg);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001799 CountReg = getReg(CI.getOperand(3));
1800 Opcode = X86::REP_STOSB;
1801 }
1802
1803 // No matter what the alignment is, we put the source in ESI, the
1804 // destination in EDI, and the count in ECX.
1805 TmpReg1 = getReg(CI.getOperand(1));
1806 //TmpReg2 = getReg(CI.getOperand(2));
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00001807 BuildMI(BB, X86::MOV32rr, 1, X86::ECX).addReg(CountReg);
1808 BuildMI(BB, X86::MOV32rr, 1, X86::EDI).addReg(TmpReg1);
Chris Lattner2a0f2242004-02-14 04:46:05 +00001809 BuildMI(BB, Opcode, 0);
Chris Lattner915e5e52004-02-12 17:53:22 +00001810 return;
1811 }
1812
Chris Lattner87e18de2004-04-13 17:20:37 +00001813 case Intrinsic::readport: {
1814 // First, determine that the size of the operand falls within the acceptable
1815 // range for this architecture.
John Criswell4ffff9e2004-04-08 20:31:47 +00001816 //
Chris Lattner87e18de2004-04-13 17:20:37 +00001817 if (getClassB(CI.getOperand(1)->getType()) != cShort) {
John Criswellca6ea0f2004-04-08 22:39:13 +00001818 std::cerr << "llvm.readport: Address size is not 16 bits\n";
Chris Lattner87e18de2004-04-13 17:20:37 +00001819 exit(1);
John Criswellca6ea0f2004-04-08 22:39:13 +00001820 }
John Criswell4ffff9e2004-04-08 20:31:47 +00001821
John Criswell4ffff9e2004-04-08 20:31:47 +00001822 // Now, move the I/O port address into the DX register and use the IN
1823 // instruction to get the input data.
1824 //
Chris Lattner87e18de2004-04-13 17:20:37 +00001825 unsigned Class = getClass(CI.getCalledFunction()->getReturnType());
1826 unsigned DestReg = getReg(CI);
John Criswell4ffff9e2004-04-08 20:31:47 +00001827
Chris Lattner87e18de2004-04-13 17:20:37 +00001828 // If the port is a single-byte constant, use the immediate form.
1829 if (ConstantInt *C = dyn_cast<ConstantInt>(CI.getOperand(1)))
1830 if ((C->getRawValue() & 255) == C->getRawValue()) {
1831 switch (Class) {
1832 case cByte:
1833 BuildMI(BB, X86::IN8ri, 1).addImm((unsigned char)C->getRawValue());
1834 BuildMI(BB, X86::MOV8rr, 1, DestReg).addReg(X86::AL);
1835 return;
1836 case cShort:
1837 BuildMI(BB, X86::IN16ri, 1).addImm((unsigned char)C->getRawValue());
1838 BuildMI(BB, X86::MOV8rr, 1, DestReg).addReg(X86::AX);
1839 return;
1840 case cInt:
1841 BuildMI(BB, X86::IN32ri, 1).addImm((unsigned char)C->getRawValue());
1842 BuildMI(BB, X86::MOV8rr, 1, DestReg).addReg(X86::EAX);
1843 return;
1844 }
1845 }
1846
1847 unsigned Reg = getReg(CI.getOperand(1));
1848 BuildMI(BB, X86::MOV16rr, 1, X86::DX).addReg(Reg);
1849 switch (Class) {
1850 case cByte:
1851 BuildMI(BB, X86::IN8rr, 0);
1852 BuildMI(BB, X86::MOV8rr, 1, DestReg).addReg(X86::AL);
1853 break;
1854 case cShort:
1855 BuildMI(BB, X86::IN16rr, 0);
1856 BuildMI(BB, X86::MOV8rr, 1, DestReg).addReg(X86::AX);
1857 break;
1858 case cInt:
1859 BuildMI(BB, X86::IN32rr, 0);
1860 BuildMI(BB, X86::MOV8rr, 1, DestReg).addReg(X86::EAX);
1861 break;
1862 default:
1863 std::cerr << "Cannot do input on this data type";
John Criswellca6ea0f2004-04-08 22:39:13 +00001864 exit (1);
1865 }
John Criswell4ffff9e2004-04-08 20:31:47 +00001866 return;
Chris Lattner87e18de2004-04-13 17:20:37 +00001867 }
John Criswell4ffff9e2004-04-08 20:31:47 +00001868
Chris Lattner87e18de2004-04-13 17:20:37 +00001869 case Intrinsic::writeport: {
1870 // First, determine that the size of the operand falls within the
1871 // acceptable range for this architecture.
1872 if (getClass(CI.getOperand(2)->getType()) != cShort) {
1873 std::cerr << "llvm.writeport: Address size is not 16 bits\n";
1874 exit(1);
1875 }
1876
1877 unsigned Class = getClassB(CI.getOperand(1)->getType());
1878 unsigned ValReg = getReg(CI.getOperand(1));
1879 switch (Class) {
1880 case cByte:
1881 BuildMI(BB, X86::MOV8rr, 1, X86::AL).addReg(ValReg);
1882 break;
1883 case cShort:
1884 BuildMI(BB, X86::MOV16rr, 1, X86::AX).addReg(ValReg);
1885 break;
1886 case cInt:
1887 BuildMI(BB, X86::MOV32rr, 1, X86::EAX).addReg(ValReg);
1888 break;
1889 default:
1890 std::cerr << "llvm.writeport: invalid data type for X86 target";
1891 exit(1);
1892 }
1893
1894
1895 // If the port is a single-byte constant, use the immediate form.
1896 if (ConstantInt *C = dyn_cast<ConstantInt>(CI.getOperand(2)))
1897 if ((C->getRawValue() & 255) == C->getRawValue()) {
1898 static const unsigned O[] = { X86::OUT8ir, X86::OUT16ir, X86::OUT32ir };
1899 BuildMI(BB, O[Class], 1).addImm((unsigned char)C->getRawValue());
1900 return;
1901 }
1902
1903 // Otherwise, move the I/O port address into the DX register and the value
1904 // to write into the AL/AX/EAX register.
1905 static const unsigned Opc[] = { X86::OUT8rr, X86::OUT16rr, X86::OUT32rr };
1906 unsigned Reg = getReg(CI.getOperand(2));
1907 BuildMI(BB, X86::MOV16rr, 1, X86::DX).addReg(Reg);
1908 BuildMI(BB, Opc[Class], 0);
1909 return;
1910 }
1911
Chris Lattner44827152003-12-28 09:47:19 +00001912 default: assert(0 && "Error: unknown intrinsics should have been lowered!");
Chris Lattnereca195e2003-05-08 19:44:13 +00001913 }
1914}
1915
Chris Lattner7dee5da2004-03-08 01:58:35 +00001916static bool isSafeToFoldLoadIntoInstruction(LoadInst &LI, Instruction &User) {
1917 if (LI.getParent() != User.getParent())
1918 return false;
1919 BasicBlock::iterator It = &LI;
1920 // Check all of the instructions between the load and the user. We should
1921 // really use alias analysis here, but for now we just do something simple.
1922 for (++It; It != BasicBlock::iterator(&User); ++It) {
1923 switch (It->getOpcode()) {
Chris Lattner85c84e72004-03-18 06:29:54 +00001924 case Instruction::Free:
Chris Lattner7dee5da2004-03-08 01:58:35 +00001925 case Instruction::Store:
1926 case Instruction::Call:
1927 case Instruction::Invoke:
1928 return false;
Chris Lattner133dbb12004-04-12 03:02:48 +00001929 case Instruction::Load:
1930 if (cast<LoadInst>(It)->isVolatile() && LI.isVolatile())
1931 return false;
1932 break;
Chris Lattner7dee5da2004-03-08 01:58:35 +00001933 }
1934 }
1935 return true;
1936}
1937
Chris Lattnerb515f6d2003-05-08 20:49:25 +00001938/// visitSimpleBinary - Implement simple binary operators for integral types...
1939/// OperatorClass is one of: 0 for Add, 1 for Sub, 2 for And, 3 for Or, 4 for
1940/// Xor.
Misha Brukman538607f2004-03-01 23:53:11 +00001941///
Chris Lattnerb515f6d2003-05-08 20:49:25 +00001942void ISel::visitSimpleBinary(BinaryOperator &B, unsigned OperatorClass) {
1943 unsigned DestReg = getReg(B);
1944 MachineBasicBlock::iterator MI = BB->end();
Chris Lattner721d2d42004-03-08 01:18:36 +00001945 Value *Op0 = B.getOperand(0), *Op1 = B.getOperand(1);
Chris Lattnerc81e6ba2004-05-10 15:15:55 +00001946 unsigned Class = getClassB(B.getType());
Chris Lattner721d2d42004-03-08 01:18:36 +00001947
Chris Lattner7dee5da2004-03-08 01:58:35 +00001948 // Special case: op Reg, load [mem]
Chris Lattnerc81e6ba2004-05-10 15:15:55 +00001949 if (isa<LoadInst>(Op0) && !isa<LoadInst>(Op1) && Class != cLong &&
1950 isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op0), B))
Chris Lattner7dee5da2004-03-08 01:58:35 +00001951 if (!B.swapOperands())
1952 std::swap(Op0, Op1); // Make sure any loads are in the RHS.
1953
Chris Lattner95157f72004-04-11 22:05:45 +00001954 if (isa<LoadInst>(Op1) && Class != cLong &&
Chris Lattner7dee5da2004-03-08 01:58:35 +00001955 isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op1), B)) {
1956
Chris Lattner95157f72004-04-11 22:05:45 +00001957 unsigned Opcode;
1958 if (Class != cFP) {
1959 static const unsigned OpcodeTab[][3] = {
1960 // Arithmetic operators
1961 { X86::ADD8rm, X86::ADD16rm, X86::ADD32rm }, // ADD
1962 { X86::SUB8rm, X86::SUB16rm, X86::SUB32rm }, // SUB
1963
1964 // Bitwise operators
1965 { X86::AND8rm, X86::AND16rm, X86::AND32rm }, // AND
1966 { X86:: OR8rm, X86:: OR16rm, X86:: OR32rm }, // OR
1967 { X86::XOR8rm, X86::XOR16rm, X86::XOR32rm }, // XOR
1968 };
1969 Opcode = OpcodeTab[OperatorClass][Class];
1970 } else {
1971 static const unsigned OpcodeTab[][2] = {
1972 { X86::FADD32m, X86::FADD64m }, // ADD
1973 { X86::FSUB32m, X86::FSUB64m }, // SUB
1974 };
1975 const Type *Ty = Op0->getType();
1976 assert(Ty == Type::FloatTy || Ty == Type::DoubleTy && "Unknown FP type!");
1977 Opcode = OpcodeTab[OperatorClass][Ty == Type::DoubleTy];
1978 }
Chris Lattner7dee5da2004-03-08 01:58:35 +00001979
Chris Lattner7dee5da2004-03-08 01:58:35 +00001980 unsigned Op0r = getReg(Op0);
Chris Lattner9f1b5312004-05-13 15:12:43 +00001981 if (AllocaInst *AI =
1982 dyn_castFixedAlloca(cast<LoadInst>(Op1)->getOperand(0))) {
1983 unsigned FI = getFixedSizedAllocaFI(AI);
1984 addFrameReference(BuildMI(BB, Opcode, 5, DestReg).addReg(Op0r), FI);
1985
1986 } else {
1987 unsigned BaseReg, Scale, IndexReg, Disp;
1988 getAddressingMode(cast<LoadInst>(Op1)->getOperand(0), BaseReg,
1989 Scale, IndexReg, Disp);
1990
1991 addFullAddress(BuildMI(BB, Opcode, 5, DestReg).addReg(Op0r),
1992 BaseReg, Scale, IndexReg, Disp);
1993 }
Chris Lattner7dee5da2004-03-08 01:58:35 +00001994 return;
1995 }
1996
Chris Lattner95157f72004-04-11 22:05:45 +00001997 // If this is a floating point subtract, check to see if we can fold the first
1998 // operand in.
1999 if (Class == cFP && OperatorClass == 1 &&
2000 isa<LoadInst>(Op0) &&
2001 isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op0), B)) {
2002 const Type *Ty = Op0->getType();
2003 assert(Ty == Type::FloatTy || Ty == Type::DoubleTy && "Unknown FP type!");
2004 unsigned Opcode = Ty == Type::FloatTy ? X86::FSUBR32m : X86::FSUBR64m;
2005
Chris Lattner95157f72004-04-11 22:05:45 +00002006 unsigned Op1r = getReg(Op1);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002007 if (AllocaInst *AI =
2008 dyn_castFixedAlloca(cast<LoadInst>(Op0)->getOperand(0))) {
2009 unsigned FI = getFixedSizedAllocaFI(AI);
2010 addFrameReference(BuildMI(BB, Opcode, 5, DestReg).addReg(Op1r), FI);
2011 } else {
2012 unsigned BaseReg, Scale, IndexReg, Disp;
2013 getAddressingMode(cast<LoadInst>(Op0)->getOperand(0), BaseReg,
2014 Scale, IndexReg, Disp);
2015
2016 addFullAddress(BuildMI(BB, Opcode, 5, DestReg).addReg(Op1r),
2017 BaseReg, Scale, IndexReg, Disp);
2018 }
Chris Lattner95157f72004-04-11 22:05:45 +00002019 return;
2020 }
2021
Chris Lattner721d2d42004-03-08 01:18:36 +00002022 emitSimpleBinaryOperation(BB, MI, Op0, Op1, OperatorClass, DestReg);
Chris Lattnerb515f6d2003-05-08 20:49:25 +00002023}
Chris Lattner3e130a22003-01-13 00:32:26 +00002024
Chris Lattner6621ed92004-04-11 21:23:56 +00002025
2026/// emitBinaryFPOperation - This method handles emission of floating point
2027/// Add (0), Sub (1), Mul (2), and Div (3) operations.
2028void ISel::emitBinaryFPOperation(MachineBasicBlock *BB,
2029 MachineBasicBlock::iterator IP,
2030 Value *Op0, Value *Op1,
2031 unsigned OperatorClass, unsigned DestReg) {
2032
2033 // Special case: op Reg, <const fp>
2034 if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1))
2035 if (!Op1C->isExactlyValue(+0.0) && !Op1C->isExactlyValue(+1.0)) {
2036 // Create a constant pool entry for this constant.
2037 MachineConstantPool *CP = F->getConstantPool();
2038 unsigned CPI = CP->getConstantPoolIndex(Op1C);
2039 const Type *Ty = Op1->getType();
2040
2041 static const unsigned OpcodeTab[][4] = {
2042 { X86::FADD32m, X86::FSUB32m, X86::FMUL32m, X86::FDIV32m }, // Float
2043 { X86::FADD64m, X86::FSUB64m, X86::FMUL64m, X86::FDIV64m }, // Double
2044 };
2045
2046 assert(Ty == Type::FloatTy || Ty == Type::DoubleTy && "Unknown FP type!");
2047 unsigned Opcode = OpcodeTab[Ty != Type::FloatTy][OperatorClass];
2048 unsigned Op0r = getReg(Op0, BB, IP);
2049 addConstantPoolReference(BuildMI(*BB, IP, Opcode, 5,
2050 DestReg).addReg(Op0r), CPI);
2051 return;
2052 }
2053
Chris Lattner13c07fe2004-04-12 00:12:04 +00002054 // Special case: R1 = op <const fp>, R2
Chris Lattner6621ed92004-04-11 21:23:56 +00002055 if (ConstantFP *CFP = dyn_cast<ConstantFP>(Op0))
2056 if (CFP->isExactlyValue(-0.0) && OperatorClass == 1) {
2057 // -0.0 - X === -X
2058 unsigned op1Reg = getReg(Op1, BB, IP);
2059 BuildMI(*BB, IP, X86::FCHS, 1, DestReg).addReg(op1Reg);
2060 return;
2061 } else if (!CFP->isExactlyValue(+0.0) && !CFP->isExactlyValue(+1.0)) {
Chris Lattner13c07fe2004-04-12 00:12:04 +00002062 // R1 = op CST, R2 --> R1 = opr R2, CST
Chris Lattner6621ed92004-04-11 21:23:56 +00002063
2064 // Create a constant pool entry for this constant.
2065 MachineConstantPool *CP = F->getConstantPool();
2066 unsigned CPI = CP->getConstantPoolIndex(CFP);
2067 const Type *Ty = CFP->getType();
2068
2069 static const unsigned OpcodeTab[][4] = {
2070 { X86::FADD32m, X86::FSUBR32m, X86::FMUL32m, X86::FDIVR32m }, // Float
2071 { X86::FADD64m, X86::FSUBR64m, X86::FMUL64m, X86::FDIVR64m }, // Double
2072 };
2073
2074 assert(Ty == Type::FloatTy||Ty == Type::DoubleTy && "Unknown FP type!");
2075 unsigned Opcode = OpcodeTab[Ty != Type::FloatTy][OperatorClass];
2076 unsigned Op1r = getReg(Op1, BB, IP);
2077 addConstantPoolReference(BuildMI(*BB, IP, Opcode, 5,
2078 DestReg).addReg(Op1r), CPI);
2079 return;
2080 }
2081
2082 // General case.
2083 static const unsigned OpcodeTab[4] = {
2084 X86::FpADD, X86::FpSUB, X86::FpMUL, X86::FpDIV
2085 };
2086
2087 unsigned Opcode = OpcodeTab[OperatorClass];
2088 unsigned Op0r = getReg(Op0, BB, IP);
2089 unsigned Op1r = getReg(Op1, BB, IP);
2090 BuildMI(*BB, IP, Opcode, 2, DestReg).addReg(Op0r).addReg(Op1r);
2091}
2092
Chris Lattnerb2acc512003-10-19 21:09:10 +00002093/// emitSimpleBinaryOperation - Implement simple binary operators for integral
2094/// types... OperatorClass is one of: 0 for Add, 1 for Sub, 2 for And, 3 for
2095/// Or, 4 for Xor.
Chris Lattner68aad932002-11-02 20:13:22 +00002096///
Chris Lattnerb515f6d2003-05-08 20:49:25 +00002097/// emitSimpleBinaryOperation - Common code shared between visitSimpleBinary
2098/// and constant expression support.
Chris Lattnerb2acc512003-10-19 21:09:10 +00002099///
2100void ISel::emitSimpleBinaryOperation(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +00002101 MachineBasicBlock::iterator IP,
Chris Lattnerb515f6d2003-05-08 20:49:25 +00002102 Value *Op0, Value *Op1,
Chris Lattnerb2acc512003-10-19 21:09:10 +00002103 unsigned OperatorClass, unsigned DestReg) {
Chris Lattnerb515f6d2003-05-08 20:49:25 +00002104 unsigned Class = getClassB(Op0->getType());
Chris Lattnerb2acc512003-10-19 21:09:10 +00002105
Chris Lattner6621ed92004-04-11 21:23:56 +00002106 if (Class == cFP) {
2107 assert(OperatorClass < 2 && "No logical ops for FP!");
2108 emitBinaryFPOperation(MBB, IP, Op0, Op1, OperatorClass, DestReg);
2109 return;
2110 }
2111
Chris Lattnerb2acc512003-10-19 21:09:10 +00002112 // sub 0, X -> neg X
Chris Lattner48b0c972004-04-11 20:26:20 +00002113 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op0))
2114 if (OperatorClass == 1 && CI->isNullValue()) {
2115 unsigned op1Reg = getReg(Op1, MBB, IP);
2116 static unsigned const NEGTab[] = {
2117 X86::NEG8r, X86::NEG16r, X86::NEG32r, 0, X86::NEG32r
2118 };
2119 BuildMI(*MBB, IP, NEGTab[Class], 1, DestReg).addReg(op1Reg);
2120
2121 if (Class == cLong) {
2122 // We just emitted: Dl = neg Sl
2123 // Now emit : T = addc Sh, 0
2124 // : Dh = neg T
2125 unsigned T = makeAnotherReg(Type::IntTy);
2126 BuildMI(*MBB, IP, X86::ADC32ri, 2, T).addReg(op1Reg+1).addImm(0);
2127 BuildMI(*MBB, IP, X86::NEG32r, 1, DestReg+1).addReg(T);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002128 }
Chris Lattner48b0c972004-04-11 20:26:20 +00002129 return;
2130 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00002131
Chris Lattner48b0c972004-04-11 20:26:20 +00002132 // Special case: op Reg, <const int>
2133 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner721d2d42004-03-08 01:18:36 +00002134 unsigned Op0r = getReg(Op0, MBB, IP);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002135
Chris Lattner721d2d42004-03-08 01:18:36 +00002136 // xor X, -1 -> not X
2137 if (OperatorClass == 4 && Op1C->isAllOnesValue()) {
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002138 static unsigned const NOTTab[] = {
2139 X86::NOT8r, X86::NOT16r, X86::NOT32r, 0, X86::NOT32r
2140 };
Chris Lattner721d2d42004-03-08 01:18:36 +00002141 BuildMI(*MBB, IP, NOTTab[Class], 1, DestReg).addReg(Op0r);
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002142 if (Class == cLong) // Invert the top part too
2143 BuildMI(*MBB, IP, X86::NOT32r, 1, DestReg+1).addReg(Op0r+1);
Chris Lattner721d2d42004-03-08 01:18:36 +00002144 return;
2145 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00002146
Chris Lattner721d2d42004-03-08 01:18:36 +00002147 // add X, -1 -> dec X
Chris Lattner06521672004-04-06 03:36:57 +00002148 if (OperatorClass == 0 && Op1C->isAllOnesValue() && Class != cLong) {
2149 // Note that we can't use dec for 64-bit decrements, because it does not
2150 // set the carry flag!
2151 static unsigned const DECTab[] = { X86::DEC8r, X86::DEC16r, X86::DEC32r };
Chris Lattner721d2d42004-03-08 01:18:36 +00002152 BuildMI(*MBB, IP, DECTab[Class], 1, DestReg).addReg(Op0r);
2153 return;
2154 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00002155
Chris Lattner721d2d42004-03-08 01:18:36 +00002156 // add X, 1 -> inc X
Chris Lattner06521672004-04-06 03:36:57 +00002157 if (OperatorClass == 0 && Op1C->equalsInt(1) && Class != cLong) {
2158 // Note that we can't use inc for 64-bit increments, because it does not
2159 // set the carry flag!
2160 static unsigned const INCTab[] = { X86::INC8r, X86::INC16r, X86::INC32r };
Alkis Evlogimenosbee8a092004-04-02 18:11:32 +00002161 BuildMI(*MBB, IP, INCTab[Class], 1, DestReg).addReg(Op0r);
Chris Lattner721d2d42004-03-08 01:18:36 +00002162 return;
2163 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00002164
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002165 static const unsigned OpcodeTab[][5] = {
Chris Lattner721d2d42004-03-08 01:18:36 +00002166 // Arithmetic operators
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002167 { X86::ADD8ri, X86::ADD16ri, X86::ADD32ri, 0, X86::ADD32ri }, // ADD
2168 { X86::SUB8ri, X86::SUB16ri, X86::SUB32ri, 0, X86::SUB32ri }, // SUB
Chris Lattnerb2acc512003-10-19 21:09:10 +00002169
Chris Lattner721d2d42004-03-08 01:18:36 +00002170 // Bitwise operators
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002171 { X86::AND8ri, X86::AND16ri, X86::AND32ri, 0, X86::AND32ri }, // AND
2172 { X86:: OR8ri, X86:: OR16ri, X86:: OR32ri, 0, X86::OR32ri }, // OR
2173 { X86::XOR8ri, X86::XOR16ri, X86::XOR32ri, 0, X86::XOR32ri }, // XOR
Chris Lattner721d2d42004-03-08 01:18:36 +00002174 };
2175
Chris Lattner721d2d42004-03-08 01:18:36 +00002176 unsigned Opcode = OpcodeTab[OperatorClass][Class];
Chris Lattner33f7fa32004-04-06 03:15:53 +00002177 unsigned Op1l = cast<ConstantInt>(Op1C)->getRawValue();
Chris Lattner721d2d42004-03-08 01:18:36 +00002178
Chris Lattner33f7fa32004-04-06 03:15:53 +00002179 if (Class != cLong) {
2180 BuildMI(*MBB, IP, Opcode, 2, DestReg).addReg(Op0r).addImm(Op1l);
2181 return;
Chris Lattner6621ed92004-04-11 21:23:56 +00002182 }
2183
2184 // If this is a long value and the high or low bits have a special
2185 // property, emit some special cases.
2186 unsigned Op1h = cast<ConstantInt>(Op1C)->getRawValue() >> 32LL;
2187
2188 // If the constant is zero in the low 32-bits, just copy the low part
2189 // across and apply the normal 32-bit operation to the high parts. There
2190 // will be no carry or borrow into the top.
2191 if (Op1l == 0) {
2192 if (OperatorClass != 2) // All but and...
2193 BuildMI(*MBB, IP, X86::MOV32rr, 1, DestReg).addReg(Op0r);
2194 else
2195 BuildMI(*MBB, IP, X86::MOV32ri, 1, DestReg).addImm(0);
2196 BuildMI(*MBB, IP, OpcodeTab[OperatorClass][cLong], 2, DestReg+1)
2197 .addReg(Op0r+1).addImm(Op1h);
Chris Lattner33f7fa32004-04-06 03:15:53 +00002198 return;
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002199 }
Chris Lattner6621ed92004-04-11 21:23:56 +00002200
2201 // If this is a logical operation and the top 32-bits are zero, just
2202 // operate on the lower 32.
2203 if (Op1h == 0 && OperatorClass > 1) {
2204 BuildMI(*MBB, IP, OpcodeTab[OperatorClass][cLong], 2, DestReg)
2205 .addReg(Op0r).addImm(Op1l);
2206 if (OperatorClass != 2) // All but and
2207 BuildMI(*MBB, IP, X86::MOV32rr, 1, DestReg+1).addReg(Op0r+1);
2208 else
2209 BuildMI(*MBB, IP, X86::MOV32ri, 1, DestReg+1).addImm(0);
2210 return;
2211 }
2212
2213 // TODO: We could handle lots of other special cases here, such as AND'ing
2214 // with 0xFFFFFFFF00000000 -> noop, etc.
2215
2216 // Otherwise, code generate the full operation with a constant.
2217 static const unsigned TopTab[] = {
2218 X86::ADC32ri, X86::SBB32ri, X86::AND32ri, X86::OR32ri, X86::XOR32ri
2219 };
2220
2221 BuildMI(*MBB, IP, Opcode, 2, DestReg).addReg(Op0r).addImm(Op1l);
2222 BuildMI(*MBB, IP, TopTab[OperatorClass], 2, DestReg+1)
2223 .addReg(Op0r+1).addImm(Op1h);
2224 return;
Chris Lattner721d2d42004-03-08 01:18:36 +00002225 }
2226
2227 // Finally, handle the general case now.
Chris Lattner7ba92302004-04-06 02:13:25 +00002228 static const unsigned OpcodeTab[][5] = {
Chris Lattner721d2d42004-03-08 01:18:36 +00002229 // Arithmetic operators
Chris Lattner6621ed92004-04-11 21:23:56 +00002230 { X86::ADD8rr, X86::ADD16rr, X86::ADD32rr, 0, X86::ADD32rr }, // ADD
2231 { X86::SUB8rr, X86::SUB16rr, X86::SUB32rr, 0, X86::SUB32rr }, // SUB
Chris Lattner721d2d42004-03-08 01:18:36 +00002232
Chris Lattnerb2acc512003-10-19 21:09:10 +00002233 // Bitwise operators
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002234 { X86::AND8rr, X86::AND16rr, X86::AND32rr, 0, X86::AND32rr }, // AND
2235 { X86:: OR8rr, X86:: OR16rr, X86:: OR32rr, 0, X86:: OR32rr }, // OR
2236 { X86::XOR8rr, X86::XOR16rr, X86::XOR32rr, 0, X86::XOR32rr }, // XOR
Chris Lattnerb2acc512003-10-19 21:09:10 +00002237 };
Chris Lattner721d2d42004-03-08 01:18:36 +00002238
Chris Lattnerb2acc512003-10-19 21:09:10 +00002239 unsigned Opcode = OpcodeTab[OperatorClass][Class];
Chris Lattner721d2d42004-03-08 01:18:36 +00002240 unsigned Op0r = getReg(Op0, MBB, IP);
2241 unsigned Op1r = getReg(Op1, MBB, IP);
2242 BuildMI(*MBB, IP, Opcode, 2, DestReg).addReg(Op0r).addReg(Op1r);
2243
Chris Lattnerab1d0e02004-04-06 02:11:49 +00002244 if (Class == cLong) { // Handle the upper 32 bits of long values...
Chris Lattner721d2d42004-03-08 01:18:36 +00002245 static const unsigned TopTab[] = {
2246 X86::ADC32rr, X86::SBB32rr, X86::AND32rr, X86::OR32rr, X86::XOR32rr
2247 };
2248 BuildMI(*MBB, IP, TopTab[OperatorClass], 2,
2249 DestReg+1).addReg(Op0r+1).addReg(Op1r+1);
2250 }
Chris Lattnere2954c82002-11-02 20:04:26 +00002251}
2252
Chris Lattner3e130a22003-01-13 00:32:26 +00002253/// doMultiply - Emit appropriate instructions to multiply together the
2254/// registers op0Reg and op1Reg, and put the result in DestReg. The type of the
2255/// result should be given as DestTy.
2256///
Chris Lattnerbaa58a52004-02-23 03:10:10 +00002257void ISel::doMultiply(MachineBasicBlock *MBB, MachineBasicBlock::iterator MBBI,
Chris Lattner3e130a22003-01-13 00:32:26 +00002258 unsigned DestReg, const Type *DestTy,
Chris Lattner8a307e82002-12-16 19:32:50 +00002259 unsigned op0Reg, unsigned op1Reg) {
Chris Lattner3e130a22003-01-13 00:32:26 +00002260 unsigned Class = getClass(DestTy);
Chris Lattner94af4142002-12-25 05:13:53 +00002261 switch (Class) {
Chris Lattner0f1c4612003-06-21 17:16:58 +00002262 case cInt:
2263 case cShort:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002264 BuildMI(*MBB, MBBI, Class == cInt ? X86::IMUL32rr:X86::IMUL16rr, 2, DestReg)
Chris Lattner0f1c4612003-06-21 17:16:58 +00002265 .addReg(op0Reg).addReg(op1Reg);
2266 return;
2267 case cByte:
2268 // Must use the MUL instruction, which forces use of AL...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002269 BuildMI(*MBB, MBBI, X86::MOV8rr, 1, X86::AL).addReg(op0Reg);
2270 BuildMI(*MBB, MBBI, X86::MUL8r, 1).addReg(op1Reg);
2271 BuildMI(*MBB, MBBI, X86::MOV8rr, 1, DestReg).addReg(X86::AL);
Chris Lattner0f1c4612003-06-21 17:16:58 +00002272 return;
Chris Lattner94af4142002-12-25 05:13:53 +00002273 default:
Chris Lattner3e130a22003-01-13 00:32:26 +00002274 case cLong: assert(0 && "doMultiply cannot operate on LONG values!");
Chris Lattner94af4142002-12-25 05:13:53 +00002275 }
Brian Gaeke20244b72002-12-12 15:33:40 +00002276}
2277
Chris Lattnerb2acc512003-10-19 21:09:10 +00002278// ExactLog2 - This function solves for (Val == 1 << (N-1)) and returns N. It
2279// returns zero when the input is not exactly a power of two.
2280static unsigned ExactLog2(unsigned Val) {
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002281 if (Val == 0 || (Val & (Val-1))) return 0;
Chris Lattnerb2acc512003-10-19 21:09:10 +00002282 unsigned Count = 0;
2283 while (Val != 1) {
Chris Lattnerb2acc512003-10-19 21:09:10 +00002284 Val >>= 1;
2285 ++Count;
2286 }
2287 return Count+1;
2288}
2289
Chris Lattner462fa822004-04-11 20:56:28 +00002290
2291/// doMultiplyConst - This function is specialized to efficiently codegen an 8,
2292/// 16, or 32-bit integer multiply by a constant.
Chris Lattnerb2acc512003-10-19 21:09:10 +00002293void ISel::doMultiplyConst(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +00002294 MachineBasicBlock::iterator IP,
Chris Lattnerb2acc512003-10-19 21:09:10 +00002295 unsigned DestReg, const Type *DestTy,
2296 unsigned op0Reg, unsigned ConstRHS) {
Chris Lattner6ab06d52004-04-06 04:55:43 +00002297 static const unsigned MOVrrTab[] = {X86::MOV8rr, X86::MOV16rr, X86::MOV32rr};
2298 static const unsigned MOVriTab[] = {X86::MOV8ri, X86::MOV16ri, X86::MOV32ri};
Chris Lattner9eb9b8e2004-05-04 15:47:14 +00002299 static const unsigned ADDrrTab[] = {X86::ADD8rr, X86::ADD16rr, X86::ADD32rr};
Chris Lattner6ab06d52004-04-06 04:55:43 +00002300
Chris Lattnerb2acc512003-10-19 21:09:10 +00002301 unsigned Class = getClass(DestTy);
2302
Chris Lattner9eb9b8e2004-05-04 15:47:14 +00002303 // Handle special cases here.
2304 switch (ConstRHS) {
2305 case 0:
Chris Lattner6ab06d52004-04-06 04:55:43 +00002306 BuildMI(*MBB, IP, MOVriTab[Class], 1, DestReg).addImm(0);
2307 return;
Chris Lattner9eb9b8e2004-05-04 15:47:14 +00002308 case 1:
Chris Lattner6ab06d52004-04-06 04:55:43 +00002309 BuildMI(*MBB, IP, MOVrrTab[Class], 1, DestReg).addReg(op0Reg);
2310 return;
Chris Lattner9eb9b8e2004-05-04 15:47:14 +00002311 case 2:
2312 BuildMI(*MBB, IP, ADDrrTab[Class], 1,DestReg).addReg(op0Reg).addReg(op0Reg);
2313 return;
2314 case 3:
2315 case 5:
2316 case 9:
2317 if (Class == cInt) {
2318 addFullAddress(BuildMI(*MBB, IP, X86::LEA32r, 5, DestReg),
2319 op0Reg, ConstRHS-1, op0Reg, 0);
2320 return;
2321 }
Chris Lattner6ab06d52004-04-06 04:55:43 +00002322 }
2323
Chris Lattnerb2acc512003-10-19 21:09:10 +00002324 // If the element size is exactly a power of 2, use a shift to get it.
2325 if (unsigned Shift = ExactLog2(ConstRHS)) {
2326 switch (Class) {
2327 default: assert(0 && "Unknown class for this function!");
2328 case cByte:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002329 BuildMI(*MBB, IP, X86::SHL32ri,2, DestReg).addReg(op0Reg).addImm(Shift-1);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002330 return;
2331 case cShort:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002332 BuildMI(*MBB, IP, X86::SHL32ri,2, DestReg).addReg(op0Reg).addImm(Shift-1);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002333 return;
2334 case cInt:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002335 BuildMI(*MBB, IP, X86::SHL32ri,2, DestReg).addReg(op0Reg).addImm(Shift-1);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002336 return;
2337 }
2338 }
Chris Lattnerc01d1232003-10-20 03:42:58 +00002339
2340 if (Class == cShort) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002341 BuildMI(*MBB, IP, X86::IMUL16rri,2,DestReg).addReg(op0Reg).addImm(ConstRHS);
Chris Lattnerc01d1232003-10-20 03:42:58 +00002342 return;
2343 } else if (Class == cInt) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002344 BuildMI(*MBB, IP, X86::IMUL32rri,2,DestReg).addReg(op0Reg).addImm(ConstRHS);
Chris Lattnerc01d1232003-10-20 03:42:58 +00002345 return;
2346 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00002347
2348 // Most general case, emit a normal multiply...
Chris Lattnerb2acc512003-10-19 21:09:10 +00002349 unsigned TmpReg = makeAnotherReg(DestTy);
Chris Lattneree352852004-02-29 07:22:16 +00002350 BuildMI(*MBB, IP, MOVriTab[Class], 1, TmpReg).addImm(ConstRHS);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002351
2352 // Emit a MUL to multiply the register holding the index by
2353 // elementSize, putting the result in OffsetReg.
2354 doMultiply(MBB, IP, DestReg, DestTy, op0Reg, TmpReg);
2355}
2356
Chris Lattnerca9671d2002-11-02 20:28:58 +00002357/// visitMul - Multiplies are not simple binary operators because they must deal
2358/// with the EAX register explicitly.
2359///
2360void ISel::visitMul(BinaryOperator &I) {
Chris Lattner462fa822004-04-11 20:56:28 +00002361 unsigned ResultReg = getReg(I);
2362
Chris Lattner95157f72004-04-11 22:05:45 +00002363 Value *Op0 = I.getOperand(0);
2364 Value *Op1 = I.getOperand(1);
2365
2366 // Fold loads into floating point multiplies.
2367 if (getClass(Op0->getType()) == cFP) {
2368 if (isa<LoadInst>(Op0) && !isa<LoadInst>(Op1))
2369 if (!I.swapOperands())
2370 std::swap(Op0, Op1); // Make sure any loads are in the RHS.
2371 if (LoadInst *LI = dyn_cast<LoadInst>(Op1))
2372 if (isSafeToFoldLoadIntoInstruction(*LI, I)) {
2373 const Type *Ty = Op0->getType();
2374 assert(Ty == Type::FloatTy||Ty == Type::DoubleTy && "Unknown FP type!");
2375 unsigned Opcode = Ty == Type::FloatTy ? X86::FMUL32m : X86::FMUL64m;
2376
Chris Lattner95157f72004-04-11 22:05:45 +00002377 unsigned Op0r = getReg(Op0);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002378 if (AllocaInst *AI = dyn_castFixedAlloca(LI->getOperand(0))) {
2379 unsigned FI = getFixedSizedAllocaFI(AI);
2380 addFrameReference(BuildMI(BB, Opcode, 5, ResultReg).addReg(Op0r), FI);
2381 } else {
2382 unsigned BaseReg, Scale, IndexReg, Disp;
2383 getAddressingMode(LI->getOperand(0), BaseReg,
2384 Scale, IndexReg, Disp);
2385
2386 addFullAddress(BuildMI(BB, Opcode, 5, ResultReg).addReg(Op0r),
2387 BaseReg, Scale, IndexReg, Disp);
2388 }
Chris Lattner95157f72004-04-11 22:05:45 +00002389 return;
2390 }
2391 }
2392
Chris Lattner462fa822004-04-11 20:56:28 +00002393 MachineBasicBlock::iterator IP = BB->end();
Chris Lattner95157f72004-04-11 22:05:45 +00002394 emitMultiply(BB, IP, Op0, Op1, ResultReg);
Chris Lattner462fa822004-04-11 20:56:28 +00002395}
2396
2397void ISel::emitMultiply(MachineBasicBlock *MBB, MachineBasicBlock::iterator IP,
2398 Value *Op0, Value *Op1, unsigned DestReg) {
2399 MachineBasicBlock &BB = *MBB;
2400 TypeClass Class = getClass(Op0->getType());
Chris Lattner3e130a22003-01-13 00:32:26 +00002401
2402 // Simple scalar multiply?
Chris Lattner8ebf1c32004-04-11 21:09:14 +00002403 unsigned Op0Reg = getReg(Op0, &BB, IP);
Chris Lattner462fa822004-04-11 20:56:28 +00002404 switch (Class) {
2405 case cByte:
2406 case cShort:
2407 case cInt:
2408 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner462fa822004-04-11 20:56:28 +00002409 unsigned Val = (unsigned)CI->getRawValue(); // Isn't a 64-bit constant
2410 doMultiplyConst(&BB, IP, DestReg, Op0->getType(), Op0Reg, Val);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002411 } else {
Chris Lattner462fa822004-04-11 20:56:28 +00002412 unsigned Op1Reg = getReg(Op1, &BB, IP);
2413 doMultiply(&BB, IP, DestReg, Op1->getType(), Op0Reg, Op1Reg);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002414 }
Chris Lattner462fa822004-04-11 20:56:28 +00002415 return;
2416 case cFP:
Chris Lattner6621ed92004-04-11 21:23:56 +00002417 emitBinaryFPOperation(MBB, IP, Op0, Op1, 2, DestReg);
2418 return;
Chris Lattner462fa822004-04-11 20:56:28 +00002419 case cLong:
2420 break;
2421 }
Chris Lattner3e130a22003-01-13 00:32:26 +00002422
Chris Lattner462fa822004-04-11 20:56:28 +00002423 // Long value. We have to do things the hard way...
2424 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
2425 unsigned CLow = CI->getRawValue();
2426 unsigned CHi = CI->getRawValue() >> 32;
2427
2428 if (CLow == 0) {
2429 // If the low part of the constant is all zeros, things are simple.
2430 BuildMI(BB, IP, X86::MOV32ri, 1, DestReg).addImm(0);
2431 doMultiplyConst(&BB, IP, DestReg+1, Type::UIntTy, Op0Reg, CHi);
2432 return;
2433 }
2434
2435 // Multiply the two low parts... capturing carry into EDX
2436 unsigned OverflowReg = 0;
2437 if (CLow == 1) {
2438 BuildMI(BB, IP, X86::MOV32rr, 1, DestReg).addReg(Op0Reg);
Chris Lattner028adc42004-04-06 04:29:36 +00002439 } else {
Chris Lattner462fa822004-04-11 20:56:28 +00002440 unsigned Op1RegL = makeAnotherReg(Type::UIntTy);
2441 OverflowReg = makeAnotherReg(Type::UIntTy);
2442 BuildMI(BB, IP, X86::MOV32ri, 1, Op1RegL).addImm(CLow);
2443 BuildMI(BB, IP, X86::MOV32rr, 1, X86::EAX).addReg(Op0Reg);
2444 BuildMI(BB, IP, X86::MUL32r, 1).addReg(Op1RegL); // AL*BL
Chris Lattner028adc42004-04-06 04:29:36 +00002445
Chris Lattner462fa822004-04-11 20:56:28 +00002446 BuildMI(BB, IP, X86::MOV32rr, 1, DestReg).addReg(X86::EAX); // AL*BL
2447 BuildMI(BB, IP, X86::MOV32rr, 1,
2448 OverflowReg).addReg(X86::EDX); // AL*BL >> 32
2449 }
2450
2451 unsigned AHBLReg = makeAnotherReg(Type::UIntTy); // AH*BL
2452 doMultiplyConst(&BB, IP, AHBLReg, Type::UIntTy, Op0Reg+1, CLow);
2453
2454 unsigned AHBLplusOverflowReg;
2455 if (OverflowReg) {
2456 AHBLplusOverflowReg = makeAnotherReg(Type::UIntTy);
2457 BuildMI(BB, IP, X86::ADD32rr, 2, // AH*BL+(AL*BL >> 32)
Chris Lattner028adc42004-04-06 04:29:36 +00002458 AHBLplusOverflowReg).addReg(AHBLReg).addReg(OverflowReg);
Chris Lattner462fa822004-04-11 20:56:28 +00002459 } else {
2460 AHBLplusOverflowReg = AHBLReg;
2461 }
2462
2463 if (CHi == 0) {
2464 BuildMI(BB, IP, X86::MOV32rr, 1, DestReg+1).addReg(AHBLplusOverflowReg);
2465 } else {
Chris Lattner028adc42004-04-06 04:29:36 +00002466 unsigned ALBHReg = makeAnotherReg(Type::UIntTy); // AL*BH
Chris Lattner462fa822004-04-11 20:56:28 +00002467 doMultiplyConst(&BB, IP, ALBHReg, Type::UIntTy, Op0Reg, CHi);
Chris Lattner028adc42004-04-06 04:29:36 +00002468
Chris Lattner462fa822004-04-11 20:56:28 +00002469 BuildMI(BB, IP, X86::ADD32rr, 2, // AL*BH + AH*BL + (AL*BL >> 32)
Chris Lattner028adc42004-04-06 04:29:36 +00002470 DestReg+1).addReg(AHBLplusOverflowReg).addReg(ALBHReg);
2471 }
Chris Lattner462fa822004-04-11 20:56:28 +00002472 return;
Chris Lattner3e130a22003-01-13 00:32:26 +00002473 }
Chris Lattner462fa822004-04-11 20:56:28 +00002474
2475 // General 64x64 multiply
2476
2477 unsigned Op1Reg = getReg(Op1, &BB, IP);
2478 // Multiply the two low parts... capturing carry into EDX
2479 BuildMI(BB, IP, X86::MOV32rr, 1, X86::EAX).addReg(Op0Reg);
2480 BuildMI(BB, IP, X86::MUL32r, 1).addReg(Op1Reg); // AL*BL
2481
2482 unsigned OverflowReg = makeAnotherReg(Type::UIntTy);
2483 BuildMI(BB, IP, X86::MOV32rr, 1, DestReg).addReg(X86::EAX); // AL*BL
2484 BuildMI(BB, IP, X86::MOV32rr, 1,
2485 OverflowReg).addReg(X86::EDX); // AL*BL >> 32
2486
2487 unsigned AHBLReg = makeAnotherReg(Type::UIntTy); // AH*BL
2488 BuildMI(BB, IP, X86::IMUL32rr, 2,
2489 AHBLReg).addReg(Op0Reg+1).addReg(Op1Reg);
2490
2491 unsigned AHBLplusOverflowReg = makeAnotherReg(Type::UIntTy);
2492 BuildMI(BB, IP, X86::ADD32rr, 2, // AH*BL+(AL*BL >> 32)
2493 AHBLplusOverflowReg).addReg(AHBLReg).addReg(OverflowReg);
2494
2495 unsigned ALBHReg = makeAnotherReg(Type::UIntTy); // AL*BH
2496 BuildMI(BB, IP, X86::IMUL32rr, 2,
2497 ALBHReg).addReg(Op0Reg).addReg(Op1Reg+1);
2498
2499 BuildMI(BB, IP, X86::ADD32rr, 2, // AL*BH + AH*BL + (AL*BL >> 32)
2500 DestReg+1).addReg(AHBLplusOverflowReg).addReg(ALBHReg);
Chris Lattnerf01729e2002-11-02 20:54:46 +00002501}
Chris Lattnerca9671d2002-11-02 20:28:58 +00002502
Chris Lattner06925362002-11-17 21:56:38 +00002503
Chris Lattnerf01729e2002-11-02 20:54:46 +00002504/// visitDivRem - Handle division and remainder instructions... these
2505/// instruction both require the same instructions to be generated, they just
2506/// select the result from a different register. Note that both of these
2507/// instructions work differently for signed and unsigned operands.
2508///
2509void ISel::visitDivRem(BinaryOperator &I) {
Chris Lattnercadff442003-10-23 17:21:43 +00002510 unsigned ResultReg = getReg(I);
Chris Lattner95157f72004-04-11 22:05:45 +00002511 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2512
2513 // Fold loads into floating point divides.
2514 if (getClass(Op0->getType()) == cFP) {
2515 if (LoadInst *LI = dyn_cast<LoadInst>(Op1))
2516 if (isSafeToFoldLoadIntoInstruction(*LI, I)) {
2517 const Type *Ty = Op0->getType();
2518 assert(Ty == Type::FloatTy||Ty == Type::DoubleTy && "Unknown FP type!");
2519 unsigned Opcode = Ty == Type::FloatTy ? X86::FDIV32m : X86::FDIV64m;
2520
Chris Lattner95157f72004-04-11 22:05:45 +00002521 unsigned Op0r = getReg(Op0);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002522 if (AllocaInst *AI = dyn_castFixedAlloca(LI->getOperand(0))) {
2523 unsigned FI = getFixedSizedAllocaFI(AI);
2524 addFrameReference(BuildMI(BB, Opcode, 5, ResultReg).addReg(Op0r), FI);
2525 } else {
2526 unsigned BaseReg, Scale, IndexReg, Disp;
2527 getAddressingMode(LI->getOperand(0), BaseReg,
2528 Scale, IndexReg, Disp);
2529
2530 addFullAddress(BuildMI(BB, Opcode, 5, ResultReg).addReg(Op0r),
2531 BaseReg, Scale, IndexReg, Disp);
2532 }
Chris Lattner95157f72004-04-11 22:05:45 +00002533 return;
2534 }
2535
2536 if (LoadInst *LI = dyn_cast<LoadInst>(Op0))
2537 if (isSafeToFoldLoadIntoInstruction(*LI, I)) {
2538 const Type *Ty = Op0->getType();
2539 assert(Ty == Type::FloatTy||Ty == Type::DoubleTy && "Unknown FP type!");
2540 unsigned Opcode = Ty == Type::FloatTy ? X86::FDIVR32m : X86::FDIVR64m;
2541
Chris Lattner95157f72004-04-11 22:05:45 +00002542 unsigned Op1r = getReg(Op1);
Chris Lattner9f1b5312004-05-13 15:12:43 +00002543 if (AllocaInst *AI = dyn_castFixedAlloca(LI->getOperand(0))) {
2544 unsigned FI = getFixedSizedAllocaFI(AI);
2545 addFrameReference(BuildMI(BB, Opcode, 5, ResultReg).addReg(Op1r), FI);
2546 } else {
2547 unsigned BaseReg, Scale, IndexReg, Disp;
2548 getAddressingMode(LI->getOperand(0), BaseReg, Scale, IndexReg, Disp);
2549 addFullAddress(BuildMI(BB, Opcode, 5, ResultReg).addReg(Op1r),
2550 BaseReg, Scale, IndexReg, Disp);
2551 }
Chris Lattner95157f72004-04-11 22:05:45 +00002552 return;
2553 }
2554 }
2555
Chris Lattner94af4142002-12-25 05:13:53 +00002556
Chris Lattnercadff442003-10-23 17:21:43 +00002557 MachineBasicBlock::iterator IP = BB->end();
Chris Lattner95157f72004-04-11 22:05:45 +00002558 emitDivRemOperation(BB, IP, Op0, Op1,
Chris Lattner462fa822004-04-11 20:56:28 +00002559 I.getOpcode() == Instruction::Div, ResultReg);
Chris Lattnercadff442003-10-23 17:21:43 +00002560}
2561
2562void ISel::emitDivRemOperation(MachineBasicBlock *BB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +00002563 MachineBasicBlock::iterator IP,
Chris Lattner462fa822004-04-11 20:56:28 +00002564 Value *Op0, Value *Op1, bool isDiv,
2565 unsigned ResultReg) {
Chris Lattner8ebf1c32004-04-11 21:09:14 +00002566 const Type *Ty = Op0->getType();
2567 unsigned Class = getClass(Ty);
Chris Lattner94af4142002-12-25 05:13:53 +00002568 switch (Class) {
Chris Lattner3e130a22003-01-13 00:32:26 +00002569 case cFP: // Floating point divide
Chris Lattnercadff442003-10-23 17:21:43 +00002570 if (isDiv) {
Chris Lattner6621ed92004-04-11 21:23:56 +00002571 emitBinaryFPOperation(BB, IP, Op0, Op1, 3, ResultReg);
2572 return;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00002573 } else { // Floating point remainder...
Chris Lattner462fa822004-04-11 20:56:28 +00002574 unsigned Op0Reg = getReg(Op0, BB, IP);
2575 unsigned Op1Reg = getReg(Op1, BB, IP);
Chris Lattner3e130a22003-01-13 00:32:26 +00002576 MachineInstr *TheCall =
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002577 BuildMI(X86::CALLpcrel32, 1).addExternalSymbol("fmod", true);
Chris Lattner3e130a22003-01-13 00:32:26 +00002578 std::vector<ValueRecord> Args;
Chris Lattnercadff442003-10-23 17:21:43 +00002579 Args.push_back(ValueRecord(Op0Reg, Type::DoubleTy));
2580 Args.push_back(ValueRecord(Op1Reg, Type::DoubleTy));
Chris Lattner3e130a22003-01-13 00:32:26 +00002581 doCall(ValueRecord(ResultReg, Type::DoubleTy), TheCall, Args);
2582 }
Chris Lattner94af4142002-12-25 05:13:53 +00002583 return;
Chris Lattner3e130a22003-01-13 00:32:26 +00002584 case cLong: {
2585 static const char *FnName[] =
2586 { "__moddi3", "__divdi3", "__umoddi3", "__udivdi3" };
Chris Lattner462fa822004-04-11 20:56:28 +00002587 unsigned Op0Reg = getReg(Op0, BB, IP);
2588 unsigned Op1Reg = getReg(Op1, BB, IP);
Chris Lattner8ebf1c32004-04-11 21:09:14 +00002589 unsigned NameIdx = Ty->isUnsigned()*2 + isDiv;
Chris Lattner3e130a22003-01-13 00:32:26 +00002590 MachineInstr *TheCall =
2591 BuildMI(X86::CALLpcrel32, 1).addExternalSymbol(FnName[NameIdx], true);
2592
2593 std::vector<ValueRecord> Args;
Chris Lattnercadff442003-10-23 17:21:43 +00002594 Args.push_back(ValueRecord(Op0Reg, Type::LongTy));
2595 Args.push_back(ValueRecord(Op1Reg, Type::LongTy));
Chris Lattner3e130a22003-01-13 00:32:26 +00002596 doCall(ValueRecord(ResultReg, Type::LongTy), TheCall, Args);
2597 return;
2598 }
2599 case cByte: case cShort: case cInt:
Misha Brukmancf00c4a2003-10-10 17:57:28 +00002600 break; // Small integrals, handled below...
Chris Lattner3e130a22003-01-13 00:32:26 +00002601 default: assert(0 && "Unknown class!");
Chris Lattner94af4142002-12-25 05:13:53 +00002602 }
Chris Lattnerf01729e2002-11-02 20:54:46 +00002603
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002604 static const unsigned MovOpcode[]={ X86::MOV8rr, X86::MOV16rr, X86::MOV32rr };
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002605 static const unsigned NEGOpcode[] = { X86::NEG8r, X86::NEG16r, X86::NEG32r };
2606 static const unsigned SAROpcode[]={ X86::SAR8ri, X86::SAR16ri, X86::SAR32ri };
2607 static const unsigned SHROpcode[]={ X86::SHR8ri, X86::SHR16ri, X86::SHR32ri };
2608 static const unsigned ADDOpcode[]={ X86::ADD8rr, X86::ADD16rr, X86::ADD32rr };
2609
2610 // Special case signed division by power of 2.
2611 if (isDiv)
2612 if (ConstantSInt *CI = dyn_cast<ConstantSInt>(Op1)) {
2613 assert(Class != cLong && "This doesn't handle 64-bit divides!");
2614 int V = CI->getValue();
2615
2616 if (V == 1) { // X /s 1 => X
2617 unsigned Op0Reg = getReg(Op0, BB, IP);
2618 BuildMI(*BB, IP, MovOpcode[Class], 1, ResultReg).addReg(Op0Reg);
2619 return;
2620 }
2621
2622 if (V == -1) { // X /s -1 => -X
2623 unsigned Op0Reg = getReg(Op0, BB, IP);
2624 BuildMI(*BB, IP, NEGOpcode[Class], 1, ResultReg).addReg(Op0Reg);
2625 return;
2626 }
2627
2628 bool isNeg = false;
2629 if (V < 0) { // Not a positive power of 2?
2630 V = -V;
2631 isNeg = true; // Maybe it's a negative power of 2.
2632 }
2633 if (unsigned Log = ExactLog2(V)) {
2634 --Log;
2635 unsigned Op0Reg = getReg(Op0, BB, IP);
2636 unsigned TmpReg = makeAnotherReg(Op0->getType());
2637 if (Log != 1)
2638 BuildMI(*BB, IP, SAROpcode[Class], 2, TmpReg)
2639 .addReg(Op0Reg).addImm(Log-1);
2640 else
2641 BuildMI(*BB, IP, MovOpcode[Class], 1, TmpReg).addReg(Op0Reg);
2642 unsigned TmpReg2 = makeAnotherReg(Op0->getType());
2643 BuildMI(*BB, IP, SHROpcode[Class], 2, TmpReg2)
2644 .addReg(TmpReg).addImm(32-Log);
2645 unsigned TmpReg3 = makeAnotherReg(Op0->getType());
2646 BuildMI(*BB, IP, ADDOpcode[Class], 2, TmpReg3)
2647 .addReg(Op0Reg).addReg(TmpReg2);
2648
2649 unsigned TmpReg4 = isNeg ? makeAnotherReg(Op0->getType()) : ResultReg;
2650 BuildMI(*BB, IP, SAROpcode[Class], 2, TmpReg4)
2651 .addReg(Op0Reg).addImm(Log);
2652 if (isNeg)
2653 BuildMI(*BB, IP, NEGOpcode[Class], 1, ResultReg).addReg(TmpReg4);
2654 return;
2655 }
2656 }
2657
2658 static const unsigned Regs[] ={ X86::AL , X86::AX , X86::EAX };
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002659 static const unsigned ClrOpcode[]={ X86::MOV8ri, X86::MOV16ri, X86::MOV32ri };
Chris Lattnerf01729e2002-11-02 20:54:46 +00002660 static const unsigned ExtRegs[] ={ X86::AH , X86::DX , X86::EDX };
2661
2662 static const unsigned DivOpcode[][4] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002663 { X86::DIV8r , X86::DIV16r , X86::DIV32r , 0 }, // Unsigned division
2664 { X86::IDIV8r, X86::IDIV16r, X86::IDIV32r, 0 }, // Signed division
Chris Lattnerf01729e2002-11-02 20:54:46 +00002665 };
2666
Chris Lattnerf01729e2002-11-02 20:54:46 +00002667 unsigned Reg = Regs[Class];
2668 unsigned ExtReg = ExtRegs[Class];
Chris Lattnerf01729e2002-11-02 20:54:46 +00002669
2670 // Put the first operand into one of the A registers...
Chris Lattner462fa822004-04-11 20:56:28 +00002671 unsigned Op0Reg = getReg(Op0, BB, IP);
2672 unsigned Op1Reg = getReg(Op1, BB, IP);
Chris Lattneree352852004-02-29 07:22:16 +00002673 BuildMI(*BB, IP, MovOpcode[Class], 1, Reg).addReg(Op0Reg);
Chris Lattnerf01729e2002-11-02 20:54:46 +00002674
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002675 if (Ty->isSigned()) {
Chris Lattnerf01729e2002-11-02 20:54:46 +00002676 // Emit a sign extension instruction...
Chris Lattner462fa822004-04-11 20:56:28 +00002677 unsigned ShiftResult = makeAnotherReg(Op0->getType());
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002678 BuildMI(*BB, IP, SAROpcode[Class], 2,ShiftResult).addReg(Op0Reg).addImm(31);
Chris Lattneree352852004-02-29 07:22:16 +00002679 BuildMI(*BB, IP, MovOpcode[Class], 1, ExtReg).addReg(ShiftResult);
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002680
2681 // Emit the appropriate divide or remainder instruction...
2682 BuildMI(*BB, IP, DivOpcode[1][Class], 1).addReg(Op1Reg);
Chris Lattnerf01729e2002-11-02 20:54:46 +00002683 } else {
Alkis Evlogimenosf998a7e2004-01-12 07:22:45 +00002684 // If unsigned, emit a zeroing instruction... (reg = 0)
Chris Lattneree352852004-02-29 07:22:16 +00002685 BuildMI(*BB, IP, ClrOpcode[Class], 2, ExtReg).addImm(0);
Chris Lattnerf01729e2002-11-02 20:54:46 +00002686
Chris Lattnerc8af02c2004-05-04 19:33:58 +00002687 // Emit the appropriate divide or remainder instruction...
2688 BuildMI(*BB, IP, DivOpcode[0][Class], 1).addReg(Op1Reg);
2689 }
Chris Lattner06925362002-11-17 21:56:38 +00002690
Chris Lattnerf01729e2002-11-02 20:54:46 +00002691 // Figure out which register we want to pick the result out of...
Chris Lattnercadff442003-10-23 17:21:43 +00002692 unsigned DestReg = isDiv ? Reg : ExtReg;
Chris Lattnerf01729e2002-11-02 20:54:46 +00002693
Chris Lattnerf01729e2002-11-02 20:54:46 +00002694 // Put the result into the destination register...
Chris Lattneree352852004-02-29 07:22:16 +00002695 BuildMI(*BB, IP, MovOpcode[Class], 1, ResultReg).addReg(DestReg);
Chris Lattnerca9671d2002-11-02 20:28:58 +00002696}
Chris Lattnere2954c82002-11-02 20:04:26 +00002697
Chris Lattner06925362002-11-17 21:56:38 +00002698
Brian Gaekea1719c92002-10-31 23:03:59 +00002699/// Shift instructions: 'shl', 'sar', 'shr' - Some special cases here
2700/// for constant immediate shift values, and for constant immediate
2701/// shift values equal to 1. Even the general case is sort of special,
2702/// because the shift amount has to be in CL, not just any old register.
2703///
Chris Lattner3e130a22003-01-13 00:32:26 +00002704void ISel::visitShiftInst(ShiftInst &I) {
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00002705 MachineBasicBlock::iterator IP = BB->end ();
2706 emitShiftOperation (BB, IP, I.getOperand (0), I.getOperand (1),
2707 I.getOpcode () == Instruction::Shl, I.getType (),
2708 getReg (I));
2709}
2710
2711/// emitShiftOperation - Common code shared between visitShiftInst and
2712/// constant expression support.
2713void ISel::emitShiftOperation(MachineBasicBlock *MBB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +00002714 MachineBasicBlock::iterator IP,
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00002715 Value *Op, Value *ShiftAmount, bool isLeftShift,
2716 const Type *ResultTy, unsigned DestReg) {
2717 unsigned SrcReg = getReg (Op, MBB, IP);
2718 bool isSigned = ResultTy->isSigned ();
2719 unsigned Class = getClass (ResultTy);
Chris Lattner3e130a22003-01-13 00:32:26 +00002720
2721 static const unsigned ConstantOperand[][4] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002722 { X86::SHR8ri, X86::SHR16ri, X86::SHR32ri, X86::SHRD32rri8 }, // SHR
2723 { X86::SAR8ri, X86::SAR16ri, X86::SAR32ri, X86::SHRD32rri8 }, // SAR
2724 { X86::SHL8ri, X86::SHL16ri, X86::SHL32ri, X86::SHLD32rri8 }, // SHL
2725 { X86::SHL8ri, X86::SHL16ri, X86::SHL32ri, X86::SHLD32rri8 }, // SAL = SHL
Chris Lattner3e130a22003-01-13 00:32:26 +00002726 };
Chris Lattnerb1761fc2002-11-02 01:15:18 +00002727
Chris Lattner3e130a22003-01-13 00:32:26 +00002728 static const unsigned NonConstantOperand[][4] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002729 { X86::SHR8rCL, X86::SHR16rCL, X86::SHR32rCL }, // SHR
2730 { X86::SAR8rCL, X86::SAR16rCL, X86::SAR32rCL }, // SAR
2731 { X86::SHL8rCL, X86::SHL16rCL, X86::SHL32rCL }, // SHL
2732 { X86::SHL8rCL, X86::SHL16rCL, X86::SHL32rCL }, // SAL = SHL
Chris Lattner3e130a22003-01-13 00:32:26 +00002733 };
Chris Lattner796df732002-11-02 00:44:25 +00002734
Chris Lattner3e130a22003-01-13 00:32:26 +00002735 // Longs, as usual, are handled specially...
2736 if (Class == cLong) {
2737 // If we have a constant shift, we can generate much more efficient code
2738 // than otherwise...
2739 //
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00002740 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(ShiftAmount)) {
Chris Lattner3e130a22003-01-13 00:32:26 +00002741 unsigned Amount = CUI->getValue();
2742 if (Amount < 32) {
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002743 const unsigned *Opc = ConstantOperand[isLeftShift*2+isSigned];
2744 if (isLeftShift) {
Chris Lattneree352852004-02-29 07:22:16 +00002745 BuildMI(*MBB, IP, Opc[3], 3,
2746 DestReg+1).addReg(SrcReg+1).addReg(SrcReg).addImm(Amount);
2747 BuildMI(*MBB, IP, Opc[2], 2, DestReg).addReg(SrcReg).addImm(Amount);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002748 } else {
Chris Lattneree352852004-02-29 07:22:16 +00002749 BuildMI(*MBB, IP, Opc[3], 3,
2750 DestReg).addReg(SrcReg ).addReg(SrcReg+1).addImm(Amount);
2751 BuildMI(*MBB, IP, Opc[2],2,DestReg+1).addReg(SrcReg+1).addImm(Amount);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002752 }
Chris Lattner3e130a22003-01-13 00:32:26 +00002753 } else { // Shifting more than 32 bits
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002754 Amount -= 32;
2755 if (isLeftShift) {
Chris Lattner722070e2004-04-06 03:42:38 +00002756 if (Amount != 0) {
2757 BuildMI(*MBB, IP, X86::SHL32ri, 2,
2758 DestReg + 1).addReg(SrcReg).addImm(Amount);
2759 } else {
2760 BuildMI(*MBB, IP, X86::MOV32rr, 1, DestReg+1).addReg(SrcReg);
2761 }
2762 BuildMI(*MBB, IP, X86::MOV32ri, 1, DestReg).addImm(0);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002763 } else {
Chris Lattner722070e2004-04-06 03:42:38 +00002764 if (Amount != 0) {
2765 BuildMI(*MBB, IP, isSigned ? X86::SAR32ri : X86::SHR32ri, 2,
2766 DestReg).addReg(SrcReg+1).addImm(Amount);
2767 } else {
2768 BuildMI(*MBB, IP, X86::MOV32rr, 1, DestReg).addReg(SrcReg+1);
2769 }
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002770 BuildMI(*MBB, IP, X86::MOV32ri, 1, DestReg+1).addImm(0);
Misha Brukmanc8893fc2003-10-23 16:22:08 +00002771 }
Chris Lattner3e130a22003-01-13 00:32:26 +00002772 }
2773 } else {
Chris Lattner9171ef52003-06-01 01:56:54 +00002774 unsigned TmpReg = makeAnotherReg(Type::IntTy);
2775
2776 if (!isLeftShift && isSigned) {
2777 // If this is a SHR of a Long, then we need to do funny sign extension
2778 // stuff. TmpReg gets the value to use as the high-part if we are
2779 // shifting more than 32 bits.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002780 BuildMI(*MBB, IP, X86::SAR32ri, 2, TmpReg).addReg(SrcReg).addImm(31);
Chris Lattner9171ef52003-06-01 01:56:54 +00002781 } else {
2782 // Other shifts use a fixed zero value if the shift is more than 32
2783 // bits.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002784 BuildMI(*MBB, IP, X86::MOV32ri, 1, TmpReg).addImm(0);
Chris Lattner9171ef52003-06-01 01:56:54 +00002785 }
2786
2787 // Initialize CL with the shift amount...
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00002788 unsigned ShiftAmountReg = getReg(ShiftAmount, MBB, IP);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002789 BuildMI(*MBB, IP, X86::MOV8rr, 1, X86::CL).addReg(ShiftAmountReg);
Chris Lattner9171ef52003-06-01 01:56:54 +00002790
2791 unsigned TmpReg2 = makeAnotherReg(Type::IntTy);
2792 unsigned TmpReg3 = makeAnotherReg(Type::IntTy);
2793 if (isLeftShift) {
2794 // TmpReg2 = shld inHi, inLo
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002795 BuildMI(*MBB, IP, X86::SHLD32rrCL,2,TmpReg2).addReg(SrcReg+1)
Chris Lattneree352852004-02-29 07:22:16 +00002796 .addReg(SrcReg);
Chris Lattner9171ef52003-06-01 01:56:54 +00002797 // TmpReg3 = shl inLo, CL
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002798 BuildMI(*MBB, IP, X86::SHL32rCL, 1, TmpReg3).addReg(SrcReg);
Chris Lattner9171ef52003-06-01 01:56:54 +00002799
2800 // Set the flags to indicate whether the shift was by more than 32 bits.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002801 BuildMI(*MBB, IP, X86::TEST8ri, 2).addReg(X86::CL).addImm(32);
Chris Lattner9171ef52003-06-01 01:56:54 +00002802
2803 // DestHi = (>32) ? TmpReg3 : TmpReg2;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002804 BuildMI(*MBB, IP, X86::CMOVNE32rr, 2,
Chris Lattner9171ef52003-06-01 01:56:54 +00002805 DestReg+1).addReg(TmpReg2).addReg(TmpReg3);
2806 // DestLo = (>32) ? TmpReg : TmpReg3;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002807 BuildMI(*MBB, IP, X86::CMOVNE32rr, 2,
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00002808 DestReg).addReg(TmpReg3).addReg(TmpReg);
Chris Lattner9171ef52003-06-01 01:56:54 +00002809 } else {
2810 // TmpReg2 = shrd inLo, inHi
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002811 BuildMI(*MBB, IP, X86::SHRD32rrCL,2,TmpReg2).addReg(SrcReg)
Chris Lattneree352852004-02-29 07:22:16 +00002812 .addReg(SrcReg+1);
Chris Lattner9171ef52003-06-01 01:56:54 +00002813 // TmpReg3 = s[ah]r inHi, CL
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002814 BuildMI(*MBB, IP, isSigned ? X86::SAR32rCL : X86::SHR32rCL, 1, TmpReg3)
Chris Lattner9171ef52003-06-01 01:56:54 +00002815 .addReg(SrcReg+1);
2816
2817 // Set the flags to indicate whether the shift was by more than 32 bits.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002818 BuildMI(*MBB, IP, X86::TEST8ri, 2).addReg(X86::CL).addImm(32);
Chris Lattner9171ef52003-06-01 01:56:54 +00002819
2820 // DestLo = (>32) ? TmpReg3 : TmpReg2;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002821 BuildMI(*MBB, IP, X86::CMOVNE32rr, 2,
Chris Lattner9171ef52003-06-01 01:56:54 +00002822 DestReg).addReg(TmpReg2).addReg(TmpReg3);
2823
2824 // DestHi = (>32) ? TmpReg : TmpReg3;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002825 BuildMI(*MBB, IP, X86::CMOVNE32rr, 2,
Chris Lattner9171ef52003-06-01 01:56:54 +00002826 DestReg+1).addReg(TmpReg3).addReg(TmpReg);
2827 }
Brian Gaekea1719c92002-10-31 23:03:59 +00002828 }
Chris Lattner3e130a22003-01-13 00:32:26 +00002829 return;
2830 }
Chris Lattnere9913f22002-11-02 01:41:55 +00002831
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00002832 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(ShiftAmount)) {
Chris Lattner3e130a22003-01-13 00:32:26 +00002833 // The shift amount is constant, guaranteed to be a ubyte. Get its value.
2834 assert(CUI->getType() == Type::UByteTy && "Shift amount not a ubyte?");
Chris Lattnerb1761fc2002-11-02 01:15:18 +00002835
Chris Lattner3e130a22003-01-13 00:32:26 +00002836 const unsigned *Opc = ConstantOperand[isLeftShift*2+isSigned];
Chris Lattneree352852004-02-29 07:22:16 +00002837 BuildMI(*MBB, IP, Opc[Class], 2,
2838 DestReg).addReg(SrcReg).addImm(CUI->getValue());
Chris Lattner3e130a22003-01-13 00:32:26 +00002839 } else { // The shift amount is non-constant.
Brian Gaekedfcc9cf2003-11-22 06:49:41 +00002840 unsigned ShiftAmountReg = getReg (ShiftAmount, MBB, IP);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002841 BuildMI(*MBB, IP, X86::MOV8rr, 1, X86::CL).addReg(ShiftAmountReg);
Chris Lattnerb1761fc2002-11-02 01:15:18 +00002842
Chris Lattner3e130a22003-01-13 00:32:26 +00002843 const unsigned *Opc = NonConstantOperand[isLeftShift*2+isSigned];
Chris Lattneree352852004-02-29 07:22:16 +00002844 BuildMI(*MBB, IP, Opc[Class], 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00002845 }
2846}
Chris Lattnerb1761fc2002-11-02 01:15:18 +00002847
Chris Lattner3e130a22003-01-13 00:32:26 +00002848
Chris Lattner6fc3c522002-11-17 21:11:55 +00002849/// visitLoadInst - Implement LLVM load instructions in terms of the x86 'mov'
Chris Lattnere8f0d922002-12-24 00:03:11 +00002850/// instruction. The load and store instructions are the only place where we
2851/// need to worry about the memory layout of the target machine.
Chris Lattner6fc3c522002-11-17 21:11:55 +00002852///
2853void ISel::visitLoadInst(LoadInst &I) {
Chris Lattner7dee5da2004-03-08 01:58:35 +00002854 // Check to see if this load instruction is going to be folded into a binary
2855 // instruction, like add. If so, we don't want to emit it. Wouldn't a real
2856 // pattern matching instruction selector be nice?
Chris Lattner95157f72004-04-11 22:05:45 +00002857 unsigned Class = getClassB(I.getType());
Chris Lattnerfeac3e12004-04-11 23:21:26 +00002858 if (I.hasOneUse()) {
Chris Lattner7dee5da2004-03-08 01:58:35 +00002859 Instruction *User = cast<Instruction>(I.use_back());
2860 switch (User->getOpcode()) {
Chris Lattnerfeac3e12004-04-11 23:21:26 +00002861 case Instruction::Cast:
2862 // If this is a cast from a signed-integer type to a floating point type,
2863 // fold the cast here.
2864 if (getClass(User->getType()) == cFP &&
2865 (I.getType() == Type::ShortTy || I.getType() == Type::IntTy ||
2866 I.getType() == Type::LongTy)) {
2867 unsigned DestReg = getReg(User);
2868 static const unsigned Opcode[] = {
2869 0/*BYTE*/, X86::FILD16m, X86::FILD32m, 0/*FP*/, X86::FILD64m
2870 };
Chris Lattner9f1b5312004-05-13 15:12:43 +00002871
2872 if (AllocaInst *AI = dyn_castFixedAlloca(I.getOperand(0))) {
2873 unsigned FI = getFixedSizedAllocaFI(AI);
2874 addFrameReference(BuildMI(BB, Opcode[Class], 4, DestReg), FI);
2875 } else {
2876 unsigned BaseReg = 0, Scale = 1, IndexReg = 0, Disp = 0;
2877 getAddressingMode(I.getOperand(0), BaseReg, Scale, IndexReg, Disp);
2878 addFullAddress(BuildMI(BB, Opcode[Class], 4, DestReg),
2879 BaseReg, Scale, IndexReg, Disp);
2880 }
Chris Lattnerfeac3e12004-04-11 23:21:26 +00002881 return;
2882 } else {
2883 User = 0;
2884 }
2885 break;
Chris Lattner13c07fe2004-04-12 00:12:04 +00002886
Chris Lattner7dee5da2004-03-08 01:58:35 +00002887 case Instruction::Add:
2888 case Instruction::Sub:
2889 case Instruction::And:
2890 case Instruction::Or:
2891 case Instruction::Xor:
Chris Lattnerfeac3e12004-04-11 23:21:26 +00002892 if (Class == cLong) User = 0;
Chris Lattner7dee5da2004-03-08 01:58:35 +00002893 break;
Chris Lattner95157f72004-04-11 22:05:45 +00002894 case Instruction::Mul:
2895 case Instruction::Div:
Chris Lattner13c07fe2004-04-12 00:12:04 +00002896 if (Class != cFP) User = 0;
Chris Lattnerfeac3e12004-04-11 23:21:26 +00002897 break; // Folding only implemented for floating point.
Chris Lattner95157f72004-04-11 22:05:45 +00002898 default: User = 0; break;
Chris Lattner7dee5da2004-03-08 01:58:35 +00002899 }
2900
2901 if (User) {
2902 // Okay, we found a user. If the load is the first operand and there is
2903 // no second operand load, reverse the operand ordering. Note that this
2904 // can fail for a subtract (ie, no change will be made).
2905 if (!isa<LoadInst>(User->getOperand(1)))
2906 cast<BinaryOperator>(User)->swapOperands();
2907
2908 // Okay, now that everything is set up, if this load is used by the second
2909 // operand, and if there are no instructions that invalidate the load
2910 // before the binary operator, eliminate the load.
2911 if (User->getOperand(1) == &I &&
2912 isSafeToFoldLoadIntoInstruction(I, *User))
2913 return; // Eliminate the load!
Chris Lattner95157f72004-04-11 22:05:45 +00002914
2915 // If this is a floating point sub or div, we won't be able to swap the
2916 // operands, but we will still be able to eliminate the load.
2917 if (Class == cFP && User->getOperand(0) == &I &&
2918 !isa<LoadInst>(User->getOperand(1)) &&
2919 (User->getOpcode() == Instruction::Sub ||
2920 User->getOpcode() == Instruction::Div) &&
2921 isSafeToFoldLoadIntoInstruction(I, *User))
2922 return; // Eliminate the load!
Chris Lattner7dee5da2004-03-08 01:58:35 +00002923 }
2924 }
2925
Chris Lattner6ac1d712003-10-20 04:48:06 +00002926 static const unsigned Opcodes[] = {
Chris Lattner9f1b5312004-05-13 15:12:43 +00002927 X86::MOV8rm, X86::MOV16rm, X86::MOV32rm, X86::FLD32m, X86::MOV32rm
Chris Lattner3e130a22003-01-13 00:32:26 +00002928 };
Chris Lattner6ac1d712003-10-20 04:48:06 +00002929 unsigned Opcode = Opcodes[Class];
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002930 if (I.getType() == Type::DoubleTy) Opcode = X86::FLD64m;
Chris Lattner9f1b5312004-05-13 15:12:43 +00002931
2932 unsigned DestReg = getReg(I);
2933
2934 if (AllocaInst *AI = dyn_castFixedAlloca(I.getOperand(0))) {
2935 unsigned FI = getFixedSizedAllocaFI(AI);
2936 if (Class == cLong) {
2937 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, DestReg), FI);
2938 addFrameReference(BuildMI(BB, X86::MOV32rm, 4, DestReg+1), FI, 4);
2939 } else {
2940 addFrameReference(BuildMI(BB, Opcode, 4, DestReg), FI);
2941 }
2942 } else {
2943 unsigned BaseReg = 0, Scale = 1, IndexReg = 0, Disp = 0;
2944 getAddressingMode(I.getOperand(0), BaseReg, Scale, IndexReg, Disp);
2945
2946 if (Class == cLong) {
2947 addFullAddress(BuildMI(BB, X86::MOV32rm, 4, DestReg),
2948 BaseReg, Scale, IndexReg, Disp);
2949 addFullAddress(BuildMI(BB, X86::MOV32rm, 4, DestReg+1),
2950 BaseReg, Scale, IndexReg, Disp+4);
2951 } else {
2952 addFullAddress(BuildMI(BB, Opcode, 4, DestReg),
2953 BaseReg, Scale, IndexReg, Disp);
2954 }
2955 }
Chris Lattner3e130a22003-01-13 00:32:26 +00002956}
2957
Chris Lattner6fc3c522002-11-17 21:11:55 +00002958/// visitStoreInst - Implement LLVM store instructions in terms of the x86 'mov'
2959/// instruction.
2960///
2961void ISel::visitStoreInst(StoreInst &I) {
Chris Lattner9f1b5312004-05-13 15:12:43 +00002962 unsigned BaseReg = ~0U, Scale = ~0U, IndexReg = ~0U, Disp = ~0U;
2963 unsigned AllocaFrameIdx = ~0U;
2964
2965 if (AllocaInst *AI = dyn_castFixedAlloca(I.getOperand(1)))
2966 AllocaFrameIdx = getFixedSizedAllocaFI(AI);
2967 else
2968 getAddressingMode(I.getOperand(1), BaseReg, Scale, IndexReg, Disp);
Chris Lattnerb6bac512004-02-25 06:13:04 +00002969
Chris Lattner6c09db22003-10-20 04:11:23 +00002970 const Type *ValTy = I.getOperand(0)->getType();
2971 unsigned Class = getClassB(ValTy);
Chris Lattner6ac1d712003-10-20 04:48:06 +00002972
Chris Lattner5a830962004-02-25 02:56:58 +00002973 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(0))) {
2974 uint64_t Val = CI->getRawValue();
2975 if (Class == cLong) {
Chris Lattner9f1b5312004-05-13 15:12:43 +00002976 if (AllocaFrameIdx != ~0U) {
2977 addFrameReference(BuildMI(BB, X86::MOV32mi, 5),
2978 AllocaFrameIdx).addImm(Val & ~0U);
2979 addFrameReference(BuildMI(BB, X86::MOV32mi, 5),
2980 AllocaFrameIdx, 4).addImm(Val>>32);
2981 } else {
2982 addFullAddress(BuildMI(BB, X86::MOV32mi, 5),
2983 BaseReg, Scale, IndexReg, Disp).addImm(Val & ~0U);
2984 addFullAddress(BuildMI(BB, X86::MOV32mi, 5),
2985 BaseReg, Scale, IndexReg, Disp+4).addImm(Val>>32);
2986 }
Chris Lattner5a830962004-02-25 02:56:58 +00002987 } else {
2988 static const unsigned Opcodes[] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00002989 X86::MOV8mi, X86::MOV16mi, X86::MOV32mi
Chris Lattner5a830962004-02-25 02:56:58 +00002990 };
2991 unsigned Opcode = Opcodes[Class];
Chris Lattnerb7cb9ff2004-05-13 15:26:48 +00002992 if (AllocaFrameIdx != ~0U)
Chris Lattner9f1b5312004-05-13 15:12:43 +00002993 addFrameReference(BuildMI(BB, Opcode, 5), AllocaFrameIdx).addImm(Val);
Chris Lattnerb7cb9ff2004-05-13 15:26:48 +00002994 else
Chris Lattner9f1b5312004-05-13 15:12:43 +00002995 addFullAddress(BuildMI(BB, Opcode, 5),
2996 BaseReg, Scale, IndexReg, Disp).addImm(Val);
Chris Lattner5a830962004-02-25 02:56:58 +00002997 }
Chris Lattnerb7cb9ff2004-05-13 15:26:48 +00002998 } else if (isa<ConstantPointerNull>(I.getOperand(0))) {
2999 if (AllocaFrameIdx != ~0U)
3000 addFrameReference(BuildMI(BB, X86::MOV32mi, 5), AllocaFrameIdx).addImm(0);
3001 else
3002 addFullAddress(BuildMI(BB, X86::MOV32mi, 5),
3003 BaseReg, Scale, IndexReg, Disp).addImm(0);
3004
Chris Lattner5a830962004-02-25 02:56:58 +00003005 } else if (ConstantBool *CB = dyn_cast<ConstantBool>(I.getOperand(0))) {
Chris Lattner9f1b5312004-05-13 15:12:43 +00003006 if (AllocaFrameIdx != ~0U)
3007 addFrameReference(BuildMI(BB, X86::MOV8mi, 5),
3008 AllocaFrameIdx).addImm(CB->getValue());
3009 else
3010 addFullAddress(BuildMI(BB, X86::MOV8mi, 5),
3011 BaseReg, Scale, IndexReg, Disp).addImm(CB->getValue());
Chris Lattnere7a31c92004-05-07 21:18:15 +00003012 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0))) {
3013 // Store constant FP values with integer instructions to avoid having to
3014 // load the constants from the constant pool then do a store.
3015 if (CFP->getType() == Type::FloatTy) {
3016 union {
3017 unsigned I;
3018 float F;
3019 } V;
3020 V.F = CFP->getValue();
Chris Lattner9f1b5312004-05-13 15:12:43 +00003021 if (AllocaFrameIdx != ~0U)
3022 addFrameReference(BuildMI(BB, X86::MOV32mi, 5),
3023 AllocaFrameIdx).addImm(V.I);
3024 else
3025 addFullAddress(BuildMI(BB, X86::MOV32mi, 5),
3026 BaseReg, Scale, IndexReg, Disp).addImm(V.I);
Chris Lattner5a830962004-02-25 02:56:58 +00003027 } else {
Chris Lattnere7a31c92004-05-07 21:18:15 +00003028 union {
3029 uint64_t I;
3030 double F;
3031 } V;
3032 V.F = CFP->getValue();
Chris Lattner9f1b5312004-05-13 15:12:43 +00003033 if (AllocaFrameIdx != ~0U) {
3034 addFrameReference(BuildMI(BB, X86::MOV32mi, 5),
3035 AllocaFrameIdx).addImm((unsigned)V.I);
3036 addFrameReference(BuildMI(BB, X86::MOV32mi, 5),
3037 AllocaFrameIdx, 4).addImm(unsigned(V.I >> 32));
3038 } else {
3039 addFullAddress(BuildMI(BB, X86::MOV32mi, 5),
3040 BaseReg, Scale, IndexReg, Disp).addImm((unsigned)V.I);
3041 addFullAddress(BuildMI(BB, X86::MOV32mi, 5),
3042 BaseReg, Scale, IndexReg, Disp+4).addImm(
Chris Lattnere7a31c92004-05-07 21:18:15 +00003043 unsigned(V.I >> 32));
Chris Lattner9f1b5312004-05-13 15:12:43 +00003044 }
Chris Lattner5a830962004-02-25 02:56:58 +00003045 }
Chris Lattnere7a31c92004-05-07 21:18:15 +00003046
3047 } else if (Class == cLong) {
3048 unsigned ValReg = getReg(I.getOperand(0));
Chris Lattner9f1b5312004-05-13 15:12:43 +00003049 if (AllocaFrameIdx != ~0U) {
3050 addFrameReference(BuildMI(BB, X86::MOV32mr, 5),
3051 AllocaFrameIdx).addReg(ValReg);
3052 addFrameReference(BuildMI(BB, X86::MOV32mr, 5),
3053 AllocaFrameIdx, 4).addReg(ValReg+1);
3054 } else {
3055 addFullAddress(BuildMI(BB, X86::MOV32mr, 5),
3056 BaseReg, Scale, IndexReg, Disp).addReg(ValReg);
3057 addFullAddress(BuildMI(BB, X86::MOV32mr, 5),
3058 BaseReg, Scale, IndexReg, Disp+4).addReg(ValReg+1);
3059 }
Chris Lattnere7a31c92004-05-07 21:18:15 +00003060 } else {
3061 unsigned ValReg = getReg(I.getOperand(0));
3062 static const unsigned Opcodes[] = {
3063 X86::MOV8mr, X86::MOV16mr, X86::MOV32mr, X86::FST32m
3064 };
3065 unsigned Opcode = Opcodes[Class];
3066 if (ValTy == Type::DoubleTy) Opcode = X86::FST64m;
Chris Lattner9f1b5312004-05-13 15:12:43 +00003067
3068 if (AllocaFrameIdx != ~0U)
3069 addFrameReference(BuildMI(BB, Opcode, 5), AllocaFrameIdx).addReg(ValReg);
3070 else
3071 addFullAddress(BuildMI(BB, Opcode, 1+4),
3072 BaseReg, Scale, IndexReg, Disp).addReg(ValReg);
Chris Lattner94af4142002-12-25 05:13:53 +00003073 }
Chris Lattner6fc3c522002-11-17 21:11:55 +00003074}
3075
3076
Misha Brukman538607f2004-03-01 23:53:11 +00003077/// visitCastInst - Here we have various kinds of copying with or without sign
3078/// extension going on.
3079///
Chris Lattner3e130a22003-01-13 00:32:26 +00003080void ISel::visitCastInst(CastInst &CI) {
Chris Lattnerf5854472003-06-21 16:01:24 +00003081 Value *Op = CI.getOperand(0);
Chris Lattner427aeb42004-04-11 19:21:59 +00003082
Chris Lattner99382862004-04-12 00:23:04 +00003083 unsigned SrcClass = getClassB(Op->getType());
3084 unsigned DestClass = getClassB(CI.getType());
3085 // Noop casts are not emitted: getReg will return the source operand as the
3086 // register to use for any uses of the noop cast.
3087 if (DestClass == SrcClass)
Chris Lattner427aeb42004-04-11 19:21:59 +00003088 return;
3089
Chris Lattnerf5854472003-06-21 16:01:24 +00003090 // If this is a cast from a 32-bit integer to a Long type, and the only uses
3091 // of the case are GEP instructions, then the cast does not need to be
3092 // generated explicitly, it will be folded into the GEP.
Chris Lattner99382862004-04-12 00:23:04 +00003093 if (DestClass == cLong && SrcClass == cInt) {
Chris Lattnerf5854472003-06-21 16:01:24 +00003094 bool AllUsesAreGEPs = true;
3095 for (Value::use_iterator I = CI.use_begin(), E = CI.use_end(); I != E; ++I)
3096 if (!isa<GetElementPtrInst>(*I)) {
3097 AllUsesAreGEPs = false;
3098 break;
3099 }
3100
3101 // No need to codegen this cast if all users are getelementptr instrs...
3102 if (AllUsesAreGEPs) return;
3103 }
3104
Chris Lattner99382862004-04-12 00:23:04 +00003105 // If this cast converts a load from a short,int, or long integer to a FP
3106 // value, we will have folded this cast away.
3107 if (DestClass == cFP && isa<LoadInst>(Op) && Op->hasOneUse() &&
3108 (Op->getType() == Type::ShortTy || Op->getType() == Type::IntTy ||
3109 Op->getType() == Type::LongTy))
3110 return;
3111
3112
Chris Lattner548f61d2003-04-23 17:22:12 +00003113 unsigned DestReg = getReg(CI);
3114 MachineBasicBlock::iterator MI = BB->end();
Chris Lattnerf5854472003-06-21 16:01:24 +00003115 emitCastOperation(BB, MI, Op, CI.getType(), DestReg);
Chris Lattner548f61d2003-04-23 17:22:12 +00003116}
3117
Misha Brukman538607f2004-03-01 23:53:11 +00003118/// emitCastOperation - Common code shared between visitCastInst and constant
3119/// expression cast support.
3120///
Chris Lattner548f61d2003-04-23 17:22:12 +00003121void ISel::emitCastOperation(MachineBasicBlock *BB,
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003122 MachineBasicBlock::iterator IP,
Chris Lattner548f61d2003-04-23 17:22:12 +00003123 Value *Src, const Type *DestTy,
3124 unsigned DestReg) {
Chris Lattner3e130a22003-01-13 00:32:26 +00003125 const Type *SrcTy = Src->getType();
3126 unsigned SrcClass = getClassB(SrcTy);
Chris Lattner3e130a22003-01-13 00:32:26 +00003127 unsigned DestClass = getClassB(DestTy);
Chris Lattnerfeac3e12004-04-11 23:21:26 +00003128 unsigned SrcReg = getReg(Src, BB, IP);
3129
Chris Lattner3e130a22003-01-13 00:32:26 +00003130 // Implement casts to bool by using compare on the operand followed by set if
3131 // not zero on the result.
3132 if (DestTy == Type::BoolTy) {
Chris Lattner20772542003-06-01 03:38:24 +00003133 switch (SrcClass) {
3134 case cByte:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003135 BuildMI(*BB, IP, X86::TEST8rr, 2).addReg(SrcReg).addReg(SrcReg);
Chris Lattner20772542003-06-01 03:38:24 +00003136 break;
3137 case cShort:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003138 BuildMI(*BB, IP, X86::TEST16rr, 2).addReg(SrcReg).addReg(SrcReg);
Chris Lattner20772542003-06-01 03:38:24 +00003139 break;
3140 case cInt:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003141 BuildMI(*BB, IP, X86::TEST32rr, 2).addReg(SrcReg).addReg(SrcReg);
Chris Lattner20772542003-06-01 03:38:24 +00003142 break;
3143 case cLong: {
3144 unsigned TmpReg = makeAnotherReg(Type::IntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003145 BuildMI(*BB, IP, X86::OR32rr, 2, TmpReg).addReg(SrcReg).addReg(SrcReg+1);
Chris Lattner20772542003-06-01 03:38:24 +00003146 break;
3147 }
3148 case cFP:
Chris Lattneree352852004-02-29 07:22:16 +00003149 BuildMI(*BB, IP, X86::FTST, 1).addReg(SrcReg);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003150 BuildMI(*BB, IP, X86::FNSTSW8r, 0);
Chris Lattneree352852004-02-29 07:22:16 +00003151 BuildMI(*BB, IP, X86::SAHF, 1);
Chris Lattner311ca2e2004-02-23 03:21:41 +00003152 break;
Chris Lattner20772542003-06-01 03:38:24 +00003153 }
3154
3155 // If the zero flag is not set, then the value is true, set the byte to
3156 // true.
Chris Lattneree352852004-02-29 07:22:16 +00003157 BuildMI(*BB, IP, X86::SETNEr, 1, DestReg);
Chris Lattner94af4142002-12-25 05:13:53 +00003158 return;
3159 }
Chris Lattner3e130a22003-01-13 00:32:26 +00003160
3161 static const unsigned RegRegMove[] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003162 X86::MOV8rr, X86::MOV16rr, X86::MOV32rr, X86::FpMOV, X86::MOV32rr
Chris Lattner3e130a22003-01-13 00:32:26 +00003163 };
3164
3165 // Implement casts between values of the same type class (as determined by
3166 // getClass) by using a register-to-register move.
3167 if (SrcClass == DestClass) {
3168 if (SrcClass <= cInt || (SrcClass == cFP && SrcTy == DestTy)) {
Chris Lattneree352852004-02-29 07:22:16 +00003169 BuildMI(*BB, IP, RegRegMove[SrcClass], 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00003170 } else if (SrcClass == cFP) {
3171 if (SrcTy == Type::FloatTy) { // double -> float
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003172 assert(DestTy == Type::DoubleTy && "Unknown cFP member!");
Chris Lattneree352852004-02-29 07:22:16 +00003173 BuildMI(*BB, IP, X86::FpMOV, 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00003174 } else { // float -> double
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003175 assert(SrcTy == Type::DoubleTy && DestTy == Type::FloatTy &&
3176 "Unknown cFP member!");
3177 // Truncate from double to float by storing to memory as short, then
3178 // reading it back.
3179 unsigned FltAlign = TM.getTargetData().getFloatAlignment();
Chris Lattner3e130a22003-01-13 00:32:26 +00003180 int FrameIdx = F->getFrameInfo()->CreateStackObject(4, FltAlign);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003181 addFrameReference(BuildMI(*BB, IP, X86::FST32m, 5), FrameIdx).addReg(SrcReg);
3182 addFrameReference(BuildMI(*BB, IP, X86::FLD32m, 5, DestReg), FrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00003183 }
3184 } else if (SrcClass == cLong) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003185 BuildMI(*BB, IP, X86::MOV32rr, 1, DestReg).addReg(SrcReg);
3186 BuildMI(*BB, IP, X86::MOV32rr, 1, DestReg+1).addReg(SrcReg+1);
Chris Lattner3e130a22003-01-13 00:32:26 +00003187 } else {
Chris Lattnerc53544a2003-05-12 20:16:58 +00003188 assert(0 && "Cannot handle this type of cast instruction!");
Chris Lattner548f61d2003-04-23 17:22:12 +00003189 abort();
Brian Gaeked474e9c2002-12-06 10:49:33 +00003190 }
Chris Lattner3e130a22003-01-13 00:32:26 +00003191 return;
3192 }
3193
3194 // Handle cast of SMALLER int to LARGER int using a move with sign extension
3195 // or zero extension, depending on whether the source type was signed.
3196 if (SrcClass <= cInt && (DestClass <= cInt || DestClass == cLong) &&
3197 SrcClass < DestClass) {
3198 bool isLong = DestClass == cLong;
3199 if (isLong) DestClass = cInt;
3200
3201 static const unsigned Opc[][4] = {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003202 { X86::MOVSX16rr8, X86::MOVSX32rr8, X86::MOVSX32rr16, X86::MOV32rr }, // s
3203 { X86::MOVZX16rr8, X86::MOVZX32rr8, X86::MOVZX32rr16, X86::MOV32rr } // u
Chris Lattner3e130a22003-01-13 00:32:26 +00003204 };
3205
Chris Lattner96e3b422004-05-09 22:28:45 +00003206 bool isUnsigned = SrcTy->isUnsigned() || SrcTy == Type::BoolTy;
Chris Lattneree352852004-02-29 07:22:16 +00003207 BuildMI(*BB, IP, Opc[isUnsigned][SrcClass + DestClass - 1], 1,
Chris Lattner548f61d2003-04-23 17:22:12 +00003208 DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00003209
3210 if (isLong) { // Handle upper 32 bits as appropriate...
3211 if (isUnsigned) // Zero out top bits...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003212 BuildMI(*BB, IP, X86::MOV32ri, 1, DestReg+1).addImm(0);
Chris Lattner3e130a22003-01-13 00:32:26 +00003213 else // Sign extend bottom half...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003214 BuildMI(*BB, IP, X86::SAR32ri, 2, DestReg+1).addReg(DestReg).addImm(31);
Brian Gaeked474e9c2002-12-06 10:49:33 +00003215 }
Chris Lattner3e130a22003-01-13 00:32:26 +00003216 return;
3217 }
3218
3219 // Special case long -> int ...
3220 if (SrcClass == cLong && DestClass == cInt) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003221 BuildMI(*BB, IP, X86::MOV32rr, 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00003222 return;
3223 }
3224
3225 // Handle cast of LARGER int to SMALLER int using a move to EAX followed by a
3226 // move out of AX or AL.
3227 if ((SrcClass <= cInt || SrcClass == cLong) && DestClass <= cInt
3228 && SrcClass > DestClass) {
3229 static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX, 0, X86::EAX };
Chris Lattneree352852004-02-29 07:22:16 +00003230 BuildMI(*BB, IP, RegRegMove[SrcClass], 1, AReg[SrcClass]).addReg(SrcReg);
3231 BuildMI(*BB, IP, RegRegMove[DestClass], 1, DestReg).addReg(AReg[DestClass]);
Chris Lattner3e130a22003-01-13 00:32:26 +00003232 return;
3233 }
3234
3235 // Handle casts from integer to floating point now...
3236 if (DestClass == cFP) {
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003237 // Promote the integer to a type supported by FLD. We do this because there
3238 // are no unsigned FLD instructions, so we must promote an unsigned value to
3239 // a larger signed value, then use FLD on the larger value.
3240 //
3241 const Type *PromoteType = 0;
Chris Lattner85aa7092004-04-10 18:32:01 +00003242 unsigned PromoteOpcode = 0;
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003243 unsigned RealDestReg = DestReg;
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003244 switch (SrcTy->getPrimitiveID()) {
3245 case Type::BoolTyID:
3246 case Type::SByteTyID:
3247 // We don't have the facilities for directly loading byte sized data from
3248 // memory (even signed). Promote it to 16 bits.
3249 PromoteType = Type::ShortTy;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003250 PromoteOpcode = X86::MOVSX16rr8;
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003251 break;
3252 case Type::UByteTyID:
3253 PromoteType = Type::ShortTy;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003254 PromoteOpcode = X86::MOVZX16rr8;
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003255 break;
3256 case Type::UShortTyID:
3257 PromoteType = Type::IntTy;
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003258 PromoteOpcode = X86::MOVZX32rr16;
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003259 break;
3260 case Type::UIntTyID: {
3261 // Make a 64 bit temporary... and zero out the top of it...
3262 unsigned TmpReg = makeAnotherReg(Type::LongTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003263 BuildMI(*BB, IP, X86::MOV32rr, 1, TmpReg).addReg(SrcReg);
3264 BuildMI(*BB, IP, X86::MOV32ri, 1, TmpReg+1).addImm(0);
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003265 SrcTy = Type::LongTy;
3266 SrcClass = cLong;
3267 SrcReg = TmpReg;
3268 break;
3269 }
3270 case Type::ULongTyID:
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003271 // Don't fild into the read destination.
3272 DestReg = makeAnotherReg(Type::DoubleTy);
3273 break;
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003274 default: // No promotion needed...
3275 break;
3276 }
3277
3278 if (PromoteType) {
3279 unsigned TmpReg = makeAnotherReg(PromoteType);
Chris Lattner7b92de1e2004-04-06 19:29:36 +00003280 BuildMI(*BB, IP, PromoteOpcode, 1, TmpReg).addReg(SrcReg);
Chris Lattner4d5a50a2003-05-12 20:36:13 +00003281 SrcTy = PromoteType;
3282 SrcClass = getClass(PromoteType);
Chris Lattner3e130a22003-01-13 00:32:26 +00003283 SrcReg = TmpReg;
3284 }
3285
3286 // Spill the integer to memory and reload it from there...
Chris Lattnerb6bac512004-02-25 06:13:04 +00003287 int FrameIdx =
3288 F->getFrameInfo()->CreateStackObject(SrcTy, TM.getTargetData());
Chris Lattner3e130a22003-01-13 00:32:26 +00003289
3290 if (SrcClass == cLong) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003291 addFrameReference(BuildMI(*BB, IP, X86::MOV32mr, 5),
Chris Lattneree352852004-02-29 07:22:16 +00003292 FrameIdx).addReg(SrcReg);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003293 addFrameReference(BuildMI(*BB, IP, X86::MOV32mr, 5),
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003294 FrameIdx, 4).addReg(SrcReg+1);
Chris Lattner3e130a22003-01-13 00:32:26 +00003295 } else {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003296 static const unsigned Op1[] = { X86::MOV8mr, X86::MOV16mr, X86::MOV32mr };
Chris Lattneree352852004-02-29 07:22:16 +00003297 addFrameReference(BuildMI(*BB, IP, Op1[SrcClass], 5),
3298 FrameIdx).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00003299 }
3300
3301 static const unsigned Op2[] =
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003302 { 0/*byte*/, X86::FILD16m, X86::FILD32m, 0/*FP*/, X86::FILD64m };
Chris Lattneree352852004-02-29 07:22:16 +00003303 addFrameReference(BuildMI(*BB, IP, Op2[SrcClass], 5, DestReg), FrameIdx);
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003304
3305 // We need special handling for unsigned 64-bit integer sources. If the
3306 // input number has the "sign bit" set, then we loaded it incorrectly as a
3307 // negative 64-bit number. In this case, add an offset value.
3308 if (SrcTy == Type::ULongTy) {
3309 // Emit a test instruction to see if the dynamic input value was signed.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003310 BuildMI(*BB, IP, X86::TEST32rr, 2).addReg(SrcReg+1).addReg(SrcReg+1);
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003311
Chris Lattnerb6bac512004-02-25 06:13:04 +00003312 // If the sign bit is set, get a pointer to an offset, otherwise get a
3313 // pointer to a zero.
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003314 MachineConstantPool *CP = F->getConstantPool();
3315 unsigned Zero = makeAnotherReg(Type::IntTy);
Chris Lattnerb6bac512004-02-25 06:13:04 +00003316 Constant *Null = Constant::getNullValue(Type::UIntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003317 addConstantPoolReference(BuildMI(*BB, IP, X86::LEA32r, 5, Zero),
Chris Lattnerb6bac512004-02-25 06:13:04 +00003318 CP->getConstantPoolIndex(Null));
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003319 unsigned Offset = makeAnotherReg(Type::IntTy);
Chris Lattnerb6bac512004-02-25 06:13:04 +00003320 Constant *OffsetCst = ConstantUInt::get(Type::UIntTy, 0x5f800000);
3321
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003322 addConstantPoolReference(BuildMI(*BB, IP, X86::LEA32r, 5, Offset),
Chris Lattnerb6bac512004-02-25 06:13:04 +00003323 CP->getConstantPoolIndex(OffsetCst));
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003324 unsigned Addr = makeAnotherReg(Type::IntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003325 BuildMI(*BB, IP, X86::CMOVS32rr, 2, Addr).addReg(Zero).addReg(Offset);
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003326
3327 // Load the constant for an add. FIXME: this could make an 'fadd' that
3328 // reads directly from memory, but we don't support these yet.
3329 unsigned ConstReg = makeAnotherReg(Type::DoubleTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003330 addDirectMem(BuildMI(*BB, IP, X86::FLD32m, 4, ConstReg), Addr);
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003331
Chris Lattneree352852004-02-29 07:22:16 +00003332 BuildMI(*BB, IP, X86::FpADD, 2, RealDestReg)
3333 .addReg(ConstReg).addReg(DestReg);
Chris Lattnerbaa58a52004-02-23 03:10:10 +00003334 }
3335
Chris Lattner3e130a22003-01-13 00:32:26 +00003336 return;
3337 }
3338
3339 // Handle casts from floating point to integer now...
3340 if (SrcClass == cFP) {
3341 // Change the floating point control register to use "round towards zero"
3342 // mode when truncating to an integer value.
3343 //
3344 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003345 addFrameReference(BuildMI(*BB, IP, X86::FNSTCW16m, 4), CWFrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00003346
3347 // Load the old value of the high byte of the control word...
3348 unsigned HighPartOfCW = makeAnotherReg(Type::UByteTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003349 addFrameReference(BuildMI(*BB, IP, X86::MOV8rm, 4, HighPartOfCW),
Chris Lattneree352852004-02-29 07:22:16 +00003350 CWFrameIdx, 1);
Chris Lattner3e130a22003-01-13 00:32:26 +00003351
3352 // Set the high part to be round to zero...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003353 addFrameReference(BuildMI(*BB, IP, X86::MOV8mi, 5),
Chris Lattneree352852004-02-29 07:22:16 +00003354 CWFrameIdx, 1).addImm(12);
Chris Lattner3e130a22003-01-13 00:32:26 +00003355
3356 // Reload the modified control word now...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003357 addFrameReference(BuildMI(*BB, IP, X86::FLDCW16m, 4), CWFrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00003358
3359 // Restore the memory image of control word to original value
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003360 addFrameReference(BuildMI(*BB, IP, X86::MOV8mr, 5),
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003361 CWFrameIdx, 1).addReg(HighPartOfCW);
Chris Lattner3e130a22003-01-13 00:32:26 +00003362
3363 // We don't have the facilities for directly storing byte sized data to
3364 // memory. Promote it to 16 bits. We also must promote unsigned values to
3365 // larger classes because we only have signed FP stores.
3366 unsigned StoreClass = DestClass;
3367 const Type *StoreTy = DestTy;
3368 if (StoreClass == cByte || DestTy->isUnsigned())
3369 switch (StoreClass) {
3370 case cByte: StoreTy = Type::ShortTy; StoreClass = cShort; break;
3371 case cShort: StoreTy = Type::IntTy; StoreClass = cInt; break;
3372 case cInt: StoreTy = Type::LongTy; StoreClass = cLong; break;
Brian Gaeked4615052003-07-18 20:23:43 +00003373 // The following treatment of cLong may not be perfectly right,
3374 // but it survives chains of casts of the form
3375 // double->ulong->double.
3376 case cLong: StoreTy = Type::LongTy; StoreClass = cLong; break;
Chris Lattner3e130a22003-01-13 00:32:26 +00003377 default: assert(0 && "Unknown store class!");
3378 }
3379
3380 // Spill the integer to memory and reload it from there...
3381 int FrameIdx =
3382 F->getFrameInfo()->CreateStackObject(StoreTy, TM.getTargetData());
3383
3384 static const unsigned Op1[] =
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003385 { 0, X86::FIST16m, X86::FIST32m, 0, X86::FISTP64m };
Chris Lattneree352852004-02-29 07:22:16 +00003386 addFrameReference(BuildMI(*BB, IP, Op1[StoreClass], 5),
3387 FrameIdx).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00003388
3389 if (DestClass == cLong) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003390 addFrameReference(BuildMI(*BB, IP, X86::MOV32rm, 4, DestReg), FrameIdx);
3391 addFrameReference(BuildMI(*BB, IP, X86::MOV32rm, 4, DestReg+1),
Chris Lattneree352852004-02-29 07:22:16 +00003392 FrameIdx, 4);
Chris Lattner3e130a22003-01-13 00:32:26 +00003393 } else {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003394 static const unsigned Op2[] = { X86::MOV8rm, X86::MOV16rm, X86::MOV32rm };
Chris Lattneree352852004-02-29 07:22:16 +00003395 addFrameReference(BuildMI(*BB, IP, Op2[DestClass], 4, DestReg), FrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00003396 }
3397
3398 // Reload the original control word now...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003399 addFrameReference(BuildMI(*BB, IP, X86::FLDCW16m, 4), CWFrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00003400 return;
3401 }
3402
Brian Gaeked474e9c2002-12-06 10:49:33 +00003403 // Anything we haven't handled already, we can't (yet) handle at all.
Chris Lattnerc53544a2003-05-12 20:16:58 +00003404 assert(0 && "Unhandled cast instruction!");
Chris Lattner548f61d2003-04-23 17:22:12 +00003405 abort();
Brian Gaekefa8d5712002-11-22 11:07:01 +00003406}
Brian Gaekea1719c92002-10-31 23:03:59 +00003407
Chris Lattner73815062003-10-18 05:56:40 +00003408/// visitVANextInst - Implement the va_next instruction...
Chris Lattnereca195e2003-05-08 19:44:13 +00003409///
Chris Lattner73815062003-10-18 05:56:40 +00003410void ISel::visitVANextInst(VANextInst &I) {
3411 unsigned VAList = getReg(I.getOperand(0));
Chris Lattnereca195e2003-05-08 19:44:13 +00003412 unsigned DestReg = getReg(I);
3413
Chris Lattnereca195e2003-05-08 19:44:13 +00003414 unsigned Size;
Chris Lattner73815062003-10-18 05:56:40 +00003415 switch (I.getArgType()->getPrimitiveID()) {
Chris Lattnereca195e2003-05-08 19:44:13 +00003416 default:
3417 std::cerr << I;
Chris Lattner73815062003-10-18 05:56:40 +00003418 assert(0 && "Error: bad type for va_next instruction!");
Chris Lattnereca195e2003-05-08 19:44:13 +00003419 return;
3420 case Type::PointerTyID:
3421 case Type::UIntTyID:
3422 case Type::IntTyID:
3423 Size = 4;
Chris Lattnereca195e2003-05-08 19:44:13 +00003424 break;
3425 case Type::ULongTyID:
3426 case Type::LongTyID:
Chris Lattnereca195e2003-05-08 19:44:13 +00003427 case Type::DoubleTyID:
3428 Size = 8;
Chris Lattnereca195e2003-05-08 19:44:13 +00003429 break;
3430 }
3431
3432 // Increment the VAList pointer...
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003433 BuildMI(BB, X86::ADD32ri, 2, DestReg).addReg(VAList).addImm(Size);
Chris Lattner73815062003-10-18 05:56:40 +00003434}
Chris Lattnereca195e2003-05-08 19:44:13 +00003435
Chris Lattner73815062003-10-18 05:56:40 +00003436void ISel::visitVAArgInst(VAArgInst &I) {
3437 unsigned VAList = getReg(I.getOperand(0));
3438 unsigned DestReg = getReg(I);
3439
3440 switch (I.getType()->getPrimitiveID()) {
3441 default:
3442 std::cerr << I;
3443 assert(0 && "Error: bad type for va_next instruction!");
3444 return;
3445 case Type::PointerTyID:
3446 case Type::UIntTyID:
3447 case Type::IntTyID:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003448 addDirectMem(BuildMI(BB, X86::MOV32rm, 4, DestReg), VAList);
Chris Lattner73815062003-10-18 05:56:40 +00003449 break;
3450 case Type::ULongTyID:
3451 case Type::LongTyID:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003452 addDirectMem(BuildMI(BB, X86::MOV32rm, 4, DestReg), VAList);
3453 addRegOffset(BuildMI(BB, X86::MOV32rm, 4, DestReg+1), VAList, 4);
Chris Lattner73815062003-10-18 05:56:40 +00003454 break;
3455 case Type::DoubleTyID:
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003456 addDirectMem(BuildMI(BB, X86::FLD64m, 4, DestReg), VAList);
Chris Lattner73815062003-10-18 05:56:40 +00003457 break;
3458 }
Chris Lattnereca195e2003-05-08 19:44:13 +00003459}
3460
Misha Brukman538607f2004-03-01 23:53:11 +00003461/// visitGetElementPtrInst - instruction-select GEP instructions
3462///
Chris Lattner3e130a22003-01-13 00:32:26 +00003463void ISel::visitGetElementPtrInst(GetElementPtrInst &I) {
Chris Lattnerb6bac512004-02-25 06:13:04 +00003464 // If this GEP instruction will be folded into all of its users, we don't need
3465 // to explicitly calculate it!
3466 unsigned A, B, C, D;
3467 if (isGEPFoldable(0, I.getOperand(0), I.op_begin()+1, I.op_end(), A,B,C,D)) {
3468 // Check all of the users of the instruction to see if they are loads and
3469 // stores.
3470 bool AllWillFold = true;
3471 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI)
3472 if (cast<Instruction>(*UI)->getOpcode() != Instruction::Load)
3473 if (cast<Instruction>(*UI)->getOpcode() != Instruction::Store ||
3474 cast<Instruction>(*UI)->getOperand(0) == &I) {
3475 AllWillFold = false;
3476 break;
3477 }
3478
3479 // If the instruction is foldable, and will be folded into all users, don't
3480 // emit it!
3481 if (AllWillFold) return;
3482 }
3483
Chris Lattner3e130a22003-01-13 00:32:26 +00003484 unsigned outputReg = getReg(I);
Chris Lattner827832c2004-02-22 17:05:38 +00003485 emitGEPOperation(BB, BB->end(), I.getOperand(0),
Brian Gaeke68b1edc2002-12-16 04:23:29 +00003486 I.op_begin()+1, I.op_end(), outputReg);
Chris Lattnerc0812d82002-12-13 06:56:29 +00003487}
3488
Chris Lattner985fe3d2004-02-25 03:45:50 +00003489/// getGEPIndex - Inspect the getelementptr operands specified with GEPOps and
3490/// GEPTypes (the derived types being stepped through at each level). On return
3491/// from this function, if some indexes of the instruction are representable as
3492/// an X86 lea instruction, the machine operands are put into the Ops
3493/// instruction and the consumed indexes are poped from the GEPOps/GEPTypes
3494/// lists. Otherwise, GEPOps.size() is returned. If this returns a an
3495/// addressing mode that only partially consumes the input, the BaseReg input of
3496/// the addressing mode must be left free.
3497///
3498/// Note that there is one fewer entry in GEPTypes than there is in GEPOps.
3499///
Chris Lattnerb6bac512004-02-25 06:13:04 +00003500void ISel::getGEPIndex(MachineBasicBlock *MBB, MachineBasicBlock::iterator IP,
3501 std::vector<Value*> &GEPOps,
3502 std::vector<const Type*> &GEPTypes, unsigned &BaseReg,
3503 unsigned &Scale, unsigned &IndexReg, unsigned &Disp) {
3504 const TargetData &TD = TM.getTargetData();
3505
Chris Lattner985fe3d2004-02-25 03:45:50 +00003506 // Clear out the state we are working with...
Chris Lattnerb6bac512004-02-25 06:13:04 +00003507 BaseReg = 0; // No base register
3508 Scale = 1; // Unit scale
3509 IndexReg = 0; // No index register
3510 Disp = 0; // No displacement
3511
Chris Lattner985fe3d2004-02-25 03:45:50 +00003512 // While there are GEP indexes that can be folded into the current address,
3513 // keep processing them.
3514 while (!GEPTypes.empty()) {
3515 if (const StructType *StTy = dyn_cast<StructType>(GEPTypes.back())) {
3516 // It's a struct access. CUI is the index into the structure,
3517 // which names the field. This index must have unsigned type.
3518 const ConstantUInt *CUI = cast<ConstantUInt>(GEPOps.back());
3519
3520 // Use the TargetData structure to pick out what the layout of the
3521 // structure is in memory. Since the structure index must be constant, we
3522 // can get its value and use it to find the right byte offset from the
3523 // StructLayout class's list of structure member offsets.
Chris Lattnerb6bac512004-02-25 06:13:04 +00003524 Disp += TD.getStructLayout(StTy)->MemberOffsets[CUI->getValue()];
Chris Lattner985fe3d2004-02-25 03:45:50 +00003525 GEPOps.pop_back(); // Consume a GEP operand
3526 GEPTypes.pop_back();
3527 } else {
3528 // It's an array or pointer access: [ArraySize x ElementType].
3529 const SequentialType *SqTy = cast<SequentialType>(GEPTypes.back());
3530 Value *idx = GEPOps.back();
3531
3532 // idx is the index into the array. Unlike with structure
3533 // indices, we may not know its actual value at code-generation
3534 // time.
Chris Lattner985fe3d2004-02-25 03:45:50 +00003535
3536 // If idx is a constant, fold it into the offset.
Chris Lattner5f2c7b12004-02-25 07:00:55 +00003537 unsigned TypeSize = TD.getTypeSize(SqTy->getElementType());
Chris Lattner985fe3d2004-02-25 03:45:50 +00003538 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(idx)) {
Chris Lattner5f2c7b12004-02-25 07:00:55 +00003539 Disp += TypeSize*CSI->getValue();
Chris Lattner28977af2004-04-05 01:30:19 +00003540 } else if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(idx)) {
3541 Disp += TypeSize*CUI->getValue();
Chris Lattner985fe3d2004-02-25 03:45:50 +00003542 } else {
Chris Lattner5f2c7b12004-02-25 07:00:55 +00003543 // If the index reg is already taken, we can't handle this index.
3544 if (IndexReg) return;
3545
3546 // If this is a size that we can handle, then add the index as
3547 switch (TypeSize) {
3548 case 1: case 2: case 4: case 8:
3549 // These are all acceptable scales on X86.
3550 Scale = TypeSize;
3551 break;
3552 default:
3553 // Otherwise, we can't handle this scale
3554 return;
3555 }
3556
3557 if (CastInst *CI = dyn_cast<CastInst>(idx))
3558 if (CI->getOperand(0)->getType() == Type::IntTy ||
3559 CI->getOperand(0)->getType() == Type::UIntTy)
3560 idx = CI->getOperand(0);
3561
3562 IndexReg = MBB ? getReg(idx, MBB, IP) : 1;
Chris Lattner985fe3d2004-02-25 03:45:50 +00003563 }
3564
3565 GEPOps.pop_back(); // Consume a GEP operand
3566 GEPTypes.pop_back();
3567 }
3568 }
Chris Lattnerb6bac512004-02-25 06:13:04 +00003569
3570 // GEPTypes is empty, which means we have a single operand left. See if we
3571 // can set it as the base register.
3572 //
3573 // FIXME: When addressing modes are more powerful/correct, we could load
3574 // global addresses directly as 32-bit immediates.
3575 assert(BaseReg == 0);
Chris Lattner5f2c7b12004-02-25 07:00:55 +00003576 BaseReg = MBB ? getReg(GEPOps[0], MBB, IP) : 1;
Chris Lattnerb6bac512004-02-25 06:13:04 +00003577 GEPOps.pop_back(); // Consume the last GEP operand
Chris Lattner985fe3d2004-02-25 03:45:50 +00003578}
3579
3580
Chris Lattnerb6bac512004-02-25 06:13:04 +00003581/// isGEPFoldable - Return true if the specified GEP can be completely
3582/// folded into the addressing mode of a load/store or lea instruction.
3583bool ISel::isGEPFoldable(MachineBasicBlock *MBB,
3584 Value *Src, User::op_iterator IdxBegin,
3585 User::op_iterator IdxEnd, unsigned &BaseReg,
3586 unsigned &Scale, unsigned &IndexReg, unsigned &Disp) {
Chris Lattner7ca04092004-02-22 17:35:42 +00003587 if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(Src))
3588 Src = CPR->getValue();
3589
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003590 std::vector<Value*> GEPOps;
3591 GEPOps.resize(IdxEnd-IdxBegin+1);
3592 GEPOps[0] = Src;
3593 std::copy(IdxBegin, IdxEnd, GEPOps.begin()+1);
3594
3595 std::vector<const Type*> GEPTypes;
3596 GEPTypes.assign(gep_type_begin(Src->getType(), IdxBegin, IdxEnd),
3597 gep_type_end(Src->getType(), IdxBegin, IdxEnd));
3598
Chris Lattnerb6bac512004-02-25 06:13:04 +00003599 MachineBasicBlock::iterator IP;
3600 if (MBB) IP = MBB->end();
3601 getGEPIndex(MBB, IP, GEPOps, GEPTypes, BaseReg, Scale, IndexReg, Disp);
3602
3603 // We can fold it away iff the getGEPIndex call eliminated all operands.
3604 return GEPOps.empty();
3605}
3606
3607void ISel::emitGEPOperation(MachineBasicBlock *MBB,
3608 MachineBasicBlock::iterator IP,
3609 Value *Src, User::op_iterator IdxBegin,
3610 User::op_iterator IdxEnd, unsigned TargetReg) {
3611 const TargetData &TD = TM.getTargetData();
3612 if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(Src))
3613 Src = CPR->getValue();
3614
3615 std::vector<Value*> GEPOps;
3616 GEPOps.resize(IdxEnd-IdxBegin+1);
3617 GEPOps[0] = Src;
3618 std::copy(IdxBegin, IdxEnd, GEPOps.begin()+1);
3619
3620 std::vector<const Type*> GEPTypes;
3621 GEPTypes.assign(gep_type_begin(Src->getType(), IdxBegin, IdxEnd),
3622 gep_type_end(Src->getType(), IdxBegin, IdxEnd));
Chris Lattner985fe3d2004-02-25 03:45:50 +00003623
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003624 // Keep emitting instructions until we consume the entire GEP instruction.
3625 while (!GEPOps.empty()) {
3626 unsigned OldSize = GEPOps.size();
Chris Lattnerb6bac512004-02-25 06:13:04 +00003627 unsigned BaseReg, Scale, IndexReg, Disp;
3628 getGEPIndex(MBB, IP, GEPOps, GEPTypes, BaseReg, Scale, IndexReg, Disp);
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003629
Chris Lattner985fe3d2004-02-25 03:45:50 +00003630 if (GEPOps.size() != OldSize) {
3631 // getGEPIndex consumed some of the input. Build an LEA instruction here.
Chris Lattnerb6bac512004-02-25 06:13:04 +00003632 unsigned NextTarget = 0;
3633 if (!GEPOps.empty()) {
3634 assert(BaseReg == 0 &&
3635 "getGEPIndex should have left the base register open for chaining!");
3636 NextTarget = BaseReg = makeAnotherReg(Type::UIntTy);
Chris Lattner985fe3d2004-02-25 03:45:50 +00003637 }
Chris Lattnerb6bac512004-02-25 06:13:04 +00003638
3639 if (IndexReg == 0 && Disp == 0)
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003640 BuildMI(*MBB, IP, X86::MOV32rr, 1, TargetReg).addReg(BaseReg);
Chris Lattnerb6bac512004-02-25 06:13:04 +00003641 else
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003642 addFullAddress(BuildMI(*MBB, IP, X86::LEA32r, 5, TargetReg),
Chris Lattnerb6bac512004-02-25 06:13:04 +00003643 BaseReg, Scale, IndexReg, Disp);
3644 --IP;
3645 TargetReg = NextTarget;
Chris Lattner985fe3d2004-02-25 03:45:50 +00003646 } else if (GEPTypes.empty()) {
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003647 // The getGEPIndex operation didn't want to build an LEA. Check to see if
3648 // all operands are consumed but the base pointer. If so, just load it
3649 // into the register.
Chris Lattner7ca04092004-02-22 17:35:42 +00003650 if (GlobalValue *GV = dyn_cast<GlobalValue>(GEPOps[0])) {
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003651 BuildMI(*MBB, IP, X86::MOV32ri, 1, TargetReg).addGlobalAddress(GV);
Chris Lattner7ca04092004-02-22 17:35:42 +00003652 } else {
3653 unsigned BaseReg = getReg(GEPOps[0], MBB, IP);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003654 BuildMI(*MBB, IP, X86::MOV32rr, 1, TargetReg).addReg(BaseReg);
Chris Lattner7ca04092004-02-22 17:35:42 +00003655 }
3656 break; // we are now done
Chris Lattnerb6bac512004-02-25 06:13:04 +00003657
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003658 } else {
Brian Gaeke20244b72002-12-12 15:33:40 +00003659 // It's an array or pointer access: [ArraySize x ElementType].
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003660 const SequentialType *SqTy = cast<SequentialType>(GEPTypes.back());
3661 Value *idx = GEPOps.back();
3662 GEPOps.pop_back(); // Consume a GEP operand
3663 GEPTypes.pop_back();
Chris Lattner8a307e82002-12-16 19:32:50 +00003664
Chris Lattner28977af2004-04-05 01:30:19 +00003665 // Many GEP instructions use a [cast (int/uint) to LongTy] as their
Chris Lattnerf5854472003-06-21 16:01:24 +00003666 // operand on X86. Handle this case directly now...
3667 if (CastInst *CI = dyn_cast<CastInst>(idx))
3668 if (CI->getOperand(0)->getType() == Type::IntTy ||
3669 CI->getOperand(0)->getType() == Type::UIntTy)
3670 idx = CI->getOperand(0);
3671
Chris Lattner3e130a22003-01-13 00:32:26 +00003672 // We want to add BaseReg to(idxReg * sizeof ElementType). First, we
Chris Lattner8a307e82002-12-16 19:32:50 +00003673 // must find the size of the pointed-to type (Not coincidentally, the next
3674 // type is the type of the elements in the array).
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003675 const Type *ElTy = SqTy->getElementType();
3676 unsigned elementSize = TD.getTypeSize(ElTy);
Chris Lattner8a307e82002-12-16 19:32:50 +00003677
3678 // If idxReg is a constant, we don't need to perform the multiply!
Chris Lattner28977af2004-04-05 01:30:19 +00003679 if (ConstantInt *CSI = dyn_cast<ConstantInt>(idx)) {
Chris Lattner3e130a22003-01-13 00:32:26 +00003680 if (!CSI->isNullValue()) {
Chris Lattner28977af2004-04-05 01:30:19 +00003681 unsigned Offset = elementSize*CSI->getRawValue();
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003682 unsigned Reg = makeAnotherReg(Type::UIntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003683 BuildMI(*MBB, IP, X86::ADD32ri, 2, TargetReg)
Chris Lattneree352852004-02-29 07:22:16 +00003684 .addReg(Reg).addImm(Offset);
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003685 --IP; // Insert the next instruction before this one.
3686 TargetReg = Reg; // Codegen the rest of the GEP into this
Chris Lattner8a307e82002-12-16 19:32:50 +00003687 }
3688 } else if (elementSize == 1) {
3689 // If the element size is 1, we don't have to multiply, just add
3690 unsigned idxReg = getReg(idx, MBB, IP);
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003691 unsigned Reg = makeAnotherReg(Type::UIntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003692 BuildMI(*MBB, IP, X86::ADD32rr, 2,TargetReg).addReg(Reg).addReg(idxReg);
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003693 --IP; // Insert the next instruction before this one.
3694 TargetReg = Reg; // Codegen the rest of the GEP into this
Chris Lattner8a307e82002-12-16 19:32:50 +00003695 } else {
3696 unsigned idxReg = getReg(idx, MBB, IP);
3697 unsigned OffsetReg = makeAnotherReg(Type::UIntTy);
Chris Lattnerb2acc512003-10-19 21:09:10 +00003698
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003699 // Make sure we can back the iterator up to point to the first
3700 // instruction emitted.
3701 MachineBasicBlock::iterator BeforeIt = IP;
3702 if (IP == MBB->begin())
3703 BeforeIt = MBB->end();
3704 else
3705 --BeforeIt;
Chris Lattnerb2acc512003-10-19 21:09:10 +00003706 doMultiplyConst(MBB, IP, OffsetReg, Type::IntTy, idxReg, elementSize);
3707
Chris Lattner8a307e82002-12-16 19:32:50 +00003708 // Emit an ADD to add OffsetReg to the basePtr.
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003709 unsigned Reg = makeAnotherReg(Type::UIntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003710 BuildMI(*MBB, IP, X86::ADD32rr, 2, TargetReg)
Chris Lattneree352852004-02-29 07:22:16 +00003711 .addReg(Reg).addReg(OffsetReg);
Chris Lattner3f1e8e72004-02-22 07:04:00 +00003712
3713 // Step to the first instruction of the multiply.
3714 if (BeforeIt == MBB->end())
3715 IP = MBB->begin();
3716 else
3717 IP = ++BeforeIt;
3718
3719 TargetReg = Reg; // Codegen the rest of the GEP into this
Chris Lattner8a307e82002-12-16 19:32:50 +00003720 }
Brian Gaeke20244b72002-12-12 15:33:40 +00003721 }
Brian Gaeke20244b72002-12-12 15:33:40 +00003722 }
Brian Gaeke20244b72002-12-12 15:33:40 +00003723}
3724
Chris Lattner065faeb2002-12-28 20:24:02 +00003725/// visitAllocaInst - If this is a fixed size alloca, allocate space from the
3726/// frame manager, otherwise do it the hard way.
3727///
3728void ISel::visitAllocaInst(AllocaInst &I) {
Chris Lattner9f1b5312004-05-13 15:12:43 +00003729 // If this is a fixed size alloca in the entry block for the function, we
3730 // statically stack allocate the space, so we don't need to do anything here.
3731 //
Chris Lattnercb2fd552004-05-13 07:40:27 +00003732 if (dyn_castFixedAlloca(&I)) return;
Chris Lattner9f1b5312004-05-13 15:12:43 +00003733
Brian Gaekee48ec012002-12-13 06:46:31 +00003734 // Find the data size of the alloca inst's getAllocatedType.
Chris Lattner065faeb2002-12-28 20:24:02 +00003735 const Type *Ty = I.getAllocatedType();
3736 unsigned TySize = TM.getTargetData().getTypeSize(Ty);
3737
Chris Lattner065faeb2002-12-28 20:24:02 +00003738 // Create a register to hold the temporary result of multiplying the type size
3739 // constant by the variable amount.
3740 unsigned TotalSizeReg = makeAnotherReg(Type::UIntTy);
3741 unsigned SrcReg1 = getReg(I.getArraySize());
Chris Lattner065faeb2002-12-28 20:24:02 +00003742
3743 // TotalSizeReg = mul <numelements>, <TypeSize>
3744 MachineBasicBlock::iterator MBBI = BB->end();
Chris Lattnerb2acc512003-10-19 21:09:10 +00003745 doMultiplyConst(BB, MBBI, TotalSizeReg, Type::UIntTy, SrcReg1, TySize);
Chris Lattner065faeb2002-12-28 20:24:02 +00003746
3747 // AddedSize = add <TotalSizeReg>, 15
3748 unsigned AddedSizeReg = makeAnotherReg(Type::UIntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003749 BuildMI(BB, X86::ADD32ri, 2, AddedSizeReg).addReg(TotalSizeReg).addImm(15);
Chris Lattner065faeb2002-12-28 20:24:02 +00003750
3751 // AlignedSize = and <AddedSize>, ~15
3752 unsigned AlignedSize = makeAnotherReg(Type::UIntTy);
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003753 BuildMI(BB, X86::AND32ri, 2, AlignedSize).addReg(AddedSizeReg).addImm(~15);
Chris Lattner065faeb2002-12-28 20:24:02 +00003754
Brian Gaekee48ec012002-12-13 06:46:31 +00003755 // Subtract size from stack pointer, thereby allocating some space.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003756 BuildMI(BB, X86::SUB32rr, 2, X86::ESP).addReg(X86::ESP).addReg(AlignedSize);
Chris Lattner065faeb2002-12-28 20:24:02 +00003757
Brian Gaekee48ec012002-12-13 06:46:31 +00003758 // Put a pointer to the space into the result register, by copying
3759 // the stack pointer.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +00003760 BuildMI(BB, X86::MOV32rr, 1, getReg(I)).addReg(X86::ESP);
Chris Lattner065faeb2002-12-28 20:24:02 +00003761
Misha Brukman48196b32003-05-03 02:18:17 +00003762 // Inform the Frame Information that we have just allocated a variable-sized
Chris Lattner065faeb2002-12-28 20:24:02 +00003763 // object.
3764 F->getFrameInfo()->CreateVariableSizedObject();
Brian Gaeke20244b72002-12-12 15:33:40 +00003765}
Chris Lattner3e130a22003-01-13 00:32:26 +00003766
3767/// visitMallocInst - Malloc instructions are code generated into direct calls
3768/// to the library malloc.
3769///
3770void ISel::visitMallocInst(MallocInst &I) {
3771 unsigned AllocSize = TM.getTargetData().getTypeSize(I.getAllocatedType());
3772 unsigned Arg;
3773
3774 if (ConstantUInt *C = dyn_cast<ConstantUInt>(I.getOperand(0))) {
3775 Arg = getReg(ConstantUInt::get(Type::UIntTy, C->getValue() * AllocSize));
3776 } else {
3777 Arg = makeAnotherReg(Type::UIntTy);
Chris Lattnerb2acc512003-10-19 21:09:10 +00003778 unsigned Op0Reg = getReg(I.getOperand(0));
Chris Lattner3e130a22003-01-13 00:32:26 +00003779 MachineBasicBlock::iterator MBBI = BB->end();
Chris Lattnerb2acc512003-10-19 21:09:10 +00003780 doMultiplyConst(BB, MBBI, Arg, Type::UIntTy, Op0Reg, AllocSize);
Chris Lattner3e130a22003-01-13 00:32:26 +00003781 }
3782
3783 std::vector<ValueRecord> Args;
3784 Args.push_back(ValueRecord(Arg, Type::UIntTy));
3785 MachineInstr *TheCall = BuildMI(X86::CALLpcrel32,
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003786 1).addExternalSymbol("malloc", true);
Chris Lattner3e130a22003-01-13 00:32:26 +00003787 doCall(ValueRecord(getReg(I), I.getType()), TheCall, Args);
3788}
3789
3790
3791/// visitFreeInst - Free instructions are code gen'd to call the free libc
3792/// function.
3793///
3794void ISel::visitFreeInst(FreeInst &I) {
3795 std::vector<ValueRecord> Args;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00003796 Args.push_back(ValueRecord(I.getOperand(0)));
Chris Lattner3e130a22003-01-13 00:32:26 +00003797 MachineInstr *TheCall = BuildMI(X86::CALLpcrel32,
Misha Brukmanc8893fc2003-10-23 16:22:08 +00003798 1).addExternalSymbol("free", true);
Chris Lattner3e130a22003-01-13 00:32:26 +00003799 doCall(ValueRecord(0, Type::VoidTy), TheCall, Args);
3800}
3801
Chris Lattnerd281de22003-07-26 23:49:58 +00003802/// createX86SimpleInstructionSelector - This pass converts an LLVM function
Chris Lattnerb4f68ed2002-10-29 22:37:54 +00003803/// into a machine code representation is a very simple peep-hole fashion. The
Chris Lattner72614082002-10-25 22:55:53 +00003804/// generated code sucks but the implementation is nice and simple.
3805///
Chris Lattnerf70e0c22003-12-28 21:23:38 +00003806FunctionPass *llvm::createX86SimpleInstructionSelector(TargetMachine &TM) {
3807 return new ISel(TM);
Chris Lattner72614082002-10-25 22:55:53 +00003808}