LLVM 20.0.0git
MipsSEInstrInfo.h
Go to the documentation of this file.
1//===-- MipsSEInstrInfo.h - Mips32/64 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 Mips32/64 implementation of the TargetInstrInfo class.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_LIB_TARGET_MIPS_MIPSSEINSTRINFO_H
14#define LLVM_LIB_TARGET_MIPS_MIPSSEINSTRINFO_H
15
16#include "MipsInstrInfo.h"
17#include "MipsSERegisterInfo.h"
18
19namespace llvm {
20
22 const MipsSERegisterInfo RI;
23
24public:
25 explicit MipsSEInstrInfo(const MipsSubtarget &STI);
26
27 const MipsRegisterInfo &getRegisterInfo() const override;
28
29 /// isLoadFromStackSlot - If the specified machine instruction is a direct
30 /// load from a stack slot, return the virtual or physical register number of
31 /// the destination along with the FrameIndex of the loaded stack slot. If
32 /// not, return 0. This predicate must return 0 if the instruction has
33 /// any side effects other than loading from the stack slot.
35 int &FrameIndex) const override;
36
37 /// isStoreToStackSlot - If the specified machine instruction is a direct
38 /// store to a stack slot, return the virtual or physical register number of
39 /// the source reg along with the FrameIndex of the loaded stack slot. If
40 /// not, return 0. This predicate must return 0 if the instruction has
41 /// any side effects other than storing to the stack slot.
43 int &FrameIndex) const override;
44
46 const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg,
47 bool KillSrc, bool RenamableDest = false,
48 bool RenamableSrc = false) const override;
49
52 Register SrcReg, bool isKill, int FrameIndex,
53 const TargetRegisterClass *RC,
55 int64_t Offset) const override;
56
59 Register DestReg, int FrameIndex,
60 const TargetRegisterClass *RC,
62 int64_t Offset) const override;
63
64 bool expandPostRAPseudo(MachineInstr &MI) const override;
65
66 bool isBranchWithImm(unsigned Opc) const override;
67
68 unsigned getOppositeBranchOpc(unsigned Opc) const override;
69
70 /// Adjust SP by Amount bytes.
71 void adjustStackPtr(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
72 MachineBasicBlock::iterator I) const override;
73
74 /// Emit a series of instructions to load an immediate. If NewImm is a
75 /// non-NULL parameter, the last instruction is not emitted, but instead
76 /// its immediate operand is returned in NewImm.
77 unsigned loadImmediate(int64_t Imm, MachineBasicBlock &MBB,
79 unsigned *NewImm) const;
80
81protected:
82 /// If the specific machine instruction is a instruction that moves/copies
83 /// value from one register to another register return destination and source
84 /// registers as machine operands.
85 std::optional<DestSourcePair>
86 isCopyInstrImpl(const MachineInstr &MI) const override;
87
88private:
89 unsigned getAnalyzableBrOpc(unsigned Opc) const override;
90
91 void expandRetRA(MachineBasicBlock &MBB, MachineBasicBlock::iterator I) const;
92
93 void expandERet(MachineBasicBlock &MBB, MachineBasicBlock::iterator I) const;
94
95 std::pair<bool, bool> compareOpndSize(unsigned Opc,
96 const MachineFunction &MF) const;
97
98 void expandPseudoMFHiLo(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
99 unsigned NewOpc) const;
100
101 void expandPseudoMTLoHi(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
102 unsigned LoOpc, unsigned HiOpc,
103 bool HasExplicitDef) const;
104
105 /// Expand pseudo Int-to-FP conversion instructions.
106 ///
107 /// For example, the following pseudo instruction
108 /// PseudoCVT_D32_W D2, A5
109 /// gets expanded into these two instructions:
110 /// MTC1 F4, A5
111 /// CVT_D32_W D2, F4
112 ///
113 /// We do this expansion post-RA to avoid inserting a floating point copy
114 /// instruction between MTC1 and CVT_D32_W.
116 unsigned CvtOpc, unsigned MovOpc, bool IsI64) const;
117
118 void expandExtractElementF64(MachineBasicBlock &MBB,
120 bool FP64) const;
121 void expandBuildPairF64(MachineBasicBlock &MBB,
123 bool FP64) const;
124 void expandEhReturn(MachineBasicBlock &MBB,
126};
127
128}
129
130#endif
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
IRTranslator LLVM IR MI
#define I(x, y, z)
Definition: MD5.cpp:58
unsigned const TargetRegisterInfo * TRI
static bool isMicroMips(const MCSubtargetInfo *STI)
uint64_t IntrinsicInst * II
A debug info location.
Definition: DebugLoc.h:33
Wrapper class representing physical registers. Should be passed by value.
Definition: MCRegister.h:33
Representation of each machine instruction.
Definition: MachineInstr.h:69
void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, bool KillSrc, bool RenamableDest=false, bool RenamableSrc=false) const override
Register isLoadFromStackSlot(const MachineInstr &MI, int &FrameIndex) const override
isLoadFromStackSlot - If the specified machine instruction is a direct load from a stack slot,...
Register isStoreToStackSlot(const MachineInstr &MI, int &FrameIndex) const override
isStoreToStackSlot - If the specified machine instruction is a direct store to a stack slot,...
void adjustStackPtr(unsigned SP, int64_t Amount, MachineBasicBlock &MBB, MachineBasicBlock::iterator I) const override
Adjust SP by Amount bytes.
void loadRegFromStack(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, Register DestReg, int FrameIndex, const TargetRegisterClass *RC, const TargetRegisterInfo *TRI, int64_t Offset) const override
std::optional< DestSourcePair > isCopyInstrImpl(const MachineInstr &MI) const override
If the specific machine instruction is a instruction that moves/copies value from one register to ano...
unsigned loadImmediate(int64_t Imm, MachineBasicBlock &MBB, MachineBasicBlock::iterator II, const DebugLoc &DL, unsigned *NewImm) const
Emit a series of instructions to load an immediate.
bool isBranchWithImm(unsigned Opc) const override
isBranchWithImm - Return true if the branch contains an immediate operand (
void storeRegToStack(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, Register SrcReg, bool isKill, int FrameIndex, const TargetRegisterClass *RC, const TargetRegisterInfo *TRI, int64_t Offset) const override
bool expandPostRAPseudo(MachineInstr &MI) const override
const MipsRegisterInfo & getRegisterInfo() const override
getRegisterInfo - TargetInstrInfo is a superset of MRegister info.
unsigned getOppositeBranchOpc(unsigned Opc) const override
getOppositeBranchOpc - Return the inverse of the specified opcode, e.g.
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:480