4c553c5a5b
This is a major change of how the filters are interpreted. If everything works how it should, it should not affect you unless you are hacking the filters themselves. Anyway, this change should make a huge improvement in the filter performance as previous benchmarks showed that our major problem lies in the recursion itself. There are also some changes in nest and protocols, related mostly to spreading const declarations throughout the whole BIRD and also to refactored dynamic attribute definitions. The need of these came up during the whole work and it is too difficult to split out these not-so-related changes.
55 lines
1.8 KiB
Text
55 lines
1.8 KiB
Text
m4_divert(-1)m4_dnl
|
|
#
|
|
# BIRD -- Converting instructions trees to instruction lines
|
|
#
|
|
# (c) 2018 Maria Matejka <mq@jmq.cz>
|
|
#
|
|
# Can be freely distributed and used under the terms of the GNU GPL.
|
|
#
|
|
|
|
# Common aliases
|
|
m4_define(DNL, `m4_dnl')
|
|
|
|
m4_define(POSTFIXIFY_TRAILER, `dest->items[pos].fi_code = what->fi_code;
|
|
dest->items[pos].lineno = what->lineno;')
|
|
|
|
m4_define(INST, `m4_divert(1)POSTFIXIFY_TRAILER
|
|
break; case $1:
|
|
m4_divert(-1)'))
|
|
m4_define(ARG, `m4_divert(1)pos = postfixify(dest, what->a[$1-1].p, pos);
|
|
m4_divert(-1)')
|
|
m4_define(ARG_ANY, `m4_divert(1)pos = postfixify(dest, what->a[$1-1].p, pos);
|
|
m4_divert(-1)')
|
|
m4_define(LINE, `m4_divert(1)dest->items[pos].lines[$2] = f_postfixify(what->a[$1-1].p);
|
|
m4_divert(-1)')
|
|
m4_define(LINEP, `m4_divert(1)dest->items[pos].lines[$2] = what->a[$1-1].p;
|
|
m4_divert(-1)')
|
|
m4_define(SYMBOL, `m4_divert(1)dest->items[pos].sym = what->a[$1-1].p;
|
|
m4_divert(-1)')
|
|
m4_define(VALI, `m4_divert(1)dest->items[pos].vp = &(what->val);
|
|
m4_divert(-1)')
|
|
m4_define(VALP, `m4_divert(1)dest->items[pos].vp = (dest->items[pos].sym = what->a[$1-1].p)->def;
|
|
m4_divert(-1)')
|
|
m4_define(FRET, `m4_divert(1)dest->items[pos].fret = what->a[$1-1].i;
|
|
m4_divert(-1)')
|
|
m4_define(ECS, `m4_divert(1)dest->items[pos].ecs = what->aux;
|
|
m4_divert(-1)')
|
|
m4_define(RTC, `m4_divert(1)dest->items[pos].rtc = what->a[$1-1].rtc;
|
|
m4_divert(-1)')
|
|
m4_define(STATIC_ATTR, `m4_divert(1)dest->items[pos].sa = what->sa;
|
|
m4_divert(-1)')
|
|
m4_define(DYNAMIC_ATTR, `m4_divert(1)dest->items[pos].da = what->da;
|
|
m4_divert(-1)')
|
|
m4_define(COUNT, `m4_divert(1)dest->items[pos].count = what->a[$1-1].i;
|
|
m4_divert(-1)')
|
|
m4_define(POSTFIXIFY, `m4_divert(1)$1m4_divert(-1)')
|
|
|
|
m4_m4wrap(`
|
|
m4_divert(0)DNL
|
|
case FI_NOP: bug("This shall not happen");
|
|
m4_undivert(1)
|
|
POSTFIXIFY_TRAILER
|
|
break; default: bug( "Unknown instruction %d (%c)", what->fi_code, what->fi_code & 0xff);
|
|
')
|
|
|
|
m4_changequote([[,]])
|