feat: FIXMATH_NO_HARD_DIVISION option; update README; test-refactor #49
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello again!
This adds a "NO_HARD_DIVISION" option that is separate from the "OPTIMIZE_8BIT" option. The reason is that I am building for STM32G0 (Cortex-M0+) which does not have hardware division but does have 32-bit multiplication.
Perhaps you have some advice. From ARM:
"""
The MULS instruction provides a 32-bit x 32-bit multiply that returns the least-significant 32-bits of the result.
"""
https://developer.arm.com/documentation/ddi0484/c/Introduction/Configurable-options/Configurable-multiplier?lang=en
Presently I am compiling with
FIXMATH_NO_HARD_DIVISION
andFIXMATH_NO_OVERFLOW
and primarily concerned with program size.fix16_mul
ends up being 240B with these instructions.Yet I see the
umull
instruction in there which is 32 x 32 -> 64.Test generation is refactored slightly to remove repetition.
Cheers,
J.P.