2009-09-15 20:03:13 +02:00
|
|
|
//===- SparcMachineFunctionInfo.h - Sparc Machine Function Info -*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2009-09-15 20:03:13 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares Sparc specific per-machine-function information.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2014-08-13 18:26:38 +02:00
|
|
|
#ifndef LLVM_LIB_TARGET_SPARC_SPARCMACHINEFUNCTIONINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_SPARC_SPARCMACHINEFUNCTIONINFO_H
|
2009-09-15 20:03:13 +02:00
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class SparcMachineFunctionInfo : public MachineFunctionInfo {
|
2011-12-20 03:50:00 +01:00
|
|
|
virtual void anchor();
|
2009-09-15 20:03:13 +02:00
|
|
|
private:
|
2020-06-30 22:14:23 +02:00
|
|
|
Register GlobalBaseReg;
|
2010-04-17 16:41:14 +02:00
|
|
|
|
|
|
|
/// VarArgsFrameOffset - Frame offset to start of varargs area.
|
|
|
|
int VarArgsFrameOffset;
|
|
|
|
|
2011-01-22 14:05:16 +01:00
|
|
|
/// SRetReturnReg - Holds the virtual register into which the sret
|
|
|
|
/// argument is passed.
|
2020-06-30 22:14:23 +02:00
|
|
|
Register SRetReturnReg;
|
2013-05-29 06:46:31 +02:00
|
|
|
|
|
|
|
/// IsLeafProc - True if the function is a leaf procedure.
|
|
|
|
bool IsLeafProc;
|
2009-09-15 20:03:13 +02:00
|
|
|
public:
|
2011-01-22 14:05:16 +01:00
|
|
|
SparcMachineFunctionInfo()
|
2013-05-29 06:46:31 +02:00
|
|
|
: GlobalBaseReg(0), VarArgsFrameOffset(0), SRetReturnReg(0),
|
|
|
|
IsLeafProc(false) {}
|
2010-04-17 16:41:14 +02:00
|
|
|
explicit SparcMachineFunctionInfo(MachineFunction &MF)
|
2013-05-29 06:46:31 +02:00
|
|
|
: GlobalBaseReg(0), VarArgsFrameOffset(0), SRetReturnReg(0),
|
|
|
|
IsLeafProc(false) {}
|
2009-09-15 20:03:13 +02:00
|
|
|
|
2020-06-30 22:14:23 +02:00
|
|
|
Register getGlobalBaseReg() const { return GlobalBaseReg; }
|
|
|
|
void setGlobalBaseReg(Register Reg) { GlobalBaseReg = Reg; }
|
2010-04-17 16:41:14 +02:00
|
|
|
|
|
|
|
int getVarArgsFrameOffset() const { return VarArgsFrameOffset; }
|
|
|
|
void setVarArgsFrameOffset(int Offset) { VarArgsFrameOffset = Offset; }
|
2011-01-22 14:05:16 +01:00
|
|
|
|
2020-06-30 22:14:23 +02:00
|
|
|
Register getSRetReturnReg() const { return SRetReturnReg; }
|
|
|
|
void setSRetReturnReg(Register Reg) { SRetReturnReg = Reg; }
|
2013-05-29 06:46:31 +02:00
|
|
|
|
|
|
|
void setLeafProc(bool rhs) { IsLeafProc = rhs; }
|
|
|
|
bool isLeafProc() const { return IsLeafProc; }
|
2009-09-15 20:03:13 +02:00
|
|
|
};
|
2015-06-23 11:49:53 +02:00
|
|
|
}
|
2009-09-15 20:03:13 +02:00
|
|
|
|
|
|
|
#endif
|