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

Unified Diff: src/assembler-re2k.h

Issue 11228: * No failures on our own tests.... (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
« no previous file with comments | « no previous file | src/assembler-re2k.cc » ('j') | src/bytecodes-re2k.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler-re2k.h
===================================================================
--- src/assembler-re2k.h (revision 786)
+++ src/assembler-re2k.h (working copy)
@@ -60,11 +60,11 @@
void CheckChar(uc16 c, Label* on_mismatch);
void CheckNotChar(uc16 c, Label* on_match);
- // Checks current char register against a range.
- void CheckRange(uc16 start, uc16 end, Label* on_mismatch);
- void CheckNotRange(uc16 start, uc16 end, Label* on_match);
+ // Used to check current char register against a range.
+ void CheckCharacterLT(uc16 limit, Label* on_less);
+ void CheckCharacterGT(uc16 limit, Label* on_greater);
- // Checks current position (plus optional offset) for a match against a
+ // Checks current position for a match against a
// previous capture. Advances current position by the length of the capture
// iff it matches. The capture is stored in a given register and the
// the register after. If a register contains -1 then the other register
@@ -122,6 +122,8 @@
// True if the assembler owns the buffer, false if buffer is external.
bool own_buffer_;
+
+ void Expand();
};
« no previous file with comments | « no previous file | src/assembler-re2k.cc » ('j') | src/bytecodes-re2k.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698