1 //===- ARMInstrInfo.h - ARM Instruction Information -------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file was developed by the "Instituto Nokia de Tecnologia" and
6 // is distributed under the University of Illinois Open Source
7 // License. See LICENSE.TXT for details.
9 //===----------------------------------------------------------------------===//
11 // This file contains the ARM implementation of the TargetInstrInfo class.
13 //===----------------------------------------------------------------------===//
15 #ifndef ARMINSTRUCTIONINFO_H
16 #define ARMINSTRUCTIONINFO_H
18 #include "llvm/Target/TargetInstrInfo.h"
19 #include "ARMRegisterInfo.h"
24 /// ARMII - This namespace holds all of the target specific flags that
25 /// instruction info tracks.
29 //===------------------------------------------------------------------===//
32 //===------------------------------------------------------------------===//
33 // This three-bit field describes the addressing mode used. Zero is unused
34 // so that we can tell if we forgot to set a value.
45 AddrModeTs = 9, // i8 * 4 for pc and sp relative data
47 // Size* - Flags to keep track of the size of an instruction.
49 SizeMask = 7 << SizeShift,
50 SizeSpecial = 1, // 0 byte pseudo or special case.
55 // IndexMode - Unindex, pre-indexed, or post-indexed. Only valid for load
58 IndexModeMask = 3 << IndexModeShift,
64 OpcodeMask = 0xf << OpcodeShift
68 class ARMInstrInfo : public TargetInstrInfo {
69 const ARMRegisterInfo RI;
71 ARMInstrInfo(const ARMSubtarget &STI);
73 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
74 /// such, whenever a client has an instance of instruction info, it should
75 /// always be able to get register info as well (through this method).
77 virtual const MRegisterInfo &getRegisterInfo() const { return RI; }
79 /// getPointerRegClass - Return the register class to use to hold pointers.
80 /// This is used for addressing modes.
81 virtual const TargetRegisterClass *getPointerRegClass() const;
83 /// getDWARF_LABELOpcode - Return the opcode of the target's DWARF_LABEL
84 /// instruction if it has one. This is used by codegen passes that update
85 /// DWARF line number info as they modify the code.
86 virtual unsigned getDWARF_LABELOpcode() const;
88 /// Return true if the instruction is a register to register move and
89 /// leave the source and dest operands in the passed parameters.
91 virtual bool isMoveInstr(const MachineInstr &MI,
92 unsigned &SrcReg, unsigned &DstReg) const;
93 virtual unsigned isLoadFromStackSlot(MachineInstr *MI, int &FrameIndex) const;
94 virtual unsigned isStoreToStackSlot(MachineInstr *MI, int &FrameIndex) const;
96 virtual MachineInstr *convertToThreeAddress(MachineFunction::iterator &MFI,
97 MachineBasicBlock::iterator &MBBI,
98 LiveVariables &LV) const;
101 virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
102 MachineBasicBlock *&FBB,
103 std::vector<MachineOperand> &Cond) const;
104 virtual void RemoveBranch(MachineBasicBlock &MBB) const;
105 virtual void InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
106 MachineBasicBlock *FBB,
107 const std::vector<MachineOperand> &Cond) const;
108 virtual bool BlockHasNoFallThrough(MachineBasicBlock &MBB) const;
109 virtual bool ReverseBranchCondition(std::vector<MachineOperand> &Cond) const;