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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 F(ClearStepping, 0, 1) \ | 318 F(ClearStepping, 0, 1) \ |
319 F(DebugEvaluate, 4, 1) \ | 319 F(DebugEvaluate, 4, 1) \ |
320 F(DebugEvaluateGlobal, 3, 1) \ | 320 F(DebugEvaluateGlobal, 3, 1) \ |
321 F(DebugGetLoadedScripts, 0, 1) \ | 321 F(DebugGetLoadedScripts, 0, 1) \ |
322 F(DebugReferencedBy, 3, 1) \ | 322 F(DebugReferencedBy, 3, 1) \ |
323 F(DebugConstructedBy, 2, 1) \ | 323 F(DebugConstructedBy, 2, 1) \ |
324 F(DebugGetPrototype, 1, 1) \ | 324 F(DebugGetPrototype, 1, 1) \ |
325 F(SystemBreak, 0, 1) \ | 325 F(SystemBreak, 0, 1) \ |
326 F(DebugDisassembleFunction, 1, 1) \ | 326 F(DebugDisassembleFunction, 1, 1) \ |
327 F(DebugDisassembleConstructor, 1, 1) \ | 327 F(DebugDisassembleConstructor, 1, 1) \ |
328 F(FunctionGetInferredName, 1, 1) | 328 F(FunctionGetInferredName, 1, 1) \ |
| 329 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ |
| 330 F(LiveEditGatherCompileInfo, 2, 1) \ |
| 331 F(LiveEditReplaceScript, 3, 1) \ |
| 332 F(LiveEditReplaceFunctionCode, 2, 1) \ |
| 333 F(LiveEditRelinkFunctionToScript, 2, 1) \ |
| 334 F(LiveEditPatchFunctionPositions, 2, 1) |
329 #else | 335 #else |
330 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) | 336 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) |
331 #endif | 337 #endif |
332 | 338 |
333 #ifdef ENABLE_LOGGING_AND_PROFILING | 339 #ifdef ENABLE_LOGGING_AND_PROFILING |
334 #define RUNTIME_FUNCTION_LIST_PROFILER_SUPPORT(F) \ | 340 #define RUNTIME_FUNCTION_LIST_PROFILER_SUPPORT(F) \ |
335 F(ProfilerResume, 2, 1) \ | 341 F(ProfilerResume, 2, 1) \ |
336 F(ProfilerPause, 2, 1) | 342 F(ProfilerPause, 2, 1) |
337 #else | 343 #else |
338 #define RUNTIME_FUNCTION_LIST_PROFILER_SUPPORT(F) | 344 #define RUNTIME_FUNCTION_LIST_PROFILER_SUPPORT(F) |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 int position); | 432 int position); |
427 | 433 |
428 // Helper functions used stubs. | 434 // Helper functions used stubs. |
429 static void PerformGC(Object* result); | 435 static void PerformGC(Object* result); |
430 }; | 436 }; |
431 | 437 |
432 | 438 |
433 } } // namespace v8::internal | 439 } } // namespace v8::internal |
434 | 440 |
435 #endif // V8_RUNTIME_H_ | 441 #endif // V8_RUNTIME_H_ |
OLD | NEW |