2017-10-12 06:18:53 +08:00
|
|
|
//===--- AMDGPUHSAMetadataStreamer.h ----------------------------*- C++ -*-===//
|
2017-03-23 06:32:22 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
/// \file
|
2018-05-01 23:54:18 +08:00
|
|
|
/// AMDGPU HSA Metadata Streamer.
|
2017-03-23 06:32:22 +08:00
|
|
|
///
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-10-12 06:18:53 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_AMDGPU_MCTARGETDESC_AMDGPUHSAMETADATASTREAMER_H
|
|
|
|
#define LLVM_LIB_TARGET_AMDGPU_MCTARGETDESC_AMDGPUHSAMETADATASTREAMER_H
|
2017-03-23 06:32:22 +08:00
|
|
|
|
2017-03-27 22:04:01 +08:00
|
|
|
#include "AMDGPU.h"
|
2017-03-23 06:54:39 +08:00
|
|
|
#include "AMDKernelCodeT.h"
|
2017-03-23 06:32:22 +08:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2017-10-12 06:18:53 +08:00
|
|
|
#include "llvm/Support/AMDGPUMetadata.h"
|
2017-03-23 06:32:22 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class Argument;
|
|
|
|
class DataLayout;
|
|
|
|
class Function;
|
|
|
|
class MDNode;
|
|
|
|
class Module;
|
|
|
|
class Type;
|
|
|
|
|
|
|
|
namespace AMDGPU {
|
2017-10-12 06:18:53 +08:00
|
|
|
namespace HSAMD {
|
2017-03-23 06:32:22 +08:00
|
|
|
|
|
|
|
class MetadataStreamer final {
|
|
|
|
private:
|
2017-10-12 06:18:53 +08:00
|
|
|
Metadata HSAMetadata;
|
2017-03-27 22:04:01 +08:00
|
|
|
AMDGPUAS AMDGPUASI;
|
2017-03-23 06:32:22 +08:00
|
|
|
|
2017-10-12 06:59:35 +08:00
|
|
|
void dump(StringRef HSAMetadataString) const;
|
2017-03-23 06:32:22 +08:00
|
|
|
|
2017-10-12 06:59:35 +08:00
|
|
|
void verify(StringRef HSAMetadataString) const;
|
2017-03-23 06:32:22 +08:00
|
|
|
|
|
|
|
AccessQualifier getAccessQualifier(StringRef AccQual) const;
|
|
|
|
|
|
|
|
AddressSpaceQualifier getAddressSpaceQualifer(unsigned AddressSpace) const;
|
|
|
|
|
|
|
|
ValueKind getValueKind(Type *Ty, StringRef TypeQual,
|
|
|
|
StringRef BaseTypeName) const;
|
|
|
|
|
|
|
|
ValueType getValueType(Type *Ty, StringRef TypeName) const;
|
|
|
|
|
|
|
|
std::string getTypeName(Type *Ty, bool Signed) const;
|
|
|
|
|
|
|
|
std::vector<uint32_t> getWorkGroupDimensions(MDNode *Node) const;
|
|
|
|
|
|
|
|
void emitVersion();
|
|
|
|
|
|
|
|
void emitPrintf(const Module &Mod);
|
|
|
|
|
|
|
|
void emitKernelLanguage(const Function &Func);
|
|
|
|
|
|
|
|
void emitKernelAttrs(const Function &Func);
|
|
|
|
|
|
|
|
void emitKernelArgs(const Function &Func);
|
|
|
|
|
|
|
|
void emitKernelArg(const Argument &Arg);
|
|
|
|
|
|
|
|
void emitKernelArg(const DataLayout &DL, Type *Ty, ValueKind ValueKind,
|
2017-10-15 03:03:51 +08:00
|
|
|
StringRef Name = "", StringRef TypeName = "",
|
|
|
|
StringRef BaseTypeName = "", StringRef AccQual = "",
|
|
|
|
StringRef TypeQual = "");
|
2017-03-23 07:10:46 +08:00
|
|
|
|
2017-03-23 06:32:22 +08:00
|
|
|
public:
|
|
|
|
MetadataStreamer() = default;
|
|
|
|
~MetadataStreamer() = default;
|
|
|
|
|
2017-10-12 06:59:35 +08:00
|
|
|
const Metadata &getHSAMetadata() const {
|
|
|
|
return HSAMetadata;
|
|
|
|
}
|
|
|
|
|
2017-03-23 07:27:09 +08:00
|
|
|
void begin(const Module &Mod);
|
2017-03-23 06:32:22 +08:00
|
|
|
|
2017-10-12 06:59:35 +08:00
|
|
|
void end();
|
2017-03-23 06:32:22 +08:00
|
|
|
|
2017-10-15 03:03:51 +08:00
|
|
|
void emitKernel(const Function &Func,
|
|
|
|
const Kernel::CodeProps::Metadata &CodeProps,
|
|
|
|
const Kernel::DebugProps::Metadata &DebugProps);
|
2017-03-23 06:32:22 +08:00
|
|
|
};
|
|
|
|
|
2017-10-12 06:18:53 +08:00
|
|
|
} // end namespace HSAMD
|
2017-03-23 06:32:22 +08:00
|
|
|
} // end namespace AMDGPU
|
|
|
|
} // end namespace llvm
|
|
|
|
|
2017-10-12 06:18:53 +08:00
|
|
|
#endif // LLVM_LIB_TARGET_AMDGPU_MCTARGETDESC_AMDGPUHSAMETADATASTREAMER_H
|