1 /* This file is part of the program psim.
3 Copyright (C) 1994-1995, Andrew Cagney <cagney@highland.com.au>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, see <http://www.gnu.org/licenses/>.
23 #include "build-config.h"
37 new_filter(const char *filt
,
40 while (strlen(filt
) > 0) {
42 /* break up the filt list */
43 const char *end
= strchr(filt
, ',');
47 end
= strchr(filt
, '\0');
54 /* add to filter list */
55 new_filter
= ZALLOC(filter
);
56 new_filter
->flag
= (char*)zalloc(len
+ 1);
57 strncpy(new_filter
->flag
, filt
, len
);
58 new_filter
->next
= filters
;
67 is_filtered_out(const char *flags
,
70 while (strlen(flags
) > 0) {
72 filter
*filt
= filters
;
73 /* break the string up */
74 const char *end
= strchr(flags
, ',');
78 end
= strchr(flags
, '\0');
85 /* check that it is present */
88 while (filt
!= NULL
) {
89 if (strncmp(flags
, filt
->flag
, len
) == 0
90 && strlen(filt
->flag
) == len
) {
105 it_is(const char *flag
,
108 int flag_len
= strlen(flag
);
109 while (*flags
!= '\0') {
110 if (!strncmp(flags
, flag
, flag_len
)
111 && (flags
[flag_len
] == ',' || flags
[flag_len
] == '\0'))
113 while (*flags
!= ',') {
126 main(int argc
, char **argv
)
128 filter
*filters
= NULL
;
131 printf("Usage: filter <flags> <filter> ...\n");
134 /* load the filter up */
135 for (i
= 2; i
< argc
; i
++)
136 filters
= new_filter(argv
[i
], filters
);
137 if (is_filtered_out(argv
[1], filters
))