Home
last modified time | relevance | path

Searched refs:esr (Results 1 – 25 of 47) sorted by relevance

12

/freebsd/sys/arm64/arm64/
H A Dtrap.c361 if ((esr & ISS_DATA_WnR) == 0 || (esr & ISS_DATA_CM) != 0) in data_abort()
373 ESR_ELx_EXCEPTION(esr)); in data_abort()
478 uint64_t esr, far; in do_el1h_sync() local
486 esr = frame->tf_esr; in do_el1h_sync()
587 esr); in do_el1h_sync()
596 uint64_t esr, far; in do_el0_sync() local
608 esr = frame->tf_esr; in do_el0_sync()
750 uint64_t esr, far; in do_serror() local
756 esr = frame->tf_esr; in do_serror()
767 uint64_t esr, far; in unhandled_exception() local
[all …]
H A Dundefined.c97 uint32_t esr) in id_aa64mmfr2_handler() argument
177 uint32_t esr) in gdb_trapper() argument
199 uint32_t esr) in swp_emulate() argument
/freebsd/lib/libvmmapi/aarch64/
H A Dvmmapi_machdep.c118 vm_inject_exception(struct vcpu *vcpu, uint64_t esr, uint64_t far) in vm_inject_exception() argument
123 vmexc.esr = esr; in vm_inject_exception()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DAppleArm64ExceptionClass.h22 inline AppleArm64ExceptionClass getAppleArm64ExceptionClass(uint32_t esr) { in getAppleArm64ExceptionClass() argument
35 return static_cast<AppleArm64ExceptionClass>(esr >> 26); in getAppleArm64ExceptionClass()
/freebsd/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c648 { size_t const errorCode = ZSTD_compressBegin_usingCDict(esr.zc, esr.dict); in ZDICT_countEStats()
652 cSize = ZSTD_compressBlock(esr.zc, esr.workPlace, ZSTD_BLOCKSIZE_MAX, src, srcSize); in ZDICT_countEStats()
656 const seqStore_t* const seqStorePtr = ZSTD_getSeqStore(esr.zc); in ZDICT_countEStats()
749 EStats_ress_t esr = { NULL, NULL, NULL }; in ZDICT_analyzeEntropy() local
772 esr.zc = ZSTD_createCCtx(); in ZDICT_analyzeEntropy()
773 esr.workPlace = malloc(ZSTD_BLOCKSIZE_MAX); in ZDICT_analyzeEntropy()
774 if (!esr.dict || !esr.zc || !esr.workPlace) { in ZDICT_analyzeEntropy()
782 ZDICT_countEStats(esr, &params, in ZDICT_analyzeEntropy()
910 ZSTD_freeCDict(esr.dict); in ZDICT_analyzeEntropy()
911 ZSTD_freeCCtx(esr.zc); in ZDICT_analyzeEntropy()
[all …]
/freebsd/sys/arm64/linux/
H A Dlinux_sysvec.c303 struct l_esr_context *esr; in linux_rt_sendsig() local
387 esr = (struct l_esr_context *) scr; in linux_rt_sendsig()
388 esr->head.magic = L_ESR_MAGIC; in linux_rt_sendsig()
389 esr->head.size = sizeof(struct l_esr_context); in linux_rt_sendsig()
390 esr->esr = tf->tf_esr; in linux_rt_sendsig()
H A Dlinux_sigframe.h48 uint64_t esr; member
/freebsd/sys/arm64/vmm/
H A Dvmm_arm64.c654 uint64_t esr; in raise_data_insn_abort() local
657 esr = EXCP_INSN_ABORT_L << ESR_ELx_EC_SHIFT; in raise_data_insn_abort()
659 esr = EXCP_INSN_ABORT << ESR_ELx_EC_SHIFT; in raise_data_insn_abort()
662 esr |= EXCP_DATA_ABORT_L << ESR_ELx_EC_SHIFT; in raise_data_insn_abort()
664 esr |= hypctx->tf.tf_esr & ESR_ELx_IL; in raise_data_insn_abort()
666 vmmops_exception(hypctx, esr | fsc, far); in raise_data_insn_abort()
740 vme_ret->u.paging.esr = hypctx->tf.tf_esr; in handle_el1_sync_excp()
1303 vmmops_exception(void *vcpui, uint64_t esr, uint64_t far) in vmmops_exception() argument
1314 hypctx->esr_el1 = esr; in vmmops_exception()
H A Dvmm.c1606 vm_inject_exception(struct vcpu *vcpu, uint64_t esr, uint64_t far) in vm_inject_exception() argument
1608 return (vmmops_exception(vcpu->cookie, esr, far)); in vm_inject_exception()
1688 uint64_t addr, esr; in vm_handle_paging() local
1696 esr = vme->u.paging.esr; in vm_handle_paging()
1699 if (pmap_fault(pmap, esr, addr) == KERN_SUCCESS) in vm_handle_paging()
1702 switch (ESR_ELx_EXCEPTION(esr)) { in vm_handle_paging()
1708 panic("%s: Invalid exception (esr = %lx)", __func__, esr); in vm_handle_paging()
H A Darm64.h146 DEFINE_VMMOPS_IFUNC(int, exception, (void *vcpui, uint64_t esr, uint64_t far))
/freebsd/sys/powerpc/powerpc/
H A Dtrap.c196 return ((frame->cpu.booke.esr & ESR_PTR) != 0); in frame_is_trap_inst()
565 (int)frame->cpu.booke.esr, ESR_BITMASK); in cpu_printtrap()
781 if (frame->cpu.booke.esr & ESR_ST) in trap_pfault()
862 indicator = (frame->cpu.booke.esr & (ESR_ST|ESR_SPE)); in fix_unaligned()
897 indicator = (frame->cpu.booke.esr & ESR_ST) ? EXC_ALI_STFD : EXC_ALI_LFD; in fix_unaligned()
H A Ddb_trace.c105 { "esr", DB_OFFSET(cpu.booke.esr), db_frame },
218 (tf->cpu.booke.esr & ESR_ST) ? "write" in db_backtrace()
/freebsd/sys/powerpc/include/
H A Dframe.h67 register_t esr; member
/freebsd/sys/arm64/include/
H A Dvmm.h187 int vm_inject_exception(struct vcpu *vcpu, uint64_t esr, uint64_t far);
342 uint64_t esr; member
H A Dvmm_dev.h79 uint64_t esr; member
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp733 uint32_t esr = in CreateStopReasonWithMachException() local
735 if (esr != UINT32_MAX) { in CreateStopReasonWithMachException()
736 s.Printf(" esr value: 0x%" PRIx32, esr); in CreateStopReasonWithMachException()
H A DRegisterInfoPOSIX_arm64.h73 uint32_t esr; // Exception syndrome member
H A DRegisterContextDarwin_arm64.h89 uint32_t esr; // Exception syndrome member
H A DRegisterContextDarwin_arm64.cpp522 value.SetUInt32(exc.esr); in ReadRegister()
632 exc.esr = value.GetAsUInt32(); in WriteRegister()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cpp1871 uint64_t esr; member
1874 static bool Aarch64GetESR(ucontext_t *ucontext, u64 *esr) { in Aarch64GetESR() argument
1882 *esr = ((__sanitizer_esr_context *)ctx)->esr; in Aarch64GetESR()
1891 static bool Aarch64GetESR(ucontext_t *ucontext, u64 *esr) { return false; } in Aarch64GetESR() argument
1966 u64 esr; in GetWriteFlag() local
1967 if (!Aarch64GetESR(ucontext, &esr)) in GetWriteFlag()
1969 return esr & ESR_ELx_WNR ? Write : Read; in GetWriteFlag()
/freebsd/contrib/ncurses/include/
H A Dunctrl.h.in32 * and: Eric S. Raymond <esr@snark.thyrsus.com> *
H A Dtermcap.h.in32 * and: Eric S. Raymond <esr@snark.thyrsus.com> *
/freebsd/contrib/ncurses/misc/
H A Demx.src190 # From: Eric S. Raymond <esr@snark.thyrsus.com> Nov 7 1995
422 # as these seem not to work -- esr)
480 # From: Eric S. Raymond <esr@snark.thyrsus.com> 14 Dec 1995
587 # (kterm: this had extension capabilities ":KJ:TY=ascii:" -- esr)
608 # From: Eric S. Raymond <esr@snark.thyrsus.com> March 4 1996
H A Dterminfo.src2870 # a missing <sc> -- esr)
6570 # chars look like --esr)
8274 # <flash> from BRL -- esr)
10950 # old ones skip -- esr)
11316 # ko implies -- esr)
17229 # in :is: -- esr)
19625 # work any more. -- esr)
21325 # ":do=^J:" -- esr)
23374 # esr's notes:
23770 # file -- esr)
[all …]
/freebsd/sys/x86/include/
H A Dapicreg.h166 u_int32_t esr; PAD3; member

12