[<<][staapl][>>][..]
Fri Dec 14 10:16:22 CET 2007
partial reduction
maybe macros should be made greedy, such that when completely expanded
they reduce. what i mean is that "1 2 +" -> (movlw 3) but "abc 1 +" ->
(movlw (abc 1 +)). combined with the mechanism described above, this
could be the key to unification.
as a result, macros will be the only evaluation mechanism, which just
need to be provided with a symbol lookup. there are 2 phases of macro
execution:
- phase 1: compile to literals + instructions, names symbolic
- phase 2: compute literal values using resolved names
it looks like making the effect of 'meta' into a local effect is the
way to go. it would be nice to find a way to fix the 'postponing'
operation first, so at least generated assembly code looks nice.
[Reply][About][<<][staapl][>>][..]