Cthulhu  0.2.10
Cthulhu compiler collection
driver.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_driver_api.h>
6 
8 
13 
14 typedef const language_t*(*lang_main_t)(void);
15 typedef const plugin_t*(*plugin_main_t)(void);
16 typedef const target_t*(*target_main_t)(void);
17 
18 #define CT_LANG_ENTRY "lang_main"
19 #define CT_PLUGIN_ENTRY "plugin_main"
20 #define CT_TARGET_ENTRY "target_main"
21 
22 #if CTU_DRIVER_SHARED
23 # define CT_LANG_EXPORT(mod) CT_LINKAGE_C CT_EXPORT const language_t *lang_main(void) { return &mod; }
24 #else
25 # define CT_LANG_EXPORT(mod)
26 #endif
27 
28 #if CTU_DRIVER_SHARED
29 # define CT_PLUGIN_EXPORT(mod) CT_LINKAGE_C CT_EXPORT const plugin_t *plugin_main(void) { return &mod; }
30 #else
31 # define CT_PLUGIN_EXPORT(mod)
32 #endif
33 
34 #if CTU_DRIVER_SHARED
35 # define CT_TARGET_EXPORT(mod) CT_LINKAGE_C CT_EXPORT const target_t *target_main(void) { return &mod; }
36 #else
37 # define CT_TARGET_EXPORT(mod)
38 #endif
39 
47 
55 
63 
a language driver support capabilities
Definition: broker.h:143
plugin support capabilities
Definition: broker.h:202
a codegen target backend
Definition: broker.h:232