From aa80e61b0d79ddf9593f6217063574d0c66c3099 Mon Sep 17 00:00:00 2001 From: Peter Collingbourne Date: Mon, 5 Aug 2013 17:47:59 +0000 Subject: Introduce Regex::isLiteralERE function. This will be used to implement an optimisation for literal entries in special case lists. Differential Revision: http://llvm-reviews.chandlerc.com/D1278 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187731 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Regex.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'lib/Support/Regex.cpp') diff --git a/lib/Support/Regex.cpp b/lib/Support/Regex.cpp index efc8b90..dec967e 100644 --- a/lib/Support/Regex.cpp +++ b/lib/Support/Regex.cpp @@ -168,3 +168,10 @@ std::string Regex::sub(StringRef Repl, StringRef String, return Res; } + +bool Regex::isLiteralERE(StringRef Str) { + // Check for regex metacharacters. This list was derived from our regex + // implementation in regcomp.c and double checked against the POSIX extended + // regular expression specification. + return Str.find_first_of("()^$|*+?.[]\\{}") == StringRef::npos; +} -- cgit v1.1