| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 F(LoadContextSlot, 2) \ | 240 F(LoadContextSlot, 2) \ |
| 241 F(LoadContextSlotNoReferenceError, 2) \ | 241 F(LoadContextSlotNoReferenceError, 2) \ |
| 242 F(StoreContextSlot, 3) \ | 242 F(StoreContextSlot, 3) \ |
| 243 \ | 243 \ |
| 244 /* Declarations and initialization */ \ | 244 /* Declarations and initialization */ \ |
| 245 F(DeclareGlobals, 3) \ | 245 F(DeclareGlobals, 3) \ |
| 246 F(DeclareContextSlot, 4) \ | 246 F(DeclareContextSlot, 4) \ |
| 247 F(InitializeVarGlobal, -1 /* 1 or 2 */) \ | 247 F(InitializeVarGlobal, -1 /* 1 or 2 */) \ |
| 248 F(InitializeConstGlobal, 2) \ | 248 F(InitializeConstGlobal, 2) \ |
| 249 F(InitializeConstContextSlot, 3) \ | 249 F(InitializeConstContextSlot, 3) \ |
| 250 F(OptimizeObjectForAddingMultipleProperties, 2) \ |
| 251 F(TransformToFastProperties, 1) \ |
| 250 \ | 252 \ |
| 251 /* Debugging */ \ | 253 /* Debugging */ \ |
| 252 F(DebugPrint, 1) \ | 254 F(DebugPrint, 1) \ |
| 253 F(DebugTrace, 0) \ | 255 F(DebugTrace, 0) \ |
| 254 F(TraceEnter, 0) \ | 256 F(TraceEnter, 0) \ |
| 255 F(TraceExit, 1) \ | 257 F(TraceExit, 1) \ |
| 256 F(Abort, 2) \ | 258 F(Abort, 2) \ |
| 257 /* Logging */ \ | 259 /* Logging */ \ |
| 258 F(Log, 2) \ | 260 F(Log, 2) \ |
| 259 \ | 261 \ |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 int position); | 395 int position); |
| 394 | 396 |
| 395 // Helper functions used stubs. | 397 // Helper functions used stubs. |
| 396 static void PerformGC(Object* result); | 398 static void PerformGC(Object* result); |
| 397 }; | 399 }; |
| 398 | 400 |
| 399 | 401 |
| 400 } } // namespace v8::internal | 402 } } // namespace v8::internal |
| 401 | 403 |
| 402 #endif // V8_RUNTIME_H_ | 404 #endif // V8_RUNTIME_H_ |
| OLD | NEW |