Searched refs:arth (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/libpcap/
H A Dgencode.h272 struct arth { struct
289 struct arth *gen_loadi(compiler_state_t *, int);
290 struct arth *gen_load(compiler_state_t *, int, struct arth *, int);
291 struct arth *gen_loadlen(compiler_state_t *);
292 struct arth *gen_neg(compiler_state_t *, struct arth *);
293 struct arth *gen_arth(compiler_state_t *, int, struct arth *, struct arth *);
[all...]
H A Dgrammar.y296 struct arth *a;
309 %type <a> arth narth
467 | arth relop arth { CHECK_PTR_VAL(($$.b = gen_relation(cstate, $2, $1, $3, 0)));
469 | arth irelop arth { CHECK_PTR_VAL(($$.b = gen_relation(cstate, $2, $1, $3, 1)));
700 arth: pnum { CHECK_PTR_VAL(($$ = gen_loadi(cstate, $1))); } label
703 narth: pname '[' arth ']' { CHECK_PTR_VAL(($$ = gen_load(cstate, $1, $3, 1))); }
704 | pname '[' arth ':' NUM ']' { CHECK_PTR_VAL(($$ = gen_load(cstate, $1, $3, $5))); }
705 | arth '
[all...]
H A Dgencode.c561 static struct slist *xfer_to_x(compiler_state_t *, struct arth *);
562 static struct slist *xfer_to_a(compiler_state_t *, struct arth *);
7254 xfer_to_x(compiler_state_t *cstate, struct arth *a)
7264 xfer_to_a(compiler_state_t *cstate, struct arth *a)
7280 static struct arth *
7281 gen_load_internal(compiler_state_t *cstate, int proto, struct arth *inst, int size)
7553 struct arth *
7554 gen_load(compiler_state_t *cstate, int proto, struct arth *inst, int size)
7567 gen_relation_internal(compiler_state_t *cstate, int code, struct arth *a0,
7568 struct arth *a
[all...]

Completed in 129 milliseconds