Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp69 instrprof_error instrError = IPE.get(); in exitWithError()
75 exitWithError(IPE.message(), Whence, Hint); in exitWithError()
98 auto IPE = instrprof_error::success; in handleMergeWriterError() local
101 IPE = E->get(); in handleMergeWriterError()
108 if (IPE != instrprof_error::success) { in handleMergeWriterError()
109 switch (IPE) { in handleMergeWriterError()
189 static bool isFatalError(instrprof_error IPE) { in isFatalError() argument
190 switch (IPE) { in isFatalError()
223 WC->Err = make_error<InstrProfError>(IPE); in loadInput()
258 if (isFatalError(IPE)) in loadInput()
[all …]
/freebsd-12.1/contrib/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp215 instrprof_error IPE = InstrProfError::take(std::move(E)); in loadFunctionRecord() local
216 if (IPE == instrprof_error::hash_mismatch) { in loadFunctionRecord()
219 } else if (IPE != instrprof_error::unknown_function) in loadFunctionRecord()
220 return make_error<InstrProfError>(IPE); in loadFunctionRecord()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenPGO.cpp973 auto IPE = llvm::InstrProfError::take(std::move(E)); in loadRegionCounts() local
974 if (IPE == llvm::instrprof_error::unknown_function) in loadRegionCounts()
976 else if (IPE == llvm::instrprof_error::hash_mismatch) in loadRegionCounts()
978 else if (IPE == llvm::instrprof_error::malformed) in loadRegionCounts()
/freebsd-12.1/contrib/llvm/include/llvm/ProfileData/
H A DInstrProf.h326 handleAllErrors(std::move(E), [&Err](const InstrProfError &IPE) { in take()
328 Err = IPE.get(); in take()
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1022 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) { in readCounters() argument
1023 auto Err = IPE.get(); in readCounters()
1041 std::string Msg = IPE.message() + std::string(" ") + F.getName().str(); in readCounters()