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/objects.h" | 9 #include "src/objects.h" |
10 #include "src/unicode.h" | 10 #include "src/unicode.h" |
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
476 F(ToObject, 1, 1) \ | 476 F(ToObject, 1, 1) \ |
477 F(ToPrimitive, 1, 1) \ | 477 F(ToPrimitive, 1, 1) \ |
478 F(ToPrimitive_Number, 1, 1) \ | 478 F(ToPrimitive_Number, 1, 1) \ |
479 F(ToPrimitive_String, 1, 1) \ | 479 F(ToPrimitive_String, 1, 1) \ |
480 F(ToNumber, 1, 1) \ | 480 F(ToNumber, 1, 1) \ |
481 F(ToString, 1, 1) \ | 481 F(ToString, 1, 1) \ |
482 F(ToName, 1, 1) \ | 482 F(ToName, 1, 1) \ |
483 F(StrictEquals, 2, 1) \ | 483 F(StrictEquals, 2, 1) \ |
484 F(InstanceOf, 2, 1) \ | 484 F(InstanceOf, 2, 1) \ |
485 F(HasInPrototypeChain, 2, 1) \ | 485 F(HasInPrototypeChain, 2, 1) \ |
486 F(CreateIterResultObject, 2, 1) | 486 F(CreateIterResultObject, 2, 1) \ |
| 487 F(IsAccessCheckNeeded, 1, 1) |
487 | 488 |
488 | 489 |
489 #define FOR_EACH_INTRINSIC_OBSERVE(F) \ | 490 #define FOR_EACH_INTRINSIC_OBSERVE(F) \ |
490 F(IsObserved, 1, 1) \ | 491 F(IsObserved, 1, 1) \ |
491 F(SetIsObserved, 1, 1) \ | 492 F(SetIsObserved, 1, 1) \ |
492 F(EnqueueMicrotask, 1, 1) \ | 493 F(EnqueueMicrotask, 1, 1) \ |
493 F(RunMicrotasks, 0, 1) \ | 494 F(RunMicrotasks, 0, 1) \ |
494 F(DeliverObservationChangeRecords, 2, 1) \ | 495 F(DeliverObservationChangeRecords, 2, 1) \ |
495 F(GetObservationState, 0, 1) \ | 496 F(GetObservationState, 0, 1) \ |
496 F(ObserverObjectAndRecordHaveSameOrigin, 3, 1) \ | 497 F(ObserverObjectAndRecordHaveSameOrigin, 3, 1) \ |
(...skipping 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1233 | 1234 |
1234 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1235 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1235 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1236 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1236 STATIC_ASSERT(LANGUAGE_END == 3); | 1237 STATIC_ASSERT(LANGUAGE_END == 3); |
1237 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1238 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
1238 | 1239 |
1239 } // namespace internal | 1240 } // namespace internal |
1240 } // namespace v8 | 1241 } // namespace v8 |
1241 | 1242 |
1242 #endif // V8_RUNTIME_RUNTIME_H_ | 1243 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |