blob: 56d8708dbe7dcd320013e47078ece3998887463f [file] [log] [blame]
Chris Lattnerea7fd962009-09-15 18:03:13 +00001//===- SparcMachineFunctionInfo.h - Sparc Machine Function Info -*- 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// This file declares Sparc specific per-machine-function information.
11//
12//===----------------------------------------------------------------------===//
13#ifndef SPARCMACHINEFUNCTIONINFO_H
14#define SPARCMACHINEFUNCTIONINFO_H
15
16#include "llvm/CodeGen/MachineFunction.h"
17
18namespace llvm {
19
20 class SparcMachineFunctionInfo : public MachineFunctionInfo {
21 private:
22 unsigned GlobalBaseReg;
23 public:
24 SparcMachineFunctionInfo() : GlobalBaseReg(0) {}
Dan Gohmance931c62010-03-01 17:56:46 +000025 explicit SparcMachineFunctionInfo(MachineFunction &MF) : GlobalBaseReg(0) {}
Chris Lattnerea7fd962009-09-15 18:03:13 +000026
27 unsigned getGlobalBaseReg() const { return GlobalBaseReg; }
28 void setGlobalBaseReg(unsigned Reg) { GlobalBaseReg = Reg; }
29 };
30}
31
32#endif