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
|
#include <stddef.h>
#include "lib/regex.h"
#include "lib/regex_impl.h"
#include "src/msg/location.h"
using namespace re2c;
using namespace re2c::libre2c;
int regexec(const regex_t* re, const char* string, size_t nmatch, regmatch_t pmatch[], int eflags) {
const int cflags = re->flags;
if (!(cflags & REG_NFA)) {
// DFA-based algorithms
if (cflags & REG_MULTIPASS) {
// Multi-pass TDFA.
if (cflags & REG_LEFTMOST) {
return regexec_dfa_multipass<ldetctx_t>(re, string, nmatch, pmatch, eflags);
} else {
return regexec_dfa_multipass<pdetctx_t>(re, string, nmatch, pmatch, eflags);
}
} else {
// TDFA with registers and register operations on transitions.
return regexec_dfa(re, string, nmatch, pmatch, eflags);
}
} else {
// NFA-based algorithms
if (cflags & REG_LEFTMOST) {
// Leftmost greedy disambiguation
if (cflags & REG_TRIE) {
return regexec_nfa_leftmost_trie(re, string, nmatch, pmatch, eflags);
} else {
return regexec_nfa_leftmost(re, string, nmatch, pmatch, eflags);
}
} else {
// POSIX disambiguation
if (cflags & REG_TRIE) {
return regexec_nfa_posix_trie(re, string, nmatch, pmatch, eflags);
} else {
return regexec_nfa_posix(re, string, nmatch, pmatch, eflags);
}
}
}
}
subhistory_t* regparse(const regex_t* re, const char* string, size_t nmatch) {
const int cflags = re->flags;
CHECK(cflags & REG_SUBHIST);
if (!(cflags & REG_NFA)) {
// DFA-based algorithms
if (cflags & REG_MULTIPASS) {
// Multi-pass TDFA.
if (cflags & REG_LEFTMOST) {
return regparse_dfa_multipass<ldetctx_t>(re, string, nmatch);
} else {
return regparse_dfa_multipass<pdetctx_t>(re, string, nmatch);
}
} else {
// TDFA with registers and register operations on transitions.
return regparse_dfa(re, string, nmatch);
}
} else {
// NFA-based algorithms (not implemented yet).
UNREACHABLE();
return nullptr;
}
}
const tstring_t* regtstring(const regex_t* re, const char* string) {
const int cflags = re->flags;
CHECK(cflags & REG_TSTRING);
if (!(cflags & REG_NFA)) {
// DFA-based algorithms
if (cflags & REG_MULTIPASS) {
// Multi-pass TDFA.
if (cflags & REG_LEFTMOST) {
return regtstring_dfa_multipass<ldetctx_t>(re, string);
} else {
return regtstring_dfa_multipass<pdetctx_t>(re, string);
}
} else {
// TDFA with registers is not suited to tstring construction.
UNREACHABLE();
return nullptr;
}
} else {
// NFA-based algorithms (not implemented yet).
UNREACHABLE();
return nullptr;
}
}
|