Home
last modified time | relevance | path

Searched refs:MapDocNode (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/
H A DAMDGPUMetadataVerifier.h30 class MapDocNode; variable
53 bool verifyEntry(msgpack::MapDocNode &MapNode, StringRef Key, bool Required,
56 verifyScalarEntry(msgpack::MapDocNode &MapNode, StringRef Key, bool Required,
59 bool verifyIntegerEntry(msgpack::MapDocNode &MapNode, StringRef Key,
H A DMsgPackDocument.h28 class MapDocNode; variable
140 MapDocNode &getMap(bool Convert = false) {
146 return *reinterpret_cast<MapDocNode *>(this);
219 class MapDocNode : public DocNode {
221 MapDocNode() = default;
222 MapDocNode(DocNode &N) : DocNode(N) { assert(getKind() == Type::Map); } in MapDocNode() function
372 MapDocNode getMapNode() { in getMapNode()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUHSAMetadataStreamer.h62 msgpack::MapDocNode Kern) = 0;
86 msgpack::MapDocNode getHSAKernelProps(const MachineFunction &MF,
93 void emitKernelLanguage(const Function &Func, msgpack::MapDocNode Kern);
95 void emitKernelAttrs(const Function &Func, msgpack::MapDocNode Kern) override;
97 void emitKernelArgs(const MachineFunction &MF, msgpack::MapDocNode Kern);
154 void emitKernelAttrs(const Function &Func, msgpack::MapDocNode Kern) override;
218 msgpack::MapDocNode Kern) override { in emitKernelAttrs()
H A DAMDGPUHSAMetadataStreamer.cpp639 msgpack::MapDocNode Kern) { in emitKernelLanguage()
658 msgpack::MapDocNode Kern) { in emitKernelAttrs()
683 msgpack::MapDocNode Kern) { in emitKernelArgs()
878 msgpack::MapDocNode MetadataStreamerMsgPackV3::getHSAKernelProps( in getHSAKernelProps()
1107 msgpack::MapDocNode Kern) { in emitKernelAttrs()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUPALMetadata.h143 msgpack::MapDocNode getRegisters();
149 msgpack::MapDocNode getShaderFunctions();
152 msgpack::MapDocNode getShaderFunction(StringRef Name);
156 msgpack::MapDocNode getHwStage(unsigned CC);
H A DAMDGPUPALMetadata.cpp784 msgpack::MapDocNode AMDGPUPALMetadata::getRegisters() { in getRegisters()
802 msgpack::MapDocNode AMDGPUPALMetadata::getShaderFunctions() { in getShaderFunctions()
809 msgpack::MapDocNode AMDGPUPALMetadata::getShaderFunction(StringRef Name) { in getShaderFunction()
838 msgpack::MapDocNode AMDGPUPALMetadata::getHwStage(unsigned CC) { in getHwStage()
/openbsd-src/gnu/llvm/llvm/lib/BinaryFormat/
H A DMsgPackDocument.cpp30 DocNode::MapTy::iterator MapDocNode::find(StringRef S) { in find()
36 DocNode &MapDocNode::operator[](StringRef S) { in operator []()
41 DocNode &MapDocNode::operator[](DocNode Key) { in operator []()
52 DocNode &MapDocNode::operator[](int Key) { in operator []()
55 DocNode &MapDocNode::operator[](unsigned Key) { in operator []()
58 DocNode &MapDocNode::operator[](int64_t Key) { in operator []()
61 DocNode &MapDocNode::operator[](uint64_t Key) { in operator []()
H A DMsgPackDocumentYAML.cpp159 static MapDocNode &getAsMap(DocNode &N) { return N.getMap(/*Convert=*/true); } in getAsMap()
207 template <> struct CustomMappingTraits<MapDocNode> {
209 static void inputOne(IO &IO, StringRef Key, MapDocNode &M) { in inputOne()
215 static void output(IO &IO, MapDocNode &M) { in output()
H A DAMDGPUMetadataVerifier.cpp69 msgpack::MapDocNode &MapNode, StringRef Key, bool Required, in verifyEntry()
78 msgpack::MapDocNode &MapNode, StringRef Key, bool Required, in verifyScalarEntry()
86 bool MetadataVerifier::verifyIntegerEntry(msgpack::MapDocNode &MapNode, in verifyIntegerEntry()