diff options
Diffstat (limited to 'contrib/llvm/lib/Target/R600/AMDGPUMachineFunction.h')
-rw-r--r-- | contrib/llvm/lib/Target/R600/AMDGPUMachineFunction.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/contrib/llvm/lib/Target/R600/AMDGPUMachineFunction.h b/contrib/llvm/lib/Target/R600/AMDGPUMachineFunction.h index 21c8c51..fea0b39 100644 --- a/contrib/llvm/lib/Target/R600/AMDGPUMachineFunction.h +++ b/contrib/llvm/lib/Target/R600/AMDGPUMachineFunction.h @@ -14,15 +14,20 @@ #define AMDGPUMACHINEFUNCTION_H #include "llvm/CodeGen/MachineFunction.h" +#include <map> namespace llvm { class AMDGPUMachineFunction : public MachineFunctionInfo { -private: - static const char *ShaderTypeAttribute; + virtual void anchor(); public: AMDGPUMachineFunction(const MachineFunction &MF); unsigned ShaderType; + /// A map to keep track of local memory objects and their offsets within + /// the local memory space. + std::map<const GlobalValue *, unsigned> LocalMemoryObjects; + /// Number of bytes in the LDS that are being used. + unsigned LDSSize; }; } |