#ifndef LLVM_TABLEGEN_STRINGMATCHER_H
#define LLVM_TABLEGEN_STRINGMATCHER_H
#include "llvm/ADT/StringRef.h"
#include <string>
#include <utility>
#include <vector>
namespace llvm {
class raw_ostream;
class StringMatcher {
public:
using StringPair = std::pair<std::string, std::string>;
private:
StringRef StrVariableName;
const std::vector<StringPair> &Matches;
raw_ostream &OS;
public:
StringMatcher(StringRef strVariableName,
const std::vector<StringPair> &matches, raw_ostream &os)
: StrVariableName(strVariableName), Matches(matches), OS(os) {}
void Emit(unsigned Indent = 0, bool IgnoreDuplicates = false) const;
private:
bool EmitStringMatcherForChar(const std::vector<const StringPair *> &Matches,
unsigned CharNo, unsigned IndentCount,
bool IgnoreDuplicates) const;
};
}
#endif