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

Side by Side Diff: src/builtins.h

Issue 2126603003: [builtins] Migrate ArrayBufferPrototypeByteLength to C++. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add comment with ES6 section Created 4 years, 5 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.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 1
2 // Copyright 2011 the V8 project authors. All rights reserved. 2 // Copyright 2011 the V8 project authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file. 4 // found in the LICENSE file.
5 5
6 #ifndef V8_BUILTINS_H_ 6 #ifndef V8_BUILTINS_H_
7 #define V8_BUILTINS_H_ 7 #define V8_BUILTINS_H_
8 8
9 #include "src/base/flags.h" 9 #include "src/base/flags.h"
10 #include "src/handles.h" 10 #include "src/handles.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 V(ArrayConcat, BUILTIN_EXIT) \ 47 V(ArrayConcat, BUILTIN_EXIT) \
48 V(ArrayPop, BUILTIN_EXIT) \ 48 V(ArrayPop, BUILTIN_EXIT) \
49 V(ArrayPush, BUILTIN_EXIT) \ 49 V(ArrayPush, BUILTIN_EXIT) \
50 V(ArrayShift, BUILTIN_EXIT) \ 50 V(ArrayShift, BUILTIN_EXIT) \
51 V(ArraySlice, BUILTIN_EXIT) \ 51 V(ArraySlice, BUILTIN_EXIT) \
52 V(ArraySplice, BUILTIN_EXIT) \ 52 V(ArraySplice, BUILTIN_EXIT) \
53 V(ArrayUnshift, BUILTIN_EXIT) \ 53 V(ArrayUnshift, BUILTIN_EXIT) \
54 \ 54 \
55 V(ArrayBufferConstructor, BUILTIN_EXIT) \ 55 V(ArrayBufferConstructor, BUILTIN_EXIT) \
56 V(ArrayBufferConstructor_ConstructStub, BUILTIN_EXIT) \ 56 V(ArrayBufferConstructor_ConstructStub, BUILTIN_EXIT) \
57 V(ArrayBufferPrototypeGetByteLength, BUILTIN_EXIT) \
57 V(ArrayBufferIsView, BUILTIN_EXIT) \ 58 V(ArrayBufferIsView, BUILTIN_EXIT) \
58 \ 59 \
59 V(BooleanConstructor, BUILTIN_EXIT) \ 60 V(BooleanConstructor, BUILTIN_EXIT) \
60 V(BooleanConstructor_ConstructStub, BUILTIN_EXIT) \ 61 V(BooleanConstructor_ConstructStub, BUILTIN_EXIT) \
61 \ 62 \
62 V(DataViewConstructor, BUILTIN_EXIT) \ 63 V(DataViewConstructor, BUILTIN_EXIT) \
63 V(DataViewConstructor_ConstructStub, BUILTIN_EXIT) \ 64 V(DataViewConstructor_ConstructStub, BUILTIN_EXIT) \
64 V(DataViewPrototypeGetBuffer, BUILTIN_EXIT) \ 65 V(DataViewPrototypeGetBuffer, BUILTIN_EXIT) \
65 V(DataViewPrototypeGetByteLength, BUILTIN_EXIT) \ 66 V(DataViewPrototypeGetByteLength, BUILTIN_EXIT) \
66 V(DataViewPrototypeGetByteOffset, BUILTIN_EXIT) \ 67 V(DataViewPrototypeGetByteOffset, BUILTIN_EXIT) \
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 friend class BuiltinFunctionTable; 823 friend class BuiltinFunctionTable;
823 friend class Isolate; 824 friend class Isolate;
824 825
825 DISALLOW_COPY_AND_ASSIGN(Builtins); 826 DISALLOW_COPY_AND_ASSIGN(Builtins);
826 }; 827 };
827 828
828 } // namespace internal 829 } // namespace internal
829 } // namespace v8 830 } // namespace v8
830 831
831 #endif // V8_BUILTINS_H_ 832 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698