2013-04-08 14:41:23 -04:00
|
|
|
//===-- R600MachineFunctionInfo.h - R600 Machine Function Info ----*- C++ -*-=//
|
|
|
|
|
//
|
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
|
//
|
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
//
|
|
|
|
|
/// \file
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2016-07-23 16:41:05 -04:00
|
|
|
#ifndef LLVM_LIB_TARGET_AMDGPU_R600MACHINEFUNCTIONINFO_H
|
|
|
|
|
#define LLVM_LIB_TARGET_AMDGPU_R600MACHINEFUNCTIONINFO_H
|
2013-04-08 14:41:23 -04:00
|
|
|
|
2013-12-21 19:04:03 -05:00
|
|
|
#include "AMDGPUMachineFunction.h"
|
2013-04-08 14:41:23 -04:00
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
2016-07-23 16:41:05 -04:00
|
|
|
class R600MachineFunctionInfo final : public AMDGPUMachineFunction {
|
2013-04-08 14:41:23 -04:00
|
|
|
public:
|
|
|
|
|
R600MachineFunctionInfo(const MachineFunction &MF);
|
2017-01-02 14:17:04 -05:00
|
|
|
unsigned CFStackSize;
|
2013-04-08 14:41:23 -04:00
|
|
|
};
|
|
|
|
|
|
2015-07-05 10:21:36 -04:00
|
|
|
} // End llvm namespace
|
2013-04-08 14:41:23 -04:00
|
|
|
|
2015-01-18 11:17:27 -05:00
|
|
|
#endif
|