Cthulhu  0.2.10
Cthulhu compiler collection
loader.h File Reference
#include <ctu_support_api.h>
#include "core/analyze.h"
#include "os/core.h"
#include "os/os.h"
#include "loader.inc"
Include dependency graph for loader.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  loaded_module_t
 

Macros

#define LOADER_FEATURE(ID, STR, BIT)   ID = (BIT),
 
#define LOADER_MODULE(ID, STR, BIT)   ID = (BIT),
 
#define LOADER_ERROR(ID, STR)   ID,
 
enum  loader_config_t
 
enum  module_type_t { eModCount }
 
enum  load_error_t { eErrorCount }
 
typedef typedefCT_BEGIN_API struct loader_t loader_t
 
CT_SUPPORT_API loader_tloader_new (arena_t *arena)
 
CT_CONSTFN CT_SUPPORT_API loader_config_t loader_config (void)
 
CT_SUPPORT_API typevec_tload_default_modules (loader_t *loader)
 
CT_SUPPORT_API loaded_module_t load_module (loader_t *loader, module_type_t mask, const char *name)
 
CT_SUPPORT_API loaded_module_t load_static_module (loader_t *loader, module_type_t mask, const char *name)
 
CT_SUPPORT_API loaded_module_t load_shared_module (loader_t *loader, module_type_t mask, const char *name)
 
CT_SUPPORT_API const char * load_error_string (load_error_t error)
 

Macro Definition Documentation

◆ LOADER_ERROR

#define LOADER_ERROR (   ID,
  STR 
)    ID,

Definition at line 41 of file loader.h.

◆ LOADER_FEATURE

#define LOADER_FEATURE (   ID,
  STR,
  BIT 
)    ID = (BIT),

Definition at line 27 of file loader.h.

◆ LOADER_MODULE

#define LOADER_MODULE (   ID,
  STR,
  BIT 
)    ID = (BIT),

Definition at line 33 of file loader.h.

Enumeration Type Documentation

◆ load_error_t

Enumerator
eErrorCount 

Definition at line 39 of file loader.h.

◆ loader_config_t

Definition at line 25 of file loader.h.

◆ module_type_t

Enumerator
eModCount 

Definition at line 31 of file loader.h.

Function Documentation

◆ load_default_modules()

CT_SUPPORT_API typevec_t* load_default_modules ( loader_t loader)

Definition at line 52 of file loader.c.

◆ load_error_string()

CT_SUPPORT_API const char* load_error_string ( load_error_t  error)

Definition at line 131 of file loader.c.

◆ load_module()

CT_SUPPORT_API loaded_module_t load_module ( loader_t loader,
module_type_t  mask,
const char *  name 
)

Definition at line 104 of file loader.c.

◆ load_shared_module()

CT_SUPPORT_API loaded_module_t load_shared_module ( loader_t loader,
module_type_t  mask,
const char *  name 
)

Definition at line 8 of file disable_shared.c.

◆ load_static_module()

CT_SUPPORT_API loaded_module_t load_static_module ( loader_t loader,
module_type_t  mask,
const char *  name 
)

Definition at line 8 of file disable_static.c.

◆ loader_config()

CT_CONSTFN CT_SUPPORT_API loader_config_t loader_config ( void  )

Definition at line 35 of file loader.c.

◆ loader_new()

CT_SUPPORT_API loader_t* loader_new ( arena_t arena)

Definition at line 41 of file loader.c.