/linux/tools/objtool/ |
A D | orc_gen.c | 21 memset(orc, 0, sizeof(*orc)); in init_orc_entry() 24 orc->end = 0; in init_orc_entry() 29 orc->end = cfi->end; in init_orc_entry() 99 memcpy(orc, o, sizeof(*orc)); in write_orc_entry() 100 orc->sp_offset = bswap_if_needed(orc->sp_offset); in write_orc_entry() 101 orc->bp_offset = bswap_if_needed(orc->bp_offset); in write_orc_entry() 128 entry->orc = *orc; in orc_list_add() 173 if (!memcmp(&prev_orc, &orc, sizeof(orc))) in orc_create() 179 prev_orc = orc; in orc_create() 198 if (!memcmp(&prev_orc, &orc, sizeof(orc))) in orc_create() [all …]
|
A D | orc_dump.c | 68 struct orc_entry *orc = NULL; in orc_dump() local 136 orc = data->d_buf; in orc_dump() 146 if (!symtab || !strtab_idx || !orc || !orc_ip) in orc_dump() 149 if (orc_size % sizeof(*orc) != 0) { in orc_dump() 154 nr_entries = orc_size / sizeof(*orc); in orc_dump() 201 print_reg(orc[i].sp_reg, bswap_if_needed(orc[i].sp_offset)); in orc_dump() 205 print_reg(orc[i].bp_reg, bswap_if_needed(orc[i].bp_offset)); in orc_dump() 208 orc_type_name(orc[i].type), orc[i].end); in orc_dump()
|
A D | Build | 12 objtool-y += builtin-orc.o
|
/linux/arch/x86/kernel/ |
A D | unwind_orc.c | 184 if (orc) in orc_find() 185 return orc; in orc_find() 256 cur_orc_table = orc; in unwind_module_init() 271 struct orc_entry *orc; in unwind_init() local 293 if (!orc) { in unwind_init() 304 if (!orc) { in unwind_init() 421 struct orc_entry *orc; in unwind_next_frame() local 444 if (!orc) { in unwind_next_frame() 451 orc = &orc_fp_entry; in unwind_next_frame() 457 if (!orc->end) in unwind_next_frame() [all …]
|
A D | module.c | 254 *para = NULL, *orc = NULL, *orc_ip = NULL, in module_finalize() local 268 orc = s; in module_finalize() 300 if (orc && orc_ip) in module_finalize() 302 (void *)orc->sh_addr, orc->sh_size); in module_finalize()
|
/linux/tools/testing/selftests/powerpc/stringloops/ |
A D | strlen_32.S | 61 orc r9, r9, r6 72 orc r8, r8, r8 76 orc r9, r9, r8
|
/linux/arch/powerpc/lib/ |
A D | strlen_32.S | 61 orc r9, r9, r6 72 orc r8, r8, r8 76 orc r9, r9, r8
|
/linux/arch/h8300/kernel/ |
A D | entry.S | 93 orc #0x10,ccr /* switch kernel stack */ 134 orc #0xc0,ccr 235 orc #7,exr 279 orc #0xc0,ccr 293 orc #0xc0,ccr 366 orc #0xc0,ccr
|
/linux/arch/x86/include/asm/ |
A D | unwind.h | 98 void *orc, size_t orc_size); 103 void *orc, size_t orc_size) {} in unwind_module_init()
|
/linux/arch/um/include/asm/ |
A D | unwind.h | 6 void *orc, size_t orc_size) {} in unwind_module_init()
|
/linux/Documentation/x86/ |
A D | index.rst | 19 orc-unwinder
|
/linux/arch/s390/include/asm/ |
A D | unwind.h | 80 size_t orc_ip_size, void *orc, in unwind_module_init()
|
A D | pgtable.h | 1179 int pgste_perform_essa(struct mm_struct *mm, unsigned long hva, int orc,
|
/linux/arch/s390/kvm/ |
A D | priv.c | 1131 static inline int __do_essa(struct kvm_vcpu *vcpu, const int orc) in __do_essa() argument 1150 nappended = pgste_perform_essa(vcpu->kvm->mm, hva, orc, &ptev, &pgstev); in __do_essa() 1152 res = orc ? 0x10 : 0; in __do_essa() 1182 if (orc) { in __do_essa() 1199 int i, orc; in handle_essa() local 1210 orc = (vcpu->arch.sie_block->ipb & 0xf0000000) >> 28; in handle_essa() 1212 if (orc > (test_kvm_facility(vcpu->kvm, 147) ? ESSA_SET_STABLE_NODAT in handle_essa() 1248 i = __do_essa(vcpu, orc); in handle_essa()
|
/linux/arch/powerpc/crypto/ |
A D | md5-asm.S | 128 orc rT0,b,d; /* 1: f = b or ~d */ \ 137 orc rT0,a,c; /* 2: f = b or ~d */ \
|
/linux/arch/s390/mm/ |
A D | pgtable.c | 1020 int pgste_perform_essa(struct mm_struct *mm, unsigned long hva, int orc, in pgste_perform_essa() argument 1030 WARN_ON_ONCE(orc > ESSA_MAX); in pgste_perform_essa() 1031 if (unlikely(orc > ESSA_MAX)) in pgste_perform_essa() 1047 switch (orc) { in pgste_perform_essa()
|
/linux/tools/objtool/Documentation/ |
A D | stack-validation.txt | 23 (Objtool also has an 'orc generate' subcommand which generates debuginfo 24 for the ORC unwinder. See Documentation/x86/orc-unwinder.rst in the 104 For more details, see Documentation/x86/orc-unwinder.rst.
|
/linux/scripts/ |
A D | Makefile.build | 231 $(if $(CONFIG_UNWINDER_ORC),orc generate,check) \
|
/linux/Documentation/ |
A D | asm-annotations.rst | 46 automatically generate annotations for :doc:`ORC unwinder <x86/orc-unwinder>`
|
/linux/tools/perf/Documentation/ |
A D | perf-record.txt | 253 CONFIG_UNWINDER_FRAME_POINTER (fp) or CONFIG_UNWINDER_ORC (orc)
|
/linux/ |
A D | CREDITS | 2892 E: orc@pell.chi.il.us
|