Home
last modified time | relevance | path

Searched refs:BuildId (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMemProfData.inc65 uint8_t BuildId[MEMPROF_BUILDID_MAX_SIZE] = {0};
67 // This constructor is only used in tests so don't set the BuildId.
76 memcpy(BuildId, S.BuildId, S.BuildIdSize);
84 memcpy(BuildId, S.BuildId, S.BuildIdSize);
91 memcmp(BuildId, S.BuildId, S.BuildIdSize) == 0;
/freebsd/contrib/llvm-project/compiler-rt/include/profile/
H A DMemProfData.inc65 uint8_t BuildId[MEMPROF_BUILDID_MAX_SIZE] = {0};
67 // This constructor is only used in tests so don't set the BuildId.
76 memcpy(BuildId, S.BuildId, S.BuildIdSize);
84 memcpy(BuildId, S.BuildId, S.BuildIdSize);
91 memcmp(BuildId, S.BuildId, S.BuildIdSize) == 0;
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DAIX.cpp173 StringRef BuildId = A->getValue(); in ConstructJob() local
174 if (BuildId[0] != '0' || BuildId[1] != 'x' || in ConstructJob()
175 BuildId.find_if_not(llvm::isHexDigit, 2) != StringRef::npos) in ConstructJob()
177 << A->getSpelling() << BuildId; in ConstructJob()
180 if (BuildId.size() % 2) // Prepend a 0 if odd number of digits. in ConstructJob()
182 LinkerFlag += BuildId.drop_front(2).lower(); in ConstructJob()
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_rawprofile.cpp75 memcpy(Entry.BuildId, Module.uuid(), Module.uuid_size()); in SerializeSegmentsToBuffer()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp69 std::optional<CVType> cvt = types.tryGetType(bis.BuildId); in ParseBuildInfo()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DMemProfReader.cpp230 OS << format_hex_no_prefix(Entry.BuildId[I], 2); in getBuildIdString()
459 llvm::ArrayRef<uint8_t> SegmentId(Entry.BuildId, Entry.BuildIdSize); in setupForSymbolization()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp127 error(IO.mapInteger(BuildInfo.BuildId)); in visitKnownRecord()
H A DSymbolDumper.cpp191 printTypeIndex("BuildId", BuildInfo.BuildId); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h904 TypeIndex BuildId;
883 TypeIndex BuildId; global() variable
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp552 IO.mapRequired("BuildId", Symbol.BuildId); in map()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp925 LLVM_DEBUG({ printTypeIndex("BuildId", BuildInfo.BuildId); }); in visitKnownRecord()
927 CVType CVBuildType = Ids.getType(BuildInfo.BuildId); in visitKnownRecord()
929 CVBuildType, BuildInfo.BuildId, Reader->getCompileUnit())) in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp498 P.format(" BuildId = `{0}`", BuildInfo.BuildId); in visitKnownRecord()