2010-09-06 02:01:51 +00:00
|
|
|
//===- StringMatcher.h - Generate a matcher for input strings ---*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the StringMatcher class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 00:45:19 +00:00
|
|
|
#ifndef LLVM_TABLEGEN_STRINGMATCHER_H
|
|
|
|
#define LLVM_TABLEGEN_STRINGMATCHER_H
|
2010-09-06 02:01:51 +00:00
|
|
|
|
2012-12-03 17:02:12 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2010-09-06 02:01:51 +00:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
2012-12-03 17:02:12 +00:00
|
|
|
#include <vector>
|
2010-09-06 02:01:51 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class raw_ostream;
|
2014-05-12 03:32:56 +00:00
|
|
|
|
2010-09-06 02:01:51 +00:00
|
|
|
/// StringMatcher - 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 03:32:56 +00:00
|
|
|
///
|
2010-09-06 02:01:51 +00:00
|
|
|
/// If a match is found, the code in Vals[i].second is executed; control must
|
|
|
|
/// not exit this code fragment. If nothing matches, execution falls through.
|
|
|
|
///
|
|
|
|
class StringMatcher {
|
|
|
|
public:
|
|
|
|
typedef std::pair<std::string, std::string> StringPair;
|
2014-05-12 03:32:56 +00:00
|
|
|
|
2010-09-06 02:01:51 +00:00
|
|
|
private:
|
|
|
|
StringRef StrVariableName;
|
|
|
|
const std::vector<StringPair> &Matches;
|
|
|
|
raw_ostream &OS;
|
2014-05-12 03:32:56 +00:00
|
|
|
|
2010-09-06 02:01:51 +00:00
|
|
|
public:
|
|
|
|
StringMatcher(StringRef strVariableName,
|
|
|
|
const std::vector<StringPair> &matches, raw_ostream &os)
|
|
|
|
: StrVariableName(strVariableName), Matches(matches), OS(os) {}
|
2014-05-12 03:32:56 +00:00
|
|
|
|
2010-09-06 03:50:59 +00:00
|
|
|
void Emit(unsigned Indent = 0) const;
|
2014-05-12 03:32:56 +00:00
|
|
|
|
2010-09-06 02:01:51 +00:00
|
|
|
private:
|
|
|
|
bool EmitStringMatcherForChar(const std::vector<const StringPair*> &Matches,
|
|
|
|
unsigned CharNo, unsigned IndentCount) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end llvm namespace.
|
|
|
|
|
|
|
|
#endif
|