| 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 F(DeclareGlobals, 3, 1) \ | 326 F(DeclareGlobals, 3, 1) \ |
| 327 F(DeclareContextSlot, 4, 1) \ | 327 F(DeclareContextSlot, 4, 1) \ |
| 328 F(InitializeVarGlobal, -1 /* 2 or 3 */, 1) \ | 328 F(InitializeVarGlobal, -1 /* 2 or 3 */, 1) \ |
| 329 F(InitializeConstGlobal, 2, 1) \ | 329 F(InitializeConstGlobal, 2, 1) \ |
| 330 F(InitializeConstContextSlot, 3, 1) \ | 330 F(InitializeConstContextSlot, 3, 1) \ |
| 331 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ | 331 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ |
| 332 \ | 332 \ |
| 333 /* Debugging */ \ | 333 /* Debugging */ \ |
| 334 F(DebugPrint, 1, 1) \ | 334 F(DebugPrint, 1, 1) \ |
| 335 F(DebugTrace, 0, 1) \ | 335 F(DebugTrace, 0, 1) \ |
| 336 F(TraceElementsKindTransition, 5, 1) \ |
| 336 F(TraceEnter, 0, 1) \ | 337 F(TraceEnter, 0, 1) \ |
| 337 F(TraceExit, 1, 1) \ | 338 F(TraceExit, 1, 1) \ |
| 338 F(Abort, 2, 1) \ | 339 F(Abort, 2, 1) \ |
| 339 /* Logging */ \ | 340 /* Logging */ \ |
| 340 F(Log, 2, 1) \ | 341 F(Log, 2, 1) \ |
| 341 /* ES5 */ \ | 342 /* ES5 */ \ |
| 342 F(LocalKeys, 1, 1) \ | 343 F(LocalKeys, 1, 1) \ |
| 343 /* Cache suport */ \ | 344 /* Cache suport */ \ |
| 344 F(GetFromCache, 2, 1) \ | 345 F(GetFromCache, 2, 1) \ |
| 345 \ | 346 \ |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 | 678 |
| 678 enum kDeclareGlobalsFlags { | 679 enum kDeclareGlobalsFlags { |
| 679 kDeclareGlobalsEvalFlag = 1 << 0, | 680 kDeclareGlobalsEvalFlag = 1 << 0, |
| 680 kDeclareGlobalsStrictModeFlag = 1 << 1, | 681 kDeclareGlobalsStrictModeFlag = 1 << 1, |
| 681 kDeclareGlobalsNativeFlag = 1 << 2 | 682 kDeclareGlobalsNativeFlag = 1 << 2 |
| 682 }; | 683 }; |
| 683 | 684 |
| 684 } } // namespace v8::internal | 685 } } // namespace v8::internal |
| 685 | 686 |
| 686 #endif // V8_RUNTIME_H_ | 687 #endif // V8_RUNTIME_H_ |
| OLD | NEW |