2006-05-15 06:18:28 +08:00
|
|
|
//===- ARMInstrInfo.cpp - ARM Instruction Information -----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
2006-05-15 06:18:28 +08:00
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the ARM implementation of the TargetInstrInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "ARMInstrInfo.h"
|
|
|
|
#include "ARM.h"
|
2007-01-19 15:51:42 +08:00
|
|
|
#include "ARMMachineFunctionInfo.h"
|
2011-07-21 07:34:39 +08:00
|
|
|
#include "MCTargetDesc/ARMAddressingModes.h"
|
2007-09-07 12:06:50 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2007-01-19 15:51:42 +08:00
|
|
|
#include "llvm/CodeGen/LiveVariables.h"
|
2008-01-05 07:57:37 +08:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
2007-01-30 07:45:17 +08:00
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
|
|
|
#include "llvm/CodeGen/MachineJumpTableInfo.h"
|
2009-08-23 04:48:53 +08:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2006-05-15 06:18:28 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-06-27 05:28:53 +08:00
|
|
|
ARMInstrInfo::ARMInstrInfo(const ARMSubtarget &STI)
|
2009-11-02 08:10:38 +08:00
|
|
|
: ARMBaseInstrInfo(STI), RI(*this, STI) {
|
2009-06-27 05:28:53 +08:00
|
|
|
}
|
2006-08-09 04:35:03 +08:00
|
|
|
|
2009-08-02 13:20:37 +08:00
|
|
|
unsigned ARMInstrInfo::getUnindexedOpcode(unsigned Opc) const {
|
2007-01-19 15:51:42 +08:00
|
|
|
switch (Opc) {
|
|
|
|
default: break;
|
|
|
|
case ARM::LDR_PRE:
|
2011-07-27 04:54:26 +08:00
|
|
|
case ARM::LDR_POST_IMM:
|
|
|
|
case ARM::LDR_POST_REG:
|
2010-10-27 06:37:02 +08:00
|
|
|
return ARM::LDRi12;
|
2007-01-19 15:51:42 +08:00
|
|
|
case ARM::LDRH_PRE:
|
|
|
|
case ARM::LDRH_POST:
|
|
|
|
return ARM::LDRH;
|
|
|
|
case ARM::LDRB_PRE:
|
2011-07-27 04:54:26 +08:00
|
|
|
case ARM::LDRB_POST_IMM:
|
|
|
|
case ARM::LDRB_POST_REG:
|
2010-10-27 08:19:44 +08:00
|
|
|
return ARM::LDRBi12;
|
2007-01-19 15:51:42 +08:00
|
|
|
case ARM::LDRSH_PRE:
|
|
|
|
case ARM::LDRSH_POST:
|
|
|
|
return ARM::LDRSH;
|
|
|
|
case ARM::LDRSB_PRE:
|
|
|
|
case ARM::LDRSB_POST:
|
|
|
|
return ARM::LDRSB;
|
2011-07-27 04:54:26 +08:00
|
|
|
case ARM::STR_PRE_IMM:
|
|
|
|
case ARM::STR_PRE_REG:
|
|
|
|
case ARM::STR_POST_IMM:
|
|
|
|
case ARM::STR_POST_REG:
|
2010-10-28 07:12:14 +08:00
|
|
|
return ARM::STRi12;
|
2007-01-19 15:51:42 +08:00
|
|
|
case ARM::STRH_PRE:
|
|
|
|
case ARM::STRH_POST:
|
|
|
|
return ARM::STRH;
|
2011-07-27 04:54:26 +08:00
|
|
|
case ARM::STRB_PRE_IMM:
|
|
|
|
case ARM::STRB_PRE_REG:
|
|
|
|
case ARM::STRB_POST_IMM:
|
|
|
|
case ARM::STRB_POST_REG:
|
2010-10-28 07:12:14 +08:00
|
|
|
return ARM::STRBi12;
|
2006-09-13 20:09:43 +08:00
|
|
|
}
|
2009-07-09 00:09:28 +08:00
|
|
|
|
2007-01-19 15:51:42 +08:00
|
|
|
return 0;
|
2006-05-15 06:18:28 +08:00
|
|
|
}
|