2008-08-13 20:19:35 +00: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-19 22:31:46 +00:00
|
|
|
#include "llvm/Instructions.h"
|
2008-08-13 20:19:35 +00:00
|
|
|
#include "llvm/CodeGen/FastISel.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2008-08-20 00:11:48 +00: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) {
|
|
|
|
unsigned Op0 = ValueMap[I->getOperand(0)];
|
|
|
|
unsigned Op1 = ValueMap[I->getOperand(1)];
|
2008-08-20 00:35:17 +00:00
|
|
|
if (Op0 == 0 || Op1 == 0)
|
|
|
|
// Unhandled operand. Halt "fast" selection and bail.
|
|
|
|
return false;
|
|
|
|
|
2008-08-20 00:11:48 +00:00
|
|
|
MVT VT = MVT::getMVT(I->getType(), /*HandleUnknown=*/true);
|
|
|
|
if (VT == MVT::Other || !VT.isSimple())
|
|
|
|
// Unhandled type. Halt "fast" selection and bail.
|
|
|
|
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 00:23:20 +00:00
|
|
|
// We successfully emitted code for the given LLVM Instruction.
|
2008-08-20 00:11:48 +00:00
|
|
|
ValueMap[I] = ResultReg;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FastISel::SelectGetElementPtr(Instruction *I,
|
|
|
|
DenseMap<const Value*, unsigned> &ValueMap) {
|
|
|
|
// TODO: implement me
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-08-13 20:19:35 +00:00
|
|
|
BasicBlock::iterator
|
|
|
|
FastISel::SelectInstructions(BasicBlock::iterator Begin, BasicBlock::iterator End,
|
|
|
|
DenseMap<const Value*, unsigned> &ValueMap) {
|
|
|
|
BasicBlock::iterator I = Begin;
|
|
|
|
|
|
|
|
for (; I != End; ++I) {
|
|
|
|
switch (I->getOpcode()) {
|
2008-08-20 00:23:20 +00: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 00:11:48 +00: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-13 20:19:35 +00:00
|
|
|
break;
|
2008-08-20 00:11:48 +00:00
|
|
|
|
2008-08-19 22:31:46 +00:00
|
|
|
case Instruction::Br: {
|
|
|
|
BranchInst *BI = cast<BranchInst>(I);
|
|
|
|
|
|
|
|
// For now, check for and handle just the most trivial case: an
|
|
|
|
// unconditional fall-through branch.
|
2008-08-20 01:17:01 +00:00
|
|
|
if (BI->isUnconditional()) {
|
|
|
|
MachineFunction::iterator NextMBB =
|
|
|
|
next(MachineFunction::iterator(MBB));
|
|
|
|
if (NextMBB != MF->end() &&
|
|
|
|
NextMBB->getBasicBlock() == BI->getSuccessor(0)) {
|
|
|
|
MBB->addSuccessor(NextMBB);
|
|
|
|
break;
|
|
|
|
}
|
2008-08-19 22:31:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Something more complicated. Halt "fast" selection and bail.
|
|
|
|
return I;
|
|
|
|
}
|
2008-08-13 20:19:35 +00:00
|
|
|
default:
|
|
|
|
// Unhandled instruction. Halt "fast" selection and bail.
|
|
|
|
return I;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return I;
|
|
|
|
}
|
|
|
|
|
2008-08-14 21:51:29 +00:00
|
|
|
FastISel::~FastISel() {}
|
|
|
|
|
2008-08-13 20:19:35 +00: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned FastISel::FastEmitInst_(unsigned MachineInstOpcode,
|
|
|
|
const TargetRegisterClass* RC) {
|
|
|
|
MachineRegisterInfo &MRI = MF->getRegInfo();
|
|
|
|
const TargetInstrDesc &II = TII->get(MachineInstOpcode);
|
|
|
|
unsigned ResultReg = MRI.createVirtualRegister(RC);
|
|
|
|
|
2008-08-19 20:46:54 +00:00
|
|
|
MachineInstr *MI = BuildMI(*MF, II, ResultReg);
|
2008-08-13 20:19:35 +00:00
|
|
|
|
|
|
|
MBB->push_back(MI);
|
|
|
|
return ResultReg;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned FastISel::FastEmitInst_r(unsigned MachineInstOpcode,
|
|
|
|
const TargetRegisterClass *RC,
|
|
|
|
unsigned Op0) {
|
|
|
|
MachineRegisterInfo &MRI = MF->getRegInfo();
|
|
|
|
const TargetInstrDesc &II = TII->get(MachineInstOpcode);
|
|
|
|
unsigned ResultReg = MRI.createVirtualRegister(RC);
|
|
|
|
|
2008-08-19 20:46:54 +00:00
|
|
|
MachineInstr *MI = BuildMI(*MF, II, ResultReg);
|
2008-08-13 20:19:35 +00:00
|
|
|
MI->addOperand(MachineOperand::CreateReg(Op0, false));
|
|
|
|
|
|
|
|
MBB->push_back(MI);
|
|
|
|
return ResultReg;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned FastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
|
|
|
|
const TargetRegisterClass *RC,
|
|
|
|
unsigned Op0, unsigned Op1) {
|
|
|
|
MachineRegisterInfo &MRI = MF->getRegInfo();
|
|
|
|
const TargetInstrDesc &II = TII->get(MachineInstOpcode);
|
|
|
|
unsigned ResultReg = MRI.createVirtualRegister(RC);
|
|
|
|
|
2008-08-19 20:46:54 +00:00
|
|
|
MachineInstr *MI = BuildMI(*MF, II, ResultReg);
|
2008-08-13 20:19:35 +00:00
|
|
|
MI->addOperand(MachineOperand::CreateReg(Op0, false));
|
|
|
|
MI->addOperand(MachineOperand::CreateReg(Op1, false));
|
|
|
|
|
|
|
|
MBB->push_back(MI);
|
|
|
|
return ResultReg;
|
|
|
|
}
|