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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 F(IsAttachedGlobal, 1, 1) \ | 247 F(IsAttachedGlobal, 1, 1) \ |
248 \ | 248 \ |
249 F(AddNamedProperty, 4, 1) \ | 249 F(AddNamedProperty, 4, 1) \ |
250 F(AddPropertyForTemplate, 4, 1) \ | 250 F(AddPropertyForTemplate, 4, 1) \ |
251 F(SetProperty, 4, 1) \ | 251 F(SetProperty, 4, 1) \ |
252 F(AddElement, 4, 1) \ | 252 F(AddElement, 4, 1) \ |
253 F(DefineApiAccessorProperty, 5, 1) \ | 253 F(DefineApiAccessorProperty, 5, 1) \ |
254 F(DefineDataPropertyUnchecked, 4, 1) \ | 254 F(DefineDataPropertyUnchecked, 4, 1) \ |
255 F(DefineAccessorPropertyUnchecked, 5, 1) \ | 255 F(DefineAccessorPropertyUnchecked, 5, 1) \ |
256 F(GetDataProperty, 2, 1) \ | 256 F(GetDataProperty, 2, 1) \ |
257 F(SetHiddenProperty, 3, 1) \ | |
258 \ | 257 \ |
259 /* Arrays */ \ | 258 /* Arrays */ \ |
260 F(RemoveArrayHoles, 2, 1) \ | 259 F(RemoveArrayHoles, 2, 1) \ |
261 F(GetArrayKeys, 2, 1) \ | 260 F(GetArrayKeys, 2, 1) \ |
262 F(MoveArrayContents, 2, 1) \ | 261 F(MoveArrayContents, 2, 1) \ |
263 F(EstimateNumberOfElements, 1, 1) \ | 262 F(EstimateNumberOfElements, 1, 1) \ |
264 F(NormalizeElements, 1, 1) \ | 263 F(NormalizeElements, 1, 1) \ |
265 \ | 264 \ |
266 /* Getters and Setters */ \ | 265 /* Getters and Setters */ \ |
267 F(LookupAccessor, 3, 1) \ | 266 F(LookupAccessor, 3, 1) \ |
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
899 class AllocateDoubleAlignFlag : public BitField<bool, 0, 1> {}; | 898 class AllocateDoubleAlignFlag : public BitField<bool, 0, 1> {}; |
900 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; | 899 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; |
901 | 900 |
902 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 901 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
903 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 902 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
904 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; | 903 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; |
905 } | 904 } |
906 } // namespace v8::internal | 905 } // namespace v8::internal |
907 | 906 |
908 #endif // V8_RUNTIME_H_ | 907 #endif // V8_RUNTIME_H_ |
OLD | NEW |