| 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ | 383 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ |
| 384 \ | 384 \ |
| 385 /* Debugging */ \ | 385 /* Debugging */ \ |
| 386 F(DebugPrint, 1, 1) \ | 386 F(DebugPrint, 1, 1) \ |
| 387 F(GlobalPrint, 1, 1) \ | 387 F(GlobalPrint, 1, 1) \ |
| 388 F(DebugTrace, 0, 1) \ | 388 F(DebugTrace, 0, 1) \ |
| 389 F(TraceEnter, 0, 1) \ | 389 F(TraceEnter, 0, 1) \ |
| 390 F(TraceExit, 1, 1) \ | 390 F(TraceExit, 1, 1) \ |
| 391 F(Abort, 1, 1) \ | 391 F(Abort, 1, 1) \ |
| 392 F(AbortJS, 1, 1) \ | 392 F(AbortJS, 1, 1) \ |
| 393 F(NativeScriptsCount, 0, 1) \ |
| 393 /* ES5 */ \ | 394 /* ES5 */ \ |
| 394 F(OwnKeys, 1, 1) \ | 395 F(OwnKeys, 1, 1) \ |
| 395 \ | 396 \ |
| 396 /* Message objects */ \ | 397 /* Message objects */ \ |
| 397 F(MessageGetStartPosition, 1, 1) \ | 398 F(MessageGetStartPosition, 1, 1) \ |
| 398 F(MessageGetScript, 1, 1) \ | 399 F(MessageGetScript, 1, 1) \ |
| 399 \ | 400 \ |
| 400 /* Pseudo functions - handled as macros by parser */ \ | 401 /* Pseudo functions - handled as macros by parser */ \ |
| 401 F(IS_VAR, 1, 1) \ | 402 F(IS_VAR, 1, 1) \ |
| 402 \ | 403 \ |
| (...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 897 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; | 898 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; |
| 898 | 899 |
| 899 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 900 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 900 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 901 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 901 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; | 902 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; |
| 902 | 903 |
| 903 } // namespace internal | 904 } // namespace internal |
| 904 } // namespace v8 | 905 } // namespace v8 |
| 905 | 906 |
| 906 #endif // V8_RUNTIME_RUNTIME_H_ | 907 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |