@@ -22,8 +22,8 @@ called immediately upon a CPU exception. For specifics on how this may be done,
22
22
see the backend documentation for your architecture.
23
23
24
24
Applications must also provide an implementation for
25
- ``pw::cpu_exception::HandleCpuException () ``. The behavior of this functions
26
- is entirely up to the application/project, but some examples are provided below:
25
+ ``pw_CpuExceptionDefaultHandler () ``. The behavior of this functions is entirely
26
+ up to the application/project, but some examples are provided below:
27
27
28
28
* Enter an infinite loop so the device can be debugged by JTAG.
29
29
* Reset the device.
@@ -35,42 +35,53 @@ is entirely up to the application/project, but some examples are provided below:
35
35
Module Usage
36
36
============
37
37
Basic usage of this module entails applications supplying a definition for
38
- ``pw::cpu_exception::HandleCpuException () ``. ``HandleCpuException () `` should
39
- contain any logic to determine if a exception can be recovered from, as well
40
- as necessary actions to properly recover. If the device cannot recover from the
38
+ ``pw_CpuExceptionDefaultHandler () ``. ``pw_CpuExceptionDefaultHandler () `` should
39
+ contain any logic to determine if a exception can be recovered from, as well as
40
+ necessary actions to properly recover. If the device cannot recover from the
41
41
exception, the function should **not ** return.
42
42
43
+ ``pw_CpuExceptionDefaultHandler() `` is called indirectly, and may be overridden
44
+ at runtime via ``pw_CpuExceptionSetHandler() ``. The handler can also be reset to
45
+ point to ``pw_CpuExceptionDefaultHandler() `` by calling
46
+ ``pw_CpuExceptionRestoreDefaultHandler() ``.
47
+
43
48
When writing an exception handler, prefer to use the functions provided by this
44
- interface rather than relying on the backend implementation of `` CpuState ``.
45
- This allows better code portability as it helps prevent an application fault
46
- handler from being tied to a single backend.
49
+ interface rather than relying on the backend implementation of
50
+ `` pw_CpuExceptionState ``. This allows better code portability as it helps
51
+ prevent an application fault handler from being tied to a single backend.
47
52
48
53
For example; when logging or dumping CPU state, prefer ``ToString() `` or
49
- ``RawFaultingCpuState() `` over directly accessing members of a `` CpuState ``
50
- object.
54
+ ``RawFaultingCpuState() `` over directly accessing members of a
55
+ `` pw_CpuExceptionState `` object.
51
56
52
57
Some exception handling behavior may require architecture-specific CPU state to
53
58
attempt to correct a fault. In this situation, the application's exception
54
59
handler will be tied to the backend implementation of the CPU exception module.
55
60
56
- Dependencies
57
- ============
58
- * ``pw_span ``
59
- * ``pw_preprocessor ``
60
-
61
61
Backend Expectations
62
62
====================
63
63
CPU exception backends do not provide an exception handler, but instead provide
64
64
mechanisms to capture CPU state for use by an application's exception handler,
65
65
and allow recovery from CPU exceptions when possible.
66
66
67
- * A backend should provide a definition for the ``CpuState `` struct that
68
- provides suitable means to access and modify any captured CPU state.
67
+ * A backend should provide a definition for the ``pw_CpuExceptionState ``
68
+ struct that provides suitable means to access and modify any captured CPU
69
+ state.
69
70
* If an application's exception handler modifies the captured CPU state, the
70
71
state should be treated as though it were the original state of the CPU when
71
72
the exception occurred. The backend may need to manually restore some of the
72
73
modified state to ensure this on exception handler return.
73
74
* A backend should implement the ``pw_CpuExceptionEntry() `` function that will
74
- call ``HandleCpuException() `` after performing any necessary actions prior
75
- to handing control to the application's exception handler (e.g. capturing
76
- necessary CPU state).
75
+ call ``pw_HandleCpuException() `` after performing any necessary
76
+ actions prior to handing control to the application's exception handler
77
+ (e.g. capturing necessary CPU state).
78
+
79
+ Compatibility
80
+ =============
81
+ Most of the pw_cpu_exception module is C-compatible. The exception to this is
82
+ the "support" facade and library, which requires C++.
83
+
84
+ Dependencies
85
+ ============
86
+ * ``pw_span ``
87
+ * ``pw_preprocessor ``
0 commit comments