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

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

Issue 2745053003: [regexp] Add slow exec stub to reduce code size (Closed)
Patch Set: 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.cc » ('j') | src/builtins/builtins-regexp.cc » ('J')
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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 CPP(ReflectGetOwnPropertyDescriptor) \ 683 CPP(ReflectGetOwnPropertyDescriptor) \
684 CPP(ReflectGetPrototypeOf) \ 684 CPP(ReflectGetPrototypeOf) \
685 CPP(ReflectHas) \ 685 CPP(ReflectHas) \
686 CPP(ReflectIsExtensible) \ 686 CPP(ReflectIsExtensible) \
687 CPP(ReflectOwnKeys) \ 687 CPP(ReflectOwnKeys) \
688 CPP(ReflectPreventExtensions) \ 688 CPP(ReflectPreventExtensions) \
689 CPP(ReflectSet) \ 689 CPP(ReflectSet) \
690 CPP(ReflectSetPrototypeOf) \ 690 CPP(ReflectSetPrototypeOf) \
691 \ 691 \
692 /* RegExp */ \ 692 /* RegExp */ \
693 TFS(RegExpPrototypeExecSlow, BUILTIN, kNoExtraICState, GenericTagged2, 2) \
693 CPP(RegExpCapture1Getter) \ 694 CPP(RegExpCapture1Getter) \
694 CPP(RegExpCapture2Getter) \ 695 CPP(RegExpCapture2Getter) \
695 CPP(RegExpCapture3Getter) \ 696 CPP(RegExpCapture3Getter) \
696 CPP(RegExpCapture4Getter) \ 697 CPP(RegExpCapture4Getter) \
697 CPP(RegExpCapture5Getter) \ 698 CPP(RegExpCapture5Getter) \
698 CPP(RegExpCapture6Getter) \ 699 CPP(RegExpCapture6Getter) \
699 CPP(RegExpCapture7Getter) \ 700 CPP(RegExpCapture7Getter) \
700 CPP(RegExpCapture8Getter) \ 701 CPP(RegExpCapture8Getter) \
701 CPP(RegExpCapture9Getter) \ 702 CPP(RegExpCapture9Getter) \
702 TFJ(RegExpConstructor, 2) \ 703 TFJ(RegExpConstructor, 2) \
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 996
996 friend class Isolate; 997 friend class Isolate;
997 998
998 DISALLOW_COPY_AND_ASSIGN(Builtins); 999 DISALLOW_COPY_AND_ASSIGN(Builtins);
999 }; 1000 };
1000 1001
1001 } // namespace internal 1002 } // namespace internal
1002 } // namespace v8 1003 } // namespace v8
1003 1004
1004 #endif // V8_BUILTINS_BUILTINS_H_ 1005 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « no previous file | src/builtins/builtins-regexp.cc » ('j') | src/builtins/builtins-regexp.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698