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

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

Issue 2401643002: [regexp] Port split (Closed)
Patch Set: Address comments Created 4 years, 2 months 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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 CPP(RegExpPrototypeCompile) \ 581 CPP(RegExpPrototypeCompile) \
582 TFJ(RegExpPrototypeExec, 2) \ 582 TFJ(RegExpPrototypeExec, 2) \
583 TFJ(RegExpPrototypeFlagsGetter, 1) \ 583 TFJ(RegExpPrototypeFlagsGetter, 1) \
584 TFJ(RegExpPrototypeGlobalGetter, 1) \ 584 TFJ(RegExpPrototypeGlobalGetter, 1) \
585 TFJ(RegExpPrototypeIgnoreCaseGetter, 1) \ 585 TFJ(RegExpPrototypeIgnoreCaseGetter, 1) \
586 CPP(RegExpPrototypeMatch) \ 586 CPP(RegExpPrototypeMatch) \
587 TFJ(RegExpPrototypeMultilineGetter, 1) \ 587 TFJ(RegExpPrototypeMultilineGetter, 1) \
588 CPP(RegExpPrototypeSearch) \ 588 CPP(RegExpPrototypeSearch) \
589 CPP(RegExpPrototypeSourceGetter) \ 589 CPP(RegExpPrototypeSourceGetter) \
590 CPP(RegExpPrototypeSpeciesGetter) \ 590 CPP(RegExpPrototypeSpeciesGetter) \
591 CPP(RegExpPrototypeSplit) \
591 TFJ(RegExpPrototypeStickyGetter, 1) \ 592 TFJ(RegExpPrototypeStickyGetter, 1) \
592 CPP(RegExpPrototypeTest) \ 593 CPP(RegExpPrototypeTest) \
593 CPP(RegExpPrototypeToString) \ 594 CPP(RegExpPrototypeToString) \
594 TFJ(RegExpPrototypeUnicodeGetter, 1) \ 595 TFJ(RegExpPrototypeUnicodeGetter, 1) \
595 CPP(RegExpRightContextGetter) \ 596 CPP(RegExpRightContextGetter) \
596 \ 597 \
597 /* SharedArrayBuffer */ \ 598 /* SharedArrayBuffer */ \
598 CPP(SharedArrayBufferPrototypeGetByteLength) \ 599 CPP(SharedArrayBufferPrototypeGetByteLength) \
599 TFJ(AtomicsLoad, 3) \ 600 TFJ(AtomicsLoad, 3) \
600 TFJ(AtomicsStore, 4) \ 601 TFJ(AtomicsStore, 4) \
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 797
797 friend class Isolate; 798 friend class Isolate;
798 799
799 DISALLOW_COPY_AND_ASSIGN(Builtins); 800 DISALLOW_COPY_AND_ASSIGN(Builtins);
800 }; 801 };
801 802
802 } // namespace internal 803 } // namespace internal
803 } // namespace v8 804 } // namespace v8
804 805
805 #endif // V8_BUILTINS_BUILTINS_H_ 806 #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