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

Side by Side Diff: src/builtins/builtins.h

Issue 2527963002: [regexp] Migrate @@match to TurboFan (Closed)
Patch Set: Remove unused variable Created 4 years 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 unified diff | Download patch
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-regexp.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_BUILTINS_BUILTINS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_H_
6 #define V8_BUILTINS_BUILTINS_H_ 6 #define V8_BUILTINS_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/handles.h" 9 #include "src/handles.h"
10 10
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 CPP(RegExpInputGetter) \ 598 CPP(RegExpInputGetter) \
599 CPP(RegExpInputSetter) \ 599 CPP(RegExpInputSetter) \
600 CPP(RegExpLastMatchGetter) \ 600 CPP(RegExpLastMatchGetter) \
601 CPP(RegExpLastParenGetter) \ 601 CPP(RegExpLastParenGetter) \
602 CPP(RegExpLeftContextGetter) \ 602 CPP(RegExpLeftContextGetter) \
603 CPP(RegExpPrototypeCompile) \ 603 CPP(RegExpPrototypeCompile) \
604 TFJ(RegExpPrototypeExec, 1) \ 604 TFJ(RegExpPrototypeExec, 1) \
605 TFJ(RegExpPrototypeFlagsGetter, 0) \ 605 TFJ(RegExpPrototypeFlagsGetter, 0) \
606 TFJ(RegExpPrototypeGlobalGetter, 0) \ 606 TFJ(RegExpPrototypeGlobalGetter, 0) \
607 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \ 607 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \
608 CPP(RegExpPrototypeMatch) \ 608 TFJ(RegExpPrototypeMatch, 1) \
609 TFJ(RegExpPrototypeMultilineGetter, 0) \ 609 TFJ(RegExpPrototypeMultilineGetter, 0) \
610 TFJ(RegExpPrototypeReplace, 2) \ 610 TFJ(RegExpPrototypeReplace, 2) \
611 TFJ(RegExpPrototypeSearch, 1) \ 611 TFJ(RegExpPrototypeSearch, 1) \
612 CPP(RegExpPrototypeSourceGetter) \ 612 CPP(RegExpPrototypeSourceGetter) \
613 CPP(RegExpPrototypeSpeciesGetter) \ 613 CPP(RegExpPrototypeSpeciesGetter) \
614 CPP(RegExpPrototypeSplit) \ 614 CPP(RegExpPrototypeSplit) \
615 TFJ(RegExpPrototypeStickyGetter, 0) \ 615 TFJ(RegExpPrototypeStickyGetter, 0) \
616 TFJ(RegExpPrototypeTest, 1) \ 616 TFJ(RegExpPrototypeTest, 1) \
617 CPP(RegExpPrototypeToString) \ 617 CPP(RegExpPrototypeToString) \
618 TFJ(RegExpPrototypeUnicodeGetter, 0) \ 618 TFJ(RegExpPrototypeUnicodeGetter, 0) \
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 838
839 friend class Isolate; 839 friend class Isolate;
840 840
841 DISALLOW_COPY_AND_ASSIGN(Builtins); 841 DISALLOW_COPY_AND_ASSIGN(Builtins);
842 }; 842 };
843 843
844 } // namespace internal 844 } // namespace internal
845 } // namespace v8 845 } // namespace v8
846 846
847 #endif // V8_BUILTINS_BUILTINS_H_ 847 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-regexp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698