Cthulhu  0.2.10
Cthulhu compiler collection
loader.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_support_api.h>
6 
7 #include "core/analyze.h"
8 #include "os/core.h"
9 #include "os/os.h"
10 
11 typedef struct arena_t arena_t;
12 typedef struct typevec_t typevec_t;
13 
14 typedef struct language_t language_t;
15 typedef struct plugin_t plugin_t;
16 typedef struct target_t target_t;
17 
19 
22 
23 typedef struct loader_t loader_t;
24 
25 typedef enum loader_config_t
26 {
27 #define LOADER_FEATURE(ID, STR, BIT) ID = (BIT),
28 #include "loader.inc"
30 
31 typedef enum module_type_t
32 {
33 #define LOADER_MODULE(ID, STR, BIT) ID = (BIT),
34 #include "loader.inc"
35 
36  eModCount
38 
39 typedef enum load_error_t
40 {
41 #define LOADER_ERROR(ID, STR) ID,
42 #include "loader.inc"
43 
46 
47 typedef struct loaded_module_t
48 {
50 
51  const language_t *lang;
52  const plugin_t *plugin;
53  const target_t *target;
56  os_error_t os;
58 
59 CT_SUPPORT_API loader_t *loader_new(IN_NOTNULL arena_t *arena);
60 
62 CT_SUPPORT_API loader_config_t loader_config(void);
63 
64 CT_SUPPORT_API typevec_t *load_default_modules(IN_NOTNULL loader_t *loader);
65 
66 CT_SUPPORT_API loaded_module_t load_module(IN_NOTNULL loader_t *loader, module_type_t mask, IN_STRING const char *name);
67 
68 CT_SUPPORT_API loaded_module_t load_static_module(IN_NOTNULL loader_t *loader, module_type_t mask, IN_STRING const char *name);
69 
70 CT_SUPPORT_API loaded_module_t load_shared_module(IN_NOTNULL loader_t *loader, module_type_t mask, IN_STRING const char *name);
71 
72 CT_SUPPORT_API const char *load_error_string(load_error_t error);
73 
75 
#define IN_NOTNULL
annotate a parameter as not being null
#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
#define IN_STRING
annotate a parameter as being a null terminated string
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
CT_SUPPORT_API loaded_module_t load_shared_module(loader_t *loader, module_type_t mask, const char *name)
Definition: disable_shared.c:8
CT_CONSTFN CT_SUPPORT_API loader_config_t loader_config(void)
Definition: loader.c:35
CT_SUPPORT_API loader_t * loader_new(arena_t *arena)
Definition: loader.c:41
CT_SUPPORT_API loaded_module_t load_module(loader_t *loader, module_type_t mask, const char *name)
Definition: loader.c:104
CT_SUPPORT_API loaded_module_t load_static_module(loader_t *loader, module_type_t mask, const char *name)
Definition: disable_static.c:8
CT_SUPPORT_API typevec_t * load_default_modules(loader_t *loader)
Definition: loader.c:52
module_type_t
Definition: loader.h:32
@ eModCount
Definition: loader.h:36
CT_SUPPORT_API const char * load_error_string(load_error_t error)
Definition: loader.c:131
loader_config_t
Definition: loader.h:26
load_error_t
Definition: loader.h:40
@ eErrorCount
Definition: loader.h:44
an allocator object
Definition: arena.h:86
a language driver support capabilities
Definition: broker.h:143
os_library_t library
Definition: loader.h:54
load_error_t error
Definition: loader.h:55
const plugin_t * plugin
Definition: loader.h:52
module_type_t type
Definition: loader.h:49
const target_t * target
Definition: loader.h:53
os_error_t os
Definition: loader.h:56
const language_t * lang
Definition: loader.h:51
Definition: common.h:8
a shared library handle
Definition: os.h:28
plugin support capabilities
Definition: broker.h:202
a codegen target backend
Definition: broker.h:232
A vector with a fixed type size.
Definition: vector.h:24