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_RUNTIME_H_ | 5 #ifndef V8_RUNTIME_RUNTIME_H_ |
6 #define V8_RUNTIME_RUNTIME_H_ | 6 #define V8_RUNTIME_RUNTIME_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 F(GetInterceptorInfo, 1, 1) \ | 401 F(GetInterceptorInfo, 1, 1) \ |
402 F(ToFastProperties, 1, 1) \ | 402 F(ToFastProperties, 1, 1) \ |
403 F(AllocateHeapNumber, 0, 1) \ | 403 F(AllocateHeapNumber, 0, 1) \ |
404 F(NewObject, 2, 1) \ | 404 F(NewObject, 2, 1) \ |
405 F(FinalizeInstanceSize, 1, 1) \ | 405 F(FinalizeInstanceSize, 1, 1) \ |
406 F(LoadMutableDouble, 2, 1) \ | 406 F(LoadMutableDouble, 2, 1) \ |
407 F(TryMigrateInstance, 1, 1) \ | 407 F(TryMigrateInstance, 1, 1) \ |
408 F(IsJSGlobalProxy, 1, 1) \ | 408 F(IsJSGlobalProxy, 1, 1) \ |
409 F(DefineAccessorPropertyUnchecked, 5, 1) \ | 409 F(DefineAccessorPropertyUnchecked, 5, 1) \ |
410 F(DefineDataPropertyInLiteral, 5, 1) \ | 410 F(DefineDataPropertyInLiteral, 5, 1) \ |
411 F(DefineDataProperty, 5, 1) \ | |
412 F(GetDataProperty, 2, 1) \ | 411 F(GetDataProperty, 2, 1) \ |
413 F(GetConstructorName, 1, 1) \ | 412 F(GetConstructorName, 1, 1) \ |
414 F(HasFastPackedElements, 1, 1) \ | 413 F(HasFastPackedElements, 1, 1) \ |
415 F(ValueOf, 1, 1) \ | 414 F(ValueOf, 1, 1) \ |
416 F(IsJSReceiver, 1, 1) \ | 415 F(IsJSReceiver, 1, 1) \ |
417 F(ClassOf, 1, 1) \ | 416 F(ClassOf, 1, 1) \ |
418 F(DefineGetterPropertyUnchecked, 4, 1) \ | 417 F(DefineGetterPropertyUnchecked, 4, 1) \ |
419 F(DefineSetterPropertyUnchecked, 4, 1) \ | 418 F(DefineSetterPropertyUnchecked, 4, 1) \ |
420 F(ToObject, 1, 1) \ | 419 F(ToObject, 1, 1) \ |
421 F(ToPrimitive, 1, 1) \ | 420 F(ToPrimitive, 1, 1) \ |
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1144 | 1143 |
1145 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1144 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1146 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1145 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1147 STATIC_ASSERT(LANGUAGE_END == 2); | 1146 STATIC_ASSERT(LANGUAGE_END == 2); |
1148 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1147 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
1149 | 1148 |
1150 } // namespace internal | 1149 } // namespace internal |
1151 } // namespace v8 | 1150 } // namespace v8 |
1152 | 1151 |
1153 #endif // V8_RUNTIME_RUNTIME_H_ | 1152 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |