Home
last modified time | relevance | path

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

/arch/arm64/kernel/
Ddebug-monitors.c331 u16 thumb_instr; in aarch32_break_handler() local
340 get_user(thumb_instr, (u16 __user *)pc); in aarch32_break_handler()
341 thumb_instr = le16_to_cpu(thumb_instr); in aarch32_break_handler()
342 if (thumb_instr == AARCH32_BREAK_THUMB2_LO) { in aarch32_break_handler()
344 get_user(thumb_instr, (u16 __user *)(pc + 2)); in aarch32_break_handler()
345 thumb_instr = le16_to_cpu(thumb_instr); in aarch32_break_handler()
346 bp = thumb_instr == AARCH32_BREAK_THUMB2_HI; in aarch32_break_handler()
348 bp = thumb_instr == AARCH32_BREAK_THUMB; in aarch32_break_handler()