Index: src/builtins/builtins-regexp-gen.h |
diff --git a/src/builtins/builtins-regexp-gen.h b/src/builtins/builtins-regexp-gen.h |
index 8f82a9c125343345b27cfc17a9fa1889ef0dec12..0f66ebff219509de854839b2d96fd09c180074ad 100644 |
--- a/src/builtins/builtins-regexp-gen.h |
+++ b/src/builtins/builtins-regexp-gen.h |
@@ -57,15 +57,20 @@ class RegExpBuiltinsAssembler : public CodeStubAssembler { |
MessageTemplate::Template msg_template, |
char const* method_name); |
+ void BranchIfFastRegExp(Node* const context, Node* const object, |
+ Label* const if_isunmodified, |
+ Label* const if_ismodified); |
+ |
// Analogous to BranchIfFastRegExp, for use in asserts. |
Node* IsFastRegExp(Node* const context, Node* const object); |
// Performs fast path checks on the given object itself, but omits prototype |
// checks. |
+ Node* IsFastRegExpNoPrototype(Node* const context, Node* const object); |
Node* IsFastRegExpNoPrototype(Node* const context, Node* const object, |
Node* const map); |
- void BranchIfFastRegExpResult(Node* context, Node* map, |
+ void BranchIfFastRegExpResult(Node* const context, Node* const object, |
Label* if_isunmodified, Label* if_ismodified); |
Node* FlagsGetter(Node* const context, Node* const regexp, bool is_fastpath); |