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 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
367 F(InitializeConstGlobal, 2, 1) \ | 367 F(InitializeConstGlobal, 2, 1) \ |
368 F(InitializeConstContextSlot, 3, 1) \ | 368 F(InitializeConstContextSlot, 3, 1) \ |
369 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ | 369 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ |
370 \ | 370 \ |
371 /* Debugging */ \ | 371 /* Debugging */ \ |
372 F(DebugPrint, 1, 1) \ | 372 F(DebugPrint, 1, 1) \ |
373 F(DebugTrace, 0, 1) \ | 373 F(DebugTrace, 0, 1) \ |
374 F(TraceEnter, 0, 1) \ | 374 F(TraceEnter, 0, 1) \ |
375 F(TraceExit, 1, 1) \ | 375 F(TraceExit, 1, 1) \ |
376 F(Abort, 2, 1) \ | 376 F(Abort, 2, 1) \ |
377 F(FlattenString, 1, 1) \ | |
Michael Starzinger
2013/01/09 09:09:40
Nit of the day: I think this better fits into the
Sven Panne
2013/01/09 09:28:42
Done.
| |
377 /* Logging */ \ | 378 /* Logging */ \ |
378 F(Log, 2, 1) \ | 379 F(Log, 2, 1) \ |
379 /* ES5 */ \ | 380 /* ES5 */ \ |
380 F(LocalKeys, 1, 1) \ | 381 F(LocalKeys, 1, 1) \ |
381 /* Cache suport */ \ | 382 /* Cache suport */ \ |
382 F(GetFromCache, 2, 1) \ | 383 F(GetFromCache, 2, 1) \ |
383 \ | 384 \ |
384 /* Message objects */ \ | 385 /* Message objects */ \ |
385 F(MessageGetStartPosition, 1, 1) \ | 386 F(MessageGetStartPosition, 1, 1) \ |
386 F(MessageGetScript, 1, 1) \ | 387 F(MessageGetScript, 1, 1) \ |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
722 //--------------------------------------------------------------------------- | 723 //--------------------------------------------------------------------------- |
723 // Constants used by interface to runtime functions. | 724 // Constants used by interface to runtime functions. |
724 | 725 |
725 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 726 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
726 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 727 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
727 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 728 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
728 | 729 |
729 } } // namespace v8::internal | 730 } } // namespace v8::internal |
730 | 731 |
731 #endif // V8_RUNTIME_H_ | 732 #endif // V8_RUNTIME_H_ |
OLD | NEW |