/openbmc/linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-n2-v2/ |
H A D | exception.json | 4 …s any taken architecturally visible exceptions such as IRQ, FIQ, SError, and other synchronous exc… 12 …"PublicDescription": "Counts the number of synchronous exceptions which are taken locally that are… 16 "PublicDescription": "Counts SVC exceptions taken locally." 20 …"PublicDescription": "Counts synchronous exceptions that are taken locally and caused by Instructi… 24 …ption": "Counts exceptions that are taken locally and are caused by data aborts or SErrors. Condit… 28 … "PublicDescription": "Counts IRQ exceptions including the virtual IRQs that are taken locally." 32 … "PublicDescription": "Counts FIQ exceptions including the virtual FIQs that are taken locally." 36 "PublicDescription": "Counts SMC exceptions take to EL3." 40 "PublicDescription": "Counts HVC exceptions taken to EL2." 44 …"PublicDescription": "Counts exceptions which are traps not taken locally and are caused by Instru… [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-n1/ |
H A D | exception.json | 4 …s any taken architecturally visible exceptions such as IRQ, FIQ, SError, and other synchronous exc… 12 …"PublicDescription": "Counts the number of synchronous exceptions which are taken locally that are… 16 "PublicDescription": "Counts SVC exceptions taken locally." 20 …"PublicDescription": "Counts synchronous exceptions that are taken locally and caused by Instructi… 24 …ption": "Counts exceptions that are taken locally and are caused by data aborts or SErrors. Condit… 28 … "PublicDescription": "Counts IRQ exceptions including the virtual IRQs that are taken locally." 32 … "PublicDescription": "Counts FIQ exceptions including the virtual FIQs that are taken locally." 36 "PublicDescription": "Counts SMC exceptions take to EL3." 40 "PublicDescription": "Counts HVC exceptions taken to EL2." 44 …"PublicDescription": "Counts exceptions which are traps not taken locally and are caused by Instru… [all …]
|
/openbmc/phosphor-power/phosphor-regulators/src/ |
H A D | exception_utils.hpp | 27 * Contains utility functions for handling exceptions. 34 * exceptions. 36 * If the exception contains nested inner exceptions, the returned vector will 39 * This function makes it easier to handle nested exceptions. You can iterate 43 * @return vector of exceptions, from innermost to outermost 49 * exceptions. 51 * If the exception contains nested inner exceptions, the messages in the 56 * @return error messages from exceptions 68 * exceptions. 70 * Stores the exceptions in the specified vector, from innermost exception to [all …]
|
H A D | exception_utils.cpp | 24 std::vector<std::exception_ptr> exceptions; in getExceptions() local 25 internal::getExceptions(eptr, exceptions); in getExceptions() 26 return exceptions; in getExceptions() 40 std::vector<std::exception_ptr>& exceptions) in getExceptions() argument 52 getExceptions(e.nested_ptr(), exceptions); in getExceptions() 58 exceptions.emplace_back(eptr); in getExceptions()
|
H A D | error_logging_utils.hpp | 34 * exceptions. 45 * inner exceptions. 48 * nested inner exceptions. 75 * Inspects the specified exception and any nested inner exceptions. Returns
|
H A D | error_logging_utils.cpp | 50 // Get exception to log from specified exception and any nested exceptions in logError() 136 // Get vector containing this exception and any nested exceptions in getExceptionToLog() 137 std::vector<std::exception_ptr> exceptions = in getExceptionToLog() local 143 // Loop through the exceptions from innermost to outermost. Find the in getExceptionToLog() 147 for (std::exception_ptr curptr : exceptions) in getExceptionToLog()
|
/openbmc/phosphor-power/phosphor-regulators/test/ |
H A D | exception_utils_tests.cpp | 34 std::vector<std::exception_ptr> exceptions = in TEST() local 36 EXPECT_EQ(exceptions.size(), 0); in TEST() 60 // Get vector containing exceptions in TEST() 61 std::vector<std::exception_ptr> exceptions = in TEST() local 63 EXPECT_EQ(exceptions.size(), 2); in TEST() 68 std::rethrow_exception(exceptions[0]); in TEST() 83 std::rethrow_exception(exceptions[1]); in TEST() 125 std::vector<std::exception_ptr> exceptions; in TEST() local 126 exception_utils::internal::getExceptions(eptr, exceptions); in TEST() 127 EXPECT_EQ(exceptions.size(), 0); in TEST() [all …]
|
/openbmc/linux/arch/arm/vfp/ |
H A D | vfpdouble.c | 70 u32 vfp_double_normaliseround(int dd, struct vfp_double *vd, u32 fpscr, u32 exceptions, const char … in vfp_double_normaliseround() argument 81 if (vd->exponent == 2047 && (vd->significand == 0 || exceptions)) in vfp_double_normaliseround() 161 exceptions |= FPSCR_IXC; in vfp_double_normaliseround() 172 exceptions |= FPSCR_OFC | FPSCR_IXC; in vfp_double_normaliseround() 186 exceptions |= FPSCR_UFC; in vfp_double_normaliseround() 195 pr_debug("VFP: %s: d(d%d)=%016llx exceptions=%08x\n", func, in vfp_double_normaliseround() 196 dd, d, exceptions); in vfp_double_normaliseround() 199 return exceptions; in vfp_double_normaliseround() 203 * Propagate the NaN, setting exceptions if it is signalling. 444 u32 exceptions = 0; in vfp_double_fcvts() local [all …]
|
H A D | vfpsingle.c | 70 u32 __vfp_single_normaliseround(int sd, struct vfp_single *vs, u32 fpscr, u32 exceptions) in __vfp_single_normaliseround() argument 72 u32 vfp_single_normaliseround(int sd, struct vfp_single *vs, u32 fpscr, u32 exceptions, const char … in __vfp_single_normaliseround() 83 if (vs->exponent == 255 && (vs->significand == 0 || exceptions)) in __vfp_single_normaliseround() 166 exceptions |= FPSCR_IXC; in __vfp_single_normaliseround() 177 exceptions |= FPSCR_OFC | FPSCR_IXC; in __vfp_single_normaliseround() 191 exceptions |= FPSCR_UFC; in __vfp_single_normaliseround() 201 pr_debug("VFP: %s: d(s%d)=%08x exceptions=%08x\n", func, in __vfp_single_normaliseround() 202 sd, d, exceptions); in __vfp_single_normaliseround() 207 return exceptions; in __vfp_single_normaliseround() 211 * Propagate the NaN, setting exceptions if it is signalling. [all …]
|
H A D | vfpmodule.c | 243 static void vfp_raise_exceptions(u32 exceptions, u32 inst, u32 fpscr, struct pt_regs *regs) in vfp_raise_exceptions() argument 247 pr_debug("VFP: raising exceptions %08x\n", exceptions); in vfp_raise_exceptions() 249 if (exceptions == VFP_EXCEPTION_ERROR) { in vfp_raise_exceptions() 260 if (exceptions & (FPSCR_N|FPSCR_Z|FPSCR_C|FPSCR_V)) in vfp_raise_exceptions() 263 fpscr |= exceptions; in vfp_raise_exceptions() 268 if (exceptions & stat && fpscr & en) \ in vfp_raise_exceptions() 289 u32 exceptions = VFP_EXCEPTION_ERROR; in vfp_emulate_instruction() local 299 exceptions = vfp_single_cpdo(inst, fpscr); in vfp_emulate_instruction() 301 exceptions = vfp_double_cpdo(inst, fpscr); in vfp_emulate_instruction() 318 return exceptions & ~VFP_NAN_FLAG; in vfp_emulate_instruction() [all …]
|
/openbmc/linux/Documentation/userspace-api/media/ |
H A D | Makefile | 16 echo ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions; \ 17 ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions 20 ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions 24 $(BUILDDIR)/ca.h.rst: ${UAPI}/dvb/ca.h ${PARSER} $(SRC_DIR)/ca.h.rst.exceptions 27 $(BUILDDIR)/dmx.h.rst: ${UAPI}/dvb/dmx.h ${PARSER} $(SRC_DIR)/dmx.h.rst.exceptions 30 $(BUILDDIR)/frontend.h.rst: ${UAPI}/dvb/frontend.h ${PARSER} $(SRC_DIR)/frontend.h.rst.exceptions 33 $(BUILDDIR)/net.h.rst: ${UAPI}/dvb/net.h ${PARSER} $(SRC_DIR)/net.h.rst.exceptions 36 $(BUILDDIR)/videodev2.h.rst: ${UAPI}/videodev2.h ${PARSER} $(SRC_DIR)/videodev2.h.rst.exceptions 39 $(BUILDDIR)/media.h.rst: ${UAPI}/media.h ${PARSER} $(SRC_DIR)/media.h.rst.exceptions 42 $(BUILDDIR)/cec.h.rst: ${UAPI}/cec.h ${PARSER} $(SRC_DIR)/cec.h.rst.exceptions [all …]
|
/openbmc/linux/security/ |
H A D | device_cgroup.c | 45 struct list_head exceptions; member 110 list_for_each_entry(walk, &dev_cgroup->exceptions, list) { in dev_exception_add() 124 list_add_tail_rcu(&excopy->list, &dev_cgroup->exceptions); in dev_exception_add() 138 list_for_each_entry_safe(walk, tmp, &dev_cgroup->exceptions, list) { in dev_exception_rm() 158 list_for_each_entry_safe(ex, tmp, &dev_cgroup->exceptions, list) { in __dev_exception_clean() 183 * devcgroup_online - initializes devcgroup's behavior and exceptions based on 199 ret = dev_exceptions_copy(&dev_cgroup->exceptions, in devcgroup_online() 200 &parent_dev_cgroup->exceptions); in devcgroup_online() 229 INIT_LIST_HEAD(&dev_cgroup->exceptions); in devcgroup_css_alloc() 291 * - List the exceptions in case the default policy is to deny in devcgroup_seq_show() [all …]
|
/openbmc/qemu/include/hw/intc/ |
H A D | armv7m_nvic.h | 21 /* Highest permitted number of exceptions (architectural limit) */ 23 /* Number of internal exceptions */ 34 uint8_t level; /* exceptions <=15 never set level */ 46 * exceptions are banked between security states (ie there exists both 49 * The rest (including all the external exceptions) are not banked, though 52 * exceptions, and otherwise use only vectors[] (including for exceptions 91 * @secure: false for non-banked exceptions or for the nonsecure 97 * of architecturally banked exceptions. 104 * @secure: false for non-banked exceptions or for the nonsecure 109 * exceptions (exceptions generated in the course of trying to take [all …]
|
/openbmc/linux/tools/testing/selftests/net/ |
H A D | pmtu.sh | 19 # Check that PMTU exceptions with the correct PMTU are created. Then 22 # this path. Also check that locked exceptions are created when an ICMP 33 # verify that ECN doesn't interfere with the creation of PMTU exceptions. 78 # tunnel, and that PMTU exceptions with the correct values are created. 98 # that PMTU exceptions with the correct values are created. 178 # exceptions on multiple CPUs and check that the veth device tear-down 185 # Using the same topology as in pmtu_ipv4, create exceptions, and check 189 # Using the same topology as in pmtu_ipv6, create exceptions, and check 195 # proper cleanup of the PMTU exceptions by the route replacement path. 213 pmtu_ipv4_exception ipv4: PMTU exceptions 1 [all …]
|
/openbmc/openbmc-tools/openbmctool/ |
H A D | openbmctool.py | 122 except(requests.exceptions.Timeout): 125 except(requests.exceptions.ConnectionError) as err: 406 except(requests.exceptions.Timeout): 409 except(requests.exceptions.ConnectionError) as err: 454 # urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) 456 # requests.packages.urllib3.disable_warnings(requests.packages.urllib3.exceptions.Insec… 460 except(requests.exceptions.Timeout): 462 except(requests.exceptions.ConnectionError) as err: 478 except(requests.exceptions.Timeout): 507 except(requests.exceptions.Timeout): [all …]
|
/openbmc/linux/Documentation/core-api/ |
H A D | entry.rst | 1 Entry/exit handling for exceptions, interrupts, syscalls and KVM 16 exceptions`_, `NMI and NMI-like exceptions`_. 128 Interrupts and regular exceptions 197 NMI and NMI-like exceptions 200 NMIs and NMI-like exceptions (machine checks, double faults, debug 204 State changes for debug exceptions and machine-check exceptions depend on 205 whether these exceptions happened in user-space (breakpoints or watchpoints) or 209 NMIs and other NMI-like exceptions handle state transitions without
|
/openbmc/u-boot/Documentation/media/ |
H A D | Makefile | 12 echo ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions; \ 13 ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions 16 ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions 20 …LDDIR)/linker_lists.h.rst: ${API}/linker_lists.h ${PARSER} $(SRC_DIR)/linker_lists.h.rst.exceptions
|
/openbmc/linux/arch/powerpc/include/asm/ |
H A D | kvm_booke_hv_asm.h | 14 * All exceptions from guest state must go through KVM 16 * there are no exceptions for which we fall through directly to 20 * Expected inputs (normal exceptions): 28 * Expected inputs (crit/mcheck/debug exceptions):
|
/openbmc/linux/arch/arm64/include/asm/ |
H A D | irqflags.h | 15 * FIQ exceptions, in the 'daif' register. We mask and unmask them in 'daif' 17 * Masking debug exceptions causes all other exceptions to be masked too/ 18 * Masking SError masks IRQ/FIQ, but not debug exceptions. IRQ and FIQ are 21 * exceptions should be unmasked.
|
/openbmc/openpower-vpd-parser/ |
H A D | vpd_exceptions.hpp | 9 namespace exceptions namespace 52 * @brief This class extends Exceptions class and define 75 * @brief This class extends Exceptions class and define 132 * @brief This class extends Exceptions class and define 153 } // namespace exceptions
|
/openbmc/openbmc/poky/bitbake/lib/bb/asyncrpc/ |
H A D | connection.py | 11 from .exceptions import ClientError, ConnectionClosedError 122 import websockets.exceptions 126 except websockets.exceptions.ConnectionClosed: 130 import websockets.exceptions 140 except websockets.exceptions.ConnectionClosed:
|
/openbmc/qemu/qapi/ |
H A D | pragma.json | 10 'command-name-exceptions': [ 28 'command-returns-exceptions': [ 35 'documentation-exceptions': [ 81 'member-name-exceptions': [ # visible in:
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/amdzen1/ |
H A D | core.json | 11 …r of uOps retired. This includes all processor activity (instructions, exceptions, interrupts, mic… 17 …his includes all types of architectural control flow changes, including exceptions and interrupts." 23 …es those for which prediction is not attempted (far control transfers, exceptions and interrupts)." 29 …his includes all types of architectural control flow changes, including exceptions and interrupts." 41 …retired including far call/jump/return, IRET, SYSCALL and SYSRET, plus exceptions and interrupts. …
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/poppler/poppler/ |
H A D | 0001-Do-not-overwrite-all-our-build-flags.patch | 24 - set(CMAKE_CXX_FLAGS "-fno-exceptions -fno-check-new -fno-common -fno-operator-nam… 25 + set(CMAKE_CXX_FLAGS "-fno-exceptions -fno-check-new -fno-common -fno-operator-nam… 40 - set(CMAKE_CXX_FLAGS "-fno-exceptions -fno-check-new -fno-common -D_DEFAULT_SOURCE… 41 + set(CMAKE_CXX_FLAGS "-fno-exceptions -fno-check-new -fno-common -D_DEFAULT_SOURCE…
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/amdzen2/ |
H A D | core.json | 11 …ops retired. This count includes all processor activity (instructions, exceptions, interrupts, mic… 17 …his includes all types of architectural control flow changes, including exceptions and interrupts." 23 …es those for which prediction is not attempted (far control transfers, exceptions and interrupts)." 29 …his includes all types of architectural control flow changes, including exceptions and interrupts." 41 …retired including far call/jump/return, IRET, SYSCALL and SYSRET, plus exceptions and interrupts. …
|