OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |