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

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

Issue 2438683005: [regexp] Move RegExp.prototype[@@search] to TF (Closed)
Patch Set: Fix typo in lastindex restoration 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
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 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
594 CPP(RegExpLastParenGetter) \ 594 CPP(RegExpLastParenGetter) \
595 CPP(RegExpLeftContextGetter) \ 595 CPP(RegExpLeftContextGetter) \
596 CPP(RegExpPrototypeCompile) \ 596 CPP(RegExpPrototypeCompile) \
597 TFJ(RegExpPrototypeExec, 1) \ 597 TFJ(RegExpPrototypeExec, 1) \
598 TFJ(RegExpPrototypeFlagsGetter, 0) \ 598 TFJ(RegExpPrototypeFlagsGetter, 0) \
599 TFJ(RegExpPrototypeGlobalGetter, 0) \ 599 TFJ(RegExpPrototypeGlobalGetter, 0) \
600 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \ 600 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \
601 CPP(RegExpPrototypeMatch) \ 601 CPP(RegExpPrototypeMatch) \
602 TFJ(RegExpPrototypeMultilineGetter, 0) \ 602 TFJ(RegExpPrototypeMultilineGetter, 0) \
603 TFJ(RegExpPrototypeReplace, 2) \ 603 TFJ(RegExpPrototypeReplace, 2) \
604 CPP(RegExpPrototypeSearch) \ 604 TFJ(RegExpPrototypeSearch, 1) \
605 CPP(RegExpPrototypeSourceGetter) \ 605 CPP(RegExpPrototypeSourceGetter) \
606 CPP(RegExpPrototypeSpeciesGetter) \ 606 CPP(RegExpPrototypeSpeciesGetter) \
607 CPP(RegExpPrototypeSplit) \ 607 CPP(RegExpPrototypeSplit) \
608 TFJ(RegExpPrototypeStickyGetter, 0) \ 608 TFJ(RegExpPrototypeStickyGetter, 0) \
609 TFJ(RegExpPrototypeTest, 1) \ 609 TFJ(RegExpPrototypeTest, 1) \
610 CPP(RegExpPrototypeToString) \ 610 CPP(RegExpPrototypeToString) \
611 TFJ(RegExpPrototypeUnicodeGetter, 0) \ 611 TFJ(RegExpPrototypeUnicodeGetter, 0) \
612 CPP(RegExpRightContextGetter) \ 612 CPP(RegExpRightContextGetter) \
613 \ 613 \
614 /* SharedArrayBuffer */ \ 614 /* SharedArrayBuffer */ \
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
832 832
833 friend class Isolate; 833 friend class Isolate;
834 834
835 DISALLOW_COPY_AND_ASSIGN(Builtins); 835 DISALLOW_COPY_AND_ASSIGN(Builtins);
836 }; 836 };
837 837
838 } // namespace internal 838 } // namespace internal
839 } // namespace v8 839 } // namespace v8
840 840
841 #endif // V8_BUILTINS_BUILTINS_H_ 841 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698