Home
last modified time | relevance | path

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

/optee_os/lib/libunw/
H A Dunwind_arm32.c96 uint32_t insn; member
156 uint32_t insn; in unwind_exec_read_byte() local
158 if (!copy_in(&insn, (void *)state->insn, sizeof(insn))) in unwind_exec_read_byte()
162 *ret_insn = (insn >> (state->byte * 8)) & 0xff; in unwind_exec_read_byte()
167 state->insn += sizeof(uint32_t); in unwind_exec_read_byte()
194 uint32_t insn; in unwind_exec_insn() local
199 if (!unwind_exec_read_byte(state, &insn)) in unwind_exec_insn()
202 if ((insn & INSN_VSP_MASK) == INSN_VSP_INC) { in unwind_exec_insn()
203 state->registers[SP] += ((insn & INSN_VSP_SIZE_MASK) << 2) + 4; in unwind_exec_insn()
205 } else if ((insn & INSN_VSP_MASK) == INSN_VSP_DEC) { in unwind_exec_insn()
[all …]
/optee_os/lib/libunw/include/unw/
H A Dunwind.h45 vaddr_t insn; member