2013-04-01 21:47:53 +00: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
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef AMDGPUMACHINEFUNCTION_H
|
|
|
|
#define AMDGPUMACHINEFUNCTION_H
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2013-09-05 18:37:57 +00:00
|
|
|
#include <map>
|
2013-04-01 21:47:53 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class AMDGPUMachineFunction : public MachineFunctionInfo {
|
2013-11-19 00:57:56 +00:00
|
|
|
virtual void anchor();
|
2013-04-01 21:47:53 +00:00
|
|
|
public:
|
|
|
|
AMDGPUMachineFunction(const MachineFunction &MF);
|
|
|
|
unsigned ShaderType;
|
2013-09-05 18:37:57 +00:00
|
|
|
/// A map to keep track of local memory objects and their offsets within
|
|
|
|
/// the local memory space.
|
|
|
|
std::map<const GlobalValue *, unsigned> LocalMemoryObjects;
|
2013-06-28 15:47:08 +00:00
|
|
|
/// Number of bytes in the LDS that are being used.
|
|
|
|
unsigned LDSSize;
|
2013-04-01 21:47:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif // AMDGPUMACHINEFUNCTION_H
|