2008-08-14 04:19:35 +08:00
|
|
|
///===-- FastISel.cpp - Implementation of the FastISel class --------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the implementation of the FastISel class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-08-20 06:31:46 +08:00
|
|
|
#include "llvm/Instructions.h"
|
2008-08-14 04:19:35 +08:00
|
|
|
#include "llvm/CodeGen/FastISel.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2008-08-21 06:45:34 +08:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2008-08-14 04:19:35 +08:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
2008-08-21 06:45:34 +08:00
|
|
|
#include "llvm/Target/TargetLowering.h"
|
2008-08-21 05:05:57 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2008-08-14 04:19:35 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2008-08-20 08:11:48 +08:00
|
|
|
/// SelectBinaryOp - Select and emit code for a binary operator instruction,
|
|
|
|
/// which has an opcode which directly corresponds to the given ISD opcode.
|
|
|
|
///
|
|
|
|
bool FastISel::SelectBinaryOp(Instruction *I, ISD::NodeType ISDOpcode,
|
|
|
|
DenseMap<const Value*, unsigned> &ValueMap) {
|
2008-08-21 09:41:07 +08:00
|
|
|
MVT VT = MVT::getMVT(I->getType(), /*HandleUnknown=*/true);
|
|
|
|
if (VT == MVT::Other || !VT.isSimple())
|
|
|
|
// Unhandled type. Halt "fast" selection and bail.
|
|
|
|
return false;
|
|
|
|
|
2008-08-20 08:11:48 +08:00
|
|
|
unsigned Op0 = ValueMap[I->getOperand(0)];
|
2008-08-21 09:41:07 +08:00
|
|
|
if (Op0 == 0)
|
2008-08-20 08:35:17 +08:00
|
|
|
// Unhandled operand. Halt "fast" selection and bail.
|
|
|
|
return false;
|
|
|
|
|
2008-08-21 09:41:07 +08:00
|
|
|
// Check if the second operand is a constant and handle it appropriately.
|
|
|
|
if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
|
|
|
|
unsigned ResultReg = FastEmit_ri_(VT.getSimpleVT(), ISDOpcode, Op0,
|
|
|
|
CI->getZExtValue(), VT.getSimpleVT());
|
|
|
|
if (ResultReg == 0)
|
|
|
|
// Target-specific code wasn't able to find a machine opcode for
|
|
|
|
// the given ISD opcode and type. Halt "fast" selection and bail.
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// We successfully emitted code for the given LLVM Instruction.
|
|
|
|
ValueMap[I] = ResultReg;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned Op1 = ValueMap[I->getOperand(1)];
|
|
|
|
if (Op1 == 0)
|
|
|
|
// Unhandled operand. Halt "fast" selection and bail.
|
2008-08-20 08:11:48 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
unsigned ResultReg = FastEmit_rr(VT.getSimpleVT(), ISDOpcode, Op0, Op1);
|
|
|
|
if (ResultReg == 0)
|
|
|
|
// Target-specific code wasn't able to find a machine opcode for
|
|
|
|
// the given ISD opcode and type. Halt "fast" selection and bail.
|
|
|
|
return false;
|
|
|
|
|
2008-08-20 08:23:20 +08:00
|
|
|
// We successfully emitted code for the given LLVM Instruction.
|
2008-08-20 08:11:48 +08:00
|
|
|
ValueMap[I] = ResultReg;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FastISel::SelectGetElementPtr(Instruction *I,
|
|
|
|
DenseMap<const Value*, unsigned> &ValueMap) {
|
2008-08-21 06:45:34 +08:00
|
|
|
unsigned N = ValueMap[I->getOperand(0)];
|
|
|
|
if (N == 0)
|
|
|
|
// Unhandled operand. Halt "fast" selection and bail.
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const Type *Ty = I->getOperand(0)->getType();
|
2008-08-22 01:25:26 +08:00
|
|
|
MVT::SimpleValueType VT = TLI.getPointerTy().getSimpleVT();
|
2008-08-21 06:45:34 +08:00
|
|
|
for (GetElementPtrInst::op_iterator OI = I->op_begin()+1, E = I->op_end();
|
|
|
|
OI != E; ++OI) {
|
|
|
|
Value *Idx = *OI;
|
|
|
|
if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
|
|
|
|
unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
|
|
|
|
if (Field) {
|
|
|
|
// N = N + Offset
|
|
|
|
uint64_t Offs = TD.getStructLayout(StTy)->getElementOffset(Field);
|
|
|
|
// FIXME: This can be optimized by combining the add with a
|
|
|
|
// subsequent one.
|
2008-08-22 01:25:26 +08:00
|
|
|
N = FastEmit_ri_(VT, ISD::ADD, N, Offs, VT);
|
2008-08-21 06:45:34 +08:00
|
|
|
if (N == 0)
|
|
|
|
// Unhandled operand. Halt "fast" selection and bail.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Ty = StTy->getElementType(Field);
|
|
|
|
} else {
|
|
|
|
Ty = cast<SequentialType>(Ty)->getElementType();
|
|
|
|
|
|
|
|
// If this is a constant subscript, handle it quickly.
|
|
|
|
if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
|
|
|
|
if (CI->getZExtValue() == 0) continue;
|
|
|
|
uint64_t Offs =
|
|
|
|
TD.getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
|
2008-08-22 01:25:26 +08:00
|
|
|
N = FastEmit_ri_(VT, ISD::ADD, N, Offs, VT);
|
2008-08-21 06:45:34 +08:00
|
|
|
if (N == 0)
|
|
|
|
// Unhandled operand. Halt "fast" selection and bail.
|
|
|
|
return false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// N = N + Idx * ElementSize;
|
|
|
|
uint64_t ElementSize = TD.getABITypeSize(Ty);
|
|
|
|
unsigned IdxN = ValueMap[Idx];
|
|
|
|
if (IdxN == 0)
|
|
|
|
// Unhandled operand. Halt "fast" selection and bail.
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// If the index is smaller or larger than intptr_t, truncate or extend
|
|
|
|
// it.
|
2008-08-21 09:19:11 +08:00
|
|
|
MVT IdxVT = MVT::getMVT(Idx->getType(), /*HandleUnknown=*/false);
|
2008-08-21 06:45:34 +08:00
|
|
|
if (IdxVT.bitsLT(VT))
|
2008-08-22 01:25:26 +08:00
|
|
|
IdxN = FastEmit_r(VT, ISD::SIGN_EXTEND, IdxN);
|
2008-08-21 06:45:34 +08:00
|
|
|
else if (IdxVT.bitsGT(VT))
|
2008-08-22 01:25:26 +08:00
|
|
|
IdxN = FastEmit_r(VT, ISD::TRUNCATE, IdxN);
|
2008-08-21 06:45:34 +08:00
|
|
|
if (IdxN == 0)
|
|
|
|
// Unhandled operand. Halt "fast" selection and bail.
|
|
|
|
return false;
|
|
|
|
|
2008-08-22 01:37:05 +08:00
|
|
|
if (ElementSize != 1)
|
|
|
|
IdxN = FastEmit_ri_(VT, ISD::MUL, IdxN, ElementSize, VT);
|
2008-08-21 06:45:34 +08:00
|
|
|
if (IdxN == 0)
|
|
|
|
// Unhandled operand. Halt "fast" selection and bail.
|
|
|
|
return false;
|
2008-08-22 01:25:26 +08:00
|
|
|
N = FastEmit_rr(VT, ISD::ADD, N, IdxN);
|
2008-08-21 06:45:34 +08:00
|
|
|
if (N == 0)
|
|
|
|
// Unhandled operand. Halt "fast" selection and bail.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We successfully emitted code for the given LLVM Instruction.
|
|
|
|
ValueMap[I] = N;
|
|
|
|
return true;
|
2008-08-20 08:11:48 +08:00
|
|
|
}
|
|
|
|
|
2008-08-14 04:19:35 +08:00
|
|
|
BasicBlock::iterator
|
2008-08-21 02:09:02 +08:00
|
|
|
FastISel::SelectInstructions(BasicBlock::iterator Begin,
|
|
|
|
BasicBlock::iterator End,
|
2008-08-21 05:05:57 +08:00
|
|
|
DenseMap<const Value*, unsigned> &ValueMap,
|
|
|
|
MachineBasicBlock *mbb) {
|
|
|
|
MBB = mbb;
|
2008-08-14 04:19:35 +08:00
|
|
|
BasicBlock::iterator I = Begin;
|
|
|
|
|
|
|
|
for (; I != End; ++I) {
|
|
|
|
switch (I->getOpcode()) {
|
2008-08-20 08:23:20 +08:00
|
|
|
case Instruction::Add: {
|
|
|
|
ISD::NodeType Opc = I->getType()->isFPOrFPVector() ? ISD::FADD : ISD::ADD;
|
|
|
|
if (!SelectBinaryOp(I, Opc, ValueMap)) return I; break;
|
|
|
|
}
|
|
|
|
case Instruction::Sub: {
|
|
|
|
ISD::NodeType Opc = I->getType()->isFPOrFPVector() ? ISD::FSUB : ISD::SUB;
|
|
|
|
if (!SelectBinaryOp(I, Opc, ValueMap)) return I; break;
|
|
|
|
}
|
|
|
|
case Instruction::Mul: {
|
|
|
|
ISD::NodeType Opc = I->getType()->isFPOrFPVector() ? ISD::FMUL : ISD::MUL;
|
|
|
|
if (!SelectBinaryOp(I, Opc, ValueMap)) return I; break;
|
|
|
|
}
|
2008-08-20 08:11:48 +08:00
|
|
|
case Instruction::SDiv:
|
|
|
|
if (!SelectBinaryOp(I, ISD::SDIV, ValueMap)) return I; break;
|
|
|
|
case Instruction::UDiv:
|
|
|
|
if (!SelectBinaryOp(I, ISD::UDIV, ValueMap)) return I; break;
|
|
|
|
case Instruction::FDiv:
|
|
|
|
if (!SelectBinaryOp(I, ISD::FDIV, ValueMap)) return I; break;
|
|
|
|
case Instruction::SRem:
|
|
|
|
if (!SelectBinaryOp(I, ISD::SREM, ValueMap)) return I; break;
|
|
|
|
case Instruction::URem:
|
|
|
|
if (!SelectBinaryOp(I, ISD::UREM, ValueMap)) return I; break;
|
|
|
|
case Instruction::FRem:
|
|
|
|
if (!SelectBinaryOp(I, ISD::FREM, ValueMap)) return I; break;
|
|
|
|
case Instruction::Shl:
|
|
|
|
if (!SelectBinaryOp(I, ISD::SHL, ValueMap)) return I; break;
|
|
|
|
case Instruction::LShr:
|
|
|
|
if (!SelectBinaryOp(I, ISD::SRL, ValueMap)) return I; break;
|
|
|
|
case Instruction::AShr:
|
|
|
|
if (!SelectBinaryOp(I, ISD::SRA, ValueMap)) return I; break;
|
|
|
|
case Instruction::And:
|
|
|
|
if (!SelectBinaryOp(I, ISD::AND, ValueMap)) return I; break;
|
|
|
|
case Instruction::Or:
|
|
|
|
if (!SelectBinaryOp(I, ISD::OR, ValueMap)) return I; break;
|
|
|
|
case Instruction::Xor:
|
|
|
|
if (!SelectBinaryOp(I, ISD::XOR, ValueMap)) return I; break;
|
|
|
|
|
|
|
|
case Instruction::GetElementPtr:
|
|
|
|
if (!SelectGetElementPtr(I, ValueMap)) return I;
|
2008-08-14 04:19:35 +08:00
|
|
|
break;
|
2008-08-20 08:11:48 +08:00
|
|
|
|
2008-08-20 06:31:46 +08:00
|
|
|
case Instruction::Br: {
|
|
|
|
BranchInst *BI = cast<BranchInst>(I);
|
|
|
|
|
2008-08-23 04:51:05 +08:00
|
|
|
// For now, check for and handle just the most trivial case: an
|
|
|
|
// unconditional fall-through branch.
|
2008-08-20 09:17:01 +08:00
|
|
|
if (BI->isUnconditional()) {
|
2008-08-23 04:51:05 +08:00
|
|
|
MachineFunction::iterator NextMBB =
|
2008-08-20 09:17:01 +08:00
|
|
|
next(MachineFunction::iterator(MBB));
|
2008-08-23 04:51:05 +08:00
|
|
|
if (NextMBB != MF.end() &&
|
|
|
|
NextMBB->getBasicBlock() == BI->getSuccessor(0)) {
|
|
|
|
MBB->addSuccessor(NextMBB);
|
|
|
|
break;
|
2008-08-20 09:17:01 +08:00
|
|
|
}
|
2008-08-20 06:31:46 +08:00
|
|
|
}
|
|
|
|
|
2008-08-23 04:51:05 +08:00
|
|
|
// Something more complicated. Halt "fast" selection and bail.
|
2008-08-20 06:31:46 +08:00
|
|
|
return I;
|
|
|
|
}
|
2008-08-23 01:37:48 +08:00
|
|
|
|
|
|
|
case Instruction::PHI:
|
|
|
|
// PHI nodes are already emitted.
|
|
|
|
break;
|
|
|
|
|
2008-08-14 04:19:35 +08:00
|
|
|
default:
|
|
|
|
// Unhandled instruction. Halt "fast" selection and bail.
|
|
|
|
return I;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return I;
|
|
|
|
}
|
|
|
|
|
2008-08-21 05:05:57 +08:00
|
|
|
FastISel::FastISel(MachineFunction &mf)
|
2008-08-22 08:20:26 +08:00
|
|
|
: MF(mf),
|
|
|
|
MRI(mf.getRegInfo()),
|
|
|
|
TM(mf.getTarget()),
|
|
|
|
TD(*TM.getTargetData()),
|
|
|
|
TII(*TM.getInstrInfo()),
|
|
|
|
TLI(*TM.getTargetLowering()) {
|
2008-08-21 05:05:57 +08:00
|
|
|
}
|
|
|
|
|
2008-08-15 05:51:29 +08:00
|
|
|
FastISel::~FastISel() {}
|
|
|
|
|
2008-08-14 04:19:35 +08:00
|
|
|
unsigned FastISel::FastEmit_(MVT::SimpleValueType, ISD::NodeType) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned FastISel::FastEmit_r(MVT::SimpleValueType, ISD::NodeType,
|
|
|
|
unsigned /*Op0*/) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned FastISel::FastEmit_rr(MVT::SimpleValueType, ISD::NodeType,
|
|
|
|
unsigned /*Op0*/, unsigned /*Op0*/) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-21 09:41:07 +08:00
|
|
|
unsigned FastISel::FastEmit_i(MVT::SimpleValueType, uint64_t /*Imm*/) {
|
2008-08-21 06:45:34 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned FastISel::FastEmit_ri(MVT::SimpleValueType, ISD::NodeType,
|
2008-08-21 09:41:07 +08:00
|
|
|
unsigned /*Op0*/, uint64_t /*Imm*/) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned FastISel::FastEmit_rri(MVT::SimpleValueType, ISD::NodeType,
|
|
|
|
unsigned /*Op0*/, unsigned /*Op1*/,
|
|
|
|
uint64_t /*Imm*/) {
|
2008-08-21 06:45:34 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// FastEmit_ri_ - This method is a wrapper of FastEmit_ri. It first tries
|
|
|
|
/// to emit an instruction with an immediate operand using FastEmit_ri.
|
|
|
|
/// If that fails, it materializes the immediate into a register and try
|
|
|
|
/// FastEmit_rr instead.
|
|
|
|
unsigned FastISel::FastEmit_ri_(MVT::SimpleValueType VT, ISD::NodeType Opcode,
|
2008-08-21 09:41:07 +08:00
|
|
|
unsigned Op0, uint64_t Imm,
|
|
|
|
MVT::SimpleValueType ImmType) {
|
2008-08-21 06:45:34 +08:00
|
|
|
unsigned ResultReg = 0;
|
|
|
|
// First check if immediate type is legal. If not, we can't use the ri form.
|
|
|
|
if (TLI.getOperationAction(ISD::Constant, ImmType) == TargetLowering::Legal)
|
2008-08-21 09:41:07 +08:00
|
|
|
ResultReg = FastEmit_ri(VT, Opcode, Op0, Imm);
|
2008-08-21 06:45:34 +08:00
|
|
|
if (ResultReg != 0)
|
|
|
|
return ResultReg;
|
2008-08-21 09:41:07 +08:00
|
|
|
unsigned MaterialReg = FastEmit_i(ImmType, Imm);
|
|
|
|
if (MaterialReg == 0)
|
|
|
|
return 0;
|
|
|
|
return FastEmit_rr(VT, Opcode, Op0, MaterialReg);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned FastISel::createResultReg(const TargetRegisterClass* RC) {
|
|
|
|
return MRI.createVirtualRegister(RC);
|
2008-08-21 06:45:34 +08:00
|
|
|
}
|
|
|
|
|
2008-08-14 04:19:35 +08:00
|
|
|
unsigned FastISel::FastEmitInst_(unsigned MachineInstOpcode,
|
2008-08-21 02:09:38 +08:00
|
|
|
const TargetRegisterClass* RC) {
|
2008-08-21 09:41:07 +08:00
|
|
|
unsigned ResultReg = createResultReg(RC);
|
2008-08-21 05:05:57 +08:00
|
|
|
const TargetInstrDesc &II = TII.get(MachineInstOpcode);
|
2008-08-14 04:19:35 +08:00
|
|
|
|
2008-08-21 07:53:10 +08:00
|
|
|
BuildMI(MBB, II, ResultReg);
|
2008-08-14 04:19:35 +08:00
|
|
|
return ResultReg;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned FastISel::FastEmitInst_r(unsigned MachineInstOpcode,
|
|
|
|
const TargetRegisterClass *RC,
|
|
|
|
unsigned Op0) {
|
2008-08-21 09:41:07 +08:00
|
|
|
unsigned ResultReg = createResultReg(RC);
|
2008-08-21 05:05:57 +08:00
|
|
|
const TargetInstrDesc &II = TII.get(MachineInstOpcode);
|
2008-08-14 04:19:35 +08:00
|
|
|
|
2008-08-21 07:53:10 +08:00
|
|
|
BuildMI(MBB, II, ResultReg).addReg(Op0);
|
2008-08-14 04:19:35 +08:00
|
|
|
return ResultReg;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned FastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
|
|
|
|
const TargetRegisterClass *RC,
|
|
|
|
unsigned Op0, unsigned Op1) {
|
2008-08-21 09:41:07 +08:00
|
|
|
unsigned ResultReg = createResultReg(RC);
|
2008-08-21 05:05:57 +08:00
|
|
|
const TargetInstrDesc &II = TII.get(MachineInstOpcode);
|
2008-08-14 04:19:35 +08:00
|
|
|
|
2008-08-21 07:53:10 +08:00
|
|
|
BuildMI(MBB, II, ResultReg).addReg(Op0).addReg(Op1);
|
2008-08-14 04:19:35 +08:00
|
|
|
return ResultReg;
|
|
|
|
}
|
2008-08-21 09:41:07 +08:00
|
|
|
|
|
|
|
unsigned FastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
|
|
|
|
const TargetRegisterClass *RC,
|
|
|
|
unsigned Op0, uint64_t Imm) {
|
|
|
|
unsigned ResultReg = createResultReg(RC);
|
|
|
|
const TargetInstrDesc &II = TII.get(MachineInstOpcode);
|
|
|
|
|
|
|
|
BuildMI(MBB, II, ResultReg).addReg(Op0).addImm(Imm);
|
|
|
|
return ResultReg;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned FastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
|
|
|
|
const TargetRegisterClass *RC,
|
|
|
|
unsigned Op0, unsigned Op1, uint64_t Imm) {
|
|
|
|
unsigned ResultReg = createResultReg(RC);
|
|
|
|
const TargetInstrDesc &II = TII.get(MachineInstOpcode);
|
|
|
|
|
|
|
|
BuildMI(MBB, II, ResultReg).addReg(Op0).addReg(Op1).addImm(Imm);
|
|
|
|
return ResultReg;
|
|
|
|
}
|