blob: 0d050c93329c1e57cd0d46bb6da3b4344046258c [file] [log] [blame]
Chris Lattner72614082002-10-25 22:55:53 +00001//===-- InstSelectSimple.cpp - A simple instruction selector for x86 ------===//
2//
3// This file defines a simple peephole instruction selector for the x86 platform
4//
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"
11#include "llvm/iTerminators.h"
Brian Gaeke1749d632002-11-07 17:59:21 +000012#include "llvm/iOperators.h"
Brian Gaekea1719c92002-10-31 23:03:59 +000013#include "llvm/iOther.h"
Chris Lattner51b49a92002-11-02 19:45:49 +000014#include "llvm/iPHINode.h"
Chris Lattner6fc3c522002-11-17 21:11:55 +000015#include "llvm/iMemory.h"
Chris Lattner72614082002-10-25 22:55:53 +000016#include "llvm/Type.h"
Brian Gaeke20244b72002-12-12 15:33:40 +000017#include "llvm/DerivedTypes.h"
Chris Lattnerc5291f52002-10-27 21:16:59 +000018#include "llvm/Constants.h"
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000019#include "llvm/Pass.h"
Chris Lattner341a9372002-10-29 17:43:55 +000020#include "llvm/CodeGen/MachineFunction.h"
Misha Brukmand2cc0172002-11-20 00:58:23 +000021#include "llvm/CodeGen/MachineInstrBuilder.h"
22#include "llvm/Target/TargetMachine.h"
Chris Lattner72614082002-10-25 22:55:53 +000023#include "llvm/Support/InstVisitor.h"
Misha Brukmand2cc0172002-11-20 00:58:23 +000024#include "llvm/Target/MRegisterInfo.h"
25#include <map>
Chris Lattner72614082002-10-25 22:55:53 +000026
Chris Lattner06925362002-11-17 21:56:38 +000027using namespace MOTy; // Get Use, Def, UseAndDef
28
Chris Lattner333b2fa2002-12-13 10:09:43 +000029
30/// BMI - A special BuildMI variant that takes an iterator to insert the
31/// instruction at as well as a basic block.
Brian Gaeke71794c02002-12-13 11:22:48 +000032/// this is the version for when you have a destination register in mind.
33inline static MachineInstrBuilder BMI(MachineBasicBlock *MBB,
Chris Lattner333b2fa2002-12-13 10:09:43 +000034 MachineBasicBlock::iterator &I,
35 MachineOpCode Opcode,
36 unsigned NumOperands,
37 unsigned DestReg) {
Chris Lattnerd7d38722002-12-13 13:04:04 +000038 assert(I >= MBB->begin() && I <= MBB->end() && "Bad iterator!");
Chris Lattner333b2fa2002-12-13 10:09:43 +000039 MachineInstr *MI = new MachineInstr(Opcode, NumOperands+1, true, true);
Brian Gaeke71794c02002-12-13 11:22:48 +000040 I = ++MBB->insert(I, MI);
Chris Lattner333b2fa2002-12-13 10:09:43 +000041 return MachineInstrBuilder(MI).addReg(DestReg, MOTy::Def);
42}
43
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000044/// BMI - A special BuildMI variant that takes an iterator to insert the
45/// instruction at as well as a basic block.
Brian Gaeke71794c02002-12-13 11:22:48 +000046inline static MachineInstrBuilder BMI(MachineBasicBlock *MBB,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000047 MachineBasicBlock::iterator &I,
48 MachineOpCode Opcode,
49 unsigned NumOperands) {
Chris Lattnerd7d38722002-12-13 13:04:04 +000050 assert(I > MBB->begin() && I <= MBB->end() && "Bad iterator!");
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000051 MachineInstr *MI = new MachineInstr(Opcode, NumOperands, true, true);
Brian Gaeke71794c02002-12-13 11:22:48 +000052 I = ++MBB->insert(I, MI);
Chris Lattnerf08ad9f2002-12-13 10:50:40 +000053 return MachineInstrBuilder(MI);
54}
55
Chris Lattner333b2fa2002-12-13 10:09:43 +000056
Chris Lattner72614082002-10-25 22:55:53 +000057namespace {
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000058 struct ISel : public FunctionPass, InstVisitor<ISel> {
59 TargetMachine &TM;
Chris Lattner341a9372002-10-29 17:43:55 +000060 MachineFunction *F; // The function we are compiling into
61 MachineBasicBlock *BB; // The current MBB we are compiling
Chris Lattner72614082002-10-25 22:55:53 +000062
63 unsigned CurReg;
64 std::map<Value*, unsigned> RegMap; // Mapping between Val's and SSA Regs
65
Chris Lattner333b2fa2002-12-13 10:09:43 +000066 // MBBMap - Mapping between LLVM BB -> Machine BB
67 std::map<const BasicBlock*, MachineBasicBlock*> MBBMap;
68
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000069 ISel(TargetMachine &tm)
70 : TM(tm), F(0), BB(0), CurReg(MRegisterInfo::FirstVirtualRegister) {}
Chris Lattner72614082002-10-25 22:55:53 +000071
72 /// runOnFunction - Top level implementation of instruction selection for
73 /// the entire function.
74 ///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000075 bool runOnFunction(Function &Fn) {
Chris Lattner36b36032002-10-29 23:40:58 +000076 F = &MachineFunction::construct(&Fn, TM);
Chris Lattner333b2fa2002-12-13 10:09:43 +000077
78 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
79 F->getBasicBlockList().push_back(MBBMap[I] = new MachineBasicBlock(I));
80
81 // Instruction select everything except PHI nodes
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000082 visit(Fn);
Chris Lattner333b2fa2002-12-13 10:09:43 +000083
84 // Select the PHI nodes
85 SelectPHINodes();
86
Chris Lattner72614082002-10-25 22:55:53 +000087 RegMap.clear();
Chris Lattner333b2fa2002-12-13 10:09:43 +000088 MBBMap.clear();
Chris Lattner94e8ee22002-11-21 17:26:58 +000089 CurReg = MRegisterInfo::FirstVirtualRegister;
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000090 F = 0;
Chris Lattner72614082002-10-25 22:55:53 +000091 return false; // We never modify the LLVM itself.
92 }
93
Chris Lattnerf0eb7be2002-12-15 21:13:40 +000094 virtual const char *getPassName() const {
95 return "X86 Simple Instruction Selection";
96 }
97
Chris Lattner72614082002-10-25 22:55:53 +000098 /// visitBasicBlock - This method is called when we are visiting a new basic
Chris Lattner33f53b52002-10-29 20:48:56 +000099 /// block. This simply creates a new MachineBasicBlock to emit code into
100 /// and adds it to the current MachineFunction. Subsequent visit* for
101 /// instructions will be invoked for all instructions in the basic block.
Chris Lattner72614082002-10-25 22:55:53 +0000102 ///
103 void visitBasicBlock(BasicBlock &LLVM_BB) {
Chris Lattner333b2fa2002-12-13 10:09:43 +0000104 BB = MBBMap[&LLVM_BB];
Chris Lattner72614082002-10-25 22:55:53 +0000105 }
106
Chris Lattner333b2fa2002-12-13 10:09:43 +0000107
108 /// SelectPHINodes - Insert machine code to generate phis. This is tricky
109 /// because we have to generate our sources into the source basic blocks,
110 /// not the current one.
111 ///
112 void SelectPHINodes();
113
Chris Lattner72614082002-10-25 22:55:53 +0000114 // Visitation methods for various instructions. These methods simply emit
115 // fixed X86 code for each instruction.
116 //
Brian Gaekefa8d5712002-11-22 11:07:01 +0000117
118 // Control flow operators
Chris Lattner72614082002-10-25 22:55:53 +0000119 void visitReturnInst(ReturnInst &RI);
Chris Lattner2df035b2002-11-02 19:27:56 +0000120 void visitBranchInst(BranchInst &BI);
Brian Gaekefa8d5712002-11-22 11:07:01 +0000121 void visitCallInst(CallInst &I);
Chris Lattnere2954c82002-11-02 20:04:26 +0000122
123 // Arithmetic operators
Chris Lattnerf01729e2002-11-02 20:54:46 +0000124 void visitSimpleBinary(BinaryOperator &B, unsigned OpcodeClass);
Chris Lattner68aad932002-11-02 20:13:22 +0000125 void visitAdd(BinaryOperator &B) { visitSimpleBinary(B, 0); }
126 void visitSub(BinaryOperator &B) { visitSimpleBinary(B, 1); }
Brian Gaeke20244b72002-12-12 15:33:40 +0000127 void doMultiply(unsigned destReg, const Type *resultType,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000128 unsigned op0Reg, unsigned op1Reg,
129 MachineBasicBlock *MBB,
130 MachineBasicBlock::iterator &MBBI);
Chris Lattnerca9671d2002-11-02 20:28:58 +0000131 void visitMul(BinaryOperator &B);
Chris Lattnere2954c82002-11-02 20:04:26 +0000132
Chris Lattnerf01729e2002-11-02 20:54:46 +0000133 void visitDiv(BinaryOperator &B) { visitDivRem(B); }
134 void visitRem(BinaryOperator &B) { visitDivRem(B); }
135 void visitDivRem(BinaryOperator &B);
136
Chris Lattnere2954c82002-11-02 20:04:26 +0000137 // Bitwise operators
Chris Lattner68aad932002-11-02 20:13:22 +0000138 void visitAnd(BinaryOperator &B) { visitSimpleBinary(B, 2); }
139 void visitOr (BinaryOperator &B) { visitSimpleBinary(B, 3); }
140 void visitXor(BinaryOperator &B) { visitSimpleBinary(B, 4); }
Chris Lattnere2954c82002-11-02 20:04:26 +0000141
142 // Binary comparison operators
Chris Lattner05093a52002-11-21 15:52:38 +0000143 void visitSetCCInst(SetCondInst &I, unsigned OpNum);
144 void visitSetEQ(SetCondInst &I) { visitSetCCInst(I, 0); }
145 void visitSetNE(SetCondInst &I) { visitSetCCInst(I, 1); }
146 void visitSetLT(SetCondInst &I) { visitSetCCInst(I, 2); }
147 void visitSetGT(SetCondInst &I) { visitSetCCInst(I, 3); }
148 void visitSetLE(SetCondInst &I) { visitSetCCInst(I, 4); }
149 void visitSetGE(SetCondInst &I) { visitSetCCInst(I, 5); }
Chris Lattner6fc3c522002-11-17 21:11:55 +0000150
151 // Memory Instructions
152 void visitLoadInst(LoadInst &I);
153 void visitStoreInst(StoreInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000154 void visitGetElementPtrInst(GetElementPtrInst &I);
155 void visitMallocInst(MallocInst &I);
Brian Gaekee48ec012002-12-13 06:46:31 +0000156 void visitFreeInst(FreeInst &I);
Brian Gaeke20244b72002-12-12 15:33:40 +0000157 void visitAllocaInst(AllocaInst &I);
158
Chris Lattnere2954c82002-11-02 20:04:26 +0000159 // Other operators
Brian Gaekea1719c92002-10-31 23:03:59 +0000160 void visitShiftInst(ShiftInst &I);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000161 void visitPHINode(PHINode &I) {} // PHI nodes handled by second pass
Brian Gaekefa8d5712002-11-22 11:07:01 +0000162 void visitCastInst(CastInst &I);
Chris Lattner72614082002-10-25 22:55:53 +0000163
164 void visitInstruction(Instruction &I) {
165 std::cerr << "Cannot instruction select: " << I;
166 abort();
167 }
168
Brian Gaeke95780cc2002-12-13 07:56:18 +0000169 /// promote32 - Make a value 32-bits wide, and put it somewhere.
170 void promote32 (const unsigned targetReg, Value *v);
171
172 // emitGEPOperation - Common code shared between visitGetElementPtrInst and
Chris Lattnerc0812d82002-12-13 06:56:29 +0000173 // constant expression GEP support.
174 //
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000175 void emitGEPOperation(MachineBasicBlock *BB, MachineBasicBlock::iterator&IP,
Chris Lattner333b2fa2002-12-13 10:09:43 +0000176 Value *Src, User::op_iterator IdxBegin,
Chris Lattnerc0812d82002-12-13 06:56:29 +0000177 User::op_iterator IdxEnd, unsigned TargetReg);
178
Chris Lattnerc5291f52002-10-27 21:16:59 +0000179 /// copyConstantToRegister - Output the instructions required to put the
180 /// specified constant into the specified register.
181 ///
Chris Lattner333b2fa2002-12-13 10:09:43 +0000182 void copyConstantToRegister(Constant *C, unsigned Reg,
183 MachineBasicBlock *MBB,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000184 MachineBasicBlock::iterator &MBBI);
Chris Lattnerc5291f52002-10-27 21:16:59 +0000185
Brian Gaeke20244b72002-12-12 15:33:40 +0000186 /// makeAnotherReg - This method returns the next register number
187 /// we haven't yet used.
Chris Lattnerc0812d82002-12-13 06:56:29 +0000188 unsigned makeAnotherReg(const Type *Ty) {
189 // Add the mapping of regnumber => reg class to MachineFunction
190 F->addRegMap(CurReg, TM.getRegisterInfo()->getRegClassForType(Ty));
191 return CurReg++;
Brian Gaeke20244b72002-12-12 15:33:40 +0000192 }
193
Chris Lattner72614082002-10-25 22:55:53 +0000194 /// getReg - This method turns an LLVM value into a register number. This
195 /// is guaranteed to produce the same register number for a particular value
196 /// every time it is queried.
197 ///
198 unsigned getReg(Value &V) { return getReg(&V); } // Allow references
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000199 unsigned getReg(Value *V) {
200 // Just append to the end of the current bb.
201 MachineBasicBlock::iterator It = BB->end();
202 return getReg(V, BB, It);
203 }
Brian Gaeke71794c02002-12-13 11:22:48 +0000204 unsigned getReg(Value *V, MachineBasicBlock *MBB,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000205 MachineBasicBlock::iterator &IPt) {
Chris Lattner72614082002-10-25 22:55:53 +0000206 unsigned &Reg = RegMap[V];
Misha Brukmand2cc0172002-11-20 00:58:23 +0000207 if (Reg == 0) {
Chris Lattnerc0812d82002-12-13 06:56:29 +0000208 Reg = makeAnotherReg(V->getType());
Misha Brukmand2cc0172002-11-20 00:58:23 +0000209 RegMap[V] = Reg;
Misha Brukmand2cc0172002-11-20 00:58:23 +0000210 }
Chris Lattner72614082002-10-25 22:55:53 +0000211
Chris Lattner6f8fd252002-10-27 21:23:43 +0000212 // If this operand is a constant, emit the code to copy the constant into
213 // the register here...
214 //
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000215 if (Constant *C = dyn_cast<Constant>(V)) {
Brian Gaeke992447f2002-12-13 11:39:18 +0000216 copyConstantToRegister(C, Reg, MBB, IPt);
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000217 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
218 // Move the address of the global into the register
Brian Gaeke71794c02002-12-13 11:22:48 +0000219 BMI(MBB, IPt, X86::MOVir32, 1, Reg).addReg(GV);
Chris Lattnerd6c4cfa2002-12-04 17:15:34 +0000220 } else if (Argument *A = dyn_cast<Argument>(V)) {
Brian Gaeke95780cc2002-12-13 07:56:18 +0000221 // Find the position of the argument in the argument list.
222 const Function *f = F->getFunction ();
Brian Gaekeed6902c2002-12-13 09:28:50 +0000223 // The function's arguments look like this:
224 // [EBP] -- copy of old EBP
225 // [EBP + 4] -- return address
226 // [EBP + 8] -- first argument (leftmost lexically)
227 // So we want to start with counter = 2.
Chris Lattner333b2fa2002-12-13 10:09:43 +0000228 int counter = 2, argPos = -1;
Brian Gaeke95780cc2002-12-13 07:56:18 +0000229 for (Function::const_aiterator ai = f->abegin (), ae = f->aend ();
230 ai != ae; ++ai) {
Brian Gaeke95780cc2002-12-13 07:56:18 +0000231 if (&(*ai) == A) {
Chris Lattner333b2fa2002-12-13 10:09:43 +0000232 argPos = counter;
Brian Gaekeed6902c2002-12-13 09:28:50 +0000233 break; // Only need to find it once. ;-)
Brian Gaeke95780cc2002-12-13 07:56:18 +0000234 }
Brian Gaekeed6902c2002-12-13 09:28:50 +0000235 ++counter;
Brian Gaeke95780cc2002-12-13 07:56:18 +0000236 }
Chris Lattner333b2fa2002-12-13 10:09:43 +0000237 assert (argPos != -1
Brian Gaeke95780cc2002-12-13 07:56:18 +0000238 && "Argument not found in current function's argument list");
Chris Lattner333b2fa2002-12-13 10:09:43 +0000239 // Load it out of the stack frame at EBP + 4*argPos.
Brian Gaeke71794c02002-12-13 11:22:48 +0000240 addRegOffset(BMI(MBB, IPt, X86::MOVmr32, 4, Reg), X86::EBP, 4*argPos);
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000241 }
Chris Lattnerc5291f52002-10-27 21:16:59 +0000242
Chris Lattner72614082002-10-25 22:55:53 +0000243 return Reg;
244 }
Chris Lattner72614082002-10-25 22:55:53 +0000245 };
246}
247
Chris Lattner43189d12002-11-17 20:07:45 +0000248/// TypeClass - Used by the X86 backend to group LLVM types by their basic X86
249/// Representation.
250///
251enum TypeClass {
252 cByte, cShort, cInt, cLong, cFloat, cDouble
253};
254
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000255/// getClass - Turn a primitive type into a "class" number which is based on the
256/// size of the type, and whether or not it is floating point.
257///
Chris Lattner43189d12002-11-17 20:07:45 +0000258static inline TypeClass getClass(const Type *Ty) {
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000259 switch (Ty->getPrimitiveID()) {
260 case Type::SByteTyID:
Chris Lattner43189d12002-11-17 20:07:45 +0000261 case Type::UByteTyID: return cByte; // Byte operands are class #0
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000262 case Type::ShortTyID:
Chris Lattner43189d12002-11-17 20:07:45 +0000263 case Type::UShortTyID: return cShort; // Short operands are class #1
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000264 case Type::IntTyID:
265 case Type::UIntTyID:
Chris Lattner43189d12002-11-17 20:07:45 +0000266 case Type::PointerTyID: return cInt; // Int's and pointers are class #2
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000267
268 case Type::LongTyID:
Chris Lattnerc0812d82002-12-13 06:56:29 +0000269 case Type::ULongTyID: //return cLong; // Longs are class #3
270 return cInt; // FIXME: LONGS ARE TREATED AS INTS!
271
Chris Lattner43189d12002-11-17 20:07:45 +0000272 case Type::FloatTyID: return cFloat; // Float is class #4
273 case Type::DoubleTyID: return cDouble; // Doubles are class #5
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000274 default:
275 assert(0 && "Invalid type to getClass!");
Chris Lattner43189d12002-11-17 20:07:45 +0000276 return cByte; // not reached
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000277 }
278}
Chris Lattnerc5291f52002-10-27 21:16:59 +0000279
Chris Lattner6b993cc2002-12-15 08:02:15 +0000280// getClassB - Just like getClass, but treat boolean values as bytes.
281static inline TypeClass getClassB(const Type *Ty) {
282 if (Ty == Type::BoolTy) return cByte;
283 return getClass(Ty);
284}
285
Chris Lattner06925362002-11-17 21:56:38 +0000286
Chris Lattnerc5291f52002-10-27 21:16:59 +0000287/// copyConstantToRegister - Output the instructions required to put the
288/// specified constant into the specified register.
289///
Chris Lattner333b2fa2002-12-13 10:09:43 +0000290void ISel::copyConstantToRegister(Constant *C, unsigned R,
Brian Gaeke71794c02002-12-13 11:22:48 +0000291 MachineBasicBlock *MBB,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000292 MachineBasicBlock::iterator &IP) {
Chris Lattnerc0812d82002-12-13 06:56:29 +0000293 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
294 if (CE->getOpcode() == Instruction::GetElementPtr) {
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000295 emitGEPOperation(MBB, IP, CE->getOperand(0),
Chris Lattner333b2fa2002-12-13 10:09:43 +0000296 CE->op_begin()+1, CE->op_end(), R);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000297 return;
298 }
299
Brian Gaeke20244b72002-12-12 15:33:40 +0000300 std::cerr << "Offending expr: " << C << "\n";
Chris Lattnerc0812d82002-12-13 06:56:29 +0000301 assert (0 && "Constant expressions not yet handled!\n");
Brian Gaeke20244b72002-12-12 15:33:40 +0000302 }
Chris Lattnerc5291f52002-10-27 21:16:59 +0000303
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000304 if (C->getType()->isIntegral()) {
Chris Lattner6b993cc2002-12-15 08:02:15 +0000305 unsigned Class = getClassB(C->getType());
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000306 assert(Class != 3 && "Type not handled yet!");
307
308 static const unsigned IntegralOpcodeTab[] = {
309 X86::MOVir8, X86::MOVir16, X86::MOVir32
310 };
311
Chris Lattner6b993cc2002-12-15 08:02:15 +0000312 if (C->getType() == Type::BoolTy) {
313 BMI(MBB, IP, X86::MOVir8, 1, R).addZImm(C == ConstantBool::True);
314 } else if (C->getType()->isSigned()) {
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000315 ConstantSInt *CSI = cast<ConstantSInt>(C);
Brian Gaeke71794c02002-12-13 11:22:48 +0000316 BMI(MBB, IP, IntegralOpcodeTab[Class], 1, R).addSImm(CSI->getValue());
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000317 } else {
318 ConstantUInt *CUI = cast<ConstantUInt>(C);
Brian Gaeke71794c02002-12-13 11:22:48 +0000319 BMI(MBB, IP, IntegralOpcodeTab[Class], 1, R).addZImm(CUI->getValue());
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000320 }
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000321 } else if (isa<ConstantPointerNull>(C)) {
Brian Gaeke20244b72002-12-12 15:33:40 +0000322 // Copy zero (null pointer) to the register.
Brian Gaeke71794c02002-12-13 11:22:48 +0000323 BMI(MBB, IP, X86::MOVir32, 1, R).addZImm(0);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000324 } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(C)) {
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000325 unsigned SrcReg = getReg(CPR->getValue(), MBB, IP);
Brian Gaeke71794c02002-12-13 11:22:48 +0000326 BMI(MBB, IP, X86::MOVrr32, 1, R).addReg(SrcReg);
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000327 } else {
Brian Gaeke20244b72002-12-12 15:33:40 +0000328 std::cerr << "Offending constant: " << C << "\n";
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000329 assert(0 && "Type not handled yet!");
Chris Lattnerc5291f52002-10-27 21:16:59 +0000330 }
331}
332
Chris Lattner333b2fa2002-12-13 10:09:43 +0000333/// SelectPHINodes - Insert machine code to generate phis. This is tricky
334/// because we have to generate our sources into the source basic blocks, not
335/// the current one.
336///
337void ISel::SelectPHINodes() {
338 const Function &LF = *F->getFunction(); // The LLVM function...
339 for (Function::const_iterator I = LF.begin(), E = LF.end(); I != E; ++I) {
340 const BasicBlock *BB = I;
341 MachineBasicBlock *MBB = MBBMap[I];
342
343 // Loop over all of the PHI nodes in the LLVM basic block...
344 unsigned NumPHIs = 0;
345 for (BasicBlock::const_iterator I = BB->begin();
346 PHINode *PN = (PHINode*)dyn_cast<PHINode>(&*I); ++I) {
347 // Create a new machine instr PHI node, and insert it.
348 MachineInstr *MI = BuildMI(X86::PHI, PN->getNumOperands(), getReg(*PN));
349 MBB->insert(MBB->begin()+NumPHIs++, MI); // Insert it at the top of the BB
350
351 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
352 MachineBasicBlock *PredMBB = MBBMap[PN->getIncomingBlock(i)];
353
354 // Get the incoming value into a virtual register. If it is not already
355 // available in a virtual register, insert the computation code into
356 // PredMBB
Chris Lattner92053632002-12-13 11:52:34 +0000357 //
358
359 MachineBasicBlock::iterator PI = PredMBB->begin();
360 while ((*PI)->getOpcode() == X86::PHI) ++PI;
361
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000362 MI->addRegOperand(getReg(PN->getIncomingValue(i), PredMBB, PI));
Chris Lattner6b993cc2002-12-15 08:02:15 +0000363 MI->addMachineBasicBlockOperand(PredMBB);
Chris Lattner333b2fa2002-12-13 10:09:43 +0000364 }
365 }
366 }
367}
368
369
Chris Lattner06925362002-11-17 21:56:38 +0000370
Brian Gaeke1749d632002-11-07 17:59:21 +0000371/// SetCC instructions - Here we just emit boilerplate code to set a byte-sized
372/// register, then move it to wherever the result should be.
373/// We handle FP setcc instructions by pushing them, doing a
374/// compare-and-pop-twice, and then copying the concodes to the main
375/// processor's concodes (I didn't make this up, it's in the Intel manual)
376///
Chris Lattner05093a52002-11-21 15:52:38 +0000377void ISel::visitSetCCInst(SetCondInst &I, unsigned OpNum) {
Brian Gaeke1749d632002-11-07 17:59:21 +0000378 // The arguments are already supposed to be of the same type.
Chris Lattner05093a52002-11-21 15:52:38 +0000379 const Type *CompTy = I.getOperand(0)->getType();
380 unsigned reg1 = getReg(I.getOperand(0));
381 unsigned reg2 = getReg(I.getOperand(1));
382
383 unsigned Class = getClass(CompTy);
384 switch (Class) {
385 // Emit: cmp <var1>, <var2> (do the comparison). We can
386 // compare 8-bit with 8-bit, 16-bit with 16-bit, 32-bit with
387 // 32-bit.
388 case cByte:
389 BuildMI (BB, X86::CMPrr8, 2).addReg (reg1).addReg (reg2);
390 break;
391 case cShort:
392 BuildMI (BB, X86::CMPrr16, 2).addReg (reg1).addReg (reg2);
393 break;
394 case cInt:
395 BuildMI (BB, X86::CMPrr32, 2).addReg (reg1).addReg (reg2);
396 break;
397
398 // Push the variables on the stack with fldl opcodes.
399 // FIXME: assuming var1, var2 are in memory, if not, spill to
400 // stack first
401 case cFloat: // Floats
Brian Gaeke20244b72002-12-12 15:33:40 +0000402 BuildMI (BB, X86::FLDr32, 1).addReg (reg1);
403 BuildMI (BB, X86::FLDr32, 1).addReg (reg2);
Chris Lattner05093a52002-11-21 15:52:38 +0000404 break;
405 case cDouble: // Doubles
Brian Gaeke20244b72002-12-12 15:33:40 +0000406 BuildMI (BB, X86::FLDr64, 1).addReg (reg1);
407 BuildMI (BB, X86::FLDr64, 1).addReg (reg2);
Chris Lattner05093a52002-11-21 15:52:38 +0000408 break;
409 case cLong:
410 default:
411 visitInstruction(I);
412 }
413
414 if (CompTy->isFloatingPoint()) {
415 // (Non-trapping) compare and pop twice.
416 BuildMI (BB, X86::FUCOMPP, 0);
417 // Move fp status word (concodes) to ax.
418 BuildMI (BB, X86::FNSTSWr8, 1, X86::AX);
419 // Load real concodes from ax.
420 BuildMI (BB, X86::SAHF, 1).addReg(X86::AH);
421 }
422
Brian Gaeke1749d632002-11-07 17:59:21 +0000423 // Emit setOp instruction (extract concode; clobbers ax),
424 // using the following mapping:
425 // LLVM -> X86 signed X86 unsigned
426 // ----- ----- -----
427 // seteq -> sete sete
428 // setne -> setne setne
429 // setlt -> setl setb
430 // setgt -> setg seta
431 // setle -> setle setbe
432 // setge -> setge setae
Chris Lattner05093a52002-11-21 15:52:38 +0000433
434 static const unsigned OpcodeTab[2][6] = {
Chris Lattner4b4e9dd2002-11-21 16:19:42 +0000435 {X86::SETEr, X86::SETNEr, X86::SETBr, X86::SETAr, X86::SETBEr, X86::SETAEr},
436 {X86::SETEr, X86::SETNEr, X86::SETLr, X86::SETGr, X86::SETLEr, X86::SETGEr},
Chris Lattner05093a52002-11-21 15:52:38 +0000437 };
438
439 BuildMI(BB, OpcodeTab[CompTy->isSigned()][OpNum], 0, X86::AL);
440
Brian Gaeke1749d632002-11-07 17:59:21 +0000441 // Put it in the result using a move.
Chris Lattner05093a52002-11-21 15:52:38 +0000442 BuildMI (BB, X86::MOVrr8, 1, getReg(I)).addReg(X86::AL);
Brian Gaeke1749d632002-11-07 17:59:21 +0000443}
Chris Lattner51b49a92002-11-02 19:45:49 +0000444
Brian Gaekec2505982002-11-30 11:57:28 +0000445/// promote32 - Emit instructions to turn a narrow operand into a 32-bit-wide
446/// operand, in the specified target register.
447void
Chris Lattnerc0812d82002-12-13 06:56:29 +0000448ISel::promote32 (unsigned targetReg, Value *v)
Brian Gaekec2505982002-11-30 11:57:28 +0000449{
450 unsigned vReg = getReg (v);
451 unsigned Class = getClass (v->getType ());
452 bool isUnsigned = v->getType ()->isUnsigned ();
453 assert (((Class == cByte) || (Class == cShort) || (Class == cInt))
454 && "Unpromotable operand class in promote32");
455 switch (Class)
456 {
457 case cByte:
458 // Extend value into target register (8->32)
459 if (isUnsigned)
460 BuildMI (BB, X86::MOVZXr32r8, 1, targetReg).addReg (vReg);
461 else
462 BuildMI (BB, X86::MOVSXr32r8, 1, targetReg).addReg (vReg);
463 break;
464 case cShort:
465 // Extend value into target register (16->32)
466 if (isUnsigned)
467 BuildMI (BB, X86::MOVZXr32r16, 1, targetReg).addReg (vReg);
468 else
469 BuildMI (BB, X86::MOVSXr32r16, 1, targetReg).addReg (vReg);
470 break;
471 case cInt:
472 // Move value into target register (32->32)
473 BuildMI (BB, X86::MOVrr32, 1, targetReg).addReg (vReg);
474 break;
475 }
476}
Chris Lattnerc5291f52002-10-27 21:16:59 +0000477
Chris Lattner72614082002-10-25 22:55:53 +0000478/// 'ret' instruction - Here we are interested in meeting the x86 ABI. As such,
479/// we have the following possibilities:
480///
481/// ret void: No return value, simply emit a 'ret' instruction
482/// ret sbyte, ubyte : Extend value into EAX and return
483/// ret short, ushort: Extend value into EAX and return
484/// ret int, uint : Move value into EAX and return
485/// ret pointer : Move value into EAX and return
Chris Lattner06925362002-11-17 21:56:38 +0000486/// ret long, ulong : Move value into EAX/EDX and return
487/// ret float/double : Top of FP stack
Chris Lattner72614082002-10-25 22:55:53 +0000488///
Brian Gaekec2505982002-11-30 11:57:28 +0000489void
490ISel::visitReturnInst (ReturnInst &I)
491{
492 if (I.getNumOperands () == 0)
493 {
494 // Emit a 'ret' instruction
495 BuildMI (BB, X86::RET, 0);
496 return;
497 }
498 Value *rv = I.getOperand (0);
499 unsigned Class = getClass (rv->getType ());
500 switch (Class)
501 {
502 // integral return values: extend or move into EAX and return.
503 case cByte:
504 case cShort:
505 case cInt:
506 promote32 (X86::EAX, rv);
507 break;
508 // ret float/double: top of FP stack
509 // FLD <val>
510 case cFloat: // Floats
Brian Gaeke20244b72002-12-12 15:33:40 +0000511 BuildMI (BB, X86::FLDr32, 1).addReg (getReg (rv));
Brian Gaekec2505982002-11-30 11:57:28 +0000512 break;
513 case cDouble: // Doubles
Brian Gaeke20244b72002-12-12 15:33:40 +0000514 BuildMI (BB, X86::FLDr64, 1).addReg (getReg (rv));
Brian Gaekec2505982002-11-30 11:57:28 +0000515 break;
516 case cLong:
517 // ret long: use EAX(least significant 32 bits)/EDX (most
518 // significant 32)...uh, I think so Brain, but how do i call
519 // up the two parts of the value from inside this mouse
520 // cage? *zort*
521 default:
522 visitInstruction (I);
523 }
Chris Lattner43189d12002-11-17 20:07:45 +0000524 // Emit a 'ret' instruction
Brian Gaekec2505982002-11-30 11:57:28 +0000525 BuildMI (BB, X86::RET, 0);
Chris Lattner72614082002-10-25 22:55:53 +0000526}
527
Chris Lattner51b49a92002-11-02 19:45:49 +0000528/// visitBranchInst - Handle conditional and unconditional branches here. Note
529/// that since code layout is frozen at this point, that if we are trying to
530/// jump to a block that is the immediate successor of the current block, we can
531/// just make a fall-through. (but we don't currently).
532///
Brian Gaekec03a0cb2002-11-19 09:08:47 +0000533void
534ISel::visitBranchInst (BranchInst & BI)
535{
536 if (BI.isConditional ())
537 {
538 BasicBlock *ifTrue = BI.getSuccessor (0);
539 BasicBlock *ifFalse = BI.getSuccessor (1); // this is really unobvious
Chris Lattner2df035b2002-11-02 19:27:56 +0000540
Brian Gaekec03a0cb2002-11-19 09:08:47 +0000541 // simplest thing I can think of: compare condition with zero,
542 // followed by jump-if-equal to ifFalse, and jump-if-nonequal to
543 // ifTrue
544 unsigned int condReg = getReg (BI.getCondition ());
Chris Lattner97ad9e12002-11-21 01:59:50 +0000545 BuildMI (BB, X86::CMPri8, 2).addReg (condReg).addZImm (0);
Brian Gaekec03a0cb2002-11-19 09:08:47 +0000546 BuildMI (BB, X86::JNE, 1).addPCDisp (BI.getSuccessor (0));
547 BuildMI (BB, X86::JE, 1).addPCDisp (BI.getSuccessor (1));
548 }
549 else // unconditional branch
550 {
551 BuildMI (BB, X86::JMP, 1).addPCDisp (BI.getSuccessor (0));
552 }
Chris Lattner2df035b2002-11-02 19:27:56 +0000553}
554
Brian Gaeke18a20212002-11-29 12:01:58 +0000555/// visitCallInst - Push args on stack and do a procedure call instruction.
556void
557ISel::visitCallInst (CallInst & CI)
558{
Misha Brukman0d2cf3a2002-12-04 19:22:53 +0000559 // keep a counter of how many bytes we pushed on the stack
560 unsigned bytesPushed = 0;
561
Brian Gaeke18a20212002-11-29 12:01:58 +0000562 // Push the arguments on the stack in reverse order, as specified by
563 // the ABI.
Chris Lattnerd852c152002-12-03 20:30:12 +0000564 for (unsigned i = CI.getNumOperands()-1; i >= 1; --i)
Brian Gaeke18a20212002-11-29 12:01:58 +0000565 {
566 Value *v = CI.getOperand (i);
Brian Gaeke18a20212002-11-29 12:01:58 +0000567 switch (getClass (v->getType ()))
568 {
Brian Gaekec2505982002-11-30 11:57:28 +0000569 case cByte:
570 case cShort:
Brian Gaekebb25f2f2002-12-03 00:51:09 +0000571 // Promote V to 32 bits wide, and move the result into EAX,
572 // then push EAX.
Brian Gaekec2505982002-11-30 11:57:28 +0000573 promote32 (X86::EAX, v);
574 BuildMI (BB, X86::PUSHr32, 1).addReg (X86::EAX);
Misha Brukman0d2cf3a2002-12-04 19:22:53 +0000575 bytesPushed += 4;
Brian Gaekec2505982002-11-30 11:57:28 +0000576 break;
Brian Gaeke18a20212002-11-29 12:01:58 +0000577 case cInt:
Chris Lattner33ced562002-12-04 06:56:56 +0000578 case cFloat: {
579 unsigned Reg = getReg(v);
580 BuildMI (BB, X86::PUSHr32, 1).addReg(Reg);
Misha Brukman0d2cf3a2002-12-04 19:22:53 +0000581 bytesPushed += 4;
Brian Gaeke18a20212002-11-29 12:01:58 +0000582 break;
Chris Lattner33ced562002-12-04 06:56:56 +0000583 }
Brian Gaeke18a20212002-11-29 12:01:58 +0000584 default:
Brian Gaekebb25f2f2002-12-03 00:51:09 +0000585 // FIXME: long/ulong/double args not handled.
Brian Gaeke18a20212002-11-29 12:01:58 +0000586 visitInstruction (CI);
587 break;
588 }
589 }
Chris Lattner6e49a4b2002-12-13 14:13:27 +0000590
591 if (Function *F = CI.getCalledFunction()) {
592 // Emit a CALL instruction with PC-relative displacement.
593 BuildMI(BB, X86::CALLpcrel32, 1).addPCDisp(F);
594 } else {
595 unsigned Reg = getReg(CI.getCalledValue());
596 BuildMI(BB, X86::CALLr32, 1).addReg(Reg);
597 }
Misha Brukman0d2cf3a2002-12-04 19:22:53 +0000598
599 // Adjust the stack by `bytesPushed' amount if non-zero
600 if (bytesPushed > 0)
601 BuildMI (BB, X86::ADDri32, 2).addReg(X86::ESP).addZImm(bytesPushed);
Chris Lattnera3243642002-12-04 23:45:28 +0000602
603 // If there is a return value, scavenge the result from the location the call
604 // leaves it in...
605 //
Chris Lattner4fa1acc2002-12-04 23:50:28 +0000606 if (CI.getType() != Type::VoidTy) {
Brian Gaeke20244b72002-12-12 15:33:40 +0000607 unsigned resultTypeClass = getClass (CI.getType ());
608 switch (resultTypeClass) {
609 case cByte:
610 case cShort:
611 case cInt: {
612 // Integral results are in %eax, or the appropriate portion
613 // thereof.
614 static const unsigned regRegMove[] = {
615 X86::MOVrr8, X86::MOVrr16, X86::MOVrr32
616 };
617 static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX };
618 BuildMI (BB, regRegMove[resultTypeClass], 1,
619 getReg (CI)).addReg (AReg[resultTypeClass]);
Chris Lattner4fa1acc2002-12-04 23:50:28 +0000620 break;
Brian Gaeke20244b72002-12-12 15:33:40 +0000621 }
622 case cFloat:
623 // Floating-point return values live in %st(0) (i.e., the top of
624 // the FP stack.) The general way to approach this is to do a
625 // FSTP to save the top of the FP stack on the real stack, then
626 // do a MOV to load the top of the real stack into the target
627 // register.
628 visitInstruction (CI); // FIXME: add the right args for the calls below
629 // BuildMI (BB, X86::FSTPm32, 0);
630 // BuildMI (BB, X86::MOVmr32, 0);
631 break;
Chris Lattner4fa1acc2002-12-04 23:50:28 +0000632 default:
633 std::cerr << "Cannot get return value for call of type '"
634 << *CI.getType() << "'\n";
635 visitInstruction(CI);
636 }
Chris Lattnera3243642002-12-04 23:45:28 +0000637 }
Brian Gaekefa8d5712002-11-22 11:07:01 +0000638}
Chris Lattner2df035b2002-11-02 19:27:56 +0000639
Chris Lattner68aad932002-11-02 20:13:22 +0000640/// visitSimpleBinary - Implement simple binary operators for integral types...
641/// OperatorClass is one of: 0 for Add, 1 for Sub, 2 for And, 3 for Or,
642/// 4 for Xor.
643///
644void ISel::visitSimpleBinary(BinaryOperator &B, unsigned OperatorClass) {
645 if (B.getType() == Type::BoolTy) // FIXME: Handle bools for logicals
Chris Lattnere2954c82002-11-02 20:04:26 +0000646 visitInstruction(B);
647
648 unsigned Class = getClass(B.getType());
649 if (Class > 2) // FIXME: Handle longs
650 visitInstruction(B);
651
652 static const unsigned OpcodeTab[][4] = {
Chris Lattner68aad932002-11-02 20:13:22 +0000653 // Arithmetic operators
654 { X86::ADDrr8, X86::ADDrr16, X86::ADDrr32, 0 }, // ADD
655 { X86::SUBrr8, X86::SUBrr16, X86::SUBrr32, 0 }, // SUB
656
657 // Bitwise operators
Chris Lattnere2954c82002-11-02 20:04:26 +0000658 { X86::ANDrr8, X86::ANDrr16, X86::ANDrr32, 0 }, // AND
659 { X86:: ORrr8, X86:: ORrr16, X86:: ORrr32, 0 }, // OR
660 { X86::XORrr8, X86::XORrr16, X86::XORrr32, 0 }, // XOR
661 };
662
663 unsigned Opcode = OpcodeTab[OperatorClass][Class];
664 unsigned Op0r = getReg(B.getOperand(0));
665 unsigned Op1r = getReg(B.getOperand(1));
666 BuildMI(BB, Opcode, 2, getReg(B)).addReg(Op0r).addReg(Op1r);
667}
668
Brian Gaeke20244b72002-12-12 15:33:40 +0000669/// doMultiply - Emit appropriate instructions to multiply together
670/// the registers op0Reg and op1Reg, and put the result in destReg.
671/// The type of the result should be given as resultType.
672void
673ISel::doMultiply(unsigned destReg, const Type *resultType,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000674 unsigned op0Reg, unsigned op1Reg,
675 MachineBasicBlock *MBB, MachineBasicBlock::iterator &MBBI)
Brian Gaeke20244b72002-12-12 15:33:40 +0000676{
677 unsigned Class = getClass (resultType);
678
679 // FIXME:
680 assert (Class <= 2 && "Someday, we will learn how to multiply"
681 "longs and floating-point numbers. This is not that day.");
682
683 static const unsigned Regs[] ={ X86::AL , X86::AX , X86::EAX };
684 static const unsigned MulOpcode[]={ X86::MULrr8, X86::MULrr16, X86::MULrr32 };
685 static const unsigned MovOpcode[]={ X86::MOVrr8, X86::MOVrr16, X86::MOVrr32 };
686 unsigned Reg = Regs[Class];
687
688 // Emit a MOV to put the first operand into the appropriately-sized
689 // subreg of EAX.
Brian Gaeke71794c02002-12-13 11:22:48 +0000690 BMI(MBB, MBBI, MovOpcode[Class], 1, Reg).addReg (op0Reg);
Brian Gaeke20244b72002-12-12 15:33:40 +0000691
692 // Emit the appropriate multiply instruction.
Brian Gaeke71794c02002-12-13 11:22:48 +0000693 BMI(MBB, MBBI, MulOpcode[Class], 1).addReg (op1Reg);
Brian Gaeke20244b72002-12-12 15:33:40 +0000694
695 // Emit another MOV to put the result into the destination register.
Brian Gaeke71794c02002-12-13 11:22:48 +0000696 BMI(MBB, MBBI, MovOpcode[Class], 1, destReg).addReg (Reg);
Brian Gaeke20244b72002-12-12 15:33:40 +0000697}
698
Chris Lattnerca9671d2002-11-02 20:28:58 +0000699/// visitMul - Multiplies are not simple binary operators because they must deal
700/// with the EAX register explicitly.
701///
702void ISel::visitMul(BinaryOperator &I) {
Chris Lattner202a2d02002-12-13 13:07:42 +0000703 unsigned DestReg = getReg(I);
704 unsigned Op0Reg = getReg(I.getOperand(0));
705 unsigned Op1Reg = getReg(I.getOperand(1));
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000706 MachineBasicBlock::iterator MBBI = BB->end();
Chris Lattner202a2d02002-12-13 13:07:42 +0000707 doMultiply(DestReg, I.getType(), Op0Reg, Op1Reg, BB, MBBI);
Chris Lattnerf01729e2002-11-02 20:54:46 +0000708}
Chris Lattnerca9671d2002-11-02 20:28:58 +0000709
Chris Lattner06925362002-11-17 21:56:38 +0000710
Chris Lattnerf01729e2002-11-02 20:54:46 +0000711/// visitDivRem - Handle division and remainder instructions... these
712/// instruction both require the same instructions to be generated, they just
713/// select the result from a different register. Note that both of these
714/// instructions work differently for signed and unsigned operands.
715///
716void ISel::visitDivRem(BinaryOperator &I) {
717 unsigned Class = getClass(I.getType());
718 if (Class > 2) // FIXME: Handle longs
719 visitInstruction(I);
720
721 static const unsigned Regs[] ={ X86::AL , X86::AX , X86::EAX };
722 static const unsigned MovOpcode[]={ X86::MOVrr8, X86::MOVrr16, X86::MOVrr32 };
Brian Gaeke6559bb92002-11-14 22:32:30 +0000723 static const unsigned ExtOpcode[]={ X86::CBW , X86::CWD , X86::CDQ };
Chris Lattnerf01729e2002-11-02 20:54:46 +0000724 static const unsigned ClrOpcode[]={ X86::XORrr8, X86::XORrr16, X86::XORrr32 };
725 static const unsigned ExtRegs[] ={ X86::AH , X86::DX , X86::EDX };
726
727 static const unsigned DivOpcode[][4] = {
728 { X86::DIVrr8 , X86::DIVrr16 , X86::DIVrr32 , 0 }, // Unsigned division
729 { X86::IDIVrr8, X86::IDIVrr16, X86::IDIVrr32, 0 }, // Signed division
730 };
731
732 bool isSigned = I.getType()->isSigned();
733 unsigned Reg = Regs[Class];
734 unsigned ExtReg = ExtRegs[Class];
Chris Lattner6fc3c522002-11-17 21:11:55 +0000735 unsigned Op0Reg = getReg(I.getOperand(0));
Chris Lattnerf01729e2002-11-02 20:54:46 +0000736 unsigned Op1Reg = getReg(I.getOperand(1));
737
738 // Put the first operand into one of the A registers...
739 BuildMI(BB, MovOpcode[Class], 1, Reg).addReg(Op0Reg);
740
741 if (isSigned) {
742 // Emit a sign extension instruction...
Chris Lattnera4978cc2002-12-01 23:24:58 +0000743 BuildMI(BB, ExtOpcode[Class], 0);
Chris Lattnerf01729e2002-11-02 20:54:46 +0000744 } else {
745 // If unsigned, emit a zeroing instruction... (reg = xor reg, reg)
746 BuildMI(BB, ClrOpcode[Class], 2, ExtReg).addReg(ExtReg).addReg(ExtReg);
747 }
748
Chris Lattner06925362002-11-17 21:56:38 +0000749 // Emit the appropriate divide or remainder instruction...
Chris Lattner92845e32002-11-21 18:54:29 +0000750 BuildMI(BB, DivOpcode[isSigned][Class], 1).addReg(Op1Reg);
Chris Lattner06925362002-11-17 21:56:38 +0000751
Chris Lattnerf01729e2002-11-02 20:54:46 +0000752 // Figure out which register we want to pick the result out of...
753 unsigned DestReg = (I.getOpcode() == Instruction::Div) ? Reg : ExtReg;
754
Chris Lattnerf01729e2002-11-02 20:54:46 +0000755 // Put the result into the destination register...
756 BuildMI(BB, MovOpcode[Class], 1, getReg(I)).addReg(DestReg);
Chris Lattnerca9671d2002-11-02 20:28:58 +0000757}
Chris Lattnere2954c82002-11-02 20:04:26 +0000758
Chris Lattner06925362002-11-17 21:56:38 +0000759
Brian Gaekea1719c92002-10-31 23:03:59 +0000760/// Shift instructions: 'shl', 'sar', 'shr' - Some special cases here
761/// for constant immediate shift values, and for constant immediate
762/// shift values equal to 1. Even the general case is sort of special,
763/// because the shift amount has to be in CL, not just any old register.
764///
Chris Lattnerf01729e2002-11-02 20:54:46 +0000765void ISel::visitShiftInst (ShiftInst &I) {
766 unsigned Op0r = getReg (I.getOperand(0));
767 unsigned DestReg = getReg(I);
Chris Lattnere9913f22002-11-02 01:41:55 +0000768 bool isLeftShift = I.getOpcode() == Instruction::Shl;
769 bool isOperandSigned = I.getType()->isUnsigned();
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000770 unsigned OperandClass = getClass(I.getType());
771
772 if (OperandClass > 2)
773 visitInstruction(I); // Can't handle longs yet!
Chris Lattner796df732002-11-02 00:44:25 +0000774
Brian Gaekea1719c92002-10-31 23:03:59 +0000775 if (ConstantUInt *CUI = dyn_cast <ConstantUInt> (I.getOperand (1)))
776 {
Chris Lattner796df732002-11-02 00:44:25 +0000777 // The shift amount is constant, guaranteed to be a ubyte. Get its value.
778 assert(CUI->getType() == Type::UByteTy && "Shift amount not a ubyte?");
779 unsigned char shAmt = CUI->getValue();
780
Chris Lattnere9913f22002-11-02 01:41:55 +0000781 static const unsigned ConstantOperand[][4] = {
782 { X86::SHRir8, X86::SHRir16, X86::SHRir32, 0 }, // SHR
783 { X86::SARir8, X86::SARir16, X86::SARir32, 0 }, // SAR
784 { X86::SHLir8, X86::SHLir16, X86::SHLir32, 0 }, // SHL
785 { X86::SHLir8, X86::SHLir16, X86::SHLir32, 0 }, // SAL = SHL
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000786 };
787
Chris Lattnere9913f22002-11-02 01:41:55 +0000788 const unsigned *OpTab = // Figure out the operand table to use
789 ConstantOperand[isLeftShift*2+isOperandSigned];
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000790
Brian Gaekea1719c92002-10-31 23:03:59 +0000791 // Emit: <insn> reg, shamt (shift-by-immediate opcode "ir" form.)
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000792 BuildMI(BB, OpTab[OperandClass], 2, DestReg).addReg(Op0r).addZImm(shAmt);
Brian Gaekea1719c92002-10-31 23:03:59 +0000793 }
794 else
795 {
796 // The shift amount is non-constant.
797 //
798 // In fact, you can only shift with a variable shift amount if
799 // that amount is already in the CL register, so we have to put it
800 // there first.
801 //
Chris Lattnere9913f22002-11-02 01:41:55 +0000802
Brian Gaekea1719c92002-10-31 23:03:59 +0000803 // Emit: move cl, shiftAmount (put the shift amount in CL.)
Chris Lattnerca9671d2002-11-02 20:28:58 +0000804 BuildMI(BB, X86::MOVrr8, 1, X86::CL).addReg(getReg(I.getOperand(1)));
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000805
806 // This is a shift right (SHR).
Chris Lattnere9913f22002-11-02 01:41:55 +0000807 static const unsigned NonConstantOperand[][4] = {
808 { X86::SHRrr8, X86::SHRrr16, X86::SHRrr32, 0 }, // SHR
809 { X86::SARrr8, X86::SARrr16, X86::SARrr32, 0 }, // SAR
810 { X86::SHLrr8, X86::SHLrr16, X86::SHLrr32, 0 }, // SHL
811 { X86::SHLrr8, X86::SHLrr16, X86::SHLrr32, 0 }, // SAL = SHL
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000812 };
813
Chris Lattnere9913f22002-11-02 01:41:55 +0000814 const unsigned *OpTab = // Figure out the operand table to use
815 NonConstantOperand[isLeftShift*2+isOperandSigned];
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000816
Chris Lattner3a9a6932002-11-21 22:49:20 +0000817 BuildMI(BB, OpTab[OperandClass], 1, DestReg).addReg(Op0r);
Brian Gaekea1719c92002-10-31 23:03:59 +0000818 }
819}
820
Chris Lattner06925362002-11-17 21:56:38 +0000821
Chris Lattner6fc3c522002-11-17 21:11:55 +0000822/// visitLoadInst - Implement LLVM load instructions in terms of the x86 'mov'
823/// instruction.
824///
825void ISel::visitLoadInst(LoadInst &I) {
826 unsigned Class = getClass(I.getType());
827 if (Class > 2) // FIXME: Handle longs and others...
828 visitInstruction(I);
829
830 static const unsigned Opcode[] = { X86::MOVmr8, X86::MOVmr16, X86::MOVmr32 };
831
832 unsigned AddressReg = getReg(I.getOperand(0));
833 addDirectMem(BuildMI(BB, Opcode[Class], 4, getReg(I)), AddressReg);
834}
835
Chris Lattner06925362002-11-17 21:56:38 +0000836
Chris Lattner6fc3c522002-11-17 21:11:55 +0000837/// visitStoreInst - Implement LLVM store instructions in terms of the x86 'mov'
838/// instruction.
839///
840void ISel::visitStoreInst(StoreInst &I) {
841 unsigned Class = getClass(I.getOperand(0)->getType());
842 if (Class > 2) // FIXME: Handle longs and others...
843 visitInstruction(I);
844
845 static const unsigned Opcode[] = { X86::MOVrm8, X86::MOVrm16, X86::MOVrm32 };
846
847 unsigned ValReg = getReg(I.getOperand(0));
848 unsigned AddressReg = getReg(I.getOperand(1));
849 addDirectMem(BuildMI(BB, Opcode[Class], 1+4), AddressReg).addReg(ValReg);
850}
851
852
Brian Gaekec11232a2002-11-26 10:43:30 +0000853/// visitCastInst - Here we have various kinds of copying with or without
854/// sign extension going on.
Brian Gaekefa8d5712002-11-22 11:07:01 +0000855void
856ISel::visitCastInst (CastInst &CI)
857{
Chris Lattnerf18a36e2002-12-03 18:15:59 +0000858 const Type *targetType = CI.getType ();
Brian Gaeke07f02612002-12-03 07:36:03 +0000859 Value *operand = CI.getOperand (0);
860 unsigned int operandReg = getReg (operand);
Chris Lattnerf18a36e2002-12-03 18:15:59 +0000861 const Type *sourceType = operand->getType ();
Brian Gaeke07f02612002-12-03 07:36:03 +0000862 unsigned int destReg = getReg (CI);
Brian Gaeked474e9c2002-12-06 10:49:33 +0000863 //
864 // Currently we handle:
865 //
866 // 1) cast * to bool
867 //
868 // 2) cast {sbyte, ubyte} to {sbyte, ubyte}
869 // cast {short, ushort} to {ushort, short}
870 // cast {int, uint, ptr} to {int, uint, ptr}
871 //
872 // 3) cast {sbyte, ubyte} to {ushort, short}
873 // cast {sbyte, ubyte} to {int, uint, ptr}
874 // cast {short, ushort} to {int, uint, ptr}
875 //
876 // 4) cast {int, uint, ptr} to {short, ushort}
877 // cast {int, uint, ptr} to {sbyte, ubyte}
878 // cast {short, ushort} to {sbyte, ubyte}
Chris Lattner7d255892002-12-13 11:31:59 +0000879
Brian Gaeked474e9c2002-12-06 10:49:33 +0000880 // 1) Implement casts to bool by using compare on the operand followed
881 // by set if not zero on the result.
882 if (targetType == Type::BoolTy)
883 {
884 BuildMI (BB, X86::CMPri8, 2).addReg (operandReg).addZImm (0);
885 BuildMI (BB, X86::SETNEr, 1, destReg);
886 return;
887 }
Chris Lattner7d255892002-12-13 11:31:59 +0000888
Brian Gaeked474e9c2002-12-06 10:49:33 +0000889 // 2) Implement casts between values of the same type class (as determined
890 // by getClass) by using a register-to-register move.
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000891 unsigned srcClass = getClassB (sourceType);
Chris Lattner7d255892002-12-13 11:31:59 +0000892 unsigned targClass = getClass (targetType);
Brian Gaeked474e9c2002-12-06 10:49:33 +0000893 static const unsigned regRegMove[] = {
894 X86::MOVrr8, X86::MOVrr16, X86::MOVrr32
895 };
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000896 if ((srcClass < cLong) && (targClass < cLong) && (srcClass == targClass))
Brian Gaeked474e9c2002-12-06 10:49:33 +0000897 {
898 BuildMI (BB, regRegMove[srcClass], 1, destReg).addReg (operandReg);
899 return;
900 }
901 // 3) Handle cast of SMALLER int to LARGER int using a move with sign
902 // extension or zero extension, depending on whether the source type
903 // was signed.
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000904 if ((srcClass < cLong) && (targClass < cLong) && (srcClass < targClass))
Brian Gaeked474e9c2002-12-06 10:49:33 +0000905 {
906 static const unsigned ops[] = {
907 X86::MOVSXr16r8, X86::MOVSXr32r8, X86::MOVSXr32r16,
908 X86::MOVZXr16r8, X86::MOVZXr32r8, X86::MOVZXr32r16
909 };
910 unsigned srcSigned = sourceType->isSigned ();
911 BuildMI (BB, ops[3 * srcSigned + srcClass + targClass - 1], 1,
912 destReg).addReg (operandReg);
913 return;
914 }
915 // 4) Handle cast of LARGER int to SMALLER int using a move to EAX
916 // followed by a move out of AX or AL.
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000917 if ((srcClass < cLong) && (targClass < cLong) && (srcClass > targClass))
Brian Gaeked474e9c2002-12-06 10:49:33 +0000918 {
919 static const unsigned AReg[] = { X86::AL, X86::AX, X86::EAX };
920 BuildMI (BB, regRegMove[srcClass], 1,
921 AReg[srcClass]).addReg (operandReg);
922 BuildMI (BB, regRegMove[targClass], 1, destReg).addReg (AReg[srcClass]);
923 return;
924 }
925 // Anything we haven't handled already, we can't (yet) handle at all.
Brian Gaeke20244b72002-12-12 15:33:40 +0000926 //
927 // FP to integral casts can be handled with FISTP to store onto the
928 // stack while converting to integer, followed by a MOV to load from
929 // the stack into the result register. Integral to FP casts can be
930 // handled with MOV to store onto the stack, followed by a FILD to
931 // load from the stack while converting to FP. For the moment, I
932 // can't quite get straight in my head how to borrow myself some
933 // stack space and write on it. Otherwise, this would be trivial.
Brian Gaekefa8d5712002-11-22 11:07:01 +0000934 visitInstruction (CI);
935}
Brian Gaekea1719c92002-10-31 23:03:59 +0000936
Brian Gaeke20244b72002-12-12 15:33:40 +0000937/// visitGetElementPtrInst - I don't know, most programs don't have
938/// getelementptr instructions, right? That means we can put off
939/// implementing this, right? Right. This method emits machine
940/// instructions to perform type-safe pointer arithmetic. I am
941/// guessing this could be cleaned up somewhat to use fewer temporary
942/// registers.
943void
944ISel::visitGetElementPtrInst (GetElementPtrInst &I)
945{
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000946 unsigned outputReg = getReg (I);
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000947 MachineBasicBlock::iterator MI = BB->end();
948 emitGEPOperation(BB, MI, I.getOperand(0),
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000949 I.op_begin()+1, I.op_end(), outputReg);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000950}
951
Brian Gaeke71794c02002-12-13 11:22:48 +0000952void ISel::emitGEPOperation(MachineBasicBlock *MBB,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000953 MachineBasicBlock::iterator &IP,
Chris Lattner333b2fa2002-12-13 10:09:43 +0000954 Value *Src, User::op_iterator IdxBegin,
Chris Lattnerc0812d82002-12-13 06:56:29 +0000955 User::op_iterator IdxEnd, unsigned TargetReg) {
956 const TargetData &TD = TM.getTargetData();
957 const Type *Ty = Src->getType();
Brian Gaeke68b1edc2002-12-16 04:23:29 +0000958 unsigned basePtrReg = getReg(Src, MBB, IP);
Chris Lattnerc0812d82002-12-13 06:56:29 +0000959
Brian Gaeke20244b72002-12-12 15:33:40 +0000960 // GEPs have zero or more indices; we must perform a struct access
961 // or array access for each one.
Chris Lattnerc0812d82002-12-13 06:56:29 +0000962 for (GetElementPtrInst::op_iterator oi = IdxBegin,
963 oe = IdxEnd; oi != oe; ++oi) {
Brian Gaeke20244b72002-12-12 15:33:40 +0000964 Value *idx = *oi;
Chris Lattnerc0812d82002-12-13 06:56:29 +0000965 unsigned nextBasePtrReg = makeAnotherReg(Type::UIntTy);
Brian Gaeke20244b72002-12-12 15:33:40 +0000966 if (const StructType *StTy = dyn_cast <StructType> (Ty)) {
967 // It's a struct access. idx is the index into the structure,
968 // which names the field. This index must have ubyte type.
969 const ConstantUInt *CUI = cast <ConstantUInt> (idx);
970 assert (CUI->getType () == Type::UByteTy
971 && "Funny-looking structure index in GEP");
972 // Use the TargetData structure to pick out what the layout of
973 // the structure is in memory. Since the structure index must
974 // be constant, we can get its value and use it to find the
975 // right byte offset from the StructLayout class's list of
976 // structure member offsets.
977 unsigned idxValue = CUI->getValue ();
978 unsigned memberOffset =
979 TD.getStructLayout (StTy)->MemberOffsets[idxValue];
980 // Emit an ADD to add memberOffset to the basePtr.
Brian Gaeke71794c02002-12-13 11:22:48 +0000981 BMI(MBB, IP, X86::ADDri32, 2,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +0000982 nextBasePtrReg).addReg (basePtrReg).addZImm (memberOffset);
Brian Gaeke20244b72002-12-12 15:33:40 +0000983 // The next type is the member of the structure selected by the
984 // index.
985 Ty = StTy->getElementTypes ()[idxValue];
986 } else if (const SequentialType *SqTy = cast <SequentialType> (Ty)) {
987 // It's an array or pointer access: [ArraySize x ElementType].
Brian Gaeke20244b72002-12-12 15:33:40 +0000988 const Type *typeOfSequentialTypeIndex = SqTy->getIndexType ();
989 // idx is the index into the array. Unlike with structure
990 // indices, we may not know its actual value at code-generation
991 // time.
992 assert (idx->getType () == typeOfSequentialTypeIndex
993 && "Funny-looking array index in GEP");
994 // We want to add basePtrReg to (idxReg * sizeof
995 // ElementType). First, we must find the size of the pointed-to
996 // type. (Not coincidentally, the next type is the type of the
997 // elements in the array.)
998 Ty = SqTy->getElementType ();
999 unsigned elementSize = TD.getTypeSize (Ty);
Brian Gaeke71794c02002-12-13 11:22:48 +00001000 unsigned elementSizeReg = makeAnotherReg(typeOfSequentialTypeIndex);
1001 copyConstantToRegister(ConstantSInt::get(typeOfSequentialTypeIndex,
Chris Lattner333b2fa2002-12-13 10:09:43 +00001002 elementSize), elementSizeReg,
Brian Gaeke68b1edc2002-12-16 04:23:29 +00001003 MBB, IP);
Chris Lattner333b2fa2002-12-13 10:09:43 +00001004
Brian Gaeke68b1edc2002-12-16 04:23:29 +00001005 unsigned idxReg = getReg(idx, MBB, IP);
Brian Gaeke20244b72002-12-12 15:33:40 +00001006 // Emit a MUL to multiply the register holding the index by
1007 // elementSize, putting the result in memberOffsetReg.
Chris Lattnerc0812d82002-12-13 06:56:29 +00001008 unsigned memberOffsetReg = makeAnotherReg(Type::UIntTy);
Brian Gaeke20244b72002-12-12 15:33:40 +00001009 doMultiply (memberOffsetReg, typeOfSequentialTypeIndex,
Brian Gaeke68b1edc2002-12-16 04:23:29 +00001010 elementSizeReg, idxReg, MBB, IP);
Brian Gaeke20244b72002-12-12 15:33:40 +00001011 // Emit an ADD to add memberOffsetReg to the basePtr.
Brian Gaeke71794c02002-12-13 11:22:48 +00001012 BMI(MBB, IP, X86::ADDrr32, 2,
Chris Lattnerf08ad9f2002-12-13 10:50:40 +00001013 nextBasePtrReg).addReg (basePtrReg).addReg (memberOffsetReg);
Brian Gaeke20244b72002-12-12 15:33:40 +00001014 }
1015 // Now that we are here, further indices refer to subtypes of this
1016 // one, so we don't need to worry about basePtrReg itself, anymore.
1017 basePtrReg = nextBasePtrReg;
1018 }
1019 // After we have processed all the indices, the result is left in
1020 // basePtrReg. Move it to the register where we were expected to
1021 // put the answer. A 32-bit move should do it, because we are in
1022 // ILP32 land.
Brian Gaeke71794c02002-12-13 11:22:48 +00001023 BMI(MBB, IP, X86::MOVrr32, 1, TargetReg).addReg (basePtrReg);
Brian Gaeke20244b72002-12-12 15:33:40 +00001024}
1025
1026
1027/// visitMallocInst - I know that personally, whenever I want to remember
1028/// something, I have to clear off some space in my brain.
1029void
1030ISel::visitMallocInst (MallocInst &I)
1031{
Brian Gaekee48ec012002-12-13 06:46:31 +00001032 // We assume that by this point, malloc instructions have been
1033 // lowered to calls, and dlsym will magically find malloc for us.
1034 // So we do not want to see malloc instructions here.
1035 visitInstruction (I);
1036}
1037
1038
1039/// visitFreeInst - same story as MallocInst
1040void
1041ISel::visitFreeInst (FreeInst &I)
1042{
1043 // We assume that by this point, free instructions have been
1044 // lowered to calls, and dlsym will magically find free for us.
1045 // So we do not want to see free instructions here.
Brian Gaeke20244b72002-12-12 15:33:40 +00001046 visitInstruction (I);
1047}
1048
1049
1050/// visitAllocaInst - I want some stack space. Come on, man, I said I
1051/// want some freakin' stack space.
1052void
1053ISel::visitAllocaInst (AllocaInst &I)
1054{
Brian Gaekee48ec012002-12-13 06:46:31 +00001055 // Find the data size of the alloca inst's getAllocatedType.
1056 const Type *allocatedType = I.getAllocatedType ();
1057 const TargetData &TD = TM.DataLayout;
1058 unsigned allocatedTypeSize = TD.getTypeSize (allocatedType);
1059 // Keep stack 32-bit aligned.
1060 unsigned int allocatedTypeWords = allocatedTypeSize / 4;
1061 if (allocatedTypeSize % 4 != 0) { allocatedTypeWords++; }
1062 // Subtract size from stack pointer, thereby allocating some space.
1063 BuildMI (BB, X86::SUBri32, 1, X86::ESP).addZImm (allocatedTypeWords * 4);
1064 // Put a pointer to the space into the result register, by copying
1065 // the stack pointer.
1066 BuildMI (BB, X86::MOVrr32, 1, getReg (I)).addReg (X86::ESP);
Brian Gaeke20244b72002-12-12 15:33:40 +00001067}
1068
1069
Chris Lattnerb4f68ed2002-10-29 22:37:54 +00001070/// createSimpleX86InstructionSelector - This pass converts an LLVM function
1071/// into a machine code representation is a very simple peep-hole fashion. The
Chris Lattner72614082002-10-25 22:55:53 +00001072/// generated code sucks but the implementation is nice and simple.
1073///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +00001074Pass *createSimpleX86InstructionSelector(TargetMachine &TM) {
1075 return new ISel(TM);
Chris Lattner72614082002-10-25 22:55:53 +00001076}