2015-07-30 06:32:47 +08:00
|
|
|
//=== MSP430MachineFunctionInfo.h - MSP430 machine function info -*- C++ -*-==//
|
2009-05-03 21:11:04 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08: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-05-03 21:11:04 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares MSP430-specific per-machine-function information.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_MSP430_MSP430MACHINEFUNCTIONINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_MSP430_MSP430MACHINEFUNCTIONINFO_H
|
2009-05-03 21:11:04 +08:00
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
/// MSP430MachineFunctionInfo - This class is derived from MachineFunction and
|
|
|
|
/// contains private MSP430 target-specific information for each MachineFunction.
|
|
|
|
class MSP430MachineFunctionInfo : public MachineFunctionInfo {
|
2011-12-20 10:50:00 +08:00
|
|
|
virtual void anchor();
|
|
|
|
|
2009-05-03 21:11:04 +08:00
|
|
|
/// CalleeSavedFrameSize - Size of the callee-saved register portion of the
|
|
|
|
/// stack frame in bytes.
|
2019-11-14 21:32:40 +08:00
|
|
|
unsigned CalleeSavedFrameSize = 0;
|
2009-05-03 21:11:04 +08:00
|
|
|
|
2009-12-07 10:28:10 +08:00
|
|
|
/// ReturnAddrIndex - FrameIndex for return slot.
|
2019-11-14 21:32:40 +08:00
|
|
|
int ReturnAddrIndex = 0;
|
2009-12-07 10:28:10 +08:00
|
|
|
|
2012-11-22 01:28:27 +08:00
|
|
|
/// VarArgsFrameIndex - FrameIndex for start of varargs area.
|
2019-11-14 21:32:40 +08:00
|
|
|
int VarArgsFrameIndex = 0;
|
2012-11-22 01:28:27 +08:00
|
|
|
|
2017-03-03 04:25:10 +08:00
|
|
|
/// SRetReturnReg - Some subtargets require that sret lowering includes
|
|
|
|
/// returning the value of the returned struct in a register. This field
|
|
|
|
/// holds the virtual register into which the sret argument is passed.
|
2020-05-20 01:01:19 +08:00
|
|
|
Register SRetReturnReg;
|
2017-03-03 04:25:10 +08:00
|
|
|
|
2009-05-03 21:11:04 +08:00
|
|
|
public:
|
2019-11-14 21:32:40 +08:00
|
|
|
MSP430MachineFunctionInfo() = default;
|
2009-05-03 21:11:04 +08:00
|
|
|
|
2009-06-06 07:05:51 +08:00
|
|
|
explicit MSP430MachineFunctionInfo(MachineFunction &MF)
|
2017-03-03 04:25:10 +08:00
|
|
|
: CalleeSavedFrameSize(0), ReturnAddrIndex(0), SRetReturnReg(0) {}
|
2009-05-03 21:11:04 +08:00
|
|
|
|
|
|
|
unsigned getCalleeSavedFrameSize() const { return CalleeSavedFrameSize; }
|
|
|
|
void setCalleeSavedFrameSize(unsigned bytes) { CalleeSavedFrameSize = bytes; }
|
2009-12-07 10:28:10 +08:00
|
|
|
|
2020-05-20 01:01:19 +08:00
|
|
|
Register getSRetReturnReg() const { return SRetReturnReg; }
|
|
|
|
void setSRetReturnReg(Register Reg) { SRetReturnReg = Reg; }
|
2017-03-03 04:25:10 +08:00
|
|
|
|
2009-12-07 10:28:10 +08:00
|
|
|
int getRAIndex() const { return ReturnAddrIndex; }
|
|
|
|
void setRAIndex(int Index) { ReturnAddrIndex = Index; }
|
2012-11-22 01:28:27 +08:00
|
|
|
|
|
|
|
int getVarArgsFrameIndex() const { return VarArgsFrameIndex;}
|
|
|
|
void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
|
2009-05-03 21:11:04 +08:00
|
|
|
};
|
|
|
|
|
2015-06-23 17:49:53 +08:00
|
|
|
} // End llvm namespace
|
2009-05-03 21:11:04 +08:00
|
|
|
|
|
|
|
#endif
|