In this patch, I introduce a new alt macro feature.
This feature adds meaning for the % when using it as a prefix to the calling macro arguments.
In the altmacro mode, the percent sign '%' before an absolute expression convert the expression first to a string.
As described in the https://sourceware.org/binutils/docs-2.27/as/Altmacro.html
"Expression results as strings
You can write `%expr' to evaluate the expression expr and use the result as a string."
expression assumptions:
- '%' can only evaluate an absolute expression.
- Altmacro '%' must be the first character of the evaluated expression.
- If no '%' is located before the expression, a regular module operation is expected.
- The result of Absolute Expressions can be only integer.
Better to move this test above .altmacro to make sure the default behaviour is .noaltmacro.