Home
last modified time | relevance | path

Searched refs:IPE (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp67 warn(IPE.message(), std::string(Whence), std::string("")); in warn()
86 instrprof_error instrError = IPE.get(); in exitWithError()
125 auto IPE = instrprof_error::success; in handleMergeWriterError() local
128 IPE = E->get(); in handleMergeWriterError()
135 if (IPE != instrprof_error::success) { in handleMergeWriterError()
136 switch (IPE) { in handleMergeWriterError()
224 instrprof_error IPE = InstrProfError::take(std::move(E)); in overlapInput() local
225 if (IPE != instrprof_error::empty_raw_profile) in overlapInput()
296 instrprof_error IPE = InstrProfError::take(std::move(E)); in loadInput() local
297 if (IPE != instrprof_error::empty_raw_profile) in loadInput()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h153 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) { in error()
154 LastError = IPE.get(); in error()
155 LastErrorMsg = IPE.getMessage(); in error()
H A DInstrProf.h355 handleAllErrors(std::move(E), [&Err](const InstrProfError &IPE) { in take()
357 Err = IPE.get(); in take()
/llvm-project-15.0.7/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp249 instrprof_error IPE = InstrProfError::take(std::move(E)); in loadFunctionRecord() local
250 if (IPE == instrprof_error::hash_mismatch) { in loadFunctionRecord()
254 } else if (IPE != instrprof_error::unknown_function) in loadFunctionRecord()
255 return make_error<InstrProfError>(IPE); in loadFunctionRecord()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenPGO.cpp1036 auto IPE = llvm::InstrProfError::take(std::move(E)); in loadRegionCounts() local
1037 if (IPE == llvm::instrprof_error::unknown_function) in loadRegionCounts()
1039 else if (IPE == llvm::instrprof_error::hash_mismatch) in loadRegionCounts()
1041 else if (IPE == llvm::instrprof_error::malformed) in loadRegionCounts()
/llvm-project-15.0.7/llvm/unittests/ProfileData/
H A DInstrProfTest.cpp30 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) { in ErrorEquals() argument
31 Found = IPE.get(); in ErrorEquals()
32 FoundMsg = IPE.message(); in ErrorEquals()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1229 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) { in readCounters() argument
1230 auto Err = IPE.get(); in readCounters()
1257 IPE.message() + std::string(" ") + F.getName().str() + in readCounters()