1 //=- RISCVMachineFunctionInfo.h - RISCV machine function info -----*- C++ -*-=//
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
7 //===----------------------------------------------------------------------===//
9 // This file declares RISCV-specific per-machine-function information.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_RISCV_RISCVMACHINEFUNCTIONINFO_H
14 #define LLVM_LIB_TARGET_RISCV_RISCVMACHINEFUNCTIONINFO_H
16 #include "llvm/CodeGen/MachineFrameInfo.h"
17 #include "llvm/CodeGen/MachineFunction.h"
21 /// RISCVMachineFunctionInfo - This class is derived from MachineFunctionInfo
22 /// and contains private RISCV-specific information for each MachineFunction.
23 class RISCVMachineFunctionInfo
: public MachineFunctionInfo
{
26 /// FrameIndex for start of varargs area
27 int VarArgsFrameIndex
= 0;
28 /// Size of the save area used for varargs
29 int VarArgsSaveSize
= 0;
30 /// FrameIndex used for transferring values between 64-bit FPRs and a pair
31 /// of 32-bit GPRs via the stack.
32 int MoveF64FrameIndex
= -1;
35 RISCVMachineFunctionInfo(MachineFunction
&MF
) : MF(MF
) {}
37 int getVarArgsFrameIndex() const { return VarArgsFrameIndex
; }
38 void setVarArgsFrameIndex(int Index
) { VarArgsFrameIndex
= Index
; }
40 unsigned getVarArgsSaveSize() const { return VarArgsSaveSize
; }
41 void setVarArgsSaveSize(int Size
) { VarArgsSaveSize
= Size
; }
43 int getMoveF64FrameIndex() {
44 if (MoveF64FrameIndex
== -1)
45 MoveF64FrameIndex
= MF
.getFrameInfo().CreateStackObject(8, 8, false);
46 return MoveF64FrameIndex
;
50 } // end namespace llvm
52 #endif // LLVM_LIB_TARGET_RISCV_RISCVMACHINEFUNCTIONINFO_H