5 #include <ctu_ssa_api.h>
41 #define SSA_KIND(ID, NAME) ID,
48 #define SSA_OPERAND(ID, NAME) ID,
55 #define SSA_OPCODE(ID, NAME) ID,
62 #define SSA_VALUE(ID, NAME) ID,
#define RET_NOTNULL
annotate the return value as not being null
#define STA_IN_RANGE(lo, hi)
#define CT_NODISCARD
mark a function as returning a value that must be used
#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...
CT_CONSTFN CT_NODISCARD CT_SSA_API const char * ssa_opkind_name(STA_IN_RANGE(0, eOperandCount - 1) ssa_opkind_t kind)
CT_CONSTFN CT_NODISCARD CT_SSA_API const char * ssa_value_name(STA_IN_RANGE(0, eValueCount - 1) ssa_value_state_t value)
CT_SSA_API void ssa_opt(logger_t *reports, ssa_result_t mod, arena_t *arena)
Optimize a given module.
CT_SSA_API ssa_result_t ssa_compile(vector_t *mods, arena_t *arena)
compile a set of trees into their ssa form
CT_CONSTFN CT_NODISCARD CT_SSA_API const char * ssa_type_name(STA_IN_RANGE(0, eTypeCount - 1) ssa_kind_t kind)
CT_CONSTFN CT_NODISCARD CT_SSA_API const char * ssa_opcode_name(STA_IN_RANGE(0, eOpCount - 1) ssa_opcode_t opcode)
CT_SSA_API bool ssa_value_get_bool(const ssa_value_t *value)
CT_SSA_API ssa_type_t * ssa_type_bool(const char *name, tree_quals_t quals)
CT_SSA_API ssa_type_t * ssa_type_pointer(const char *name, tree_quals_t quals, ssa_type_t *pointer, size_t length)
CT_SSA_API void ssa_value_get_digit(const ssa_value_t *value, OUT_NOTNULL mpz_t result)
CT_SSA_API ssa_type_t * ssa_type_digit(const char *name, tree_quals_t quals, sign_t sign, digit_t digit)
CT_SSA_API ssa_literal_value_t ssa_value_get_literal(const ssa_value_t *value)
tree_quals_t
all type qualifiers
tree_visibility_t
symbol visibility
binary_t
all binary operators
tree_linkage_t
the linkage of a declaration
unary_t
all unary operators
compare_t
all comparison operators
const ssa_value_t * value
vector_t * types
vector<ssa_type_t> all types used by this module
vector_t * functions
vector<ssa_symbol_t> all functions declared/imported/exported by this module
vector_t * globals
vector<ssa_symbol_t> all globals declared/imported/exported by this module
const ssa_value_t * value
const ssa_block_t * vreg_context
const ssa_symbol_t * global
const ssa_value_t * value
ssa underlying storage type
size_t size
the number of elements in the storage
tree_quals_t quals
the qualifiers of the storage
const ssa_type_t * type
the internal storage type
ssa_block_t * entry
entry block
const ssa_type_t * type
the public facing type of this symbol
vector_t * blocks
vector_t<ssa_block_t *>
ssa_storage_t storage
the backing storage for this symbol
tree_visibility_t visibility
typevec_t * params
typevec_t<ssa_type_t>
const char * linkage_string
external name
const ssa_value_t * value
the value of this symbol, must always be set for globals
typevec_t * locals
typevec_t<ssa_type_t>
const char * name
internal name
const ssa_type_t * result
const ssa_type_t * pointer
ssa_type_closure_t closure
ssa_type_pointer_t pointer
ssa_literal_value_t literal
bool init
whether this value has been initialized
ssa_relative_value_t relative
A vector with a fixed type size.
a generic vector of pointers
const ssa_symbol_t * symbol