2012-02-18 20:03:15 +08:00
|
|
|
//===-- ARMInstrInfo.cpp - ARM Instruction Information --------------------===//
|
2006-05-15 06:18:28 +08:00
|
|
|
//
|
|
|
|
// 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"
|
2012-09-27 13:21:41 +08:00
|
|
|
#include "ARMConstantPoolValue.h"
|
2007-01-19 15:51:42 +08:00
|
|
|
#include "ARMMachineFunctionInfo.h"
|
2012-09-27 13:21:41 +08:00
|
|
|
#include "ARMTargetMachine.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"
|
2013-08-27 04:07:25 +08:00
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/Function.h"
|
|
|
|
#include "llvm/IR/GlobalVariable.h"
|
2009-08-23 04:48:53 +08:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2012-02-29 07:53:30 +08:00
|
|
|
#include "llvm/MC/MCInst.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)
|
2015-03-12 13:12:31 +08:00
|
|
|
: ARMBaseInstrInfo(STI), RI() {}
|
2006-08-09 04:35:03 +08:00
|
|
|
|
2017-04-22 05:48:41 +08:00
|
|
|
/// Return the noop instruction to use for a noop.
|
|
|
|
void ARMInstrInfo::getNoop(MCInst &NopInst) const {
|
2012-02-29 07:53:30 +08:00
|
|
|
if (hasNOP()) {
|
2012-06-19 03:45:50 +08:00
|
|
|
NopInst.setOpcode(ARM::HINT);
|
2015-05-14 02:37:00 +08:00
|
|
|
NopInst.addOperand(MCOperand::createImm(0));
|
|
|
|
NopInst.addOperand(MCOperand::createImm(ARMCC::AL));
|
|
|
|
NopInst.addOperand(MCOperand::createReg(0));
|
2012-02-29 07:53:30 +08:00
|
|
|
} else {
|
|
|
|
NopInst.setOpcode(ARM::MOVr);
|
2015-05-14 02:37:00 +08:00
|
|
|
NopInst.addOperand(MCOperand::createReg(ARM::R0));
|
|
|
|
NopInst.addOperand(MCOperand::createReg(ARM::R0));
|
|
|
|
NopInst.addOperand(MCOperand::createImm(ARMCC::AL));
|
|
|
|
NopInst.addOperand(MCOperand::createReg(0));
|
|
|
|
NopInst.addOperand(MCOperand::createReg(0));
|
2012-02-29 07:53:30 +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) {
|
2015-09-22 19:10:17 +08:00
|
|
|
default:
|
|
|
|
break;
|
2011-08-27 04:43:14 +08:00
|
|
|
case ARM::LDR_PRE_IMM:
|
|
|
|
case ARM::LDR_PRE_REG:
|
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;
|
2011-08-27 04:43:14 +08:00
|
|
|
case ARM::LDRB_PRE_IMM:
|
|
|
|
case ARM::LDRB_PRE_REG:
|
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
|
|
|
}
|
2012-09-27 13:21:41 +08:00
|
|
|
|
2016-06-28 23:18:26 +08:00
|
|
|
void ARMInstrInfo::expandLoadStackGuard(MachineBasicBlock::iterator MI) const {
|
2014-10-23 12:17:05 +08:00
|
|
|
MachineFunction &MF = *MI->getParent()->getParent();
|
2015-02-20 16:24:37 +08:00
|
|
|
const ARMSubtarget &Subtarget = MF.getSubtarget<ARMSubtarget>();
|
2016-06-28 23:18:26 +08:00
|
|
|
const TargetMachine &TM = MF.getTarget();
|
2014-10-23 12:17:05 +08:00
|
|
|
|
|
|
|
if (!Subtarget.useMovt(MF)) {
|
2016-06-28 23:18:26 +08:00
|
|
|
if (TM.isPositionIndependent())
|
|
|
|
expandLoadStackGuardBase(MI, ARM::LDRLIT_ga_pcrel, ARM::LDRi12);
|
2014-10-23 12:17:05 +08:00
|
|
|
else
|
2016-06-28 23:18:26 +08:00
|
|
|
expandLoadStackGuardBase(MI, ARM::LDRLIT_ga_abs, ARM::LDRi12);
|
2014-10-23 12:17:05 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-06-28 23:18:26 +08:00
|
|
|
if (!TM.isPositionIndependent()) {
|
|
|
|
expandLoadStackGuardBase(MI, ARM::MOVi32imm, ARM::LDRi12);
|
2014-10-23 12:17:05 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const GlobalValue *GV =
|
|
|
|
cast<GlobalValue>((*MI->memoperands_begin())->getValue());
|
|
|
|
|
2016-06-28 23:38:13 +08:00
|
|
|
if (!Subtarget.isGVIndirectSymbol(GV)) {
|
2016-06-28 23:18:26 +08:00
|
|
|
expandLoadStackGuardBase(MI, ARM::MOV_ga_pcrel, ARM::LDRi12);
|
2014-10-23 12:17:05 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
MachineBasicBlock &MBB = *MI->getParent();
|
|
|
|
DebugLoc DL = MI->getDebugLoc();
|
|
|
|
unsigned Reg = MI->getOperand(0).getReg();
|
|
|
|
MachineInstrBuilder MIB;
|
|
|
|
|
|
|
|
MIB = BuildMI(MBB, MI, DL, get(ARM::MOV_ga_pcrel_ldr), Reg)
|
|
|
|
.addGlobalAddress(GV, 0, ARMII::MO_NONLAZY);
|
[CodeGen] Split out the notions of MI invariance and MI dereferenceability.
Summary:
An IR load can be invariant, dereferenceable, neither, or both. But
currently, MI's notion of invariance is IR-invariant &&
IR-dereferenceable.
This patch splits up the notions of invariance and dereferenceability at
the MI level. It's NFC, so adds some probably-unnecessary
"is-dereferenceable" checks, which we can remove later if desired.
Reviewers: chandlerc, tstellarAMD
Subscribers: jholewinski, arsenm, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D23371
llvm-svn: 281151
2016-09-11 09:38:58 +08:00
|
|
|
auto Flags = MachineMemOperand::MOLoad |
|
|
|
|
MachineMemOperand::MODereferenceable |
|
|
|
|
MachineMemOperand::MOInvariant;
|
2014-10-23 12:17:05 +08:00
|
|
|
MachineMemOperand *MMO = MBB.getParent()->getMachineMemOperand(
|
2016-07-16 02:26:59 +08:00
|
|
|
MachinePointerInfo::getGOT(*MBB.getParent()), Flags, 4, 4);
|
2014-10-23 12:17:05 +08:00
|
|
|
MIB.addMemOperand(MMO);
|
2017-01-13 17:37:56 +08:00
|
|
|
BuildMI(MBB, MI, DL, get(ARM::LDRi12), Reg)
|
|
|
|
.addReg(Reg, RegState::Kill)
|
|
|
|
.addImm(0)
|
2018-08-17 05:30:05 +08:00
|
|
|
.cloneMemRefs(*MI)
|
2017-01-13 17:37:56 +08:00
|
|
|
.add(predOps(ARMCC::AL));
|
2014-07-26 03:31:34 +08:00
|
|
|
}
|