Searched refs:MapDocNode (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | AMDGPUMetadataVerifier.h | 30 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 D | MsgPackDocument.h | 28 class MapDocNode; variable 145 MapDocNode &getMap(bool Convert = false) { 151 return *reinterpret_cast<MapDocNode *>(this); 225 class MapDocNode : public DocNode { 227 MapDocNode() = default; 228 MapDocNode(DocNode &N) : DocNode(N) { assert(getKind() == Type::Map); } in MapDocNode() function 389 MapDocNode getMapNode() { in getMapNode()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
H A D | AMDGPUPALMetadata.h | 191 msgpack::MapDocNode getRegisters(); 197 msgpack::MapDocNode getShaderFunctions(); 200 msgpack::MapDocNode getShaderFunction(StringRef Name); 206 msgpack::MapDocNode getComputeRegisters(); 212 msgpack::MapDocNode getGraphicsRegisters(); 219 msgpack::MapDocNode getHwStage(unsigned CC);
|
H A D | AMDGPUPALMetadata.cpp | 883 msgpack::MapDocNode AMDGPUPALMetadata::getRegisters() { in getRegisters() 901 msgpack::MapDocNode AMDGPUPALMetadata::getShaderFunctions() { in getShaderFunctions() 908 msgpack::MapDocNode AMDGPUPALMetadata::getShaderFunction(StringRef Name) { in getShaderFunction() 923 msgpack::MapDocNode AMDGPUPALMetadata::getComputeRegisters() { in getComputeRegisters() 939 msgpack::MapDocNode AMDGPUPALMetadata::getGraphicsRegisters() { in getGraphicsRegisters() 979 msgpack::MapDocNode AMDGPUPALMetadata::getHwStage(unsigned CC) { in getHwStage()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUHSAMetadataStreamer.h | 63 msgpack::MapDocNode Kern) = 0; 91 msgpack::MapDocNode getHSAKernelProps(const MachineFunction &MF, 101 void emitKernelLanguage(const Function &Func, msgpack::MapDocNode Kern); 103 void emitKernelAttrs(const Function &Func, msgpack::MapDocNode Kern) override; 105 void emitKernelArgs(const MachineFunction &MF, msgpack::MapDocNode Kern); 149 void emitKernelAttrs(const Function &Func, msgpack::MapDocNode Kern) override;
|
H A D | AMDGPUHSAMetadataStreamer.cpp | 215 msgpack::MapDocNode Kern) { in emitKernelLanguage() 234 msgpack::MapDocNode Kern) { in emitKernelAttrs() 259 msgpack::MapDocNode Kern) { in emitKernelArgs() 458 msgpack::MapDocNode 691 msgpack::MapDocNode Kern) { in emitKernelAttrs()
|
/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/ |
H A D | MsgPackDocument.cpp | 29 /// Find the key in the MapDocNode. 30 DocNode::MapTy::iterator MapDocNode::find(StringRef S) { in find() 34 /// Member access for MapDocNode. The string data must remain valid for the 36 DocNode &MapDocNode::operator[](StringRef S) { in operator []() 40 /// Member access for MapDocNode. 41 DocNode &MapDocNode::operator[](DocNode Key) { in operator []() 51 /// Member access for MapDocNode for integer key. 52 DocNode &MapDocNode::operator[](int Key) { in operator []() 55 DocNode &MapDocNode::operator[](unsigned Key) { in operator []() 58 DocNode &MapDocNode in operator []() [all...] |
H A D | MsgPackDocumentYAML.cpp | 159 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 D | AMDGPUMetadataVerifier.cpp | 68 msgpack::MapDocNode &MapNode, StringRef Key, bool Required, in verifyEntry() 77 msgpack::MapDocNode &MapNode, StringRef Key, bool Required, in verifyScalarEntry() 85 bool MetadataVerifier::verifyIntegerEntry(msgpack::MapDocNode &MapNode,
|