mirror of
https://github.com/danog/ir.git
synced 2024-11-30 04:39:43 +01:00
64 lines
1.1 KiB
C
64 lines
1.1 KiB
C
/*
|
|
* IR - Lightweight JIT Compilation Framework
|
|
* (Exmaples package)
|
|
* Copyright (C) 2023 by IR project.
|
|
* Authors: Anatol Belski <anbelski@linux.microsoft.com>
|
|
*/
|
|
|
|
#include "ir.h"
|
|
#include "ir_builder.h"
|
|
#include <stdlib.h>
|
|
|
|
/*
|
|
* double myfunc(double x, double y) {
|
|
* return x - y + .3;
|
|
* }
|
|
*/
|
|
typedef double (*myfunc_t)(double, double);
|
|
|
|
void gen_myfunc(ir_ctx *ctx)
|
|
{
|
|
ir_START();
|
|
ir_ref x = ir_PARAM(IR_DOUBLE, "x", 1);
|
|
ir_ref y = ir_PARAM(IR_DOUBLE, "y", 2);
|
|
ir_ref cr0 = ir_SUB_D(x, y);
|
|
|
|
ir_ref cd = ir_CONST_DOUBLE(.3);
|
|
cr0 = ir_ADD_D(cr0, cd);
|
|
|
|
ir_RETURN(cr0);
|
|
}
|
|
|
|
void run(myfunc_t func)
|
|
{
|
|
const double N = 2;
|
|
double x, y;
|
|
for (y = -N; y < N; y++) {
|
|
for (x = -N; x < N; x++) {
|
|
double ret = func(x, y);
|
|
printf("%4.1f - %4.1f + 0.3 = %4.1f\n", x, y, ret);
|
|
}
|
|
}
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
ir_ctx ctx = {0};
|
|
|
|
ir_consistency_check();
|
|
|
|
ir_init(&ctx, IR_FUNCTION | IR_OPT_FOLDING, 256, 1024);
|
|
|
|
gen_myfunc(&ctx);
|
|
|
|
size_t size;
|
|
void *entry = ir_jit_compile(&ctx, 2, &size);
|
|
if (entry) {
|
|
run(entry);
|
|
}
|
|
|
|
ir_free(&ctx);
|
|
|
|
return 0;
|
|
}
|