libFirm
|
The functions in this section deal with initialization and deinitalization of the libFirm library. More...
Enumerations | |
enum | firm_kind { k_BAD = 0 , k_entity , k_type , k_ir_graph , k_ir_node , k_ir_mode , k_tarval , k_ir_loop , k_ir_max } |
A list of firm kinds. More... | |
Functions | |
void | ir_init (void) |
Initializes the firm library and prepares code generation for the host. | |
void | ir_init_library (void) |
Initializes the firm library but does not prepare for any code generation. | |
void | ir_finish (void) |
Frees all memory occupied by the firm library. | |
unsigned | ir_get_version_major (void) |
returns the libFirm major version number | |
unsigned | ir_get_version_minor (void) |
returns libFirm minor version number | |
unsigned | ir_get_version_micro (void) |
returns libFirm micro version number | |
const char * | ir_get_version_revision (void) |
returns string describing libFirm revision | |
const char * | ir_get_version_build (void) |
returns string describing libFirm build | |
firm_kind | get_kind (const void *firm_thing) |
Returns the kind of a thing. | |
The functions in this section deal with initialization and deinitalization of the libFirm library.
enum firm_kind |
A list of firm kinds.
Most important data structures in firm contain a firm_kind field at the beginning so given void* pointer you can usually still guess the kind of thing the pointer points to. This is used in debug helper functions and printers.
Definition at line 68 of file firm_common.h.
firm_kind get_kind | ( | const void * | firm_thing | ) |
Returns the kind of a thing.
firm_thing | pointer representing a firm object |
void ir_finish | ( | void | ) |
Frees all memory occupied by the firm library.
const char * ir_get_version_build | ( | void | ) |
returns string describing libFirm build
unsigned ir_get_version_major | ( | void | ) |
returns the libFirm major version number
unsigned ir_get_version_micro | ( | void | ) |
returns libFirm micro version number
unsigned ir_get_version_minor | ( | void | ) |
returns libFirm minor version number
const char * ir_get_version_revision | ( | void | ) |
returns string describing libFirm revision
void ir_init | ( | void | ) |
Initializes the firm library and prepares code generation for the host.
This is a convenince function that does:
ir_init_library(); ir_target_set_triple(ir_get_host_machine_triple()); ir_target_init();
void ir_init_library | ( | void | ) |
Initializes the firm library but does not prepare for any code generation.
This is typically followed by target initialization (