| /OK3568_Linux_fs/kernel/arch/x86/kernel/ |
| H A D | ftrace.c | 326 void *trampoline; in create_trampoline() local 355 trampoline = alloc_tramp(size + RET_SIZE + sizeof(void *)); in create_trampoline() 356 if (!trampoline) in create_trampoline() 363 ret = copy_from_kernel_nofault(trampoline, (void *)start_offset, size); in create_trampoline() 367 ip = trampoline + size; in create_trampoline() 378 ip = trampoline + (jmp_offset - start_offset); in create_trampoline() 394 ptr = (unsigned long *)(trampoline + size + RET_SIZE); in create_trampoline() 398 memcpy(&op_ptr, trampoline + op_offset, OP_REF_SIZE); in create_trampoline() 406 offset -= (unsigned long)trampoline + op_offset + OP_REF_SIZE; in create_trampoline() 411 memcpy(trampoline + op_offset, &op_ptr, OP_REF_SIZE); in create_trampoline() [all …]
|
| H A D | unwind_orc.c | 109 offset = ip - ops->trampoline; in orc_ftrace_find()
|
| /OK3568_Linux_fs/buildroot/package/mkpimage/ |
| H A D | mkpimage.c | 198 uint8_t *trampoline = (void*)(header + 1); in add_socfpga_header() local 199 branch(trampoline, entry); in add_socfpga_header() 202 entry = trampoline; in add_socfpga_header()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gem/ |
| H A D | i915_gem_execbuffer.c | 249 struct i915_vma *trampoline; /** trampoline used for chaining */ member 2289 struct i915_vma *shadow, *trampoline, *batch; in eb_parse() local 2337 trampoline = NULL; in eb_parse() 2339 trampoline = shadow; in eb_parse() 2346 shadow = trampoline; in eb_parse() 2364 shadow, trampoline); in eb_parse() 2372 eb->trampoline = trampoline; in eb_parse() 2387 if (trampoline) in eb_parse() 2388 i915_vma_unpin(trampoline); in eb_parse() 2429 if (eb->trampoline) { in eb_submit() [all …]
|
| /OK3568_Linux_fs/kernel/kernel/trace/ |
| H A D | ftrace.c | 1067 if (op->trampoline && op->trampoline_size) in ftrace_ops_trampoline() 1068 if (addr >= op->trampoline && in ftrace_ops_trampoline() 1069 addr < op->trampoline + op->trampoline_size) { in ftrace_ops_trampoline() 1732 if (ftrace_rec_count(rec) == 1 && ops->trampoline) in __ftrace_hash_rec_update() 2062 (void *)ops->trampoline, in ftrace_bug() 2246 if (!op->trampoline) in ftrace_find_tramp_ops_any() 2264 if (op == op_exclude || !op->trampoline) in ftrace_find_tramp_ops_any_other() 2282 if (!op->trampoline) in ftrace_find_tramp_ops_next() 2329 if (!op->trampoline) in ftrace_find_tramp_ops_curr() 2422 .trampoline = FTRACE_REGS_ADDR, [all …]
|
| H A D | fgraph.c | 342 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
|
| /OK3568_Linux_fs/kernel/arch/powerpc/include/asm/ |
| H A D | module.h | 76 int module_trampoline_target(struct module *mod, unsigned long trampoline,
|
| /OK3568_Linux_fs/u-boot/arch/arm/dts/ |
| H A D | socfpga_arria5.dtsi | 8 /* First 4KB has trampoline code for secondary cores. */
|
| H A D | socfpga_cyclone5.dtsi | 8 /* First 4KB has trampoline code for secondary cores. */
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | socfpga_cyclone5.dtsi | 7 /* First 4KB has trampoline code for secondary cores. */
|
| H A D | socfpga_arria5.dtsi | 7 /* First 4KB has trampoline code for secondary cores. */
|
| /OK3568_Linux_fs/kernel/arch/hexagon/kernel/ |
| H A D | Makefile | 7 obj-y += process.o trampoline.o reset.o ptrace.o vdso.o
|
| /OK3568_Linux_fs/kernel/Documentation/powerpc/ |
| H A D | booting.rst | 53 trampoline located in arch/powerpc/kernel/prom_init.c to 57 the second method. This trampoline code runs in the 62 point is called by a) after the OF trampoline and can also be
|
| /OK3568_Linux_fs/kernel/kernel/bpf/ |
| H A D | Makefile | 14 obj-$(CONFIG_BPF_JIT) += trampoline.o
|
| /OK3568_Linux_fs/kernel/arch/s390/kernel/ |
| H A D | kprobes.c | 536 static struct kprobe trampoline = { variable 543 return register_kprobe(&trampoline); in arch_init_kprobes()
|
| H A D | uprobes.c | 143 unsigned long arch_uretprobe_hijack_return_addr(unsigned long trampoline, in arch_uretprobe_hijack_return_addr() argument 149 regs->gprs[14] = trampoline; in arch_uretprobe_hijack_return_addr()
|
| /OK3568_Linux_fs/kernel/Documentation/trace/ |
| H A D | kprobes.rst | 113 the return address with the address of a "trampoline." The trampoline 115 At boot time, Kprobes registers a kprobe at the trampoline. 118 passes to the trampoline and that probe is hit. Kprobes' trampoline 217 - a call to the trampoline code which calls user's probe handlers. 598 address with the trampoline's address, stack backtraces and calls 599 to __builtin_return_address() will typically yield the trampoline's
|
| /OK3568_Linux_fs/kernel/Documentation/x86/ |
| H A D | pti.rst | 84 b. A "trampoline" must be used for SYSCALL entry. This 85 trampoline depends on a smaller set of resources than the 170 in the trampoline code or mappings cause these.
|
| /OK3568_Linux_fs/kernel/arch/x86/realmode/rm/ |
| H A D | trampoline_64.S | 141 # Setup trampoline 4 level pagetables
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/arm64/signal/ |
| H A D | README | 34 they are just fired using some simple included assembly trampoline code.
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/ |
| H A D | i915_cmd_parser.c | 1428 bool trampoline) in intel_engine_cmd_parser() argument 1451 if (!trampoline) in intel_engine_cmd_parser() 1515 if (trampoline) { in intel_engine_cmd_parser()
|
| /OK3568_Linux_fs/kernel/Documentation/bpf/ |
| H A D | drgn.rst | 143 .trampoline = (struct bpf_trampoline *)0x0,
|
| /OK3568_Linux_fs/kernel/arch/sh/mm/ |
| H A D | Kconfig | 103 From the kernel side this is used for the signal trampoline.
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | ftrace.h | 210 unsigned long trampoline; member
|
| /OK3568_Linux_fs/kernel/arch/arm64/kernel/ |
| H A D | vmlinux.lds | 149 "Entry trampoline text too big")
|