Home
last modified time | relevance | path

Searched refs:MD5Hash (Results 1 – 20 of 20) sorted by relevance

/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_defs.h150 struct MD5Hash { struct
152 bool operator==(const MD5Hash &other) const; argument
155 MD5Hash md5_hash(const void *data, uptr size);
H A Dtsan_md5.cpp242 MD5Hash md5_hash(const void *data, uptr size) { in md5_hash()
243 MD5Hash res; in md5_hash()
H A Dtsan_rtl.cpp1091 bool MD5Hash::operator==(const MD5Hash &other) const { in operator ==()
H A Dtsan_rtl.h285 MD5Hash hash[2];
/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProf.h507 // - In MD5NameMap: <MD5Hash(name), name> for name in name-set
508 // - In MD5FuncMap: <MD5Hash(name), &F> for name in name-set
515 // - In MD5NameMap: <MD5Hash(name), name> for name in name-set in InstrProfSymtab()
516 // - In MD5VTableMap: <MD5Hash(name), name> for name in name-set
660 inline GlobalVariable *getGlobalVariable(uint64_t MD5Hash); in create()
713 StringRef InstrProfSymtab::getFuncOrVarNameIfDefined(uint64_t MD5Hash) { in getFuncOrVarName()
714 StringRef ret = getFuncOrVarName(MD5Hash); in getFuncOrVarName()
720 StringRef InstrProfSymtab::getFuncOrVarName(uint64_t MD5Hash) { in getFunction()
722 auto Result = llvm::lower_bound(MD5NameMap, MD5Hash, in getFunction()
725 if (Result != MD5NameMap.end() && Result->first == MD5Hash) in getFunction()
700 getFuncOrVarNameIfDefined(uint64_t MD5Hash) getFuncOrVarNameIfDefined() argument
707 getFuncOrVarName(uint64_t MD5Hash) getFuncOrVarName() argument
727 getGlobalVariable(uint64_t MD5Hash) getGlobalVariable() argument
[all...]
H A DFunctionId.h125 return MD5Hash(StringRef(Data, LengthOrHashCode)); in getHashCode()
167 inline uint64_t MD5Hash(const FunctionId &Obj) { in MD5Hash() function
/llvm-project/llvm/unittests/ProfileData/
H A DInstrProfTest.cpp1461 getVTableEndAddr(vtable1), MD5Hash("vtable1")); in TEST()
1463 getVTableEndAddr(vtable2), MD5Hash("vtable2")); in TEST()
1465 getVTableEndAddr(vtable3), MD5Hash("vtable3")); in TEST()
1467 getVTableEndAddr(vtable4), MD5Hash("vtable4")); in TEST()
1477 MD5Hash("vtable1")); in TEST()
1479 MD5Hash("vtable2")); in TEST()
1481 MD5Hash("vtable3")); in TEST()
1483 MD5Hash("vtable4")); in TEST()
1512 EXPECT_EQ(VD[0].Value, MD5Hash("vtable2")); in TEST()
1514 EXPECT_EQ(VD[1].Value, MD5Hash("vtable in TEST()
[all...]
/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrOrderFile.cpp98 stream << std::hex << MD5Hash(F.getName()); in generateCodeSequence()
142 updateB.CreateStore(ConstantInt::get(Type::getInt64Ty(Ctx), MD5Hash(F.getName())), in generateCodeSequence()
/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfileProbe.cpp58 Hash ^= MD5Hash(std::to_string(InlinedAt->getLine())); in getCallStackHash()
59 Hash ^= MD5Hash(std::to_string(InlinedAt->getColumn())); in getCallStackHash()
61 Hash ^= MD5Hash(Name); in getCallStackHash()
/llvm-project/llvm/include/llvm/Support/
H A DMD5.h109 inline uint64_t MD5Hash(StringRef Str) { in MD5Hash() function
/llvm-project/llvm/lib/CodeGen/
H A DMIRFSDiscriminator.cpp66 return MD5Hash(Str); in getCallStackHashV0()
/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp204 MD5Hash(Obj.getMemoryBufferRef().getBuffer()), true)) in notifyObjectLoaded()
/llvm-project/clang/lib/Driver/ToolChains/
H A DHIPUtility.cpp173 ID = llvm::utohexstr(llvm::MD5Hash(ID), /*LowerCase=*/true); in processSymbols()
/llvm-project/llvm/lib/IR/
H A DGlobals.cpp76 return MD5Hash(GlobalName); in getGUID()
/llvm-project/llvm/lib/MC/
H A DMCPseudoProbe.cpp242 const_cast<MCSymbol *>(FuncSym), MD5Hash(FuncSym->getName()), in emit()
/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp941 auto GUID = MD5Hash(Name); in readFuncProfiles()
965 auto iter = FuncOffsetTable.find(MD5Hash(Name)); in decompressSection()
/llvm-project/llvm/tools/llvm-profgen/
H A DProfiledBinary.cpp882 HashBinaryFunctions[MD5Hash(StringRef(BinaryFunction.first))] = in loadSymbolsFromDWARF()
/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp913 std::string MD5Name = std::to_string(llvm::MD5Hash(FuncNameFilter)); in mergeInstrProfile()
915 std::to_string(llvm::MD5Hash(FuncNameNegativeFilter)); in mergeInstrProfile()
/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp2198 return llvm::ConstantInt::get(Int64Ty, llvm::MD5Hash(MDS->getString())); in ArgInfoAddressSpace()
/llvm-project/clang/lib/AST/
H A DASTContext.cpp14676 CUIDHash = llvm::utohexstr(llvm::MD5Hash(LangOpts.CUID), /*LowerCase=*/true);