blob: c243fa134efcc502b7e8b3c136fcb8724f04eae4 [file] [log] [blame]
Chris Lattner72614082002-10-25 22:55:53 +00001//===-- InstSelectSimple.cpp - A simple instruction selector for x86 ------===//
2//
Chris Lattner3e130a22003-01-13 00:32:26 +00003// This file defines a simple peephole instruction selector for the x86 target
Chris Lattner72614082002-10-25 22:55:53 +00004//
5//===----------------------------------------------------------------------===//
6
7#include "X86.h"
Chris Lattner055c9652002-10-29 21:05:24 +00008#include "X86InstrInfo.h"
Chris Lattner6fc3c522002-11-17 21:11:55 +00009#include "X86InstrBuilder.h"
Chris Lattner72614082002-10-25 22:55:53 +000010#include "llvm/Function.h"
Chris Lattner67580ed2003-05-13 20:21:19 +000011#include "llvm/Instructions.h"
Brian Gaeke20244b72002-12-12 15:33:40 +000012#include "llvm/DerivedTypes.h"
Chris Lattnerc5291f52002-10-27 21:16:59 +000013#include "llvm/Constants.h"
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000014#include "llvm/Pass.h"
Chris Lattnereca195e2003-05-08 19:44:13 +000015#include "llvm/Intrinsics.h"
Chris Lattner341a9372002-10-29 17:43:55 +000016#include "llvm/CodeGen/MachineFunction.h"
Misha Brukmand2cc0172002-11-20 00:58:23 +000017#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner94af4142002-12-25 05:13:53 +000018#include "llvm/CodeGen/SSARegMap.h"
Chris Lattneraa09b752002-12-28 21:08:28 +000019#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner3e130a22003-01-13 00:32:26 +000020#include "llvm/CodeGen/MachineConstantPool.h"
Misha Brukmand2cc0172002-11-20 00:58:23 +000021#include "llvm/Target/TargetMachine.h"
Misha Brukmand2cc0172002-11-20 00:58:23 +000022#include "llvm/Target/MRegisterInfo.h"
Chris Lattner67580ed2003-05-13 20:21:19 +000023#include "llvm/Support/InstVisitor.h"
Chris Lattner72614082002-10-25 22:55:53 +000024
Chris Lattner333b2fa2002-12-13 10:09:43 +000025/// BMI - A special BuildMI variant that takes an iterator to insert the
Chris Lattner8bdd1292003-04-25 21:58:54 +000026/// instruction at as well as a basic block. This is the version for when you
27/// have a destination register in mind.
Brian Gaeke71794c02002-12-13 11:22:48 +000028inline static MachineInstrBuilder BMI(MachineBasicBlock *MBB,
Chris Lattner333b2fa2002-12-13 10:09:43 +000029 MachineBasicBlock::iterator &I,
Chris Lattner8cc72d22003-06-03 15:41:58 +000030 int Opcode, unsigned NumOperands,
Chris Lattner333b2fa2002-12-13 10:09:43 +000031 unsigned DestReg) {
Chris Lattnerd7d38722002-12-13 13:04:04 +000032 assert(I >= MBB->begin() && I <= MBB->end() && "Bad iterator!");
Chris Lattner333b2fa2002-12-13 10:09:43 +000033 MachineInstr *MI = new MachineInstr(Opcode, NumOperands+1, true, true);
Chris Lattnere8f0d922002-12-24 00:03:11 +000034 I = MBB->insert(I, MI)+1;
Chris Lattner333b2fa2002-12-13 10:09:43 +000035 return MachineInstrBuilder(MI).addReg(DestReg, MOTy::Def);
36}
37
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000038/// BMI - A special BuildMI variant that takes an iterator to insert the
39/// instruction at as well as a basic block.
Brian Gaeke71794c02002-12-13 11:22:48 +000040inline static MachineInstrBuilder BMI(MachineBasicBlock *MBB,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000041 MachineBasicBlock::iterator &I,
Chris Lattner8cc72d22003-06-03 15:41:58 +000042 int Opcode, unsigned NumOperands) {
Chris Lattner8bdd1292003-04-25 21:58:54 +000043 assert(I >= MBB->begin() && I <= MBB->end() && "Bad iterator!");
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000044 MachineInstr *MI = new MachineInstr(Opcode, NumOperands, true, true);
Chris Lattnere8f0d922002-12-24 00:03:11 +000045 I = MBB->insert(I, MI)+1;
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000046 return MachineInstrBuilder(MI);
47}
48
Chris Lattner333b2fa2002-12-13 10:09:43 +000049
Chris Lattner72614082002-10-25 22:55:53 +000050namespace {
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000051 struct ISel : public FunctionPass, InstVisitor<ISel> {
52 TargetMachine &TM;
Chris Lattnereca195e2003-05-08 19:44:13 +000053 MachineFunction *F; // The function we are compiling into
54 MachineBasicBlock *BB; // The current MBB we are compiling
55 int VarArgsFrameIndex; // FrameIndex for start of varargs area
Chris Lattner72614082002-10-25 22:55:53 +000056
Chris Lattner72614082002-10-25 22:55:53 +000057 std::map<Value*, unsigned> RegMap; // Mapping between Val's and SSA Regs
58
Chris Lattner333b2fa2002-12-13 10:09:43 +000059 // MBBMap - Mapping between LLVM BB -> Machine BB
60 std::map<const BasicBlock*, MachineBasicBlock*> MBBMap;
61
Chris Lattner3e130a22003-01-13 00:32:26 +000062 ISel(TargetMachine &tm) : TM(tm), F(0), BB(0) {}
Chris Lattner72614082002-10-25 22:55:53 +000063
64 /// runOnFunction - Top level implementation of instruction selection for
65 /// the entire function.
66 ///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000067 bool runOnFunction(Function &Fn) {
Chris Lattner36b36032002-10-29 23:40:58 +000068 F = &MachineFunction::construct(&Fn, TM);
Chris Lattner333b2fa2002-12-13 10:09:43 +000069
Chris Lattner065faeb2002-12-28 20:24:02 +000070 // Create all of the machine basic blocks for the function...
Chris Lattner333b2fa2002-12-13 10:09:43 +000071 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
72 F->getBasicBlockList().push_back(MBBMap[I] = new MachineBasicBlock(I));
73
Chris Lattner14aa7fe2002-12-16 22:54:46 +000074 BB = &F->front();
Chris Lattnerdbd73722003-05-06 21:32:22 +000075
Chris Lattnerdbd73722003-05-06 21:32:22 +000076 // Copy incoming arguments off of the stack...
Chris Lattner065faeb2002-12-28 20:24:02 +000077 LoadArgumentsToVirtualRegs(Fn);
Chris Lattner14aa7fe2002-12-16 22:54:46 +000078
Chris Lattner333b2fa2002-12-13 10:09:43 +000079 // Instruction select everything except PHI nodes
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000080 visit(Fn);
Chris Lattner333b2fa2002-12-13 10:09:43 +000081
82 // Select the PHI nodes
83 SelectPHINodes();
84
Chris Lattner72614082002-10-25 22:55:53 +000085 RegMap.clear();
Chris Lattner333b2fa2002-12-13 10:09:43 +000086 MBBMap.clear();
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000087 F = 0;
Chris Lattner2a865b02003-07-26 23:05:37 +000088 // We always build a machine code representation for the function
89 return true;
Chris Lattner72614082002-10-25 22:55:53 +000090 }
91
Chris Lattnerf0eb7be2002-12-15 21:13:40 +000092 virtual const char *getPassName() const {
93 return "X86 Simple Instruction Selection";
94 }
95
Chris Lattner72614082002-10-25 22:55:53 +000096 /// visitBasicBlock - This method is called when we are visiting a new basic
Chris Lattner33f53b52002-10-29 20:48:56 +000097 /// block. This simply creates a new MachineBasicBlock to emit code into
98 /// and adds it to the current MachineFunction. Subsequent visit* for
99 /// instructions will be invoked for all instructions in the basic block.
Chris Lattner72614082002-10-25 22:55:53 +0000100 ///
101 void visitBasicBlock(BasicBlock &LLVM_BB) {
Chris Lattner333b2fa2002-12-13 10:09:43 +0000102 BB = MBBMap[&LLVM_BB];
Chris Lattner72614082002-10-25 22:55:53 +0000103 }
104
Chris Lattner065faeb2002-12-28 20:24:02 +0000105 /// LoadArgumentsToVirtualRegs - Load all of the arguments to this function
106 /// from the stack into virtual registers.
107 ///
108 void LoadArgumentsToVirtualRegs(Function &F);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000109
110 /// SelectPHINodes - Insert machine code to generate phis. This is tricky
111 /// because we have to generate our sources into the source basic blocks,
112 /// not the current one.
113 ///
114 void SelectPHINodes();
115
Chris Lattner72614082002-10-25 22:55:53 +0000116 // Visitation methods for various instructions. These methods simply emit
117 // fixed X86 code for each instruction.
118 //
Brian Gaekefa8d5712002-11-22 11:07:01 +0000119
120 // Control flow operators
Chris Lattner72614082002-10-25 22:55:53 +0000121 void visitReturnInst(ReturnInst &RI);
Chris Lattner2df035b2002-11-02 19:27:56 +0000122 void visitBranchInst(BranchInst &BI);
Chris Lattner3e130a22003-01-13 00:32:26 +0000123
124 struct ValueRecord {
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000125 Value *Val;
Chris Lattner3e130a22003-01-13 00:32:26 +0000126 unsigned Reg;
127 const Type *Ty;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000128 ValueRecord(unsigned R, const Type *T) : Val(0), Reg(R), Ty(T) {}
129 ValueRecord(Value *V) : Val(V), Reg(0), Ty(V->getType()) {}
Chris Lattner3e130a22003-01-13 00:32:26 +0000130 };
131 void doCall(const ValueRecord &Ret, MachineInstr *CallMI,
132 const std::vector<ValueRecord> &Args);
Brian Gaekefa8d5712002-11-22 11:07:01 +0000133 void visitCallInst(CallInst &I);
Chris Lattnereca195e2003-05-08 19:44:13 +0000134 void visitIntrinsicCall(LLVMIntrinsic::ID ID, CallInst &I);
Chris Lattnere2954c82002-11-02 20:04:26 +0000135
136 // Arithmetic operators
Chris Lattnerf01729e2002-11-02 20:54:46 +0000137 void visitSimpleBinary(BinaryOperator &B, unsigned OpcodeClass);
Chris Lattner68aad932002-11-02 20:13:22 +0000138 void visitAdd(BinaryOperator &B) { visitSimpleBinary(B, 0); }
139 void visitSub(BinaryOperator &B) { visitSimpleBinary(B, 1); }
Chris Lattner8a307e82002-12-16 19:32:50 +0000140 void doMultiply(MachineBasicBlock *MBB, MachineBasicBlock::iterator &MBBI,
Chris Lattner3e130a22003-01-13 00:32:26 +0000141 unsigned DestReg, const Type *DestTy,
142 unsigned Op0Reg, unsigned Op1Reg);
Chris Lattnerb2acc512003-10-19 21:09:10 +0000143 void doMultiplyConst(MachineBasicBlock *MBB,
144 MachineBasicBlock::iterator &MBBI,
145 unsigned DestReg, const Type *DestTy,
146 unsigned Op0Reg, unsigned Op1Val);
Chris Lattnerca9671d2002-11-02 20:28:58 +0000147 void visitMul(BinaryOperator &B);
Chris Lattnere2954c82002-11-02 20:04:26 +0000148
Chris Lattnerf01729e2002-11-02 20:54:46 +0000149 void visitDiv(BinaryOperator &B) { visitDivRem(B); }
150 void visitRem(BinaryOperator &B) { visitDivRem(B); }
151 void visitDivRem(BinaryOperator &B);
152
Chris Lattnere2954c82002-11-02 20:04:26 +0000153 // Bitwise operators
Chris Lattner68aad932002-11-02 20:13:22 +0000154 void visitAnd(BinaryOperator &B) { visitSimpleBinary(B, 2); }
155 void visitOr (BinaryOperator &B) { visitSimpleBinary(B, 3); }
156 void visitXor(BinaryOperator &B) { visitSimpleBinary(B, 4); }
Chris Lattnere2954c82002-11-02 20:04:26 +0000157
Chris Lattner6d40c192003-01-16 16:43:00 +0000158 // Comparison operators...
159 void visitSetCondInst(SetCondInst &I);
Chris Lattnerb2acc512003-10-19 21:09:10 +0000160 unsigned EmitComparison(unsigned OpNum, Value *Op0, Value *Op1,
161 MachineBasicBlock *MBB,
162 MachineBasicBlock::iterator &MBBI);
163
Chris Lattner6fc3c522002-11-17 21:11:55 +0000164 // Memory Instructions
165 void visitLoadInst(LoadInst &I);
166 void visitStoreInst(StoreInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000167 void visitGetElementPtrInst(GetElementPtrInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000168 void visitAllocaInst(AllocaInst &I);
Chris Lattner3e130a22003-01-13 00:32:26 +0000169 void visitMallocInst(MallocInst &I);
170 void visitFreeInst(FreeInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000171
Chris Lattnere2954c82002-11-02 20:04:26 +0000172 // Other operators
Brian Gaekea1719c92002-10-31 23:03:59 +0000173 void visitShiftInst(ShiftInst &I);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000174 void visitPHINode(PHINode &I) {} // PHI nodes handled by second pass
Brian Gaekefa8d5712002-11-22 11:07:01 +0000175 void visitCastInst(CastInst &I);
Chris Lattner73815062003-10-18 05:56:40 +0000176 void visitVANextInst(VANextInst &I);
177 void visitVAArgInst(VAArgInst &I);
Chris Lattner72614082002-10-25 22:55:53 +0000178
179 void visitInstruction(Instruction &I) {
180 std::cerr << "Cannot instruction select: " << I;
181 abort();
182 }
183
Brian Gaeke95780cc2002-12-13 07:56:18 +0000184 /// promote32 - Make a value 32-bits wide, and put it somewhere.
Chris Lattner3e130a22003-01-13 00:32:26 +0000185 ///
186 void promote32(unsigned targetReg, const ValueRecord &VR);
187
188 /// EmitByteSwap - Byteswap SrcReg into DestReg.
189 ///
190 void EmitByteSwap(unsigned DestReg, unsigned SrcReg, unsigned Class);
Brian Gaeke95780cc2002-12-13 07:56:18 +0000191
Chris Lattner3e130a22003-01-13 00:32:26 +0000192 /// emitGEPOperation - Common code shared between visitGetElementPtrInst and
193 /// constant expression GEP support.
194 ///
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000195 void emitGEPOperation(MachineBasicBlock *BB, MachineBasicBlock::iterator&IP,
Chris Lattner333b2fa2002-12-13 10:09:43 +0000196 Value *Src, User::op_iterator IdxBegin,
Chris Lattnerc0812d82002-12-13 06:56:29 +0000197 User::op_iterator IdxEnd, unsigned TargetReg);
198
Chris Lattner548f61d2003-04-23 17:22:12 +0000199 /// emitCastOperation - Common code shared between visitCastInst and
200 /// constant expression cast support.
201 void emitCastOperation(MachineBasicBlock *BB,MachineBasicBlock::iterator&IP,
202 Value *Src, const Type *DestTy, unsigned TargetReg);
203
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000204 /// emitSimpleBinaryOperation - Common code shared between visitSimpleBinary
205 /// and constant expression support.
206 void emitSimpleBinaryOperation(MachineBasicBlock *BB,
207 MachineBasicBlock::iterator &IP,
208 Value *Op0, Value *Op1,
209 unsigned OperatorClass, unsigned TargetReg);
210
Chris Lattner58c41fe2003-08-24 19:19:47 +0000211 /// emitSetCCOperation - Common code shared between visitSetCondInst and
212 /// constant expression support.
213 void emitSetCCOperation(MachineBasicBlock *BB,
214 MachineBasicBlock::iterator &IP,
215 Value *Op0, Value *Op1, unsigned Opcode,
216 unsigned TargetReg);
217
218
Chris Lattnerc5291f52002-10-27 21:16:59 +0000219 /// copyConstantToRegister - Output the instructions required to put the
220 /// specified constant into the specified register.
221 ///
Chris Lattner8a307e82002-12-16 19:32:50 +0000222 void copyConstantToRegister(MachineBasicBlock *MBB,
223 MachineBasicBlock::iterator &MBBI,
224 Constant *C, unsigned Reg);
Chris Lattnerc5291f52002-10-27 21:16:59 +0000225
Chris Lattner3e130a22003-01-13 00:32:26 +0000226 /// makeAnotherReg - This method returns the next register number we haven't
227 /// yet used.
228 ///
229 /// Long values are handled somewhat specially. They are always allocated
230 /// as pairs of 32 bit integer values. The register number returned is the
231 /// lower 32 bits of the long value, and the regNum+1 is the upper 32 bits
232 /// of the long value.
233 ///
Chris Lattnerc0812d82002-12-13 06:56:29 +0000234 unsigned makeAnotherReg(const Type *Ty) {
Chris Lattner7db1fa92003-07-30 05:33:48 +0000235 assert(dynamic_cast<const X86RegisterInfo*>(TM.getRegisterInfo()) &&
236 "Current target doesn't have X86 reg info??");
237 const X86RegisterInfo *MRI =
238 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Chris Lattner3e130a22003-01-13 00:32:26 +0000239 if (Ty == Type::LongTy || Ty == Type::ULongTy) {
Chris Lattner7db1fa92003-07-30 05:33:48 +0000240 const TargetRegisterClass *RC = MRI->getRegClassForType(Type::IntTy);
Chris Lattner3e130a22003-01-13 00:32:26 +0000241 // Create the lower part
242 F->getSSARegMap()->createVirtualRegister(RC);
243 // Create the upper part.
244 return F->getSSARegMap()->createVirtualRegister(RC)-1;
245 }
246
Chris Lattnerc0812d82002-12-13 06:56:29 +0000247 // Add the mapping of regnumber => reg class to MachineFunction
Chris Lattner7db1fa92003-07-30 05:33:48 +0000248 const TargetRegisterClass *RC = MRI->getRegClassForType(Ty);
Chris Lattner3e130a22003-01-13 00:32:26 +0000249 return F->getSSARegMap()->createVirtualRegister(RC);
Brian Gaeke20244b72002-12-12 15:33:40 +0000250 }
251
Chris Lattner72614082002-10-25 22:55:53 +0000252 /// getReg - This method turns an LLVM value into a register number. This
253 /// is guaranteed to produce the same register number for a particular value
254 /// every time it is queried.
255 ///
256 unsigned getReg(Value &V) { return getReg(&V); } // Allow references
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000257 unsigned getReg(Value *V) {
258 // Just append to the end of the current bb.
259 MachineBasicBlock::iterator It = BB->end();
260 return getReg(V, BB, It);
261 }
Brian Gaeke71794c02002-12-13 11:22:48 +0000262 unsigned getReg(Value *V, MachineBasicBlock *MBB,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000263 MachineBasicBlock::iterator &IPt) {
Chris Lattner72614082002-10-25 22:55:53 +0000264 unsigned &Reg = RegMap[V];
Misha Brukmand2cc0172002-11-20 00:58:23 +0000265 if (Reg == 0) {
Chris Lattnerc0812d82002-12-13 06:56:29 +0000266 Reg = makeAnotherReg(V->getType());
Misha Brukmand2cc0172002-11-20 00:58:23 +0000267 RegMap[V] = Reg;
Misha Brukmand2cc0172002-11-20 00:58:23 +0000268 }
Chris Lattner72614082002-10-25 22:55:53 +0000269
Chris Lattner6f8fd252002-10-27 21:23:43 +0000270 // If this operand is a constant, emit the code to copy the constant into
271 // the register here...
272 //
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000273 if (Constant *C = dyn_cast<Constant>(V)) {
Chris Lattner8a307e82002-12-16 19:32:50 +0000274 copyConstantToRegister(MBB, IPt, C, Reg);
Chris Lattner14aa7fe2002-12-16 22:54:46 +0000275 RegMap.erase(V); // Assign a new name to this constant if ref'd again
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000276 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
277 // Move the address of the global into the register
Chris Lattner3e130a22003-01-13 00:32:26 +0000278 BMI(MBB, IPt, X86::MOVir32, 1, Reg).addGlobalAddress(GV);
Chris Lattner14aa7fe2002-12-16 22:54:46 +0000279 RegMap.erase(V); // Assign a new name to this address if ref'd again
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000280 }
Chris Lattnerc5291f52002-10-27 21:16:59 +0000281
Chris Lattner72614082002-10-25 22:55:53 +0000282 return Reg;
283 }
Chris Lattner72614082002-10-25 22:55:53 +0000284 };
285}
286
Chris Lattner43189d12002-11-17 20:07:45 +0000287/// TypeClass - Used by the X86 backend to group LLVM types by their basic X86
288/// Representation.
289///
290enum TypeClass {
Chris Lattner94af4142002-12-25 05:13:53 +0000291 cByte, cShort, cInt, cFP, cLong
Chris Lattner43189d12002-11-17 20:07:45 +0000292};
293
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000294/// getClass - Turn a primitive type into a "class" number which is based on the
295/// size of the type, and whether or not it is floating point.
296///
Chris Lattner43189d12002-11-17 20:07:45 +0000297static inline TypeClass getClass(const Type *Ty) {
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000298 switch (Ty->getPrimitiveID()) {
299 case Type::SByteTyID:
Chris Lattner43189d12002-11-17 20:07:45 +0000300 case Type::UByteTyID: return cByte; // Byte operands are class #0
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000301 case Type::ShortTyID:
Chris Lattner43189d12002-11-17 20:07:45 +0000302 case Type::UShortTyID: return cShort; // Short operands are class #1
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000303 case Type::IntTyID:
304 case Type::UIntTyID:
Chris Lattner43189d12002-11-17 20:07:45 +0000305 case Type::PointerTyID: return cInt; // Int's and pointers are class #2
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000306
Chris Lattner94af4142002-12-25 05:13:53 +0000307 case Type::FloatTyID:
308 case Type::DoubleTyID: return cFP; // Floating Point is #3
Chris Lattner3e130a22003-01-13 00:32:26 +0000309
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000310 case Type::LongTyID:
Chris Lattner3e130a22003-01-13 00:32:26 +0000311 case Type::ULongTyID: return cLong; // Longs are class #4
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000312 default:
313 assert(0 && "Invalid type to getClass!");
Chris Lattner43189d12002-11-17 20:07:45 +0000314 return cByte; // not reached
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000315 }
316}
Chris Lattnerc5291f52002-10-27 21:16:59 +0000317
Chris Lattner6b993cc2002-12-15 08:02:15 +0000318// getClassB - Just like getClass, but treat boolean values as bytes.
319static inline TypeClass getClassB(const Type *Ty) {
320 if (Ty == Type::BoolTy) return cByte;
321 return getClass(Ty);
322}
323
Chris Lattner06925362002-11-17 21:56:38 +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 +0000328void ISel::copyConstantToRegister(MachineBasicBlock *MBB,
329 MachineBasicBlock::iterator &IP,
330 Constant *C, unsigned R) {
Chris Lattnerc0812d82002-12-13 06:56:29 +0000331 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000332 unsigned Class = 0;
333 switch (CE->getOpcode()) {
334 case Instruction::GetElementPtr:
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000335 emitGEPOperation(MBB, IP, CE->getOperand(0),
Chris Lattner333b2fa2002-12-13 10:09:43 +0000336 CE->op_begin()+1, CE->op_end(), R);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000337 return;
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000338 case Instruction::Cast:
Chris Lattner548f61d2003-04-23 17:22:12 +0000339 emitCastOperation(MBB, IP, CE->getOperand(0), CE->getType(), R);
Chris Lattner4b12cde2003-04-21 21:33:44 +0000340 return;
Chris Lattnerc0812d82002-12-13 06:56:29 +0000341
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000342 case Instruction::Xor: ++Class; // FALL THROUGH
343 case Instruction::Or: ++Class; // FALL THROUGH
344 case Instruction::And: ++Class; // FALL THROUGH
345 case Instruction::Sub: ++Class; // FALL THROUGH
346 case Instruction::Add:
347 emitSimpleBinaryOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
348 Class, R);
349 return;
350
Chris Lattner58c41fe2003-08-24 19:19:47 +0000351 case Instruction::SetNE:
352 case Instruction::SetEQ:
353 case Instruction::SetLT:
354 case Instruction::SetGT:
355 case Instruction::SetLE:
356 case Instruction::SetGE:
357 emitSetCCOperation(MBB, IP, CE->getOperand(0), CE->getOperand(1),
358 CE->getOpcode(), R);
359 return;
360
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000361 default:
362 std::cerr << "Offending expr: " << C << "\n";
Chris Lattnerb2acc512003-10-19 21:09:10 +0000363 assert(0 && "Constant expression not yet handled!\n");
Chris Lattnerb515f6d2003-05-08 20:49:25 +0000364 }
Brian Gaeke20244b72002-12-12 15:33:40 +0000365 }
Chris Lattnerc5291f52002-10-27 21:16:59 +0000366
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000367 if (C->getType()->isIntegral()) {
Chris Lattner6b993cc2002-12-15 08:02:15 +0000368 unsigned Class = getClassB(C->getType());
Chris Lattner3e130a22003-01-13 00:32:26 +0000369
370 if (Class == cLong) {
371 // Copy the value into the register pair.
Chris Lattnerc07736a2003-07-23 15:22:26 +0000372 uint64_t Val = cast<ConstantInt>(C)->getRawValue();
Chris Lattner3e130a22003-01-13 00:32:26 +0000373 BMI(MBB, IP, X86::MOVir32, 1, R).addZImm(Val & 0xFFFFFFFF);
374 BMI(MBB, IP, X86::MOVir32, 1, R+1).addZImm(Val >> 32);
375 return;
376 }
377
Chris Lattner94af4142002-12-25 05:13:53 +0000378 assert(Class <= cInt && "Type not handled yet!");
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000379
380 static const unsigned IntegralOpcodeTab[] = {
381 X86::MOVir8, X86::MOVir16, X86::MOVir32
382 };
383
Chris Lattner6b993cc2002-12-15 08:02:15 +0000384 if (C->getType() == Type::BoolTy) {
385 BMI(MBB, IP, X86::MOVir8, 1, R).addZImm(C == ConstantBool::True);
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000386 } else {
Chris Lattnerc07736a2003-07-23 15:22:26 +0000387 ConstantInt *CI = cast<ConstantInt>(C);
388 BMI(MBB, IP, IntegralOpcodeTab[Class], 1, R).addZImm(CI->getRawValue());
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000389 }
Chris Lattner94af4142002-12-25 05:13:53 +0000390 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
391 double Value = CFP->getValue();
392 if (Value == +0.0)
393 BMI(MBB, IP, X86::FLD0, 0, R);
394 else if (Value == +1.0)
395 BMI(MBB, IP, X86::FLD1, 0, R);
396 else {
Chris Lattner3e130a22003-01-13 00:32:26 +0000397 // Otherwise we need to spill the constant to memory...
398 MachineConstantPool *CP = F->getConstantPool();
399 unsigned CPI = CP->getConstantPoolIndex(CFP);
Chris Lattner6c09db22003-10-20 04:11:23 +0000400 const Type *Ty = CFP->getType();
401
402 assert(Ty == Type::FloatTy || Ty == Type::DoubleTy && "Unknown FP type!");
403 unsigned LoadOpcode = Ty == Type::FloatTy ? X86::FLDr32 : X86::FLDr64;
404 addConstantPoolReference(BMI(MBB, IP, LoadOpcode, 4, R), CPI);
Chris Lattner94af4142002-12-25 05:13:53 +0000405 }
406
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000407 } else if (isa<ConstantPointerNull>(C)) {
Brian Gaeke20244b72002-12-12 15:33:40 +0000408 // Copy zero (null pointer) to the register.
Brian Gaeke71794c02002-12-13 11:22:48 +0000409 BMI(MBB, IP, X86::MOVir32, 1, R).addZImm(0);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000410 } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(C)) {
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000411 unsigned SrcReg = getReg(CPR->getValue(), MBB, IP);
Brian Gaeke71794c02002-12-13 11:22:48 +0000412 BMI(MBB, IP, X86::MOVrr32, 1, R).addReg(SrcReg);
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000413 } else {
Brian Gaeke20244b72002-12-12 15:33:40 +0000414 std::cerr << "Offending constant: " << C << "\n";
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000415 assert(0 && "Type not handled yet!");
Chris Lattnerc5291f52002-10-27 21:16:59 +0000416 }
417}
418
Chris Lattner065faeb2002-12-28 20:24:02 +0000419/// LoadArgumentsToVirtualRegs - Load all of the arguments to this function from
420/// the stack into virtual registers.
421///
422void ISel::LoadArgumentsToVirtualRegs(Function &Fn) {
423 // Emit instructions to load the arguments... On entry to a function on the
424 // X86, the stack frame looks like this:
425 //
426 // [ESP] -- return address
Chris Lattner3e130a22003-01-13 00:32:26 +0000427 // [ESP + 4] -- first argument (leftmost lexically)
428 // [ESP + 8] -- second argument, if first argument is four bytes in size
Chris Lattner065faeb2002-12-28 20:24:02 +0000429 // ...
430 //
Chris Lattnerf158da22003-01-16 02:20:12 +0000431 unsigned ArgOffset = 0; // Frame mechanisms handle retaddr slot
Chris Lattneraa09b752002-12-28 21:08:28 +0000432 MachineFrameInfo *MFI = F->getFrameInfo();
Chris Lattner065faeb2002-12-28 20:24:02 +0000433
434 for (Function::aiterator I = Fn.abegin(), E = Fn.aend(); I != E; ++I) {
435 unsigned Reg = getReg(*I);
436
Chris Lattner065faeb2002-12-28 20:24:02 +0000437 int FI; // Frame object index
Chris Lattner065faeb2002-12-28 20:24:02 +0000438 switch (getClassB(I->getType())) {
439 case cByte:
Chris Lattneraa09b752002-12-28 21:08:28 +0000440 FI = MFI->CreateFixedObject(1, ArgOffset);
Chris Lattner065faeb2002-12-28 20:24:02 +0000441 addFrameReference(BuildMI(BB, X86::MOVmr8, 4, Reg), FI);
442 break;
443 case cShort:
Chris Lattneraa09b752002-12-28 21:08:28 +0000444 FI = MFI->CreateFixedObject(2, ArgOffset);
Chris Lattner065faeb2002-12-28 20:24:02 +0000445 addFrameReference(BuildMI(BB, X86::MOVmr16, 4, Reg), FI);
446 break;
447 case cInt:
Chris Lattneraa09b752002-12-28 21:08:28 +0000448 FI = MFI->CreateFixedObject(4, ArgOffset);
Chris Lattner065faeb2002-12-28 20:24:02 +0000449 addFrameReference(BuildMI(BB, X86::MOVmr32, 4, Reg), FI);
450 break;
Chris Lattner3e130a22003-01-13 00:32:26 +0000451 case cLong:
452 FI = MFI->CreateFixedObject(8, ArgOffset);
453 addFrameReference(BuildMI(BB, X86::MOVmr32, 4, Reg), FI);
454 addFrameReference(BuildMI(BB, X86::MOVmr32, 4, Reg+1), FI, 4);
455 ArgOffset += 4; // longs require 4 additional bytes
456 break;
Chris Lattner065faeb2002-12-28 20:24:02 +0000457 case cFP:
458 unsigned Opcode;
459 if (I->getType() == Type::FloatTy) {
460 Opcode = X86::FLDr32;
Chris Lattneraa09b752002-12-28 21:08:28 +0000461 FI = MFI->CreateFixedObject(4, ArgOffset);
Chris Lattner065faeb2002-12-28 20:24:02 +0000462 } else {
463 Opcode = X86::FLDr64;
Chris Lattneraa09b752002-12-28 21:08:28 +0000464 FI = MFI->CreateFixedObject(8, ArgOffset);
Chris Lattner3e130a22003-01-13 00:32:26 +0000465 ArgOffset += 4; // doubles require 4 additional bytes
Chris Lattner065faeb2002-12-28 20:24:02 +0000466 }
467 addFrameReference(BuildMI(BB, Opcode, 4, Reg), FI);
468 break;
469 default:
470 assert(0 && "Unhandled argument type!");
471 }
Chris Lattner3e130a22003-01-13 00:32:26 +0000472 ArgOffset += 4; // Each argument takes at least 4 bytes on the stack...
Chris Lattner065faeb2002-12-28 20:24:02 +0000473 }
Chris Lattnereca195e2003-05-08 19:44:13 +0000474
475 // If the function takes variable number of arguments, add a frame offset for
476 // the start of the first vararg value... this is used to expand
477 // llvm.va_start.
478 if (Fn.getFunctionType()->isVarArg())
479 VarArgsFrameIndex = MFI->CreateFixedObject(1, ArgOffset);
Chris Lattner065faeb2002-12-28 20:24:02 +0000480}
481
482
Chris Lattner333b2fa2002-12-13 10:09:43 +0000483/// SelectPHINodes - Insert machine code to generate phis. This is tricky
484/// because we have to generate our sources into the source basic blocks, not
485/// the current one.
486///
487void ISel::SelectPHINodes() {
Chris Lattner3501fea2003-01-14 22:00:31 +0000488 const TargetInstrInfo &TII = TM.getInstrInfo();
Chris Lattner333b2fa2002-12-13 10:09:43 +0000489 const Function &LF = *F->getFunction(); // The LLVM function...
490 for (Function::const_iterator I = LF.begin(), E = LF.end(); I != E; ++I) {
491 const BasicBlock *BB = I;
492 MachineBasicBlock *MBB = MBBMap[I];
493
494 // Loop over all of the PHI nodes in the LLVM basic block...
495 unsigned NumPHIs = 0;
496 for (BasicBlock::const_iterator I = BB->begin();
Chris Lattnera81fc682003-10-19 00:26:11 +0000497 PHINode *PN = const_cast<PHINode*>(dyn_cast<PHINode>(I)); ++I) {
Chris Lattner3e130a22003-01-13 00:32:26 +0000498
Chris Lattner333b2fa2002-12-13 10:09:43 +0000499 // Create a new machine instr PHI node, and insert it.
Chris Lattner3e130a22003-01-13 00:32:26 +0000500 unsigned PHIReg = getReg(*PN);
501 MachineInstr *PhiMI = BuildMI(X86::PHI, PN->getNumOperands(), PHIReg);
502 MBB->insert(MBB->begin()+NumPHIs++, PhiMI);
503
504 MachineInstr *LongPhiMI = 0;
505 if (PN->getType() == Type::LongTy || PN->getType() == Type::ULongTy) {
506 LongPhiMI = BuildMI(X86::PHI, PN->getNumOperands(), PHIReg+1);
507 MBB->insert(MBB->begin()+NumPHIs++, LongPhiMI);
508 }
Chris Lattner333b2fa2002-12-13 10:09:43 +0000509
Chris Lattnera6e73f12003-05-12 14:22:21 +0000510 // PHIValues - Map of blocks to incoming virtual registers. We use this
511 // so that we only initialize one incoming value for a particular block,
512 // even if the block has multiple entries in the PHI node.
513 //
514 std::map<MachineBasicBlock*, unsigned> PHIValues;
515
Chris Lattner333b2fa2002-12-13 10:09:43 +0000516 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
517 MachineBasicBlock *PredMBB = MBBMap[PN->getIncomingBlock(i)];
Chris Lattnera6e73f12003-05-12 14:22:21 +0000518 unsigned ValReg;
519 std::map<MachineBasicBlock*, unsigned>::iterator EntryIt =
520 PHIValues.lower_bound(PredMBB);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000521
Chris Lattnera6e73f12003-05-12 14:22:21 +0000522 if (EntryIt != PHIValues.end() && EntryIt->first == PredMBB) {
523 // We already inserted an initialization of the register for this
524 // predecessor. Recycle it.
525 ValReg = EntryIt->second;
526
527 } else {
Chris Lattnera81fc682003-10-19 00:26:11 +0000528 // Get the incoming value into a virtual register.
Chris Lattnera6e73f12003-05-12 14:22:21 +0000529 //
Chris Lattnera81fc682003-10-19 00:26:11 +0000530 Value *Val = PN->getIncomingValue(i);
531
532 // If this is a constant or GlobalValue, we may have to insert code
533 // into the basic block to compute it into a virtual register.
534 if (isa<Constant>(Val) || isa<GlobalValue>(Val)) {
535 // Because we don't want to clobber any values which might be in
536 // physical registers with the computation of this constant (which
537 // might be arbitrarily complex if it is a constant expression),
538 // just insert the computation at the top of the basic block.
539 MachineBasicBlock::iterator PI = PredMBB->begin();
540
541 // Skip over any PHI nodes though!
542 while (PI != PredMBB->end() && (*PI)->getOpcode() == X86::PHI)
543 ++PI;
544
545 ValReg = getReg(Val, PredMBB, PI);
546 } else {
547 ValReg = getReg(Val);
548 }
Chris Lattnera6e73f12003-05-12 14:22:21 +0000549
550 // Remember that we inserted a value for this PHI for this predecessor
551 PHIValues.insert(EntryIt, std::make_pair(PredMBB, ValReg));
552 }
553
Chris Lattner3e130a22003-01-13 00:32:26 +0000554 PhiMI->addRegOperand(ValReg);
555 PhiMI->addMachineBasicBlockOperand(PredMBB);
556 if (LongPhiMI) {
557 LongPhiMI->addRegOperand(ValReg+1);
558 LongPhiMI->addMachineBasicBlockOperand(PredMBB);
559 }
Chris Lattner333b2fa2002-12-13 10:09:43 +0000560 }
561 }
562 }
563}
564
Chris Lattner6d40c192003-01-16 16:43:00 +0000565// canFoldSetCCIntoBranch - Return the setcc instruction if we can fold it into
566// the conditional branch instruction which is the only user of the cc
567// instruction. This is the case if the conditional branch is the only user of
568// the setcc, and if the setcc is in the same basic block as the conditional
569// branch. We also don't handle long arguments below, so we reject them here as
570// well.
571//
572static SetCondInst *canFoldSetCCIntoBranch(Value *V) {
573 if (SetCondInst *SCI = dyn_cast<SetCondInst>(V))
Chris Lattnerfd059242003-10-15 16:48:29 +0000574 if (SCI->hasOneUse() && isa<BranchInst>(SCI->use_back()) &&
Chris Lattner6d40c192003-01-16 16:43:00 +0000575 SCI->getParent() == cast<BranchInst>(SCI->use_back())->getParent()) {
576 const Type *Ty = SCI->getOperand(0)->getType();
577 if (Ty != Type::LongTy && Ty != Type::ULongTy)
578 return SCI;
579 }
580 return 0;
581}
Chris Lattner333b2fa2002-12-13 10:09:43 +0000582
Chris Lattner6d40c192003-01-16 16:43:00 +0000583// Return a fixed numbering for setcc instructions which does not depend on the
584// order of the opcodes.
585//
586static unsigned getSetCCNumber(unsigned Opcode) {
587 switch(Opcode) {
588 default: assert(0 && "Unknown setcc instruction!");
589 case Instruction::SetEQ: return 0;
590 case Instruction::SetNE: return 1;
591 case Instruction::SetLT: return 2;
Chris Lattner55f6fab2003-01-16 18:07:23 +0000592 case Instruction::SetGE: return 3;
593 case Instruction::SetGT: return 4;
594 case Instruction::SetLE: return 5;
Chris Lattner6d40c192003-01-16 16:43:00 +0000595 }
596}
Chris Lattner06925362002-11-17 21:56:38 +0000597
Chris Lattner6d40c192003-01-16 16:43:00 +0000598// LLVM -> X86 signed X86 unsigned
599// ----- ---------- ------------
600// seteq -> sete sete
601// setne -> setne setne
602// setlt -> setl setb
Chris Lattner55f6fab2003-01-16 18:07:23 +0000603// setge -> setge setae
Chris Lattner6d40c192003-01-16 16:43:00 +0000604// setgt -> setg seta
605// setle -> setle setbe
Chris Lattnerb2acc512003-10-19 21:09:10 +0000606// ----
607// sets // Used by comparison with 0 optimization
608// setns
609static const unsigned SetCCOpcodeTab[2][8] = {
610 { X86::SETEr, X86::SETNEr, X86::SETBr, X86::SETAEr, X86::SETAr, X86::SETBEr,
611 0, 0 },
612 { X86::SETEr, X86::SETNEr, X86::SETLr, X86::SETGEr, X86::SETGr, X86::SETLEr,
613 X86::SETSr, X86::SETNSr },
Chris Lattner6d40c192003-01-16 16:43:00 +0000614};
615
Chris Lattnerb2acc512003-10-19 21:09:10 +0000616// EmitComparison - This function emits a comparison of the two operands,
617// returning the extended setcc code to use.
618unsigned ISel::EmitComparison(unsigned OpNum, Value *Op0, Value *Op1,
619 MachineBasicBlock *MBB,
620 MachineBasicBlock::iterator &IP) {
Brian Gaeke1749d632002-11-07 17:59:21 +0000621 // The arguments are already supposed to be of the same type.
Chris Lattner6d40c192003-01-16 16:43:00 +0000622 const Type *CompTy = Op0->getType();
Chris Lattner3e130a22003-01-13 00:32:26 +0000623 unsigned Class = getClassB(CompTy);
Chris Lattner58c41fe2003-08-24 19:19:47 +0000624 unsigned Op0r = getReg(Op0, MBB, IP);
Chris Lattner333864d2003-06-05 19:30:30 +0000625
626 // Special case handling of: cmp R, i
627 if (Class == cByte || Class == cShort || Class == cInt)
628 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnerc07736a2003-07-23 15:22:26 +0000629 uint64_t Op1v = cast<ConstantInt>(CI)->getRawValue();
630
Chris Lattner333864d2003-06-05 19:30:30 +0000631 // Mask off any upper bits of the constant, if there are any...
632 Op1v &= (1ULL << (8 << Class)) - 1;
633
Chris Lattnerb2acc512003-10-19 21:09:10 +0000634 // If this is a comparison against zero, emit more efficient code. We
635 // can't handle unsigned comparisons against zero unless they are == or
636 // !=. These should have been strength reduced already anyway.
637 if (Op1v == 0 && (CompTy->isSigned() || OpNum < 2)) {
638 static const unsigned TESTTab[] = {
639 X86::TESTrr8, X86::TESTrr16, X86::TESTrr32
640 };
641 BMI(MBB, IP, TESTTab[Class], 2).addReg(Op0r).addReg(Op0r);
642
643 if (OpNum == 2) return 6; // Map jl -> js
644 if (OpNum == 3) return 7; // Map jg -> jns
645 return OpNum;
Chris Lattner333864d2003-06-05 19:30:30 +0000646 }
Chris Lattnerb2acc512003-10-19 21:09:10 +0000647
648 static const unsigned CMPTab[] = {
649 X86::CMPri8, X86::CMPri16, X86::CMPri32
650 };
651
652 BMI(MBB, IP, CMPTab[Class], 2).addReg(Op0r).addZImm(Op1v);
653 return OpNum;
Chris Lattner333864d2003-06-05 19:30:30 +0000654 }
655
Chris Lattner58c41fe2003-08-24 19:19:47 +0000656 unsigned Op1r = getReg(Op1, MBB, IP);
Chris Lattner3e130a22003-01-13 00:32:26 +0000657 switch (Class) {
658 default: assert(0 && "Unknown type class!");
659 // Emit: cmp <var1>, <var2> (do the comparison). We can
660 // compare 8-bit with 8-bit, 16-bit with 16-bit, 32-bit with
661 // 32-bit.
662 case cByte:
Chris Lattner58c41fe2003-08-24 19:19:47 +0000663 BMI(MBB, IP, X86::CMPrr8, 2).addReg(Op0r).addReg(Op1r);
Chris Lattner3e130a22003-01-13 00:32:26 +0000664 break;
665 case cShort:
Chris Lattner58c41fe2003-08-24 19:19:47 +0000666 BMI(MBB, IP, X86::CMPrr16, 2).addReg(Op0r).addReg(Op1r);
Chris Lattner3e130a22003-01-13 00:32:26 +0000667 break;
668 case cInt:
Chris Lattner58c41fe2003-08-24 19:19:47 +0000669 BMI(MBB, IP, X86::CMPrr32, 2).addReg(Op0r).addReg(Op1r);
Chris Lattner3e130a22003-01-13 00:32:26 +0000670 break;
671 case cFP:
Chris Lattner58c41fe2003-08-24 19:19:47 +0000672 BMI(MBB, IP, X86::FpUCOM, 2).addReg(Op0r).addReg(Op1r);
673 BMI(MBB, IP, X86::FNSTSWr8, 0);
674 BMI(MBB, IP, X86::SAHF, 1);
Chris Lattner3e130a22003-01-13 00:32:26 +0000675 break;
676
677 case cLong:
678 if (OpNum < 2) { // seteq, setne
679 unsigned LoTmp = makeAnotherReg(Type::IntTy);
680 unsigned HiTmp = makeAnotherReg(Type::IntTy);
681 unsigned FinalTmp = makeAnotherReg(Type::IntTy);
Chris Lattner58c41fe2003-08-24 19:19:47 +0000682 BMI(MBB, IP, X86::XORrr32, 2, LoTmp).addReg(Op0r).addReg(Op1r);
683 BMI(MBB, IP, X86::XORrr32, 2, HiTmp).addReg(Op0r+1).addReg(Op1r+1);
684 BMI(MBB, IP, X86::ORrr32, 2, FinalTmp).addReg(LoTmp).addReg(HiTmp);
Chris Lattner3e130a22003-01-13 00:32:26 +0000685 break; // Allow the sete or setne to be generated from flags set by OR
686 } else {
687 // Emit a sequence of code which compares the high and low parts once
688 // each, then uses a conditional move to handle the overflow case. For
689 // example, a setlt for long would generate code like this:
690 //
691 // AL = lo(op1) < lo(op2) // Signedness depends on operands
692 // BL = hi(op1) < hi(op2) // Always unsigned comparison
693 // dest = hi(op1) == hi(op2) ? AL : BL;
694 //
695
Chris Lattner6d40c192003-01-16 16:43:00 +0000696 // FIXME: This would be much better if we had hierarchical register
Chris Lattner3e130a22003-01-13 00:32:26 +0000697 // classes! Until then, hardcode registers so that we can deal with their
698 // aliases (because we don't have conditional byte moves).
699 //
Chris Lattner58c41fe2003-08-24 19:19:47 +0000700 BMI(MBB, IP, X86::CMPrr32, 2).addReg(Op0r).addReg(Op1r);
701 BMI(MBB, IP, SetCCOpcodeTab[0][OpNum], 0, X86::AL);
702 BMI(MBB, IP, X86::CMPrr32, 2).addReg(Op0r+1).addReg(Op1r+1);
Chris Lattnerb2acc512003-10-19 21:09:10 +0000703 BMI(MBB, IP, SetCCOpcodeTab[CompTy->isSigned()][OpNum], 0, X86::BL);
Chris Lattner58c41fe2003-08-24 19:19:47 +0000704 BMI(MBB, IP, X86::IMPLICIT_DEF, 0, X86::BH);
705 BMI(MBB, IP, X86::IMPLICIT_DEF, 0, X86::AH);
706 BMI(MBB, IP, X86::CMOVErr16, 2, X86::BX).addReg(X86::BX).addReg(X86::AX);
Chris Lattner6d40c192003-01-16 16:43:00 +0000707 // NOTE: visitSetCondInst knows that the value is dumped into the BL
708 // register at this point for long values...
Chris Lattnerb2acc512003-10-19 21:09:10 +0000709 return OpNum;
Chris Lattner3e130a22003-01-13 00:32:26 +0000710 }
711 }
Chris Lattnerb2acc512003-10-19 21:09:10 +0000712 return OpNum;
Chris Lattner6d40c192003-01-16 16:43:00 +0000713}
Chris Lattner3e130a22003-01-13 00:32:26 +0000714
Chris Lattner6d40c192003-01-16 16:43:00 +0000715
716/// SetCC instructions - Here we just emit boilerplate code to set a byte-sized
717/// register, then move it to wherever the result should be.
718///
719void ISel::visitSetCondInst(SetCondInst &I) {
720 if (canFoldSetCCIntoBranch(&I)) return; // Fold this into a branch...
721
Chris Lattner6d40c192003-01-16 16:43:00 +0000722 unsigned DestReg = getReg(I);
Chris Lattner58c41fe2003-08-24 19:19:47 +0000723 MachineBasicBlock::iterator MII = BB->end();
724 emitSetCCOperation(BB, MII, I.getOperand(0), I.getOperand(1), I.getOpcode(),
725 DestReg);
726}
Chris Lattner6d40c192003-01-16 16:43:00 +0000727
Chris Lattner58c41fe2003-08-24 19:19:47 +0000728/// emitSetCCOperation - Common code shared between visitSetCondInst and
729/// constant expression support.
730void ISel::emitSetCCOperation(MachineBasicBlock *MBB,
731 MachineBasicBlock::iterator &IP,
732 Value *Op0, Value *Op1, unsigned Opcode,
733 unsigned TargetReg) {
734 unsigned OpNum = getSetCCNumber(Opcode);
Chris Lattnerb2acc512003-10-19 21:09:10 +0000735 OpNum = EmitComparison(OpNum, Op0, Op1, MBB, IP);
Chris Lattner58c41fe2003-08-24 19:19:47 +0000736
Chris Lattnerb2acc512003-10-19 21:09:10 +0000737 const Type *CompTy = Op0->getType();
738 unsigned CompClass = getClassB(CompTy);
739 bool isSigned = CompTy->isSigned() && CompClass != cFP;
740
741 if (CompClass != cLong || OpNum < 2) {
Chris Lattner6d40c192003-01-16 16:43:00 +0000742 // Handle normal comparisons with a setcc instruction...
Chris Lattner58c41fe2003-08-24 19:19:47 +0000743 BMI(MBB, IP, SetCCOpcodeTab[isSigned][OpNum], 0, TargetReg);
Chris Lattner6d40c192003-01-16 16:43:00 +0000744 } else {
745 // Handle long comparisons by copying the value which is already in BL into
746 // the register we want...
Chris Lattner58c41fe2003-08-24 19:19:47 +0000747 BMI(MBB, IP, X86::MOVrr8, 1, TargetReg).addReg(X86::BL);
Chris Lattner6d40c192003-01-16 16:43:00 +0000748 }
Brian Gaeke1749d632002-11-07 17:59:21 +0000749}
Chris Lattner51b49a92002-11-02 19:45:49 +0000750
Chris Lattner58c41fe2003-08-24 19:19:47 +0000751
752
753
Brian Gaekec2505982002-11-30 11:57:28 +0000754/// promote32 - Emit instructions to turn a narrow operand into a 32-bit-wide
755/// operand, in the specified target register.
Chris Lattner3e130a22003-01-13 00:32:26 +0000756void ISel::promote32(unsigned targetReg, const ValueRecord &VR) {
757 bool isUnsigned = VR.Ty->isUnsigned();
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000758
759 // Make sure we have the register number for this value...
760 unsigned Reg = VR.Val ? getReg(VR.Val) : VR.Reg;
761
Chris Lattner3e130a22003-01-13 00:32:26 +0000762 switch (getClassB(VR.Ty)) {
Chris Lattner94af4142002-12-25 05:13:53 +0000763 case cByte:
764 // Extend value into target register (8->32)
765 if (isUnsigned)
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000766 BuildMI(BB, X86::MOVZXr32r8, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +0000767 else
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000768 BuildMI(BB, X86::MOVSXr32r8, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +0000769 break;
770 case cShort:
771 // Extend value into target register (16->32)
772 if (isUnsigned)
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000773 BuildMI(BB, X86::MOVZXr32r16, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +0000774 else
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000775 BuildMI(BB, X86::MOVSXr32r16, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +0000776 break;
777 case cInt:
778 // Move value into target register (32->32)
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000779 BuildMI(BB, X86::MOVrr32, 1, targetReg).addReg(Reg);
Chris Lattner94af4142002-12-25 05:13:53 +0000780 break;
781 default:
782 assert(0 && "Unpromotable operand class in promote32");
783 }
Brian Gaekec2505982002-11-30 11:57:28 +0000784}
Chris Lattnerc5291f52002-10-27 21:16:59 +0000785
Chris Lattner72614082002-10-25 22:55:53 +0000786/// 'ret' instruction - Here we are interested in meeting the x86 ABI. As such,
787/// we have the following possibilities:
788///
789/// ret void: No return value, simply emit a 'ret' instruction
790/// ret sbyte, ubyte : Extend value into EAX and return
791/// ret short, ushort: Extend value into EAX and return
792/// ret int, uint : Move value into EAX and return
793/// ret pointer : Move value into EAX and return
Chris Lattner06925362002-11-17 21:56:38 +0000794/// ret long, ulong : Move value into EAX/EDX and return
795/// ret float/double : Top of FP stack
Chris Lattner72614082002-10-25 22:55:53 +0000796///
Chris Lattner3e130a22003-01-13 00:32:26 +0000797void ISel::visitReturnInst(ReturnInst &I) {
Chris Lattner94af4142002-12-25 05:13:53 +0000798 if (I.getNumOperands() == 0) {
799 BuildMI(BB, X86::RET, 0); // Just emit a 'ret' instruction
800 return;
801 }
802
803 Value *RetVal = I.getOperand(0);
Chris Lattner3e130a22003-01-13 00:32:26 +0000804 unsigned RetReg = getReg(RetVal);
805 switch (getClassB(RetVal->getType())) {
Chris Lattner94af4142002-12-25 05:13:53 +0000806 case cByte: // integral return values: extend or move into EAX and return
807 case cShort:
808 case cInt:
Chris Lattner3e130a22003-01-13 00:32:26 +0000809 promote32(X86::EAX, ValueRecord(RetReg, RetVal->getType()));
Chris Lattnerdbd73722003-05-06 21:32:22 +0000810 // Declare that EAX is live on exit
Chris Lattnerc2489032003-05-07 19:21:28 +0000811 BuildMI(BB, X86::IMPLICIT_USE, 2).addReg(X86::EAX).addReg(X86::ESP);
Chris Lattner94af4142002-12-25 05:13:53 +0000812 break;
813 case cFP: // Floats & Doubles: Return in ST(0)
Chris Lattner3e130a22003-01-13 00:32:26 +0000814 BuildMI(BB, X86::FpSETRESULT, 1).addReg(RetReg);
Chris Lattnerdbd73722003-05-06 21:32:22 +0000815 // Declare that top-of-stack is live on exit
Chris Lattnerc2489032003-05-07 19:21:28 +0000816 BuildMI(BB, X86::IMPLICIT_USE, 2).addReg(X86::ST0).addReg(X86::ESP);
Chris Lattner94af4142002-12-25 05:13:53 +0000817 break;
818 case cLong:
Chris Lattner3e130a22003-01-13 00:32:26 +0000819 BuildMI(BB, X86::MOVrr32, 1, X86::EAX).addReg(RetReg);
820 BuildMI(BB, X86::MOVrr32, 1, X86::EDX).addReg(RetReg+1);
Chris Lattnerdbd73722003-05-06 21:32:22 +0000821 // Declare that EAX & EDX are live on exit
Chris Lattnerc2489032003-05-07 19:21:28 +0000822 BuildMI(BB, X86::IMPLICIT_USE, 3).addReg(X86::EAX).addReg(X86::EDX).addReg(X86::ESP);
Chris Lattner3e130a22003-01-13 00:32:26 +0000823 break;
Chris Lattner94af4142002-12-25 05:13:53 +0000824 default:
Chris Lattner3e130a22003-01-13 00:32:26 +0000825 visitInstruction(I);
Chris Lattner94af4142002-12-25 05:13:53 +0000826 }
Chris Lattner43189d12002-11-17 20:07:45 +0000827 // Emit a 'ret' instruction
Chris Lattner94af4142002-12-25 05:13:53 +0000828 BuildMI(BB, X86::RET, 0);
Chris Lattner72614082002-10-25 22:55:53 +0000829}
830
Chris Lattner55f6fab2003-01-16 18:07:23 +0000831// getBlockAfter - Return the basic block which occurs lexically after the
832// specified one.
833static inline BasicBlock *getBlockAfter(BasicBlock *BB) {
834 Function::iterator I = BB; ++I; // Get iterator to next block
835 return I != BB->getParent()->end() ? &*I : 0;
836}
837
Chris Lattner51b49a92002-11-02 19:45:49 +0000838/// visitBranchInst - Handle conditional and unconditional branches here. Note
839/// that since code layout is frozen at this point, that if we are trying to
840/// jump to a block that is the immediate successor of the current block, we can
Chris Lattner6d40c192003-01-16 16:43:00 +0000841/// just make a fall-through (but we don't currently).
Chris Lattner51b49a92002-11-02 19:45:49 +0000842///
Chris Lattner94af4142002-12-25 05:13:53 +0000843void ISel::visitBranchInst(BranchInst &BI) {
Chris Lattner55f6fab2003-01-16 18:07:23 +0000844 BasicBlock *NextBB = getBlockAfter(BI.getParent()); // BB after current one
845
846 if (!BI.isConditional()) { // Unconditional branch?
847 if (BI.getSuccessor(0) != NextBB)
848 BuildMI(BB, X86::JMP, 1).addPCDisp(BI.getSuccessor(0));
Chris Lattner6d40c192003-01-16 16:43:00 +0000849 return;
850 }
851
852 // See if we can fold the setcc into the branch itself...
853 SetCondInst *SCI = canFoldSetCCIntoBranch(BI.getCondition());
854 if (SCI == 0) {
855 // Nope, cannot fold setcc into this branch. Emit a branch on a condition
856 // computed some other way...
Chris Lattner065faeb2002-12-28 20:24:02 +0000857 unsigned condReg = getReg(BI.getCondition());
Chris Lattner94af4142002-12-25 05:13:53 +0000858 BuildMI(BB, X86::CMPri8, 2).addReg(condReg).addZImm(0);
Chris Lattner55f6fab2003-01-16 18:07:23 +0000859 if (BI.getSuccessor(1) == NextBB) {
860 if (BI.getSuccessor(0) != NextBB)
861 BuildMI(BB, X86::JNE, 1).addPCDisp(BI.getSuccessor(0));
862 } else {
863 BuildMI(BB, X86::JE, 1).addPCDisp(BI.getSuccessor(1));
864
865 if (BI.getSuccessor(0) != NextBB)
866 BuildMI(BB, X86::JMP, 1).addPCDisp(BI.getSuccessor(0));
867 }
Chris Lattner6d40c192003-01-16 16:43:00 +0000868 return;
Chris Lattner94af4142002-12-25 05:13:53 +0000869 }
Chris Lattner6d40c192003-01-16 16:43:00 +0000870
871 unsigned OpNum = getSetCCNumber(SCI->getOpcode());
Chris Lattner58c41fe2003-08-24 19:19:47 +0000872 MachineBasicBlock::iterator MII = BB->end();
Chris Lattnerb2acc512003-10-19 21:09:10 +0000873 OpNum = EmitComparison(OpNum, SCI->getOperand(0), SCI->getOperand(1), BB, MII);
874
875 const Type *CompTy = SCI->getOperand(0)->getType();
876 bool isSigned = CompTy->isSigned() && getClassB(CompTy) != cFP;
Chris Lattner6d40c192003-01-16 16:43:00 +0000877
Chris Lattnerb2acc512003-10-19 21:09:10 +0000878
Chris Lattner6d40c192003-01-16 16:43:00 +0000879 // LLVM -> X86 signed X86 unsigned
880 // ----- ---------- ------------
881 // seteq -> je je
882 // setne -> jne jne
883 // setlt -> jl jb
Chris Lattner55f6fab2003-01-16 18:07:23 +0000884 // setge -> jge jae
Chris Lattner6d40c192003-01-16 16:43:00 +0000885 // setgt -> jg ja
886 // setle -> jle jbe
Chris Lattnerb2acc512003-10-19 21:09:10 +0000887 // ----
888 // js // Used by comparison with 0 optimization
889 // jns
890
891 static const unsigned OpcodeTab[2][8] = {
892 { X86::JE, X86::JNE, X86::JB, X86::JAE, X86::JA, X86::JBE, 0, 0 },
893 { X86::JE, X86::JNE, X86::JL, X86::JGE, X86::JG, X86::JLE,
894 X86::JS, X86::JNS },
Chris Lattner6d40c192003-01-16 16:43:00 +0000895 };
896
Chris Lattner55f6fab2003-01-16 18:07:23 +0000897 if (BI.getSuccessor(0) != NextBB) {
898 BuildMI(BB, OpcodeTab[isSigned][OpNum], 1).addPCDisp(BI.getSuccessor(0));
899 if (BI.getSuccessor(1) != NextBB)
900 BuildMI(BB, X86::JMP, 1).addPCDisp(BI.getSuccessor(1));
901 } else {
902 // Change to the inverse condition...
903 if (BI.getSuccessor(1) != NextBB) {
904 OpNum ^= 1;
905 BuildMI(BB, OpcodeTab[isSigned][OpNum], 1).addPCDisp(BI.getSuccessor(1));
906 }
907 }
Chris Lattner2df035b2002-11-02 19:27:56 +0000908}
909
Chris Lattner3e130a22003-01-13 00:32:26 +0000910
911/// doCall - This emits an abstract call instruction, setting up the arguments
912/// and the return value as appropriate. For the actual function call itself,
913/// it inserts the specified CallMI instruction into the stream.
914///
915void ISel::doCall(const ValueRecord &Ret, MachineInstr *CallMI,
916 const std::vector<ValueRecord> &Args) {
917
Chris Lattner065faeb2002-12-28 20:24:02 +0000918 // Count how many bytes are to be pushed on the stack...
919 unsigned NumBytes = 0;
Misha Brukman0d2cf3a2002-12-04 19:22:53 +0000920
Chris Lattner3e130a22003-01-13 00:32:26 +0000921 if (!Args.empty()) {
922 for (unsigned i = 0, e = Args.size(); i != e; ++i)
923 switch (getClassB(Args[i].Ty)) {
Chris Lattner065faeb2002-12-28 20:24:02 +0000924 case cByte: case cShort: case cInt:
Chris Lattner3e130a22003-01-13 00:32:26 +0000925 NumBytes += 4; break;
Chris Lattner065faeb2002-12-28 20:24:02 +0000926 case cLong:
Chris Lattner3e130a22003-01-13 00:32:26 +0000927 NumBytes += 8; break;
Chris Lattner065faeb2002-12-28 20:24:02 +0000928 case cFP:
Chris Lattner3e130a22003-01-13 00:32:26 +0000929 NumBytes += Args[i].Ty == Type::FloatTy ? 4 : 8;
Chris Lattner065faeb2002-12-28 20:24:02 +0000930 break;
931 default: assert(0 && "Unknown class!");
932 }
933
934 // Adjust the stack pointer for the new arguments...
935 BuildMI(BB, X86::ADJCALLSTACKDOWN, 1).addZImm(NumBytes);
936
937 // Arguments go on the stack in reverse order, as specified by the ABI.
938 unsigned ArgOffset = 0;
Chris Lattner3e130a22003-01-13 00:32:26 +0000939 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Chris Lattner5e2cb8b2003-08-04 02:12:48 +0000940 unsigned ArgReg = Args[i].Val ? getReg(Args[i].Val) : Args[i].Reg;
Chris Lattner3e130a22003-01-13 00:32:26 +0000941 switch (getClassB(Args[i].Ty)) {
Chris Lattner065faeb2002-12-28 20:24:02 +0000942 case cByte:
943 case cShort: {
944 // Promote arg to 32 bits wide into a temporary register...
945 unsigned R = makeAnotherReg(Type::UIntTy);
Chris Lattner3e130a22003-01-13 00:32:26 +0000946 promote32(R, Args[i]);
Chris Lattner065faeb2002-12-28 20:24:02 +0000947 addRegOffset(BuildMI(BB, X86::MOVrm32, 5),
948 X86::ESP, ArgOffset).addReg(R);
949 break;
950 }
951 case cInt:
952 addRegOffset(BuildMI(BB, X86::MOVrm32, 5),
Chris Lattner3e130a22003-01-13 00:32:26 +0000953 X86::ESP, ArgOffset).addReg(ArgReg);
Chris Lattner065faeb2002-12-28 20:24:02 +0000954 break;
Chris Lattner3e130a22003-01-13 00:32:26 +0000955 case cLong:
956 addRegOffset(BuildMI(BB, X86::MOVrm32, 5),
957 X86::ESP, ArgOffset).addReg(ArgReg);
958 addRegOffset(BuildMI(BB, X86::MOVrm32, 5),
959 X86::ESP, ArgOffset+4).addReg(ArgReg+1);
960 ArgOffset += 4; // 8 byte entry, not 4.
961 break;
962
Chris Lattner065faeb2002-12-28 20:24:02 +0000963 case cFP:
Chris Lattner3e130a22003-01-13 00:32:26 +0000964 if (Args[i].Ty == Type::FloatTy) {
Chris Lattner065faeb2002-12-28 20:24:02 +0000965 addRegOffset(BuildMI(BB, X86::FSTr32, 5),
Chris Lattner3e130a22003-01-13 00:32:26 +0000966 X86::ESP, ArgOffset).addReg(ArgReg);
Chris Lattner065faeb2002-12-28 20:24:02 +0000967 } else {
Chris Lattner3e130a22003-01-13 00:32:26 +0000968 assert(Args[i].Ty == Type::DoubleTy && "Unknown FP type!");
969 addRegOffset(BuildMI(BB, X86::FSTr64, 5),
970 X86::ESP, ArgOffset).addReg(ArgReg);
971 ArgOffset += 4; // 8 byte entry, not 4.
Chris Lattner065faeb2002-12-28 20:24:02 +0000972 }
973 break;
974
Chris Lattner3e130a22003-01-13 00:32:26 +0000975 default: assert(0 && "Unknown class!");
Chris Lattner065faeb2002-12-28 20:24:02 +0000976 }
977 ArgOffset += 4;
Chris Lattner94af4142002-12-25 05:13:53 +0000978 }
Chris Lattner3e130a22003-01-13 00:32:26 +0000979 } else {
980 BuildMI(BB, X86::ADJCALLSTACKDOWN, 1).addZImm(0);
Chris Lattner94af4142002-12-25 05:13:53 +0000981 }
Chris Lattner6e49a4b2002-12-13 14:13:27 +0000982
Chris Lattner3e130a22003-01-13 00:32:26 +0000983 BB->push_back(CallMI);
Misha Brukman0d2cf3a2002-12-04 19:22:53 +0000984
Chris Lattner065faeb2002-12-28 20:24:02 +0000985 BuildMI(BB, X86::ADJCALLSTACKUP, 1).addZImm(NumBytes);
Chris Lattnera3243642002-12-04 23:45:28 +0000986
987 // If there is a return value, scavenge the result from the location the call
988 // leaves it in...
989 //
Chris Lattner3e130a22003-01-13 00:32:26 +0000990 if (Ret.Ty != Type::VoidTy) {
991 unsigned DestClass = getClassB(Ret.Ty);
992 switch (DestClass) {
Brian Gaeke20244b72002-12-12 15:33:40 +0000993 case cByte:
994 case cShort:
995 case cInt: {
996 // Integral results are in %eax, or the appropriate portion
997 // thereof.
998 static const unsigned regRegMove[] = {
999 X86::MOVrr8, X86::MOVrr16, X86::MOVrr32
1000 };
1001 static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX };
Chris Lattner3e130a22003-01-13 00:32:26 +00001002 BuildMI(BB, regRegMove[DestClass], 1, Ret.Reg).addReg(AReg[DestClass]);
Chris Lattner4fa1acc2002-12-04 23:50:28 +00001003 break;
Brian Gaeke20244b72002-12-12 15:33:40 +00001004 }
Chris Lattner94af4142002-12-25 05:13:53 +00001005 case cFP: // Floating-point return values live in %ST(0)
Chris Lattner3e130a22003-01-13 00:32:26 +00001006 BuildMI(BB, X86::FpGETRESULT, 1, Ret.Reg);
Brian Gaeke20244b72002-12-12 15:33:40 +00001007 break;
Chris Lattner3e130a22003-01-13 00:32:26 +00001008 case cLong: // Long values are left in EDX:EAX
1009 BuildMI(BB, X86::MOVrr32, 1, Ret.Reg).addReg(X86::EAX);
1010 BuildMI(BB, X86::MOVrr32, 1, Ret.Reg+1).addReg(X86::EDX);
1011 break;
1012 default: assert(0 && "Unknown class!");
Chris Lattner4fa1acc2002-12-04 23:50:28 +00001013 }
Chris Lattnera3243642002-12-04 23:45:28 +00001014 }
Brian Gaekefa8d5712002-11-22 11:07:01 +00001015}
Chris Lattner2df035b2002-11-02 19:27:56 +00001016
Chris Lattner3e130a22003-01-13 00:32:26 +00001017
1018/// visitCallInst - Push args on stack and do a procedure call instruction.
1019void ISel::visitCallInst(CallInst &CI) {
1020 MachineInstr *TheCall;
1021 if (Function *F = CI.getCalledFunction()) {
Chris Lattnereca195e2003-05-08 19:44:13 +00001022 // Is it an intrinsic function call?
1023 if (LLVMIntrinsic::ID ID = (LLVMIntrinsic::ID)F->getIntrinsicID()) {
1024 visitIntrinsicCall(ID, CI); // Special intrinsics are not handled here
1025 return;
1026 }
1027
Chris Lattner3e130a22003-01-13 00:32:26 +00001028 // Emit a CALL instruction with PC-relative displacement.
1029 TheCall = BuildMI(X86::CALLpcrel32, 1).addGlobalAddress(F, true);
1030 } else { // Emit an indirect call...
1031 unsigned Reg = getReg(CI.getCalledValue());
1032 TheCall = BuildMI(X86::CALLr32, 1).addReg(Reg);
1033 }
1034
1035 std::vector<ValueRecord> Args;
1036 for (unsigned i = 1, e = CI.getNumOperands(); i != e; ++i)
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001037 Args.push_back(ValueRecord(CI.getOperand(i)));
Chris Lattner3e130a22003-01-13 00:32:26 +00001038
1039 unsigned DestReg = CI.getType() != Type::VoidTy ? getReg(CI) : 0;
1040 doCall(ValueRecord(DestReg, CI.getType()), TheCall, Args);
1041}
1042
Chris Lattneraeb54b82003-08-28 21:23:43 +00001043
Chris Lattnereca195e2003-05-08 19:44:13 +00001044void ISel::visitIntrinsicCall(LLVMIntrinsic::ID ID, CallInst &CI) {
1045 unsigned TmpReg1, TmpReg2;
1046 switch (ID) {
1047 case LLVMIntrinsic::va_start:
1048 // Get the address of the first vararg value...
Chris Lattner73815062003-10-18 05:56:40 +00001049 TmpReg1 = getReg(CI);
Chris Lattnereca195e2003-05-08 19:44:13 +00001050 addFrameReference(BuildMI(BB, X86::LEAr32, 5, TmpReg1), VarArgsFrameIndex);
Chris Lattnereca195e2003-05-08 19:44:13 +00001051 return;
1052
Chris Lattnereca195e2003-05-08 19:44:13 +00001053 case LLVMIntrinsic::va_copy:
Chris Lattner73815062003-10-18 05:56:40 +00001054 TmpReg1 = getReg(CI);
1055 TmpReg2 = getReg(CI.getOperand(1));
1056 BuildMI(BB, X86::MOVrr32, 1, TmpReg1).addReg(TmpReg2);
Chris Lattnereca195e2003-05-08 19:44:13 +00001057 return;
Chris Lattner73815062003-10-18 05:56:40 +00001058 case LLVMIntrinsic::va_end: return; // Noop on X86
Chris Lattnereca195e2003-05-08 19:44:13 +00001059
Chris Lattnerc151e4f2003-06-29 16:42:32 +00001060 case LLVMIntrinsic::longjmp:
Chris Lattner72af6b82003-08-18 16:06:09 +00001061 case LLVMIntrinsic::siglongjmp:
Chris Lattneraeb54b82003-08-28 21:23:43 +00001062 BuildMI(BB, X86::CALLpcrel32, 1).addExternalSymbol("abort", true);
Brian Gaeked4615052003-07-18 20:23:43 +00001063 return;
1064
Chris Lattnerc151e4f2003-06-29 16:42:32 +00001065 case LLVMIntrinsic::setjmp:
Chris Lattner72af6b82003-08-18 16:06:09 +00001066 case LLVMIntrinsic::sigsetjmp:
Chris Lattnereb093fb2003-06-30 19:35:54 +00001067 // Setjmp always returns zero...
1068 BuildMI(BB, X86::MOVir32, 1, getReg(CI)).addZImm(0);
Chris Lattnerc151e4f2003-06-29 16:42:32 +00001069 return;
Chris Lattnereca195e2003-05-08 19:44:13 +00001070 default: assert(0 && "Unknown intrinsic for X86!");
1071 }
1072}
1073
1074
Chris Lattnerb515f6d2003-05-08 20:49:25 +00001075/// visitSimpleBinary - Implement simple binary operators for integral types...
1076/// OperatorClass is one of: 0 for Add, 1 for Sub, 2 for And, 3 for Or, 4 for
1077/// Xor.
1078void ISel::visitSimpleBinary(BinaryOperator &B, unsigned OperatorClass) {
1079 unsigned DestReg = getReg(B);
1080 MachineBasicBlock::iterator MI = BB->end();
1081 emitSimpleBinaryOperation(BB, MI, B.getOperand(0), B.getOperand(1),
1082 OperatorClass, DestReg);
1083}
Chris Lattner3e130a22003-01-13 00:32:26 +00001084
Chris Lattnerb2acc512003-10-19 21:09:10 +00001085/// emitSimpleBinaryOperation - Implement simple binary operators for integral
1086/// types... OperatorClass is one of: 0 for Add, 1 for Sub, 2 for And, 3 for
1087/// Or, 4 for Xor.
Chris Lattner68aad932002-11-02 20:13:22 +00001088///
Chris Lattnerb515f6d2003-05-08 20:49:25 +00001089/// emitSimpleBinaryOperation - Common code shared between visitSimpleBinary
1090/// and constant expression support.
Chris Lattnerb2acc512003-10-19 21:09:10 +00001091///
1092void ISel::emitSimpleBinaryOperation(MachineBasicBlock *MBB,
Chris Lattnerb515f6d2003-05-08 20:49:25 +00001093 MachineBasicBlock::iterator &IP,
1094 Value *Op0, Value *Op1,
Chris Lattnerb2acc512003-10-19 21:09:10 +00001095 unsigned OperatorClass, unsigned DestReg) {
Chris Lattnerb515f6d2003-05-08 20:49:25 +00001096 unsigned Class = getClassB(Op0->getType());
Chris Lattnerb2acc512003-10-19 21:09:10 +00001097
1098 // sub 0, X -> neg X
1099 if (OperatorClass == 1 && Class != cLong)
1100 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op0))
1101 if (CI->isNullValue()) {
1102 unsigned op1Reg = getReg(Op1, MBB, IP);
1103 switch (Class) {
1104 default: assert(0 && "Unknown class for this function!");
1105 case cByte:
1106 BMI(MBB, IP, X86::NEGr8, 1, DestReg).addReg(op1Reg);
1107 return;
1108 case cShort:
1109 BMI(MBB, IP, X86::NEGr16, 1, DestReg).addReg(op1Reg);
1110 return;
1111 case cInt:
1112 BMI(MBB, IP, X86::NEGr32, 1, DestReg).addReg(op1Reg);
1113 return;
1114 }
1115 }
1116
Chris Lattner35333e12003-06-05 18:28:55 +00001117 if (!isa<ConstantInt>(Op1) || Class == cLong) {
1118 static const unsigned OpcodeTab[][4] = {
1119 // Arithmetic operators
1120 { X86::ADDrr8, X86::ADDrr16, X86::ADDrr32, X86::FpADD }, // ADD
1121 { X86::SUBrr8, X86::SUBrr16, X86::SUBrr32, X86::FpSUB }, // SUB
1122
1123 // Bitwise operators
1124 { X86::ANDrr8, X86::ANDrr16, X86::ANDrr32, 0 }, // AND
1125 { X86:: ORrr8, X86:: ORrr16, X86:: ORrr32, 0 }, // OR
1126 { X86::XORrr8, X86::XORrr16, X86::XORrr32, 0 }, // XOR
Chris Lattner3e130a22003-01-13 00:32:26 +00001127 };
Chris Lattner35333e12003-06-05 18:28:55 +00001128
1129 bool isLong = false;
1130 if (Class == cLong) {
1131 isLong = true;
1132 Class = cInt; // Bottom 32 bits are handled just like ints
1133 }
1134
1135 unsigned Opcode = OpcodeTab[OperatorClass][Class];
1136 assert(Opcode && "Floating point arguments to logical inst?");
Chris Lattnerb2acc512003-10-19 21:09:10 +00001137 unsigned Op0r = getReg(Op0, MBB, IP);
1138 unsigned Op1r = getReg(Op1, MBB, IP);
1139 BMI(MBB, IP, Opcode, 2, DestReg).addReg(Op0r).addReg(Op1r);
Chris Lattner35333e12003-06-05 18:28:55 +00001140
1141 if (isLong) { // Handle the upper 32 bits of long values...
1142 static const unsigned TopTab[] = {
1143 X86::ADCrr32, X86::SBBrr32, X86::ANDrr32, X86::ORrr32, X86::XORrr32
1144 };
Chris Lattnerb2acc512003-10-19 21:09:10 +00001145 BMI(MBB, IP, TopTab[OperatorClass], 2,
1146 DestReg+1).addReg(Op0r+1).addReg(Op1r+1);
Chris Lattner35333e12003-06-05 18:28:55 +00001147 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00001148 return;
Chris Lattner3e130a22003-01-13 00:32:26 +00001149 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00001150
1151 // Special case: op Reg, <const>
1152 ConstantInt *Op1C = cast<ConstantInt>(Op1);
1153 unsigned Op0r = getReg(Op0, MBB, IP);
1154
1155 // xor X, -1 -> not X
1156 if (OperatorClass == 4 && Op1C->isAllOnesValue()) {
1157 static unsigned const NOTTab[] = { X86::NOTr8, X86::NOTr16, X86::NOTr32 };
1158 BMI(MBB, IP, NOTTab[Class], 1, DestReg).addReg(Op0r);
1159 return;
1160 }
1161
1162 // add X, -1 -> dec X
1163 if (OperatorClass == 0 && Op1C->isAllOnesValue()) {
1164 static unsigned const DECTab[] = { X86::DECr8, X86::DECr16, X86::DECr32 };
1165 BMI(MBB, IP, DECTab[Class], 1, DestReg).addReg(Op0r);
1166 return;
1167 }
1168
1169 // add X, 1 -> inc X
1170 if (OperatorClass == 0 && Op1C->equalsInt(1)) {
1171 static unsigned const DECTab[] = { X86::INCr8, X86::INCr16, X86::INCr32 };
1172 BMI(MBB, IP, DECTab[Class], 1, DestReg).addReg(Op0r);
1173 return;
1174 }
1175
1176 static const unsigned OpcodeTab[][3] = {
1177 // Arithmetic operators
1178 { X86::ADDri8, X86::ADDri16, X86::ADDri32 }, // ADD
1179 { X86::SUBri8, X86::SUBri16, X86::SUBri32 }, // SUB
1180
1181 // Bitwise operators
1182 { X86::ANDri8, X86::ANDri16, X86::ANDri32 }, // AND
1183 { X86:: ORri8, X86:: ORri16, X86:: ORri32 }, // OR
1184 { X86::XORri8, X86::XORri16, X86::XORri32 }, // XOR
1185 };
1186
1187 assert(Class < 3 && "General code handles 64-bit integer types!");
1188 unsigned Opcode = OpcodeTab[OperatorClass][Class];
1189 uint64_t Op1v = cast<ConstantInt>(Op1C)->getRawValue();
1190
1191 // Mask off any upper bits of the constant, if there are any...
1192 Op1v &= (1ULL << (8 << Class)) - 1;
1193 BMI(MBB, IP, Opcode, 2, DestReg).addReg(Op0r).addZImm(Op1v);
Chris Lattnere2954c82002-11-02 20:04:26 +00001194}
1195
Chris Lattner3e130a22003-01-13 00:32:26 +00001196/// doMultiply - Emit appropriate instructions to multiply together the
1197/// registers op0Reg and op1Reg, and put the result in DestReg. The type of the
1198/// result should be given as DestTy.
1199///
Chris Lattner8a307e82002-12-16 19:32:50 +00001200void ISel::doMultiply(MachineBasicBlock *MBB, MachineBasicBlock::iterator &MBBI,
Chris Lattner3e130a22003-01-13 00:32:26 +00001201 unsigned DestReg, const Type *DestTy,
Chris Lattner8a307e82002-12-16 19:32:50 +00001202 unsigned op0Reg, unsigned op1Reg) {
Chris Lattner3e130a22003-01-13 00:32:26 +00001203 unsigned Class = getClass(DestTy);
Chris Lattner94af4142002-12-25 05:13:53 +00001204 switch (Class) {
1205 case cFP: // Floating point multiply
Chris Lattner3e130a22003-01-13 00:32:26 +00001206 BMI(BB, MBBI, X86::FpMUL, 2, DestReg).addReg(op0Reg).addReg(op1Reg);
Chris Lattner94af4142002-12-25 05:13:53 +00001207 return;
Chris Lattner0f1c4612003-06-21 17:16:58 +00001208 case cInt:
1209 case cShort:
Chris Lattnerc01d1232003-10-20 03:42:58 +00001210 BMI(BB, MBBI, Class == cInt ? X86::IMULrr32 : X86::IMULrr16, 2, DestReg)
Chris Lattner0f1c4612003-06-21 17:16:58 +00001211 .addReg(op0Reg).addReg(op1Reg);
1212 return;
1213 case cByte:
1214 // Must use the MUL instruction, which forces use of AL...
1215 BMI(MBB, MBBI, X86::MOVrr8, 1, X86::AL).addReg(op0Reg);
1216 BMI(MBB, MBBI, X86::MULr8, 1).addReg(op1Reg);
1217 BMI(MBB, MBBI, X86::MOVrr8, 1, DestReg).addReg(X86::AL);
1218 return;
Chris Lattner94af4142002-12-25 05:13:53 +00001219 default:
Chris Lattner3e130a22003-01-13 00:32:26 +00001220 case cLong: assert(0 && "doMultiply cannot operate on LONG values!");
Chris Lattner94af4142002-12-25 05:13:53 +00001221 }
Brian Gaeke20244b72002-12-12 15:33:40 +00001222}
1223
Chris Lattnerb2acc512003-10-19 21:09:10 +00001224// ExactLog2 - This function solves for (Val == 1 << (N-1)) and returns N. It
1225// returns zero when the input is not exactly a power of two.
1226static unsigned ExactLog2(unsigned Val) {
1227 if (Val == 0) return 0;
1228 unsigned Count = 0;
1229 while (Val != 1) {
1230 if (Val & 1) return 0;
1231 Val >>= 1;
1232 ++Count;
1233 }
1234 return Count+1;
1235}
1236
1237void ISel::doMultiplyConst(MachineBasicBlock *MBB,
1238 MachineBasicBlock::iterator &IP,
1239 unsigned DestReg, const Type *DestTy,
1240 unsigned op0Reg, unsigned ConstRHS) {
1241 unsigned Class = getClass(DestTy);
1242
1243 // If the element size is exactly a power of 2, use a shift to get it.
1244 if (unsigned Shift = ExactLog2(ConstRHS)) {
1245 switch (Class) {
1246 default: assert(0 && "Unknown class for this function!");
1247 case cByte:
1248 BMI(MBB, IP, X86::SHLir32, 2, DestReg).addReg(op0Reg).addZImm(Shift-1);
1249 return;
1250 case cShort:
1251 BMI(MBB, IP, X86::SHLir32, 2, DestReg).addReg(op0Reg).addZImm(Shift-1);
1252 return;
1253 case cInt:
1254 BMI(MBB, IP, X86::SHLir32, 2, DestReg).addReg(op0Reg).addZImm(Shift-1);
1255 return;
1256 }
1257 }
Chris Lattnerc01d1232003-10-20 03:42:58 +00001258
1259 if (Class == cShort) {
1260 BMI(MBB, IP, X86::IMULri16, 2, DestReg).addReg(op0Reg).addZImm(ConstRHS);
1261 return;
1262 } else if (Class == cInt) {
1263 BMI(MBB, IP, X86::IMULri32, 2, DestReg).addReg(op0Reg).addZImm(ConstRHS);
1264 return;
1265 }
Chris Lattnerb2acc512003-10-19 21:09:10 +00001266
1267 // Most general case, emit a normal multiply...
1268 static const unsigned MOVirTab[] = {
1269 X86::MOVir8, X86::MOVir16, X86::MOVir32
1270 };
1271
1272 unsigned TmpReg = makeAnotherReg(DestTy);
1273 BMI(MBB, IP, MOVirTab[Class], 1, TmpReg).addZImm(ConstRHS);
1274
1275 // Emit a MUL to multiply the register holding the index by
1276 // elementSize, putting the result in OffsetReg.
1277 doMultiply(MBB, IP, DestReg, DestTy, op0Reg, TmpReg);
1278}
1279
Chris Lattnerca9671d2002-11-02 20:28:58 +00001280/// visitMul - Multiplies are not simple binary operators because they must deal
1281/// with the EAX register explicitly.
1282///
1283void ISel::visitMul(BinaryOperator &I) {
Chris Lattner202a2d02002-12-13 13:07:42 +00001284 unsigned Op0Reg = getReg(I.getOperand(0));
Chris Lattner3e130a22003-01-13 00:32:26 +00001285 unsigned DestReg = getReg(I);
1286
1287 // Simple scalar multiply?
1288 if (I.getType() != Type::LongTy && I.getType() != Type::ULongTy) {
Chris Lattnerb2acc512003-10-19 21:09:10 +00001289 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(1))) {
1290 unsigned Val = (unsigned)CI->getRawValue(); // Cannot be 64-bit constant
1291 MachineBasicBlock::iterator MBBI = BB->end();
1292 doMultiplyConst(BB, MBBI, DestReg, I.getType(), Op0Reg, Val);
1293 } else {
1294 unsigned Op1Reg = getReg(I.getOperand(1));
1295 MachineBasicBlock::iterator MBBI = BB->end();
1296 doMultiply(BB, MBBI, DestReg, I.getType(), Op0Reg, Op1Reg);
1297 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001298 } else {
Chris Lattnerb2acc512003-10-19 21:09:10 +00001299 unsigned Op1Reg = getReg(I.getOperand(1));
1300
Chris Lattner3e130a22003-01-13 00:32:26 +00001301 // Long value. We have to do things the hard way...
1302 // Multiply the two low parts... capturing carry into EDX
1303 BuildMI(BB, X86::MOVrr32, 1, X86::EAX).addReg(Op0Reg);
1304 BuildMI(BB, X86::MULr32, 1).addReg(Op1Reg); // AL*BL
1305
1306 unsigned OverflowReg = makeAnotherReg(Type::UIntTy);
1307 BuildMI(BB, X86::MOVrr32, 1, DestReg).addReg(X86::EAX); // AL*BL
1308 BuildMI(BB, X86::MOVrr32, 1, OverflowReg).addReg(X86::EDX); // AL*BL >> 32
1309
1310 MachineBasicBlock::iterator MBBI = BB->end();
Chris Lattner034acf02003-06-21 18:15:27 +00001311 unsigned AHBLReg = makeAnotherReg(Type::UIntTy); // AH*BL
Chris Lattnerc01d1232003-10-20 03:42:58 +00001312 BMI(BB, MBBI, X86::IMULrr32, 2, AHBLReg).addReg(Op0Reg+1).addReg(Op1Reg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001313
1314 unsigned AHBLplusOverflowReg = makeAnotherReg(Type::UIntTy);
1315 BuildMI(BB, X86::ADDrr32, 2, // AH*BL+(AL*BL >> 32)
1316 AHBLplusOverflowReg).addReg(AHBLReg).addReg(OverflowReg);
1317
1318 MBBI = BB->end();
Chris Lattner034acf02003-06-21 18:15:27 +00001319 unsigned ALBHReg = makeAnotherReg(Type::UIntTy); // AL*BH
Chris Lattnerc01d1232003-10-20 03:42:58 +00001320 BMI(BB, MBBI, X86::IMULrr32, 2, ALBHReg).addReg(Op0Reg).addReg(Op1Reg+1);
Chris Lattner3e130a22003-01-13 00:32:26 +00001321
1322 BuildMI(BB, X86::ADDrr32, 2, // AL*BH + AH*BL + (AL*BL >> 32)
1323 DestReg+1).addReg(AHBLplusOverflowReg).addReg(ALBHReg);
1324 }
Chris Lattnerf01729e2002-11-02 20:54:46 +00001325}
Chris Lattnerca9671d2002-11-02 20:28:58 +00001326
Chris Lattner06925362002-11-17 21:56:38 +00001327
Chris Lattnerf01729e2002-11-02 20:54:46 +00001328/// visitDivRem - Handle division and remainder instructions... these
1329/// instruction both require the same instructions to be generated, they just
1330/// select the result from a different register. Note that both of these
1331/// instructions work differently for signed and unsigned operands.
1332///
1333void ISel::visitDivRem(BinaryOperator &I) {
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001334 unsigned Class = getClass(I.getType());
1335 unsigned Op0Reg, Op1Reg, ResultReg = getReg(I);
Chris Lattner94af4142002-12-25 05:13:53 +00001336
1337 switch (Class) {
Chris Lattner3e130a22003-01-13 00:32:26 +00001338 case cFP: // Floating point divide
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001339 if (I.getOpcode() == Instruction::Div) {
1340 Op0Reg = getReg(I.getOperand(0));
1341 Op1Reg = getReg(I.getOperand(1));
Chris Lattner94af4142002-12-25 05:13:53 +00001342 BuildMI(BB, X86::FpDIV, 2, ResultReg).addReg(Op0Reg).addReg(Op1Reg);
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001343 } else { // Floating point remainder...
Chris Lattner3e130a22003-01-13 00:32:26 +00001344 MachineInstr *TheCall =
1345 BuildMI(X86::CALLpcrel32, 1).addExternalSymbol("fmod", true);
1346 std::vector<ValueRecord> Args;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001347 Args.push_back(ValueRecord(I.getOperand(0)));
1348 Args.push_back(ValueRecord(I.getOperand(1)));
Chris Lattner3e130a22003-01-13 00:32:26 +00001349 doCall(ValueRecord(ResultReg, Type::DoubleTy), TheCall, Args);
1350 }
Chris Lattner94af4142002-12-25 05:13:53 +00001351 return;
Chris Lattner3e130a22003-01-13 00:32:26 +00001352 case cLong: {
1353 static const char *FnName[] =
1354 { "__moddi3", "__divdi3", "__umoddi3", "__udivdi3" };
1355
1356 unsigned NameIdx = I.getType()->isUnsigned()*2;
1357 NameIdx += I.getOpcode() == Instruction::Div;
1358 MachineInstr *TheCall =
1359 BuildMI(X86::CALLpcrel32, 1).addExternalSymbol(FnName[NameIdx], true);
1360
1361 std::vector<ValueRecord> Args;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001362 Args.push_back(ValueRecord(I.getOperand(0)));
1363 Args.push_back(ValueRecord(I.getOperand(1)));
Chris Lattner3e130a22003-01-13 00:32:26 +00001364 doCall(ValueRecord(ResultReg, Type::LongTy), TheCall, Args);
1365 return;
1366 }
1367 case cByte: case cShort: case cInt:
Misha Brukmancf00c4a2003-10-10 17:57:28 +00001368 break; // Small integrals, handled below...
Chris Lattner3e130a22003-01-13 00:32:26 +00001369 default: assert(0 && "Unknown class!");
Chris Lattner94af4142002-12-25 05:13:53 +00001370 }
Chris Lattnerf01729e2002-11-02 20:54:46 +00001371
1372 static const unsigned Regs[] ={ X86::AL , X86::AX , X86::EAX };
1373 static const unsigned MovOpcode[]={ X86::MOVrr8, X86::MOVrr16, X86::MOVrr32 };
Chris Lattner7b52c032003-06-22 03:31:18 +00001374 static const unsigned SarOpcode[]={ X86::SARir8, X86::SARir16, X86::SARir32 };
Chris Lattnerf01729e2002-11-02 20:54:46 +00001375 static const unsigned ClrOpcode[]={ X86::XORrr8, X86::XORrr16, X86::XORrr32 };
1376 static const unsigned ExtRegs[] ={ X86::AH , X86::DX , X86::EDX };
1377
1378 static const unsigned DivOpcode[][4] = {
Chris Lattner3e130a22003-01-13 00:32:26 +00001379 { X86::DIVr8 , X86::DIVr16 , X86::DIVr32 , 0 }, // Unsigned division
1380 { X86::IDIVr8, X86::IDIVr16, X86::IDIVr32, 0 }, // Signed division
Chris Lattnerf01729e2002-11-02 20:54:46 +00001381 };
1382
1383 bool isSigned = I.getType()->isSigned();
1384 unsigned Reg = Regs[Class];
1385 unsigned ExtReg = ExtRegs[Class];
Chris Lattnerf01729e2002-11-02 20:54:46 +00001386
1387 // Put the first operand into one of the A registers...
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001388 Op0Reg = getReg(I.getOperand(0));
Chris Lattnerf01729e2002-11-02 20:54:46 +00001389 BuildMI(BB, MovOpcode[Class], 1, Reg).addReg(Op0Reg);
1390
1391 if (isSigned) {
1392 // Emit a sign extension instruction...
Chris Lattner7b52c032003-06-22 03:31:18 +00001393 unsigned ShiftResult = makeAnotherReg(I.getType());
1394 BuildMI(BB, SarOpcode[Class], 2, ShiftResult).addReg(Op0Reg).addZImm(31);
1395 BuildMI(BB, MovOpcode[Class], 1, ExtReg).addReg(ShiftResult);
Chris Lattnerf01729e2002-11-02 20:54:46 +00001396 } else {
1397 // If unsigned, emit a zeroing instruction... (reg = xor reg, reg)
1398 BuildMI(BB, ClrOpcode[Class], 2, ExtReg).addReg(ExtReg).addReg(ExtReg);
1399 }
1400
Chris Lattner06925362002-11-17 21:56:38 +00001401 // Emit the appropriate divide or remainder instruction...
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00001402 Op1Reg = getReg(I.getOperand(1));
Chris Lattner92845e32002-11-21 18:54:29 +00001403 BuildMI(BB, DivOpcode[isSigned][Class], 1).addReg(Op1Reg);
Chris Lattner06925362002-11-17 21:56:38 +00001404
Chris Lattnerf01729e2002-11-02 20:54:46 +00001405 // Figure out which register we want to pick the result out of...
1406 unsigned DestReg = (I.getOpcode() == Instruction::Div) ? Reg : ExtReg;
1407
Chris Lattnerf01729e2002-11-02 20:54:46 +00001408 // Put the result into the destination register...
Chris Lattner94af4142002-12-25 05:13:53 +00001409 BuildMI(BB, MovOpcode[Class], 1, ResultReg).addReg(DestReg);
Chris Lattnerca9671d2002-11-02 20:28:58 +00001410}
Chris Lattnere2954c82002-11-02 20:04:26 +00001411
Chris Lattner06925362002-11-17 21:56:38 +00001412
Brian Gaekea1719c92002-10-31 23:03:59 +00001413/// Shift instructions: 'shl', 'sar', 'shr' - Some special cases here
1414/// for constant immediate shift values, and for constant immediate
1415/// shift values equal to 1. Even the general case is sort of special,
1416/// because the shift amount has to be in CL, not just any old register.
1417///
Chris Lattner3e130a22003-01-13 00:32:26 +00001418void ISel::visitShiftInst(ShiftInst &I) {
1419 unsigned SrcReg = getReg(I.getOperand(0));
Chris Lattnerf01729e2002-11-02 20:54:46 +00001420 unsigned DestReg = getReg(I);
Chris Lattnere9913f22002-11-02 01:41:55 +00001421 bool isLeftShift = I.getOpcode() == Instruction::Shl;
Chris Lattner3e130a22003-01-13 00:32:26 +00001422 bool isSigned = I.getType()->isSigned();
1423 unsigned Class = getClass(I.getType());
1424
1425 static const unsigned ConstantOperand[][4] = {
1426 { X86::SHRir8, X86::SHRir16, X86::SHRir32, X86::SHRDir32 }, // SHR
1427 { X86::SARir8, X86::SARir16, X86::SARir32, X86::SHRDir32 }, // SAR
1428 { X86::SHLir8, X86::SHLir16, X86::SHLir32, X86::SHLDir32 }, // SHL
1429 { X86::SHLir8, X86::SHLir16, X86::SHLir32, X86::SHLDir32 }, // SAL = SHL
1430 };
Chris Lattnerb1761fc2002-11-02 01:15:18 +00001431
Chris Lattner3e130a22003-01-13 00:32:26 +00001432 static const unsigned NonConstantOperand[][4] = {
1433 { X86::SHRrr8, X86::SHRrr16, X86::SHRrr32 }, // SHR
1434 { X86::SARrr8, X86::SARrr16, X86::SARrr32 }, // SAR
1435 { X86::SHLrr8, X86::SHLrr16, X86::SHLrr32 }, // SHL
1436 { X86::SHLrr8, X86::SHLrr16, X86::SHLrr32 }, // SAL = SHL
1437 };
Chris Lattner796df732002-11-02 00:44:25 +00001438
Chris Lattner3e130a22003-01-13 00:32:26 +00001439 // Longs, as usual, are handled specially...
1440 if (Class == cLong) {
1441 // If we have a constant shift, we can generate much more efficient code
1442 // than otherwise...
1443 //
1444 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(I.getOperand(1))) {
1445 unsigned Amount = CUI->getValue();
1446 if (Amount < 32) {
1447 const unsigned *Opc = ConstantOperand[isLeftShift*2+isSigned];
1448 if (isLeftShift) {
1449 BuildMI(BB, Opc[3], 3,
1450 DestReg+1).addReg(SrcReg+1).addReg(SrcReg).addZImm(Amount);
1451 BuildMI(BB, Opc[2], 2, DestReg).addReg(SrcReg).addZImm(Amount);
1452 } else {
1453 BuildMI(BB, Opc[3], 3,
1454 DestReg).addReg(SrcReg ).addReg(SrcReg+1).addZImm(Amount);
1455 BuildMI(BB, Opc[2], 2, DestReg+1).addReg(SrcReg+1).addZImm(Amount);
1456 }
1457 } else { // Shifting more than 32 bits
1458 Amount -= 32;
1459 if (isLeftShift) {
1460 BuildMI(BB, X86::SHLir32, 2,DestReg+1).addReg(SrcReg).addZImm(Amount);
1461 BuildMI(BB, X86::MOVir32, 1,DestReg ).addZImm(0);
1462 } else {
1463 unsigned Opcode = isSigned ? X86::SARir32 : X86::SHRir32;
1464 BuildMI(BB, Opcode, 2, DestReg).addReg(SrcReg+1).addZImm(Amount);
1465 BuildMI(BB, X86::MOVir32, 1, DestReg+1).addZImm(0);
1466 }
1467 }
1468 } else {
Chris Lattner9171ef52003-06-01 01:56:54 +00001469 unsigned TmpReg = makeAnotherReg(Type::IntTy);
1470
1471 if (!isLeftShift && isSigned) {
1472 // If this is a SHR of a Long, then we need to do funny sign extension
1473 // stuff. TmpReg gets the value to use as the high-part if we are
1474 // shifting more than 32 bits.
1475 BuildMI(BB, X86::SARir32, 2, TmpReg).addReg(SrcReg).addZImm(31);
1476 } else {
1477 // Other shifts use a fixed zero value if the shift is more than 32
1478 // bits.
1479 BuildMI(BB, X86::MOVir32, 1, TmpReg).addZImm(0);
1480 }
1481
1482 // Initialize CL with the shift amount...
1483 unsigned ShiftAmount = getReg(I.getOperand(1));
1484 BuildMI(BB, X86::MOVrr8, 1, X86::CL).addReg(ShiftAmount);
1485
1486 unsigned TmpReg2 = makeAnotherReg(Type::IntTy);
1487 unsigned TmpReg3 = makeAnotherReg(Type::IntTy);
1488 if (isLeftShift) {
1489 // TmpReg2 = shld inHi, inLo
1490 BuildMI(BB, X86::SHLDrr32, 2, TmpReg2).addReg(SrcReg+1).addReg(SrcReg);
1491 // TmpReg3 = shl inLo, CL
1492 BuildMI(BB, X86::SHLrr32, 1, TmpReg3).addReg(SrcReg);
1493
1494 // Set the flags to indicate whether the shift was by more than 32 bits.
1495 BuildMI(BB, X86::TESTri8, 2).addReg(X86::CL).addZImm(32);
1496
1497 // DestHi = (>32) ? TmpReg3 : TmpReg2;
1498 BuildMI(BB, X86::CMOVNErr32, 2,
1499 DestReg+1).addReg(TmpReg2).addReg(TmpReg3);
1500 // DestLo = (>32) ? TmpReg : TmpReg3;
1501 BuildMI(BB, X86::CMOVNErr32, 2, DestReg).addReg(TmpReg3).addReg(TmpReg);
1502 } else {
1503 // TmpReg2 = shrd inLo, inHi
1504 BuildMI(BB, X86::SHRDrr32, 2, TmpReg2).addReg(SrcReg).addReg(SrcReg+1);
1505 // TmpReg3 = s[ah]r inHi, CL
1506 BuildMI(BB, isSigned ? X86::SARrr32 : X86::SHRrr32, 1, TmpReg3)
1507 .addReg(SrcReg+1);
1508
1509 // Set the flags to indicate whether the shift was by more than 32 bits.
1510 BuildMI(BB, X86::TESTri8, 2).addReg(X86::CL).addZImm(32);
1511
1512 // DestLo = (>32) ? TmpReg3 : TmpReg2;
1513 BuildMI(BB, X86::CMOVNErr32, 2,
1514 DestReg).addReg(TmpReg2).addReg(TmpReg3);
1515
1516 // DestHi = (>32) ? TmpReg : TmpReg3;
1517 BuildMI(BB, X86::CMOVNErr32, 2,
1518 DestReg+1).addReg(TmpReg3).addReg(TmpReg);
1519 }
Brian Gaekea1719c92002-10-31 23:03:59 +00001520 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001521 return;
1522 }
Chris Lattnere9913f22002-11-02 01:41:55 +00001523
Chris Lattner3e130a22003-01-13 00:32:26 +00001524 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(I.getOperand(1))) {
1525 // The shift amount is constant, guaranteed to be a ubyte. Get its value.
1526 assert(CUI->getType() == Type::UByteTy && "Shift amount not a ubyte?");
Chris Lattnerb1761fc2002-11-02 01:15:18 +00001527
Chris Lattner3e130a22003-01-13 00:32:26 +00001528 const unsigned *Opc = ConstantOperand[isLeftShift*2+isSigned];
1529 BuildMI(BB, Opc[Class], 2, DestReg).addReg(SrcReg).addZImm(CUI->getValue());
1530 } else { // The shift amount is non-constant.
1531 BuildMI(BB, X86::MOVrr8, 1, X86::CL).addReg(getReg(I.getOperand(1)));
Chris Lattnerb1761fc2002-11-02 01:15:18 +00001532
Chris Lattner3e130a22003-01-13 00:32:26 +00001533 const unsigned *Opc = NonConstantOperand[isLeftShift*2+isSigned];
1534 BuildMI(BB, Opc[Class], 1, DestReg).addReg(SrcReg);
1535 }
1536}
Chris Lattnerb1761fc2002-11-02 01:15:18 +00001537
Chris Lattner3e130a22003-01-13 00:32:26 +00001538
Chris Lattner3e130a22003-01-13 00:32:26 +00001539/// EmitByteSwap - Byteswap SrcReg into DestReg.
1540///
1541void ISel::EmitByteSwap(unsigned DestReg, unsigned SrcReg, unsigned Class) {
1542 // Emit the byte swap instruction...
1543 switch (Class) {
1544 case cByte:
Misha Brukmanbaf06072003-04-22 17:54:23 +00001545 // No byteswap necessary for 8 bit value...
Chris Lattner3e130a22003-01-13 00:32:26 +00001546 BuildMI(BB, X86::MOVrr8, 1, DestReg).addReg(SrcReg);
1547 break;
1548 case cInt:
1549 // Use the 32 bit bswap instruction to do a 32 bit swap...
1550 BuildMI(BB, X86::BSWAPr32, 1, DestReg).addReg(SrcReg);
1551 break;
1552
1553 case cShort:
1554 // For 16 bit we have to use an xchg instruction, because there is no
Misha Brukmanbaf06072003-04-22 17:54:23 +00001555 // 16-bit bswap. XCHG is necessarily not in SSA form, so we force things
Chris Lattner3e130a22003-01-13 00:32:26 +00001556 // into AX to do the xchg.
1557 //
1558 BuildMI(BB, X86::MOVrr16, 1, X86::AX).addReg(SrcReg);
1559 BuildMI(BB, X86::XCHGrr8, 2).addReg(X86::AL, MOTy::UseAndDef)
1560 .addReg(X86::AH, MOTy::UseAndDef);
1561 BuildMI(BB, X86::MOVrr16, 1, DestReg).addReg(X86::AX);
1562 break;
1563 default: assert(0 && "Cannot byteswap this class!");
1564 }
Brian Gaekea1719c92002-10-31 23:03:59 +00001565}
1566
Chris Lattner06925362002-11-17 21:56:38 +00001567
Chris Lattner6fc3c522002-11-17 21:11:55 +00001568/// visitLoadInst - Implement LLVM load instructions in terms of the x86 'mov'
Chris Lattnere8f0d922002-12-24 00:03:11 +00001569/// instruction. The load and store instructions are the only place where we
1570/// need to worry about the memory layout of the target machine.
Chris Lattner6fc3c522002-11-17 21:11:55 +00001571///
1572void ISel::visitLoadInst(LoadInst &I) {
Chris Lattner94af4142002-12-25 05:13:53 +00001573 unsigned SrcAddrReg = getReg(I.getOperand(0));
1574 unsigned DestReg = getReg(I);
Chris Lattnere8f0d922002-12-24 00:03:11 +00001575
Brian Gaekebfedb912003-07-17 21:30:06 +00001576 unsigned Class = getClassB(I.getType());
Chris Lattner94af4142002-12-25 05:13:53 +00001577 switch (Class) {
Chris Lattner94af4142002-12-25 05:13:53 +00001578 case cFP: {
Chris Lattner3e130a22003-01-13 00:32:26 +00001579 MachineBasicBlock::iterator MBBI = BB->end();
Chris Lattner6c09db22003-10-20 04:11:23 +00001580 assert(I.getType() == Type::FloatTy || I.getType() == Type::DoubleTy &&
1581 "Unknown FP type!");
1582 unsigned Opc = I.getType() == Type::FloatTy ? X86::FLDr32 : X86::FLDr64;
1583 addDirectMem(BMI(BB, MBBI, Opc, 4, DestReg), SrcAddrReg);
Chris Lattner94af4142002-12-25 05:13:53 +00001584 return;
1585 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001586 case cLong: case cInt: case cShort: case cByte:
1587 break; // Integers of various sizes handled below
1588 default: assert(0 && "Unknown memory class!");
Chris Lattner94af4142002-12-25 05:13:53 +00001589 }
Chris Lattner6fc3c522002-11-17 21:11:55 +00001590
Chris Lattnere8f0d922002-12-24 00:03:11 +00001591 unsigned IReg = DestReg;
Chris Lattner94af4142002-12-25 05:13:53 +00001592
Chris Lattner3e130a22003-01-13 00:32:26 +00001593 static const unsigned Opcode[] = {
1594 X86::MOVmr8, X86::MOVmr16, X86::MOVmr32, 0, X86::MOVmr32
1595 };
Chris Lattnere8f0d922002-12-24 00:03:11 +00001596 addDirectMem(BuildMI(BB, Opcode[Class], 4, DestReg), SrcAddrReg);
1597
Chris Lattner3e130a22003-01-13 00:32:26 +00001598 // Handle long values now...
Chris Lattner6c09db22003-10-20 04:11:23 +00001599 if (Class == cLong)
1600 addRegOffset(BuildMI(BB, X86::MOVmr32, 4, DestReg+1), SrcAddrReg, 4);
Chris Lattner3e130a22003-01-13 00:32:26 +00001601}
1602
Chris Lattner6fc3c522002-11-17 21:11:55 +00001603/// visitStoreInst - Implement LLVM store instructions in terms of the x86 'mov'
1604/// instruction.
1605///
1606void ISel::visitStoreInst(StoreInst &I) {
Chris Lattner3e130a22003-01-13 00:32:26 +00001607 unsigned ValReg = getReg(I.getOperand(0));
1608 unsigned AddressReg = getReg(I.getOperand(1));
Chris Lattner6c09db22003-10-20 04:11:23 +00001609
1610 const Type *ValTy = I.getOperand(0)->getType();
1611 unsigned Class = getClassB(ValTy);
Chris Lattner94af4142002-12-25 05:13:53 +00001612 switch (Class) {
Chris Lattner3e130a22003-01-13 00:32:26 +00001613 case cLong:
Chris Lattner6c09db22003-10-20 04:11:23 +00001614 addDirectMem(BuildMI(BB, X86::MOVrm32, 1+4), AddressReg).addReg(ValReg);
1615 addRegOffset(BuildMI(BB, X86::MOVrm32, 1+4), AddressReg,4).addReg(ValReg+1);
Chris Lattner94af4142002-12-25 05:13:53 +00001616 return;
Chris Lattner6c09db22003-10-20 04:11:23 +00001617 case cFP: {
1618 unsigned StoreOpcode = ValTy == Type::FloatTy ? X86::FSTr32 : X86::FSTr64;
1619 addDirectMem(BuildMI(BB, StoreOpcode, 5), AddressReg).addReg(ValReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001620 return;
Chris Lattner6c09db22003-10-20 04:11:23 +00001621 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001622 case cInt: case cShort: case cByte:
1623 break; // Integers of various sizes handled below
1624 default: assert(0 && "Unknown memory class!");
Chris Lattner94af4142002-12-25 05:13:53 +00001625 }
1626
Chris Lattner94af4142002-12-25 05:13:53 +00001627 static const unsigned Opcode[] = { X86::MOVrm8, X86::MOVrm16, X86::MOVrm32 };
Chris Lattner6fc3c522002-11-17 21:11:55 +00001628 addDirectMem(BuildMI(BB, Opcode[Class], 1+4), AddressReg).addReg(ValReg);
1629}
1630
1631
Brian Gaekec11232a2002-11-26 10:43:30 +00001632/// visitCastInst - Here we have various kinds of copying with or without
1633/// sign extension going on.
Chris Lattner3e130a22003-01-13 00:32:26 +00001634void ISel::visitCastInst(CastInst &CI) {
Chris Lattnerf5854472003-06-21 16:01:24 +00001635 Value *Op = CI.getOperand(0);
1636 // If this is a cast from a 32-bit integer to a Long type, and the only uses
1637 // of the case are GEP instructions, then the cast does not need to be
1638 // generated explicitly, it will be folded into the GEP.
1639 if (CI.getType() == Type::LongTy &&
1640 (Op->getType() == Type::IntTy || Op->getType() == Type::UIntTy)) {
1641 bool AllUsesAreGEPs = true;
1642 for (Value::use_iterator I = CI.use_begin(), E = CI.use_end(); I != E; ++I)
1643 if (!isa<GetElementPtrInst>(*I)) {
1644 AllUsesAreGEPs = false;
1645 break;
1646 }
1647
1648 // No need to codegen this cast if all users are getelementptr instrs...
1649 if (AllUsesAreGEPs) return;
1650 }
1651
Chris Lattner548f61d2003-04-23 17:22:12 +00001652 unsigned DestReg = getReg(CI);
1653 MachineBasicBlock::iterator MI = BB->end();
Chris Lattnerf5854472003-06-21 16:01:24 +00001654 emitCastOperation(BB, MI, Op, CI.getType(), DestReg);
Chris Lattner548f61d2003-04-23 17:22:12 +00001655}
1656
1657/// emitCastOperation - Common code shared between visitCastInst and
1658/// constant expression cast support.
1659void ISel::emitCastOperation(MachineBasicBlock *BB,
1660 MachineBasicBlock::iterator &IP,
1661 Value *Src, const Type *DestTy,
1662 unsigned DestReg) {
Chris Lattner3907d112003-04-23 17:57:48 +00001663 unsigned SrcReg = getReg(Src, BB, IP);
Chris Lattner3e130a22003-01-13 00:32:26 +00001664 const Type *SrcTy = Src->getType();
1665 unsigned SrcClass = getClassB(SrcTy);
Chris Lattner3e130a22003-01-13 00:32:26 +00001666 unsigned DestClass = getClassB(DestTy);
Chris Lattner7d255892002-12-13 11:31:59 +00001667
Chris Lattner3e130a22003-01-13 00:32:26 +00001668 // Implement casts to bool by using compare on the operand followed by set if
1669 // not zero on the result.
1670 if (DestTy == Type::BoolTy) {
Chris Lattner20772542003-06-01 03:38:24 +00001671 switch (SrcClass) {
1672 case cByte:
1673 BMI(BB, IP, X86::TESTrr8, 2).addReg(SrcReg).addReg(SrcReg);
1674 break;
1675 case cShort:
1676 BMI(BB, IP, X86::TESTrr16, 2).addReg(SrcReg).addReg(SrcReg);
1677 break;
1678 case cInt:
1679 BMI(BB, IP, X86::TESTrr32, 2).addReg(SrcReg).addReg(SrcReg);
1680 break;
1681 case cLong: {
1682 unsigned TmpReg = makeAnotherReg(Type::IntTy);
1683 BMI(BB, IP, X86::ORrr32, 2, TmpReg).addReg(SrcReg).addReg(SrcReg+1);
1684 break;
1685 }
1686 case cFP:
1687 assert(0 && "FIXME: implement cast FP to bool");
1688 abort();
1689 }
1690
1691 // If the zero flag is not set, then the value is true, set the byte to
1692 // true.
Chris Lattner548f61d2003-04-23 17:22:12 +00001693 BMI(BB, IP, X86::SETNEr, 1, DestReg);
Chris Lattner94af4142002-12-25 05:13:53 +00001694 return;
1695 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001696
1697 static const unsigned RegRegMove[] = {
1698 X86::MOVrr8, X86::MOVrr16, X86::MOVrr32, X86::FpMOV, X86::MOVrr32
1699 };
1700
1701 // Implement casts between values of the same type class (as determined by
1702 // getClass) by using a register-to-register move.
1703 if (SrcClass == DestClass) {
1704 if (SrcClass <= cInt || (SrcClass == cFP && SrcTy == DestTy)) {
Chris Lattner548f61d2003-04-23 17:22:12 +00001705 BMI(BB, IP, RegRegMove[SrcClass], 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001706 } else if (SrcClass == cFP) {
1707 if (SrcTy == Type::FloatTy) { // double -> float
1708 assert(DestTy == Type::DoubleTy && "Unknown cFP member!");
Chris Lattner548f61d2003-04-23 17:22:12 +00001709 BMI(BB, IP, X86::FpMOV, 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001710 } else { // float -> double
1711 assert(SrcTy == Type::DoubleTy && DestTy == Type::FloatTy &&
1712 "Unknown cFP member!");
1713 // Truncate from double to float by storing to memory as short, then
1714 // reading it back.
1715 unsigned FltAlign = TM.getTargetData().getFloatAlignment();
1716 int FrameIdx = F->getFrameInfo()->CreateStackObject(4, FltAlign);
Chris Lattner548f61d2003-04-23 17:22:12 +00001717 addFrameReference(BMI(BB, IP, X86::FSTr32, 5), FrameIdx).addReg(SrcReg);
1718 addFrameReference(BMI(BB, IP, X86::FLDr32, 5, DestReg), FrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00001719 }
1720 } else if (SrcClass == cLong) {
Chris Lattner548f61d2003-04-23 17:22:12 +00001721 BMI(BB, IP, X86::MOVrr32, 1, DestReg).addReg(SrcReg);
1722 BMI(BB, IP, X86::MOVrr32, 1, DestReg+1).addReg(SrcReg+1);
Chris Lattner3e130a22003-01-13 00:32:26 +00001723 } else {
Chris Lattnerc53544a2003-05-12 20:16:58 +00001724 assert(0 && "Cannot handle this type of cast instruction!");
Chris Lattner548f61d2003-04-23 17:22:12 +00001725 abort();
Brian Gaeked474e9c2002-12-06 10:49:33 +00001726 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001727 return;
1728 }
1729
1730 // Handle cast of SMALLER int to LARGER int using a move with sign extension
1731 // or zero extension, depending on whether the source type was signed.
1732 if (SrcClass <= cInt && (DestClass <= cInt || DestClass == cLong) &&
1733 SrcClass < DestClass) {
1734 bool isLong = DestClass == cLong;
1735 if (isLong) DestClass = cInt;
1736
1737 static const unsigned Opc[][4] = {
1738 { X86::MOVSXr16r8, X86::MOVSXr32r8, X86::MOVSXr32r16, X86::MOVrr32 }, // s
1739 { X86::MOVZXr16r8, X86::MOVZXr32r8, X86::MOVZXr32r16, X86::MOVrr32 } // u
1740 };
1741
1742 bool isUnsigned = SrcTy->isUnsigned();
Chris Lattner548f61d2003-04-23 17:22:12 +00001743 BMI(BB, IP, Opc[isUnsigned][SrcClass + DestClass - 1], 1,
1744 DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001745
1746 if (isLong) { // Handle upper 32 bits as appropriate...
1747 if (isUnsigned) // Zero out top bits...
Chris Lattner548f61d2003-04-23 17:22:12 +00001748 BMI(BB, IP, X86::MOVir32, 1, DestReg+1).addZImm(0);
Chris Lattner3e130a22003-01-13 00:32:26 +00001749 else // Sign extend bottom half...
Chris Lattner548f61d2003-04-23 17:22:12 +00001750 BMI(BB, IP, X86::SARir32, 2, DestReg+1).addReg(DestReg).addZImm(31);
Brian Gaeked474e9c2002-12-06 10:49:33 +00001751 }
Chris Lattner3e130a22003-01-13 00:32:26 +00001752 return;
1753 }
1754
1755 // Special case long -> int ...
1756 if (SrcClass == cLong && DestClass == cInt) {
Chris Lattner548f61d2003-04-23 17:22:12 +00001757 BMI(BB, IP, X86::MOVrr32, 1, DestReg).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001758 return;
1759 }
1760
1761 // Handle cast of LARGER int to SMALLER int using a move to EAX followed by a
1762 // move out of AX or AL.
1763 if ((SrcClass <= cInt || SrcClass == cLong) && DestClass <= cInt
1764 && SrcClass > DestClass) {
1765 static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX, 0, X86::EAX };
Chris Lattner548f61d2003-04-23 17:22:12 +00001766 BMI(BB, IP, RegRegMove[SrcClass], 1, AReg[SrcClass]).addReg(SrcReg);
1767 BMI(BB, IP, RegRegMove[DestClass], 1, DestReg).addReg(AReg[DestClass]);
Chris Lattner3e130a22003-01-13 00:32:26 +00001768 return;
1769 }
1770
1771 // Handle casts from integer to floating point now...
1772 if (DestClass == cFP) {
Chris Lattner4d5a50a2003-05-12 20:36:13 +00001773 // Promote the integer to a type supported by FLD. We do this because there
1774 // are no unsigned FLD instructions, so we must promote an unsigned value to
1775 // a larger signed value, then use FLD on the larger value.
1776 //
1777 const Type *PromoteType = 0;
1778 unsigned PromoteOpcode;
1779 switch (SrcTy->getPrimitiveID()) {
1780 case Type::BoolTyID:
1781 case Type::SByteTyID:
1782 // We don't have the facilities for directly loading byte sized data from
1783 // memory (even signed). Promote it to 16 bits.
1784 PromoteType = Type::ShortTy;
1785 PromoteOpcode = X86::MOVSXr16r8;
1786 break;
1787 case Type::UByteTyID:
1788 PromoteType = Type::ShortTy;
1789 PromoteOpcode = X86::MOVZXr16r8;
1790 break;
1791 case Type::UShortTyID:
1792 PromoteType = Type::IntTy;
1793 PromoteOpcode = X86::MOVZXr32r16;
1794 break;
1795 case Type::UIntTyID: {
1796 // Make a 64 bit temporary... and zero out the top of it...
1797 unsigned TmpReg = makeAnotherReg(Type::LongTy);
1798 BMI(BB, IP, X86::MOVrr32, 1, TmpReg).addReg(SrcReg);
1799 BMI(BB, IP, X86::MOVir32, 1, TmpReg+1).addZImm(0);
1800 SrcTy = Type::LongTy;
1801 SrcClass = cLong;
1802 SrcReg = TmpReg;
1803 break;
1804 }
1805 case Type::ULongTyID:
1806 assert("FIXME: not implemented: cast ulong X to fp type!");
1807 default: // No promotion needed...
1808 break;
1809 }
1810
1811 if (PromoteType) {
1812 unsigned TmpReg = makeAnotherReg(PromoteType);
Chris Lattner548f61d2003-04-23 17:22:12 +00001813 BMI(BB, IP, SrcTy->isSigned() ? X86::MOVSXr16r8 : X86::MOVZXr16r8,
1814 1, TmpReg).addReg(SrcReg);
Chris Lattner4d5a50a2003-05-12 20:36:13 +00001815 SrcTy = PromoteType;
1816 SrcClass = getClass(PromoteType);
Chris Lattner3e130a22003-01-13 00:32:26 +00001817 SrcReg = TmpReg;
1818 }
1819
1820 // Spill the integer to memory and reload it from there...
1821 int FrameIdx =
1822 F->getFrameInfo()->CreateStackObject(SrcTy, TM.getTargetData());
1823
1824 if (SrcClass == cLong) {
Chris Lattner548f61d2003-04-23 17:22:12 +00001825 addFrameReference(BMI(BB, IP, X86::MOVrm32, 5), FrameIdx).addReg(SrcReg);
1826 addFrameReference(BMI(BB, IP, X86::MOVrm32, 5),
Chris Lattner3e130a22003-01-13 00:32:26 +00001827 FrameIdx, 4).addReg(SrcReg+1);
1828 } else {
1829 static const unsigned Op1[] = { X86::MOVrm8, X86::MOVrm16, X86::MOVrm32 };
Chris Lattner548f61d2003-04-23 17:22:12 +00001830 addFrameReference(BMI(BB, IP, Op1[SrcClass], 5), FrameIdx).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001831 }
1832
1833 static const unsigned Op2[] =
Chris Lattner4d5a50a2003-05-12 20:36:13 +00001834 { 0/*byte*/, X86::FILDr16, X86::FILDr32, 0/*FP*/, X86::FILDr64 };
Chris Lattner548f61d2003-04-23 17:22:12 +00001835 addFrameReference(BMI(BB, IP, Op2[SrcClass], 5, DestReg), FrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00001836 return;
1837 }
1838
1839 // Handle casts from floating point to integer now...
1840 if (SrcClass == cFP) {
1841 // Change the floating point control register to use "round towards zero"
1842 // mode when truncating to an integer value.
1843 //
1844 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
Chris Lattner548f61d2003-04-23 17:22:12 +00001845 addFrameReference(BMI(BB, IP, X86::FNSTCWm16, 4), CWFrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00001846
1847 // Load the old value of the high byte of the control word...
1848 unsigned HighPartOfCW = makeAnotherReg(Type::UByteTy);
Chris Lattner548f61d2003-04-23 17:22:12 +00001849 addFrameReference(BMI(BB, IP, X86::MOVmr8, 4, HighPartOfCW), CWFrameIdx, 1);
Chris Lattner3e130a22003-01-13 00:32:26 +00001850
1851 // Set the high part to be round to zero...
Chris Lattner548f61d2003-04-23 17:22:12 +00001852 addFrameReference(BMI(BB, IP, X86::MOVim8, 5), CWFrameIdx, 1).addZImm(12);
Chris Lattner3e130a22003-01-13 00:32:26 +00001853
1854 // Reload the modified control word now...
Chris Lattner548f61d2003-04-23 17:22:12 +00001855 addFrameReference(BMI(BB, IP, X86::FLDCWm16, 4), CWFrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00001856
1857 // Restore the memory image of control word to original value
Chris Lattner548f61d2003-04-23 17:22:12 +00001858 addFrameReference(BMI(BB, IP, X86::MOVrm8, 5),
Chris Lattner3e130a22003-01-13 00:32:26 +00001859 CWFrameIdx, 1).addReg(HighPartOfCW);
1860
1861 // We don't have the facilities for directly storing byte sized data to
1862 // memory. Promote it to 16 bits. We also must promote unsigned values to
1863 // larger classes because we only have signed FP stores.
1864 unsigned StoreClass = DestClass;
1865 const Type *StoreTy = DestTy;
1866 if (StoreClass == cByte || DestTy->isUnsigned())
1867 switch (StoreClass) {
1868 case cByte: StoreTy = Type::ShortTy; StoreClass = cShort; break;
1869 case cShort: StoreTy = Type::IntTy; StoreClass = cInt; break;
1870 case cInt: StoreTy = Type::LongTy; StoreClass = cLong; break;
Brian Gaeked4615052003-07-18 20:23:43 +00001871 // The following treatment of cLong may not be perfectly right,
1872 // but it survives chains of casts of the form
1873 // double->ulong->double.
1874 case cLong: StoreTy = Type::LongTy; StoreClass = cLong; break;
Chris Lattner3e130a22003-01-13 00:32:26 +00001875 default: assert(0 && "Unknown store class!");
1876 }
1877
1878 // Spill the integer to memory and reload it from there...
1879 int FrameIdx =
1880 F->getFrameInfo()->CreateStackObject(StoreTy, TM.getTargetData());
1881
1882 static const unsigned Op1[] =
1883 { 0, X86::FISTr16, X86::FISTr32, 0, X86::FISTPr64 };
Chris Lattner548f61d2003-04-23 17:22:12 +00001884 addFrameReference(BMI(BB, IP, Op1[StoreClass], 5), FrameIdx).addReg(SrcReg);
Chris Lattner3e130a22003-01-13 00:32:26 +00001885
1886 if (DestClass == cLong) {
Chris Lattner548f61d2003-04-23 17:22:12 +00001887 addFrameReference(BMI(BB, IP, X86::MOVmr32, 4, DestReg), FrameIdx);
1888 addFrameReference(BMI(BB, IP, X86::MOVmr32, 4, DestReg+1), FrameIdx, 4);
Chris Lattner3e130a22003-01-13 00:32:26 +00001889 } else {
1890 static const unsigned Op2[] = { X86::MOVmr8, X86::MOVmr16, X86::MOVmr32 };
Chris Lattner548f61d2003-04-23 17:22:12 +00001891 addFrameReference(BMI(BB, IP, Op2[DestClass], 4, DestReg), FrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00001892 }
1893
1894 // Reload the original control word now...
Chris Lattner548f61d2003-04-23 17:22:12 +00001895 addFrameReference(BMI(BB, IP, X86::FLDCWm16, 4), CWFrameIdx);
Chris Lattner3e130a22003-01-13 00:32:26 +00001896 return;
1897 }
1898
Brian Gaeked474e9c2002-12-06 10:49:33 +00001899 // Anything we haven't handled already, we can't (yet) handle at all.
Chris Lattnerc53544a2003-05-12 20:16:58 +00001900 assert(0 && "Unhandled cast instruction!");
Chris Lattner548f61d2003-04-23 17:22:12 +00001901 abort();
Brian Gaekefa8d5712002-11-22 11:07:01 +00001902}
Brian Gaekea1719c92002-10-31 23:03:59 +00001903
Chris Lattner73815062003-10-18 05:56:40 +00001904/// visitVANextInst - Implement the va_next instruction...
Chris Lattnereca195e2003-05-08 19:44:13 +00001905///
Chris Lattner73815062003-10-18 05:56:40 +00001906void ISel::visitVANextInst(VANextInst &I) {
1907 unsigned VAList = getReg(I.getOperand(0));
Chris Lattnereca195e2003-05-08 19:44:13 +00001908 unsigned DestReg = getReg(I);
1909
Chris Lattnereca195e2003-05-08 19:44:13 +00001910 unsigned Size;
Chris Lattner73815062003-10-18 05:56:40 +00001911 switch (I.getArgType()->getPrimitiveID()) {
Chris Lattnereca195e2003-05-08 19:44:13 +00001912 default:
1913 std::cerr << I;
Chris Lattner73815062003-10-18 05:56:40 +00001914 assert(0 && "Error: bad type for va_next instruction!");
Chris Lattnereca195e2003-05-08 19:44:13 +00001915 return;
1916 case Type::PointerTyID:
1917 case Type::UIntTyID:
1918 case Type::IntTyID:
1919 Size = 4;
Chris Lattnereca195e2003-05-08 19:44:13 +00001920 break;
1921 case Type::ULongTyID:
1922 case Type::LongTyID:
Chris Lattnereca195e2003-05-08 19:44:13 +00001923 case Type::DoubleTyID:
1924 Size = 8;
Chris Lattnereca195e2003-05-08 19:44:13 +00001925 break;
1926 }
1927
1928 // Increment the VAList pointer...
Chris Lattner73815062003-10-18 05:56:40 +00001929 BuildMI(BB, X86::ADDri32, 2, DestReg).addReg(VAList).addZImm(Size);
1930}
Chris Lattnereca195e2003-05-08 19:44:13 +00001931
Chris Lattner73815062003-10-18 05:56:40 +00001932void ISel::visitVAArgInst(VAArgInst &I) {
1933 unsigned VAList = getReg(I.getOperand(0));
1934 unsigned DestReg = getReg(I);
1935
1936 switch (I.getType()->getPrimitiveID()) {
1937 default:
1938 std::cerr << I;
1939 assert(0 && "Error: bad type for va_next instruction!");
1940 return;
1941 case Type::PointerTyID:
1942 case Type::UIntTyID:
1943 case Type::IntTyID:
1944 addDirectMem(BuildMI(BB, X86::MOVmr32, 4, DestReg), VAList);
1945 break;
1946 case Type::ULongTyID:
1947 case Type::LongTyID:
1948 addDirectMem(BuildMI(BB, X86::MOVmr32, 4, DestReg), VAList);
1949 addRegOffset(BuildMI(BB, X86::MOVmr32, 4, DestReg+1), VAList, 4);
1950 break;
1951 case Type::DoubleTyID:
1952 addDirectMem(BuildMI(BB, X86::FLDr64, 4, DestReg), VAList);
1953 break;
1954 }
Chris Lattnereca195e2003-05-08 19:44:13 +00001955}
1956
1957
Chris Lattner3e130a22003-01-13 00:32:26 +00001958void ISel::visitGetElementPtrInst(GetElementPtrInst &I) {
1959 unsigned outputReg = getReg(I);
Chris Lattnerf08ad9f2002-12-13 10:50:40 +00001960 MachineBasicBlock::iterator MI = BB->end();
1961 emitGEPOperation(BB, MI, I.getOperand(0),
Brian Gaeke68b1edc2002-12-16 04:23:29 +00001962 I.op_begin()+1, I.op_end(), outputReg);
Chris Lattnerc0812d82002-12-13 06:56:29 +00001963}
1964
Brian Gaeke71794c02002-12-13 11:22:48 +00001965void ISel::emitGEPOperation(MachineBasicBlock *MBB,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +00001966 MachineBasicBlock::iterator &IP,
Chris Lattner333b2fa2002-12-13 10:09:43 +00001967 Value *Src, User::op_iterator IdxBegin,
Chris Lattnerc0812d82002-12-13 06:56:29 +00001968 User::op_iterator IdxEnd, unsigned TargetReg) {
1969 const TargetData &TD = TM.getTargetData();
1970 const Type *Ty = Src->getType();
Chris Lattner3e130a22003-01-13 00:32:26 +00001971 unsigned BaseReg = getReg(Src, MBB, IP);
Chris Lattnerc0812d82002-12-13 06:56:29 +00001972
Brian Gaeke20244b72002-12-12 15:33:40 +00001973 // GEPs have zero or more indices; we must perform a struct access
1974 // or array access for each one.
Chris Lattnerc0812d82002-12-13 06:56:29 +00001975 for (GetElementPtrInst::op_iterator oi = IdxBegin,
1976 oe = IdxEnd; oi != oe; ++oi) {
Brian Gaeke20244b72002-12-12 15:33:40 +00001977 Value *idx = *oi;
Chris Lattner3e130a22003-01-13 00:32:26 +00001978 unsigned NextReg = BaseReg;
Chris Lattner065faeb2002-12-28 20:24:02 +00001979 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
Brian Gaeke20244b72002-12-12 15:33:40 +00001980 // It's a struct access. idx is the index into the structure,
1981 // which names the field. This index must have ubyte type.
Chris Lattner065faeb2002-12-28 20:24:02 +00001982 const ConstantUInt *CUI = cast<ConstantUInt>(idx);
1983 assert(CUI->getType() == Type::UByteTy
Brian Gaeke20244b72002-12-12 15:33:40 +00001984 && "Funny-looking structure index in GEP");
1985 // Use the TargetData structure to pick out what the layout of
1986 // the structure is in memory. Since the structure index must
1987 // be constant, we can get its value and use it to find the
1988 // right byte offset from the StructLayout class's list of
1989 // structure member offsets.
Chris Lattnere8f0d922002-12-24 00:03:11 +00001990 unsigned idxValue = CUI->getValue();
Chris Lattner3e130a22003-01-13 00:32:26 +00001991 unsigned FieldOff = TD.getStructLayout(StTy)->MemberOffsets[idxValue];
1992 if (FieldOff) {
1993 NextReg = makeAnotherReg(Type::UIntTy);
1994 // Emit an ADD to add FieldOff to the basePtr.
1995 BMI(MBB, IP, X86::ADDri32, 2,NextReg).addReg(BaseReg).addZImm(FieldOff);
1996 }
Brian Gaeke20244b72002-12-12 15:33:40 +00001997 // The next type is the member of the structure selected by the
1998 // index.
Chris Lattner065faeb2002-12-28 20:24:02 +00001999 Ty = StTy->getElementTypes()[idxValue];
2000 } else if (const SequentialType *SqTy = cast<SequentialType>(Ty)) {
Brian Gaeke20244b72002-12-12 15:33:40 +00002001 // It's an array or pointer access: [ArraySize x ElementType].
Chris Lattner8a307e82002-12-16 19:32:50 +00002002
Brian Gaeke20244b72002-12-12 15:33:40 +00002003 // idx is the index into the array. Unlike with structure
2004 // indices, we may not know its actual value at code-generation
2005 // time.
Chris Lattner8a307e82002-12-16 19:32:50 +00002006 assert(idx->getType() == Type::LongTy && "Bad GEP array index!");
2007
Chris Lattnerf5854472003-06-21 16:01:24 +00002008 // Most GEP instructions use a [cast (int/uint) to LongTy] as their
2009 // operand on X86. Handle this case directly now...
2010 if (CastInst *CI = dyn_cast<CastInst>(idx))
2011 if (CI->getOperand(0)->getType() == Type::IntTy ||
2012 CI->getOperand(0)->getType() == Type::UIntTy)
2013 idx = CI->getOperand(0);
2014
Chris Lattner3e130a22003-01-13 00:32:26 +00002015 // We want to add BaseReg to(idxReg * sizeof ElementType). First, we
Chris Lattner8a307e82002-12-16 19:32:50 +00002016 // must find the size of the pointed-to type (Not coincidentally, the next
2017 // type is the type of the elements in the array).
2018 Ty = SqTy->getElementType();
2019 unsigned elementSize = TD.getTypeSize(Ty);
2020
2021 // If idxReg is a constant, we don't need to perform the multiply!
2022 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(idx)) {
Chris Lattner3e130a22003-01-13 00:32:26 +00002023 if (!CSI->isNullValue()) {
Chris Lattner8a307e82002-12-16 19:32:50 +00002024 unsigned Offset = elementSize*CSI->getValue();
Chris Lattner3e130a22003-01-13 00:32:26 +00002025 NextReg = makeAnotherReg(Type::UIntTy);
2026 BMI(MBB, IP, X86::ADDri32, 2,NextReg).addReg(BaseReg).addZImm(Offset);
Chris Lattner8a307e82002-12-16 19:32:50 +00002027 }
2028 } else if (elementSize == 1) {
2029 // If the element size is 1, we don't have to multiply, just add
2030 unsigned idxReg = getReg(idx, MBB, IP);
Chris Lattner3e130a22003-01-13 00:32:26 +00002031 NextReg = makeAnotherReg(Type::UIntTy);
2032 BMI(MBB, IP, X86::ADDrr32, 2, NextReg).addReg(BaseReg).addReg(idxReg);
Chris Lattner8a307e82002-12-16 19:32:50 +00002033 } else {
2034 unsigned idxReg = getReg(idx, MBB, IP);
2035 unsigned OffsetReg = makeAnotherReg(Type::UIntTy);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002036
2037 doMultiplyConst(MBB, IP, OffsetReg, Type::IntTy, idxReg, elementSize);
2038
Chris Lattner8a307e82002-12-16 19:32:50 +00002039 // Emit an ADD to add OffsetReg to the basePtr.
Chris Lattner3e130a22003-01-13 00:32:26 +00002040 NextReg = makeAnotherReg(Type::UIntTy);
2041 BMI(MBB, IP, X86::ADDrr32, 2,NextReg).addReg(BaseReg).addReg(OffsetReg);
Chris Lattner8a307e82002-12-16 19:32:50 +00002042 }
Brian Gaeke20244b72002-12-12 15:33:40 +00002043 }
2044 // Now that we are here, further indices refer to subtypes of this
Chris Lattner3e130a22003-01-13 00:32:26 +00002045 // one, so we don't need to worry about BaseReg itself, anymore.
2046 BaseReg = NextReg;
Brian Gaeke20244b72002-12-12 15:33:40 +00002047 }
2048 // After we have processed all the indices, the result is left in
Chris Lattner3e130a22003-01-13 00:32:26 +00002049 // BaseReg. Move it to the register where we were expected to
Brian Gaeke20244b72002-12-12 15:33:40 +00002050 // put the answer. A 32-bit move should do it, because we are in
2051 // ILP32 land.
Chris Lattner3e130a22003-01-13 00:32:26 +00002052 BMI(MBB, IP, X86::MOVrr32, 1, TargetReg).addReg(BaseReg);
Brian Gaeke20244b72002-12-12 15:33:40 +00002053}
2054
2055
Chris Lattner065faeb2002-12-28 20:24:02 +00002056/// visitAllocaInst - If this is a fixed size alloca, allocate space from the
2057/// frame manager, otherwise do it the hard way.
2058///
2059void ISel::visitAllocaInst(AllocaInst &I) {
Brian Gaekee48ec012002-12-13 06:46:31 +00002060 // Find the data size of the alloca inst's getAllocatedType.
Chris Lattner065faeb2002-12-28 20:24:02 +00002061 const Type *Ty = I.getAllocatedType();
2062 unsigned TySize = TM.getTargetData().getTypeSize(Ty);
2063
2064 // If this is a fixed size alloca in the entry block for the function,
2065 // statically stack allocate the space.
2066 //
2067 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(I.getArraySize())) {
2068 if (I.getParent() == I.getParent()->getParent()->begin()) {
2069 TySize *= CUI->getValue(); // Get total allocated size...
2070 unsigned Alignment = TM.getTargetData().getTypeAlignment(Ty);
2071
2072 // Create a new stack object using the frame manager...
2073 int FrameIdx = F->getFrameInfo()->CreateStackObject(TySize, Alignment);
2074 addFrameReference(BuildMI(BB, X86::LEAr32, 5, getReg(I)), FrameIdx);
2075 return;
2076 }
2077 }
2078
2079 // Create a register to hold the temporary result of multiplying the type size
2080 // constant by the variable amount.
2081 unsigned TotalSizeReg = makeAnotherReg(Type::UIntTy);
2082 unsigned SrcReg1 = getReg(I.getArraySize());
Chris Lattner065faeb2002-12-28 20:24:02 +00002083
2084 // TotalSizeReg = mul <numelements>, <TypeSize>
2085 MachineBasicBlock::iterator MBBI = BB->end();
Chris Lattnerb2acc512003-10-19 21:09:10 +00002086 doMultiplyConst(BB, MBBI, TotalSizeReg, Type::UIntTy, SrcReg1, TySize);
Chris Lattner065faeb2002-12-28 20:24:02 +00002087
2088 // AddedSize = add <TotalSizeReg>, 15
2089 unsigned AddedSizeReg = makeAnotherReg(Type::UIntTy);
2090 BuildMI(BB, X86::ADDri32, 2, AddedSizeReg).addReg(TotalSizeReg).addZImm(15);
2091
2092 // AlignedSize = and <AddedSize>, ~15
2093 unsigned AlignedSize = makeAnotherReg(Type::UIntTy);
2094 BuildMI(BB, X86::ANDri32, 2, AlignedSize).addReg(AddedSizeReg).addZImm(~15);
2095
Brian Gaekee48ec012002-12-13 06:46:31 +00002096 // Subtract size from stack pointer, thereby allocating some space.
Chris Lattner3e130a22003-01-13 00:32:26 +00002097 BuildMI(BB, X86::SUBrr32, 2, X86::ESP).addReg(X86::ESP).addReg(AlignedSize);
Chris Lattner065faeb2002-12-28 20:24:02 +00002098
Brian Gaekee48ec012002-12-13 06:46:31 +00002099 // Put a pointer to the space into the result register, by copying
2100 // the stack pointer.
Chris Lattner065faeb2002-12-28 20:24:02 +00002101 BuildMI(BB, X86::MOVrr32, 1, getReg(I)).addReg(X86::ESP);
2102
Misha Brukman48196b32003-05-03 02:18:17 +00002103 // Inform the Frame Information that we have just allocated a variable-sized
Chris Lattner065faeb2002-12-28 20:24:02 +00002104 // object.
2105 F->getFrameInfo()->CreateVariableSizedObject();
Brian Gaeke20244b72002-12-12 15:33:40 +00002106}
Chris Lattner3e130a22003-01-13 00:32:26 +00002107
2108/// visitMallocInst - Malloc instructions are code generated into direct calls
2109/// to the library malloc.
2110///
2111void ISel::visitMallocInst(MallocInst &I) {
2112 unsigned AllocSize = TM.getTargetData().getTypeSize(I.getAllocatedType());
2113 unsigned Arg;
2114
2115 if (ConstantUInt *C = dyn_cast<ConstantUInt>(I.getOperand(0))) {
2116 Arg = getReg(ConstantUInt::get(Type::UIntTy, C->getValue() * AllocSize));
2117 } else {
2118 Arg = makeAnotherReg(Type::UIntTy);
Chris Lattnerb2acc512003-10-19 21:09:10 +00002119 unsigned Op0Reg = getReg(I.getOperand(0));
Chris Lattner3e130a22003-01-13 00:32:26 +00002120 MachineBasicBlock::iterator MBBI = BB->end();
Chris Lattnerb2acc512003-10-19 21:09:10 +00002121 doMultiplyConst(BB, MBBI, Arg, Type::UIntTy, Op0Reg, AllocSize);
Chris Lattner3e130a22003-01-13 00:32:26 +00002122 }
2123
2124 std::vector<ValueRecord> Args;
2125 Args.push_back(ValueRecord(Arg, Type::UIntTy));
2126 MachineInstr *TheCall = BuildMI(X86::CALLpcrel32,
2127 1).addExternalSymbol("malloc", true);
2128 doCall(ValueRecord(getReg(I), I.getType()), TheCall, Args);
2129}
2130
2131
2132/// visitFreeInst - Free instructions are code gen'd to call the free libc
2133/// function.
2134///
2135void ISel::visitFreeInst(FreeInst &I) {
2136 std::vector<ValueRecord> Args;
Chris Lattner5e2cb8b2003-08-04 02:12:48 +00002137 Args.push_back(ValueRecord(I.getOperand(0)));
Chris Lattner3e130a22003-01-13 00:32:26 +00002138 MachineInstr *TheCall = BuildMI(X86::CALLpcrel32,
2139 1).addExternalSymbol("free", true);
2140 doCall(ValueRecord(0, Type::VoidTy), TheCall, Args);
2141}
2142
Brian Gaeke20244b72002-12-12 15:33:40 +00002143
Chris Lattnerd281de22003-07-26 23:49:58 +00002144/// createX86SimpleInstructionSelector - This pass converts an LLVM function
Chris Lattnerb4f68ed2002-10-29 22:37:54 +00002145/// into a machine code representation is a very simple peep-hole fashion. The
Chris Lattner72614082002-10-25 22:55:53 +00002146/// generated code sucks but the implementation is nice and simple.
2147///
Brian Gaeke19df3872003-08-13 18:18:15 +00002148FunctionPass *createX86SimpleInstructionSelector(TargetMachine &TM) {
Chris Lattnerb4f68ed2002-10-29 22:37:54 +00002149 return new ISel(TM);
Chris Lattner72614082002-10-25 22:55:53 +00002150}