are calcs happening as immediate?
are there other constant expressions that should be pre-caclulated?
is there opportunity to collapse squences of jsr k-literal <bytes> jsr n-literal <bytes> ... into jsr k+n-literal <bytes+bytes> esp for single byte constants
do we set properties to zero often enough to have a special word and avoid all the zero literals?
advent-forth/src/special.fs
Line 138 in 20e4012
are calcs happening as immediate?
are there other constant expressions that should be pre-caclulated?
is there opportunity to collapse squences of
jsr k-literal <bytes> jsr n-literal <bytes> ...intojsr k+n-literal <bytes+bytes>esp for single byte constantsdo we set properties to zero often enough to have a special word and avoid all the zero literals?