OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 F(InitializeConstGlobal, 2, 1) \ | 373 F(InitializeConstGlobal, 2, 1) \ |
374 F(InitializeConstContextSlot, 3, 1) \ | 374 F(InitializeConstContextSlot, 3, 1) \ |
375 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ | 375 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ |
376 \ | 376 \ |
377 /* Debugging */ \ | 377 /* Debugging */ \ |
378 F(DebugPrint, 1, 1) \ | 378 F(DebugPrint, 1, 1) \ |
379 F(DebugTrace, 0, 1) \ | 379 F(DebugTrace, 0, 1) \ |
380 F(TraceEnter, 0, 1) \ | 380 F(TraceEnter, 0, 1) \ |
381 F(TraceExit, 1, 1) \ | 381 F(TraceExit, 1, 1) \ |
382 F(Abort, 2, 1) \ | 382 F(Abort, 2, 1) \ |
| 383 F(UnexpectedDeopt, 0, 1) \ |
383 /* Logging */ \ | 384 /* Logging */ \ |
384 F(Log, 2, 1) \ | 385 F(Log, 2, 1) \ |
385 /* ES5 */ \ | 386 /* ES5 */ \ |
386 F(LocalKeys, 1, 1) \ | 387 F(LocalKeys, 1, 1) \ |
387 /* Cache suport */ \ | 388 /* Cache suport */ \ |
388 F(GetFromCache, 2, 1) \ | 389 F(GetFromCache, 2, 1) \ |
389 \ | 390 \ |
390 /* Message objects */ \ | 391 /* Message objects */ \ |
391 F(MessageGetStartPosition, 1, 1) \ | 392 F(MessageGetStartPosition, 1, 1) \ |
392 F(MessageGetScript, 1, 1) \ | 393 F(MessageGetScript, 1, 1) \ |
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
717 //--------------------------------------------------------------------------- | 718 //--------------------------------------------------------------------------- |
718 // Constants used by interface to runtime functions. | 719 // Constants used by interface to runtime functions. |
719 | 720 |
720 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 721 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
721 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 722 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
722 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 723 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
723 | 724 |
724 } } // namespace v8::internal | 725 } } // namespace v8::internal |
725 | 726 |
726 #endif // V8_RUNTIME_H_ | 727 #endif // V8_RUNTIME_H_ |
OLD | NEW |