-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpnfa.cu
297 lines (247 loc) · 6.09 KB
/
pnfa.cu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
#include "putil.cu"
__device__ inline void paddstate(List*, State*, List*);
__device__ inline void pstep(List*, int, List *);
__device__ __shared__ char buf[8000];
__device__ inline int pstrlen(char *str) {
int len = 0;
while(*str != 0) {
len ++;
str += 1;
}
return len;
}
/*
* Convert infix regexp re to postfix notation.
* Insert ESC (or 0x1b) as explicit concatenation operator.
* Cheesy parser, return static buffer.
*/
__device__ inline char * pre2post(char *re)
{
int nalt, natom;
char *dst;
struct {
int nalt;
int natom;
} paren[100], *p;
p = paren;
dst = buf;
nalt = 0;
natom = 0;
int len = pstrlen(re);
if(len >= sizeof buf/2)
return NULL;
for(; *re; re++){
switch(*re){
case PAREN_OPEN: // (
if(natom > 1){
--natom;
*dst++ = CONCATENATE;
}
if(p >= paren+100)
return NULL;
p->nalt = nalt;
p->natom = natom;
p++;
nalt = 0;
natom = 0;
break;
case ALTERNATE: // |
if(natom == 0)
return NULL;
while(--natom > 0)
*dst++ = CONCATENATE;
nalt++;
break;
case PAREN_CLOSE: // )
if(p == paren)
return NULL;
if(natom == 0)
return NULL;
while(--natom > 0)
*dst++ = CONCATENATE;
for(; nalt > 0; nalt--)
*dst++ = ALTERNATE;
--p;
nalt = p->nalt;
natom = p->natom;
natom++;
break;
case STAR: // *
case PLUS: // +
case QUESTION: // ?
if(natom == 0)
return NULL;
*dst++ = *re;
break;
default:
if(natom > 1){
--natom;
*dst++ = CONCATENATE;
}
*dst++ = *re;
natom++;
break;
}
}
if(p != paren)
return NULL;
while(--natom > 0)
*dst++ = CONCATENATE;
for(; nalt > 0; nalt--)
*dst++ = ALTERNATE;
*dst = 0;
return dst;
}
/* Compute initial state list */
__device__ inline List*
pstartlist(State *start, List *l)
{
l->n = 0;
List addStartState;
paddstate(l, start, &addStartState);
return l;
}
/* Check whether state list contains a match. */
__device__ inline int
ispmatch(List *l)
{
int i;
for(i=0; i<l->n; i++) {
if(l->s[i]->c == Match)
return 1;
}
return 0;
}
/* Add s to l, following unlabeled arrows. */
__device__ inline void
paddstate(List *l, State *s, List *addStateList)
{
addStateList->n = 0;
PUSH(addStateList, s);
/* follow unlabeled arrows */
while(!IS_EMPTY(addStateList)) {
s = POP(addStateList);
// lastlist check is present to ensure that if
// multiple states point to this state, then only
//one instance of the state is added to the list
if(s == NULL);
else if (s->c == Split) {
PUSH(addStateList, s->out);
PUSH(addStateList, s->out1);
}
else {
l->s[l->n++] = s;
}
}
}
/*
* pstep the NFA from the states in clist
* past the character c,
* to create next NFA state set nlist.
*/
__device__ inline void
pstep(List *clist, int c, List *nlist)
{
int i;
State *s;
nlist->n = 0;
for(i=0; i<clist->n; i++){
s = clist->s[i];
if(s->c == c || s->c == Any){
List addStartState;
paddstate(nlist, s->out, &addStartState);
}
}
}
/* Run NFA to determine whether it matches s. */
__device__ inline int
pmatch(State *start, char *s, List *dl1, List *dl2)
{
int c;
List *clist, *nlist, *t;
clist = pstartlist(start, dl1);
nlist = dl2;
for(; *s; s++){
c = *s & 0xFF;
pstep(clist, c, nlist);
t = clist; clist = nlist; nlist = t; // swap clist, nlist
// check for a match in the middle of the string
// if (ispmatch(clist))
//return 1;
}
return ispmatch(clist);
}
/* Check for a string match at all possible start positions */
__device__ inline int panypmatch(State *start, char *s, List *dl1, List *dl2) {
int isMatch = pmatch(start, s, dl1, dl2);
/* int index = 0;
int len = pstrlen(s);
while (!isMatch && index < len) {
isMatch = pmatch(start, s + index, dl1, dl2);
index ++;
}
*/ return isMatch;
}
__device__ __shared__ State *st;
__device__ __shared__ State s[100];
__global__ void parallelMatch(char * bigLine, u32 * tableOfLineStarts, int numLines, int numRegexs, int time, char *regexLines, u32 *regexTable, unsigned char * devResult) {
for (int j = 0; j < numRegexs; j++) {
//printf("%s\n", regexLines + regexTable[i]);
if (threadIdx.x == 0) {
pre2post(regexLines + regexTable[j]);
char *postfix = buf;
pnstate = 0;
states = s;
st = ppost2nfa(postfix);
}
__syncthreads();
List d1;
List d2;
int i;
for (i = blockIdx.x * blockDim.x + threadIdx.x; i < numLines; i += gridDim.x * blockDim.x) {
char * lineSegment = bigLine + tableOfLineStarts[i];
if (panypmatch(st, lineSegment, &d1, &d2))
devResult[i] = 1;
else
devResult[i] = 0;
}
}
}
__global__ void test(char *bigLine, u32 *tableOfLineStarts, int numLines, unsigned char *devResult) {
for (int k = 0; k < 2000; k++) {
for (int i = blockIdx.x * blockDim.x + threadIdx.x; i < numLines; i += gridDim.x * blockDim.x) {
char * lineSegment = bigLine + tableOfLineStarts[i];
for (int j = 0; j < pstrlen(lineSegment); j ++) {
if (lineSegment[i] == '\n')
devResult[i] = 1;
else
devResult[i] = 0;
break;
}
}
}
}
void pMatch(char * bigLine, u32 * tableOfLineStarts, int numLines, int numRegexs, int time, char * regexLines, u32 *regexTable, char **lines, u32 *hostLineStarts) {
cudaFuncSetCacheConfig(parallelMatch, cudaFuncCachePreferShared);
unsigned char *devResult;
cudaMalloc(&devResult, numLines * sizeof(unsigned char) );
parallelMatch<<<512, 160>>>(bigLine, tableOfLineStarts, numLines, numRegexs, time, regexLines, regexTable, devResult);
//test<<<512,160>>>(bigLine, tableOfLineStarts, numLines, devResult);
cudaThreadSynchronize();
cudaError_t error = cudaGetLastError();
if (error != cudaSuccess) {
printf("CUDA Error: %s\n", cudaGetErrorString(error));
exit(-1);
}
if (!time) {
unsigned char *hostResult = (unsigned char *) malloc (numLines * sizeof(unsigned char));
cudaMemcpy(hostResult, devResult, numLines * sizeof(unsigned char), cudaMemcpyDeviceToHost);
for (int i = 0; i < numLines; i++) {
if(hostResult[i] == 1)
PRINT(time, "%s\n", lines[0] + hostLineStarts[i]); //[i % numLines]);
}
}
cudaFree(devResult);
cudaFree(bigLine);
cudaFree(tableOfLineStarts);
}