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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 /* Dates */ \ | 243 /* Dates */ \ |
244 F(DateCurrentTime, 0, 1) \ | 244 F(DateCurrentTime, 0, 1) \ |
245 F(DateParseString, 2, 1) \ | 245 F(DateParseString, 2, 1) \ |
246 F(DateLocalTimezone, 1, 1) \ | 246 F(DateLocalTimezone, 1, 1) \ |
247 F(DateToUTC, 1, 1) \ | 247 F(DateToUTC, 1, 1) \ |
248 F(DateMakeDay, 2, 1) \ | 248 F(DateMakeDay, 2, 1) \ |
249 F(DateSetValue, 3, 1) \ | 249 F(DateSetValue, 3, 1) \ |
250 F(DateCacheVersion, 0, 1) \ | 250 F(DateCacheVersion, 0, 1) \ |
251 \ | 251 \ |
252 /* Globals */ \ | 252 /* Globals */ \ |
253 F(CompileString, 3, 1) \ | 253 F(CompileString, 2, 1) \ |
254 \ | 254 \ |
255 /* Eval */ \ | 255 /* Eval */ \ |
256 F(GlobalProxy, 1, 1) \ | 256 F(GlobalProxy, 1, 1) \ |
257 \ | 257 \ |
258 F(AddNamedProperty, 4, 1) \ | 258 F(AddNamedProperty, 4, 1) \ |
259 F(SetProperty, 4, 1) \ | 259 F(SetProperty, 4, 1) \ |
260 F(AddElement, 4, 1) \ | 260 F(AddElement, 4, 1) \ |
261 F(DefineDataPropertyUnchecked, 4, 1) \ | 261 F(DefineDataPropertyUnchecked, 4, 1) \ |
262 F(DefineAccessorPropertyUnchecked, 5, 1) \ | 262 F(DefineAccessorPropertyUnchecked, 5, 1) \ |
263 F(GetDataProperty, 2, 1) \ | 263 F(GetDataProperty, 2, 1) \ |
(...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
907 | 907 |
908 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 908 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
909 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 909 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
910 STATIC_ASSERT(LANGUAGE_END == 3); | 910 STATIC_ASSERT(LANGUAGE_END == 3); |
911 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 911 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
912 | 912 |
913 } // namespace internal | 913 } // namespace internal |
914 } // namespace v8 | 914 } // namespace v8 |
915 | 915 |
916 #endif // V8_RUNTIME_RUNTIME_H_ | 916 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |