LLVM  8.0.1
Mips16FrameLowering.h
Go to the documentation of this file.
1 //===-- Mips16FrameLowering.h - Mips16 frame lowering ----------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_LIB_TARGET_MIPS_MIPS16FRAMELOWERING_H
15 #define LLVM_LIB_TARGET_MIPS_MIPS16FRAMELOWERING_H
16 
17 #include "MipsFrameLowering.h"
18 
19 namespace llvm {
21 public:
22  explicit Mips16FrameLowering(const MipsSubtarget &STI);
23 
24  /// emitProlog/emitEpilog - These methods insert prolog and epilog code into
25  /// the function.
26  void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
27  void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
28 
31  const std::vector<CalleeSavedInfo> &CSI,
32  const TargetRegisterInfo *TRI) const override;
33 
36  std::vector<CalleeSavedInfo> &CSI,
37  const TargetRegisterInfo *TRI) const override;
38 
39  bool hasReservedCallFrame(const MachineFunction &MF) const override;
40 
41  void determineCalleeSaves(MachineFunction &MF, BitVector &SavedRegs,
42  RegScavenger *RS) const override;
43 };
44 
45 } // End llvm namespace
46 
47 #endif
Mips16FrameLowering(const MipsSubtarget &STI)
This class represents lattice values for constants.
Definition: AllocatorList.h:24
const MipsSubtarget & STI
unsigned const TargetRegisterInfo * TRI
bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, std::vector< CalleeSavedInfo > &CSI, const TargetRegisterInfo *TRI) const override
restoreCalleeSavedRegisters - Issues instruction(s) to restore all callee saved registers and returns...
void determineCalleeSaves(MachineFunction &MF, BitVector &SavedRegs, RegScavenger *RS) const override
This method determines which of the registers reported by TargetRegisterInfo::getCalleeSavedRegs() sh...
bool spillCalleeSavedRegisters(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const std::vector< CalleeSavedInfo > &CSI, const TargetRegisterInfo *TRI) const override
spillCalleeSavedRegisters - Issues instruction(s) to spill all callee saved registers and returns tru...
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override
void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override
emitProlog/emitEpilog - These methods insert prolog and epilog code into the function.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
bool hasReservedCallFrame(const MachineFunction &MF) const override
hasReservedCallFrame - Under normal circumstances, when a frame pointer is not required, we reserve argument space for call sites in the function immediately on entry to the current function.
IRTranslator LLVM IR MI