Home
last modified time | relevance | path

Searched refs:IntelPTError (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DDecodedThread.cpp22 char IntelPTError::ID;
24 IntelPTError::IntelPTError(int libipt_error_code, lldb::addr_t address) in IntelPTError() function in IntelPTError
29 void IntelPTError::log(llvm::raw_ostream &OS) const { in log()
59 if (m_error->isA<IntelPTError>()) in ToError()
60 return make_error<IntelPTError>(static_cast<IntelPTError &>(*m_error)); in ToError()
H A DIntelPTDecoder.cpp117 instructions.emplace_back(make_error<IntelPTError>(errcode)); in DecodeInstructions()
126 instructions.emplace_back(make_error<IntelPTError>(errcode)); in DecodeInstructions()
136 instructions.emplace_back(make_error<IntelPTError>(errcode, insn.ip)); in DecodeInstructions()
146 make_error<IntelPTError>(time_error, insn.ip)); in DecodeInstructions()
191 return make_error<IntelPTError>(errcode); in DecodeInMemoryTrace()
198 return make_error<IntelPTError>(-pte_nomem); in DecodeInMemoryTrace()
H A DDecodedThread.h26 class IntelPTError : public llvm::ErrorInfo<IntelPTError> {
39 IntelPTError(int libipt_error_code,