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,27 @@
File: huff_enc.c
Original provenience: David Bourgin (David.Bourgin@ufrima.imag.fr)
2017-04-18:
- Annotated huff_enc_main as entry-point for timing analysis
2016-03-24:
- Replaced dynamic memory allocation by a fixed array with 514 entries
- Replaced memset() with loops
- Added source code for a special qsort() implementation without
function pointer
- Replaced file I/O by reading and writing to char arrays
- Added huff_dec_main(), huff_dec_init() and huff_dec_return()
- Added huff_dec_ prefix to all functions, types and global variables
- Changed function arguments to ANSI style
- Replaced macro definitions
- Added forward declarations of all functions
- Added generic TACLeBench header replacing previous header
- Included license from compress.txt
- Applied code formatting with astyle
2016-05-24:
- Changed type of j to unsigned to avoid warning
- Removed static declarations
2016-05-25:
- Precise types to avoid gcc++ warnings