| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 F(LoadContextSlotNoReferenceError, 2, 2) \ | 259 F(LoadContextSlotNoReferenceError, 2, 2) \ |
| 260 F(StoreContextSlot, 3, 1) \ | 260 F(StoreContextSlot, 3, 1) \ |
| 261 \ | 261 \ |
| 262 /* Declarations and initialization */ \ | 262 /* Declarations and initialization */ \ |
| 263 F(DeclareGlobals, 3, 1) \ | 263 F(DeclareGlobals, 3, 1) \ |
| 264 F(DeclareContextSlot, 4, 1) \ | 264 F(DeclareContextSlot, 4, 1) \ |
| 265 F(InitializeVarGlobal, -1 /* 1 or 2 */, 1) \ | 265 F(InitializeVarGlobal, -1 /* 1 or 2 */, 1) \ |
| 266 F(InitializeConstGlobal, 2, 1) \ | 266 F(InitializeConstGlobal, 2, 1) \ |
| 267 F(InitializeConstContextSlot, 3, 1) \ | 267 F(InitializeConstContextSlot, 3, 1) \ |
| 268 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ | 268 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ |
| 269 F(TransformToFastProperties, 1, 1) \ | |
| 270 \ | 269 \ |
| 271 /* Debugging */ \ | 270 /* Debugging */ \ |
| 272 F(DebugPrint, 1, 1) \ | 271 F(DebugPrint, 1, 1) \ |
| 273 F(DebugTrace, 0, 1) \ | 272 F(DebugTrace, 0, 1) \ |
| 274 F(TraceEnter, 0, 1) \ | 273 F(TraceEnter, 0, 1) \ |
| 275 F(TraceExit, 1, 1) \ | 274 F(TraceExit, 1, 1) \ |
| 276 F(Abort, 2, 1) \ | 275 F(Abort, 2, 1) \ |
| 277 /* Logging */ \ | 276 /* Logging */ \ |
| 278 F(Log, 2, 1) \ | 277 F(Log, 2, 1) \ |
| 279 /* ES5 */ \ | 278 /* ES5 */ \ |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 int position); | 421 int position); |
| 423 | 422 |
| 424 // Helper functions used stubs. | 423 // Helper functions used stubs. |
| 425 static void PerformGC(Object* result); | 424 static void PerformGC(Object* result); |
| 426 }; | 425 }; |
| 427 | 426 |
| 428 | 427 |
| 429 } } // namespace v8::internal | 428 } } // namespace v8::internal |
| 430 | 429 |
| 431 #endif // V8_RUNTIME_H_ | 430 #endif // V8_RUNTIME_H_ |
| OLD | NEW |