Home
last modified time | relevance | path

Searched refs:TId (Results 1 – 17 of 17) sorted by relevance

/freebsd-head/contrib/llvm-project/llvm/tools/llvm-xray/
HDxray-converter.cpp97 R.TSC, R.TId, R.PId, R.CallArgs, R.Data}); in exportAsYAML()
153 Writer.write(R.TId); in exportAsRAWv1()
186 findSiblings(StackTrieNode *parent, int32_t FnId, uint32_t TId, in findSiblings() argument
195 if (map_iter.first != TId) in findSiblings()
217 StackTrieNode *Parent, int32_t FuncId, uint32_t TId, in findOrCreateStackNode() argument
222 Parent == nullptr ? StackRootsByThreadId[TId] : Parent->Callees; in findOrCreateStackNode()
230 findSiblings(Parent, FuncId, TId, StackRootsByThreadId); in findOrCreateStackNode()
248 uint32_t TId, uint32_t PId, bool Symbolize, in writeTraceViewerRecord() argument
260 FunctionPhenotype, TId, PId, EventTimestampUs, in writeTraceViewerRecord()
268 FunctionPhenotype, TId, EventTimestampUs, StackCursor.ExtraData.id); in writeTraceViewerRecord()
[all …]
HDxray-stacks.cpp119 Converter->SymbolOrNumber(Item.FuncId), Item.TId, in format()
365 auto &TS = ThreadStackMap[R.TId]; in accountRecord()
378 auto *Root = findRootNode(R.TId, R.FuncId); in accountRecord()
379 TS.emplace_back(Root ? Root : createTrieNode(R.TId, R.FuncId, nullptr), in accountRecord()
390 auto N = createTrieNode(R.TId, R.FuncId, Top.first); in accountRecord()
HDxray-account.cpp161 setMinMax(PerThreadMinMaxTSC[Record.TId], Record.TSC); in accountRecord()
170 auto &ThreadStack = PerThreadFunctionStack[Record.TId]; in accountRecord()
492 Record.TSC, Record.TId, Record.PId) in __anon180a2da20f02()
HDxray-graph.cpp220 auto &ThreadStack = PerThreadFunctionStack[Record.TId]; in accountRecord()
/freebsd-head/contrib/llvm-project/llvm/lib/XRay/
HDFDRTraceExpander.cpp45 CurrentRecord.TId = TID; in visit()
60 CurrentRecord.TId = TID; in visit()
75 CurrentRecord.TId = TID; in visit()
118 CurrentRecord.TId = TID; in visit()
HDTrace.cpp136 Record.TId = Reader.getU32(&OffsetPtr); in loadNaiveFormatLog()
166 auto TId = Reader.getU32(&OffsetPtr); in loadNaiveFormatLog() local
181 if (Record.FuncId != FuncId || Record.TId != TId || in loadNaiveFormatLog()
374 R.FuncId, R.TSC, R.TId, in loadYAMLLog()
HDProfile.cpp339 auto &TSD = ThreadStacks[E.TId]; in profileFromTrace()
362 auto &TPD = ThreadPathData[E.TId][InternedPath]; in profileFromTrace()
/freebsd-head/contrib/llvm-project/compiler-rt/include/xray/
HDxray_records.h95 uint32_t TId = 0; member
118 uint32_t TId = 0; member
/freebsd-head/contrib/llvm-project/compiler-rt/lib/xray/
HDxray_profile_collector.cpp31 tid_t TId; member
64 tid_t TId; member
108 tid_t TId) XRAY_NEVER_INSTRUMENT { in post() argument
129 TId) == nullptr) { in post()
293 BlockHeader Header{16 + CumulativeSizes, I++, ThreadTrie.TId}; in serialize()
HDxray_profile_collector.h41 FunctionCallTrie::Allocators::Buffers &&B, tid_t TId);
HDxray_fdr_controller.h35 tid_t TId = 0; variable
75 TId = GetTid(); in setupNewBuffer()
90 static_cast<int32_t>(TId)), in setupNewBuffer()
HDxray_basic_logging.cpp239 R.TId = GetTid(); in InMemoryRawLog()
287 R.TId = GetTid(); in InMemoryRawLogWithArg()
/freebsd-head/contrib/llvm-project/llvm/include/llvm/XRay/
HDYAMLXRayRecord.h38 uint32_t TId; member
83 IO.mapOptional("thread", Record.TId, 0U);
HDXRayRecord.h89 uint32_t TId; member
/freebsd-head/contrib/llvm-project/llvm/include/llvm/IR/
HDModuleSummaryIndexYAML.h272 TypeIdSummary TId;
273 io.mapRequired(Key.str().c_str(), TId);
274 V.insert({GlobalValue::getGUID(Key), {std::string(Key), TId}});
/freebsd-head/contrib/llvm-project/llvm/lib/LTO/
HDLTO.cpp300 auto AddTypeIdSummary = [&](StringRef TId, const TypeIdSummary &S) { in computeLTOCacheKey() argument
301 AddString(TId); in computeLTOCacheKey()
331 for (GlobalValue::GUID TId : UsedTypeIds) { in computeLTOCacheKey() local
332 auto TidIter = Index.typeIds().equal_range(TId); in computeLTOCacheKey()
/freebsd-head/contrib/llvm-project/llvm/lib/IR/
HDAsmWriter.cpp1117 for (auto &TId : TheIndex->typeIdCompatibleVtableMap()) in processIndex() local
1118 CreateTypeIdCompatibleVtableSlot(TId.first); in processIndex()
3083 for (auto &TId : TheIndex->typeIdCompatibleVtableMap()) { in printModuleSummaryIndex() local
3084 auto GUID = GlobalValue::getGUID(TId.first); in printModuleSummaryIndex()
3085 Out << "^" << Machine.getTypeIdCompatibleVtableSlot(TId.first) in printModuleSummaryIndex()
3086 << " = typeidCompatibleVTable: (name: \"" << TId.first << "\""; in printModuleSummaryIndex()
3087 printTypeIdCompatibleVtableSummary(TId.second); in printModuleSummaryIndex()