Searched refs:BuildId (Results 1 – 12 of 12) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | MemProfData.inc | 65 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 D | MemProfData.inc | 65 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 D | AIX.cpp | 173 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 D | memprof_rawprofile.cpp | 75 memcpy(Entry.BuildId, Module.uuid(), Module.uuid_size()); in SerializeSegmentsToBuffer()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | CompileUnitIndex.cpp | 69 std::optional<CVType> cvt = types.tryGetType(bis.BuildId); in ParseBuildInfo()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | MemProfReader.cpp | 230 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 D | SymbolRecordMapping.cpp | 127 error(IO.mapInteger(BuildInfo.BuildId)); in visitKnownRecord()
|
H A D | SymbolDumper.cpp | 191 printTypeIndex("BuildId", BuildInfo.BuildId); in visitKnownRecord()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | SymbolRecord.h | 904 TypeIndex BuildId; 883 TypeIndex BuildId; global() variable
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLSymbols.cpp | 552 IO.mapRequired("BuildId", Symbol.BuildId); in map()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
H A D | LVCodeViewVisitor.cpp | 925 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 D | MinimalSymbolDumper.cpp | 498 P.format(" BuildId = `{0}`", BuildInfo.BuildId); in visitKnownRecord()
|