13 #define EXPECT_TYPE(TY, KIND) CTASSERTF(TY->kind == KIND, "expected %s, got %s", ssa_type_name(KIND), ssa_type_name(TY->kind))
50 mpz_init_set(literal.
digit, value);
58 mpz_init_set_ui(literal.
digit, value);
66 const char *
string = text.text;
67 size_t length = text.
length;
75 for (
size_t i = 0; i < length; i++)
103 return ssa_value_new(type,
false, eValueLiteral);
108 ssa_value_t *
self = ssa_value_new(type,
true, eValueLiteral);
109 self->literal = value;
115 ssa_value_t *
self = ssa_value_new(type,
true, eValueRelative);
116 self->relative = value;
123 mpz_init_set(literal.
pointer, value);
150 mpz_init_set(result, literal.
digit);
CT_PUREFN CT_TREE_API const tree_t * tree_get_type(const tree_t *tree)
ssa_type_t * ssa_type_create_cached(map_t *cache, const tree_t *type)
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
CT_MEMORY_API arena_t * get_global_arena(void)
get the global memory arena
#define ARENA_MALLOC(size, name, parent, arena)
allocate memory from a custom allocator
#define CT_NEVER(...)
assert that a code path is never reached
#define CTASSERT(expr)
assert a condition, prints the condition as a message
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
CT_CONSTFN CT_NODISCARD CT_SSA_API const char * ssa_type_name(STA_IN_RANGE(0, eTypeCount - 1) ssa_kind_t kind)
STA_DECL bool ssa_value_get_bool(const ssa_value_t *value)
STA_DECL ssa_literal_value_t ssa_value_get_literal(const ssa_value_t *value)
CT_NODISCARD CT_STD_API vector_t * vector_of(size_t len, arena_t *arena)
create a new vector with a specified length
CT_STD_API void vector_set(vector_t *vector, size_t index, void *value)
set a value in a vector
const ssa_type_t * pointer
ssa_type_pointer_t pointer
ssa_literal_value_t literal
a non-owning view of text
size_t length
the number of characters in the text
a generic vector of pointers
ssa_value_t * ssa_value_bool(const ssa_type_t *type, bool value)
ssa_value_t * ssa_value_unit(const ssa_type_t *type)
ssa_value_t * ssa_value_string(const ssa_type_t *type, text_view_t text)
ssa_value_t * ssa_value_opaque_literal(const ssa_type_t *type, mpz_t value)
ssa_value_t * ssa_value_from(map_t *types, const tree_t *expr)
#define EXPECT_TYPE(TY, KIND)
ssa_value_t * ssa_value_relative(const ssa_type_t *type, ssa_relative_value_t value)
ssa_value_t * ssa_value_empty(const ssa_type_t *type)
ssa_value_t * ssa_value_literal(const ssa_type_t *type, ssa_literal_value_t value)
ssa_value_t * ssa_value_char(const ssa_type_t *type, char value)
ssa_value_t * ssa_value_digit(const ssa_type_t *type, const mpz_t value)
STA_DECL void ssa_value_get_digit(const ssa_value_t *value, mpz_t result)
ssa_value_t * ssa_value_noinit(const ssa_type_t *type)