Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-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()
212 // Given a function being invoked in a thread with id TId, finds and returns the
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, PI in writeTraceViewerRecord()
[all...]
H A Dxray-stacks.cpp119 Converter->SymbolOrNumber(Item.FuncId), Item.TId, in format()
361 auto &TS = ThreadStackMap[R.TId]; in accountRecord()
374 auto *Root = findRootNode(R.TId, R.FuncId); in accountRecord()
375 TS.emplace_back(Root ? Root : createTrieNode(R.TId, R.FuncId, nullptr), in accountRecord()
386 auto N = createTrieNode(R.TId, R.FuncId, Top.first); in accountRecord()
H A Dxray-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 __anon895715230f02()
H A Dxray-graph.cpp220 auto &ThreadStack = PerThreadFunctionStack[Record.TId]; in accountRecord()
/freebsd/contrib/llvm-project/llvm/lib/XRay/
H A DFDRTraceExpander.cpp45 CurrentRecord.TId = TID; in visit()
60 CurrentRecord.TId = TID; in visit()
75 CurrentRecord.TId = TID; in visit()
118 CurrentRecord.TId = TID; in visit()
H A DTrace.cpp136 Record.TId = Reader.getU32(&OffsetPtr); in loadNaiveFormatLog()
166 auto TId = Reader.getU32(&OffsetPtr); in loadNaiveFormatLog()
181 if (Record.FuncId != FuncId || Record.TId != TId || in loadNaiveFormatLog()
374 R.FuncId, R.TSC, R.TId, in loadYAMLLog()
163 auto TId = Reader.getU32(&OffsetPtr); loadNaiveFormatLog() local
H A DProfile.cpp338 auto &TSD = ThreadStacks[E.TId]; in profileFromTrace()
361 auto &TPD = ThreadPathData[E.TId][InternedPath]; in profileFromTrace()
/freebsd/contrib/llvm-project/compiler-rt/include/xray/
H A Dxray_records.h95 uint32_t TId = 0; member
118 uint32_t TId = 0; member
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_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()
H A Dxray_profile_collector.h41 FunctionCallTrie::Allocators::Buffers &&B, tid_t TId);
H A Dxray_fdr_controller.h35 tid_t TId = 0; variable
75 TId = GetTid(); in setupNewBuffer()
90 static_cast<int32_t>(TId)), in setupNewBuffer()
H A Dxray_basic_logging.cpp239 R.TId = GetTid(); in InMemoryRawLog()
287 R.TId = GetTid(); in InMemoryRawLogWithArg()
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/
H A DYAMLXRayRecord.h38 uint32_t TId; member
83 IO.mapOptional("thread", Record.TId, 0U);
H A DXRayRecord.h89 uint32_t TId; member
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndexYAML.h315 TypeIdSummary TId;
316 io.mapRequired(Key.str().c_str(), TId);
317 V.insert({GlobalValue::getGUIDAssumingExternalLinkage(Key), {Key, TId}});
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp291 auto AddTypeIdSummary = [&](StringRef TId, const TypeIdSummary &S) { in computeLTOCacheKey() argument
292 AddString(TId); in computeLTOCacheKey()
322 for (GlobalValue::GUID TId : UsedTypeIds) { in computeLTOCacheKey() local
323 auto TidIter = Index.typeIds().equal_range(TId); in computeLTOCacheKey()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp1175 for (auto &TId : TheIndex->typeIdCompatibleVtableMap()) in processIndex() local
1176 CreateTypeIdCompatibleVtableSlot(TId.first); in processIndex()
3246 for (auto &TId : TheIndex->typeIdCompatibleVtableMap()) { in printModuleSummaryIndex() local
3247 auto GUID = GlobalValue::getGUIDAssumingExternalLinkage(TId.first); in printModuleSummaryIndex()
3248 Out << "^" << Machine.getTypeIdCompatibleVtableSlot(TId.first) in printModuleSummaryIndex()
3249 << " = typeidCompatibleVTable: (name: \"" << TId.first << "\""; in printModuleSummaryIndex()
3250 printTypeIdCompatibleVtableSummary(TId.second); in printModuleSummaryIndex()