Home
last modified time | relevance | path

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

/arch/tile/kernel/
Dkgdb.c303 BREAK_INSTR_SIZE); in do_single_step()
307 BREAK_INSTR_SIZE); in do_single_step()
309 flush_icache_range(stepped_addr, stepped_addr + BREAK_INSTR_SIZE); in do_single_step()
321 BREAK_INSTR_SIZE); in undo_single_step()
324 flush_icache_range(stepped_addr, stepped_addr + BREAK_INSTR_SIZE); in undo_single_step()
417 regs->pc += BREAK_INSTR_SIZE; in kgdb_arch_handle_exception()
445 memcpy(arch_kgdb_ops.gdb_bpt_instr, &bundle, BREAK_INSTR_SIZE); in kgdb_arch_init()
469 BREAK_INSTR_SIZE); in kgdb_arch_set_breakpoint()
474 BREAK_INSTR_SIZE); in kgdb_arch_set_breakpoint()
477 (unsigned long)bpt->bpt_addr + BREAK_INSTR_SIZE); in kgdb_arch_set_breakpoint()
[all …]
/arch/arc/kernel/
Dkgdb.c94 BREAK_INSTR_SIZE); in undo_single_step()
98 BREAK_INSTR_SIZE); in undo_single_step()
106 memcpy(save, (void *) address, BREAK_INSTR_SIZE); in place_trap()
108 BREAK_INSTR_SIZE); in place_trap()
109 flush_icache_range(address, address + BREAK_INSTR_SIZE); in place_trap()
180 instruction_pointer(regs) -= BREAK_INSTR_SIZE; in kgdb_trap()
/arch/x86/kernel/
Dkgdb.c753 char opc[BREAK_INSTR_SIZE]; in kgdb_arch_set_breakpoint()
757 BREAK_INSTR_SIZE); in kgdb_arch_set_breakpoint()
761 arch_kgdb_ops.gdb_bpt_instr, BREAK_INSTR_SIZE); in kgdb_arch_set_breakpoint()
771 BREAK_INSTR_SIZE); in kgdb_arch_set_breakpoint()
772 err = probe_kernel_read(opc, (char *)bpt->bpt_addr, BREAK_INSTR_SIZE); in kgdb_arch_set_breakpoint()
775 if (memcmp(opc, arch_kgdb_ops.gdb_bpt_instr, BREAK_INSTR_SIZE)) in kgdb_arch_set_breakpoint()
785 char opc[BREAK_INSTR_SIZE]; in kgdb_arch_remove_breakpoint()
795 text_poke((void *)bpt->bpt_addr, bpt->saved_instr, BREAK_INSTR_SIZE); in kgdb_arch_remove_breakpoint()
796 err = probe_kernel_read(opc, (char *)bpt->bpt_addr, BREAK_INSTR_SIZE); in kgdb_arch_remove_breakpoint()
797 if (err || memcmp(opc, bpt->saved_instr, BREAK_INSTR_SIZE)) in kgdb_arch_remove_breakpoint()
[all …]
/arch/hexagon/include/asm/
Dkgdb.h24 #define BREAK_INSTR_SIZE 4 macro
/arch/microblaze/include/asm/
Dkgdb.h20 #define BREAK_INSTR_SIZE 4 macro
/arch/tile/include/asm/
Dkgdb.h44 #define BREAK_INSTR_SIZE TILEGX_BUNDLE_SIZE_IN_BYTES macro
/arch/powerpc/include/asm/
Dkgdb.h26 #define BREAK_INSTR_SIZE 4 macro
/arch/sh/include/asm/
Dkgdb.h26 #define BREAK_INSTR_SIZE 2 macro
/arch/mn10300/include/asm/
Dkgdb.h78 #define BREAK_INSTR_SIZE 1 macro
/arch/mips/include/asm/
Dkgdb.h32 #define BREAK_INSTR_SIZE 4 macro
/arch/arm/include/asm/
Dkgdb.h35 #define BREAK_INSTR_SIZE 4 macro
/arch/arc/include/asm/
Dkgdb.h24 #define BREAK_INSTR_SIZE 2 macro
/arch/x86/include/asm/
Dkgdb.h82 #define BREAK_INSTR_SIZE 1 macro
/arch/nios2/include/asm/
Dkgdb.h87 #define BREAK_INSTR_SIZE 4 macro
/arch/sparc/include/asm/
Dkgdb.h38 #define BREAK_INSTR_SIZE 4 macro
/arch/blackfin/kernel/
Dkgdb.c439 if (addr >= 0x1000 && (addr + BREAK_INSTR_SIZE) <= physical_mem_end) in kgdb_validate_break_address()
441 if (IN_MEM(addr, BREAK_INSTR_SIZE, ASYNC_BANK0_BASE, ASYNC_BANK_SIZE)) in kgdb_validate_break_address()
443 if (cpu == 0 && IN_MEM(addr, BREAK_INSTR_SIZE, L1_CODE_START, L1_CODE_LENGTH)) in kgdb_validate_break_address()
446 else if (cpu == 1 && IN_MEM(addr, BREAK_INSTR_SIZE, COREB_L1_CODE_START, L1_CODE_LENGTH)) in kgdb_validate_break_address()
449 if (IN_MEM(addr, BREAK_INSTR_SIZE, L2_START, L2_LENGTH)) in kgdb_validate_break_address()
/arch/arm64/include/asm/
Ddebug-monitors.h48 #define BREAK_INSTR_SIZE AARCH64_INSN_SIZE macro
/arch/arm/kernel/
Dkgdb.c252 BUILD_BUG_ON(sizeof(int) != BREAK_INSTR_SIZE); in kgdb_arch_set_breakpoint()
255 BREAK_INSTR_SIZE); in kgdb_arch_set_breakpoint()
/arch/blackfin/include/asm/
Dkgdb.h105 #define BREAK_INSTR_SIZE 2 macro
/arch/microblaze/kernel/
Dkgdb.c90 regs->pc += BREAK_INSTR_SIZE; in microblaze_kgdb_break()
/arch/powerpc/kernel/
Dkgdb.c148 regs->nip += BREAK_INSTR_SIZE; in kgdb_handle_breakpoint()
/arch/mips/kernel/
Dkgdb.c407 memcpy(arch_kgdb_ops.gdb_bpt_instr, insn.byte, BREAK_INSTR_SIZE); in kgdb_arch_init()