@@ -12,13 +12,13 @@ otherwise be clobbered by an application's exception handler.
12
12
13
13
Setup
14
14
=====
15
- An application using this module **must ** connect ``pw_CpuExceptionEntry () `` to
16
- the platform's CPU exception handler interrupt so ``pw_CpuExceptionEntry () `` is
15
+ An application using this module **must ** connect ``pw_cpu_exception_Entry () `` to
16
+ the platform's CPU exception handler interrupt so ``pw_cpu_exception_Entry () `` is
17
17
called immediately upon a CPU exception. For specifics on how this may be done,
18
18
see the backend documentation for your architecture.
19
19
20
20
Applications must also provide an implementation for
21
- ``pw_CpuExceptionDefaultHandler () ``. The behavior of this functions is entirely
21
+ ``pw_cpu_exception_DefaultHandler () ``. The behavior of this functions is entirely
22
22
up to the application/project, but some examples are provided below:
23
23
24
24
* Enter an infinite loop so the device can be debugged by JTAG.
@@ -31,24 +31,24 @@ up to the application/project, but some examples are provided below:
31
31
Module Usage
32
32
============
33
33
Basic usage of this module entails applications supplying a definition for
34
- ``pw_CpuExceptionDefaultHandler () ``. ``pw_CpuExceptionDefaultHandler () `` should
34
+ ``pw_cpu_exception_DefaultHandler () ``. ``pw_cpu_exception_DefaultHandler () `` should
35
35
contain any logic to determine if a exception can be recovered from, as well as
36
36
necessary actions to properly recover. If the device cannot recover from the
37
37
exception, the function should **not ** return.
38
38
39
- ``pw_CpuExceptionDefaultHandler () `` is called indirectly, and may be overridden
40
- at runtime via ``pw_CpuExceptionSetHandler () ``. The handler can also be reset to
41
- point to ``pw_CpuExceptionDefaultHandler () `` by calling
42
- ``pw_CpuExceptionRestoreDefaultHandler () ``.
39
+ ``pw_cpu_exception_DefaultHandler () `` is called indirectly, and may be overridden
40
+ at runtime via ``pw_cpu_exception_SetHandler () ``. The handler can also be reset to
41
+ point to ``pw_cpu_exception_DefaultHandler () `` by calling
42
+ ``pw_cpu_exception_RestoreDefaultHandler () ``.
43
43
44
44
When writing an exception handler, prefer to use the functions provided by this
45
45
interface rather than relying on the backend implementation of
46
- ``pw_CpuExceptionState ``. This allows better code portability as it helps
46
+ ``pw_cpu_exception_State ``. This allows better code portability as it helps
47
47
prevent an application fault handler from being tied to a single backend.
48
48
49
49
For example; when logging or dumping CPU state, prefer ``ToString() `` or
50
50
``RawFaultingCpuState() `` over directly accessing members of a
51
- ``pw_CpuExceptionState `` object.
51
+ ``pw_cpu_exception_State `` object.
52
52
53
53
Some exception handling behavior may require architecture-specific CPU state to
54
54
attempt to correct a fault. In this situation, the application's exception
@@ -60,15 +60,15 @@ CPU exception backends do not provide an exception handler, but instead provide
60
60
mechanisms to capture CPU state for use by an application's exception handler,
61
61
and allow recovery from CPU exceptions when possible.
62
62
63
- * A backend should provide a definition for the ``pw_CpuExceptionState ``
63
+ * A backend should provide a definition for the ``pw_cpu_exception_State ``
64
64
struct that provides suitable means to access and modify any captured CPU
65
65
state.
66
66
* If an application's exception handler modifies the captured CPU state, the
67
67
state should be treated as though it were the original state of the CPU when
68
68
the exception occurred. The backend may need to manually restore some of the
69
69
modified state to ensure this on exception handler return.
70
- * A backend should implement the ``pw_CpuExceptionEntry () `` function that will
71
- call ``pw_HandleCpuException () `` after performing any necessary
70
+ * A backend should implement the ``pw_cpu_exception_Entry () `` function that will
71
+ call ``pw_cpu_exception_HandleException () `` after performing any necessary
72
72
actions prior to handing control to the application's exception handler
73
73
(e.g. capturing necessary CPU state).
74
74
0 commit comments