Searched refs:exception_flags (Results 1 - 4 of 4) sorted by relevance

/fuchsia/zircon/kernel/arch/arm64/
H A Dexceptions_c.cpp98 static void arm64_unknown_handler(struct arm64_iframe_long* iframe, uint exception_flags, argument
101 if (unlikely((exception_flags & ARM64_EXCEPTION_FLAG_LOWER_EL) == 0)) {
109 static void arm64_brk_handler(struct arm64_iframe_long* iframe, uint exception_flags, argument
111 if (unlikely((exception_flags & ARM64_EXCEPTION_FLAG_LOWER_EL) == 0)) {
119 static void arm64_step_handler(struct arm64_iframe_long* iframe, uint exception_flags, argument
121 if (unlikely((exception_flags & ARM64_EXCEPTION_FLAG_LOWER_EL) == 0)) {
129 static void arm64_fpu_handler(struct arm64_iframe_long* iframe, uint exception_flags, argument
131 if (unlikely((exception_flags & ARM64_EXCEPTION_FLAG_LOWER_EL) == 0)) {
137 arm64_fpu_exception(iframe, exception_flags);
140 static void arm64_instruction_abort_handler(struct arm64_iframe_long* iframe, uint exception_flags, argument
180 arm64_data_abort_handler(struct arm64_iframe_long* iframe, uint exception_flags, uint32_t esr) argument
253 arm64_sync_exception( struct arm64_iframe_long* iframe, uint exception_flags, uint32_t esr) argument
324 arm64_irq(struct arm64_iframe_short* iframe, uint exception_flags) argument
[all...]
H A Dfpu.cpp106 void arm64_fpu_exception(struct arm64_iframe_long* iframe, uint exception_flags) { argument
107 LTRACEF("cpu %u, thread %s, flags 0x%x\n", arch_curr_cpu_num(), get_current_thread()->name, exception_flags);
110 DEBUG_ASSERT(exception_flags & ARM64_EXCEPTION_FLAG_LOWER_EL);
H A Dexceptions.S245 .macro irq_exception, exception_flags
250 mov x1, \exception_flags
257 .macro sync_exception, exception_flags, from_lower_el_64=0
270 mov x1, \exception_flags
/fuchsia/zircon/kernel/arch/arm64/include/arch/
H A Darm64.h112 void arm64_sync_exception(struct arm64_iframe_long* iframe, uint exception_flags, uint32_t esr);
122 void arm64_fpu_exception(struct arm64_iframe_long* iframe, uint exception_flags);
143 /* used in above exception_flags arguments */

Completed in 29 milliseconds