blob: 106d99b19dc5e3ce48e0682c6e5c9fd03f9e81d8 [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 Lattner72614082002-10-25 22:55:53 +00009#include "llvm/Function.h"
10#include "llvm/iTerminators.h"
Brian Gaekea1719c92002-10-31 23:03:59 +000011#include "llvm/iOther.h"
Chris Lattner51b49a92002-11-02 19:45:49 +000012#include "llvm/iPHINode.h"
Chris Lattner72614082002-10-25 22:55:53 +000013#include "llvm/Type.h"
Chris Lattnerc5291f52002-10-27 21:16:59 +000014#include "llvm/Constants.h"
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000015#include "llvm/Pass.h"
Chris Lattner341a9372002-10-29 17:43:55 +000016#include "llvm/CodeGen/MachineFunction.h"
17#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner72614082002-10-25 22:55:53 +000018#include "llvm/Support/InstVisitor.h"
19#include <map>
20
21namespace {
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000022 struct ISel : public FunctionPass, InstVisitor<ISel> {
23 TargetMachine &TM;
Chris Lattner341a9372002-10-29 17:43:55 +000024 MachineFunction *F; // The function we are compiling into
25 MachineBasicBlock *BB; // The current MBB we are compiling
Chris Lattner72614082002-10-25 22:55:53 +000026
27 unsigned CurReg;
28 std::map<Value*, unsigned> RegMap; // Mapping between Val's and SSA Regs
29
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000030 ISel(TargetMachine &tm)
31 : TM(tm), F(0), BB(0), CurReg(MRegisterInfo::FirstVirtualRegister) {}
Chris Lattner72614082002-10-25 22:55:53 +000032
33 /// runOnFunction - Top level implementation of instruction selection for
34 /// the entire function.
35 ///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000036 bool runOnFunction(Function &Fn) {
Chris Lattner36b36032002-10-29 23:40:58 +000037 F = &MachineFunction::construct(&Fn, TM);
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000038 visit(Fn);
Chris Lattner72614082002-10-25 22:55:53 +000039 RegMap.clear();
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000040 F = 0;
Chris Lattner72614082002-10-25 22:55:53 +000041 return false; // We never modify the LLVM itself.
42 }
43
44 /// visitBasicBlock - This method is called when we are visiting a new basic
Chris Lattner33f53b52002-10-29 20:48:56 +000045 /// block. This simply creates a new MachineBasicBlock to emit code into
46 /// and adds it to the current MachineFunction. Subsequent visit* for
47 /// instructions will be invoked for all instructions in the basic block.
Chris Lattner72614082002-10-25 22:55:53 +000048 ///
49 void visitBasicBlock(BasicBlock &LLVM_BB) {
Chris Lattner42c77862002-10-30 00:47:40 +000050 BB = new MachineBasicBlock(&LLVM_BB);
Chris Lattner72614082002-10-25 22:55:53 +000051 // FIXME: Use the auto-insert form when it's available
52 F->getBasicBlockList().push_back(BB);
53 }
54
55 // Visitation methods for various instructions. These methods simply emit
56 // fixed X86 code for each instruction.
57 //
Chris Lattner51b49a92002-11-02 19:45:49 +000058 void visitPHINode(PHINode &I);
Chris Lattner72614082002-10-25 22:55:53 +000059 void visitReturnInst(ReturnInst &RI);
Chris Lattner2df035b2002-11-02 19:27:56 +000060 void visitBranchInst(BranchInst &BI);
Chris Lattner72614082002-10-25 22:55:53 +000061 void visitAdd(BinaryOperator &B);
Brian Gaekea1719c92002-10-31 23:03:59 +000062 void visitShiftInst(ShiftInst &I);
Chris Lattner72614082002-10-25 22:55:53 +000063
64 void visitInstruction(Instruction &I) {
65 std::cerr << "Cannot instruction select: " << I;
66 abort();
67 }
68
Chris Lattnerc5291f52002-10-27 21:16:59 +000069
70 /// copyConstantToRegister - Output the instructions required to put the
71 /// specified constant into the specified register.
72 ///
73 void copyConstantToRegister(Constant *C, unsigned Reg);
74
Chris Lattner72614082002-10-25 22:55:53 +000075 /// getReg - This method turns an LLVM value into a register number. This
76 /// is guaranteed to produce the same register number for a particular value
77 /// every time it is queried.
78 ///
79 unsigned getReg(Value &V) { return getReg(&V); } // Allow references
80 unsigned getReg(Value *V) {
81 unsigned &Reg = RegMap[V];
82 if (Reg == 0)
83 Reg = CurReg++;
84
Chris Lattner6f8fd252002-10-27 21:23:43 +000085 // If this operand is a constant, emit the code to copy the constant into
86 // the register here...
87 //
Chris Lattnerc5291f52002-10-27 21:16:59 +000088 if (Constant *C = dyn_cast<Constant>(V))
89 copyConstantToRegister(C, Reg);
90
Chris Lattner72614082002-10-25 22:55:53 +000091 return Reg;
92 }
Chris Lattner72614082002-10-25 22:55:53 +000093 };
94}
95
Chris Lattnerb1761fc2002-11-02 01:15:18 +000096/// getClass - Turn a primitive type into a "class" number which is based on the
97/// size of the type, and whether or not it is floating point.
98///
99static inline unsigned getClass(const Type *Ty) {
100 switch (Ty->getPrimitiveID()) {
101 case Type::SByteTyID:
102 case Type::UByteTyID: return 0; // Byte operands are class #0
103 case Type::ShortTyID:
104 case Type::UShortTyID: return 1; // Short operands are class #1
105 case Type::IntTyID:
106 case Type::UIntTyID:
107 case Type::PointerTyID: return 2; // Int's and pointers are class #2
108
109 case Type::LongTyID:
110 case Type::ULongTyID: return 3; // Longs are class #3
111 case Type::FloatTyID: return 4; // Float is class #4
112 case Type::DoubleTyID: return 5; // Doubles are class #5
113 default:
114 assert(0 && "Invalid type to getClass!");
115 return 0; // not reached
116 }
117}
Chris Lattnerc5291f52002-10-27 21:16:59 +0000118
119/// copyConstantToRegister - Output the instructions required to put the
120/// specified constant into the specified register.
121///
122void ISel::copyConstantToRegister(Constant *C, unsigned R) {
123 assert (!isa<ConstantExpr>(C) && "Constant expressions not yet handled!\n");
124
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000125 if (C->getType()->isIntegral()) {
126 unsigned Class = getClass(C->getType());
127 assert(Class != 3 && "Type not handled yet!");
128
129 static const unsigned IntegralOpcodeTab[] = {
130 X86::MOVir8, X86::MOVir16, X86::MOVir32
131 };
132
133 if (C->getType()->isSigned()) {
134 ConstantSInt *CSI = cast<ConstantSInt>(C);
135 BuildMI(BB, IntegralOpcodeTab[Class], 1, R).addSImm(CSI->getValue());
136 } else {
137 ConstantUInt *CUI = cast<ConstantUInt>(C);
138 BuildMI(BB, IntegralOpcodeTab[Class], 1, R).addZImm(CUI->getValue());
139 }
140 } else {
141 assert(0 && "Type not handled yet!");
Chris Lattnerc5291f52002-10-27 21:16:59 +0000142 }
143}
144
Chris Lattner51b49a92002-11-02 19:45:49 +0000145/// visitPHINode - Turn an LLVM PHI node into an X86 PHI node...
146///
147void ISel::visitPHINode(PHINode &PN) {
148 MachineInstr *MI = BuildMI(BB, X86::PHI, PN.getNumOperands(), getReg(PN));
149
150 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) {
151 // FIXME: This will put constants after the PHI nodes in the block, which
152 // is invalid. They should be put inline into the PHI node eventually.
153 //
154 MI->addRegOperand(getReg(PN.getIncomingValue(i)));
155 MI->addPCDispOperand(PN.getIncomingBlock(i));
156 }
157}
158
Chris Lattnerc5291f52002-10-27 21:16:59 +0000159
Chris Lattner72614082002-10-25 22:55:53 +0000160/// 'ret' instruction - Here we are interested in meeting the x86 ABI. As such,
161/// we have the following possibilities:
162///
163/// ret void: No return value, simply emit a 'ret' instruction
164/// ret sbyte, ubyte : Extend value into EAX and return
165/// ret short, ushort: Extend value into EAX and return
166/// ret int, uint : Move value into EAX and return
167/// ret pointer : Move value into EAX and return
168/// ret long, ulong : Move value into EAX/EDX (?) and return
169/// ret float/double : ? Top of FP stack? XMM0?
170///
171void ISel::visitReturnInst(ReturnInst &I) {
172 if (I.getNumOperands() != 0) { // Not 'ret void'?
173 // Move result into a hard register... then emit a ret
174 visitInstruction(I); // abort
175 }
176
177 // Emit a simple 'ret' instruction... appending it to the end of the basic
178 // block
Chris Lattner341a9372002-10-29 17:43:55 +0000179 BuildMI(BB, X86::RET, 0);
Chris Lattner72614082002-10-25 22:55:53 +0000180}
181
Chris Lattner51b49a92002-11-02 19:45:49 +0000182/// visitBranchInst - Handle conditional and unconditional branches here. Note
183/// that since code layout is frozen at this point, that if we are trying to
184/// jump to a block that is the immediate successor of the current block, we can
185/// just make a fall-through. (but we don't currently).
186///
Chris Lattner2df035b2002-11-02 19:27:56 +0000187void ISel::visitBranchInst(BranchInst &BI) {
188 if (BI.isConditional()) // Only handles unconditional branches so far...
189 visitInstruction(BI);
190
191 BuildMI(BB, X86::JMP, 1).addPCDisp(BI.getSuccessor(0));
192}
193
194
Brian Gaekea1719c92002-10-31 23:03:59 +0000195/// Shift instructions: 'shl', 'sar', 'shr' - Some special cases here
196/// for constant immediate shift values, and for constant immediate
197/// shift values equal to 1. Even the general case is sort of special,
198/// because the shift amount has to be in CL, not just any old register.
199///
200void
201ISel::visitShiftInst (ShiftInst & I)
202{
203 unsigned Op0r = getReg (I.getOperand (0));
204 unsigned DestReg = getReg (I);
Chris Lattnere9913f22002-11-02 01:41:55 +0000205 bool isLeftShift = I.getOpcode() == Instruction::Shl;
206 bool isOperandSigned = I.getType()->isUnsigned();
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000207 unsigned OperandClass = getClass(I.getType());
208
209 if (OperandClass > 2)
210 visitInstruction(I); // Can't handle longs yet!
Chris Lattner796df732002-11-02 00:44:25 +0000211
Brian Gaekea1719c92002-10-31 23:03:59 +0000212 if (ConstantUInt *CUI = dyn_cast <ConstantUInt> (I.getOperand (1)))
213 {
Chris Lattner796df732002-11-02 00:44:25 +0000214 // The shift amount is constant, guaranteed to be a ubyte. Get its value.
215 assert(CUI->getType() == Type::UByteTy && "Shift amount not a ubyte?");
216 unsigned char shAmt = CUI->getValue();
217
Chris Lattnere9913f22002-11-02 01:41:55 +0000218 static const unsigned ConstantOperand[][4] = {
219 { X86::SHRir8, X86::SHRir16, X86::SHRir32, 0 }, // SHR
220 { X86::SARir8, X86::SARir16, X86::SARir32, 0 }, // SAR
221 { X86::SHLir8, X86::SHLir16, X86::SHLir32, 0 }, // SHL
222 { X86::SHLir8, X86::SHLir16, X86::SHLir32, 0 }, // SAL = SHL
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000223 };
224
Chris Lattnere9913f22002-11-02 01:41:55 +0000225 const unsigned *OpTab = // Figure out the operand table to use
226 ConstantOperand[isLeftShift*2+isOperandSigned];
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000227
Brian Gaekea1719c92002-10-31 23:03:59 +0000228 // Emit: <insn> reg, shamt (shift-by-immediate opcode "ir" form.)
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000229 BuildMI(BB, OpTab[OperandClass], 2, DestReg).addReg(Op0r).addZImm(shAmt);
Brian Gaekea1719c92002-10-31 23:03:59 +0000230 }
231 else
232 {
233 // The shift amount is non-constant.
234 //
235 // In fact, you can only shift with a variable shift amount if
236 // that amount is already in the CL register, so we have to put it
237 // there first.
238 //
Chris Lattnere9913f22002-11-02 01:41:55 +0000239
Brian Gaekea1719c92002-10-31 23:03:59 +0000240 // Emit: move cl, shiftAmount (put the shift amount in CL.)
Chris Lattnere9913f22002-11-02 01:41:55 +0000241 BuildMI (BB, X86::MOVrr8, 2, X86::CL).addReg(getReg(I.getOperand(1)));
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000242
243 // This is a shift right (SHR).
Chris Lattnere9913f22002-11-02 01:41:55 +0000244 static const unsigned NonConstantOperand[][4] = {
245 { X86::SHRrr8, X86::SHRrr16, X86::SHRrr32, 0 }, // SHR
246 { X86::SARrr8, X86::SARrr16, X86::SARrr32, 0 }, // SAR
247 { X86::SHLrr8, X86::SHLrr16, X86::SHLrr32, 0 }, // SHL
248 { X86::SHLrr8, X86::SHLrr16, X86::SHLrr32, 0 }, // SAL = SHL
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000249 };
250
Chris Lattnere9913f22002-11-02 01:41:55 +0000251 const unsigned *OpTab = // Figure out the operand table to use
252 NonConstantOperand[isLeftShift*2+isOperandSigned];
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000253
Chris Lattnere9913f22002-11-02 01:41:55 +0000254 BuildMI(BB, OpTab[OperandClass], 2, DestReg).addReg(Op0r).addReg(X86::CL);
Brian Gaekea1719c92002-10-31 23:03:59 +0000255 }
256}
257
Chris Lattner72614082002-10-25 22:55:53 +0000258
259/// 'add' instruction - Simply turn this into an x86 reg,reg add instruction.
260void ISel::visitAdd(BinaryOperator &B) {
261 unsigned Op0r = getReg(B.getOperand(0)), Op1r = getReg(B.getOperand(1));
262 unsigned DestReg = getReg(B);
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000263 unsigned Class = getClass(B.getType());
Chris Lattner72614082002-10-25 22:55:53 +0000264
Chris Lattnerb1761fc2002-11-02 01:15:18 +0000265 static const unsigned Opcodes[] = { X86::ADDrr8, X86::ADDrr16, X86::ADDrr32 };
266
267 if (Class >= sizeof(Opcodes)/sizeof(Opcodes[0]))
268 visitInstruction(B); // Not handled class yet...
269
270 BuildMI(BB, Opcodes[Class], 2, DestReg).addReg(Op0r).addReg(Op1r);
271
272 // For Longs: Here we have a pair of operands each occupying a pair of
273 // registers. We need to do an ADDrr32 of the least-significant pair
274 // immediately followed by an ADCrr32 (Add with Carry) of the most-significant
275 // pair. I don't know how we are representing these multi-register arguments.
Chris Lattner72614082002-10-25 22:55:53 +0000276}
277
Brian Gaekea1719c92002-10-31 23:03:59 +0000278
279
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000280/// createSimpleX86InstructionSelector - This pass converts an LLVM function
281/// into a machine code representation is a very simple peep-hole fashion. The
Chris Lattner72614082002-10-25 22:55:53 +0000282/// generated code sucks but the implementation is nice and simple.
283///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000284Pass *createSimpleX86InstructionSelector(TargetMachine &TM) {
285 return new ISel(TM);
Chris Lattner72614082002-10-25 22:55:53 +0000286}