1 //===-- TrigramIndex.cpp - a heuristic for SpecialCaseList ----------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // TrigramIndex implements a heuristic for SpecialCaseList that allows to
10 // filter out ~99% incoming queries when all regular expressions in the
11 // SpecialCaseList are simple wildcards with '*' and '.'. If rules are more
12 // complicated, the check is defeated and it will always pass the queries to a
15 //===----------------------------------------------------------------------===//
17 #include "llvm/Support/TrigramIndex.h"
18 #include "llvm/ADT/SmallVector.h"
22 #include <unordered_map>
26 static const char RegexAdvancedMetachars
[] = "()^$|+?[]\\{}";
28 static bool isAdvancedMetachar(unsigned Char
) {
29 return strchr(RegexAdvancedMetachars
, Char
) != nullptr;
32 void TrigramIndex::insert(std::string Regex
) {
34 std::set
<unsigned> Was
;
39 for (unsigned Char
: Regex
) {
41 // Regular expressions allow escaping symbols by preceding it with '\'.
46 if (isAdvancedMetachar(Char
)) {
47 // This is a more complicated regex than we can handle here.
51 if (Char
== '.' || Char
== '*') {
57 if (Escaped
&& Char
>= '1' && Char
<= '9') {
61 // We have already handled escaping and can reset the flag.
63 Tri
= ((Tri
<< 8) + Char
) & 0xFFFFFF;
67 // We don't want the index to grow too much for the popular trigrams,
68 // as they are weak signals. It's ok to still require them for the
69 // rules we have already processed. It's just a small additional
70 // computational cost.
71 if (Index
[Tri
].size() >= 4)
74 if (!Was
.count(Tri
)) {
75 // Adding the current rule to the index.
76 Index
[Tri
].push_back(Counts
.size());
81 // This rule does not have remarkable trigrams to rely on.
82 // We have to always call the full regex chain.
86 Counts
.push_back(Cnt
);
89 bool TrigramIndex::isDefinitelyOut(StringRef Query
) const {
92 std::vector
<unsigned> CurCounts(Counts
.size());
94 for (size_t I
= 0; I
< Query
.size(); I
++) {
95 Tri
= ((Tri
<< 8) + Query
[I
]) & 0xFFFFFF;
98 const auto &II
= Index
.find(Tri
);
99 if (II
== Index
.end())
101 for (size_t J
: II
->second
) {
103 // If we have reached a desired limit, we have to look at the query
104 // more closely by running a full regex.
105 if (CurCounts
[J
] >= Counts
[J
])