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

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

Issue 2537973004: [regexp] Move source and species getter to TF (Closed)
Patch Set: Address comments 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 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 CPP(RegExpLeftContextGetter) \ 601 CPP(RegExpLeftContextGetter) \
602 CPP(RegExpPrototypeCompile) \ 602 CPP(RegExpPrototypeCompile) \
603 TFJ(RegExpPrototypeExec, 1) \ 603 TFJ(RegExpPrototypeExec, 1) \
604 TFJ(RegExpPrototypeFlagsGetter, 0) \ 604 TFJ(RegExpPrototypeFlagsGetter, 0) \
605 TFJ(RegExpPrototypeGlobalGetter, 0) \ 605 TFJ(RegExpPrototypeGlobalGetter, 0) \
606 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \ 606 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \
607 TFJ(RegExpPrototypeMatch, 1) \ 607 TFJ(RegExpPrototypeMatch, 1) \
608 TFJ(RegExpPrototypeMultilineGetter, 0) \ 608 TFJ(RegExpPrototypeMultilineGetter, 0) \
609 TFJ(RegExpPrototypeReplace, 2) \ 609 TFJ(RegExpPrototypeReplace, 2) \
610 TFJ(RegExpPrototypeSearch, 1) \ 610 TFJ(RegExpPrototypeSearch, 1) \
611 CPP(RegExpPrototypeSourceGetter) \ 611 TFJ(RegExpPrototypeSourceGetter, 0) \
612 CPP(RegExpPrototypeSpeciesGetter) \ 612 TFJ(RegExpPrototypeSpeciesGetter, 0) \
613 TFJ(RegExpPrototypeSplit, 2) \ 613 TFJ(RegExpPrototypeSplit, 2) \
614 TFJ(RegExpPrototypeStickyGetter, 0) \ 614 TFJ(RegExpPrototypeStickyGetter, 0) \
615 TFJ(RegExpPrototypeTest, 1) \ 615 TFJ(RegExpPrototypeTest, 1) \
616 CPP(RegExpPrototypeToString) \ 616 CPP(RegExpPrototypeToString) \
617 TFJ(RegExpPrototypeUnicodeGetter, 0) \ 617 TFJ(RegExpPrototypeUnicodeGetter, 0) \
618 CPP(RegExpRightContextGetter) \ 618 CPP(RegExpRightContextGetter) \
619 \ 619 \
620 /* SharedArrayBuffer */ \ 620 /* SharedArrayBuffer */ \
621 CPP(SharedArrayBufferPrototypeGetByteLength) \ 621 CPP(SharedArrayBufferPrototypeGetByteLength) \
622 TFJ(AtomicsLoad, 2) \ 622 TFJ(AtomicsLoad, 2) \
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 837
838 friend class Isolate; 838 friend class Isolate;
839 839
840 DISALLOW_COPY_AND_ASSIGN(Builtins); 840 DISALLOW_COPY_AND_ASSIGN(Builtins);
841 }; 841 };
842 842
843 } // namespace internal 843 } // namespace internal
844 } // namespace v8 844 } // namespace v8
845 845
846 #endif // V8_BUILTINS_BUILTINS_H_ 846 #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