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

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

Issue 2745053003: [regexp] Add slow exec stub to reduce code size (Closed)
Patch Set: Rebase and non-generic descriptor Created 3 years, 9 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 | « no previous file | src/builtins/builtins-regexp-gen.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/globals.h" 9 #include "src/globals.h"
10 10
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 CPP(ReflectGetOwnPropertyDescriptor) \ 691 CPP(ReflectGetOwnPropertyDescriptor) \
692 CPP(ReflectGetPrototypeOf) \ 692 CPP(ReflectGetPrototypeOf) \
693 CPP(ReflectHas) \ 693 CPP(ReflectHas) \
694 CPP(ReflectIsExtensible) \ 694 CPP(ReflectIsExtensible) \
695 CPP(ReflectOwnKeys) \ 695 CPP(ReflectOwnKeys) \
696 CPP(ReflectPreventExtensions) \ 696 CPP(ReflectPreventExtensions) \
697 CPP(ReflectSet) \ 697 CPP(ReflectSet) \
698 CPP(ReflectSetPrototypeOf) \ 698 CPP(ReflectSetPrototypeOf) \
699 \ 699 \
700 /* RegExp */ \ 700 /* RegExp */ \
701 TFS(RegExpPrototypeExecSlow, BUILTIN, kNoExtraICState, \
702 RegExpPrototypeExecSlow, 1) \
701 CPP(RegExpCapture1Getter) \ 703 CPP(RegExpCapture1Getter) \
702 CPP(RegExpCapture2Getter) \ 704 CPP(RegExpCapture2Getter) \
703 CPP(RegExpCapture3Getter) \ 705 CPP(RegExpCapture3Getter) \
704 CPP(RegExpCapture4Getter) \ 706 CPP(RegExpCapture4Getter) \
705 CPP(RegExpCapture5Getter) \ 707 CPP(RegExpCapture5Getter) \
706 CPP(RegExpCapture6Getter) \ 708 CPP(RegExpCapture6Getter) \
707 CPP(RegExpCapture7Getter) \ 709 CPP(RegExpCapture7Getter) \
708 CPP(RegExpCapture8Getter) \ 710 CPP(RegExpCapture8Getter) \
709 CPP(RegExpCapture9Getter) \ 711 CPP(RegExpCapture9Getter) \
710 TFJ(RegExpConstructor, 2) \ 712 TFJ(RegExpConstructor, 2) \
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
1037 1039
1038 friend class Isolate; 1040 friend class Isolate;
1039 1041
1040 DISALLOW_COPY_AND_ASSIGN(Builtins); 1042 DISALLOW_COPY_AND_ASSIGN(Builtins);
1041 }; 1043 };
1042 1044
1043 } // namespace internal 1045 } // namespace internal
1044 } // namespace v8 1046 } // namespace v8
1045 1047
1046 #endif // V8_BUILTINS_BUILTINS_H_ 1048 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « no previous file | src/builtins/builtins-regexp-gen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698