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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 F(DebugIndexedInterceptorElementValue, 2, 1) \ | 312 F(DebugIndexedInterceptorElementValue, 2, 1) \ |
313 F(CheckExecutionState, 1, 1) \ | 313 F(CheckExecutionState, 1, 1) \ |
314 F(GetFrameCount, 1, 1) \ | 314 F(GetFrameCount, 1, 1) \ |
315 F(GetFrameDetails, 2, 1) \ | 315 F(GetFrameDetails, 2, 1) \ |
316 F(GetScopeCount, 2, 1) \ | 316 F(GetScopeCount, 2, 1) \ |
317 F(GetScopeDetails, 3, 1) \ | 317 F(GetScopeDetails, 3, 1) \ |
318 F(DebugPrintScopes, 0, 1) \ | 318 F(DebugPrintScopes, 0, 1) \ |
319 F(GetCFrames, 1, 1) \ | 319 F(GetCFrames, 1, 1) \ |
320 F(GetThreadCount, 1, 1) \ | 320 F(GetThreadCount, 1, 1) \ |
321 F(GetThreadDetails, 2, 1) \ | 321 F(GetThreadDetails, 2, 1) \ |
| 322 F(SetDisableBreak, 1, 1) \ |
322 F(GetBreakLocations, 1, 1) \ | 323 F(GetBreakLocations, 1, 1) \ |
323 F(SetFunctionBreakPoint, 3, 1) \ | 324 F(SetFunctionBreakPoint, 3, 1) \ |
324 F(SetScriptBreakPoint, 3, 1) \ | 325 F(SetScriptBreakPoint, 3, 1) \ |
325 F(ClearBreakPoint, 1, 1) \ | 326 F(ClearBreakPoint, 1, 1) \ |
326 F(ChangeBreakOnException, 2, 1) \ | 327 F(ChangeBreakOnException, 2, 1) \ |
327 F(PrepareStep, 3, 1) \ | 328 F(PrepareStep, 3, 1) \ |
328 F(ClearStepping, 0, 1) \ | 329 F(ClearStepping, 0, 1) \ |
329 F(DebugEvaluate, 4, 1) \ | 330 F(DebugEvaluate, 4, 1) \ |
330 F(DebugEvaluateGlobal, 3, 1) \ | 331 F(DebugEvaluateGlobal, 3, 1) \ |
331 F(DebugGetLoadedScripts, 0, 1) \ | 332 F(DebugGetLoadedScripts, 0, 1) \ |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 int position); | 448 int position); |
448 | 449 |
449 // Helper functions used stubs. | 450 // Helper functions used stubs. |
450 static void PerformGC(Object* result); | 451 static void PerformGC(Object* result); |
451 }; | 452 }; |
452 | 453 |
453 | 454 |
454 } } // namespace v8::internal | 455 } } // namespace v8::internal |
455 | 456 |
456 #endif // V8_RUNTIME_H_ | 457 #endif // V8_RUNTIME_H_ |
OLD | NEW |