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
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_R600_AMDGPUMACHINEFUNCTION_H
|
|
|
|
#define LLVM_LIB_TARGET_R600_AMDGPUMACHINEFUNCTION_H
|
2013-04-01 21:47:53 +00:00
|
|
|
|
|
|
|
#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();
|
2014-07-13 03:06:39 +00:00
|
|
|
unsigned ShaderType;
|
|
|
|
|
2013-04-01 21:47:53 +00:00
|
|
|
public:
|
|
|
|
AMDGPUMachineFunction(const MachineFunction &MF);
|
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;
|
2014-07-13 03:06:39 +00:00
|
|
|
|
2014-10-14 20:05:26 +00:00
|
|
|
/// Start of implicit kernel args
|
|
|
|
unsigned ABIArgOffset;
|
|
|
|
|
2014-07-13 03:06:39 +00:00
|
|
|
unsigned getShaderType() const {
|
|
|
|
return ShaderType;
|
|
|
|
}
|
2014-09-15 15:41:53 +00:00
|
|
|
|
|
|
|
unsigned ScratchSize;
|
|
|
|
bool IsKernel;
|
2013-04-01 21:47:53 +00:00
|
|
|
};
|
|
|
|
|
2015-06-23 09:49:53 +00:00
|
|
|
}
|
2014-08-13 16:26:38 +00:00
|
|
|
#endif
|