Add wasm tacle-bench targets

This commit is contained in:
2026-06-12 20:06:22 +02:00
parent 30daa8a00c
commit 08c2e9c13d
1122 changed files with 520422 additions and 0 deletions

View File

@ -0,0 +1,89 @@
/*
This program is part of the TACLeBench benchmark suite.
Version V 1.9
Name: deg2rad
Author: unknown
Function: deg2rad performs conversion of degree to radiant
Source: MiBench
http://wwweb.eecs.umich.edu/mibench
Original name: basicmath_small
Changes: no major functional changes
License: this code is FREE with no restrictions
*/
#include "pi.h"
// Wasm loop bounds
__attribute__((import_module("__pragma"), import_name("loopbound"))) extern void
__pragma_loopbound(unsigned int min_bound, unsigned int max_bound);
#define deg2rad(d) ((d) * PI / 180)
/*
Forward declaration of functions
*/
void deg2rad_init(void);
__attribute__((noinline)) __attribute__((export_name("entrypoint"))) void
deg2rad_main(void);
int deg2rad_return(void);
__attribute__((noinline)) __attribute__((export_name("main"))) int main(void);
/*
Declaration of global variables
*/
float deg2rad_X, deg2rad_Y;
/*
Initialization function
*/
void
deg2rad_init(void) {
deg2rad_X = 0;
deg2rad_Y = 0;
}
/*
Return function
*/
int
deg2rad_return(void) {
int temp = deg2rad_Y;
if (temp == 1133)
return 0;
else
return -1;
}
/*
Main functions
*/
__attribute__((noinline)) __attribute__((export_name("entrypoint"))) void
deg2rad_main(void) {
/* convert some rads to degrees */
__pragma_loopbound(361, 361);
for (deg2rad_X = 0.0f; deg2rad_X <= 360.0f; deg2rad_X += 1.0f)
deg2rad_Y += deg2rad(deg2rad_X);
}
__attribute__((noinline)) __attribute__((export_name("main"))) int
main(void) {
deg2rad_init();
deg2rad_main();
return deg2rad_return();
}

View File

@ -0,0 +1,30 @@
/*
This program is part of the TACLeBench benchmark suite.
Version V 1.9
Name: pi
Author: unknown
Function: Header file for definition of pi
Source: MiBench
http://wwweb.eecs.umich.edu/mibench
Original name: basicmath_small
Changes: no major functional changes
License: this code is FREE with no restrictions
*/
#ifndef PI__H
#define PI__H
#ifndef PI
#define PI 3.14f
#endif
#endif /* PI__H */