-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a quick comparison between ramcrc32bd and ramrsbd
A bit more manual than I would've liked, compiled with: CC='arm-none-eabi-gcc -static -mthumb' CFLAGS='-DLFS_NO_DEBUG -DLFS_NO_WARN -DLFS_NO_ERROR -DLFS_NO_ASSERT' make code stack But then manually removed unused functions that couldn't be gced with available info: - ramrsbd_gf_p_scale (unused, ramrsbd_gf_p_xors overlaps) - ramrsbd_gf_p_xor (unused, ramrsbd_gf_p_xors overlaps) - lfs_crc (unused in ramrsbd) - rtable.0/RAMRSBD_GF_LOG/RAMRSBD_GF_POW (attributes to tables) - ramrsbd_gf_divmod (unused, ramrsbd_gf_p_divmod1 overlaps) Note the code/stack cost does NOT include the related table/buffer costs.
- Loading branch information
Showing
3 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters