2019-02-08 20:38:12 +08:00
|
|
|
m4_divert(-1)m4_dnl
|
|
|
|
#
|
|
|
|
# BIRD -- Construction of per-instruction structures
|
|
|
|
#
|
|
|
|
# (c) 2018 Maria Matejka <mq@jmq.cz>
|
|
|
|
#
|
|
|
|
# Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Global Diversions:
|
|
|
|
# 4 enum fi_code
|
2019-02-12 18:35:41 +08:00
|
|
|
# 5 enum fi_code to string
|
2019-02-12 21:16:28 +08:00
|
|
|
# 6 dump line item
|
|
|
|
# 7 dump line item callers
|
2019-05-22 23:16:32 +08:00
|
|
|
# 8 linearize
|
2019-02-13 19:25:30 +08:00
|
|
|
# 9 same (filter comparator)
|
2019-02-16 06:59:44 +08:00
|
|
|
# 1 union in struct f_inst
|
2019-07-01 17:57:35 +08:00
|
|
|
# 3 constructors + interpreter
|
2019-02-08 20:38:12 +08:00
|
|
|
#
|
|
|
|
# Per-inst Diversions:
|
2019-02-16 06:59:44 +08:00
|
|
|
# 101 content of per-inst struct
|
2019-02-12 18:31:18 +08:00
|
|
|
# 102 constructor arguments
|
|
|
|
# 103 constructor body
|
2019-02-12 21:16:28 +08:00
|
|
|
# 104 dump line item content
|
2019-05-22 23:16:32 +08:00
|
|
|
# 105 linearize body
|
2019-02-13 19:25:30 +08:00
|
|
|
# 106 comparator body
|
2019-02-19 19:34:16 +08:00
|
|
|
# 107 struct f_line_item content
|
|
|
|
# 108 interpreter body
|
2019-02-12 18:31:18 +08:00
|
|
|
#
|
2019-06-27 21:55:48 +08:00
|
|
|
# Final diversions
|
|
|
|
# 200+ completed text before it is flushed to output
|
2019-02-08 20:38:12 +08:00
|
|
|
|
2019-02-11 23:44:14 +08:00
|
|
|
m4_dnl m4_debugmode(aceflqtx)
|
|
|
|
|
2019-02-08 20:38:12 +08:00
|
|
|
m4_define(FID_ZONE, `m4_divert($1) /* $2 for INST_NAME() */')
|
2019-02-16 06:59:44 +08:00
|
|
|
m4_define(FID_INST, `FID_ZONE(1, Instruction structure for config)')
|
|
|
|
m4_define(FID_LINE, `FID_ZONE(2, Instruction structure for interpreter)')
|
2019-02-08 20:38:12 +08:00
|
|
|
m4_define(FID_NEW, `FID_ZONE(3, Constructor)')
|
|
|
|
m4_define(FID_ENUM, `FID_ZONE(4, Code enum)')
|
2019-02-12 18:35:41 +08:00
|
|
|
m4_define(FID_ENUM_STR, `FID_ZONE(5, Code enum to string)')
|
2019-02-12 21:16:28 +08:00
|
|
|
m4_define(FID_DUMP, `FID_ZONE(6, Dump line)')
|
|
|
|
m4_define(FID_DUMP_CALLER, `FID_ZONE(7, Dump line caller)')
|
2019-05-22 23:16:32 +08:00
|
|
|
m4_define(FID_LINEARIZE, `FID_ZONE(8, Linearize)')
|
2019-02-13 19:25:30 +08:00
|
|
|
m4_define(FID_SAME, `FID_ZONE(9, Comparison)')
|
2019-02-08 20:38:12 +08:00
|
|
|
|
|
|
|
m4_define(FID_STRUCT_IN, `m4_divert(101)')
|
|
|
|
m4_define(FID_NEW_ARGS, `m4_divert(102)')
|
|
|
|
m4_define(FID_NEW_BODY, `m4_divert(103)')
|
2019-02-13 03:37:32 +08:00
|
|
|
m4_define(FID_DUMP_BODY, `m4_divert(104)m4_define([[FID_DUMP_BODY_EXISTS]])')
|
2019-05-22 23:16:32 +08:00
|
|
|
m4_define(FID_LINEARIZE_BODY, `m4_divert(105)m4_define([[FID_LINEARIZE_BODY_EXISTS]])')
|
2019-02-13 19:25:30 +08:00
|
|
|
m4_define(FID_SAME_BODY, `m4_divert(106)')
|
2019-02-16 06:59:44 +08:00
|
|
|
m4_define(FID_LINE_IN, `m4_divert(107)')
|
2019-02-19 19:34:16 +08:00
|
|
|
m4_define(FID_INTERPRET_BODY, `m4_divert(108)')
|
2019-02-08 20:38:12 +08:00
|
|
|
|
2019-02-19 19:34:16 +08:00
|
|
|
m4_define(FID_ALL, `FID_INTERPRET_BODY');
|
2019-06-27 21:55:48 +08:00
|
|
|
m4_define(FID_HIC, `m4_ifelse(TARGET, [[H]], $1, TARGET, [[I]], $2, TARGET, [[C]], $3)')
|
2019-02-11 23:44:14 +08:00
|
|
|
|
2019-02-08 20:38:12 +08:00
|
|
|
m4_define(INST_FLUSH, `m4_ifdef([[INST_NAME]], [[
|
|
|
|
FID_ENUM
|
|
|
|
INST_NAME(),
|
2019-02-12 18:35:41 +08:00
|
|
|
FID_ENUM_STR
|
|
|
|
[INST_NAME()] = "INST_NAME()",
|
2019-02-16 06:59:44 +08:00
|
|
|
FID_INST
|
|
|
|
struct {
|
2019-02-08 20:38:12 +08:00
|
|
|
m4_undivert(101)
|
2019-02-16 06:59:44 +08:00
|
|
|
} i_[[]]INST_NAME();
|
|
|
|
FID_LINE
|
|
|
|
struct {
|
|
|
|
m4_undivert(107)
|
|
|
|
} i_[[]]INST_NAME();
|
2019-02-08 20:38:12 +08:00
|
|
|
FID_NEW
|
2019-06-27 21:55:48 +08:00
|
|
|
FID_HIC(
|
|
|
|
[[
|
2019-07-01 17:57:35 +08:00
|
|
|
struct f_inst *f_new_inst_]]INST_NAME()[[(enum f_instruction_code fi_code
|
|
|
|
[[m4_undivert(102)]]
|
|
|
|
);]],
|
|
|
|
[[
|
|
|
|
case INST_NAME():
|
|
|
|
#define whati (&(what->i_]]INST_NAME()[[))
|
|
|
|
m4_ifelse(m4_eval(INST_INVAL() > 0), 1, [[if (fstk->vcnt < INST_INVAL()) runtime("Stack underflow"); fstk->vcnt -= INST_INVAL(); ]])
|
|
|
|
[[m4_undivert(108)]]
|
|
|
|
#undef whati
|
|
|
|
break;
|
|
|
|
]],
|
|
|
|
[[
|
|
|
|
struct f_inst *f_new_inst_]]INST_NAME()[[(enum f_instruction_code fi_code
|
|
|
|
[[m4_undivert(102)]]
|
|
|
|
)
|
2019-06-27 21:55:48 +08:00
|
|
|
{
|
2019-06-28 17:08:48 +08:00
|
|
|
struct f_inst *what = cfg_allocz(sizeof(struct f_inst));
|
|
|
|
what->fi_code = fi_code;
|
|
|
|
what->lineno = ifs->lino;
|
|
|
|
what->size = 1;
|
|
|
|
#define whati (&(what->i_]]INST_NAME()[[))
|
2019-06-27 21:55:48 +08:00
|
|
|
[[m4_undivert(103)]]
|
2019-06-28 17:08:48 +08:00
|
|
|
#undef whati
|
|
|
|
return what;
|
2019-06-27 21:55:48 +08:00
|
|
|
}
|
|
|
|
]])
|
2019-02-12 21:16:28 +08:00
|
|
|
|
|
|
|
FID_DUMP_CALLER
|
|
|
|
case INST_NAME(): f_dump_line_item_]]INST_NAME()[[(item, indent + 1); break;
|
|
|
|
|
|
|
|
FID_DUMP
|
|
|
|
m4_ifdef([[FID_DUMP_BODY_EXISTS]],
|
2019-02-16 06:59:44 +08:00
|
|
|
[[static inline void f_dump_line_item_]]INST_NAME()[[(const struct f_line_item *item_, const int indent)]],
|
2019-02-12 21:16:28 +08:00
|
|
|
[[static inline void f_dump_line_item_]]INST_NAME()[[(const struct f_line_item *item UNUSED, const int indent UNUSED)]])
|
|
|
|
m4_undefine([[FID_DUMP_BODY_EXISTS]])
|
|
|
|
{
|
2019-02-16 06:59:44 +08:00
|
|
|
#define item (&(item_->i_]]INST_NAME()[[))
|
2019-02-12 21:16:28 +08:00
|
|
|
m4_undivert(104)
|
2019-02-16 06:59:44 +08:00
|
|
|
#undef item
|
2019-02-12 21:16:28 +08:00
|
|
|
}
|
2019-02-13 03:37:32 +08:00
|
|
|
|
2019-05-22 23:16:32 +08:00
|
|
|
FID_LINEARIZE
|
2019-02-13 03:37:32 +08:00
|
|
|
case INST_NAME(): {
|
2019-06-28 17:08:48 +08:00
|
|
|
#define whati (&(what->i_]]INST_NAME()[[))
|
2019-02-16 06:59:44 +08:00
|
|
|
#define item (&(dest->items[pos].i_]]INST_NAME()[[))
|
2019-02-13 03:37:32 +08:00
|
|
|
m4_undivert(105)
|
2019-06-28 17:08:48 +08:00
|
|
|
#undef whati
|
2019-02-16 06:59:44 +08:00
|
|
|
#undef item
|
2019-06-28 17:08:48 +08:00
|
|
|
dest->items[pos].fi_code = what->fi_code;
|
|
|
|
dest->items[pos].lineno = what->lineno;
|
2019-02-13 03:37:32 +08:00
|
|
|
break;
|
|
|
|
}
|
2019-05-22 23:16:32 +08:00
|
|
|
m4_undefine([[FID_LINEARIZE_BODY_EXISTS]])
|
2019-02-13 03:37:32 +08:00
|
|
|
|
2019-02-13 19:25:30 +08:00
|
|
|
FID_SAME
|
|
|
|
case INST_NAME():
|
2019-02-16 06:59:44 +08:00
|
|
|
#define f1 (&(f1_->i_]]INST_NAME()[[))
|
|
|
|
#define f2 (&(f2_->i_]]INST_NAME()[[))
|
2019-02-13 19:25:30 +08:00
|
|
|
m4_undivert(106)
|
2019-02-16 06:59:44 +08:00
|
|
|
#undef f1
|
|
|
|
#undef f2
|
2019-02-13 19:25:30 +08:00
|
|
|
break;
|
|
|
|
|
2019-02-08 20:38:12 +08:00
|
|
|
]])')
|
|
|
|
|
2019-02-19 19:34:16 +08:00
|
|
|
m4_define(INST, `m4_dnl
|
|
|
|
INST_FLUSH()m4_dnl
|
|
|
|
m4_define([[INST_NAME]], [[$1]])m4_dnl
|
|
|
|
m4_define([[INST_INVAL]], [[$2]])m4_dnl
|
|
|
|
FID_ALL() m4_dnl
|
|
|
|
')
|
2019-02-08 20:38:12 +08:00
|
|
|
|
2019-02-13 03:37:32 +08:00
|
|
|
m4_dnl FID_MEMBER call:
|
|
|
|
m4_dnl type
|
|
|
|
m4_dnl name in f_inst
|
|
|
|
m4_dnl name in f_line_item
|
2019-02-13 19:25:30 +08:00
|
|
|
m4_dnl comparator for same
|
2019-02-13 03:37:32 +08:00
|
|
|
m4_dnl dump format string
|
|
|
|
m4_dnl dump format args
|
2019-02-19 19:34:16 +08:00
|
|
|
m4_dnl interpreter body
|
2019-02-08 20:38:12 +08:00
|
|
|
m4_define(FID_MEMBER, `m4_dnl
|
2019-02-16 06:59:44 +08:00
|
|
|
FID_LINE_IN
|
|
|
|
$1 $2;
|
2019-02-08 20:38:12 +08:00
|
|
|
FID_STRUCT_IN
|
|
|
|
$1 $2;
|
|
|
|
FID_NEW_ARGS
|
|
|
|
, $1 $2
|
|
|
|
FID_NEW_BODY
|
2019-06-28 17:08:48 +08:00
|
|
|
whati->$2 = $2;
|
2019-02-12 21:16:28 +08:00
|
|
|
m4_ifelse($3,,,[[
|
2019-05-22 23:16:32 +08:00
|
|
|
FID_LINEARIZE_BODY
|
2019-06-28 17:08:48 +08:00
|
|
|
item->$3 = whati->$2;
|
2019-02-13 03:37:32 +08:00
|
|
|
]])
|
|
|
|
m4_ifelse($4,,,[[
|
2019-02-13 19:25:30 +08:00
|
|
|
FID_SAME_BODY
|
|
|
|
if ($4) return 0;
|
|
|
|
]])
|
|
|
|
m4_ifelse($5,,,[[
|
2019-02-12 21:16:28 +08:00
|
|
|
FID_DUMP_BODY
|
2019-02-13 19:25:30 +08:00
|
|
|
debug("%s$5\n", INDENT, $6);
|
2019-02-12 21:16:28 +08:00
|
|
|
]])
|
2019-02-19 19:34:16 +08:00
|
|
|
m4_ifelse($7,,,[[
|
|
|
|
FID_INTERPRET_BODY
|
|
|
|
$7
|
|
|
|
]])
|
|
|
|
FID_ALL')
|
2019-02-08 20:38:12 +08:00
|
|
|
|
2019-02-19 19:34:16 +08:00
|
|
|
m4_define(ARG_ANY, `
|
2019-02-16 06:59:44 +08:00
|
|
|
FID_STRUCT_IN
|
2019-06-28 17:08:48 +08:00
|
|
|
struct f_inst * f$1;
|
2019-02-16 06:59:44 +08:00
|
|
|
FID_NEW_ARGS
|
2019-06-28 17:08:48 +08:00
|
|
|
, struct f_inst * f$1
|
2019-02-08 20:38:12 +08:00
|
|
|
FID_NEW_BODY
|
2019-06-28 17:08:48 +08:00
|
|
|
whati->f$1 = f$1;
|
|
|
|
for (const struct f_inst *child = f$1; child; child = child->next) what->size += child->size;
|
2019-05-22 23:16:32 +08:00
|
|
|
FID_LINEARIZE_BODY
|
2019-06-28 17:08:48 +08:00
|
|
|
pos = linearize(dest, whati->f$1, pos);m4_dnl
|
2019-02-19 19:34:16 +08:00
|
|
|
FID_ALL()')
|
|
|
|
|
|
|
|
m4_define(ARG, `ARG_ANY($1)
|
|
|
|
FID_INTERPRET_BODY
|
|
|
|
if (v$1.type != $2) runtime("Argument $1 of instruction %s must be of type $2, got 0x%02x", f_instruction_name(what->fi_code), v$1.type)m4_dnl
|
|
|
|
FID_ALL()')
|
|
|
|
|
|
|
|
m4_define(LINEX, `FID_INTERPRET_BODY
|
|
|
|
do {
|
2019-05-30 03:03:52 +08:00
|
|
|
fstk->estk[fstk->ecnt].pos = 0;
|
|
|
|
fstk->estk[fstk->ecnt].line = $1;
|
|
|
|
fstk->estk[fstk->ecnt].ventry = fstk->vcnt;
|
|
|
|
fstk->estk[fstk->ecnt].vbase = fstk->estk[fstk->ecnt-1].vbase;
|
|
|
|
fstk->estk[fstk->ecnt].emask = 0;
|
|
|
|
fstk->ecnt++;
|
2019-02-19 19:34:16 +08:00
|
|
|
} while (0)m4_dnl
|
|
|
|
FID_ALL()')
|
|
|
|
|
2019-02-16 06:59:44 +08:00
|
|
|
m4_define(LINE, `
|
|
|
|
FID_LINE_IN
|
|
|
|
const struct f_line * fl$1;
|
|
|
|
FID_STRUCT_IN
|
|
|
|
const struct f_inst * f$1;
|
|
|
|
FID_NEW_ARGS
|
|
|
|
, const struct f_inst * f$1
|
2019-02-08 20:38:12 +08:00
|
|
|
FID_NEW_BODY
|
2019-06-28 17:08:48 +08:00
|
|
|
whati->f$1 = f$1;
|
2019-02-12 21:16:28 +08:00
|
|
|
FID_DUMP_BODY
|
2019-02-16 06:59:44 +08:00
|
|
|
f_dump_line(item->fl$1, indent + 1);
|
2019-05-22 23:16:32 +08:00
|
|
|
FID_LINEARIZE_BODY
|
2019-06-28 17:08:48 +08:00
|
|
|
item->fl$1 = f_linearize(whati->f$1);
|
2019-02-13 19:25:30 +08:00
|
|
|
FID_SAME_BODY
|
2019-02-16 06:59:44 +08:00
|
|
|
if (!f_same(f1->fl$1, f2->fl$1)) return 0;
|
2019-02-19 19:34:16 +08:00
|
|
|
FID_INTERPRET_BODY
|
|
|
|
do { if (whati->fl$1) {
|
|
|
|
LINEX(whati->fl$1);
|
|
|
|
} } while(0)m4_dnl
|
|
|
|
FID_ALL()')
|
|
|
|
|
2019-06-19 20:09:57 +08:00
|
|
|
m4_define(RESULT_OK, `FID_INTERPRET_BODY()fstk->vcnt++FID_ALL()')
|
|
|
|
m4_define(RESULT, `RESULT_VAL([[ (struct f_val) { .type = $1, .val.$2 = $3 } ]])')
|
|
|
|
m4_define(RESULT_VAL, `FID_INTERPRET_BODY()do { res = $1; RESULT_OK; } while (0)FID_ALL()')
|
2019-02-19 19:34:16 +08:00
|
|
|
|
2019-02-13 19:25:30 +08:00
|
|
|
m4_define(SYMBOL, `FID_MEMBER(const struct symbol *, sym, sym,
|
2019-02-19 19:34:16 +08:00
|
|
|
[[strcmp(f1->sym->name, f2->sym->name) || (f1->sym->class != f2->sym->class)]], symbol %s, item->sym->name, const struct symbol *sym = whati->sym)')
|
|
|
|
m4_define(VAL, `FID_MEMBER(struct f_val $1, val, val m4_ifelse($1,,,[0]), [[!val_same(&f1->val, &f2->val)]], value %s, val_dump(&item->val),)')
|
|
|
|
m4_define(FRET, `FID_MEMBER(enum filter_return, fret, fret, f1->fret != f2->fret, %s, filter_return_str(item->fret), enum filter_return fret = whati->fret)')
|
|
|
|
m4_define(ECS, `FID_MEMBER(enum ec_subtype, ecs, ecs, f1->ecs != f2->ecs, ec subtype %s, ec_subtype_str(item->ecs), enum ec_subtype ecs = whati->ecs)')
|
|
|
|
m4_define(RTC, `FID_MEMBER(const struct rtable_config *, rtc, rtc, [[strcmp(f1->rtc->name, f2->rtc->name)]], route table %s, item->rtc->name, struct rtable *table = whati->rtc->table)')
|
|
|
|
m4_define(STATIC_ATTR, `FID_MEMBER(struct f_static_attr, sa, sa, f1->sa.sa_code != f2->sa.sa_code,,, struct f_static_attr sa = whati->sa)')
|
|
|
|
m4_define(DYNAMIC_ATTR, `FID_MEMBER(struct f_dynamic_attr, da, da, f1->da.ea_code != f2->da.ea_code,,, struct f_dynamic_attr da = whati->da)')
|
2019-02-13 19:25:30 +08:00
|
|
|
m4_define(COUNT, `FID_MEMBER(uint, count, count, f1->count != f2->count, number %u, item->count)')
|
2019-02-19 19:34:16 +08:00
|
|
|
m4_define(TREE, `FID_MEMBER(const struct f_tree *, tree, tree, [[!same_tree(f1->tree, f2->tree)]], tree %p, item->tree, const struct f_tree *tree = whati->tree)')
|
2019-02-13 19:25:30 +08:00
|
|
|
m4_define(STRING, `FID_MEMBER(const char *, s, s, [[strcmp(f1->s, f2->s)]], string \"%s\", item->s)')
|
2019-02-12 21:16:28 +08:00
|
|
|
|
|
|
|
m4_define(FID_WR_PUT_LIST)
|
2019-06-27 21:55:48 +08:00
|
|
|
m4_define(FID_WR_PUT_ALSO, `m4_define([[FID_WR_PUT_LIST]],FID_WR_PUT_LIST()[[FID_WR_DPUT(]]FID_WR_DIDX[[)FID_WR_DPUT(]]$1[[)]])m4_define([[FID_WR_DIDX]],m4_eval(FID_WR_DIDX+1))m4_divert(FID_WR_DIDX)')
|
2019-02-12 21:16:28 +08:00
|
|
|
|
2019-06-27 21:55:48 +08:00
|
|
|
m4_define(FID_WR_DIRECT, `m4_ifelse(TARGET,[[$1]],[[FID_WR_INIT()]],[[FID_WR_STOP()]])')
|
|
|
|
m4_define(FID_WR_INIT, `m4_define([[FID_WR_DIDX]],200)m4_define([[FID_WR_PUT]],[[FID_WR_PUT_ALSO($]][[@)]])m4_divert(200)')
|
|
|
|
m4_define(FID_WR_STOP, `m4_define([[FID_WR_PUT]])m4_divert(-1)')
|
2019-02-08 20:38:12 +08:00
|
|
|
|
2019-02-12 18:31:18 +08:00
|
|
|
m4_changequote([[,]])
|
2019-06-27 21:55:48 +08:00
|
|
|
FID_WR_DIRECT(I)
|
2019-07-01 17:57:35 +08:00
|
|
|
FID_WR_PUT(3)
|
2019-06-27 21:55:48 +08:00
|
|
|
FID_WR_DIRECT(C)
|
2019-02-11 23:44:14 +08:00
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "filter/filter.h"
|
|
|
|
#include "filter/f-inst.h"
|
2019-02-12 18:35:41 +08:00
|
|
|
|
|
|
|
/* Instruction codes to string */
|
|
|
|
static const char * const f_instruction_name_str[] = {
|
|
|
|
FID_WR_PUT(5)
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *
|
|
|
|
f_instruction_name(enum f_instruction_code fi)
|
|
|
|
{
|
|
|
|
if (fi < (sizeof(f_instruction_name_str) / sizeof(f_instruction_name_str[0])))
|
|
|
|
return f_instruction_name_str[fi];
|
|
|
|
else
|
|
|
|
bug("Got unknown instruction code: %d", fi);
|
|
|
|
}
|
|
|
|
|
2019-02-12 21:16:28 +08:00
|
|
|
/* Instruction constructors */
|
|
|
|
FID_WR_PUT(3)
|
|
|
|
|
|
|
|
/* Line dumpers */
|
|
|
|
#define INDENT (((const char *) f_dump_line_indent_str) + sizeof(f_dump_line_indent_str) - (indent) - 1)
|
|
|
|
static const char f_dump_line_indent_str[] = " ";
|
|
|
|
|
|
|
|
FID_WR_PUT(6)
|
|
|
|
|
2019-02-16 06:59:44 +08:00
|
|
|
void f_dump_line(const struct f_line *dest, uint indent)
|
2019-02-12 21:16:28 +08:00
|
|
|
{
|
|
|
|
if (!dest) {
|
|
|
|
debug("%sNo filter line (NULL)\n", INDENT);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
debug("%sFilter line %p (len=%u)\n", INDENT, dest, dest->len);
|
|
|
|
for (uint i=0; i<dest->len; i++) {
|
|
|
|
const struct f_line_item *item = &dest->items[i];
|
|
|
|
debug("%sInstruction %s at line %u\n", INDENT, f_instruction_name(item->fi_code), item->lineno);
|
|
|
|
switch (item->fi_code) {
|
|
|
|
FID_WR_PUT(7)
|
|
|
|
default: bug("Unknown instruction %x in f_dump_line", item->fi_code);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
debug("%sFilter line %p dump done\n", INDENT, dest);
|
|
|
|
}
|
|
|
|
|
2019-05-22 23:16:32 +08:00
|
|
|
/* Linearize */
|
2019-02-13 03:37:32 +08:00
|
|
|
static uint
|
2019-06-28 17:08:48 +08:00
|
|
|
linearize(struct f_line *dest, const struct f_inst *what, uint pos)
|
2019-02-13 03:37:32 +08:00
|
|
|
{
|
2019-06-28 17:08:48 +08:00
|
|
|
for ( ; what; what = what->next) {
|
|
|
|
switch (what->fi_code) {
|
2019-02-13 03:37:32 +08:00
|
|
|
FID_WR_PUT(8)
|
|
|
|
}
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct f_line *
|
2019-05-22 23:16:32 +08:00
|
|
|
f_linearize_concat(const struct f_inst * const inst[], uint count)
|
2019-02-13 03:37:32 +08:00
|
|
|
{
|
|
|
|
uint len = 0;
|
|
|
|
for (uint i=0; i<count; i++)
|
|
|
|
for (const struct f_inst *what = inst[i]; what; what = what->next)
|
|
|
|
len += what->size;
|
|
|
|
|
|
|
|
struct f_line *out = cfg_allocz(sizeof(struct f_line) + sizeof(struct f_line_item)*len);
|
|
|
|
|
|
|
|
for (uint i=0; i<count; i++)
|
2019-05-22 23:16:32 +08:00
|
|
|
out->len = linearize(out, inst[i], out->len);
|
2019-02-13 03:37:32 +08:00
|
|
|
|
|
|
|
#if DEBUGGING
|
|
|
|
f_dump_line(out, 0);
|
|
|
|
#endif
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2019-02-13 19:25:30 +08:00
|
|
|
/* Filter line comparison */
|
|
|
|
int
|
|
|
|
f_same(const struct f_line *fl1, const struct f_line *fl2)
|
|
|
|
{
|
|
|
|
if ((!fl1) && (!fl2))
|
|
|
|
return 1;
|
|
|
|
if ((!fl1) || (!fl2))
|
|
|
|
return 0;
|
|
|
|
if (fl1->len != fl2->len)
|
|
|
|
return 0;
|
|
|
|
for (uint i=0; i<fl1->len; i++) {
|
2019-02-16 06:59:44 +08:00
|
|
|
#define f1_ (&(fl1->items[i]))
|
|
|
|
#define f2_ (&(fl2->items[i]))
|
|
|
|
if (f1_->fi_code != f2_->fi_code)
|
2019-02-13 19:25:30 +08:00
|
|
|
return 0;
|
2019-02-16 06:59:44 +08:00
|
|
|
if (f1_->flags != f2_->flags)
|
2019-02-13 19:25:30 +08:00
|
|
|
return 0;
|
|
|
|
|
2019-02-16 06:59:44 +08:00
|
|
|
switch(f1_->fi_code) {
|
2019-02-13 19:25:30 +08:00
|
|
|
FID_WR_PUT(9)
|
|
|
|
}
|
|
|
|
}
|
2019-02-16 06:59:44 +08:00
|
|
|
#undef f1_
|
|
|
|
#undef f2_
|
2019-02-13 19:25:30 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-27 21:55:48 +08:00
|
|
|
FID_WR_DIRECT(H)
|
2019-02-12 21:16:28 +08:00
|
|
|
/* Filter instruction codes */
|
|
|
|
enum f_instruction_code {
|
|
|
|
FID_WR_PUT(4)
|
2019-02-16 06:59:44 +08:00
|
|
|
} PACKED;
|
2019-02-08 20:38:12 +08:00
|
|
|
|
2019-02-16 06:59:44 +08:00
|
|
|
/* Filter instruction structure for config */
|
2019-02-08 20:38:12 +08:00
|
|
|
struct f_inst {
|
2019-05-22 00:33:37 +08:00
|
|
|
struct f_inst *next; /* Next instruction */
|
2019-02-08 20:38:12 +08:00
|
|
|
enum f_instruction_code fi_code; /* Instruction code */
|
|
|
|
int size; /* How many instructions are underneath */
|
|
|
|
int lineno; /* Line number */
|
2019-02-16 06:59:44 +08:00
|
|
|
union {
|
|
|
|
FID_WR_PUT(1)
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Filter line item */
|
|
|
|
struct f_line_item {
|
|
|
|
enum f_instruction_code fi_code; /* What to do */
|
|
|
|
enum f_instruction_flags flags; /* Flags, instruction-specific */
|
|
|
|
uint lineno; /* Where */
|
2019-02-08 20:38:12 +08:00
|
|
|
union {
|
2019-02-12 18:31:18 +08:00
|
|
|
FID_WR_PUT(2)
|
2019-02-08 20:38:12 +08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Instruction constructors */
|
2019-02-12 18:31:18 +08:00
|
|
|
FID_WR_PUT(3)
|
2019-02-12 21:16:28 +08:00
|
|
|
|
2019-02-12 18:31:18 +08:00
|
|
|
m4_divert(-1)
|
|
|
|
m4_changequote(`,')
|
|
|
|
|
2019-06-27 21:55:48 +08:00
|
|
|
m4_define(FID_CLEANUP, `m4_ifelse($1,$2,,[[m4_undivert($1)FID_CLEANUP(m4_eval($1+1),$2)]])')
|
|
|
|
m4_define(FID_WR_DPUT, `m4_undivert($1)')
|
|
|
|
|
|
|
|
m4_m4wrap(`INST_FLUSH()m4_divert(0)FID_WR_PUT_LIST()m4_divert(-1)FID_CLEANUP(1,200)')
|
2019-02-08 20:38:12 +08:00
|
|
|
|
|
|
|
m4_changequote([[,]])
|