[llvm-shlib] Fix the version naming style of libLLVM for Windows (#85710)
[llvm-project.git] / llvm / lib / Target / AVR / AVRInstrInfo.h
blob290177f5eec6665e084b40b4a597808580781767
1 //===-- AVRInstrInfo.h - AVR Instruction Information ------------*- C++ -*-===//
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 AVR implementation of the TargetInstrInfo class.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_AVR_INSTR_INFO_H
14 #define LLVM_AVR_INSTR_INFO_H
16 #include "llvm/CodeGen/TargetInstrInfo.h"
18 #include "AVRRegisterInfo.h"
20 #define GET_INSTRINFO_HEADER
21 #include "AVRGenInstrInfo.inc"
22 #undef GET_INSTRINFO_HEADER
24 namespace llvm {
26 class AVRSubtarget;
28 namespace AVRCC {
30 /// AVR specific condition codes.
31 /// These correspond to `AVR_*_COND` in `AVRInstrInfo.td`.
32 /// They must be kept in synch.
33 enum CondCodes {
34 COND_EQ, //!< Equal
35 COND_NE, //!< Not equal
36 COND_GE, //!< Greater than or equal
37 COND_LT, //!< Less than
38 COND_SH, //!< Unsigned same or higher
39 COND_LO, //!< Unsigned lower
40 COND_MI, //!< Minus
41 COND_PL, //!< Plus
42 COND_INVALID
45 } // end of namespace AVRCC
47 namespace AVRII {
49 /// Specifies a target operand flag.
50 enum TOF {
51 MO_NO_FLAG,
53 /// On a symbol operand, this represents the lo part.
54 MO_LO = (1 << 1),
56 /// On a symbol operand, this represents the hi part.
57 MO_HI = (1 << 2),
59 /// On a symbol operand, this represents it has to be negated.
60 MO_NEG = (1 << 3)
63 } // end of namespace AVRII
65 /// Utilities related to the AVR instruction set.
66 class AVRInstrInfo : public AVRGenInstrInfo {
67 public:
68 explicit AVRInstrInfo(AVRSubtarget &STI);
70 const AVRRegisterInfo &getRegisterInfo() const { return RI; }
71 const MCInstrDesc &getBrCond(AVRCC::CondCodes CC) const;
72 AVRCC::CondCodes getCondFromBranchOpc(unsigned Opc) const;
73 AVRCC::CondCodes getOppositeCondition(AVRCC::CondCodes CC) const;
74 unsigned getInstSizeInBytes(const MachineInstr &MI) const override;
76 void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
77 const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg,
78 bool KillSrc) const override;
79 void storeRegToStackSlot(MachineBasicBlock &MBB,
80 MachineBasicBlock::iterator MI, Register SrcReg,
81 bool isKill, int FrameIndex,
82 const TargetRegisterClass *RC,
83 const TargetRegisterInfo *TRI,
84 Register VReg) const override;
85 void loadRegFromStackSlot(MachineBasicBlock &MBB,
86 MachineBasicBlock::iterator MI, Register DestReg,
87 int FrameIndex, const TargetRegisterClass *RC,
88 const TargetRegisterInfo *TRI,
89 Register VReg) const override;
90 unsigned isLoadFromStackSlot(const MachineInstr &MI,
91 int &FrameIndex) const override;
92 unsigned isStoreToStackSlot(const MachineInstr &MI,
93 int &FrameIndex) const override;
95 // Branch analysis.
96 bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
97 MachineBasicBlock *&FBB,
98 SmallVectorImpl<MachineOperand> &Cond,
99 bool AllowModify = false) const override;
100 unsigned insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
101 MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond,
102 const DebugLoc &DL,
103 int *BytesAdded = nullptr) const override;
104 unsigned removeBranch(MachineBasicBlock &MBB,
105 int *BytesRemoved = nullptr) const override;
106 bool
107 reverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const override;
109 MachineBasicBlock *getBranchDestBlock(const MachineInstr &MI) const override;
111 bool isBranchOffsetInRange(unsigned BranchOpc,
112 int64_t BrOffset) const override;
114 void insertIndirectBranch(MachineBasicBlock &MBB,
115 MachineBasicBlock &NewDestBB,
116 MachineBasicBlock &RestoreBB, const DebugLoc &DL,
117 int64_t BrOffset, RegScavenger *RS) const override;
119 private:
120 const AVRRegisterInfo RI;
122 protected:
123 const AVRSubtarget &STI;
126 } // end namespace llvm
128 #endif // LLVM_AVR_INSTR_INFO_H