| 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 /* Dates */ \ | 244 /* Dates */ \ |
| 245 F(DateCurrentTime, 0, 1) \ | 245 F(DateCurrentTime, 0, 1) \ |
| 246 F(DateParseString, 2, 1) \ | 246 F(DateParseString, 2, 1) \ |
| 247 F(DateLocalTimezone, 1, 1) \ | 247 F(DateLocalTimezone, 1, 1) \ |
| 248 F(DateToUTC, 1, 1) \ | 248 F(DateToUTC, 1, 1) \ |
| 249 F(DateMakeDay, 2, 1) \ | 249 F(DateMakeDay, 2, 1) \ |
| 250 F(DateSetValue, 3, 1) \ | 250 F(DateSetValue, 3, 1) \ |
| 251 F(DateCacheVersion, 0, 1) \ | 251 F(DateCacheVersion, 0, 1) \ |
| 252 \ | 252 \ |
| 253 /* Globals */ \ | 253 /* Globals */ \ |
| 254 F(CompileString, 2, 1) \ | 254 F(CompileString, 3, 1) \ |
| 255 \ | 255 \ |
| 256 /* Eval */ \ | 256 /* Eval */ \ |
| 257 F(GlobalProxy, 1, 1) \ | 257 F(GlobalProxy, 1, 1) \ |
| 258 F(IsAttachedGlobal, 1, 1) \ | 258 F(IsAttachedGlobal, 1, 1) \ |
| 259 \ | 259 \ |
| 260 F(AddNamedProperty, 4, 1) \ | 260 F(AddNamedProperty, 4, 1) \ |
| 261 F(AddPropertyForTemplate, 4, 1) \ | 261 F(AddPropertyForTemplate, 4, 1) \ |
| 262 F(SetProperty, 4, 1) \ | 262 F(SetProperty, 4, 1) \ |
| 263 F(AddElement, 4, 1) \ | 263 F(AddElement, 4, 1) \ |
| 264 F(DefineApiAccessorProperty, 5, 1) \ | 264 F(DefineApiAccessorProperty, 5, 1) \ |
| (...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 888 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; | 888 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; |
| 889 | 889 |
| 890 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 890 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 891 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 891 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 892 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; | 892 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; |
| 893 | 893 |
| 894 } // namespace internal | 894 } // namespace internal |
| 895 } // namespace v8 | 895 } // namespace v8 |
| 896 | 896 |
| 897 #endif // V8_RUNTIME_RUNTIME_H_ | 897 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |