Home
last modified time | relevance | path

Searched refs:PTInstruction (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/lldb/tools/intel-features/intel-pt/
DPTDecoder.cpp16 PTInstruction::PTInstruction( in PTInstruction() function in PTInstruction
20 PTInstruction::~PTInstruction() {} in ~PTInstruction()
22 uint64_t PTInstruction::GetInsnAddress() const { in GetInsnAddress()
26 size_t PTInstruction::GetRawBytes(void *buf, size_t size) const { in GetRawBytes()
30 std::string PTInstruction::GetError() const { in GetError()
34 bool PTInstruction::GetSpeculative() const { in GetSpeculative()
43 PTInstruction PTInstructionList::GetInstructionAtIndex(uint32_t idx) { in GetInstructionAtIndex()
45 return PTInstruction(std::shared_ptr<ptdecoder_private::Instruction>( in GetInstructionAtIndex()
48 return PTInstruction(std::shared_ptr<ptdecoder_private::Instruction>( in GetInstructionAtIndex()
DPTDecoder.h37 class PTInstruction {
39 PTInstruction() = default;
41 PTInstruction(const std::shared_ptr<ptdecoder_private::Instruction> &ptr);
43 ~PTInstruction();
87 PTInstruction GetInstructionAtIndex(uint32_t idx);
DREADME_TOOL.txt112 - PTInstruction to represent an assembly instruction
294 class PTInstruction
304 instruction is of type PTInstruction.
Dcli-wrapper-pt.cpp395 ptdecoder::PTInstruction insn = insn_list.GetInstructionAtIndex(i); in DoExecute()