2006-05-14 22:18:28 +00:00
|
|
|
//===- ARMInstrInfo.cpp - ARM Instruction Information -----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
2006-05-14 22:18:28 +00: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 07:51:42 +00:00
|
|
|
#include "ARMAddressingModes.h"
|
2006-05-14 22:18:28 +00:00
|
|
|
#include "ARMGenInstrInfo.inc"
|
2007-01-19 07:51:42 +00:00
|
|
|
#include "ARMMachineFunctionInfo.h"
|
2007-09-07 04:06:50 +00:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2007-01-19 07:51:42 +00:00
|
|
|
#include "llvm/CodeGen/LiveVariables.h"
|
2008-01-04 23:57:37 +00:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
2007-01-29 23:45:17 +00:00
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
|
|
|
#include "llvm/CodeGen/MachineJumpTableInfo.h"
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2006-05-14 22:18:28 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-06-26 21:28:53 +00:00
|
|
|
ARMInstrInfo::ARMInstrInfo(const ARMSubtarget &STI)
|
2009-11-02 00:10:38 +00:00
|
|
|
: ARMBaseInstrInfo(STI), RI(*this, STI) {
|
2009-06-26 21:28:53 +00:00
|
|
|
}
|
2006-08-08 20:35:03 +00:00
|
|
|
|
2009-08-02 05:20:37 +00:00
|
|
|
unsigned ARMInstrInfo::getUnindexedOpcode(unsigned Opc) const {
|
2007-01-19 07:51:42 +00:00
|
|
|
switch (Opc) {
|
|
|
|
default: break;
|
|
|
|
case ARM::LDR_PRE:
|
|
|
|
case ARM::LDR_POST:
|
2010-10-26 22:37:02 +00:00
|
|
|
return ARM::LDRi12;
|
2007-01-19 07:51:42 +00:00
|
|
|
case ARM::LDRH_PRE:
|
|
|
|
case ARM::LDRH_POST:
|
|
|
|
return ARM::LDRH;
|
|
|
|
case ARM::LDRB_PRE:
|
|
|
|
case ARM::LDRB_POST:
|
2010-10-27 00:19:44 +00:00
|
|
|
return ARM::LDRBi12;
|
2007-01-19 07:51:42 +00:00
|
|
|
case ARM::LDRSH_PRE:
|
|
|
|
case ARM::LDRSH_POST:
|
|
|
|
return ARM::LDRSH;
|
|
|
|
case ARM::LDRSB_PRE:
|
|
|
|
case ARM::LDRSB_POST:
|
|
|
|
return ARM::LDRSB;
|
|
|
|
case ARM::STR_PRE:
|
|
|
|
case ARM::STR_POST:
|
2010-10-27 23:12:14 +00:00
|
|
|
return ARM::STRi12;
|
2007-01-19 07:51:42 +00:00
|
|
|
case ARM::STRH_PRE:
|
|
|
|
case ARM::STRH_POST:
|
|
|
|
return ARM::STRH;
|
|
|
|
case ARM::STRB_PRE:
|
|
|
|
case ARM::STRB_POST:
|
2010-10-27 23:12:14 +00:00
|
|
|
return ARM::STRBi12;
|
2006-09-13 12:09:43 +00:00
|
|
|
}
|
2009-07-08 16:09:28 +00:00
|
|
|
|
2007-01-19 07:51:42 +00:00
|
|
|
return 0;
|
2006-05-14 22:18:28 +00:00
|
|
|
}
|