LLVM 20.0.0git
ARMInstrInfo.cpp
Go to the documentation of this file.
1//===-- ARMInstrInfo.cpp - ARM Instruction Information --------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file contains the ARM implementation of the TargetInstrInfo class.
10//
11//===----------------------------------------------------------------------===//
12
13#include "ARMInstrInfo.h"
14#include "ARM.h"
17#include "ARMTargetMachine.h"
22#include "llvm/IR/Function.h"
24#include "llvm/IR/Module.h"
25#include "llvm/MC/MCInst.h"
26using namespace llvm;
27
29
30/// Return the noop instruction to use for a noop.
32 MCInst NopInst;
33 if (hasNOP()) {
34 NopInst.setOpcode(ARM::HINT);
38 } else {
39 NopInst.setOpcode(ARM::MOVr);
40 NopInst.addOperand(MCOperand::createReg(ARM::R0));
41 NopInst.addOperand(MCOperand::createReg(ARM::R0));
45 }
46 return NopInst;
47}
48
49unsigned ARMInstrInfo::getUnindexedOpcode(unsigned Opc) const {
50 switch (Opc) {
51 default:
52 break;
53 case ARM::LDR_PRE_IMM:
54 case ARM::LDR_PRE_REG:
55 case ARM::LDR_POST_IMM:
56 case ARM::LDR_POST_REG:
57 return ARM::LDRi12;
58 case ARM::LDRH_PRE:
59 case ARM::LDRH_POST:
60 return ARM::LDRH;
61 case ARM::LDRB_PRE_IMM:
62 case ARM::LDRB_PRE_REG:
63 case ARM::LDRB_POST_IMM:
64 case ARM::LDRB_POST_REG:
65 return ARM::LDRBi12;
66 case ARM::LDRSH_PRE:
67 case ARM::LDRSH_POST:
68 return ARM::LDRSH;
69 case ARM::LDRSB_PRE:
70 case ARM::LDRSB_POST:
71 return ARM::LDRSB;
72 case ARM::STR_PRE_IMM:
73 case ARM::STR_PRE_REG:
74 case ARM::STR_POST_IMM:
75 case ARM::STR_POST_REG:
76 return ARM::STRi12;
77 case ARM::STRH_PRE:
78 case ARM::STRH_POST:
79 return ARM::STRH;
80 case ARM::STRB_PRE_IMM:
81 case ARM::STRB_PRE_REG:
82 case ARM::STRB_POST_IMM:
83 case ARM::STRB_POST_REG:
84 return ARM::STRBi12;
85 }
86
87 return 0;
88}
89
90void ARMInstrInfo::expandLoadStackGuard(MachineBasicBlock::iterator MI) const {
91 MachineFunction &MF = *MI->getParent()->getParent();
92 const ARMSubtarget &Subtarget = MF.getSubtarget<ARMSubtarget>();
93 const TargetMachine &TM = MF.getTarget();
94 Module &M = *MF.getFunction().getParent();
95
96 if (M.getStackProtectorGuard() == "tls") {
97 expandLoadStackGuardBase(MI, ARM::MRC, ARM::LDRi12);
98 return;
99 }
100
101 const GlobalValue *GV =
102 cast<GlobalValue>((*MI->memoperands_begin())->getValue());
103
104 bool ForceELFGOTPIC = Subtarget.isTargetELF() && !GV->isDSOLocal();
105 if (!Subtarget.useMovt() || ForceELFGOTPIC) {
106 // For ELF non-PIC, use GOT PIC code sequence as well because R_ARM_GOT_ABS
107 // does not have assembler support.
108 if (TM.isPositionIndependent() || ForceELFGOTPIC)
109 expandLoadStackGuardBase(MI, ARM::LDRLIT_ga_pcrel, ARM::LDRi12);
110 else
111 expandLoadStackGuardBase(MI, ARM::LDRLIT_ga_abs, ARM::LDRi12);
112 return;
113 }
114
115 if (!TM.isPositionIndependent()) {
116 expandLoadStackGuardBase(MI, ARM::MOVi32imm, ARM::LDRi12);
117 return;
118 }
119
120 if (!Subtarget.isGVIndirectSymbol(GV)) {
121 expandLoadStackGuardBase(MI, ARM::MOV_ga_pcrel, ARM::LDRi12);
122 return;
123 }
124
125 MachineBasicBlock &MBB = *MI->getParent();
126 DebugLoc DL = MI->getDebugLoc();
127 Register Reg = MI->getOperand(0).getReg();
129
130 MIB = BuildMI(MBB, MI, DL, get(ARM::MOV_ga_pcrel_ldr), Reg)
137 MIB.addMemOperand(MMO);
138 BuildMI(MBB, MI, DL, get(ARM::LDRi12), Reg)
140 .addImm(0)
143}
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
IRTranslator LLVM IR MI
Module.h This file contains the declarations for the Module class.
void expandLoadStackGuardBase(MachineBasicBlock::iterator MI, unsigned LoadImmOpc, unsigned LoadOpc) const
unsigned getUnindexedOpcode(unsigned Opc) const override
ARMInstrInfo(const ARMSubtarget &STI)
MCInst getNop() const override
Return the noop instruction to use for a noop.
bool useMovt() const
bool isGVIndirectSymbol(const GlobalValue *GV) const
True if the GV will be accessed via an indirect symbol.
bool isTargetELF() const
Definition: ARMSubtarget.h:348
A debug info location.
Definition: DebugLoc.h:33
bool isDSOLocal() const
Definition: GlobalValue.h:305
Module * getParent()
Get the module that this global value is contained inside of...
Definition: GlobalValue.h:656
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:185
void addOperand(const MCOperand Op)
Definition: MCInst.h:211
void setOpcode(unsigned Op)
Definition: MCInst.h:198
static MCOperand createReg(MCRegister Reg)
Definition: MCInst.h:135
static MCOperand createImm(int64_t Val)
Definition: MCInst.h:142
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags f, LLT MemTy, Align base_alignment, const AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=nullptr, SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
Function & getFunction()
Return the LLVM function that this machine code represents.
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
const MachineInstrBuilder & addGlobalAddress(const GlobalValue *GV, int64_t Offset=0, unsigned TargetFlags=0) const
const MachineInstrBuilder & addReg(Register RegNo, unsigned flags=0, unsigned SubReg=0) const
Add a new virtual register operand.
const MachineInstrBuilder & cloneMemRefs(const MachineInstr &OtherMI) const
const MachineInstrBuilder & addMemOperand(MachineMemOperand *MMO) const
A description of a memory reference used in the backend.
@ MODereferenceable
The memory access is dereferenceable (i.e., doesn't trap).
@ MOLoad
The memory access reads data.
@ MOInvariant
The memory access always returns the same value (or traps).
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:77
@ MO_NONLAZY
MO_NONLAZY - This is an independent flag, on a symbol operand "FOO" it represents a symbol which,...
Definition: ARMBaseInfo.h:288
@ Kill
The last use of a register.
Reg
All possible values of the reg field in the ModR/M byte.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
static std::array< MachineOperand, 2 > predOps(ARMCC::CondCodes Pred, unsigned PredReg=0)
Get the operands corresponding to the given Pred value.
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39
static MachinePointerInfo getGOT(MachineFunction &MF)
Return a MachinePointerInfo record that refers to a GOT entry.