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/zone.h" | 10 #include "src/zone.h" |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 F(NotifyStubFailure, 0, 1) \ | 113 F(NotifyStubFailure, 0, 1) \ |
114 F(NotifyDeoptimized, 1, 1) \ | 114 F(NotifyDeoptimized, 1, 1) \ |
115 F(CompileForOnStackReplacement, 1, 1) \ | 115 F(CompileForOnStackReplacement, 1, 1) \ |
116 F(TryInstallOptimizedCode, 1, 1) \ | 116 F(TryInstallOptimizedCode, 1, 1) \ |
117 F(CompileString, 2, 1) | 117 F(CompileString, 2, 1) |
118 | 118 |
119 | 119 |
120 #define FOR_EACH_INTRINSIC_DATE(F) \ | 120 #define FOR_EACH_INTRINSIC_DATE(F) \ |
121 F(DateMakeDay, 2, 1) \ | 121 F(DateMakeDay, 2, 1) \ |
122 F(DateSetValue, 3, 1) \ | 122 F(DateSetValue, 3, 1) \ |
| 123 F(ThrowIfNotADate, 1, 1) \ |
123 F(ThrowNotDateError, 0, 1) \ | 124 F(ThrowNotDateError, 0, 1) \ |
124 F(DateCurrentTime, 0, 1) \ | 125 F(DateCurrentTime, 0, 1) \ |
125 F(DateParseString, 2, 1) \ | 126 F(DateParseString, 2, 1) \ |
126 F(DateLocalTimezone, 1, 1) \ | 127 F(DateLocalTimezone, 1, 1) \ |
127 F(DateToUTC, 1, 1) \ | 128 F(DateToUTC, 1, 1) \ |
128 F(DateCacheVersion, 0, 1) \ | 129 F(DateCacheVersion, 0, 1) \ |
129 F(DateField, 2 /* date object, field index */, 1) | 130 F(DateField, 2 /* date object, field index */, 1) |
130 | 131 |
131 | 132 |
132 #define FOR_EACH_INTRINSIC_DEBUG(F) \ | 133 #define FOR_EACH_INTRINSIC_DEBUG(F) \ |
(...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
886 | 887 |
887 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 888 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
888 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 889 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
889 STATIC_ASSERT(LANGUAGE_END == 3); | 890 STATIC_ASSERT(LANGUAGE_END == 3); |
890 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 891 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
891 | 892 |
892 } // namespace internal | 893 } // namespace internal |
893 } // namespace v8 | 894 } // namespace v8 |
894 | 895 |
895 #endif // V8_RUNTIME_RUNTIME_H_ | 896 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |