/Linux-v5.15/tools/objtool/ |
D | orc_gen.c | 16 static int init_orc_entry(struct orc_entry *orc, struct cfi_state *cfi) in init_orc_entry() argument 21 memset(orc, 0, sizeof(*orc)); in init_orc_entry() 23 orc->end = cfi->end; in init_orc_entry() 26 orc->sp_reg = ORC_REG_UNDEFINED; in init_orc_entry() 32 orc->sp_reg = ORC_REG_SP; in init_orc_entry() 35 orc->sp_reg = ORC_REG_SP_INDIRECT; in init_orc_entry() 38 orc->sp_reg = ORC_REG_BP; in init_orc_entry() 41 orc->sp_reg = ORC_REG_BP_INDIRECT; in init_orc_entry() 44 orc->sp_reg = ORC_REG_R10; in init_orc_entry() 47 orc->sp_reg = ORC_REG_R13; in init_orc_entry() [all …]
|
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()
|
D | Build | 12 objtool-y += builtin-orc.o
|
/Linux-v5.15/arch/x86/kernel/ |
D | unwind_orc.c | 146 static struct orc_entry *orc; in orc_find() local 183 orc = orc_module_find(ip); in orc_find() 184 if (orc) in orc_find() 185 return orc; in orc_find() 242 struct orc_entry *orc = _orc; in unwind_module_init() local 246 orc_size % sizeof(*orc) != 0 || in unwind_module_init() 247 num_entries != orc_size / sizeof(*orc)); in unwind_module_init() 256 cur_orc_table = orc; in unwind_module_init() 261 mod->arch.orc_unwind = orc; in unwind_module_init() 271 struct orc_entry *orc; in unwind_init() local [all …]
|
D | module.c | 254 *para = NULL, *orc = NULL, *orc_ip = NULL; in module_finalize() local 267 orc = s; in module_finalize() 293 if (orc && orc_ip) in module_finalize() 295 (void *)orc->sh_addr, orc->sh_size); in module_finalize()
|
/Linux-v5.15/arch/powerpc/lib/ |
D | strlen_32.S | 61 orc r9, r9, r6 72 orc r8, r8, r8 76 orc r9, r9, r8
|
/Linux-v5.15/tools/testing/selftests/powerpc/stringloops/ |
D | strlen_32.S | 61 orc r9, r9, r6 72 orc r8, r8, r8 76 orc r9, r9, r8
|
/Linux-v5.15/arch/h8300/kernel/ |
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-v5.15/arch/x86/include/asm/ |
D | unwind.h | 94 void *orc, size_t orc_size); 99 void *orc, size_t orc_size) {} in unwind_module_init()
|
/Linux-v5.15/arch/um/include/asm/ |
D | unwind.h | 6 void *orc, size_t orc_size) {} in unwind_module_init()
|
/Linux-v5.15/Documentation/x86/ |
D | index.rst | 19 orc-unwinder
|
/Linux-v5.15/arch/s390/include/asm/ |
D | unwind.h | 80 size_t orc_ip_size, void *orc, in unwind_module_init()
|
D | pgtable.h | 1176 int pgste_perform_essa(struct mm_struct *mm, unsigned long hva, int orc,
|
/Linux-v5.15/arch/s390/kvm/ |
D | priv.c | 1129 static inline int __do_essa(struct kvm_vcpu *vcpu, const int orc) in __do_essa() argument 1148 nappended = pgste_perform_essa(vcpu->kvm->mm, hva, orc, &ptev, &pgstev); in __do_essa() 1150 res = orc ? 0x10 : 0; in __do_essa() 1180 if (orc) { in __do_essa() 1197 int i, orc; in handle_essa() local 1208 orc = (vcpu->arch.sie_block->ipb & 0xf0000000) >> 28; in handle_essa() 1210 if (orc > (test_kvm_facility(vcpu->kvm, 147) ? ESSA_SET_STABLE_NODAT in handle_essa() 1246 i = __do_essa(vcpu, orc); in handle_essa()
|
/Linux-v5.15/arch/powerpc/crypto/ |
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-v5.15/arch/s390/mm/ |
D | pgtable.c | 988 int pgste_perform_essa(struct mm_struct *mm, unsigned long hva, int orc, in pgste_perform_essa() argument 997 WARN_ON_ONCE(orc > ESSA_MAX); in pgste_perform_essa() 998 if (unlikely(orc > ESSA_MAX)) in pgste_perform_essa() 1010 switch (orc) { in pgste_perform_essa()
|
/Linux-v5.15/tools/objtool/Documentation/ |
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-v5.15/scripts/ |
D | Makefile.lib | 238 $(if $(CONFIG_UNWINDER_ORC),orc generate,check) \
|
/Linux-v5.15/Documentation/ |
D | asm-annotations.rst | 46 automatically generate annotations for :doc:`ORC unwinder <x86/orc-unwinder>`
|
/Linux-v5.15/tools/perf/Documentation/ |
D | perf-record.txt | 253 CONFIG_UNWINDER_FRAME_POINTER (fp) or CONFIG_UNWINDER_ORC (orc)
|
/Linux-v5.15/ |
D | CREDITS | 2892 E: orc@pell.chi.il.us
|