Cthulhu  0.2.10
Cthulhu compiler collection
backtrace.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_backtrace_api.h>
6 
7 #include "core/analyze.h"
8 #include "core/compiler.h"
9 
10 #include "core/source_info.h"
11 #include "core/text.h"
12 
13 #include <inttypes.h>
14 #include <stdbool.h>
15 #include <stddef.h>
16 #include <stdint.h>
17 
19 
24 
26 typedef uint_least64_t bt_address_t;
27 
29 #define BT_PRI_ADDRESS PRIuLEAST64
30 
32 typedef struct bt_symbol_t
33 {
37 
40 
43 } bt_symbol_t;
44 
46 typedef enum bt_resolve_t
47 {
50 
53  eResolveLine = (1 << 0),
54 
57  eResolveName = (1 << 1),
58 
61 
64  eResolveFile = (1 << 3),
65 
68 } bt_resolve_t;
69 
74 typedef void (*bt_trace_t)(bt_address_t frame, void *user);
75 
80 typedef void (*bt_error_begin_t)(size_t error, void *user);
81 
85 typedef void (*bt_error_end_t)(void *user);
86 
88 typedef struct bt_error_t
89 {
92 
95 
98 
100  void *user;
101 } bt_error_t;
102 
104 CT_BACKTRACE_API extern bt_error_t gSystemError;
105 
108 CT_BACKTRACE_API void bt_init(void);
109 
113 CT_BACKTRACE_API void bt_update(void);
114 
119 CT_BACKTRACE_API const char *bt_backend(void);
120 
127 CT_BACKTRACE_API void bt_read(IN_NOTNULL bt_trace_t callback, void *user);
128 
135 CT_BACKTRACE_API bt_resolve_t bt_resolve_symbol(bt_address_t frame, IN_NOTNULL bt_symbol_t *symbol);
136 
138 
140 
142 
143 #if CT_CPLUSPLUS >= 202002L
144 namespace ctu::bt {
145  template<typename T>
146  concept AddressCallback = requires (T it) {
147  { it(bt_address_t{}) };
148  };
149 
150  void read(AddressCallback auto& fn) {
151  using FnType = decltype(fn);
152 
153  bt_read([](bt_address_t address, void *user) {
154  auto& fn = *static_cast<FnType*>(user);
155  fn(address);
156  }, static_cast<void*>(&fn));
157  }
158 }
159 #endif
#define IN_NOTNULL
annotate a parameter as not being null
#define STA_RET_STRING
annotate the return value as a null terminated string
#define CT_CONSTFN
mark a function as const, has no side effects and always returns the same value for the same argument...
Definition: analyze.h:227
CT_BACKTRACE_API void bt_init(void)
initialize the backtrace backend
Definition: dbghelp.c:139
uint_least64_t bt_address_t
an address of a symbol
Definition: backtrace.h:26
void(* bt_trace_t)(bt_address_t frame, void *user)
user callback for bt_read
Definition: backtrace.h:74
void(* bt_error_begin_t)(size_t error, void *user)
called once when a system error occurs
Definition: backtrace.h:80
void(* bt_error_end_t)(void *user)
called once when a system error occurs
Definition: backtrace.h:85
CT_BACKTRACE_API bt_resolve_t bt_resolve_symbol(bt_address_t frame, bt_symbol_t *symbol)
resolve a frame to a symbol
Definition: common.c:14
bt_resolve_t
how much of a frame was reconstructed
Definition: backtrace.h:47
CT_BACKTRACE_API void bt_update(void)
update the loaded module cache
Definition: dbghelp.c:147
CT_BACKTRACE_API void bt_read(bt_trace_t callback, void *user)
get a backtrace from the current location using a callback
Definition: common.c:35
STA_RET_STRING CT_CONSTFN CT_BACKTRACE_API const char * bt_backend(void)
get the backtrace backend name
Definition: dbghelp.c:17
CT_BACKTRACE_API bt_error_t gSystemError
the global system error handler
Definition: common.c:11
@ eResolveAll
all information was resolved
Definition: backtrace.h:67
@ eResolveDemangledName
the symbol name was demangled
Definition: backtrace.h:60
@ eResolveLine
the line number was found
Definition: backtrace.h:53
@ eResolveNothing
nothing was resolved
Definition: backtrace.h:49
@ eResolveName
the symbol name was found
Definition: backtrace.h:57
@ eResolveFile
the file path was found
Definition: backtrace.h:64
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
#define CT_ENUM_FLAGS(X, T)
Definition: compiler.h:179
uint_fast32_t source_line_t
the line number in the source file
Definition: source_info.h:16
system error handling callbacks
Definition: backtrace.h:89
bt_trace_t next
called once for each frame
Definition: backtrace.h:97
bt_error_begin_t begin
called once when a system error occurs
Definition: backtrace.h:91
void * user
user data to pass to the callbacks
Definition: backtrace.h:100
bt_error_end_t end
called after all frames have been collected
Definition: backtrace.h:94
a symbol
Definition: backtrace.h:33
text_t name
a buffer to hold the name
Definition: backtrace.h:39
text_t path
a buffer to hold the path to the file
Definition: backtrace.h:42
source_line_t line
the line number
Definition: backtrace.h:36
a range of text
Definition: text.h:14