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

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

Issue 2438683005: [regexp] Move RegExp.prototype[@@search] to TF (Closed)
Patch Set: Rebase Created 4 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 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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
603 CPP(RegExpLastParenGetter) \ 603 CPP(RegExpLastParenGetter) \
604 CPP(RegExpLeftContextGetter) \ 604 CPP(RegExpLeftContextGetter) \
605 CPP(RegExpPrototypeCompile) \ 605 CPP(RegExpPrototypeCompile) \
606 TFJ(RegExpPrototypeExec, 1) \ 606 TFJ(RegExpPrototypeExec, 1) \
607 TFJ(RegExpPrototypeFlagsGetter, 0) \ 607 TFJ(RegExpPrototypeFlagsGetter, 0) \
608 TFJ(RegExpPrototypeGlobalGetter, 0) \ 608 TFJ(RegExpPrototypeGlobalGetter, 0) \
609 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \ 609 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \
610 CPP(RegExpPrototypeMatch) \ 610 CPP(RegExpPrototypeMatch) \
611 TFJ(RegExpPrototypeMultilineGetter, 0) \ 611 TFJ(RegExpPrototypeMultilineGetter, 0) \
612 TFJ(RegExpPrototypeReplace, 2) \ 612 TFJ(RegExpPrototypeReplace, 2) \
613 CPP(RegExpPrototypeSearch) \ 613 TFJ(RegExpPrototypeSearch, 1) \
614 CPP(RegExpPrototypeSourceGetter) \ 614 CPP(RegExpPrototypeSourceGetter) \
615 CPP(RegExpPrototypeSpeciesGetter) \ 615 CPP(RegExpPrototypeSpeciesGetter) \
616 CPP(RegExpPrototypeSplit) \ 616 CPP(RegExpPrototypeSplit) \
617 TFJ(RegExpPrototypeStickyGetter, 0) \ 617 TFJ(RegExpPrototypeStickyGetter, 0) \
618 TFJ(RegExpPrototypeTest, 1) \ 618 TFJ(RegExpPrototypeTest, 1) \
619 CPP(RegExpPrototypeToString) \ 619 CPP(RegExpPrototypeToString) \
620 TFJ(RegExpPrototypeUnicodeGetter, 0) \ 620 TFJ(RegExpPrototypeUnicodeGetter, 0) \
621 CPP(RegExpRightContextGetter) \ 621 CPP(RegExpRightContextGetter) \
622 \ 622 \
623 /* SharedArrayBuffer */ \ 623 /* SharedArrayBuffer */ \
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 841
842 friend class Isolate; 842 friend class Isolate;
843 843
844 DISALLOW_COPY_AND_ASSIGN(Builtins); 844 DISALLOW_COPY_AND_ASSIGN(Builtins);
845 }; 845 };
846 846
847 } // namespace internal 847 } // namespace internal
848 } // namespace v8 848 } // namespace v8
849 849
850 #endif // V8_BUILTINS_BUILTINS_H_ 850 #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