Index: src/regexp-macro-assembler.h |
=================================================================== |
--- src/regexp-macro-assembler.h (revision 1141) |
+++ src/regexp-macro-assembler.h (working copy) |
@@ -38,6 +38,10 @@ |
class RegExpMacroAssembler { |
public: |
+ // The implmentation must be able to handle at least: |
Lasse Reichstein
2009/01/26 13:48:53
Typo "implementation".
I agree that any regexp fa
|
+ static const int kMaxRegister = (1 << 16) - 1; |
+ static const int kMaxCPOffset = (1 << 15) - 1; |
+ static const int kMinCPOffset = -(1 << 15); |
enum IrregexpImplementation { |
kIA32Implementation, |
kARMImplementation, |