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