gmqcc/intrin.c

416 lines
14 KiB
C
Raw Normal View History

2013-03-09 08:57:37 +00:00
/*
* Copyright (C) 2012, 2013
* Dale Weiler
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is furnished to do
* so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include <string.h>
#include "parser.h"
2013-03-09 08:57:37 +00:00
/*
* Provides all the "intrinsics" / "builtins" for GMQCC. These can do
* a few things, they can provide fall back implementations for math
* functions if the definitions don't exist for some given engine. Or
* then can determine definitions for existing builtins, and simply
* wrap back to them instead. This is like a "portable" intrface that
* is entered when -fintrin is used (causing all existing builtins to
* be ignored by the compiler and instead interface through here.
*/
#define INTRIN_VAL(VALUE, NAME, FUNC, STYPE, VTYPE) \
do { \
(VALUE) = ast_value_new ( \
parser_ctx(intrin->parser), \
"__builtin_" NAME, \
TYPE_FUNCTION \
); \
(VALUE)->expression.next = (ast_expression*)ast_value_new ( \
parser_ctx(intrin->parser), \
STYPE, \
VTYPE \
); \
(FUNC) = ast_function_new ( \
parser_ctx(intrin->parser), \
"__builtin_" NAME, \
(VALUE) \
); \
2013-03-09 08:57:37 +00:00
} while (0)
#define INTRIN_REG(FUNC, VALUE) \
do { \
vec_push(intrin->parser->functions, (FUNC)); \
vec_push(intrin->parser->globals, (ast_expression*)(VALUE)); \
2013-03-09 08:57:37 +00:00
} while (0)
#define QC_M_E 2.71828182845905f
2013-03-09 08:57:37 +00:00
static ast_expression *intrin_pow (intrin_t *intrin) {
/*
* float pow(float x, float y) {
* float local = 1.0f;
* while (y > 0) {
* while (!(y & 1)) {
* y >>= 2;
* x *= x;
* }
* y--;
* local *= x;
* }
* return local;
2013-04-21 10:24:55 +00:00
* }
*/
2013-03-09 08:57:37 +00:00
static ast_value *value = NULL;
if (!value) {
ast_value *arg1 = ast_value_new(parser_ctx(intrin->parser), "x", TYPE_FLOAT);
ast_value *arg2 = ast_value_new(parser_ctx(intrin->parser), "y", TYPE_FLOAT);
ast_value *local = ast_value_new(parser_ctx(intrin->parser), "local", TYPE_FLOAT);
ast_block *body = ast_block_new(parser_ctx(intrin->parser));
ast_block *l1b = ast_block_new(parser_ctx(intrin->parser)); /* loop 1 body */
ast_block *l2b = ast_block_new(parser_ctx(intrin->parser)); /* loop 2 body */
2013-03-09 08:57:37 +00:00
ast_loop *loop1 = NULL;
ast_loop *loop2 = NULL;
ast_function *func = NULL;
INTRIN_VAL(value, "pow", func, "<float>", TYPE_FLOAT);
/* arguments */
vec_push(value->expression.params, arg1);
vec_push(value->expression.params, arg2);
/* local */
vec_push(body->locals, local);
/* assignment to local of value 1.0f */
vec_push(body->exprs,
(ast_expression*)ast_store_new (
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
INSTR_STORE_F,
(ast_expression*)local,
(ast_expression*)intrin->fold->imm_float[1] /* 1 == 1.0f */
2013-03-09 08:57:37 +00:00
)
);
/* y >>= 2 */
vec_push(l2b->exprs,
(ast_expression*)ast_binstore_new (
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
INSTR_STORE_F,
INSTR_MUL_F,
(ast_expression*)arg2,
(ast_expression*)fold_constgen_float(intrin->parser->fold, 0.25f)
2013-03-09 08:57:37 +00:00
)
);
/* x *= x */
vec_push(l2b->exprs,
(ast_expression*)ast_binstore_new (
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
INSTR_STORE_F,
INSTR_MUL_F,
(ast_expression*)arg1,
(ast_expression*)arg1
)
);
/* while (!(y&1)) */
loop2 = ast_loop_new (
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
NULL,
(ast_expression*)ast_binary_new (
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
INSTR_AND,
(ast_expression*)arg2,
(ast_expression*)intrin->fold->imm_float[1] /* 1 == 1.0f */
2013-03-09 08:57:37 +00:00
),
true, /* ! not */
NULL,
false,
NULL,
(ast_expression*)l2b
);
/* push nested loop into loop expressions */
vec_push(l1b->exprs, (ast_expression*)loop2);
/* y-- */
vec_push(l1b->exprs,
(ast_expression*)ast_binstore_new (
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
INSTR_STORE_F,
INSTR_SUB_F,
(ast_expression*)arg2,
(ast_expression*)intrin->fold->imm_float[1] /* 1 == 1.0f */
2013-03-09 08:57:37 +00:00
)
);
/* local *= x */
vec_push(l1b->exprs,
(ast_expression*)ast_binstore_new (
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
INSTR_STORE_F,
INSTR_MUL_F,
(ast_expression*)local,
(ast_expression*)arg1
)
);
/* while (y > 0) */
loop1 = ast_loop_new (
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
NULL,
(ast_expression*)ast_binary_new (
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
INSTR_GT,
(ast_expression*)arg2,
(ast_expression*)intrin->fold->imm_float[0] /* 0 == 0.0f */
2013-03-09 08:57:37 +00:00
),
false,
NULL,
false,
NULL,
(ast_expression*)l1b
);
/* push the loop1 into the body for the function */
vec_push(body->exprs, (ast_expression*)loop1);
/* return local; */
vec_push(body->exprs,
(ast_expression*)ast_return_new (
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
(ast_expression*)local
)
);
/* push block and register intrin for codegen */
vec_push(func->blocks, body);
INTRIN_REG(func, value);
}
return (ast_expression*)value;
}
static ast_expression *intrin_mod(intrin_t *intrin) {
/*
* float mod(float x, float y) {
* return x - y * floor(x / y);
* }
2013-04-21 10:24:55 +00:00
*/
2013-03-09 08:57:37 +00:00
static ast_value *value = NULL;
if (!value) {
ast_call *call = ast_call_new (parser_ctx(intrin->parser), intrin_func(intrin, "floor"));
ast_value *arg1 = ast_value_new(parser_ctx(intrin->parser), "x", TYPE_FLOAT);
ast_value *arg2 = ast_value_new(parser_ctx(intrin->parser), "y", TYPE_FLOAT);
ast_block *body = ast_block_new(parser_ctx(intrin->parser));
2013-03-09 08:57:37 +00:00
ast_function *func = NULL;
INTRIN_VAL(value, "mod", func, "<float>", TYPE_FLOAT);
/* floor(x/y) */
vec_push(call->params,
(ast_expression*)ast_binary_new (
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
INSTR_DIV_F,
(ast_expression*)arg1,
(ast_expression*)arg2
)
);
vec_push(body->exprs,
(ast_expression*)ast_return_new(
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
(ast_expression*)ast_binary_new(
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
INSTR_SUB_F,
(ast_expression*)arg1,
(ast_expression*)ast_binary_new(
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
INSTR_MUL_F,
(ast_expression*)arg2,
(ast_expression*)call
)
)
)
);
vec_push(value->expression.params, arg1); /* float x (for param) */
vec_push(value->expression.params, arg2); /* float y (for param) */
vec_push(func->blocks, body); /* {{{ body }}} */
2013-03-09 08:57:37 +00:00
INTRIN_REG(func, value);
}
return (ast_expression*)value;
}
static ast_expression *intrin_exp(intrin_t *intrin) {
2013-03-09 08:57:37 +00:00
/*
* float exp(float x) {
* return pow(QC_M_E, x);
2013-03-09 08:57:37 +00:00
* }
*/
static ast_value *value = NULL;
if (!value) {
ast_call *call = ast_call_new (parser_ctx(intrin->parser), intrin_func(intrin, "pow"));
ast_value *arg1 = ast_value_new(parser_ctx(intrin->parser), "x", TYPE_FLOAT);
ast_block *body = ast_block_new(parser_ctx(intrin->parser));
2013-03-09 08:57:37 +00:00
ast_function *func = NULL;
INTRIN_VAL(value, "exp", func, "<float>", TYPE_FLOAT);
/* push arguments for params to call */
vec_push(call->params, (ast_expression*)fold_constgen_float(intrin->fold, QC_M_E));
2013-03-09 08:57:37 +00:00
vec_push(call->params, (ast_expression*)arg1);
/* return pow(QC_M_E, x) */
vec_push(body->exprs,
(ast_expression*)ast_return_new(
parser_ctx(intrin->parser),
2013-03-09 08:57:37 +00:00
(ast_expression*)call
)
);
vec_push(value->expression.params, arg1); /* float x (for param) */
vec_push(func->blocks, body); /* {{{ body }}} */
INTRIN_REG(func, value);
}
return (ast_expression*)value;
}
static ast_expression *intrin_isnan(intrin_t *intrin) {
/*
* float isnan(float x) {
* float local;
* local = x;
*
* return (x != local);
2013-04-21 10:24:55 +00:00
* }
*/
static ast_value *value = NULL;
if (!value) {
ast_value *arg1 = ast_value_new(parser_ctx(intrin->parser), "x", TYPE_FLOAT);
ast_value *local = ast_value_new(parser_ctx(intrin->parser), "local", TYPE_FLOAT);
ast_block *body = ast_block_new(parser_ctx(intrin->parser));
ast_function *func = NULL;
2013-04-21 10:24:55 +00:00
INTRIN_VAL(value, "isnan", func, "<float>", TYPE_FLOAT);
vec_push(body->locals, local);
vec_push(body->exprs,
(ast_expression*)ast_store_new(
parser_ctx(intrin->parser),
INSTR_STORE_F,
(ast_expression*)local,
(ast_expression*)arg1
)
);
vec_push(body->exprs,
(ast_expression*)ast_return_new(
parser_ctx(intrin->parser),
(ast_expression*)ast_binary_new(
parser_ctx(intrin->parser),
INSTR_NE_F,
(ast_expression*)arg1,
(ast_expression*)local
)
)
);
vec_push(value->expression.params, arg1);
vec_push(func->blocks, body);
INTRIN_REG(func, value);
}
return (ast_expression*)value;
}
#undef INTRIN_REG
#undef INTRIN_VAL
/*
* TODO: make static (and handle ast_type_string) here for the builtin
* instead of in SYA parse close.
*/
ast_expression *intrin_debug_typestring(intrin_t *intrin) {
(void)intrin;
2013-08-14 03:03:49 +00:00
return (ast_expression*)0x1;
}
static const intrin_func_t intrinsics[] = {
2013-08-14 03:03:49 +00:00
{&intrin_exp, "__builtin_exp", "exp"},
{&intrin_mod, "__builtin_mod", "mod"},
{&intrin_pow, "__builtin_pow", "pow"},
{&intrin_isnan, "__builtin_isnan", "isnan"},
{&intrin_debug_typestring, "__builtin_debug_typestring", ""}
2013-03-09 08:57:37 +00:00
};
static void intrin_error(intrin_t *intrin, const char *fmt, ...) {
va_list ap;
va_start(ap, fmt);
vcompile_error(intrin->parser->lex->tok.ctx, fmt, ap);
va_end(ap);
}
/* exposed */
intrin_t *intrin_init(parser_t *parser) {
intrin_t *intrin = (intrin_t*)mem_a(sizeof(intrin_t));
intrin->parser = parser;
intrin->fold = parser->fold;
intrin->intrinsics = NULL;
vec_append(intrin->intrinsics, sizeof(intrinsics)/sizeof(*intrinsics), intrinsics);
2013-03-09 08:57:37 +00:00
return intrin;
}
2013-03-09 08:57:37 +00:00
void intrin_cleanup(intrin_t *intrin) {
vec_free(intrin->intrinsics);
mem_d(intrin);
}
2013-03-09 08:57:37 +00:00
ast_expression *intrin_func(intrin_t *intrin, const char *name) {
size_t i = 0;
void *find;
2013-08-14 03:03:49 +00:00
/* try current first */
if ((find = (void*)parser_find_global(intrin->parser, name)) && ((ast_value*)find)->expression.vtype == TYPE_FUNCTION)
for (i = 0; i < vec_size(intrin->parser->functions); ++i)
if (((ast_value*)find)->name && !strcmp(intrin->parser->functions[i]->name, ((ast_value*)find)->name) && intrin->parser->functions[i]->builtin < 0)
return (ast_expression*)find;
/* try name second */
for (i = 0; i < vec_size(intrin->intrinsics); i++)
if (!strcmp(intrin->intrinsics[i].name, name))
return intrin->intrinsics[i].intrin(intrin);
/* try alias third */
for (i = 0; i < vec_size(intrin->intrinsics); i++)
if (!strcmp(intrin->intrinsics[i].alias, name))
return intrin->intrinsics[i].intrin(intrin);
intrin_error(intrin, "need function: `%s` compiler depends on it", name);
2013-03-09 08:57:37 +00:00
return NULL;
}