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
|
typedef struct sv SV;
typedef struct regnode
{
char flags;
} regnode;
typedef struct regexp
{
} regexp;
typedef struct cop
{
SV *cop_warnings;
} COP;
extern const unsigned char PL_utf8skip[];
extern char PL_dowarn;
extern COP *volatile PL_curcop;
char *
S_find_byclass (regexp * prog, regnode * c, char *s, char *strend,
char *startpos, int norun)
{
register long unsigned int uskip;
char *e;
switch (((c)->flags))
{
case 17:
{
while (s + (uskip = PL_utf8skip[*s]) <= strend)
{
if (c->flags || S_reginclass (c))
if (norun || S_regtry (prog, s))
goto got_it;
s += uskip;
}
unsigned long c, f;
long unsigned int len;
{
while (s <= e)
{
c = Perl_utf8n_to_uvuni (s, 13, &len,
(((PL_curcop->cop_warnings !=
((SV *) ((void *) 0)))
&& PL_dowarn)) ? 0 : 0x00FF);
if (c == 0 && (norun || S_regtry (prog, s)))
if (f != c && (norun || S_regtry (prog, s)))
goto got_it;
}
}
}
}
got_it:
return s;
}
Perl_re_intuit_start (regexp * prog)
{
S_find_byclass (prog, 0, 0, 0, 0, 1);
}
Perl_regexec_flags (register regexp * prog,
register char *strend)
{
S_find_byclass (prog, 0, 0, strend, 0, 0);
}
S_regtry (regexp * prog, char *startpos)
{
}
|