2 * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21 * @(#) $Header: /usr/local/cvs/linux/tools/build/e100boot/libpcap-0.4/gencode.h,v 1.1 1999/08/26 10:05:22 johana Exp $ (LBL)
27 /* Address qualifiers. */
35 /* Protocol qualifiers. */
55 /* Directional qualifiers. */
76 * A bit vector to represent definition sets. We assume TOT_REGISTERS
77 * is smaller than 8*sizeof(atomset).
79 typedef bpf_u_int32 atomset
;
80 #define ATOMMASK(n) (1 << (n))
81 #define ATOMELEM(d, n) (d & ATOMMASK(n))
86 typedef bpf_u_int32
*uset
;
89 * Total number of atomic entities, including accumulator (A) and index (X).
90 * We treat all these guys similarly during flow analysis.
92 #define N_ATOMS (BPF_MEMWORDS+2)
100 struct edge
*next
; /* link list of incoming edges for a node */
105 struct slist
*stmts
; /* side effect stmts */
106 struct stmt s
; /* branch stmt */
108 int longjt
; /* jt branch requires long jump */
109 int longjf
; /* jf branch requires long jump */
116 struct block
*link
; /* link field used by optimizer */
119 struct edge
*in_edges
;
128 struct block
*b
; /* protocol checks */
129 struct slist
*s
; /* stmt list */
130 int regno
; /* virtual register number of result */
140 struct arth
*gen_loadi(int);
141 struct arth
*gen_load(int, struct arth
*, int);
142 struct arth
*gen_loadlen(void);
143 struct arth
*gen_neg(struct arth
*);
144 struct arth
*gen_arth(int, struct arth
*, struct arth
*);
146 void gen_and(struct block
*, struct block
*);
147 void gen_or(struct block
*, struct block
*);
148 void gen_not(struct block
*);
150 struct block
*gen_scode(const char *, struct qual
);
151 struct block
*gen_ecode(const u_char
*, struct qual
);
152 struct block
*gen_mcode(const char *, const char *, int, struct qual
);
153 struct block
*gen_ncode(const char *, bpf_u_int32
, struct qual
);
154 struct block
*gen_proto_abbrev(int);
155 struct block
*gen_relation(int, struct arth
*, struct arth
*, int);
156 struct block
*gen_less(int);
157 struct block
*gen_greater(int);
158 struct block
*gen_byteop(int, int, int);
159 struct block
*gen_broadcast(int);
160 struct block
*gen_multicast(int);
161 struct block
*gen_inbound(int);
163 void bpf_optimize(struct block
**);
165 __dead
void bpf_error(const char *, ...)
166 __attribute__((volatile, format (printf
, 1, 2)));
169 void finish_parse(struct block
*);
170 char *sdup(const char *);
172 struct bpf_insn
*icode_to_fcode(struct block
*, int *);
173 int pcap_parse(void);
174 void lex_init(char *);
175 void sappend(struct slist
*, struct slist
*);
178 #define JT(b) ((b)->et.succ)
179 #define JF(b) ((b)->ef.succ)
This page took 0.052559 seconds and 5 git commands to generate.