| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 F(DeclareGlobals, 3, 1) \ | 334 F(DeclareGlobals, 3, 1) \ |
| 335 F(DeclareContextSlot, 4, 1) \ | 335 F(DeclareContextSlot, 4, 1) \ |
| 336 F(InitializeVarGlobal, -1 /* 2 or 3 */, 1) \ | 336 F(InitializeVarGlobal, -1 /* 2 or 3 */, 1) \ |
| 337 F(InitializeConstGlobal, 2, 1) \ | 337 F(InitializeConstGlobal, 2, 1) \ |
| 338 F(InitializeConstContextSlot, 3, 1) \ | 338 F(InitializeConstContextSlot, 3, 1) \ |
| 339 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ | 339 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ |
| 340 \ | 340 \ |
| 341 /* Debugging */ \ | 341 /* Debugging */ \ |
| 342 F(DebugPrint, 1, 1) \ | 342 F(DebugPrint, 1, 1) \ |
| 343 F(DebugTrace, 0, 1) \ | 343 F(DebugTrace, 0, 1) \ |
| 344 F(TraceElementsKindTransition, 5, 1) \ | |
| 345 F(TraceEnter, 0, 1) \ | 344 F(TraceEnter, 0, 1) \ |
| 346 F(TraceExit, 1, 1) \ | 345 F(TraceExit, 1, 1) \ |
| 347 F(Abort, 2, 1) \ | 346 F(Abort, 2, 1) \ |
| 348 /* Logging */ \ | 347 /* Logging */ \ |
| 349 F(Log, 2, 1) \ | 348 F(Log, 2, 1) \ |
| 350 /* ES5 */ \ | 349 /* ES5 */ \ |
| 351 F(LocalKeys, 1, 1) \ | 350 F(LocalKeys, 1, 1) \ |
| 352 /* Cache suport */ \ | 351 /* Cache suport */ \ |
| 353 F(GetFromCache, 2, 1) \ | 352 F(GetFromCache, 2, 1) \ |
| 354 \ | 353 \ |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 //--------------------------------------------------------------------------- | 690 //--------------------------------------------------------------------------- |
| 692 // Constants used by interface to runtime functions. | 691 // Constants used by interface to runtime functions. |
| 693 | 692 |
| 694 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 693 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
| 695 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 694 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
| 696 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 695 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
| 697 | 696 |
| 698 } } // namespace v8::internal | 697 } } // namespace v8::internal |
| 699 | 698 |
| 700 #endif // V8_RUNTIME_H_ | 699 #endif // V8_RUNTIME_H_ |
| OLD | NEW |