Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Unified Diff: src/regexp-macro-assembler-irregexp.h

Issue 11600: * Rename to Irregexp throughout.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/regexp2000/
Patch Set: Created 12 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/regexp-macro-assembler-irregexp.h
===================================================================
--- src/regexp-macro-assembler-irregexp.h (revision 825)
+++ src/regexp-macro-assembler-irregexp.h (working copy)
@@ -25,18 +25,18 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#ifndef V8_REGEXP_MACRO_ASSEMBLER_RE2K_H_
-#define V8_REGEXP_MACRO_ASSEMBLER_RE2K_H_
+#ifndef V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_
+#define V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_
namespace v8 { namespace internal {
-class RegExpMacroAssemblerRe2k: public RegExpMacroAssembler {
+class RegExpMacroAssemblerIrregexp: public RegExpMacroAssembler {
public:
- explicit RegExpMacroAssemblerRe2k(Re2kAssembler* assembler)
+ explicit RegExpMacroAssemblerIrregexp(IrregexpAssembler* assembler)
: assembler_(assembler) {
}
- virtual ~RegExpMacroAssemblerRe2k();
+ virtual ~RegExpMacroAssemblerIrregexp();
virtual void Bind(Label* label);
virtual void EmitOrLink(Label* label);
virtual void AdvanceCurrentPosition(int by); // Signed cp change.
@@ -82,12 +82,12 @@
virtual void IfRegisterLT(int register_index, int comparand, Label* if_lt);
virtual void IfRegisterGE(int register_index, int comparand, Label* if_ge);
- virtual Re2kImplementation Implementation();
+ virtual IrregexpImplementation Implementation();
virtual Handle<Object> GetCode();
private:
- Re2kAssembler* assembler_;
+ IrregexpAssembler* assembler_;
};
} } // namespace v8::internal
-#endif // V8_REGEXP_MACRO_ASSEMBLER_RE2K_H_
+#endif // V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_
Property changes on: src/regexp-macro-assembler-irregexp.h
___________________________________________________________________
Added: svn:mergeinfo

Powered by Google App Engine
This is Rietveld 408576698