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 "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/base/platform/time.h" | 9 #include "src/base/platform/time.h" |
10 #include "src/objects.h" | 10 #include "src/objects.h" |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 F(KeyedGetProperty, 2, 1) \ | 404 F(KeyedGetProperty, 2, 1) \ |
405 F(LoadGlobalViaContext, 1, 1) \ | 405 F(LoadGlobalViaContext, 1, 1) \ |
406 F(StoreGlobalViaContext_Sloppy, 2, 1) \ | 406 F(StoreGlobalViaContext_Sloppy, 2, 1) \ |
407 F(StoreGlobalViaContext_Strict, 2, 1) \ | 407 F(StoreGlobalViaContext_Strict, 2, 1) \ |
408 F(AddNamedProperty, 4, 1) \ | 408 F(AddNamedProperty, 4, 1) \ |
409 F(SetProperty, 4, 1) \ | 409 F(SetProperty, 4, 1) \ |
410 F(AddElement, 3, 1) \ | 410 F(AddElement, 3, 1) \ |
411 F(AppendElement, 2, 1) \ | 411 F(AppendElement, 2, 1) \ |
412 F(DeleteProperty_Sloppy, 2, 1) \ | 412 F(DeleteProperty_Sloppy, 2, 1) \ |
413 F(DeleteProperty_Strict, 2, 1) \ | 413 F(DeleteProperty_Strict, 2, 1) \ |
414 F(HasOwnProperty, 2, 1) \ | |
415 F(HasProperty, 2, 1) \ | 414 F(HasProperty, 2, 1) \ |
416 F(PropertyIsEnumerable, 2, 1) \ | 415 F(PropertyIsEnumerable, 2, 1) \ |
417 F(GetOwnPropertyKeys, 2, 1) \ | 416 F(GetOwnPropertyKeys, 2, 1) \ |
418 F(GetInterceptorInfo, 1, 1) \ | 417 F(GetInterceptorInfo, 1, 1) \ |
419 F(ToFastProperties, 1, 1) \ | 418 F(ToFastProperties, 1, 1) \ |
420 F(AllocateHeapNumber, 0, 1) \ | 419 F(AllocateHeapNumber, 0, 1) \ |
421 F(NewObject, 2, 1) \ | 420 F(NewObject, 2, 1) \ |
422 F(FinalizeInstanceSize, 1, 1) \ | 421 F(FinalizeInstanceSize, 1, 1) \ |
423 F(GlobalProxy, 1, 1) \ | 422 F(GlobalProxy, 1, 1) \ |
424 F(LookupAccessor, 3, 1) \ | 423 F(LookupAccessor, 3, 1) \ |
(...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1192 | 1191 |
1193 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1192 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1194 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1193 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1195 STATIC_ASSERT(LANGUAGE_END == 3); | 1194 STATIC_ASSERT(LANGUAGE_END == 3); |
1196 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1195 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
1197 | 1196 |
1198 } // namespace internal | 1197 } // namespace internal |
1199 } // namespace v8 | 1198 } // namespace v8 |
1200 | 1199 |
1201 #endif // V8_RUNTIME_RUNTIME_H_ | 1200 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |