OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_RUNTIME_H_ | 5 #ifndef V8_RUNTIME_H_ |
6 #define V8_RUNTIME_H_ | 6 #define V8_RUNTIME_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/objects.h" | 9 #include "src/objects.h" |
10 #include "src/zone.h" | 10 #include "src/zone.h" |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 F(GetObjectContextObjectObserve, 1, 1) \ | 339 F(GetObjectContextObjectObserve, 1, 1) \ |
340 F(GetObjectContextObjectGetNotifier, 1, 1) \ | 340 F(GetObjectContextObjectGetNotifier, 1, 1) \ |
341 F(GetObjectContextNotifierPerformChange, 1, 1) \ | 341 F(GetObjectContextNotifierPerformChange, 1, 1) \ |
342 \ | 342 \ |
343 /* Harmony typed arrays */ \ | 343 /* Harmony typed arrays */ \ |
344 F(ArrayBufferInitialize, 2, 1) \ | 344 F(ArrayBufferInitialize, 2, 1) \ |
345 F(ArrayBufferSliceImpl, 3, 1) \ | 345 F(ArrayBufferSliceImpl, 3, 1) \ |
346 F(ArrayBufferIsView, 1, 1) \ | 346 F(ArrayBufferIsView, 1, 1) \ |
347 F(ArrayBufferNeuter, 1, 1) \ | 347 F(ArrayBufferNeuter, 1, 1) \ |
348 \ | 348 \ |
| 349 F(IsTypedArray, 1, 1) \ |
349 F(TypedArrayInitializeFromArrayLike, 4, 1) \ | 350 F(TypedArrayInitializeFromArrayLike, 4, 1) \ |
350 F(TypedArrayGetBuffer, 1, 1) \ | 351 F(TypedArrayGetBuffer, 1, 1) \ |
351 F(TypedArraySetFastCases, 3, 1) \ | 352 F(TypedArraySetFastCases, 3, 1) \ |
352 \ | 353 \ |
353 F(DataViewGetBuffer, 1, 1) \ | 354 F(DataViewGetBuffer, 1, 1) \ |
354 F(DataViewGetInt8, 3, 1) \ | 355 F(DataViewGetInt8, 3, 1) \ |
355 F(DataViewGetUint8, 3, 1) \ | 356 F(DataViewGetUint8, 3, 1) \ |
356 F(DataViewGetInt16, 3, 1) \ | 357 F(DataViewGetInt16, 3, 1) \ |
357 F(DataViewGetUint16, 3, 1) \ | 358 F(DataViewGetUint16, 3, 1) \ |
358 F(DataViewGetInt32, 3, 1) \ | 359 F(DataViewGetInt32, 3, 1) \ |
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
899 class AllocateDoubleAlignFlag : public BitField<bool, 0, 1> {}; | 900 class AllocateDoubleAlignFlag : public BitField<bool, 0, 1> {}; |
900 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; | 901 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; |
901 | 902 |
902 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 903 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
903 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 904 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
904 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; | 905 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; |
905 } | 906 } |
906 } // namespace v8::internal | 907 } // namespace v8::internal |
907 | 908 |
908 #endif // V8_RUNTIME_H_ | 909 #endif // V8_RUNTIME_H_ |
OLD | NEW |