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

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

Issue 2394713003: [regexp] Port test, match, and search (Closed)
Patch Set: Rebase 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
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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 CPP(RegExpInputGetter) \ 546 CPP(RegExpInputGetter) \
547 CPP(RegExpInputSetter) \ 547 CPP(RegExpInputSetter) \
548 CPP(RegExpLastMatchGetter) \ 548 CPP(RegExpLastMatchGetter) \
549 CPP(RegExpLastParenGetter) \ 549 CPP(RegExpLastParenGetter) \
550 CPP(RegExpLeftContextGetter) \ 550 CPP(RegExpLeftContextGetter) \
551 CPP(RegExpPrototypeCompile) \ 551 CPP(RegExpPrototypeCompile) \
552 TFJ(RegExpPrototypeExec, 2) \ 552 TFJ(RegExpPrototypeExec, 2) \
553 TFJ(RegExpPrototypeFlagsGetter, 1) \ 553 TFJ(RegExpPrototypeFlagsGetter, 1) \
554 TFJ(RegExpPrototypeGlobalGetter, 1) \ 554 TFJ(RegExpPrototypeGlobalGetter, 1) \
555 TFJ(RegExpPrototypeIgnoreCaseGetter, 1) \ 555 TFJ(RegExpPrototypeIgnoreCaseGetter, 1) \
556 CPP(RegExpPrototypeMatch) \
556 TFJ(RegExpPrototypeMultilineGetter, 1) \ 557 TFJ(RegExpPrototypeMultilineGetter, 1) \
558 CPP(RegExpPrototypeSearch) \
557 CPP(RegExpPrototypeSourceGetter) \ 559 CPP(RegExpPrototypeSourceGetter) \
558 CPP(RegExpPrototypeSpeciesGetter) \ 560 CPP(RegExpPrototypeSpeciesGetter) \
559 TFJ(RegExpPrototypeStickyGetter, 1) \ 561 TFJ(RegExpPrototypeStickyGetter, 1) \
562 CPP(RegExpPrototypeTest) \
560 CPP(RegExpPrototypeToString) \ 563 CPP(RegExpPrototypeToString) \
561 TFJ(RegExpPrototypeUnicodeGetter, 1) \ 564 TFJ(RegExpPrototypeUnicodeGetter, 1) \
562 CPP(RegExpRightContextGetter) \ 565 CPP(RegExpRightContextGetter) \
563 \ 566 \
564 /* SharedArrayBuffer */ \ 567 /* SharedArrayBuffer */ \
565 CPP(SharedArrayBufferPrototypeGetByteLength) \ 568 CPP(SharedArrayBufferPrototypeGetByteLength) \
566 TFJ(AtomicsLoad, 3) \ 569 TFJ(AtomicsLoad, 3) \
567 TFJ(AtomicsStore, 4) \ 570 TFJ(AtomicsStore, 4) \
568 \ 571 \
569 /* String */ \ 572 /* String */ \
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
760 763
761 friend class Isolate; 764 friend class Isolate;
762 765
763 DISALLOW_COPY_AND_ASSIGN(Builtins); 766 DISALLOW_COPY_AND_ASSIGN(Builtins);
764 }; 767 };
765 768
766 } // namespace internal 769 } // namespace internal
767 } // namespace v8 770 } // namespace v8
768 771
769 #endif // V8_BUILTINS_BUILTINS_H_ 772 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698