blob: 2c4d1f33997d21205e782e6fa122c3b2827507b6 [file] [log] [blame]
Chris Lattner5845e5c2010-09-06 02:01:51 +00001//===- StringMatcher.cpp - Generate a matcher for input strings -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the StringMatcher class.
11//
12//===----------------------------------------------------------------------===//
13
Chandler Carruthe3e43d92017-06-06 11:49:48 +000014#include "llvm/TableGen/StringMatcher.h"
Eugene Zelenko8fa7bb42017-01-04 02:02:05 +000015#include "llvm/ADT/StringRef.h"
Chris Lattner5845e5c2010-09-06 02:01:51 +000016#include "llvm/Support/raw_ostream.h"
Eugene Zelenko8fa7bb42017-01-04 02:02:05 +000017#include <cassert>
Chris Lattner5845e5c2010-09-06 02:01:51 +000018#include <map>
Eugene Zelenko8fa7bb42017-01-04 02:02:05 +000019#include <string>
20#include <utility>
21#include <vector>
22
Chris Lattner5845e5c2010-09-06 02:01:51 +000023using namespace llvm;
24
25/// FindFirstNonCommonLetter - Find the first character in the keys of the
26/// string pairs that is not shared across the whole set of strings. All
27/// strings are assumed to have the same length.
Fangrui Songaf7b1832018-07-30 19:41:25 +000028static unsigned
Chris Lattner5845e5c2010-09-06 02:01:51 +000029FindFirstNonCommonLetter(const std::vector<const
30 StringMatcher::StringPair*> &Matches) {
31 assert(!Matches.empty());
32 for (unsigned i = 0, e = Matches[0]->first.size(); i != e; ++i) {
33 // Check to see if letter i is the same across the set.
34 char Letter = Matches[0]->first[i];
Fangrui Songaf7b1832018-07-30 19:41:25 +000035
Chris Lattner5845e5c2010-09-06 02:01:51 +000036 for (unsigned str = 0, e = Matches.size(); str != e; ++str)
37 if (Matches[str]->first[i] != Letter)
38 return i;
39 }
Fangrui Songaf7b1832018-07-30 19:41:25 +000040
Chris Lattner5845e5c2010-09-06 02:01:51 +000041 return Matches[0]->first.size();
42}
43
44/// EmitStringMatcherForChar - Given a set of strings that are known to be the
45/// same length and whose characters leading up to CharNo are the same, emit
46/// code to verify that CharNo and later are the same.
47///
48/// \return - True if control can leave the emitted code fragment.
Alex Bradbury2bd79102017-12-07 09:51:55 +000049bool StringMatcher::EmitStringMatcherForChar(
50 const std::vector<const StringPair *> &Matches, unsigned CharNo,
51 unsigned IndentCount, bool IgnoreDuplicates) const {
Chris Lattner5845e5c2010-09-06 02:01:51 +000052 assert(!Matches.empty() && "Must have at least one string to match!");
Alex Bradbury2bd79102017-12-07 09:51:55 +000053 std::string Indent(IndentCount * 2 + 4, ' ');
Fangrui Songaf7b1832018-07-30 19:41:25 +000054
Chris Lattner5845e5c2010-09-06 02:01:51 +000055 // If we have verified that the entire string matches, we're done: output the
56 // matching code.
57 if (CharNo == Matches[0]->first.size()) {
Alex Bradbury2bd79102017-12-07 09:51:55 +000058 if (Matches.size() > 1 && !IgnoreDuplicates)
59 report_fatal_error("Had duplicate keys to match on");
60
Chris Lattnerd7e409d2010-10-30 19:57:17 +000061 // If the to-execute code has \n's in it, indent each subsequent line.
62 StringRef Code = Matches[0]->second;
Fangrui Songaf7b1832018-07-30 19:41:25 +000063
Chris Lattnerd7e409d2010-10-30 19:57:17 +000064 std::pair<StringRef, StringRef> Split = Code.split('\n');
65 OS << Indent << Split.first << "\t // \"" << Matches[0]->first << "\"\n";
66
67 Code = Split.second;
68 while (!Code.empty()) {
69 Split = Code.split('\n');
70 OS << Indent << Split.first << "\n";
71 Code = Split.second;
72 }
Chris Lattner5845e5c2010-09-06 02:01:51 +000073 return false;
74 }
Fangrui Songaf7b1832018-07-30 19:41:25 +000075
Chris Lattner5845e5c2010-09-06 02:01:51 +000076 // Bucket the matches by the character we are comparing.
Eugene Zelenko8fa7bb42017-01-04 02:02:05 +000077 std::map<char, std::vector<const StringPair*>> MatchesByLetter;
Fangrui Songaf7b1832018-07-30 19:41:25 +000078
Chris Lattner5845e5c2010-09-06 02:01:51 +000079 for (unsigned i = 0, e = Matches.size(); i != e; ++i)
80 MatchesByLetter[Matches[i]->first[CharNo]].push_back(Matches[i]);
Fangrui Songaf7b1832018-07-30 19:41:25 +000081
82
Chris Lattner5845e5c2010-09-06 02:01:51 +000083 // If we have exactly one bucket to match, see how many characters are common
84 // across the whole set and match all of them at once.
85 if (MatchesByLetter.size() == 1) {
86 unsigned FirstNonCommonLetter = FindFirstNonCommonLetter(Matches);
87 unsigned NumChars = FirstNonCommonLetter-CharNo;
Fangrui Songaf7b1832018-07-30 19:41:25 +000088
Chris Lattner5845e5c2010-09-06 02:01:51 +000089 // Emit code to break out if the prefix doesn't match.
90 if (NumChars == 1) {
91 // Do the comparison with if (Str[1] != 'f')
92 // FIXME: Need to escape general characters.
93 OS << Indent << "if (" << StrVariableName << "[" << CharNo << "] != '"
94 << Matches[0]->first[CharNo] << "')\n";
95 OS << Indent << " break;\n";
96 } else {
Benjamin Kramer5875c332012-05-20 18:10:42 +000097 // Do the comparison with if memcmp(Str.data()+1, "foo", 3).
Chris Lattner5845e5c2010-09-06 02:01:51 +000098 // FIXME: Need to escape general strings.
Benjamin Kramer5875c332012-05-20 18:10:42 +000099 OS << Indent << "if (memcmp(" << StrVariableName << ".data()+" << CharNo
100 << ", \"" << Matches[0]->first.substr(CharNo, NumChars) << "\", "
Eugene Zelenko8fa7bb42017-01-04 02:02:05 +0000101 << NumChars << ") != 0)\n";
Chris Lattner5845e5c2010-09-06 02:01:51 +0000102 OS << Indent << " break;\n";
103 }
Alex Bradbury2bd79102017-12-07 09:51:55 +0000104
105 return EmitStringMatcherForChar(Matches, FirstNonCommonLetter, IndentCount,
106 IgnoreDuplicates);
Chris Lattner5845e5c2010-09-06 02:01:51 +0000107 }
Fangrui Songaf7b1832018-07-30 19:41:25 +0000108
Chris Lattner5845e5c2010-09-06 02:01:51 +0000109 // Otherwise, we have multiple possible things, emit a switch on the
110 // character.
111 OS << Indent << "switch (" << StrVariableName << "[" << CharNo << "]) {\n";
112 OS << Indent << "default: break;\n";
Fangrui Songaf7b1832018-07-30 19:41:25 +0000113
114 for (std::map<char, std::vector<const StringPair*>>::iterator LI =
Chris Lattner5845e5c2010-09-06 02:01:51 +0000115 MatchesByLetter.begin(), E = MatchesByLetter.end(); LI != E; ++LI) {
116 // TODO: escape hard stuff (like \n) if we ever care about it.
117 OS << Indent << "case '" << LI->first << "':\t // "
Chris Lattner6d7c3072010-09-06 03:11:10 +0000118 << LI->second.size() << " string";
119 if (LI->second.size() != 1) OS << 's';
120 OS << " to match.\n";
Alex Bradbury2bd79102017-12-07 09:51:55 +0000121 if (EmitStringMatcherForChar(LI->second, CharNo + 1, IndentCount + 1,
122 IgnoreDuplicates))
Chris Lattner5845e5c2010-09-06 02:01:51 +0000123 OS << Indent << " break;\n";
124 }
Fangrui Songaf7b1832018-07-30 19:41:25 +0000125
Chris Lattner5845e5c2010-09-06 02:01:51 +0000126 OS << Indent << "}\n";
127 return true;
128}
129
Chris Lattner5845e5c2010-09-06 02:01:51 +0000130/// Emit - Top level entry point.
131///
Alex Bradbury2bd79102017-12-07 09:51:55 +0000132void StringMatcher::Emit(unsigned Indent, bool IgnoreDuplicates) const {
Chris Lattner902edf22010-09-06 03:50:59 +0000133 // If nothing to match, just fall through.
134 if (Matches.empty()) return;
Fangrui Songaf7b1832018-07-30 19:41:25 +0000135
Chris Lattner5845e5c2010-09-06 02:01:51 +0000136 // First level categorization: group strings by length.
Eugene Zelenko8fa7bb42017-01-04 02:02:05 +0000137 std::map<unsigned, std::vector<const StringPair*>> MatchesByLength;
Fangrui Songaf7b1832018-07-30 19:41:25 +0000138
Chris Lattner5845e5c2010-09-06 02:01:51 +0000139 for (unsigned i = 0, e = Matches.size(); i != e; ++i)
140 MatchesByLength[Matches[i].first.size()].push_back(&Matches[i]);
Fangrui Songaf7b1832018-07-30 19:41:25 +0000141
Chris Lattner5845e5c2010-09-06 02:01:51 +0000142 // Output a switch statement on length and categorize the elements within each
143 // bin.
Chris Lattner902edf22010-09-06 03:50:59 +0000144 OS.indent(Indent*2+2) << "switch (" << StrVariableName << ".size()) {\n";
145 OS.indent(Indent*2+2) << "default: break;\n";
Fangrui Songaf7b1832018-07-30 19:41:25 +0000146
Eugene Zelenko8fa7bb42017-01-04 02:02:05 +0000147 for (std::map<unsigned, std::vector<const StringPair*>>::iterator LI =
Chris Lattner5845e5c2010-09-06 02:01:51 +0000148 MatchesByLength.begin(), E = MatchesByLength.end(); LI != E; ++LI) {
Chris Lattner902edf22010-09-06 03:50:59 +0000149 OS.indent(Indent*2+2) << "case " << LI->first << ":\t // "
150 << LI->second.size()
Chris Lattner8e4fdef2010-09-06 03:12:27 +0000151 << " string" << (LI->second.size() == 1 ? "" : "s") << " to match.\n";
Alex Bradbury2bd79102017-12-07 09:51:55 +0000152 if (EmitStringMatcherForChar(LI->second, 0, Indent, IgnoreDuplicates))
Chris Lattner902edf22010-09-06 03:50:59 +0000153 OS.indent(Indent*2+4) << "break;\n";
Chris Lattner5845e5c2010-09-06 02:01:51 +0000154 }
Fangrui Songaf7b1832018-07-30 19:41:25 +0000155
Chris Lattner902edf22010-09-06 03:50:59 +0000156 OS.indent(Indent*2+2) << "}\n";
Chris Lattner5845e5c2010-09-06 02:01:51 +0000157}