Home
last modified time | relevance | path

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

/linux-4.1.27/arch/arm64/kernel/
Ddebug-monitors.c332 u16 thumb_instr; in aarch32_break_handler() local
341 get_user(thumb_instr, (u16 __user *)pc); in aarch32_break_handler()
342 thumb_instr = le16_to_cpu(thumb_instr); in aarch32_break_handler()
343 if (thumb_instr == AARCH32_BREAK_THUMB2_LO) { in aarch32_break_handler()
345 get_user(thumb_instr, (u16 __user *)(pc + 2)); in aarch32_break_handler()
346 thumb_instr = le16_to_cpu(thumb_instr); in aarch32_break_handler()
347 bp = thumb_instr == AARCH32_BREAK_THUMB2_HI; in aarch32_break_handler()
349 bp = thumb_instr == AARCH32_BREAK_THUMB; in aarch32_break_handler()