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

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp70 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) {
71 instrprof_error instrError = IPE.get();
77 exitWithError(IPE.message(), std::string(Whence), std::string(Hint));
109 auto IPE = instrprof_error::success; local
111 [&IPE](std::unique_ptr<InstrProfError> E) -> Error {
112 IPE = E->get();
119 if (IPE != instrprof_error::success) {
120 switch (IPE) {
208 instrprof_error IPE = InstrProfError::take(std::move(E)); local
209 if (IPE !
237 instrprof_error IPE = InstrProfError::take(std::move(E)); local
267 instrprof_error IPE = InstrProfError::take(std::move(E)); local
286 instrprof_error IPE = InstrProfError::take(std::move(E)); local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp984 auto IPE = llvm::InstrProfError::take(std::move(E)); local
985 if (IPE == llvm::instrprof_error::unknown_function)
987 else if (IPE == llvm::instrprof_error::hash_mismatch)
989 else if (IPE == llvm::instrprof_error::malformed)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp223 instrprof_error IPE = InstrProfError::take(std::move(E)); local
224 if (IPE == instrprof_error::hash_mismatch) {
228 } else if (IPE != instrprof_error::unknown_function)
229 return make_error<InstrProfError>(IPE);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProf.h326 handleAllErrors(std::move(E), [&Err](const InstrProfError &IPE) {
328 Err = IPE.get();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1194 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) {
1195 auto Err = IPE.get();
1218 std::string Msg = IPE.message() + std::string(" ") + F.getName().str() +

Completed in 178 milliseconds