HomeSort by relevance Sort by last modified time
    Searched refs:IPE (Results 1 - 11 of 11) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-profdata/
llvm-profdata.cpp 68 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) {
69 instrprof_error instrError = IPE.get();
75 exitWithError(IPE.message(), Whence, Hint);
98 auto IPE = instrprof_error::success;
100 [&IPE](std::unique_ptr<InstrProfError> E) -> Error {
101 IPE = E->get();
108 if (IPE != instrprof_error::success) {
109 switch (IPE) {
148 static bool isFatalError(instrprof_error IPE) {
149 switch (IPE) {
    [all...]
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 52 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) {
53 instrprof_error instrError = IPE.get();
59 exitWithError(IPE.message(), Whence, Hint);
82 auto IPE = instrprof_error::success;
84 [&IPE](std::unique_ptr<InstrProfError> E) -> Error {
85 IPE = E->get();
92 if (IPE != instrprof_error::success) {
93 switch (IPE) {
149 instrprof_error IPE = InstrProfError::take(std::move(E));
150 bool firstTime = WriterErrorCodes.insert(IPE).second
    [all...]
  /external/llvm/lib/ProfileData/Coverage/
CoverageMapping.cpp 198 instrprof_error IPE = InstrProfError::take(std::move(E));
199 if (IPE == instrprof_error::hash_mismatch) {
202 } else if (IPE != instrprof_error::unknown_function)
203 return make_error<InstrProfError>(IPE);
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 808 auto IPE = llvm::InstrProfError::take(std::move(E));
809 if (IPE == llvm::instrprof_error::unknown_function)
811 else if (IPE == llvm::instrprof_error::hash_mismatch)
813 else if (IPE == llvm::instrprof_error::malformed)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/Coverage/
CoverageMapping.cpp 221 instrprof_error IPE = InstrProfError::take(std::move(E));
222 if (IPE == instrprof_error::hash_mismatch) {
225 } else if (IPE != instrprof_error::unknown_function)
226 return make_error<InstrProfError>(IPE);
  /external/llvm/include/llvm/ProfileData/
InstrProf.h 323 handleAllErrors(std::move(E), [&Err](const InstrProfError &IPE) {
325 Err = IPE.get();
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp 592 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) {
593 auto Err = IPE.get();
607 std::string Msg = IPE.message() + std::string(" ") + F.getName().str();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/
InstrProf.h 326 handleAllErrors(std::move(E), [&Err](const InstrProfError &IPE) {
328 Err = IPE.get();
    [all...]
  /external/llvm/unittests/ProfileData/
InstrProfTest.cpp 33 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) {
34 Found = IPE.get();
35 FoundMsg = IPE.message();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ProfileData/
InstrProfTest.cpp 28 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) {
29 Found = IPE.get();
30 FoundMsg = IPE.message();
    [all...]

Completed in 734 milliseconds