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

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

Issue 2693753002: Revert of [typedarrays] move %TypedArray%.prototype.copyWithin to C++ (Closed)
Patch Set: Fix merge conflict Created 3 years, 10 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-typedarray.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 785 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 TFJ(TypedArrayPrototypeByteLength, 0) \ 796 TFJ(TypedArrayPrototypeByteLength, 0) \
797 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \ 797 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \
798 TFJ(TypedArrayPrototypeByteOffset, 0) \ 798 TFJ(TypedArrayPrototypeByteOffset, 0) \
799 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \ 799 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \
800 TFJ(TypedArrayPrototypeLength, 0) \ 800 TFJ(TypedArrayPrototypeLength, 0) \
801 /* ES6 #sec-%typedarray%.prototype.entries */ \ 801 /* ES6 #sec-%typedarray%.prototype.entries */ \
802 TFJ(TypedArrayPrototypeEntries, 0) \ 802 TFJ(TypedArrayPrototypeEntries, 0) \
803 /* ES6 #sec-%typedarray%.prototype.keys */ \ 803 /* ES6 #sec-%typedarray%.prototype.keys */ \
804 TFJ(TypedArrayPrototypeKeys, 0) \ 804 TFJ(TypedArrayPrototypeKeys, 0) \
805 /* ES6 #sec-%typedarray%.prototype.values */ \ 805 /* ES6 #sec-%typedarray%.prototype.values */ \
806 TFJ(TypedArrayPrototypeValues, 0) \ 806 TFJ(TypedArrayPrototypeValues, 0)
807 /* ES6 #sec-%typedarray%.prototype.copywithin */ \
808 CPP(TypedArrayPrototypeCopyWithin)
809 807
810 #define IGNORE_BUILTIN(...) 808 #define IGNORE_BUILTIN(...)
811 809
812 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V) 810 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V)
813 811
814 #define BUILTIN_LIST_C(V) \ 812 #define BUILTIN_LIST_C(V) \
815 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 813 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
816 IGNORE_BUILTIN, IGNORE_BUILTIN) 814 IGNORE_BUILTIN, IGNORE_BUILTIN)
817 815
818 #define BUILTIN_LIST_A(V) \ 816 #define BUILTIN_LIST_A(V) \
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
953 951
954 friend class Isolate; 952 friend class Isolate;
955 953
956 DISALLOW_COPY_AND_ASSIGN(Builtins); 954 DISALLOW_COPY_AND_ASSIGN(Builtins);
957 }; 955 };
958 956
959 } // namespace internal 957 } // namespace internal
960 } // namespace v8 958 } // namespace v8
961 959
962 #endif // V8_BUILTINS_BUILTINS_H_ 960 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-typedarray.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698