| 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 F(DebugReferencedBy, 3, 1) \ | 334 F(DebugReferencedBy, 3, 1) \ |
| 335 F(DebugConstructedBy, 2, 1) \ | 335 F(DebugConstructedBy, 2, 1) \ |
| 336 F(DebugGetPrototype, 1, 1) \ | 336 F(DebugGetPrototype, 1, 1) \ |
| 337 F(SystemBreak, 0, 1) \ | 337 F(SystemBreak, 0, 1) \ |
| 338 F(DebugDisassembleFunction, 1, 1) \ | 338 F(DebugDisassembleFunction, 1, 1) \ |
| 339 F(DebugDisassembleConstructor, 1, 1) \ | 339 F(DebugDisassembleConstructor, 1, 1) \ |
| 340 F(FunctionGetInferredName, 1, 1) \ | 340 F(FunctionGetInferredName, 1, 1) \ |
| 341 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ | 341 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ |
| 342 F(LiveEditGatherCompileInfo, 2, 1) \ | 342 F(LiveEditGatherCompileInfo, 2, 1) \ |
| 343 F(LiveEditReplaceScript, 3, 1) \ | 343 F(LiveEditReplaceScript, 3, 1) \ |
| 344 F(LiveEditReplaceFunctionCode, 2, 1) \ | 344 F(LiveEditReplaceFunctionCode, 3, 1) \ |
| 345 F(LiveEditFunctionSetScript, 2, 1) \ | 345 F(LiveEditFunctionSetScript, 2, 1) \ |
| 346 F(LiveEditReplaceRefToNestedFunction, 3, 1) \ | 346 F(LiveEditReplaceRefToNestedFunction, 3, 1) \ |
| 347 F(LiveEditPatchFunctionPositions, 2, 1) \ | 347 F(LiveEditPatchFunctionPositions, 2, 1) \ |
| 348 F(LiveEditCheckAndDropActivations, 2, 1) \ | 348 F(LiveEditCheckActivations, 1, 1) \ |
| 349 F(LiveEditCompareStringsLinewise, 2, 1) \ | 349 F(LiveEditCompareStringsLinewise, 2, 1) \ |
| 350 F(GetFunctionCodePositionFromSource, 2, 1) \ | 350 F(GetFunctionCodePositionFromSource, 2, 1) \ |
| 351 F(ExecuteInDebugContext, 2, 1) | 351 F(ExecuteInDebugContext, 2, 1) |
| 352 #else | 352 #else |
| 353 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) | 353 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) |
| 354 #endif | 354 #endif |
| 355 | 355 |
| 356 #ifdef ENABLE_LOGGING_AND_PROFILING | 356 #ifdef ENABLE_LOGGING_AND_PROFILING |
| 357 #define RUNTIME_FUNCTION_LIST_PROFILER_SUPPORT(F) \ | 357 #define RUNTIME_FUNCTION_LIST_PROFILER_SUPPORT(F) \ |
| 358 F(ProfilerResume, 2, 1) \ | 358 F(ProfilerResume, 2, 1) \ |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 int position); | 449 int position); |
| 450 | 450 |
| 451 // Helper functions used stubs. | 451 // Helper functions used stubs. |
| 452 static void PerformGC(Object* result); | 452 static void PerformGC(Object* result); |
| 453 }; | 453 }; |
| 454 | 454 |
| 455 | 455 |
| 456 } } // namespace v8::internal | 456 } } // namespace v8::internal |
| 457 | 457 |
| 458 #endif // V8_RUNTIME_H_ | 458 #endif // V8_RUNTIME_H_ |
| OLD | NEW |