Home
last modified time | relevance | path

Searched refs:current_instr_ (Results 1 – 2 of 2) sorted by relevance

/external/google-breakpad/src/processor/
Ddisassembler_x86.cc51 libdis::x86_oplist_free(&current_instr_); in ~DisassemblerX86()
58 libdis::x86_oplist_free(&current_instr_); in NextInstruction()
67 &current_instr_); in NextInstruction()
75 instr_valid_ = libdis::x86_insn_is_valid(&current_instr_); in NextInstruction()
79 if (current_instr_.type == libdis::insn_return) in NextInstruction()
81 libdis::x86_op_t *src = libdis::x86_get_src_operand(&current_instr_); in NextInstruction()
82 libdis::x86_op_t *dest = libdis::x86_get_dest_operand(&current_instr_); in NextInstruction()
85 switch (current_instr_.group) { in NextInstruction()
89 switch (current_instr_.type) { in NextInstruction()
106 (current_instr_.type == libdis::insn_call || in NextInstruction()
[all …]
Ddisassembler_x86.h82 return instr_valid_ ? &current_instr_ : NULL; in currentInstruction()
87 return current_instr_.group; in currentInstructionGroup()
112 libdis::x86_insn_t current_instr_; variable