9 #define PARSER_HT_LOCALS 2
10 #define PARSER_HT_SIZE 512
11 #define TYPEDEF_HT_SIZE 512
13 static void parser_enterblock(parser_t *parser);
14 static bool parser_leaveblock(parser_t *parser);
15 static void parser_addlocal(parser_t *parser, const char *name, ast_expression *e);
16 static void parser_addlocal(parser_t *parser, const std::string &name, ast_expression *e);
17 static void parser_addglobal(parser_t *parser, const char *name, ast_expression *e);
18 static void parser_addglobal(parser_t *parser, const std::string &name, ast_expression *e);
19 static bool parse_typedef(parser_t *parser);
20 static bool parse_variable(parser_t *parser, ast_block *localblock, bool nofields, int qualifier, ast_value *cached_typedef, bool noref, bool is_static, uint32_t qflags, char *vstring);
21 static ast_block* parse_block(parser_t *parser);
22 static bool parse_block_into(parser_t *parser, ast_block *block);
23 static bool parse_statement_or_block(parser_t *parser, ast_expression **out);
24 static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases);
25 static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma, bool truthvalue, bool with_labels);
26 static ast_expression* parse_expression(parser_t *parser, bool stopatcomma, bool with_labels);
27 static ast_value* parser_create_array_setter_proto(parser_t *parser, ast_value *array, const char *funcname);
28 static ast_value* parser_create_array_getter_proto(parser_t *parser, ast_value *array, const ast_expression *elemtype, const char *funcname);
29 static ast_value *parse_typename(parser_t *parser, ast_value **storebase, ast_value *cached_typedef, bool *is_vararg);
31 static void parseerror_(parser_t *parser, const char *fmt, ...)
35 vcompile_error(parser->lex->tok.ctx, fmt, ap);
39 template<typename... Ts>
40 static inline void parseerror(parser_t *parser, const char *fmt, const Ts&... ts) {
41 return parseerror_(parser, fmt, formatNormalize(ts)...);
44 // returns true if it counts as an error
45 static bool GMQCC_WARN parsewarning_(parser_t *parser, int warntype, const char *fmt, ...)
50 r = vcompile_warning(parser->lex->tok.ctx, warntype, fmt, ap);
55 template<typename... Ts>
56 static inline bool GMQCC_WARN parsewarning(parser_t *parser, int warntype, const char *fmt, const Ts&... ts) {
57 return parsewarning_(parser, warntype, fmt, formatNormalize(ts)...);
60 /**********************************************************************
64 static bool parser_next(parser_t *parser)
66 /* lex_do kills the previous token */
67 parser->tok = lex_do(parser->lex);
68 if (parser->tok == TOKEN_EOF)
70 if (parser->tok >= TOKEN_ERROR) {
71 parseerror(parser, "lex error");
77 #define parser_tokval(p) ((p)->lex->tok.value)
78 #define parser_token(p) (&((p)->lex->tok))
80 char *parser_strdup(const char *str)
83 /* actually dup empty strings */
84 char *out = (char*)mem_a(1);
88 return util_strdup(str);
91 static ast_expression* parser_find_field(parser_t *parser, const char *name) {
92 return (ast_expression*)util_htget(parser->htfields, name);
94 static ast_expression* parser_find_field(parser_t *parser, const std::string &name) {
95 return parser_find_field(parser, name.c_str());
98 static ast_expression* parser_find_label(parser_t *parser, const char *name)
100 for (auto &it : parser->labels)
101 if (it->m_name == name)
105 static inline ast_expression* parser_find_label(parser_t *parser, const std::string &name) {
106 return parser_find_label(parser, name.c_str());
109 ast_expression* parser_find_global(parser_t *parser, const char *name)
111 ast_expression *var = (ast_expression*)util_htget(parser->aliases, parser_tokval(parser));
114 return (ast_expression*)util_htget(parser->htglobals, name);
117 ast_expression* parser_find_global(parser_t *parser, const std::string &name) {
118 return parser_find_global(parser, name.c_str());
121 static ast_expression* parser_find_param(parser_t *parser, const char *name)
124 if (!parser->function)
126 fun = parser->function->m_function_type;
127 for (auto &it : fun->m_type_params) {
128 if (it->m_name == name)
134 static ast_expression* parser_find_local(parser_t *parser, const char *name, size_t upto, bool *isparam)
139 hash = util_hthash(parser->htglobals, name);
142 for (i = vec_size(parser->variables); i > upto;) {
144 if ( (e = (ast_expression*)util_htgeth(parser->variables[i], name, hash)) )
148 return parser_find_param(parser, name);
151 static ast_expression* parser_find_local(parser_t *parser, const std::string &name, size_t upto, bool *isparam) {
152 return parser_find_local(parser, name.c_str(), upto, isparam);
155 static ast_expression* parser_find_var(parser_t *parser, const char *name)
159 v = parser_find_local(parser, name, 0, &dummy);
160 if (!v) v = parser_find_global(parser, name);
164 static inline ast_expression* parser_find_var(parser_t *parser, const std::string &name) {
165 return parser_find_var(parser, name.c_str());
168 static ast_value* parser_find_typedef(parser_t *parser, const char *name, size_t upto)
172 hash = util_hthash(parser->typedefs[0], name);
174 for (i = vec_size(parser->typedefs); i > upto;) {
176 if ( (e = (ast_value*)util_htgeth(parser->typedefs[i], name, hash)) )
182 static ast_value* parser_find_typedef(parser_t *parser, const std::string &name, size_t upto) {
183 return parser_find_typedef(parser, name.c_str(), upto);
187 size_t etype; /* 0 = expression, others are operators */
191 ast_block *block; /* for commas and function calls */
204 std::vector<sy_elem> out;
205 std::vector<sy_elem> ops;
206 std::vector<size_t> argc;
207 std::vector<unsigned int> paren;
210 static sy_elem syexp(lex_ctx_t ctx, ast_expression *v) {
221 static sy_elem syblock(lex_ctx_t ctx, ast_block *v) {
232 static sy_elem syop(lex_ctx_t ctx, const oper_info *op) {
234 e.etype = 1 + (op - operators);
243 static sy_elem syparen(lex_ctx_t ctx, size_t off) {
254 /* With regular precedence rules, ent.foo[n] is the same as (ent.foo)[n],
255 * so we need to rotate it to become ent.(foo[n]).
257 static bool rotate_entfield_array_index_nodes(ast_expression **out)
259 ast_array_index *index, *oldindex;
260 ast_entfield *entfield;
264 ast_expression *entity;
266 lex_ctx_t ctx = (*out)->m_context;
268 if (!ast_istype(*out, ast_array_index))
270 index = (ast_array_index*)*out;
272 if (!ast_istype(index->m_array, ast_entfield))
274 entfield = (ast_entfield*)index->m_array;
276 if (!ast_istype(entfield->m_field, ast_value))
278 field = (ast_value*)entfield->m_field;
280 sub = index->m_index;
281 entity = entfield->m_entity;
285 index = ast_array_index::make(ctx, field, sub);
286 entfield = new ast_entfield(ctx, entity, index);
289 oldindex->m_array = nullptr;
290 oldindex->m_index = nullptr;
296 static bool check_write_to(lex_ctx_t ctx, ast_expression *expr)
298 if (ast_istype(expr, ast_value)) {
299 ast_value *val = (ast_value*)expr;
300 if (val->m_cvq == CV_CONST) {
301 if (val->m_name[0] == '#') {
302 compile_error(ctx, "invalid assignment to a literal constant");
306 * To work around quakeworld we must elide the error and make it
309 if (OPTS_OPTION_U32(OPTION_STANDARD) != COMPILER_QCC)
310 compile_error(ctx, "assignment to constant `%s`", val->m_name);
312 (void)!compile_warning(ctx, WARN_CONST_OVERWRITE, "assignment to constant `%s`", val->m_name);
319 static bool parser_sy_apply_operator(parser_t *parser, shunt *sy)
323 ast_expression *out = nullptr;
324 ast_expression *exprs[3];
325 ast_block *blocks[3];
326 ast_binstore *asbinstore;
327 size_t i, assignop, addop, subop;
328 qcint_t generated_op = 0;
333 if (sy->ops.empty()) {
334 parseerror(parser, "internal error: missing operator");
338 if (sy->ops.back().isparen) {
339 parseerror(parser, "unmatched parenthesis");
343 op = &operators[sy->ops.back().etype - 1];
344 ctx = sy->ops.back().ctx;
346 if (sy->out.size() < op->operands) {
347 if (op->flags & OP_PREFIX)
348 compile_error(ctx, "expected expression after unary operator `%s`", op->op, (int)op->id);
349 else /* this should have errored previously already */
350 compile_error(ctx, "expected expression after operator `%s`", op->op, (int)op->id);
356 /* op(:?) has no input and no output */
360 sy->out.erase(sy->out.end() - op->operands, sy->out.end());
361 for (i = 0; i < op->operands; ++i) {
362 exprs[i] = sy->out[sy->out.size()+i].out;
363 blocks[i] = sy->out[sy->out.size()+i].block;
365 if (exprs[i]->m_vtype == TYPE_NOEXPR &&
366 !(i != 0 && op->id == opid2('?',':')) &&
367 !(i == 1 && op->id == opid1('.')))
369 if (ast_istype(exprs[i], ast_label))
370 compile_error(exprs[i]->m_context, "expected expression, got an unknown identifier");
372 compile_error(exprs[i]->m_context, "not an expression");
373 (void)!compile_warning(exprs[i]->m_context, WARN_DEBUG, "expression %u\n", (unsigned int)i);
377 if (blocks[0] && blocks[0]->m_exprs.empty() && op->id != opid1(',')) {
378 compile_error(ctx, "internal error: operator cannot be applied on empty blocks");
382 #define NotSameType(T) \
383 (exprs[0]->m_vtype != exprs[1]->m_vtype || \
384 exprs[0]->m_vtype != T)
389 compile_error(ctx, "internal error: unhandled operator: %s (%i)", op->op, (int)op->id);
393 if (exprs[0]->m_vtype == TYPE_VECTOR &&
394 exprs[1]->m_vtype == TYPE_NOEXPR)
396 if (exprs[1] == parser->const_vec[0])
397 out = ast_member::make(ctx, exprs[0], 0, "");
398 else if (exprs[1] == parser->const_vec[1])
399 out = ast_member::make(ctx, exprs[0], 1, "");
400 else if (exprs[1] == parser->const_vec[2])
401 out = ast_member::make(ctx, exprs[0], 2, "");
403 compile_error(ctx, "access to invalid vector component");
407 else if (exprs[0]->m_vtype == TYPE_ENTITY) {
408 if (exprs[1]->m_vtype != TYPE_FIELD) {
409 compile_error(exprs[1]->m_context, "type error: right hand of member-operand should be an entity-field");
412 out = new ast_entfield(ctx, exprs[0], exprs[1]);
414 else if (exprs[0]->m_vtype == TYPE_VECTOR) {
415 compile_error(exprs[1]->m_context, "vectors cannot be accessed this way");
419 compile_error(exprs[1]->m_context, "type error: member-of operator on something that is not an entity or vector");
425 if (exprs[0]->m_vtype != TYPE_ARRAY &&
426 !(exprs[0]->m_vtype == TYPE_FIELD &&
427 exprs[0]->m_next->m_vtype == TYPE_ARRAY))
429 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
430 compile_error(exprs[0]->m_context, "cannot index value of type %s", ty1);
433 if (exprs[1]->m_vtype != TYPE_FLOAT) {
434 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
435 compile_error(exprs[1]->m_context, "index must be of type float, not %s", ty1);
438 out = ast_array_index::make(ctx, exprs[0], exprs[1]);
439 rotate_entfield_array_index_nodes(&out);
443 if (sy->paren.size() && sy->paren.back() == PAREN_FUNC) {
444 sy->out.push_back(syexp(ctx, exprs[0]));
445 sy->out.push_back(syexp(ctx, exprs[1]));
450 if (!blocks[0]->addExpr(exprs[1]))
453 blocks[0] = new ast_block(ctx);
454 if (!blocks[0]->addExpr(exprs[0]) ||
455 !blocks[0]->addExpr(exprs[1]))
460 blocks[0]->setType(*exprs[1]);
462 sy->out.push_back(syblock(ctx, blocks[0]));
469 if ((out = parser->m_fold.op(op, exprs)))
472 if (exprs[0]->m_vtype != TYPE_FLOAT &&
473 exprs[0]->m_vtype != TYPE_VECTOR) {
474 compile_error(ctx, "invalid types used in unary expression: cannot negate type %s",
475 type_name[exprs[0]->m_vtype]);
478 if (exprs[0]->m_vtype == TYPE_FLOAT)
479 out = ast_unary::make(ctx, VINSTR_NEG_F, exprs[0]);
481 out = ast_unary::make(ctx, VINSTR_NEG_V, exprs[0]);
485 if (!(out = parser->m_fold.op(op, exprs))) {
486 switch (exprs[0]->m_vtype) {
488 out = ast_unary::make(ctx, INSTR_NOT_F, exprs[0]);
491 out = ast_unary::make(ctx, INSTR_NOT_V, exprs[0]);
494 if (OPTS_FLAG(TRUE_EMPTY_STRINGS))
495 out = ast_unary::make(ctx, INSTR_NOT_F, exprs[0]);
497 out = ast_unary::make(ctx, INSTR_NOT_S, exprs[0]);
499 /* we don't constant-fold NOT for these types */
501 out = ast_unary::make(ctx, INSTR_NOT_ENT, exprs[0]);
504 out = ast_unary::make(ctx, INSTR_NOT_FNC, exprs[0]);
507 compile_error(ctx, "invalid types used in expression: cannot logically negate type %s",
508 type_name[exprs[0]->m_vtype]);
515 if (exprs[0]->m_vtype != exprs[1]->m_vtype ||
516 (exprs[0]->m_vtype != TYPE_VECTOR && exprs[0]->m_vtype != TYPE_FLOAT) )
518 compile_error(ctx, "invalid types used in expression: cannot add type %s and %s",
519 type_name[exprs[0]->m_vtype],
520 type_name[exprs[1]->m_vtype]);
523 if (!(out = parser->m_fold.op(op, exprs))) {
524 switch (exprs[0]->m_vtype) {
526 out = fold::binary(ctx, INSTR_ADD_F, exprs[0], exprs[1]);
529 out = fold::binary(ctx, INSTR_ADD_V, exprs[0], exprs[1]);
532 compile_error(ctx, "invalid types used in expression: cannot add type %s and %s",
533 type_name[exprs[0]->m_vtype],
534 type_name[exprs[1]->m_vtype]);
540 if (exprs[0]->m_vtype != exprs[1]->m_vtype ||
541 (exprs[0]->m_vtype != TYPE_VECTOR && exprs[0]->m_vtype != TYPE_FLOAT))
543 compile_error(ctx, "invalid types used in expression: cannot subtract type %s from %s",
544 type_name[exprs[1]->m_vtype],
545 type_name[exprs[0]->m_vtype]);
548 if (!(out = parser->m_fold.op(op, exprs))) {
549 switch (exprs[0]->m_vtype) {
551 out = fold::binary(ctx, INSTR_SUB_F, exprs[0], exprs[1]);
554 out = fold::binary(ctx, INSTR_SUB_V, exprs[0], exprs[1]);
557 compile_error(ctx, "invalid types used in expression: cannot subtract type %s from %s",
558 type_name[exprs[1]->m_vtype],
559 type_name[exprs[0]->m_vtype]);
565 if (exprs[0]->m_vtype != exprs[1]->m_vtype &&
566 !(exprs[0]->m_vtype == TYPE_VECTOR &&
567 exprs[1]->m_vtype == TYPE_FLOAT) &&
568 !(exprs[1]->m_vtype == TYPE_VECTOR &&
569 exprs[0]->m_vtype == TYPE_FLOAT)
572 compile_error(ctx, "invalid types used in expression: cannot multiply types %s and %s",
573 type_name[exprs[1]->m_vtype],
574 type_name[exprs[0]->m_vtype]);
577 if (!(out = parser->m_fold.op(op, exprs))) {
578 switch (exprs[0]->m_vtype) {
580 if (exprs[1]->m_vtype == TYPE_VECTOR)
581 out = fold::binary(ctx, INSTR_MUL_FV, exprs[0], exprs[1]);
583 out = fold::binary(ctx, INSTR_MUL_F, exprs[0], exprs[1]);
586 if (exprs[1]->m_vtype == TYPE_FLOAT)
587 out = fold::binary(ctx, INSTR_MUL_VF, exprs[0], exprs[1]);
589 out = fold::binary(ctx, INSTR_MUL_V, exprs[0], exprs[1]);
592 compile_error(ctx, "invalid types used in expression: cannot multiply types %s and %s",
593 type_name[exprs[1]->m_vtype],
594 type_name[exprs[0]->m_vtype]);
601 if (exprs[1]->m_vtype != TYPE_FLOAT) {
602 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
603 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
604 compile_error(ctx, "invalid types used in expression: cannot divide types %s and %s", ty1, ty2);
607 if (!(out = parser->m_fold.op(op, exprs))) {
608 if (exprs[0]->m_vtype == TYPE_FLOAT)
609 out = fold::binary(ctx, INSTR_DIV_F, exprs[0], exprs[1]);
611 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
612 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
613 compile_error(ctx, "invalid types used in expression: cannot divide types %s and %s", ty1, ty2);
620 if (NotSameType(TYPE_FLOAT)) {
621 compile_error(ctx, "invalid types used in expression: cannot perform modulo operation between types %s and %s",
622 type_name[exprs[0]->m_vtype],
623 type_name[exprs[1]->m_vtype]);
625 } else if (!(out = parser->m_fold.op(op, exprs))) {
626 /* generate a call to __builtin_mod */
627 ast_expression *mod = parser->m_intrin.func("mod");
628 ast_call *call = nullptr;
629 if (!mod) return false; /* can return null for missing floor */
631 call = ast_call::make(parser_ctx(parser), mod);
632 call->m_params.push_back(exprs[0]);
633 call->m_params.push_back(exprs[1]);
640 compile_error(ctx, "%= is unimplemented");
646 if ( !(exprs[0]->m_vtype == TYPE_FLOAT && exprs[1]->m_vtype == TYPE_FLOAT) &&
647 !(exprs[0]->m_vtype == TYPE_VECTOR && exprs[1]->m_vtype == TYPE_FLOAT) &&
648 !(exprs[0]->m_vtype == TYPE_VECTOR && exprs[1]->m_vtype == TYPE_VECTOR))
650 compile_error(ctx, "invalid types used in expression: cannot perform bit operations between types %s and %s",
651 type_name[exprs[0]->m_vtype],
652 type_name[exprs[1]->m_vtype]);
656 if (!(out = parser->m_fold.op(op, exprs))) {
658 * IF the first expression is float, the following will be too
659 * since scalar ^ vector is not allowed.
661 if (exprs[0]->m_vtype == TYPE_FLOAT) {
662 out = fold::binary(ctx,
663 (op->id == opid1('^') ? VINSTR_BITXOR : op->id == opid1('|') ? INSTR_BITOR : INSTR_BITAND),
667 * The first is a vector: vector is allowed to bitop with vector and
668 * with scalar, branch here for the second operand.
670 if (exprs[1]->m_vtype == TYPE_VECTOR) {
672 * Bitop all the values of the vector components against the
673 * vectors components in question.
675 out = fold::binary(ctx,
676 (op->id == opid1('^') ? VINSTR_BITXOR_V : op->id == opid1('|') ? VINSTR_BITOR_V : VINSTR_BITAND_V),
679 out = fold::binary(ctx,
680 (op->id == opid1('^') ? VINSTR_BITXOR_VF : op->id == opid1('|') ? VINSTR_BITOR_VF : VINSTR_BITAND_VF),
689 if (NotSameType(TYPE_FLOAT)) {
690 compile_error(ctx, "invalid types used in expression: cannot perform shift between types %s and %s",
691 type_name[exprs[0]->m_vtype],
692 type_name[exprs[1]->m_vtype]);
696 if (!(out = parser->m_fold.op(op, exprs))) {
697 ast_expression *shift = parser->m_intrin.func((op->id == opid2('<','<')) ? "__builtin_lshift" : "__builtin_rshift");
698 ast_call *call = ast_call::make(parser_ctx(parser), shift);
699 call->m_params.push_back(exprs[0]);
700 call->m_params.push_back(exprs[1]);
705 case opid3('<','<','='):
706 case opid3('>','>','='):
707 if (NotSameType(TYPE_FLOAT)) {
708 compile_error(ctx, "invalid types used in expression: cannot perform shift operation between types %s and %s",
709 type_name[exprs[0]->m_vtype],
710 type_name[exprs[1]->m_vtype]);
714 if(!(out = parser->m_fold.op(op, exprs))) {
715 ast_expression *shift = parser->m_intrin.func((op->id == opid3('<','<','=')) ? "__builtin_lshift" : "__builtin_rshift");
716 ast_call *call = ast_call::make(parser_ctx(parser), shift);
717 call->m_params.push_back(exprs[0]);
718 call->m_params.push_back(exprs[1]);
730 generated_op += 1; /* INSTR_OR */
732 generated_op += INSTR_AND;
733 if (!(out = parser->m_fold.op(op, exprs))) {
734 if (OPTS_FLAG(PERL_LOGIC) && !exprs[0]->compareType(*exprs[1])) {
735 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
736 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
737 compile_error(ctx, "invalid types for logical operation with -fperl-logic: %s and %s", ty1, ty2);
740 for (i = 0; i < 2; ++i) {
741 if (OPTS_FLAG(CORRECT_LOGIC) && exprs[i]->m_vtype == TYPE_VECTOR) {
742 out = ast_unary::make(ctx, INSTR_NOT_V, exprs[i]);
744 out = ast_unary::make(ctx, INSTR_NOT_F, out);
746 exprs[i] = out; out = nullptr;
747 if (OPTS_FLAG(PERL_LOGIC)) {
748 /* here we want to keep the right expressions' type */
752 else if (OPTS_FLAG(FALSE_EMPTY_STRINGS) && exprs[i]->m_vtype == TYPE_STRING) {
753 out = ast_unary::make(ctx, INSTR_NOT_S, exprs[i]);
755 out = ast_unary::make(ctx, INSTR_NOT_F, out);
757 exprs[i] = out; out = nullptr;
758 if (OPTS_FLAG(PERL_LOGIC)) {
759 /* here we want to keep the right expressions' type */
764 out = fold::binary(ctx, generated_op, exprs[0], exprs[1]);
769 if (sy->paren.back() != PAREN_TERNARY2) {
770 compile_error(ctx, "mismatched parenthesis/ternary");
773 sy->paren.pop_back();
774 if (!exprs[1]->compareType(*exprs[2])) {
775 ast_type_to_string(exprs[1], ty1, sizeof(ty1));
776 ast_type_to_string(exprs[2], ty2, sizeof(ty2));
777 compile_error(ctx, "operands of ternary expression must have the same type, got %s and %s", ty1, ty2);
780 if (!(out = parser->m_fold.op(op, exprs)))
781 out = new ast_ternary(ctx, exprs[0], exprs[1], exprs[2]);
784 case opid2('*', '*'):
785 if (NotSameType(TYPE_FLOAT)) {
786 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
787 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
788 compile_error(ctx, "invalid types used in exponentiation: %s and %s",
793 if (!(out = parser->m_fold.op(op, exprs))) {
794 ast_call *gencall = ast_call::make(parser_ctx(parser), parser->m_intrin.func("pow"));
795 gencall->m_params.push_back(exprs[0]);
796 gencall->m_params.push_back(exprs[1]);
801 case opid2('>', '<'):
802 if (NotSameType(TYPE_VECTOR)) {
803 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
804 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
805 compile_error(ctx, "invalid types used in cross product: %s and %s",
810 if (!(out = parser->m_fold.op(op, exprs))) {
821 case opid3('<','=','>'): /* -1, 0, or 1 */
822 if (NotSameType(TYPE_FLOAT)) {
823 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
824 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
825 compile_error(ctx, "invalid types used in comparision: %s and %s",
831 if (!(out = parser->m_fold.op(op, exprs))) {
832 /* This whole block is NOT fold_binary safe */
833 ast_binary *eq = new ast_binary(ctx, INSTR_EQ_F, exprs[0], exprs[1]);
835 eq->m_refs = AST_REF_NONE;
838 out = new ast_ternary(ctx,
839 new ast_binary(ctx, INSTR_LT, exprs[0], exprs[1]),
841 parser->m_fold.imm_float(2),
844 new ast_ternary(ctx, eq,
846 parser->m_fold.imm_float(0),
849 parser->m_fold.imm_float(1)
859 generated_op += 1; /* INSTR_GT */
861 generated_op += 1; /* INSTR_LT */
862 case opid2('>', '='):
863 generated_op += 1; /* INSTR_GE */
864 case opid2('<', '='):
865 generated_op += INSTR_LE;
866 if (NotSameType(TYPE_FLOAT)) {
867 compile_error(ctx, "invalid types used in expression: cannot perform comparison between types %s and %s",
868 type_name[exprs[0]->m_vtype],
869 type_name[exprs[1]->m_vtype]);
872 if (!(out = parser->m_fold.op(op, exprs)))
873 out = fold::binary(ctx, generated_op, exprs[0], exprs[1]);
875 case opid2('!', '='):
876 if (exprs[0]->m_vtype != exprs[1]->m_vtype) {
877 compile_error(ctx, "invalid types used in expression: cannot perform comparison between types %s and %s",
878 type_name[exprs[0]->m_vtype],
879 type_name[exprs[1]->m_vtype]);
882 if (!(out = parser->m_fold.op(op, exprs)))
883 out = fold::binary(ctx, type_ne_instr[exprs[0]->m_vtype], exprs[0], exprs[1]);
885 case opid2('=', '='):
886 if (exprs[0]->m_vtype != exprs[1]->m_vtype) {
887 compile_error(ctx, "invalid types used in expression: cannot perform comparison between types %s and %s",
888 type_name[exprs[0]->m_vtype],
889 type_name[exprs[1]->m_vtype]);
892 if (!(out = parser->m_fold.op(op, exprs)))
893 out = fold::binary(ctx, type_eq_instr[exprs[0]->m_vtype], exprs[0], exprs[1]);
897 if (ast_istype(exprs[0], ast_entfield)) {
898 ast_expression *field = ((ast_entfield*)exprs[0])->m_field;
899 if (OPTS_FLAG(ADJUST_VECTOR_FIELDS) &&
900 exprs[0]->m_vtype == TYPE_FIELD &&
901 exprs[0]->m_next->m_vtype == TYPE_VECTOR)
903 assignop = type_storep_instr[TYPE_VECTOR];
906 assignop = type_storep_instr[exprs[0]->m_vtype];
907 if (assignop == VINSTR_END || !field->m_next->compareType(*exprs[1]))
909 ast_type_to_string(field->m_next, ty1, sizeof(ty1));
910 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
911 if (OPTS_FLAG(ASSIGN_FUNCTION_TYPES) &&
912 field->m_next->m_vtype == TYPE_FUNCTION &&
913 exprs[1]->m_vtype == TYPE_FUNCTION)
915 (void)!compile_warning(ctx, WARN_ASSIGN_FUNCTION_TYPES,
916 "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
919 compile_error(ctx, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
924 if (OPTS_FLAG(ADJUST_VECTOR_FIELDS) &&
925 exprs[0]->m_vtype == TYPE_FIELD &&
926 exprs[0]->m_next->m_vtype == TYPE_VECTOR)
928 assignop = type_store_instr[TYPE_VECTOR];
931 assignop = type_store_instr[exprs[0]->m_vtype];
934 if (assignop == VINSTR_END) {
935 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
936 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
937 compile_error(ctx, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
939 else if (!exprs[0]->compareType(*exprs[1]))
941 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
942 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
943 if (OPTS_FLAG(ASSIGN_FUNCTION_TYPES) &&
944 exprs[0]->m_vtype == TYPE_FUNCTION &&
945 exprs[1]->m_vtype == TYPE_FUNCTION)
947 (void)!compile_warning(ctx, WARN_ASSIGN_FUNCTION_TYPES,
948 "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
951 compile_error(ctx, "invalid types in assignment: cannot assign %s to %s", ty2, ty1);
954 (void)check_write_to(ctx, exprs[0]);
955 /* When we're a vector of part of an entity field we use STOREP */
956 if (ast_istype(exprs[0], ast_member) && ast_istype(((ast_member*)exprs[0])->m_owner, ast_entfield))
957 assignop = INSTR_STOREP_F;
958 out = new ast_store(ctx, assignop, exprs[0], exprs[1]);
960 case opid3('+','+','P'):
961 case opid3('-','-','P'):
963 if (exprs[0]->m_vtype != TYPE_FLOAT) {
964 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
965 compile_error(exprs[0]->m_context, "invalid type for prefix increment: %s", ty1);
968 if (op->id == opid3('+','+','P'))
972 (void)check_write_to(exprs[0]->m_context, exprs[0]);
973 if (ast_istype(exprs[0], ast_entfield)) {
974 out = new ast_binstore(ctx, INSTR_STOREP_F, addop,
976 parser->m_fold.imm_float(1));
978 out = new ast_binstore(ctx, INSTR_STORE_F, addop,
980 parser->m_fold.imm_float(1));
983 case opid3('S','+','+'):
984 case opid3('S','-','-'):
986 if (exprs[0]->m_vtype != TYPE_FLOAT) {
987 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
988 compile_error(exprs[0]->m_context, "invalid type for suffix increment: %s", ty1);
991 if (op->id == opid3('S','+','+')) {
998 (void)check_write_to(exprs[0]->m_context, exprs[0]);
999 if (ast_istype(exprs[0], ast_entfield)) {
1000 out = new ast_binstore(ctx, INSTR_STOREP_F, addop,
1002 parser->m_fold.imm_float(1));
1004 out = new ast_binstore(ctx, INSTR_STORE_F, addop,
1006 parser->m_fold.imm_float(1));
1010 out = fold::binary(ctx, subop,
1012 parser->m_fold.imm_float(1));
1015 case opid2('+','='):
1016 case opid2('-','='):
1017 if (exprs[0]->m_vtype != exprs[1]->m_vtype ||
1018 (exprs[0]->m_vtype != TYPE_VECTOR && exprs[0]->m_vtype != TYPE_FLOAT) )
1020 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1021 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1022 compile_error(ctx, "invalid types used in expression: cannot add or subtract type %s and %s",
1026 (void)check_write_to(ctx, exprs[0]);
1027 if (ast_istype(exprs[0], ast_entfield))
1028 assignop = type_storep_instr[exprs[0]->m_vtype];
1030 assignop = type_store_instr[exprs[0]->m_vtype];
1031 switch (exprs[0]->m_vtype) {
1033 out = new ast_binstore(ctx, assignop,
1034 (op->id == opid2('+','=') ? INSTR_ADD_F : INSTR_SUB_F),
1035 exprs[0], exprs[1]);
1038 out = new ast_binstore(ctx, assignop,
1039 (op->id == opid2('+','=') ? INSTR_ADD_V : INSTR_SUB_V),
1040 exprs[0], exprs[1]);
1043 compile_error(ctx, "invalid types used in expression: cannot add or subtract type %s and %s",
1044 type_name[exprs[0]->m_vtype],
1045 type_name[exprs[1]->m_vtype]);
1049 case opid2('*','='):
1050 case opid2('/','='):
1051 if (exprs[1]->m_vtype != TYPE_FLOAT ||
1052 !(exprs[0]->m_vtype == TYPE_FLOAT ||
1053 exprs[0]->m_vtype == TYPE_VECTOR))
1055 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1056 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1057 compile_error(ctx, "invalid types used in expression: %s and %s",
1061 (void)check_write_to(ctx, exprs[0]);
1062 if (ast_istype(exprs[0], ast_entfield))
1063 assignop = type_storep_instr[exprs[0]->m_vtype];
1065 assignop = type_store_instr[exprs[0]->m_vtype];
1066 switch (exprs[0]->m_vtype) {
1068 out = new ast_binstore(ctx, assignop,
1069 (op->id == opid2('*','=') ? INSTR_MUL_F : INSTR_DIV_F),
1070 exprs[0], exprs[1]);
1073 if (op->id == opid2('*','=')) {
1074 out = new ast_binstore(ctx, assignop, INSTR_MUL_VF,
1075 exprs[0], exprs[1]);
1077 out = fold::binary(ctx, INSTR_DIV_F,
1078 parser->m_fold.imm_float(1),
1081 compile_error(ctx, "internal error: failed to generate division");
1084 out = new ast_binstore(ctx, assignop, INSTR_MUL_VF,
1089 compile_error(ctx, "invalid types used in expression: cannot add or subtract type %s and %s",
1090 type_name[exprs[0]->m_vtype],
1091 type_name[exprs[1]->m_vtype]);
1095 case opid2('&','='):
1096 case opid2('|','='):
1097 case opid2('^','='):
1098 if (NotSameType(TYPE_FLOAT) && NotSameType(TYPE_VECTOR)) {
1099 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1100 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1101 compile_error(ctx, "invalid types used in expression: %s and %s",
1105 (void)check_write_to(ctx, exprs[0]);
1106 if (ast_istype(exprs[0], ast_entfield))
1107 assignop = type_storep_instr[exprs[0]->m_vtype];
1109 assignop = type_store_instr[exprs[0]->m_vtype];
1110 if (exprs[0]->m_vtype == TYPE_FLOAT)
1111 out = new ast_binstore(ctx, assignop,
1112 (op->id == opid2('^','=') ? VINSTR_BITXOR : op->id == opid2('&','=') ? INSTR_BITAND : INSTR_BITOR),
1113 exprs[0], exprs[1]);
1115 out = new ast_binstore(ctx, assignop,
1116 (op->id == opid2('^','=') ? VINSTR_BITXOR_V : op->id == opid2('&','=') ? VINSTR_BITAND_V : VINSTR_BITOR_V),
1117 exprs[0], exprs[1]);
1119 case opid3('&','~','='):
1120 /* This is like: a &= ~(b);
1121 * But QC has no bitwise-not, so we implement it as
1124 if (NotSameType(TYPE_FLOAT) && NotSameType(TYPE_VECTOR)) {
1125 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1126 ast_type_to_string(exprs[1], ty2, sizeof(ty2));
1127 compile_error(ctx, "invalid types used in expression: %s and %s",
1131 if (ast_istype(exprs[0], ast_entfield))
1132 assignop = type_storep_instr[exprs[0]->m_vtype];
1134 assignop = type_store_instr[exprs[0]->m_vtype];
1135 if (exprs[0]->m_vtype == TYPE_FLOAT)
1136 out = fold::binary(ctx, INSTR_BITAND, exprs[0], exprs[1]);
1138 out = fold::binary(ctx, VINSTR_BITAND_V, exprs[0], exprs[1]);
1141 (void)check_write_to(ctx, exprs[0]);
1142 if (exprs[0]->m_vtype == TYPE_FLOAT)
1143 asbinstore = new ast_binstore(ctx, assignop, INSTR_SUB_F, exprs[0], out);
1145 asbinstore = new ast_binstore(ctx, assignop, INSTR_SUB_V, exprs[0], out);
1146 asbinstore->m_keep_dest = true;
1150 case opid3('l', 'e', 'n'):
1151 if (exprs[0]->m_vtype != TYPE_STRING && exprs[0]->m_vtype != TYPE_ARRAY) {
1152 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1153 compile_error(exprs[0]->m_context, "invalid type for length operator: %s", ty1);
1156 /* strings must be const, arrays are statically sized */
1157 if (exprs[0]->m_vtype == TYPE_STRING &&
1158 !(((ast_value*)exprs[0])->m_hasvalue && ((ast_value*)exprs[0])->m_cvq == CV_CONST))
1160 compile_error(exprs[0]->m_context, "operand of length operator not a valid constant expression");
1163 out = parser->m_fold.op(op, exprs);
1166 case opid2('~', 'P'):
1167 if (exprs[0]->m_vtype != TYPE_FLOAT && exprs[0]->m_vtype != TYPE_VECTOR) {
1168 ast_type_to_string(exprs[0], ty1, sizeof(ty1));
1169 compile_error(exprs[0]->m_context, "invalid type for bit not: %s", ty1);
1172 if (!(out = parser->m_fold.op(op, exprs))) {
1173 if (exprs[0]->m_vtype == TYPE_FLOAT) {
1174 out = fold::binary(ctx, INSTR_SUB_F, parser->m_fold.imm_float(2), exprs[0]);
1176 out = fold::binary(ctx, INSTR_SUB_V, parser->m_fold.imm_vector(1), exprs[0]);
1183 compile_error(ctx, "failed to apply operator %s", op->op);
1187 sy->out.push_back(syexp(ctx, out));
1191 static bool parser_close_call(parser_t *parser, shunt *sy)
1193 /* was a function call */
1194 ast_expression *fun;
1195 ast_value *funval = nullptr;
1199 size_t paramcount, i;
1202 fid = sy->ops.back().off;
1205 /* out[fid] is the function
1206 * everything above is parameters...
1208 if (sy->argc.empty()) {
1209 parseerror(parser, "internal error: no argument counter available");
1213 paramcount = sy->argc.back();
1214 sy->argc.pop_back();
1216 if (sy->out.size() < fid) {
1217 parseerror(parser, "internal error: broken function call %zu < %zu+%zu\n",
1225 * TODO handle this at the intrinsic level with an ast_intrinsic
1228 if ((fun = sy->out[fid].out) == parser->m_intrin.debug_typestring()) {
1230 if (fid+2 != sy->out.size() || sy->out.back().block) {
1231 parseerror(parser, "intrinsic __builtin_debug_typestring requires exactly 1 parameter");
1234 ast_type_to_string(sy->out.back().out, ty, sizeof(ty));
1235 ast_unref(sy->out.back().out);
1236 sy->out[fid] = syexp(sy->out.back().out->m_context,
1237 parser->m_fold.constgen_string(ty, false));
1243 * Now we need to determine if the function that is being called is
1244 * an intrinsic so we can evaluate if the arguments to it are constant
1245 * and than fruitfully fold them.
1247 #define fold_can_1(X) \
1248 (ast_istype(((X)), ast_value) && (X)->m_hasvalue && ((X)->m_cvq == CV_CONST) && \
1249 ((X))->m_vtype != TYPE_FUNCTION)
1251 if (fid + 1 < sy->out.size())
1254 for (i = 0; i < paramcount; ++i) {
1255 if (!fold_can_1((ast_value*)sy->out[fid + 1 + i].out)) {
1262 * All is well which ends well, if we make it into here we can ignore the
1263 * intrinsic call and just evaluate it i.e constant fold it.
1265 if (fold && ast_istype(fun, ast_value) && ((ast_value*)fun)->m_intrinsic) {
1266 ast_expression **exprs = nullptr;
1267 ast_expression *foldval = nullptr;
1269 for (i = 0; i < paramcount; i++)
1270 vec_push(exprs, sy->out[fid+1 + i].out);
1272 if (!(foldval = parser->m_intrin.do_fold((ast_value*)fun, exprs))) {
1278 * Blub: what sorts of unreffing and resizing of
1279 * sy->out should I be doing here?
1281 sy->out[fid] = syexp(foldval->m_context, foldval);
1282 sy->out.erase(sy->out.end() - paramcount, sy->out.end());
1289 call = ast_call::make(sy->ops[sy->ops.size()].ctx, fun);
1294 if (fid+1 + paramcount != sy->out.size()) {
1295 parseerror(parser, "internal error: parameter count mismatch: (%zu+1+%zu), %zu",
1302 for (i = 0; i < paramcount; ++i)
1303 call->m_params.push_back(sy->out[fid+1 + i].out);
1304 sy->out.erase(sy->out.end() - paramcount, sy->out.end());
1305 (void)!call->checkTypes(parser->function->m_function_type->m_varparam);
1306 if (parser->max_param_count < paramcount)
1307 parser->max_param_count = paramcount;
1309 if (ast_istype(fun, ast_value)) {
1310 funval = (ast_value*)fun;
1311 if ((fun->m_flags & AST_FLAG_VARIADIC) &&
1312 !(/*funval->m_cvq == CV_CONST && */ funval->m_hasvalue && funval->m_constval.vfunc->m_builtin))
1314 call->m_va_count = parser->m_fold.constgen_float((qcfloat_t)paramcount, false);
1318 /* overwrite fid, the function, with a call */
1319 sy->out[fid] = syexp(call->m_context, call);
1321 if (fun->m_vtype != TYPE_FUNCTION) {
1322 parseerror(parser, "not a function (%s)", type_name[fun->m_vtype]);
1327 parseerror(parser, "could not determine function return type");
1330 ast_value *fval = (ast_istype(fun, ast_value) ? ((ast_value*)fun) : nullptr);
1332 if (fun->m_flags & AST_FLAG_DEPRECATED) {
1334 return !parsewarning(parser, WARN_DEPRECATED,
1335 "call to function (which is marked deprecated)\n",
1336 "-> it has been declared here: %s:%i",
1337 fun->m_context.file, fun->m_context.line);
1339 if (!fval->m_desc.length()) {
1340 return !parsewarning(parser, WARN_DEPRECATED,
1341 "call to `%s` (which is marked deprecated)\n"
1342 "-> `%s` declared here: %s:%i",
1343 fval->m_name, fval->m_name, fun->m_context.file, fun->m_context.line);
1345 return !parsewarning(parser, WARN_DEPRECATED,
1346 "call to `%s` (deprecated: %s)\n"
1347 "-> `%s` declared here: %s:%i",
1348 fval->m_name, fval->m_desc, fval->m_name, fun->m_context.file,
1349 fun->m_context.line);
1352 if (fun->m_type_params.size() != paramcount &&
1353 !((fun->m_flags & AST_FLAG_VARIADIC) &&
1354 fun->m_type_params.size() < paramcount))
1356 const char *fewmany = (fun->m_type_params.size() > paramcount) ? "few" : "many";
1358 return !parsewarning(parser, WARN_INVALID_PARAMETER_COUNT,
1359 "too %s parameters for call to %s: expected %i, got %i\n"
1360 " -> `%s` has been declared here: %s:%i",
1361 fewmany, fval->m_name, (int)fun->m_type_params.size(), (int)paramcount,
1362 fval->m_name, fun->m_context.file, (int)fun->m_context.line);
1364 return !parsewarning(parser, WARN_INVALID_PARAMETER_COUNT,
1365 "too %s parameters for function call: expected %i, got %i\n"
1366 " -> it has been declared here: %s:%i",
1367 fewmany, (int)fun->m_type_params.size(), (int)paramcount,
1368 fun->m_context.file, (int)fun->m_context.line);
1375 static bool parser_close_paren(parser_t *parser, shunt *sy)
1377 if (sy->ops.empty()) {
1378 parseerror(parser, "unmatched closing paren");
1382 while (sy->ops.size()) {
1383 if (sy->ops.back().isparen) {
1384 if (sy->paren.back() == PAREN_FUNC) {
1385 sy->paren.pop_back();
1386 if (!parser_close_call(parser, sy))
1390 if (sy->paren.back() == PAREN_EXPR) {
1391 sy->paren.pop_back();
1392 if (sy->out.empty()) {
1393 compile_error(sy->ops.back().ctx, "empty paren expression");
1400 if (sy->paren.back() == PAREN_INDEX) {
1401 sy->paren.pop_back();
1402 // pop off the parenthesis
1404 /* then apply the index operator */
1405 if (!parser_sy_apply_operator(parser, sy))
1409 if (sy->paren.back() == PAREN_TERNARY1) {
1410 sy->paren.back() = PAREN_TERNARY2;
1411 // pop off the parenthesis
1415 compile_error(sy->ops.back().ctx, "invalid parenthesis");
1418 if (!parser_sy_apply_operator(parser, sy))
1424 static void parser_reclassify_token(parser_t *parser)
1427 if (parser->tok >= TOKEN_START)
1429 for (i = 0; i < operator_count; ++i) {
1430 if (!strcmp(parser_tokval(parser), operators[i].op)) {
1431 parser->tok = TOKEN_OPERATOR;
1437 static ast_expression* parse_vararg_do(parser_t *parser)
1439 ast_expression *idx, *out;
1441 ast_value *funtype = parser->function->m_function_type;
1442 lex_ctx_t ctx = parser_ctx(parser);
1444 if (!parser->function->m_varargs) {
1445 parseerror(parser, "function has no variable argument list");
1449 if (!parser_next(parser) || parser->tok != '(') {
1450 parseerror(parser, "expected parameter index and type in parenthesis");
1453 if (!parser_next(parser)) {
1454 parseerror(parser, "error parsing parameter index");
1458 idx = parse_expression_leave(parser, true, false, false);
1462 if (parser->tok != ',') {
1463 if (parser->tok != ')') {
1465 parseerror(parser, "expected comma after parameter index");
1468 // vararg piping: ...(start)
1469 out = new ast_argpipe(ctx, idx);
1473 if (!parser_next(parser) || (parser->tok != TOKEN_IDENT && parser->tok != TOKEN_TYPENAME)) {
1475 parseerror(parser, "expected typename for vararg");
1479 typevar = parse_typename(parser, nullptr, nullptr, nullptr);
1485 if (parser->tok != ')') {
1488 parseerror(parser, "expected closing paren");
1492 if (funtype->m_varparam &&
1493 !typevar->compareType(*funtype->m_varparam))
1497 ast_type_to_string(typevar, ty1, sizeof(ty1));
1498 ast_type_to_string(funtype->m_varparam, ty2, sizeof(ty2));
1499 compile_error(typevar->m_context,
1500 "function was declared to take varargs of type `%s`, requested type is: %s",
1504 out = ast_array_index::make(ctx, parser->function->m_varargs.get(), idx);
1505 out->adoptType(*typevar);
1510 static ast_expression* parse_vararg(parser_t *parser)
1512 bool old_noops = parser->lex->flags.noops;
1514 ast_expression *out;
1516 parser->lex->flags.noops = true;
1517 out = parse_vararg_do(parser);
1519 parser->lex->flags.noops = old_noops;
1523 /* not to be exposed */
1524 bool ftepp_predef_exists(const char *name);
1525 static bool parse_sya_operand(parser_t *parser, shunt *sy, bool with_labels)
1527 if (OPTS_FLAG(TRANSLATABLE_STRINGS) &&
1528 parser->tok == TOKEN_IDENT &&
1529 !strcmp(parser_tokval(parser), "_"))
1531 /* a translatable string */
1534 parser->lex->flags.noops = true;
1535 if (!parser_next(parser) || parser->tok != '(') {
1536 parseerror(parser, "use _(\"string\") to create a translatable string constant");
1539 parser->lex->flags.noops = false;
1540 if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
1541 parseerror(parser, "expected a constant string in translatable-string extension");
1544 val = (ast_value*)parser->m_fold.constgen_string(parser_tokval(parser), true);
1547 sy->out.push_back(syexp(parser_ctx(parser), val));
1549 if (!parser_next(parser) || parser->tok != ')') {
1550 parseerror(parser, "expected closing paren after translatable string");
1555 else if (parser->tok == TOKEN_DOTS)
1558 if (!OPTS_FLAG(VARIADIC_ARGS)) {
1559 parseerror(parser, "cannot access varargs (try -fvariadic-args)");
1562 va = parse_vararg(parser);
1565 sy->out.push_back(syexp(parser_ctx(parser), va));
1568 else if (parser->tok == TOKEN_FLOATCONST) {
1569 ast_expression *val = parser->m_fold.constgen_float((parser_token(parser)->constval.f), false);
1572 sy->out.push_back(syexp(parser_ctx(parser), val));
1575 else if (parser->tok == TOKEN_INTCONST || parser->tok == TOKEN_CHARCONST) {
1576 ast_expression *val = parser->m_fold.constgen_float((qcfloat_t)(parser_token(parser)->constval.i), false);
1579 sy->out.push_back(syexp(parser_ctx(parser), val));
1582 else if (parser->tok == TOKEN_STRINGCONST) {
1583 ast_expression *val = parser->m_fold.constgen_string(parser_tokval(parser), false);
1586 sy->out.push_back(syexp(parser_ctx(parser), val));
1589 else if (parser->tok == TOKEN_VECTORCONST) {
1590 ast_expression *val = parser->m_fold.constgen_vector(parser_token(parser)->constval.v);
1593 sy->out.push_back(syexp(parser_ctx(parser), val));
1596 else if (parser->tok == TOKEN_IDENT)
1598 const char *ctoken = parser_tokval(parser);
1599 ast_expression *prev = sy->out.size() ? sy->out.back().out : nullptr;
1600 ast_expression *var;
1601 /* a_vector.{x,y,z} */
1602 if (sy->ops.empty() ||
1603 !sy->ops.back().etype ||
1604 operators[sy->ops.back().etype-1].id != opid1('.'))
1606 /* When adding more intrinsics, fix the above condition */
1609 if (prev && prev->m_vtype == TYPE_VECTOR && ctoken[0] >= 'x' && ctoken[0] <= 'z' && !ctoken[1])
1611 var = parser->const_vec[ctoken[0]-'x'];
1613 var = parser_find_var(parser, parser_tokval(parser));
1615 var = parser_find_field(parser, parser_tokval(parser));
1617 if (!var && with_labels) {
1618 var = parser_find_label(parser, parser_tokval(parser));
1620 ast_label *lbl = new ast_label(parser_ctx(parser), parser_tokval(parser), true);
1622 parser->labels.push_back(lbl);
1625 if (!var && !strcmp(parser_tokval(parser), "__FUNC__"))
1626 var = parser->m_fold.constgen_string(parser->function->m_name, false);
1629 * now we try for the real intrinsic hashtable. If the string
1630 * begins with __builtin, we simply skip past it, otherwise we
1631 * use the identifier as is.
1633 if (!strncmp(parser_tokval(parser), "__builtin_", 10)) {
1634 var = parser->m_intrin.func(parser_tokval(parser));
1638 * Try it again, intrin_func deals with the alias method as well
1639 * the first one masks for __builtin though, we emit warning here.
1642 if ((var = parser->m_intrin.func(parser_tokval(parser)))) {
1643 (void)!compile_warning(
1646 "using implicitly defined builtin `__builtin_%s' for `%s'",
1647 parser_tokval(parser),
1648 parser_tokval(parser)
1656 * sometimes people use preprocessing predefs without enabling them
1657 * i've done this thousands of times already myself. Lets check for
1658 * it in the predef table. And diagnose it better :)
1660 if (!OPTS_FLAG(FTEPP_PREDEFS) && ftepp_predef_exists(parser_tokval(parser))) {
1661 parseerror(parser, "unexpected identifier: %s (use -fftepp-predef to enable pre-defined macros)", parser_tokval(parser));
1665 parseerror(parser, "unexpected identifier: %s", parser_tokval(parser));
1671 if (ast_istype(var, ast_value)) {
1672 ((ast_value*)var)->m_uses++;
1674 else if (ast_istype(var, ast_member)) {
1675 ast_member *mem = (ast_member*)var;
1676 if (ast_istype(mem->m_owner, ast_value))
1677 ((ast_value*)(mem->m_owner))->m_uses++;
1680 sy->out.push_back(syexp(parser_ctx(parser), var));
1683 parseerror(parser, "unexpected token `%s`", parser_tokval(parser));
1687 static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma, bool truthvalue, bool with_labels)
1689 ast_expression *expr = nullptr;
1691 bool wantop = false;
1692 /* only warn once about an assignment in a truth value because the current code
1693 * would trigger twice on: if(a = b && ...), once for the if-truth-value, once for the && part
1695 bool warn_parenthesis = true;
1697 /* count the parens because an if starts with one, so the
1698 * end of a condition is an unmatched closing paren
1702 memset(&sy, 0, sizeof(sy));
1704 parser->lex->flags.noops = false;
1706 parser_reclassify_token(parser);
1710 if (parser->tok == TOKEN_TYPENAME) {
1711 parseerror(parser, "unexpected typename `%s`", parser_tokval(parser));
1715 if (parser->tok == TOKEN_OPERATOR)
1717 /* classify the operator */
1718 const oper_info *op;
1719 const oper_info *olast = nullptr;
1721 for (o = 0; o < operator_count; ++o) {
1722 if (((!(operators[o].flags & OP_PREFIX) == !!wantop)) &&
1723 /* !(operators[o].flags & OP_SUFFIX) && / * remove this */
1724 !strcmp(parser_tokval(parser), operators[o].op))
1729 if (o == operator_count) {
1730 compile_error(parser_ctx(parser), "unexpected operator: %s", parser_tokval(parser));
1733 /* found an operator */
1736 /* when declaring variables, a comma starts a new variable */
1737 if (op->id == opid1(',') && sy.paren.empty() && stopatcomma) {
1738 /* fixup the token */
1743 /* a colon without a pervious question mark cannot be a ternary */
1744 if (!ternaries && op->id == opid2(':','?')) {
1749 if (op->id == opid1(',')) {
1750 if (sy.paren.size() && sy.paren.back() == PAREN_TERNARY2) {
1751 (void)!parsewarning(parser, WARN_TERNARY_PRECEDENCE, "suggesting parenthesis around ternary expression");
1755 if (sy.ops.size() && !sy.ops.back().isparen)
1756 olast = &operators[sy.ops.back().etype-1];
1758 /* first only apply higher precedences, assoc_left+equal comes after we warn about precedence rules */
1759 while (olast && op->prec < olast->prec)
1761 if (!parser_sy_apply_operator(parser, &sy))
1763 if (sy.ops.size() && !sy.ops.back().isparen)
1764 olast = &operators[sy.ops.back().etype-1];
1769 #define IsAssignOp(x) (\
1770 (x) == opid1('=') || \
1771 (x) == opid2('+','=') || \
1772 (x) == opid2('-','=') || \
1773 (x) == opid2('*','=') || \
1774 (x) == opid2('/','=') || \
1775 (x) == opid2('%','=') || \
1776 (x) == opid2('&','=') || \
1777 (x) == opid2('|','=') || \
1778 (x) == opid3('&','~','=') \
1780 if (warn_parenthesis) {
1781 if ( (olast && IsAssignOp(olast->id) && (op->id == opid2('&','&') || op->id == opid2('|','|'))) ||
1782 (olast && IsAssignOp(op->id) && (olast->id == opid2('&','&') || olast->id == opid2('|','|'))) ||
1783 (truthvalue && sy.paren.empty() && IsAssignOp(op->id))
1786 (void)!parsewarning(parser, WARN_PARENTHESIS, "suggesting parenthesis around assignment used as truth value");
1787 warn_parenthesis = false;
1790 if (olast && olast->id != op->id) {
1791 if ((op->id == opid1('&') || op->id == opid1('|') || op->id == opid1('^')) &&
1792 (olast->id == opid1('&') || olast->id == opid1('|') || olast->id == opid1('^')))
1794 (void)!parsewarning(parser, WARN_PARENTHESIS, "suggesting parenthesis around bitwise operations");
1795 warn_parenthesis = false;
1797 else if ((op->id == opid2('&','&') || op->id == opid2('|','|')) &&
1798 (olast->id == opid2('&','&') || olast->id == opid2('|','|')))
1800 (void)!parsewarning(parser, WARN_PARENTHESIS, "suggesting parenthesis around logical operations");
1801 warn_parenthesis = false;
1807 (op->prec < olast->prec) ||
1808 (op->assoc == ASSOC_LEFT && op->prec <= olast->prec) ) )
1810 if (!parser_sy_apply_operator(parser, &sy))
1812 if (sy.ops.size() && !sy.ops.back().isparen)
1813 olast = &operators[sy.ops.back().etype-1];
1818 if (op->id == opid1('(')) {
1820 size_t sycount = sy.out.size();
1821 /* we expected an operator, this is the function-call operator */
1822 sy.paren.push_back(PAREN_FUNC);
1823 sy.ops.push_back(syparen(parser_ctx(parser), sycount-1));
1824 sy.argc.push_back(0);
1826 sy.paren.push_back(PAREN_EXPR);
1827 sy.ops.push_back(syparen(parser_ctx(parser), 0));
1830 } else if (op->id == opid1('[')) {
1832 parseerror(parser, "unexpected array subscript");
1835 sy.paren.push_back(PAREN_INDEX);
1836 /* push both the operator and the paren, this makes life easier */
1837 sy.ops.push_back(syop(parser_ctx(parser), op));
1838 sy.ops.push_back(syparen(parser_ctx(parser), 0));
1840 } else if (op->id == opid2('?',':')) {
1841 sy.ops.push_back(syop(parser_ctx(parser), op));
1842 sy.ops.push_back(syparen(parser_ctx(parser), 0));
1845 sy.paren.push_back(PAREN_TERNARY1);
1846 } else if (op->id == opid2(':','?')) {
1847 if (sy.paren.empty()) {
1848 parseerror(parser, "unexpected colon outside ternary expression (missing parenthesis?)");
1851 if (sy.paren.back() != PAREN_TERNARY1) {
1852 parseerror(parser, "unexpected colon outside ternary expression (missing parenthesis?)");
1855 if (!parser_close_paren(parser, &sy))
1857 sy.ops.push_back(syop(parser_ctx(parser), op));
1861 sy.ops.push_back(syop(parser_ctx(parser), op));
1862 wantop = !!(op->flags & OP_SUFFIX);
1865 else if (parser->tok == ')') {
1866 while (sy.paren.size() && sy.paren.back() == PAREN_TERNARY2) {
1867 if (!parser_sy_apply_operator(parser, &sy))
1870 if (sy.paren.empty())
1873 if (sy.paren.back() == PAREN_TERNARY1) {
1874 parseerror(parser, "mismatched parentheses (closing paren in ternary expression?)");
1877 if (!parser_close_paren(parser, &sy))
1880 /* must be a function call without parameters */
1881 if (sy.paren.back() != PAREN_FUNC) {
1882 parseerror(parser, "closing paren in invalid position");
1885 if (!parser_close_paren(parser, &sy))
1890 else if (parser->tok == '(') {
1891 parseerror(parser, "internal error: '(' should be classified as operator");
1894 else if (parser->tok == '[') {
1895 parseerror(parser, "internal error: '[' should be classified as operator");
1898 else if (parser->tok == ']') {
1899 while (sy.paren.size() && sy.paren.back() == PAREN_TERNARY2) {
1900 if (!parser_sy_apply_operator(parser, &sy))
1903 if (sy.paren.empty())
1905 if (sy.paren.back() != PAREN_INDEX) {
1906 parseerror(parser, "mismatched parentheses, unexpected ']'");
1909 if (!parser_close_paren(parser, &sy))
1914 if (!parse_sya_operand(parser, &sy, with_labels))
1919 /* in this case we might want to allow constant string concatenation */
1920 bool concatenated = false;
1921 if (parser->tok == TOKEN_STRINGCONST && sy.out.size()) {
1922 ast_expression *lexpr = sy.out.back().out;
1923 if (ast_istype(lexpr, ast_value)) {
1924 ast_value *last = (ast_value*)lexpr;
1925 if (last->m_isimm == true && last->m_cvq == CV_CONST &&
1926 last->m_hasvalue && last->m_vtype == TYPE_STRING)
1928 char *newstr = nullptr;
1929 util_asprintf(&newstr, "%s%s", last->m_constval.vstring, parser_tokval(parser));
1930 sy.out.back().out = parser->m_fold.constgen_string(newstr, false);
1932 concatenated = true;
1936 if (!concatenated) {
1937 parseerror(parser, "expected operator or end of statement");
1942 if (!parser_next(parser)) {
1945 if (parser->tok == ';' ||
1946 ((sy.paren.empty() || (sy.paren.size() == 1 && sy.paren.back() == PAREN_TERNARY2)) &&
1947 (parser->tok == ']' || parser->tok == ')' || parser->tok == '}')))
1953 while (sy.ops.size()) {
1954 if (!parser_sy_apply_operator(parser, &sy))
1958 parser->lex->flags.noops = true;
1959 if (sy.out.size() != 1) {
1960 parseerror(parser, "expression expected");
1963 expr = sy.out[0].out;
1964 if (sy.paren.size()) {
1965 parseerror(parser, "internal error: sy.paren.size() = %zu", sy.paren.size());
1971 parser->lex->flags.noops = true;
1972 for (auto &it : sy.out)
1973 if (it.out) ast_unref(it.out);
1977 static ast_expression* parse_expression(parser_t *parser, bool stopatcomma, bool with_labels)
1979 ast_expression *e = parse_expression_leave(parser, stopatcomma, false, with_labels);
1982 if (parser->tok != ';') {
1983 parseerror(parser, "semicolon expected after expression");
1987 if (!parser_next(parser)) {
1994 static void parser_enterblock(parser_t *parser)
1996 vec_push(parser->variables, util_htnew(PARSER_HT_SIZE));
1997 vec_push(parser->_blocklocals, vec_size(parser->_locals));
1998 vec_push(parser->typedefs, util_htnew(TYPEDEF_HT_SIZE));
1999 vec_push(parser->_blocktypedefs, vec_size(parser->_typedefs));
2000 vec_push(parser->_block_ctx, parser_ctx(parser));
2003 static bool parser_leaveblock(parser_t *parser)
2006 size_t locals, typedefs;
2008 if (vec_size(parser->variables) <= PARSER_HT_LOCALS) {
2009 parseerror(parser, "internal error: parser_leaveblock with no block");
2013 util_htdel(vec_last(parser->variables));
2015 vec_pop(parser->variables);
2016 if (!vec_size(parser->_blocklocals)) {
2017 parseerror(parser, "internal error: parser_leaveblock with no block (2)");
2021 locals = vec_last(parser->_blocklocals);
2022 vec_pop(parser->_blocklocals);
2023 while (vec_size(parser->_locals) != locals) {
2024 ast_expression *e = vec_last(parser->_locals);
2025 ast_value *v = (ast_value*)e;
2026 vec_pop(parser->_locals);
2027 if (ast_istype(e, ast_value) && !v->m_uses) {
2028 if (compile_warning(v->m_context, WARN_UNUSED_VARIABLE, "unused variable: `%s`", v->m_name))
2033 typedefs = vec_last(parser->_blocktypedefs);
2034 while (vec_size(parser->_typedefs) != typedefs) {
2035 delete vec_last(parser->_typedefs);
2036 vec_pop(parser->_typedefs);
2038 util_htdel(vec_last(parser->typedefs));
2039 vec_pop(parser->typedefs);
2041 vec_pop(parser->_block_ctx);
2046 static void parser_addlocal(parser_t *parser, const char *name, ast_expression *e)
2048 vec_push(parser->_locals, e);
2049 util_htset(vec_last(parser->variables), name, (void*)e);
2051 static void parser_addlocal(parser_t *parser, const std::string &name, ast_expression *e) {
2052 return parser_addlocal(parser, name.c_str(), e);
2055 static void parser_addglobal(parser_t *parser, const char *name, ast_expression *e)
2057 parser->globals.push_back(e);
2058 util_htset(parser->htglobals, name, e);
2060 static void parser_addglobal(parser_t *parser, const std::string &name, ast_expression *e) {
2061 return parser_addglobal(parser, name.c_str(), e);
2064 static ast_expression* process_condition(parser_t *parser, ast_expression *cond, bool *_ifnot)
2068 ast_expression *prev;
2070 if (cond->m_vtype == TYPE_VOID || cond->m_vtype >= TYPE_VARIANT) {
2072 ast_type_to_string(cond, ty, sizeof(ty));
2073 compile_error(cond->m_context, "invalid type for if() condition: %s", ty);
2076 if (OPTS_FLAG(FALSE_EMPTY_STRINGS) && cond->m_vtype == TYPE_STRING)
2079 cond = ast_unary::make(cond->m_context, INSTR_NOT_S, cond);
2082 parseerror(parser, "internal error: failed to process condition");
2087 else if (OPTS_FLAG(CORRECT_LOGIC) && cond->m_vtype == TYPE_VECTOR)
2089 /* vector types need to be cast to true booleans */
2090 ast_binary *bin = (ast_binary*)cond;
2091 if (!OPTS_FLAG(PERL_LOGIC) || !ast_istype(cond, ast_binary) || !(bin->m_op == INSTR_AND || bin->m_op == INSTR_OR))
2093 /* in perl-logic, AND and OR take care of the -fcorrect-logic */
2095 cond = ast_unary::make(cond->m_context, INSTR_NOT_V, cond);
2098 parseerror(parser, "internal error: failed to process condition");
2105 unary = (ast_unary*)cond;
2106 /* ast_istype dereferences cond, should test here for safety */
2107 while (cond && ast_istype(cond, ast_unary) && unary->m_op == INSTR_NOT_F)
2109 cond = unary->m_operand;
2110 unary->m_operand = nullptr;
2113 unary = (ast_unary*)cond;
2117 parseerror(parser, "internal error: failed to process condition");
2119 if (ifnot) *_ifnot = !*_ifnot;
2123 static bool parse_if(parser_t *parser, ast_block *block, ast_expression **out)
2126 ast_expression *cond, *ontrue = nullptr, *onfalse = nullptr;
2129 lex_ctx_t ctx = parser_ctx(parser);
2131 (void)block; /* not touching */
2133 /* skip the 'if', parse an optional 'not' and check for an opening paren */
2134 if (!parser_next(parser)) {
2135 parseerror(parser, "expected condition or 'not'");
2138 if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "not")) {
2140 if (!parser_next(parser)) {
2141 parseerror(parser, "expected condition in parenthesis");
2145 if (parser->tok != '(') {
2146 parseerror(parser, "expected 'if' condition in parenthesis");
2149 /* parse into the expression */
2150 if (!parser_next(parser)) {
2151 parseerror(parser, "expected 'if' condition after opening paren");
2154 /* parse the condition */
2155 cond = parse_expression_leave(parser, false, true, false);
2159 if (parser->tok != ')') {
2160 parseerror(parser, "expected closing paren after 'if' condition");
2164 /* parse into the 'then' branch */
2165 if (!parser_next(parser)) {
2166 parseerror(parser, "expected statement for on-true branch of 'if'");
2170 if (!parse_statement_or_block(parser, &ontrue)) {
2175 ontrue = new ast_block(parser_ctx(parser));
2176 /* check for an else */
2177 if (!strcmp(parser_tokval(parser), "else")) {
2178 /* parse into the 'else' branch */
2179 if (!parser_next(parser)) {
2180 parseerror(parser, "expected on-false branch after 'else'");
2185 if (!parse_statement_or_block(parser, &onfalse)) {
2192 cond = process_condition(parser, cond, &ifnot);
2194 if (ontrue) delete ontrue;
2195 if (onfalse) delete onfalse;
2200 ifthen = new ast_ifthen(ctx, cond, onfalse, ontrue);
2202 ifthen = new ast_ifthen(ctx, cond, ontrue, onfalse);
2207 static bool parse_while_go(parser_t *parser, ast_block *block, ast_expression **out);
2208 static bool parse_while(parser_t *parser, ast_block *block, ast_expression **out)
2211 char *label = nullptr;
2213 /* skip the 'while' and get the body */
2214 if (!parser_next(parser)) {
2215 if (OPTS_FLAG(LOOP_LABELS))
2216 parseerror(parser, "expected loop label or 'while' condition in parenthesis");
2218 parseerror(parser, "expected 'while' condition in parenthesis");
2222 if (parser->tok == ':') {
2223 if (!OPTS_FLAG(LOOP_LABELS))
2224 parseerror(parser, "labeled loops not activated, try using -floop-labels");
2225 if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2226 parseerror(parser, "expected loop label");
2229 label = util_strdup(parser_tokval(parser));
2230 if (!parser_next(parser)) {
2232 parseerror(parser, "expected 'while' condition in parenthesis");
2237 if (parser->tok != '(') {
2238 parseerror(parser, "expected 'while' condition in parenthesis");
2242 parser->breaks.push_back(label);
2243 parser->continues.push_back(label);
2245 rv = parse_while_go(parser, block, out);
2248 if (parser->breaks.back() != label || parser->continues.back() != label) {
2249 parseerror(parser, "internal error: label stack corrupted");
2255 parser->breaks.pop_back();
2256 parser->continues.pop_back();
2261 static bool parse_while_go(parser_t *parser, ast_block *block, ast_expression **out)
2264 ast_expression *cond, *ontrue;
2268 lex_ctx_t ctx = parser_ctx(parser);
2270 (void)block; /* not touching */
2272 /* parse into the expression */
2273 if (!parser_next(parser)) {
2274 parseerror(parser, "expected 'while' condition after opening paren");
2277 /* parse the condition */
2278 cond = parse_expression_leave(parser, false, true, false);
2282 if (parser->tok != ')') {
2283 parseerror(parser, "expected closing paren after 'while' condition");
2287 /* parse into the 'then' branch */
2288 if (!parser_next(parser)) {
2289 parseerror(parser, "expected while-loop body");
2293 if (!parse_statement_or_block(parser, &ontrue)) {
2298 cond = process_condition(parser, cond, &ifnot);
2303 aloop = new ast_loop(ctx, nullptr, cond, ifnot, nullptr, false, nullptr, ontrue);
2308 static bool parse_dowhile_go(parser_t *parser, ast_block *block, ast_expression **out);
2309 static bool parse_dowhile(parser_t *parser, ast_block *block, ast_expression **out)
2312 char *label = nullptr;
2314 /* skip the 'do' and get the body */
2315 if (!parser_next(parser)) {
2316 if (OPTS_FLAG(LOOP_LABELS))
2317 parseerror(parser, "expected loop label or body");
2319 parseerror(parser, "expected loop body");
2323 if (parser->tok == ':') {
2324 if (!OPTS_FLAG(LOOP_LABELS))
2325 parseerror(parser, "labeled loops not activated, try using -floop-labels");
2326 if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2327 parseerror(parser, "expected loop label");
2330 label = util_strdup(parser_tokval(parser));
2331 if (!parser_next(parser)) {
2333 parseerror(parser, "expected loop body");
2338 parser->breaks.push_back(label);
2339 parser->continues.push_back(label);
2341 rv = parse_dowhile_go(parser, block, out);
2344 if (parser->breaks.back() != label || parser->continues.back() != label) {
2345 parseerror(parser, "internal error: label stack corrupted");
2351 parser->breaks.pop_back();
2352 parser->continues.pop_back();
2357 static bool parse_dowhile_go(parser_t *parser, ast_block *block, ast_expression **out)
2360 ast_expression *cond, *ontrue;
2364 lex_ctx_t ctx = parser_ctx(parser);
2366 (void)block; /* not touching */
2368 if (!parse_statement_or_block(parser, &ontrue))
2371 /* expect the "while" */
2372 if (parser->tok != TOKEN_KEYWORD ||
2373 strcmp(parser_tokval(parser), "while"))
2375 parseerror(parser, "expected 'while' and condition");
2380 /* skip the 'while' and check for opening paren */
2381 if (!parser_next(parser) || parser->tok != '(') {
2382 parseerror(parser, "expected 'while' condition in parenthesis");
2386 /* parse into the expression */
2387 if (!parser_next(parser)) {
2388 parseerror(parser, "expected 'while' condition after opening paren");
2392 /* parse the condition */
2393 cond = parse_expression_leave(parser, false, true, false);
2397 if (parser->tok != ')') {
2398 parseerror(parser, "expected closing paren after 'while' condition");
2404 if (!parser_next(parser) || parser->tok != ';') {
2405 parseerror(parser, "expected semicolon after condition");
2411 if (!parser_next(parser)) {
2412 parseerror(parser, "parse error");
2418 cond = process_condition(parser, cond, &ifnot);
2423 aloop = new ast_loop(ctx, nullptr, nullptr, false, cond, ifnot, nullptr, ontrue);
2428 static bool parse_for_go(parser_t *parser, ast_block *block, ast_expression **out);
2429 static bool parse_for(parser_t *parser, ast_block *block, ast_expression **out)
2432 char *label = nullptr;
2434 /* skip the 'for' and check for opening paren */
2435 if (!parser_next(parser)) {
2436 if (OPTS_FLAG(LOOP_LABELS))
2437 parseerror(parser, "expected loop label or 'for' expressions in parenthesis");
2439 parseerror(parser, "expected 'for' expressions in parenthesis");
2443 if (parser->tok == ':') {
2444 if (!OPTS_FLAG(LOOP_LABELS))
2445 parseerror(parser, "labeled loops not activated, try using -floop-labels");
2446 if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
2447 parseerror(parser, "expected loop label");
2450 label = util_strdup(parser_tokval(parser));
2451 if (!parser_next(parser)) {
2453 parseerror(parser, "expected 'for' expressions in parenthesis");
2458 if (parser->tok != '(') {
2459 parseerror(parser, "expected 'for' expressions in parenthesis");
2463 parser->breaks.push_back(label);
2464 parser->continues.push_back(label);
2466 rv = parse_for_go(parser, block, out);
2469 if (parser->breaks.back() != label || parser->continues.back() != label) {
2470 parseerror(parser, "internal error: label stack corrupted");
2476 parser->breaks.pop_back();
2477 parser->continues.pop_back();
2481 static bool parse_for_go(parser_t *parser, ast_block *block, ast_expression **out)
2484 ast_expression *initexpr, *cond, *increment, *ontrue;
2489 lex_ctx_t ctx = parser_ctx(parser);
2491 parser_enterblock(parser);
2495 increment = nullptr;
2498 /* parse into the expression */
2499 if (!parser_next(parser)) {
2500 parseerror(parser, "expected 'for' initializer after opening paren");
2505 if (parser->tok == TOKEN_IDENT)
2506 typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
2508 if (typevar || parser->tok == TOKEN_TYPENAME) {
2509 if (!parse_variable(parser, block, true, CV_VAR, typevar, false, false, 0, nullptr))
2512 else if (parser->tok != ';')
2514 initexpr = parse_expression_leave(parser, false, false, false);
2517 /* move on to condition */
2518 if (parser->tok != ';') {
2519 parseerror(parser, "expected semicolon after for-loop initializer");
2522 if (!parser_next(parser)) {
2523 parseerror(parser, "expected for-loop condition");
2526 } else if (!parser_next(parser)) {
2527 parseerror(parser, "expected for-loop condition");
2531 /* parse the condition */
2532 if (parser->tok != ';') {
2533 cond = parse_expression_leave(parser, false, true, false);
2537 /* move on to incrementor */
2538 if (parser->tok != ';') {
2539 parseerror(parser, "expected semicolon after for-loop initializer");
2542 if (!parser_next(parser)) {
2543 parseerror(parser, "expected for-loop condition");
2547 /* parse the incrementor */
2548 if (parser->tok != ')') {
2549 lex_ctx_t condctx = parser_ctx(parser);
2550 increment = parse_expression_leave(parser, false, false, false);
2553 if (!increment->m_side_effects) {
2554 if (compile_warning(condctx, WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
2560 if (parser->tok != ')') {
2561 parseerror(parser, "expected closing paren after 'for-loop' incrementor");
2564 /* parse into the 'then' branch */
2565 if (!parser_next(parser)) {
2566 parseerror(parser, "expected for-loop body");
2569 if (!parse_statement_or_block(parser, &ontrue))
2573 cond = process_condition(parser, cond, &ifnot);
2577 aloop = new ast_loop(ctx, initexpr, cond, ifnot, nullptr, false, increment, ontrue);
2580 if (!parser_leaveblock(parser)) {
2586 if (initexpr) ast_unref(initexpr);
2587 if (cond) ast_unref(cond);
2588 if (increment) ast_unref(increment);
2589 (void)!parser_leaveblock(parser);
2593 static bool parse_return(parser_t *parser, ast_block *block, ast_expression **out)
2595 ast_expression *exp = nullptr;
2596 ast_expression *var = nullptr;
2597 ast_return *ret = nullptr;
2598 ast_value *retval = parser->function->m_return_value;
2599 ast_value *expected = parser->function->m_function_type;
2601 lex_ctx_t ctx = parser_ctx(parser);
2603 (void)block; /* not touching */
2605 if (!parser_next(parser)) {
2606 parseerror(parser, "expected return expression");
2610 /* return assignments */
2611 if (parser->tok == '=') {
2612 if (!OPTS_FLAG(RETURN_ASSIGNMENTS)) {
2613 parseerror(parser, "return assignments not activated, try using -freturn-assigments");
2617 if (type_store_instr[expected->m_next->m_vtype] == VINSTR_END) {
2619 ast_type_to_string(expected->m_next, ty1, sizeof(ty1));
2620 parseerror(parser, "invalid return type: `%s'", ty1);
2624 if (!parser_next(parser)) {
2625 parseerror(parser, "expected return assignment expression");
2629 if (!(exp = parse_expression_leave(parser, false, false, false)))
2632 /* prepare the return value */
2634 retval = new ast_value(ctx, "#LOCAL_RETURN", TYPE_VOID);
2635 retval->adoptType(*expected->m_next);
2636 parser->function->m_return_value = retval;
2639 if (!exp->compareType(*retval)) {
2640 char ty1[1024], ty2[1024];
2641 ast_type_to_string(exp, ty1, sizeof(ty1));
2642 ast_type_to_string(retval, ty2, sizeof(ty2));
2643 parseerror(parser, "invalid type for return value: `%s', expected `%s'", ty1, ty2);
2646 /* store to 'return' local variable */
2647 var = new ast_store(
2649 type_store_instr[expected->m_next->m_vtype],
2657 if (parser->tok != ';')
2658 parseerror(parser, "missing semicolon after return assignment");
2659 else if (!parser_next(parser))
2660 parseerror(parser, "parse error after return assignment");
2666 if (parser->tok != ';') {
2667 exp = parse_expression(parser, false, false);
2671 if (exp->m_vtype != TYPE_NIL &&
2672 exp->m_vtype != (expected)->m_next->m_vtype)
2674 parseerror(parser, "return with invalid expression");
2677 ret = new ast_return(ctx, exp);
2683 if (!parser_next(parser))
2684 parseerror(parser, "parse error");
2686 if (!retval && expected->m_next->m_vtype != TYPE_VOID)
2688 (void)!parsewarning(parser, WARN_MISSING_RETURN_VALUES, "return without value");
2690 ret = new ast_return(ctx, retval);
2696 static bool parse_break_continue(parser_t *parser, ast_block *block, ast_expression **out, bool is_continue)
2699 unsigned int levels = 0;
2700 lex_ctx_t ctx = parser_ctx(parser);
2701 auto &loops = (is_continue ? parser->continues : parser->breaks);
2703 (void)block; /* not touching */
2704 if (!parser_next(parser)) {
2705 parseerror(parser, "expected semicolon or loop label");
2709 if (loops.empty()) {
2711 parseerror(parser, "`continue` can only be used inside loops");
2713 parseerror(parser, "`break` can only be used inside loops or switches");
2716 if (parser->tok == TOKEN_IDENT) {
2717 if (!OPTS_FLAG(LOOP_LABELS))
2718 parseerror(parser, "labeled loops not activated, try using -floop-labels");
2721 if (loops[i] && !strcmp(loops[i], parser_tokval(parser)))
2724 parseerror(parser, "no such loop to %s: `%s`",
2725 (is_continue ? "continue" : "break out of"),
2726 parser_tokval(parser));
2731 if (!parser_next(parser)) {
2732 parseerror(parser, "expected semicolon");
2737 if (parser->tok != ';') {
2738 parseerror(parser, "expected semicolon");
2742 if (!parser_next(parser))
2743 parseerror(parser, "parse error");
2745 *out = new ast_breakcont(ctx, is_continue, levels);
2749 /* returns true when it was a variable qualifier, false otherwise!
2750 * on error, cvq is set to CV_WRONG
2752 struct attribute_t {
2757 static bool parse_qualifiers(parser_t *parser, bool with_local, int *cvq, bool *noref, bool *is_static, uint32_t *_flags, char **message)
2759 bool had_const = false;
2760 bool had_var = false;
2761 bool had_noref = false;
2762 bool had_attrib = false;
2763 bool had_static = false;
2766 static attribute_t attributes[] = {
2767 { "noreturn", AST_FLAG_NORETURN },
2768 { "inline", AST_FLAG_INLINE },
2769 { "eraseable", AST_FLAG_ERASEABLE },
2770 { "accumulate", AST_FLAG_ACCUMULATE },
2771 { "last", AST_FLAG_FINAL_DECL }
2778 if (parser->tok == TOKEN_ATTRIBUTE_OPEN) {
2780 /* parse an attribute */
2781 if (!parser_next(parser)) {
2782 parseerror(parser, "expected attribute after `[[`");
2787 for (i = 0; i < GMQCC_ARRAY_COUNT(attributes); i++) {
2788 if (!strcmp(parser_tokval(parser), attributes[i].name)) {
2789 flags |= attributes[i].flag;
2790 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2791 parseerror(parser, "`%s` attribute has no parameters, expected `]]`",
2792 attributes[i].name);
2800 if (i != GMQCC_ARRAY_COUNT(attributes))
2804 if (!strcmp(parser_tokval(parser), "noref")) {
2806 if (!parser_next(parser) || parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2807 parseerror(parser, "`noref` attribute has no parameters, expected `]]`");
2812 else if (!strcmp(parser_tokval(parser), "alias") && !(flags & AST_FLAG_ALIAS)) {
2813 flags |= AST_FLAG_ALIAS;
2816 if (!parser_next(parser)) {
2817 parseerror(parser, "parse error in attribute");
2821 if (parser->tok == '(') {
2822 if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
2823 parseerror(parser, "`alias` attribute missing parameter");
2827 *message = util_strdup(parser_tokval(parser));
2829 if (!parser_next(parser)) {
2830 parseerror(parser, "parse error in attribute");
2834 if (parser->tok != ')') {
2835 parseerror(parser, "`alias` attribute expected `)` after parameter");
2839 if (!parser_next(parser)) {
2840 parseerror(parser, "parse error in attribute");
2845 if (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2846 parseerror(parser, "`alias` attribute expected `]]`");
2850 else if (!strcmp(parser_tokval(parser), "deprecated") && !(flags & AST_FLAG_DEPRECATED)) {
2851 flags |= AST_FLAG_DEPRECATED;
2854 if (!parser_next(parser)) {
2855 parseerror(parser, "parse error in attribute");
2859 if (parser->tok == '(') {
2860 if (!parser_next(parser) || parser->tok != TOKEN_STRINGCONST) {
2861 parseerror(parser, "`deprecated` attribute missing parameter");
2865 *message = util_strdup(parser_tokval(parser));
2867 if (!parser_next(parser)) {
2868 parseerror(parser, "parse error in attribute");
2872 if(parser->tok != ')') {
2873 parseerror(parser, "`deprecated` attribute expected `)` after parameter");
2877 if (!parser_next(parser)) {
2878 parseerror(parser, "parse error in attribute");
2883 if (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2884 parseerror(parser, "`deprecated` attribute expected `]]`");
2887 if (*message) mem_d(*message);
2893 else if (!strcmp(parser_tokval(parser), "coverage") && !(flags & AST_FLAG_COVERAGE)) {
2894 flags |= AST_FLAG_COVERAGE;
2895 if (!parser_next(parser)) {
2897 parseerror(parser, "parse error in coverage attribute");
2901 if (parser->tok == '(') {
2902 if (!parser_next(parser)) {
2904 parseerror(parser, "invalid parameter for coverage() attribute\n"
2905 "valid are: block");
2909 if (parser->tok != ')') {
2911 if (parser->tok != TOKEN_IDENT)
2912 goto bad_coverage_arg;
2913 if (!strcmp(parser_tokval(parser), "block"))
2914 flags |= AST_FLAG_BLOCK_COVERAGE;
2915 else if (!strcmp(parser_tokval(parser), "none"))
2916 flags &= ~(AST_FLAG_COVERAGE_MASK);
2918 goto bad_coverage_arg;
2919 if (!parser_next(parser))
2920 goto error_in_coverage;
2921 if (parser->tok == ',') {
2922 if (!parser_next(parser))
2923 goto error_in_coverage;
2925 } while (parser->tok != ')');
2927 if (parser->tok != ')' || !parser_next(parser))
2928 goto error_in_coverage;
2930 /* without parameter [[coverage]] equals [[coverage(block)]] */
2931 flags |= AST_FLAG_BLOCK_COVERAGE;
2936 /* Skip tokens until we hit a ]] */
2937 (void)!parsewarning(parser, WARN_UNKNOWN_ATTRIBUTE, "unknown attribute starting with `%s`", parser_tokval(parser));
2938 while (parser->tok != TOKEN_ATTRIBUTE_CLOSE) {
2939 if (!parser_next(parser)) {
2940 parseerror(parser, "error inside attribute");
2947 else if (with_local && !strcmp(parser_tokval(parser), "static"))
2949 else if (!strcmp(parser_tokval(parser), "const"))
2951 else if (!strcmp(parser_tokval(parser), "var"))
2953 else if (with_local && !strcmp(parser_tokval(parser), "local"))
2955 else if (!strcmp(parser_tokval(parser), "noref"))
2957 else if (!had_const && !had_var && !had_noref && !had_attrib && !had_static && !flags) {
2964 if (!parser_next(parser))
2974 *is_static = had_static;
2978 parseerror(parser, "parse error after variable qualifier");
2983 static bool parse_switch_go(parser_t *parser, ast_block *block, ast_expression **out);
2984 static bool parse_switch(parser_t *parser, ast_block *block, ast_expression **out)
2987 char *label = nullptr;
2989 /* skip the 'while' and get the body */
2990 if (!parser_next(parser)) {
2991 if (OPTS_FLAG(LOOP_LABELS))
2992 parseerror(parser, "expected loop label or 'switch' operand in parenthesis");
2994 parseerror(parser, "expected 'switch' operand in parenthesis");
2998 if (parser->tok == ':') {
2999 if (!OPTS_FLAG(LOOP_LABELS))
3000 parseerror(parser, "labeled loops not activated, try using -floop-labels");
3001 if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
3002 parseerror(parser, "expected loop label");
3005 label = util_strdup(parser_tokval(parser));
3006 if (!parser_next(parser)) {
3008 parseerror(parser, "expected 'switch' operand in parenthesis");
3013 if (parser->tok != '(') {
3014 parseerror(parser, "expected 'switch' operand in parenthesis");
3018 parser->breaks.push_back(label);
3020 rv = parse_switch_go(parser, block, out);
3023 if (parser->breaks.back() != label) {
3024 parseerror(parser, "internal error: label stack corrupted");
3030 parser->breaks.pop_back();
3035 static bool parse_switch_go(parser_t *parser, ast_block *block, ast_expression **out)
3037 ast_expression *operand;
3040 ast_switch *switchnode;
3041 ast_switch_case swcase;
3044 bool noref, is_static;
3045 uint32_t qflags = 0;
3047 lex_ctx_t ctx = parser_ctx(parser);
3049 (void)block; /* not touching */
3052 /* parse into the expression */
3053 if (!parser_next(parser)) {
3054 parseerror(parser, "expected switch operand");
3057 /* parse the operand */
3058 operand = parse_expression_leave(parser, false, false, false);
3062 switchnode = new ast_switch(ctx, operand);
3065 if (parser->tok != ')') {
3067 parseerror(parser, "expected closing paren after 'switch' operand");
3071 /* parse over the opening paren */
3072 if (!parser_next(parser) || parser->tok != '{') {
3074 parseerror(parser, "expected list of cases");
3078 if (!parser_next(parser)) {
3080 parseerror(parser, "expected 'case' or 'default'");
3084 /* new block; allow some variables to be declared here */
3085 parser_enterblock(parser);
3088 if (parser->tok == TOKEN_IDENT)
3089 typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
3090 if (typevar || parser->tok == TOKEN_TYPENAME) {
3091 if (!parse_variable(parser, block, true, CV_NONE, typevar, false, false, 0, nullptr)) {
3097 if (parse_qualifiers(parser, true, &cvq, &noref, &is_static, &qflags, nullptr))
3099 if (cvq == CV_WRONG) {
3103 if (!parse_variable(parser, block, true, cvq, nullptr, noref, is_static, qflags, nullptr)) {
3113 while (parser->tok != '}') {
3114 ast_block *caseblock;
3116 if (!strcmp(parser_tokval(parser), "case")) {
3117 if (!parser_next(parser)) {
3119 parseerror(parser, "expected expression for case");
3122 swcase.m_value = parse_expression_leave(parser, false, false, false);
3123 if (!swcase.m_value) {
3125 parseerror(parser, "expected expression for case");
3128 if (!OPTS_FLAG(RELAXED_SWITCH)) {
3129 if (!ast_istype(swcase.m_value, ast_value)) { /* || ((ast_value*)swcase.m_value)->m_cvq != CV_CONST) { */
3130 parseerror(parser, "case on non-constant values need to be explicitly enabled via -frelaxed-switch");
3136 else if (!strcmp(parser_tokval(parser), "default")) {
3137 swcase.m_value = nullptr;
3138 if (!parser_next(parser)) {
3140 parseerror(parser, "expected colon");
3146 parseerror(parser, "expected 'case' or 'default'");
3150 /* Now the colon and body */
3151 if (parser->tok != ':') {
3152 if (swcase.m_value) ast_unref(swcase.m_value);
3154 parseerror(parser, "expected colon");
3158 if (!parser_next(parser)) {
3159 if (swcase.m_value) ast_unref(swcase.m_value);
3161 parseerror(parser, "expected statements or case");
3164 caseblock = new ast_block(parser_ctx(parser));
3166 if (swcase.m_value) ast_unref(swcase.m_value);
3170 swcase.m_code = caseblock;
3171 switchnode->m_cases.push_back(swcase);
3173 ast_expression *expr;
3174 if (parser->tok == '}')
3176 if (parser->tok == TOKEN_KEYWORD) {
3177 if (!strcmp(parser_tokval(parser), "case") ||
3178 !strcmp(parser_tokval(parser), "default"))
3183 if (!parse_statement(parser, caseblock, &expr, true)) {
3189 if (!caseblock->addExpr(expr)) {
3196 parser_leaveblock(parser);
3199 if (parser->tok != '}') {
3201 parseerror(parser, "expected closing paren of case list");
3204 if (!parser_next(parser)) {
3206 parseerror(parser, "parse error after switch");
3213 /* parse computed goto sides */
3214 static ast_expression *parse_goto_computed(parser_t *parser, ast_expression **side) {
3215 ast_expression *on_true;
3216 ast_expression *on_false;
3217 ast_expression *cond;
3222 if (ast_istype(*side, ast_ternary)) {
3223 ast_ternary *tern = (ast_ternary*)*side;
3224 on_true = parse_goto_computed(parser, &tern->m_on_true);
3225 on_false = parse_goto_computed(parser, &tern->m_on_false);
3227 if (!on_true || !on_false) {
3228 parseerror(parser, "expected label or expression in ternary");
3229 if (on_true) ast_unref(on_true);
3230 if (on_false) ast_unref(on_false);
3234 cond = tern->m_cond;
3235 tern->m_cond = nullptr;
3238 return new ast_ifthen(parser_ctx(parser), cond, on_true, on_false);
3239 } else if (ast_istype(*side, ast_label)) {
3240 ast_goto *gt = new ast_goto(parser_ctx(parser), ((ast_label*)*side)->m_name);
3241 gt->setLabel(reinterpret_cast<ast_label*>(*side));
3248 static bool parse_goto(parser_t *parser, ast_expression **out)
3250 ast_goto *gt = nullptr;
3251 ast_expression *lbl;
3253 if (!parser_next(parser))
3256 if (parser->tok != TOKEN_IDENT) {
3257 ast_expression *expression;
3259 /* could be an expression i.e computed goto :-) */
3260 if (parser->tok != '(') {
3261 parseerror(parser, "expected label name after `goto`");
3265 /* failed to parse expression for goto */
3266 if (!(expression = parse_expression(parser, false, true)) ||
3267 !(*out = parse_goto_computed(parser, &expression))) {
3268 parseerror(parser, "invalid goto expression");
3270 ast_unref(expression);
3277 /* not computed goto */
3278 gt = new ast_goto(parser_ctx(parser), parser_tokval(parser));
3279 lbl = parser_find_label(parser, gt->m_name);
3281 if (!ast_istype(lbl, ast_label)) {
3282 parseerror(parser, "internal error: label is not an ast_label");
3286 gt->setLabel(reinterpret_cast<ast_label*>(lbl));
3289 parser->gotos.push_back(gt);
3291 if (!parser_next(parser) || parser->tok != ';') {
3292 parseerror(parser, "semicolon expected after goto label");
3295 if (!parser_next(parser)) {
3296 parseerror(parser, "parse error after goto");
3304 static bool parse_skipwhite(parser_t *parser)
3307 if (!parser_next(parser))
3309 } while (parser->tok == TOKEN_WHITE && parser->tok < TOKEN_ERROR);
3310 return parser->tok < TOKEN_ERROR;
3313 static bool parse_eol(parser_t *parser)
3315 if (!parse_skipwhite(parser))
3317 return parser->tok == TOKEN_EOL;
3320 static bool parse_pragma_do(parser_t *parser)
3322 if (!parser_next(parser) ||
3323 parser->tok != TOKEN_IDENT ||
3324 strcmp(parser_tokval(parser), "pragma"))
3326 parseerror(parser, "expected `pragma` keyword after `#`, got `%s`", parser_tokval(parser));
3329 if (!parse_skipwhite(parser) || parser->tok != TOKEN_IDENT) {
3330 parseerror(parser, "expected pragma, got `%s`", parser_tokval(parser));
3334 if (!strcmp(parser_tokval(parser), "noref")) {
3335 if (!parse_skipwhite(parser) || parser->tok != TOKEN_INTCONST) {
3336 parseerror(parser, "`noref` pragma requires an argument: 0 or 1");
3339 parser->noref = !!parser_token(parser)->constval.i;
3340 if (!parse_eol(parser)) {
3341 parseerror(parser, "parse error after `noref` pragma");
3347 (void)!parsewarning(parser, WARN_UNKNOWN_PRAGMAS, "ignoring #pragma %s", parser_tokval(parser));
3350 while (!parse_eol(parser)) {
3351 parser_next(parser);
3360 static bool parse_pragma(parser_t *parser)
3363 parser->lex->flags.preprocessing = true;
3364 parser->lex->flags.mergelines = true;
3365 rv = parse_pragma_do(parser);
3366 if (parser->tok != TOKEN_EOL) {
3367 parseerror(parser, "junk after pragma");
3370 parser->lex->flags.preprocessing = false;
3371 parser->lex->flags.mergelines = false;
3372 if (!parser_next(parser)) {
3373 parseerror(parser, "parse error after pragma");
3379 static bool parse_statement(parser_t *parser, ast_block *block, ast_expression **out, bool allow_cases)
3381 bool noref, is_static;
3383 uint32_t qflags = 0;
3384 ast_value *typevar = nullptr;
3385 char *vstring = nullptr;
3389 if (parser->tok == TOKEN_IDENT)
3390 typevar = parser_find_typedef(parser, parser_tokval(parser), 0);
3392 if (typevar || parser->tok == TOKEN_TYPENAME || parser->tok == '.' || parser->tok == TOKEN_DOTS)
3394 /* local variable */
3396 parseerror(parser, "cannot declare a variable from here");
3399 if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
3400 if (parsewarning(parser, WARN_EXTENSIONS, "missing 'local' keyword when declaring a local variable"))
3403 if (!parse_variable(parser, block, false, CV_NONE, typevar, false, false, 0, nullptr))
3407 else if (parse_qualifiers(parser, !!block, &cvq, &noref, &is_static, &qflags, &vstring))
3409 if (cvq == CV_WRONG)
3411 return parse_variable(parser, block, false, cvq, nullptr, noref, is_static, qflags, vstring);
3413 else if (parser->tok == TOKEN_KEYWORD)
3415 if (!strcmp(parser_tokval(parser), "__builtin_debug_printtype"))
3420 if (!parser_next(parser)) {
3421 parseerror(parser, "parse error after __builtin_debug_printtype");
3425 if (parser->tok == TOKEN_IDENT && (tdef = parser_find_typedef(parser, parser_tokval(parser), 0)))
3427 ast_type_to_string(tdef, ty, sizeof(ty));
3428 con_out("__builtin_debug_printtype: `%s`=`%s`\n", tdef->m_name.c_str(), ty);
3429 if (!parser_next(parser)) {
3430 parseerror(parser, "parse error after __builtin_debug_printtype typename argument");
3436 if (!parse_statement(parser, block, out, allow_cases))
3439 con_out("__builtin_debug_printtype: got no output node\n");
3442 ast_type_to_string(*out, ty, sizeof(ty));
3443 con_out("__builtin_debug_printtype: `%s`\n", ty);
3448 else if (!strcmp(parser_tokval(parser), "return"))
3450 return parse_return(parser, block, out);
3452 else if (!strcmp(parser_tokval(parser), "if"))
3454 return parse_if(parser, block, out);
3456 else if (!strcmp(parser_tokval(parser), "while"))
3458 return parse_while(parser, block, out);
3460 else if (!strcmp(parser_tokval(parser), "do"))
3462 return parse_dowhile(parser, block, out);
3464 else if (!strcmp(parser_tokval(parser), "for"))
3466 if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_QCC) {
3467 if (parsewarning(parser, WARN_EXTENSIONS, "for loops are not recognized in the original Quake C standard, to enable try an alternate standard --std=?"))
3470 return parse_for(parser, block, out);
3472 else if (!strcmp(parser_tokval(parser), "break"))
3474 return parse_break_continue(parser, block, out, false);
3476 else if (!strcmp(parser_tokval(parser), "continue"))
3478 return parse_break_continue(parser, block, out, true);
3480 else if (!strcmp(parser_tokval(parser), "switch"))
3482 return parse_switch(parser, block, out);
3484 else if (!strcmp(parser_tokval(parser), "case") ||
3485 !strcmp(parser_tokval(parser), "default"))
3488 parseerror(parser, "unexpected 'case' label");
3493 else if (!strcmp(parser_tokval(parser), "goto"))
3495 return parse_goto(parser, out);
3497 else if (!strcmp(parser_tokval(parser), "typedef"))
3499 if (!parser_next(parser)) {
3500 parseerror(parser, "expected type definition after 'typedef'");
3503 return parse_typedef(parser);
3505 parseerror(parser, "Unexpected keyword: `%s'", parser_tokval(parser));
3508 else if (parser->tok == '{')
3511 inner = parse_block(parser);
3517 else if (parser->tok == ':')
3521 if (!parser_next(parser)) {
3522 parseerror(parser, "expected label name");
3525 if (parser->tok != TOKEN_IDENT) {
3526 parseerror(parser, "label must be an identifier");
3529 label = (ast_label*)parser_find_label(parser, parser_tokval(parser));
3531 if (!label->m_undefined) {
3532 parseerror(parser, "label `%s` already defined", label->m_name);
3535 label->m_undefined = false;
3538 label = new ast_label(parser_ctx(parser), parser_tokval(parser), false);
3539 parser->labels.push_back(label);
3542 if (!parser_next(parser)) {
3543 parseerror(parser, "parse error after label");
3546 for (i = 0; i < parser->gotos.size(); ++i) {
3547 if (parser->gotos[i]->m_name == label->m_name) {
3548 parser->gotos[i]->setLabel(label);
3549 parser->gotos.erase(parser->gotos.begin() + i);
3555 else if (parser->tok == ';')
3557 if (!parser_next(parser)) {
3558 parseerror(parser, "parse error after empty statement");
3565 lex_ctx_t ctx = parser_ctx(parser);
3566 ast_expression *exp = parse_expression(parser, false, false);
3570 if (!exp->m_side_effects) {
3571 if (compile_warning(ctx, WARN_EFFECTLESS_STATEMENT, "statement has no effect"))
3578 static bool parse_enum(parser_t *parser)
3581 bool reverse = false;
3583 ast_value **values = nullptr;
3584 ast_value *var = nullptr;
3587 ast_expression *old;
3589 if (!parser_next(parser) || (parser->tok != '{' && parser->tok != ':')) {
3590 parseerror(parser, "expected `{` or `:` after `enum` keyword");
3594 /* enumeration attributes (can add more later) */
3595 if (parser->tok == ':') {
3596 if (!parser_next(parser) || parser->tok != TOKEN_IDENT){
3597 parseerror(parser, "expected `flag` or `reverse` for enumeration attribute");
3602 if (!strcmp(parser_tokval(parser), "flag")) {
3606 else if (!strcmp(parser_tokval(parser), "reverse")) {
3610 parseerror(parser, "invalid attribute `%s` for enumeration", parser_tokval(parser));
3614 if (!parser_next(parser) || parser->tok != '{') {
3615 parseerror(parser, "expected `{` after enum attribute ");
3621 if (!parser_next(parser) || parser->tok != TOKEN_IDENT) {
3622 if (parser->tok == '}') {
3623 /* allow an empty enum */
3626 parseerror(parser, "expected identifier or `}`");
3630 old = parser_find_field(parser, parser_tokval(parser));
3632 old = parser_find_global(parser, parser_tokval(parser));
3634 parseerror(parser, "value `%s` has already been declared here: %s:%i",
3635 parser_tokval(parser), old->m_context.file, old->m_context.line);
3639 var = new ast_value(parser_ctx(parser), parser_tokval(parser), TYPE_FLOAT);
3640 vec_push(values, var);
3641 var->m_cvq = CV_CONST;
3642 var->m_hasvalue = true;
3644 /* for flagged enumerations increment in POTs of TWO */
3645 var->m_constval.vfloat = (flag) ? (num *= 2) : (num ++);
3646 parser_addglobal(parser, var->m_name, var);
3648 if (!parser_next(parser)) {
3649 parseerror(parser, "expected `=`, `}` or comma after identifier");
3653 if (parser->tok == ',')
3655 if (parser->tok == '}')
3657 if (parser->tok != '=') {
3658 parseerror(parser, "expected `=`, `}` or comma after identifier");
3662 if (!parser_next(parser)) {
3663 parseerror(parser, "expected expression after `=`");
3667 /* We got a value! */
3668 old = parse_expression_leave(parser, true, false, false);
3669 asvalue = (ast_value*)old;
3670 if (!ast_istype(old, ast_value) || asvalue->m_cvq != CV_CONST || !asvalue->m_hasvalue) {
3671 compile_error(var->m_context, "constant value or expression expected");
3674 num = (var->m_constval.vfloat = asvalue->m_constval.vfloat) + 1;
3676 if (parser->tok == '}')
3678 if (parser->tok != ',') {
3679 parseerror(parser, "expected `}` or comma after expression");
3684 /* patch them all (for reversed attribute) */
3687 for (i = 0; i < vec_size(values); i++)
3688 values[i]->m_constval.vfloat = vec_size(values) - i - 1;
3691 if (parser->tok != '}') {
3692 parseerror(parser, "internal error: breaking without `}`");
3696 if (!parser_next(parser) || parser->tok != ';') {
3697 parseerror(parser, "expected semicolon after enumeration");
3701 if (!parser_next(parser)) {
3702 parseerror(parser, "parse error after enumeration");
3714 static bool parse_block_into(parser_t *parser, ast_block *block)
3718 parser_enterblock(parser);
3720 if (!parser_next(parser)) { /* skip the '{' */
3721 parseerror(parser, "expected function body");
3725 while (parser->tok != TOKEN_EOF && parser->tok < TOKEN_ERROR)
3727 ast_expression *expr = nullptr;
3728 if (parser->tok == '}')
3731 if (!parse_statement(parser, block, &expr, false)) {
3732 /* parseerror(parser, "parse error"); */
3738 if (!block->addExpr(expr)) {
3745 if (parser->tok != '}') {
3748 (void)parser_next(parser);
3752 if (!parser_leaveblock(parser))
3754 return retval && !!block;
3757 static ast_block* parse_block(parser_t *parser)
3760 block = new ast_block(parser_ctx(parser));
3763 if (!parse_block_into(parser, block)) {
3770 static bool parse_statement_or_block(parser_t *parser, ast_expression **out)
3772 if (parser->tok == '{') {
3773 *out = parse_block(parser);
3776 return parse_statement(parser, nullptr, out, false);
3779 static bool create_vector_members(ast_value *var, ast_member **me)
3782 size_t len = var->m_name.length();
3784 for (i = 0; i < 3; ++i) {
3785 char *name = (char*)mem_a(len+3);
3786 memcpy(name, var->m_name.c_str(), len);
3788 name[len+1] = 'x'+i;
3790 me[i] = ast_member::make(var->m_context, var, i, name);
3799 do { delete me[--i]; } while(i);
3803 static bool parse_function_body(parser_t *parser, ast_value *var)
3805 ast_block *block = nullptr;
3809 ast_expression *framenum = nullptr;
3810 ast_expression *nextthink = nullptr;
3811 /* None of the following have to be deleted */
3812 ast_expression *fld_think = nullptr, *fld_nextthink = nullptr, *fld_frame = nullptr;
3813 ast_expression *gbl_time = nullptr, *gbl_self = nullptr;
3814 bool has_frame_think;
3818 has_frame_think = false;
3819 old = parser->function;
3821 if (var->m_flags & AST_FLAG_ALIAS) {
3822 parseerror(parser, "function aliases cannot have bodies");
3826 if (parser->gotos.size() || parser->labels.size()) {
3827 parseerror(parser, "gotos/labels leaking");
3831 if (!OPTS_FLAG(VARIADIC_ARGS) && var->m_flags & AST_FLAG_VARIADIC) {
3832 if (parsewarning(parser, WARN_VARIADIC_FUNCTION,
3833 "variadic function with implementation will not be able to access additional parameters (try -fvariadic-args)"))
3839 if (parser->tok == '[') {
3840 /* got a frame definition: [ framenum, nextthink ]
3841 * this translates to:
3842 * self.frame = framenum;
3843 * self.nextthink = time + 0.1;
3844 * self.think = nextthink;
3846 nextthink = nullptr;
3848 fld_think = parser_find_field(parser, "think");
3849 fld_nextthink = parser_find_field(parser, "nextthink");
3850 fld_frame = parser_find_field(parser, "frame");
3851 if (!fld_think || !fld_nextthink || !fld_frame) {
3852 parseerror(parser, "cannot use [frame,think] notation without the required fields");
3853 parseerror(parser, "please declare the following entityfields: `frame`, `think`, `nextthink`");
3856 gbl_time = parser_find_global(parser, "time");
3857 gbl_self = parser_find_global(parser, "self");
3858 if (!gbl_time || !gbl_self) {
3859 parseerror(parser, "cannot use [frame,think] notation without the required globals");
3860 parseerror(parser, "please declare the following globals: `time`, `self`");
3864 if (!parser_next(parser))
3867 framenum = parse_expression_leave(parser, true, false, false);
3869 parseerror(parser, "expected a framenumber constant in[frame,think] notation");
3872 if (!ast_istype(framenum, ast_value) || !( (ast_value*)framenum )->m_hasvalue) {
3873 ast_unref(framenum);
3874 parseerror(parser, "framenumber in [frame,think] notation must be a constant");
3878 if (parser->tok != ',') {
3879 ast_unref(framenum);
3880 parseerror(parser, "expected comma after frame number in [frame,think] notation");
3881 parseerror(parser, "Got a %i\n", parser->tok);
3885 if (!parser_next(parser)) {
3886 ast_unref(framenum);
3890 if (parser->tok == TOKEN_IDENT && !parser_find_var(parser, parser_tokval(parser)))
3892 /* qc allows the use of not-yet-declared functions here
3893 * - this automatically creates a prototype */
3894 ast_value *thinkfunc;
3895 ast_expression *functype = fld_think->m_next;
3897 thinkfunc = new ast_value(parser_ctx(parser), parser_tokval(parser), functype->m_vtype);
3898 if (!thinkfunc) { /* || !thinkfunc->adoptType(*functype)*/
3899 ast_unref(framenum);
3900 parseerror(parser, "failed to create implicit prototype for `%s`", parser_tokval(parser));
3903 thinkfunc->adoptType(*functype);
3905 if (!parser_next(parser)) {
3906 ast_unref(framenum);
3911 parser_addglobal(parser, thinkfunc->m_name, thinkfunc);
3913 nextthink = thinkfunc;
3916 nextthink = parse_expression_leave(parser, true, false, false);
3918 ast_unref(framenum);
3919 parseerror(parser, "expected a think-function in [frame,think] notation");
3924 if (!ast_istype(nextthink, ast_value)) {
3925 parseerror(parser, "think-function in [frame,think] notation must be a constant");
3929 if (retval && parser->tok != ']') {
3930 parseerror(parser, "expected closing `]` for [frame,think] notation");
3934 if (retval && !parser_next(parser)) {
3938 if (retval && parser->tok != '{') {
3939 parseerror(parser, "a function body has to be declared after a [frame,think] declaration");
3944 ast_unref(nextthink);
3945 ast_unref(framenum);
3949 has_frame_think = true;
3952 block = new ast_block(parser_ctx(parser));
3954 parseerror(parser, "failed to allocate block");
3955 if (has_frame_think) {
3956 ast_unref(nextthink);
3957 ast_unref(framenum);
3962 if (has_frame_think) {
3963 if (!OPTS_FLAG(EMULATE_STATE)) {
3964 ast_state *state_op = new ast_state(parser_ctx(parser), framenum, nextthink);
3965 if (!block->addExpr(state_op)) {
3966 parseerror(parser, "failed to generate state op for [frame,think]");
3967 ast_unref(nextthink);
3968 ast_unref(framenum);
3973 /* emulate OP_STATE in code: */
3975 ast_expression *self_frame;
3976 ast_expression *self_nextthink;
3977 ast_expression *self_think;
3978 ast_expression *time_plus_1;
3979 ast_store *store_frame;
3980 ast_store *store_nextthink;
3981 ast_store *store_think;
3983 float frame_delta = 1.0f / (float)OPTS_OPTION_U32(OPTION_STATE_FPS);
3985 ctx = parser_ctx(parser);
3986 self_frame = new ast_entfield(ctx, gbl_self, fld_frame);
3987 self_nextthink = new ast_entfield(ctx, gbl_self, fld_nextthink);
3988 self_think = new ast_entfield(ctx, gbl_self, fld_think);
3990 time_plus_1 = new ast_binary(ctx, INSTR_ADD_F,
3991 gbl_time, parser->m_fold.constgen_float(frame_delta, false));
3993 if (!self_frame || !self_nextthink || !self_think || !time_plus_1) {
3994 if (self_frame) delete self_frame;
3995 if (self_nextthink) delete self_nextthink;
3996 if (self_think) delete self_think;
3997 if (time_plus_1) delete time_plus_1;
4003 store_frame = new ast_store(ctx, INSTR_STOREP_F, self_frame, framenum);
4004 store_nextthink = new ast_store(ctx, INSTR_STOREP_F, self_nextthink, time_plus_1);
4005 store_think = new ast_store(ctx, INSTR_STOREP_FNC, self_think, nextthink);
4011 if (!store_nextthink) {
4012 delete self_nextthink;
4020 if (store_frame) delete store_frame;
4021 if (store_nextthink) delete store_nextthink;
4022 if (store_think) delete store_think;
4025 if (!block->addExpr(store_frame) ||
4026 !block->addExpr(store_nextthink) ||
4027 !block->addExpr(store_think))
4034 parseerror(parser, "failed to generate code for [frame,think]");
4035 ast_unref(nextthink);
4036 ast_unref(framenum);
4043 if (var->m_hasvalue) {
4044 if (!(var->m_flags & AST_FLAG_ACCUMULATE)) {
4045 parseerror(parser, "function `%s` declared with multiple bodies", var->m_name);
4049 func = var->m_constval.vfunc;
4052 parseerror(parser, "internal error: nullptr function: `%s`", var->m_name);
4057 func = ast_function::make(var->m_context, var->m_name, var);
4060 parseerror(parser, "failed to allocate function for `%s`", var->m_name);
4064 parser->functions.push_back(func);
4067 parser_enterblock(parser);
4069 for (auto &it : var->m_type_params) {
4073 if (it->m_vtype != TYPE_VECTOR &&
4074 (it->m_vtype != TYPE_FIELD ||
4075 it->m_next->m_vtype != TYPE_VECTOR))
4080 if (!create_vector_members(it.get(), me)) {