1 //===-- ARMInstrInfo.h - ARM Instruction Information ------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 // This file contains the ARM implementation of the TargetInstrInfo class.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_ARM_ARMINSTRINFO_H
14 #define LLVM_LIB_TARGET_ARM_ARMINSTRINFO_H
16 #include "ARMBaseInstrInfo.h"
17 #include "ARMRegisterInfo.h"
22 class ARMInstrInfo
: public ARMBaseInstrInfo
{
25 explicit ARMInstrInfo(const ARMSubtarget
&STI
);
27 /// Return the noop instruction to use for a noop.
28 void getNoop(MCInst
&NopInst
) const override
;
30 // Return the non-pre/post incrementing version of 'Opc'. Return 0
31 // if there is not such an opcode.
32 unsigned getUnindexedOpcode(unsigned Opc
) const override
;
34 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
35 /// such, whenever a client has an instance of instruction info, it should
36 /// always be able to get register info as well (through this method).
38 const ARMRegisterInfo
&getRegisterInfo() const override
{ return RI
; }
41 void expandLoadStackGuard(MachineBasicBlock::iterator MI
) const override
;