2006-05-14 22:18:28 +00:00
|
|
|
//===- ARMInstrInfo.cpp - ARM Instruction Information -----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the "Instituto Nokia de Tecnologia" and
|
|
|
|
// is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the ARM implementation of the TargetInstrInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "ARMInstrInfo.h"
|
|
|
|
#include "ARM.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
|
|
|
#include "ARMGenInstrInfo.inc"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
ARMInstrInfo::ARMInstrInfo()
|
2006-11-27 23:37:22 +00:00
|
|
|
: TargetInstrInfo(ARMInsts, sizeof(ARMInsts)/sizeof(ARMInsts[0])),
|
|
|
|
RI(*this) {
|
2006-05-14 22:18:28 +00:00
|
|
|
}
|
|
|
|
|
2006-08-08 20:35:03 +00:00
|
|
|
const TargetRegisterClass *ARMInstrInfo::getPointerRegClass() const {
|
|
|
|
return &ARM::IntRegsRegClass;
|
|
|
|
}
|
|
|
|
|
2006-05-14 22:18:28 +00:00
|
|
|
/// Return true if the instruction is a register to register move and
|
|
|
|
/// leave the source and dest operands in the passed parameters.
|
|
|
|
///
|
|
|
|
bool ARMInstrInfo::isMoveInstr(const MachineInstr &MI,
|
|
|
|
unsigned &SrcReg, unsigned &DstReg) const {
|
2006-06-27 21:52:45 +00:00
|
|
|
MachineOpCode oc = MI.getOpcode();
|
|
|
|
switch (oc) {
|
2006-09-13 12:09:43 +00:00
|
|
|
case ARM::MOV: {
|
|
|
|
assert(MI.getNumOperands() == 4 &&
|
2006-06-27 21:52:45 +00:00
|
|
|
MI.getOperand(0).isRegister() &&
|
|
|
|
"Invalid ARM MOV instruction");
|
2006-09-13 12:09:43 +00:00
|
|
|
const MachineOperand &Arg = MI.getOperand(1);
|
|
|
|
const MachineOperand &Shift = MI.getOperand(2);
|
|
|
|
if (Arg.isRegister() && Shift.isImmediate() && Shift.getImmedValue() == 0) {
|
2006-09-11 17:25:40 +00:00
|
|
|
SrcReg = MI.getOperand(1).getReg();
|
|
|
|
DstReg = MI.getOperand(0).getReg();
|
|
|
|
return true;
|
|
|
|
}
|
2006-06-27 21:52:45 +00:00
|
|
|
}
|
2006-09-13 12:09:43 +00:00
|
|
|
}
|
2006-09-11 17:25:40 +00:00
|
|
|
return false;
|
2006-05-14 22:18:28 +00:00
|
|
|
}
|
2006-10-24 16:47:57 +00:00
|
|
|
|
|
|
|
void ARMInstrInfo::InsertBranch(MachineBasicBlock &MBB,MachineBasicBlock *TBB,
|
|
|
|
MachineBasicBlock *FBB,
|
|
|
|
const std::vector<MachineOperand> &Cond)const{
|
|
|
|
// Can only insert uncond branches so far.
|
|
|
|
assert(Cond.empty() && !FBB && TBB && "Can only handle uncond branches!");
|
2006-11-27 23:37:22 +00:00
|
|
|
BuildMI(&MBB, get(ARM::b)).addMBB(TBB);
|
2006-10-24 17:07:11 +00:00
|
|
|
}
|