mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-02 23:32:09 +00:00
[qfcc] Implement some basics for the vector types
They're now properly part of the type system and can be used for declaring variables, initialized (using {} block initializers), operated on (=, *, + tested) though much work needs to be done on binary expressions, and indexed. So far, only ivec2 has been tested.
This commit is contained in:
parent
3d8ee5df43
commit
1487fa6b50
8 changed files with 146 additions and 57 deletions
|
@ -104,10 +104,8 @@ typedef struct {
|
||||||
#define EV_TYPE(type) extern type_t type_##type;
|
#define EV_TYPE(type) extern type_t type_##type;
|
||||||
#include "QF/progs/pr_type_names.h"
|
#include "QF/progs/pr_type_names.h"
|
||||||
|
|
||||||
extern type_t type_ivec3;
|
#define VEC_TYPE(type_name, base_type) extern type_t type_##type_name;
|
||||||
extern type_t type_ivec4;
|
#include "tools/qfcc/include/vec_types.h"
|
||||||
extern type_t type_vec3;
|
|
||||||
extern type_t type_vec4;
|
|
||||||
|
|
||||||
extern type_t type_invalid;
|
extern type_t type_invalid;
|
||||||
extern type_t type_floatfield;
|
extern type_t type_floatfield;
|
||||||
|
@ -167,6 +165,7 @@ const char *type_get_encoding (const type_t *type);
|
||||||
|
|
||||||
int is_enum (const type_t *type) __attribute__((pure));
|
int is_enum (const type_t *type) __attribute__((pure));
|
||||||
int is_integral (const type_t *type) __attribute__((pure));
|
int is_integral (const type_t *type) __attribute__((pure));
|
||||||
|
int is_real (const type_t *type) __attribute__((pure));
|
||||||
int is_scalar (const type_t *type) __attribute__((pure));
|
int is_scalar (const type_t *type) __attribute__((pure));
|
||||||
int is_nonscalar (const type_t *type) __attribute__((pure));
|
int is_nonscalar (const type_t *type) __attribute__((pure));
|
||||||
int is_math (const type_t *type) __attribute__((pure));
|
int is_math (const type_t *type) __attribute__((pure));
|
||||||
|
|
24
tools/qfcc/include/vec_types.h
Normal file
24
tools/qfcc/include/vec_types.h
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
#ifndef VEC_TYPE
|
||||||
|
#define VEC_TYPE(type_name, base_type)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
VEC_TYPE(ivec2, int)
|
||||||
|
VEC_TYPE(ivec3, int)
|
||||||
|
VEC_TYPE(ivec4, int)
|
||||||
|
VEC_TYPE(vec2, float)
|
||||||
|
VEC_TYPE(vec3, float)
|
||||||
|
VEC_TYPE(vec4, float)
|
||||||
|
VEC_TYPE(lvec2, long)
|
||||||
|
VEC_TYPE(lvec3, long)
|
||||||
|
VEC_TYPE(lvec4, long)
|
||||||
|
VEC_TYPE(dvec2, double)
|
||||||
|
VEC_TYPE(dvec3, double)
|
||||||
|
VEC_TYPE(dvec4, double)
|
||||||
|
VEC_TYPE(uivec2, uint)
|
||||||
|
VEC_TYPE(uivec3, uint)
|
||||||
|
VEC_TYPE(uivec4, uint)
|
||||||
|
VEC_TYPE(ulvec2, ulong)
|
||||||
|
VEC_TYPE(ulvec3, ulong)
|
||||||
|
VEC_TYPE(ulvec4, ulong)
|
||||||
|
|
||||||
|
#undef VEC_TYPE
|
|
@ -584,7 +584,7 @@ initialize_def (symbol_t *sym, expr_t *init, defspace_t *space,
|
||||||
if (init->type == ex_error)
|
if (init->type == ex_error)
|
||||||
return;
|
return;
|
||||||
if ((is_array (sym->type) || is_struct (sym->type)
|
if ((is_array (sym->type) || is_struct (sym->type)
|
||||||
|| is_vector(sym->type) || is_quaternion(sym->type))
|
|| is_nonscalar (sym->type))
|
||||||
&& ((init->type == ex_compound)
|
&& ((init->type == ex_compound)
|
||||||
|| init->type == ex_nil)) {
|
|| init->type == ex_nil)) {
|
||||||
init_elements (sym->s.def, init);
|
init_elements (sym->s.def, init);
|
||||||
|
|
|
@ -2549,6 +2549,7 @@ array_expr (expr_t *array, expr_t *index)
|
||||||
{
|
{
|
||||||
type_t *array_type = get_type (array);
|
type_t *array_type = get_type (array);
|
||||||
type_t *index_type = get_type (index);
|
type_t *index_type = get_type (index);
|
||||||
|
type_t *ele_type;
|
||||||
expr_t *scale;
|
expr_t *scale;
|
||||||
expr_t *offset;
|
expr_t *offset;
|
||||||
expr_t *base;
|
expr_t *base;
|
||||||
|
@ -2561,7 +2562,8 @@ array_expr (expr_t *array, expr_t *index)
|
||||||
if (index->type == ex_error)
|
if (index->type == ex_error)
|
||||||
return index;
|
return index;
|
||||||
|
|
||||||
if (!is_ptr (array_type) && !is_array (array_type))
|
if (!is_ptr (array_type) && !is_array (array_type)
|
||||||
|
&& !is_nonscalar (array_type))
|
||||||
return error (array, "not an array");
|
return error (array, "not an array");
|
||||||
if (!is_integral (index_type))
|
if (!is_integral (index_type))
|
||||||
return error (index, "invalid array index type");
|
return error (index, "invalid array index type");
|
||||||
|
@ -2573,11 +2575,26 @@ array_expr (expr_t *array, expr_t *index)
|
||||||
&& array_type->t.array.size
|
&& array_type->t.array.size
|
||||||
&& is_constant (index)
|
&& is_constant (index)
|
||||||
&& (ind < array_type->t.array.base
|
&& (ind < array_type->t.array.base
|
||||||
|| ind - array_type->t.array.base >= array_type->t.array.size))
|
|| ind - array_type->t.array.base >= array_type->t.array.size)) {
|
||||||
return error (index, "array index out of bounds");
|
return error (index, "array index out of bounds");
|
||||||
scale = new_int_expr (type_size (array_type->t.array.type));
|
}
|
||||||
index = binary_expr ('*', index, scale);
|
if (is_nonscalar (array_type)
|
||||||
|
&& is_constant (index)
|
||||||
|
&& (ind < 0 || ind >= array_type->width)) {
|
||||||
|
return error (index, "array index out of bounds");
|
||||||
|
}
|
||||||
|
if (is_array (array_type)) {
|
||||||
|
ele_type = array_type->t.array.type;
|
||||||
base = new_int_expr (array_type->t.array.base);
|
base = new_int_expr (array_type->t.array.base);
|
||||||
|
} else if (is_ptr (array_type)) {
|
||||||
|
ele_type = array_type->t.fldptr.type;
|
||||||
|
base = new_int_expr (0);
|
||||||
|
} else {
|
||||||
|
ele_type = ev_types[array_type->type];
|
||||||
|
base = new_int_expr (0);
|
||||||
|
}
|
||||||
|
scale = new_int_expr (type_size (ele_type));
|
||||||
|
index = binary_expr ('*', index, scale);
|
||||||
offset = binary_expr ('*', base, scale);
|
offset = binary_expr ('*', base, scale);
|
||||||
index = binary_expr ('-', index, offset);
|
index = binary_expr ('-', index, offset);
|
||||||
if (is_short_val (index))
|
if (is_short_val (index))
|
||||||
|
@ -2585,18 +2602,20 @@ array_expr (expr_t *array, expr_t *index)
|
||||||
if (is_int_val (index))
|
if (is_int_val (index))
|
||||||
ind = expr_int (index);
|
ind = expr_int (index);
|
||||||
if (is_array (array_type)) {
|
if (is_array (array_type)) {
|
||||||
type_t *element_type = array_type->t.array.type;
|
|
||||||
if (array->type == ex_uexpr && array->e.expr.op == '.') {
|
if (array->type == ex_uexpr && array->e.expr.op == '.') {
|
||||||
ptr = array->e.expr.e1;
|
ptr = array->e.expr.e1;
|
||||||
} else {
|
} else {
|
||||||
expr_t *alias = new_offset_alias_expr (element_type, array, 0);
|
expr_t *alias = new_offset_alias_expr (ele_type, array, 0);
|
||||||
ptr = new_address_expr (element_type, alias, 0);
|
ptr = new_address_expr (ele_type, alias, 0);
|
||||||
}
|
}
|
||||||
|
} else if (is_nonscalar (array_type)) {
|
||||||
|
expr_t *alias = new_offset_alias_expr (ele_type, array, 0);
|
||||||
|
ptr = new_address_expr (ele_type, alias, 0);
|
||||||
} else {
|
} else {
|
||||||
ptr = array;
|
ptr = array;
|
||||||
}
|
}
|
||||||
ptr = offset_pointer_expr (ptr, index);
|
ptr = offset_pointer_expr (ptr, index);
|
||||||
ptr = cast_expr (pointer_type (array_type->t.array.type), ptr);
|
ptr = cast_expr (pointer_type (ele_type), ptr);
|
||||||
|
|
||||||
e = unary_expr ('.', ptr);
|
e = unary_expr ('.', ptr);
|
||||||
return e;
|
return e;
|
||||||
|
|
|
@ -1005,6 +1005,16 @@ binary_expr (int op, expr_t *e1, expr_t *e2)
|
||||||
return invalid_binary_expr(op, e1, e2);
|
return invalid_binary_expr(op, e1, e2);
|
||||||
if (et2 >= ev_type_count || !binary_expr_types[et1][et2])
|
if (et2 >= ev_type_count || !binary_expr_types[et1][et2])
|
||||||
return invalid_binary_expr(op, e1, e2);
|
return invalid_binary_expr(op, e1, e2);
|
||||||
|
|
||||||
|
if ((t1->width > 1 || t2->width > 1)) {
|
||||||
|
if (t1 != t2) {
|
||||||
|
return invalid_binary_expr (op, e1, e2);
|
||||||
|
}
|
||||||
|
e = new_binary_expr (op, e1, e2);
|
||||||
|
e->e.expr.type = t1;
|
||||||
|
return e;
|
||||||
|
}
|
||||||
|
|
||||||
expr_type = binary_expr_types[et1][et2];
|
expr_type = binary_expr_types[et1][et2];
|
||||||
while (expr_type->op && expr_type->op != op)
|
while (expr_type->op && expr_type->op != op)
|
||||||
expr_type++;
|
expr_type++;
|
||||||
|
|
|
@ -82,20 +82,13 @@ new_compound_init (void)
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static element_t *
|
||||||
build_element_chain (element_chain_t *element_chain, const type_t *type,
|
build_array_element_chain(element_chain_t *element_chain,
|
||||||
expr_t *eles, int base_offset)
|
int array_size, type_t *array_type,
|
||||||
|
element_t *ele,
|
||||||
|
int base_offset)
|
||||||
{
|
{
|
||||||
element_t *ele = eles->e.compound.head;
|
for (int i = 0; i < array_size; i++) {
|
||||||
|
|
||||||
type = unalias_type (type);
|
|
||||||
|
|
||||||
if (is_array (type)) {
|
|
||||||
type_t *array_type = type->t.array.type;
|
|
||||||
int array_size = type->t.array.size;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
for (i = 0; i < array_size; i++) {
|
|
||||||
int offset = base_offset + i * type_size (array_type);
|
int offset = base_offset + i * type_size (array_type);
|
||||||
if (ele && ele->expr && ele->expr->type == ex_compound) {
|
if (ele && ele->expr && ele->expr->type == ex_compound) {
|
||||||
build_element_chain (element_chain, array_type,
|
build_element_chain (element_chain, array_type,
|
||||||
|
@ -111,7 +104,23 @@ build_element_chain (element_chain_t *element_chain, const type_t *type,
|
||||||
ele = ele->next;
|
ele = ele->next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (is_struct (type) || is_vector (type) || is_quaternion (type)) {
|
return ele;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
build_element_chain (element_chain_t *element_chain, const type_t *type,
|
||||||
|
expr_t *eles, int base_offset)
|
||||||
|
{
|
||||||
|
element_t *ele = eles->e.compound.head;
|
||||||
|
|
||||||
|
type = unalias_type (type);
|
||||||
|
|
||||||
|
if (is_array (type)) {
|
||||||
|
type_t *array_type = type->t.array.type;
|
||||||
|
int array_size = type->t.array.size;
|
||||||
|
ele = build_array_element_chain (element_chain, array_size, array_type,
|
||||||
|
ele, base_offset);
|
||||||
|
} else if (is_struct (type) || (is_nonscalar (type) && type->t.symtab)) {
|
||||||
symtab_t *symtab = type->t.symtab;
|
symtab_t *symtab = type->t.symtab;
|
||||||
symbol_t *field;
|
symbol_t *field;
|
||||||
|
|
||||||
|
@ -135,6 +144,12 @@ build_element_chain (element_chain_t *element_chain, const type_t *type,
|
||||||
ele = ele->next;
|
ele = ele->next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (is_nonscalar (type)) {
|
||||||
|
// vector type with unnamed components
|
||||||
|
int vec_width = type_width (type);
|
||||||
|
type_t *vec_type = ev_types[type->type];
|
||||||
|
ele = build_array_element_chain (element_chain, vec_width, vec_type,
|
||||||
|
ele, base_offset);
|
||||||
} else {
|
} else {
|
||||||
error (eles, "invalid initializer");
|
error (eles, "invalid initializer");
|
||||||
}
|
}
|
||||||
|
|
|
@ -311,6 +311,13 @@ typedef struct {
|
||||||
type_t *type;
|
type_t *type;
|
||||||
} keyword_t;
|
} keyword_t;
|
||||||
|
|
||||||
|
// These keywords are part of the Ruamoko language and require the QuakeForge
|
||||||
|
// Ruamoko VM.
|
||||||
|
static keyword_t rua_keywords[] = {
|
||||||
|
#define VEC_TYPE(type_name, base_type) { #type_name, TYPE, &type_##type_name },
|
||||||
|
#include "tools/qfcc/include/vec_types.h"
|
||||||
|
};
|
||||||
|
|
||||||
// These keywords are all part of the Ruamoko (Objective-QC) language.
|
// These keywords are all part of the Ruamoko (Objective-QC) language.
|
||||||
// The first time any one of them is encountered, the class system will be
|
// The first time any one of them is encountered, the class system will be
|
||||||
// initialized.
|
// initialized.
|
||||||
|
@ -450,6 +457,7 @@ keyword_or_id (char *token)
|
||||||
static hashtab_t *qf_keyword_tab;
|
static hashtab_t *qf_keyword_tab;
|
||||||
static hashtab_t *at_keyword_tab;
|
static hashtab_t *at_keyword_tab;
|
||||||
static hashtab_t *obj_keyword_tab;
|
static hashtab_t *obj_keyword_tab;
|
||||||
|
static hashtab_t *rua_keyword_tab;
|
||||||
|
|
||||||
keyword_t *keyword = 0;
|
keyword_t *keyword = 0;
|
||||||
symbol_t *sym;
|
symbol_t *sym;
|
||||||
|
@ -461,6 +469,7 @@ keyword_or_id (char *token)
|
||||||
qf_keyword_tab = Hash_NewTable (253, keyword_get_key, 0, 0, 0);
|
qf_keyword_tab = Hash_NewTable (253, keyword_get_key, 0, 0, 0);
|
||||||
at_keyword_tab = Hash_NewTable (253, keyword_get_key, 0, 0, 0);
|
at_keyword_tab = Hash_NewTable (253, keyword_get_key, 0, 0, 0);
|
||||||
obj_keyword_tab = Hash_NewTable (253, keyword_get_key, 0, 0, 0);
|
obj_keyword_tab = Hash_NewTable (253, keyword_get_key, 0, 0, 0);
|
||||||
|
rua_keyword_tab = Hash_NewTable (253, keyword_get_key, 0, 0, 0);
|
||||||
|
|
||||||
#define NUMKEYS(_k) (sizeof (_k) / sizeof (_k[0]))
|
#define NUMKEYS(_k) (sizeof (_k) / sizeof (_k[0]))
|
||||||
|
|
||||||
|
@ -472,13 +481,20 @@ keyword_or_id (char *token)
|
||||||
Hash_Add (at_keyword_tab, &at_keywords[i]);
|
Hash_Add (at_keyword_tab, &at_keywords[i]);
|
||||||
for (i = 0; i < NUMKEYS(obj_keywords); i++)
|
for (i = 0; i < NUMKEYS(obj_keywords); i++)
|
||||||
Hash_Add (obj_keyword_tab, &obj_keywords[i]);
|
Hash_Add (obj_keyword_tab, &obj_keywords[i]);
|
||||||
|
for (i = 0; i < NUMKEYS(rua_keywords); i++)
|
||||||
|
Hash_Add (rua_keyword_tab, &rua_keywords[i]);
|
||||||
}
|
}
|
||||||
if (options.traditional < 1) {
|
if (options.traditional < 1) {
|
||||||
|
if (options.code.progsversion == PROG_VERSION) {
|
||||||
|
keyword = Hash_Find (rua_keyword_tab, token);
|
||||||
|
}
|
||||||
|
if (!keyword) {
|
||||||
keyword = Hash_Find (obj_keyword_tab, token);
|
keyword = Hash_Find (obj_keyword_tab, token);
|
||||||
if (keyword) {
|
if (keyword) {
|
||||||
if (!obj_initialized)
|
if (!obj_initialized)
|
||||||
class_init ();
|
class_init ();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (!keyword)
|
if (!keyword)
|
||||||
keyword = Hash_Find (qf_keyword_tab, token);
|
keyword = Hash_Find (qf_keyword_tab, token);
|
||||||
}
|
}
|
||||||
|
|
|
@ -79,18 +79,15 @@ type_t type_invalid = {
|
||||||
.name = "invalid",
|
.name = "invalid",
|
||||||
};
|
};
|
||||||
|
|
||||||
#define VTYPE(t, b) \
|
#define VEC_TYPE(type_name, base_type) \
|
||||||
type_t type_##t = { \
|
type_t type_##type_name = { \
|
||||||
.type = ev_##b, \
|
.type = ev_##base_type, \
|
||||||
.name = #t, \
|
.name = #type_name, \
|
||||||
.alignment = PR_ALIGNOF(t), \
|
.alignment = PR_ALIGNOF(type_name), \
|
||||||
.width = PR_SIZEOF(t) / PR_SIZEOF (b), \
|
.width = PR_SIZEOF(type_name) / PR_SIZEOF (base_type), \
|
||||||
.meta = ty_basic, \
|
.meta = ty_basic, \
|
||||||
};
|
};
|
||||||
VTYPE(ivec3, int)
|
#include "tools/qfcc/include/vec_types.h"
|
||||||
VTYPE(ivec4, int)
|
|
||||||
VTYPE(vec3, float)
|
|
||||||
VTYPE(vec4, float)
|
|
||||||
|
|
||||||
type_t *type_nil;
|
type_t *type_nil;
|
||||||
type_t *type_default;
|
type_t *type_default;
|
||||||
|
@ -947,6 +944,13 @@ is_integral (const type_t *type)
|
||||||
return is_enum (type);
|
return is_enum (type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
is_real (const type_t *type)
|
||||||
|
{
|
||||||
|
type = unalias_type (type);
|
||||||
|
return is_float (type) || is_double (type);
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
is_scalar (const type_t *type)
|
is_scalar (const type_t *type)
|
||||||
{
|
{
|
||||||
|
@ -958,7 +962,7 @@ is_scalar (const type_t *type)
|
||||||
if (type->width != 1) {
|
if (type->width != 1) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return is_float (type) || is_integral (type) || is_double (type);
|
return is_real (type) || is_integral (type);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@ -968,7 +972,7 @@ is_nonscalar (const type_t *type)
|
||||||
if (type->width < 2) {
|
if (type->width < 2) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return is_float (type) || is_integral (type) || is_double (type);
|
return is_real (type) || is_integral (type);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@ -1144,20 +1148,21 @@ type_width (const type_t *type)
|
||||||
static void
|
static void
|
||||||
chain_basic_types (void)
|
chain_basic_types (void)
|
||||||
{
|
{
|
||||||
|
type_entity.t.symtab = pr.entity_fields;
|
||||||
|
if (options.code.progsversion == PROG_VERSION) {
|
||||||
|
type_quaternion.alignment = 4;
|
||||||
|
}
|
||||||
|
|
||||||
chain_type (&type_void);
|
chain_type (&type_void);
|
||||||
chain_type (&type_string);
|
chain_type (&type_string);
|
||||||
chain_type (&type_float);
|
chain_type (&type_float);
|
||||||
chain_type (&type_vector);
|
chain_type (&type_vector);
|
||||||
type_entity.t.symtab = pr.entity_fields;
|
|
||||||
chain_type (&type_entity);
|
chain_type (&type_entity);
|
||||||
chain_type (&type_field);
|
chain_type (&type_field);
|
||||||
chain_type (&type_func);
|
chain_type (&type_func);
|
||||||
chain_type (&type_ptr);
|
chain_type (&type_ptr);
|
||||||
chain_type (&type_floatfield);
|
chain_type (&type_floatfield);
|
||||||
if (!options.traditional) {
|
if (!options.traditional) {
|
||||||
if (options.code.progsversion == PROG_VERSION) {
|
|
||||||
type_quaternion.alignment = 4;
|
|
||||||
}
|
|
||||||
chain_type (&type_quaternion);
|
chain_type (&type_quaternion);
|
||||||
chain_type (&type_int);
|
chain_type (&type_int);
|
||||||
chain_type (&type_uint);
|
chain_type (&type_uint);
|
||||||
|
@ -1165,10 +1170,11 @@ chain_basic_types (void)
|
||||||
chain_type (&type_double);
|
chain_type (&type_double);
|
||||||
|
|
||||||
if (options.code.progsversion == PROG_VERSION) {
|
if (options.code.progsversion == PROG_VERSION) {
|
||||||
chain_type (&type_ivec3);
|
chain_type (&type_long);
|
||||||
chain_type (&type_ivec4);
|
chain_type (&type_ulong);
|
||||||
chain_type (&type_vec3);
|
chain_type (&type_ushort);
|
||||||
chain_type (&type_vec4);
|
#define VEC_TYPE(name, type) chain_type (&type_##name);
|
||||||
|
#include "tools/qfcc/include/vec_types.h"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue