Searched refs:nops (Results 1 – 10 of 10) sorted by relevance
/arch/riscv/kernel/ |
D | ftrace.c | 41 unsigned int nops[2] = {NOP4, NOP4}; in ftrace_check_current_call() local 45 expected = nops; in ftrace_check_current_call() 73 unsigned int nops[2] = {NOP4, NOP4}; in __ftrace_modify_call() local 82 ((void *)hook_pos, enable ? call : nops, MCOUNT_INSN_SIZE)) in __ftrace_modify_call() 103 unsigned int nops[2] = {NOP4, NOP4}; in ftrace_make_nop() local 105 if (patch_text_nosync((void *)rec->ip, nops, MCOUNT_INSN_SIZE)) in ftrace_make_nop()
|
/arch/csky/kernel/ |
D | ftrace.c | 68 static uint16_t nops[7] = {NOP, NOP32_HI, NOP32_LO, NOP32_HI, NOP32_LO, variable 76 sizeof(nops))) in ftrace_check_current_nop() 79 if (memcmp((void *)nops, (void *)olds, sizeof(nops))) { in ftrace_check_current_nop() 101 ret = copy_to_kernel_nofault((void *)hook_pos, enable ? call : nops, in ftrace_modify_code() 102 sizeof(nops)); in ftrace_modify_code()
|
/arch/s390/kernel/ |
D | alternative.c | 30 static const void *nops[] __initdata_or_module = { variable 59 memcpy(insns, nops[len / 2 - 1], len); in add_padding()
|
D | entry.S | 265 # interrupts. So lets use 3 nops as a landing pad for all possible rewinds.
|
/arch/arm64/include/asm/ |
D | arch_gicv3.h | 55 nops(8); in gic_read_iar_cavium_thunderx() 57 nops(4); in gic_read_iar_cavium_thunderx()
|
D | barrier.h | 15 #define nops(n) asm volatile(__nops(n)) macro
|
D | alternative-macros.h | 192 nops (662b-661b) / AARCH64_INSN_SIZE
|
D | assembler.h | 133 .macro nops, num
|
/arch/powerpc/kernel/ |
D | entry_64.S | 62 .macro nops number macro 79 nops 6 97 nops 3 102 nops 7
|
/arch/x86/net/ |
D | bpf_jit_comp.c | 927 int nops; in do_jit() local 1594 nops = INSN_SZ_DIFF - 2; in do_jit() 1595 if (nops != 0 && nops != 4) { in do_jit() 1597 nops); in do_jit() 1600 emit_nops(&prog, nops); in do_jit() 1640 nops = INSN_SZ_DIFF; in do_jit() 1641 if (nops != 0 && nops != 2 && nops != 5) { in do_jit() 1643 nops); in do_jit() 1646 emit_nops(&prog, nops); in do_jit() 1665 nops = INSN_SZ_DIFF - 2; in do_jit() [all …]
|