1//===-- MSP430InstrInfo.h - MSP430 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 MSP430 implementation of the TargetInstrInfo class.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_LIB_TARGET_MSP430_MSP430INSTRINFO_H
14#define LLVM_LIB_TARGET_MSP430_MSP430INSTRINFO_H
15
16#include "MSP430RegisterInfo.h"
17#include "llvm/CodeGen/TargetInstrInfo.h"
18
19#define GET_INSTRINFO_HEADER
20#include "MSP430GenInstrInfo.inc"
21
22namespace llvm {
23
24class MSP430Subtarget;
25
26class MSP430InstrInfo : public MSP430GenInstrInfo {
27 const MSP430RegisterInfo RI;
28 virtual void anchor();
29public:
30 explicit MSP430InstrInfo(const MSP430Subtarget &STI);
31
32 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
33 /// such, whenever a client has an instance of instruction info, it should
34 /// always be able to get register info as well (through this method).
35 ///
36 const MSP430RegisterInfo &getRegisterInfo() const { return RI; }
37
38 void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
39 const DebugLoc &DL, Register DestReg, Register SrcReg,
40 bool KillSrc, bool RenamableDest = false,
41 bool RenamableSrc = false) const override;
42
43 void storeRegToStackSlot(
44 MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, Register SrcReg,
45 bool isKill, int FrameIndex, const TargetRegisterClass *RC, Register VReg,
46 MachineInstr::MIFlag Flags = MachineInstr::NoFlags) const override;
47 void loadRegFromStackSlot(
48 MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, Register DestReg,
49 int FrameIdx, const TargetRegisterClass *RC, Register VReg,
50 unsigned SubReg = 0,
51 MachineInstr::MIFlag Flags = MachineInstr::NoFlags) const override;
52
53 unsigned getInstSizeInBytes(const MachineInstr &MI) const override;
54
55 // Branch folding goodness
56 bool
57 reverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const override;
58 bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
59 MachineBasicBlock *&FBB,
60 SmallVectorImpl<MachineOperand> &Cond,
61 bool AllowModify) const override;
62
63 unsigned removeBranch(MachineBasicBlock &MBB,
64 int *BytesRemoved = nullptr) const override;
65 unsigned insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
66 MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond,
67 const DebugLoc &DL,
68 int *BytesAdded = nullptr) const override;
69
70 int64_t getFramePoppedByCallee(const MachineInstr &I) const {
71 assert(isFrameInstr(I) && "Not a frame instruction");
72 assert(I.getOperand(1).getImm() >= 0 && "Size must not be negative");
73 return I.getOperand(i: 1).getImm();
74 }
75};
76
77}
78
79#endif
80