Lines Matching refs:bcode
938 unsigned int opcode, bcode; in do_bp() local
956 bcode = (instr[0] >> 5) & 0x3f; in do_bp()
959 bcode = instr[0] & 0xf; in do_bp()
965 bcode = (opcode >> 6) & ((1 << 20) - 1); in do_bp()
970 bcode = (opcode >> 6) & ((1 << 20) - 1); in do_bp()
979 if (bcode >= (1 << 10)) in do_bp()
980 bcode = ((bcode & ((1 << 10) - 1)) << 10) | (bcode >> 10); in do_bp()
986 switch (bcode) { in do_bp()
988 if (notify_die(DIE_UPROBE, "uprobe", regs, bcode, in do_bp()
994 if (notify_die(DIE_UPROBE_XOL, "uprobe_xol", regs, bcode, in do_bp()
1000 if (notify_die(DIE_BREAK, "debug", regs, bcode, in do_bp()
1006 if (notify_die(DIE_SSTEPBP, "single_step", regs, bcode, in do_bp()
1015 do_trap_or_bp(regs, bcode, "Break"); in do_bp()