]>
git.saurik.com Git - apple/javascriptcore.git/blob - runtime/RegExp.h
79f4694ee134bfd60ef396a31bdeeb44bc94e3e2
2 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
3 * Copyright (C) 2007, 2008, 2009 Apple Inc. All rights reserved.
4 * Copyright (C) 2009 Torch Mobile, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 #include "ExecutableAllocator.h"
27 #include "Structure.h"
28 #include "RegExpKey.h"
29 #include <wtf/Forward.h>
30 #include <wtf/RefCounted.h>
34 struct RegExpRepresentation
;
37 RegExpFlags
regExpFlags(const UString
&);
39 class RegExp
: public JSCell
{
41 static RegExp
* create(JSGlobalData
*, const UString
& pattern
, RegExpFlags
);
44 bool global() const { return m_flags
& FlagGlobal
; }
45 bool ignoreCase() const { return m_flags
& FlagIgnoreCase
; }
46 bool multiline() const { return m_flags
& FlagMultiline
; }
48 const UString
& pattern() const { return m_patternString
; }
50 bool isValid() const { return !m_constructionError
&& m_flags
!= InvalidFlags
; }
51 const char* errorMessage() const { return m_constructionError
; }
53 int match(JSGlobalData
&, const UString
&, int startOffset
, Vector
<int, 32>* ovector
= 0);
54 unsigned numSubpatterns() const { return m_numSubpatterns
; }
58 return m_representation
;
61 void invalidateCode();
63 #if ENABLE(REGEXP_TRACING)
64 void printTraceData();
67 static Structure
* createStructure(JSGlobalData
& globalData
, JSValue prototype
)
69 return Structure::create(globalData
, prototype
, TypeInfo(LeafType
, 0), 0, &s_info
);
72 static JS_EXPORTDATA
const ClassInfo s_info
;
74 RegExpKey
key() { return RegExpKey(m_flags
, m_patternString
); }
77 friend class RegExpCache
;
78 RegExp(JSGlobalData
* globalData
, const UString
& pattern
, RegExpFlags
);
88 void compile(JSGlobalData
*);
89 void compileIfNecessary(JSGlobalData
& globalData
)
96 #if ENABLE(YARR_JIT_DEBUG)
97 void matchCompareWithInterpreter(const UString
&, int startOffset
, int* offsetVector
, int jitResult
);
100 UString m_patternString
;
102 const char* m_constructionError
;
103 unsigned m_numSubpatterns
;
104 #if ENABLE(REGEXP_TRACING)
105 unsigned m_rtMatchCallCount
;
106 unsigned m_rtMatchFoundCount
;
109 OwnPtr
<RegExpRepresentation
> m_representation
;