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

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

Issue 2697593002: Reland [typedarrays] move %TypedArray%.prototype.copyWithin to C++ (Closed)
Patch Set: update comment 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 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 TFJ(TypedArrayPrototypeByteLength, 0) \ 799 TFJ(TypedArrayPrototypeByteLength, 0) \
800 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \ 800 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \
801 TFJ(TypedArrayPrototypeByteOffset, 0) \ 801 TFJ(TypedArrayPrototypeByteOffset, 0) \
802 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \ 802 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \
803 TFJ(TypedArrayPrototypeLength, 0) \ 803 TFJ(TypedArrayPrototypeLength, 0) \
804 /* ES6 #sec-%typedarray%.prototype.entries */ \ 804 /* ES6 #sec-%typedarray%.prototype.entries */ \
805 TFJ(TypedArrayPrototypeEntries, 0) \ 805 TFJ(TypedArrayPrototypeEntries, 0) \
806 /* ES6 #sec-%typedarray%.prototype.keys */ \ 806 /* ES6 #sec-%typedarray%.prototype.keys */ \
807 TFJ(TypedArrayPrototypeKeys, 0) \ 807 TFJ(TypedArrayPrototypeKeys, 0) \
808 /* ES6 #sec-%typedarray%.prototype.values */ \ 808 /* ES6 #sec-%typedarray%.prototype.values */ \
809 TFJ(TypedArrayPrototypeValues, 0) 809 TFJ(TypedArrayPrototypeValues, 0) \
810 /* ES6 #sec-%typedarray%.prototype.copywithin */ \
811 CPP(TypedArrayPrototypeCopyWithin)
810 812
811 #define IGNORE_BUILTIN(...) 813 #define IGNORE_BUILTIN(...)
812 814
813 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V) 815 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V)
814 816
815 #define BUILTIN_LIST_C(V) \ 817 #define BUILTIN_LIST_C(V) \
816 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 818 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
817 IGNORE_BUILTIN, IGNORE_BUILTIN) 819 IGNORE_BUILTIN, IGNORE_BUILTIN)
818 820
819 #define BUILTIN_LIST_A(V) \ 821 #define BUILTIN_LIST_A(V) \
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
954 956
955 friend class Isolate; 957 friend class Isolate;
956 958
957 DISALLOW_COPY_AND_ASSIGN(Builtins); 959 DISALLOW_COPY_AND_ASSIGN(Builtins);
958 }; 960 };
959 961
960 } // namespace internal 962 } // namespace internal
961 } // namespace v8 963 } // namespace v8
962 964
963 #endif // V8_BUILTINS_BUILTINS_H_ 965 #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