Lines Matching refs:MsgPackDoc

87   return MsgPackDoc.readFromBlob(Blob, /*Multi=*/false);  in setFromMsgPackBlob()
172 auto It = Regs.find(MsgPackDoc.getNode(Reg)); in getRegister()
190 auto &N = getRegisters()[MsgPackDoc.getNode(Reg)]; in setRegister()
206 auto &N = getRegisters()[MsgPackDoc.getNode(Reg)]; in setRegister()
235 getHwStage(CC)[".entry_point"] = MsgPackDoc.getNode(Name, /*Copy=*/true); in setEntryPoint()
252 getHwStage(CC)[".vgpr_count"] = MsgPackDoc.getNode(Val); in setNumUsedVgprs()
291 getHwStage(CC)[".sgpr_count"] = MsgPackDoc.getNode(Val); in setNumUsedSgprs()
316 getHwStage(CC)[".scratch_memory_size"] = MsgPackDoc.getNode(Val); in setScratchSize()
333 Node[".stack_frame_size_in_bytes"] = MsgPackDoc.getNode(Val); in setFunctionScratchSize()
334 Node[".backend_stack_size"] = MsgPackDoc.getNode(Val); in setFunctionScratchSize()
340 Node[".lds_size"] = MsgPackDoc.getNode(Val); in setFunctionLdsSize()
347 Node[".vgpr_count"] = MsgPackDoc.getNode(Val); in setFunctionNumUsedVgprs()
360 Node[".sgpr_count"] = MsgPackDoc.getNode(Val); in setFunctionNumUsedSgprs()
768 if (MsgPackDoc.getRoot().getKind() == msgpack::Type::Nil) in toString()
786 MsgPackDoc.setHexMode(); in toString()
789 RegsObj = MsgPackDoc.getMapNode(); in toString()
797 Key = MsgPackDoc.getNode(KeyName, /*Copy=*/true); in toString()
804 MsgPackDoc.toYAML(Stream); in toString()
837 MsgPackDoc.writeToBlob(Blob); in toMsgPackBlob()
843 if (!MsgPackDoc.fromYAML(S)) in setFromString()
851 RegsObj = MsgPackDoc.getMapNode(); in setFromString()
864 Key = MsgPackDoc.getNode(uint64_t(Val)); in setFromString()
874 MsgPackDoc.getRoot() in refRegisters()
875 .getMap(/*Convert=*/true)[MsgPackDoc.getNode("amdpal.pipelines")] in refRegisters()
877 .getMap(/*Convert=*/true)[MsgPackDoc.getNode(".registers")]; in refRegisters()
892 MsgPackDoc.getRoot() in refShaderFunctions()
893 .getMap(/*Convert=*/true)[MsgPackDoc.getNode("amdpal.pipelines")] in refShaderFunctions()
895 .getMap(/*Convert=*/true)[MsgPackDoc.getNode(".shader_functions")]; in refShaderFunctions()
915 MsgPackDoc.getRoot() in refComputeRegisters()
916 .getMap(/*Convert=*/true)[MsgPackDoc.getNode("amdpal.pipelines")] in refComputeRegisters()
918 .getMap(/*Convert=*/true)[MsgPackDoc.getNode(".compute_registers")]; in refComputeRegisters()
931 MsgPackDoc.getRoot() in refGraphicsRegisters()
932 .getMap(/*Convert=*/true)[MsgPackDoc.getNode("amdpal.pipelines")] in refGraphicsRegisters()
934 .getMap(/*Convert=*/true)[MsgPackDoc.getNode(".graphics_registers")]; in refGraphicsRegisters()
969 MsgPackDoc.getRoot() in refHwStage()
970 .getMap(/*Convert=*/true)[MsgPackDoc.getNode("amdpal.pipelines")] in refHwStage()
972 .getMap(/*Convert=*/true)[MsgPackDoc.getNode(".hardware_stages")]; in refHwStage()
1010 MsgPackDoc.clear(); in reset()
1013 Registers = MsgPackDoc.getEmptyNode(); in reset()
1014 HwStages = MsgPackDoc.getEmptyNode(); in reset()
1015 ShaderFunctions = MsgPackDoc.getEmptyNode(); in reset()
1027 auto &M = MsgPackDoc.getRoot().getMap(/*Convert=*/true); in getPALVersion()
1028 auto I = M.find(MsgPackDoc.getNode("amdpal.version")); in getPALVersion()