2013-04-01 21:47:53 +00:00
|
|
|
#include "AMDGPUMachineFunction.h"
|
2013-04-26 18:32:24 +00:00
|
|
|
#include "AMDGPU.h"
|
2013-04-01 21:47:53 +00:00
|
|
|
#include "llvm/IR/Attributes.h"
|
|
|
|
#include "llvm/IR/Function.h"
|
2013-07-17 00:31:35 +00:00
|
|
|
using namespace llvm;
|
2013-04-01 21:47:53 +00:00
|
|
|
|
2013-07-17 00:31:35 +00:00
|
|
|
static const char *const ShaderTypeAttribute = "ShaderType";
|
2013-04-01 21:47:53 +00:00
|
|
|
|
|
|
|
AMDGPUMachineFunction::AMDGPUMachineFunction(const MachineFunction &MF) :
|
|
|
|
MachineFunctionInfo() {
|
2013-04-26 18:32:24 +00:00
|
|
|
ShaderType = ShaderType::COMPUTE;
|
2013-06-28 15:47:08 +00:00
|
|
|
LDSSize = 0;
|
2013-04-01 21:47:53 +00:00
|
|
|
AttributeSet Set = MF.getFunction()->getAttributes();
|
|
|
|
Attribute A = Set.getAttribute(AttributeSet::FunctionIndex,
|
|
|
|
ShaderTypeAttribute);
|
|
|
|
|
|
|
|
if (A.isStringAttribute()) {
|
|
|
|
StringRef Str = A.getValueAsString();
|
|
|
|
if (Str.getAsInteger(0, ShaderType))
|
|
|
|
llvm_unreachable("Can't parse shader type!");
|
|
|
|
}
|
|
|
|
}
|