15 #ifndef FIRM_IR_IRPROG_H
16 #define FIRM_IR_IRPROG_H
19 #include "firm_types.h"
ir_graph * get_irp_irg(size_t pos)
Returns the ir graph at position pos in the irp.
struct ir_type ir_type
Type.
ir_prog * get_irp(void)
Returns the current irp from where everything in the current module can be accessed.
void free_ir_prog(void)
Frees all memory used by irp.
ir_type * get_tls_type(void)
Returns the "thread local storage" type of the irp.
int irp_prog_name_is_set(void)
Returns true if the user ever set a program name.
ir_graph * get_irp_main_irg(void)
Returns the main routine of the compiled program.
void add_irp_asm(ident *asm_string)
Add a new global asm include.
irg_callee_info_state
state: callee_information_state Call nodes contain a list of possible callees.
void set_irp_irg(size_t pos, ir_graph *irg)
Sets the ir graph at position pos.
ir_prog * irp
A variable pointing to the current irp (program or module).
like constructors, but functions are executed on module exit
struct ir_graph ir_graph
Procedure Graph.
ir_graph * get_const_code_irg(void)
Returns the graph for global constants of the current irp.
struct ir_prog ir_prog
Program.
size_t get_irp_n_asms(void)
Returns the number of global asm includes.
ident * get_irp_asm(size_t pos)
Returns the global asm include at position pos.
void set_irp(ir_prog *irp)
Sets current irp.
irp_resources_t irp_resources_reserved(const ir_prog *irp)
Returns currently reserved whole program resources.
irp_resources_t
Resources usable by algorithms modifying the program.
thread local storage segment
size_t get_irp_last_idx(void)
returns the biggest not used irg index number
ir_label_t get_irp_next_label_nr(void)
Returns a new, unique label number.
ir_entity * ir_get_global(ident *name)
Returns global entity with name name.
irg_callee_info_state get_irp_callee_info_state(void)
Returns callee info state for the whole program.
void irp_free_resources(ir_prog *irp, irp_resources_t resources)
Frees resources available for a whole program.
void irp_reserve_resources(ir_prog *irp, irp_resources_t resources)
Reserve resources available for a whole program.
void set_irp_main_irg(ir_graph *main_irg)
Sets the main routine of the compiled program.
void set_irp_callee_info_state(irg_callee_info_state s)
Sets callee info state for the whole program.
the constructors segment.
const char * get_irp_name(void)
Returns the name of the current irp.
struct ir_entity ir_entity
Entity.
void set_irp_type(size_t pos, ir_type *typ)
Overwrites the type at position pos with another type.
size_t get_irp_n_types(void)
Returns the number of all types in the irp.
ident * get_irp_ident(void)
Returns the name of the current irp.
void set_irp_prog_name(ident *name)
Sets the file name / executable name or the like.
ir_prog * new_ir_prog(const char *name)
Creates a new ir_prog (a module or compilation unit).
const char ident
Identifier.
ir_type * get_irp_type(size_t pos)
Returns the type at position pos in the irp.
size_t get_irp_n_irgs(void)
Returns the number of ir graphs in the irp.
ir_type * get_segment_type(ir_segment_t segment)
Returns the type containing the entities for a segment.
ir_type * get_glob_type(void)
Returns the "global" type of the irp.
void set_segment_type(ir_segment_t segment, ir_type *new_type)
Changes a segment segment type for the program.