2010-09-06 04:01:51 +02:00
|
|
|
//===- StringMatcher.h - Generate a matcher for input strings ---*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-09-06 04:01:51 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the StringMatcher class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 01:45:19 +01:00
|
|
|
#ifndef LLVM_TABLEGEN_STRINGMATCHER_H
|
|
|
|
#define LLVM_TABLEGEN_STRINGMATCHER_H
|
2010-09-06 04:01:51 +02:00
|
|
|
|
2012-12-03 18:02:12 +01:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2010-09-06 04:01:51 +02:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
2012-12-03 18:02:12 +01:00
|
|
|
#include <vector>
|
2010-09-06 04:01:51 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
2017-06-16 02:43:26 +02:00
|
|
|
|
|
|
|
class raw_ostream;
|
2014-05-12 05:32:56 +02:00
|
|
|
|
2018-09-28 15:31:55 +02:00
|
|
|
/// Given a list of strings and code to execute when they match, output a
|
|
|
|
/// simple switch tree to classify the input string.
|
2014-05-12 05:32:56 +02:00
|
|
|
///
|
2018-09-28 15:31:55 +02:00
|
|
|
/// If a match is found, the code in Matches[i].second is executed; control must
|
2010-09-06 04:01:51 +02:00
|
|
|
/// not exit this code fragment. If nothing matches, execution falls through.
|
|
|
|
class StringMatcher {
|
|
|
|
public:
|
2017-06-16 02:43:26 +02:00
|
|
|
using StringPair = std::pair<std::string, std::string>;
|
2014-05-12 05:32:56 +02:00
|
|
|
|
2010-09-06 04:01:51 +02:00
|
|
|
private:
|
|
|
|
StringRef StrVariableName;
|
|
|
|
const std::vector<StringPair> &Matches;
|
|
|
|
raw_ostream &OS;
|
2014-05-12 05:32:56 +02:00
|
|
|
|
2010-09-06 04:01:51 +02:00
|
|
|
public:
|
2017-04-03 01:57:17 +02:00
|
|
|
StringMatcher(StringRef strVariableName,
|
2010-09-06 04:01:51 +02:00
|
|
|
const std::vector<StringPair> &matches, raw_ostream &os)
|
|
|
|
: StrVariableName(strVariableName), Matches(matches), OS(os) {}
|
2014-05-12 05:32:56 +02:00
|
|
|
|
2017-12-07 10:51:55 +01:00
|
|
|
void Emit(unsigned Indent = 0, bool IgnoreDuplicates = false) const;
|
2014-05-12 05:32:56 +02:00
|
|
|
|
2010-09-06 04:01:51 +02:00
|
|
|
private:
|
2017-12-07 10:51:55 +01:00
|
|
|
bool EmitStringMatcherForChar(const std::vector<const StringPair *> &Matches,
|
|
|
|
unsigned CharNo, unsigned IndentCount,
|
|
|
|
bool IgnoreDuplicates) const;
|
2010-09-06 04:01:51 +02:00
|
|
|
};
|
|
|
|
|
2017-06-16 02:43:26 +02:00
|
|
|
} // end namespace llvm
|
2010-09-06 04:01:51 +02:00
|
|
|
|
2017-06-16 02:43:26 +02:00
|
|
|
#endif // LLVM_TABLEGEN_STRINGMATCHER_H
|