| 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 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 F(ToNumber, 1, 1) \ | 475 F(ToNumber, 1, 1) \ |
| 476 F(ToString, 1, 1) \ | 476 F(ToString, 1, 1) \ |
| 477 F(ToName, 1, 1) \ | 477 F(ToName, 1, 1) \ |
| 478 F(Equals, 2, 1) \ | 478 F(Equals, 2, 1) \ |
| 479 F(StrictEquals, 2, 1) \ | 479 F(StrictEquals, 2, 1) \ |
| 480 F(Compare, 3, 1) \ | 480 F(Compare, 3, 1) \ |
| 481 F(Compare_Strong, 3, 1) \ | 481 F(Compare_Strong, 3, 1) \ |
| 482 F(InstanceOf, 2, 1) \ | 482 F(InstanceOf, 2, 1) \ |
| 483 F(HasInPrototypeChain, 2, 1) \ | 483 F(HasInPrototypeChain, 2, 1) \ |
| 484 F(CreateIterResultObject, 2, 1) \ | 484 F(CreateIterResultObject, 2, 1) \ |
| 485 F(IsAccessCheckNeeded, 1, 1) | 485 F(IsAccessCheckNeeded, 1, 1) \ |
| 486 F(ObjectDefineProperties, 2, 1) |
| 486 | 487 |
| 487 | 488 |
| 488 #define FOR_EACH_INTRINSIC_OBSERVE(F) \ | 489 #define FOR_EACH_INTRINSIC_OBSERVE(F) \ |
| 489 F(IsObserved, 1, 1) \ | 490 F(IsObserved, 1, 1) \ |
| 490 F(SetIsObserved, 1, 1) \ | 491 F(SetIsObserved, 1, 1) \ |
| 491 F(EnqueueMicrotask, 1, 1) \ | 492 F(EnqueueMicrotask, 1, 1) \ |
| 492 F(RunMicrotasks, 0, 1) \ | 493 F(RunMicrotasks, 0, 1) \ |
| 493 F(DeliverObservationChangeRecords, 2, 1) \ | 494 F(DeliverObservationChangeRecords, 2, 1) \ |
| 494 F(GetObservationState, 0, 1) \ | 495 F(GetObservationState, 0, 1) \ |
| 495 F(ObserverObjectAndRecordHaveSameOrigin, 3, 1) \ | 496 F(ObserverObjectAndRecordHaveSameOrigin, 3, 1) \ |
| (...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1226 | 1227 |
| 1227 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1228 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1228 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1229 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1229 STATIC_ASSERT(LANGUAGE_END == 3); | 1230 STATIC_ASSERT(LANGUAGE_END == 3); |
| 1230 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1231 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
| 1231 | 1232 |
| 1232 } // namespace internal | 1233 } // namespace internal |
| 1233 } // namespace v8 | 1234 } // namespace v8 |
| 1234 | 1235 |
| 1235 #endif // V8_RUNTIME_RUNTIME_H_ | 1236 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |