Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(548)

Side by Side Diff: src/runtime.h

Issue 7343005: Support scope information and evaluation in optimized frames (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed review comments Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/mirror-debugger.js ('k') | src/runtime.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 F(DebugGetProperty, 2, 1) \ 362 F(DebugGetProperty, 2, 1) \
363 F(DebugPropertyTypeFromDetails, 1, 1) \ 363 F(DebugPropertyTypeFromDetails, 1, 1) \
364 F(DebugPropertyAttributesFromDetails, 1, 1) \ 364 F(DebugPropertyAttributesFromDetails, 1, 1) \
365 F(DebugPropertyIndexFromDetails, 1, 1) \ 365 F(DebugPropertyIndexFromDetails, 1, 1) \
366 F(DebugNamedInterceptorPropertyValue, 2, 1) \ 366 F(DebugNamedInterceptorPropertyValue, 2, 1) \
367 F(DebugIndexedInterceptorElementValue, 2, 1) \ 367 F(DebugIndexedInterceptorElementValue, 2, 1) \
368 F(CheckExecutionState, 1, 1) \ 368 F(CheckExecutionState, 1, 1) \
369 F(GetFrameCount, 1, 1) \ 369 F(GetFrameCount, 1, 1) \
370 F(GetFrameDetails, 2, 1) \ 370 F(GetFrameDetails, 2, 1) \
371 F(GetScopeCount, 2, 1) \ 371 F(GetScopeCount, 2, 1) \
372 F(GetScopeDetails, 3, 1) \ 372 F(GetScopeDetails, 4, 1) \
373 F(DebugPrintScopes, 0, 1) \ 373 F(DebugPrintScopes, 0, 1) \
374 F(GetThreadCount, 1, 1) \ 374 F(GetThreadCount, 1, 1) \
375 F(GetThreadDetails, 2, 1) \ 375 F(GetThreadDetails, 2, 1) \
376 F(SetDisableBreak, 1, 1) \ 376 F(SetDisableBreak, 1, 1) \
377 F(GetBreakLocations, 1, 1) \ 377 F(GetBreakLocations, 1, 1) \
378 F(SetFunctionBreakPoint, 3, 1) \ 378 F(SetFunctionBreakPoint, 3, 1) \
379 F(SetScriptBreakPoint, 3, 1) \ 379 F(SetScriptBreakPoint, 3, 1) \
380 F(ClearBreakPoint, 1, 1) \ 380 F(ClearBreakPoint, 1, 1) \
381 F(ChangeBreakOnException, 2, 1) \ 381 F(ChangeBreakOnException, 2, 1) \
382 F(IsBreakOnException, 1, 1) \ 382 F(IsBreakOnException, 1, 1) \
383 F(PrepareStep, 3, 1) \ 383 F(PrepareStep, 3, 1) \
384 F(ClearStepping, 0, 1) \ 384 F(ClearStepping, 0, 1) \
385 F(DebugEvaluate, 5, 1) \ 385 F(DebugEvaluate, 6, 1) \
386 F(DebugEvaluateGlobal, 4, 1) \ 386 F(DebugEvaluateGlobal, 4, 1) \
387 F(DebugGetLoadedScripts, 0, 1) \ 387 F(DebugGetLoadedScripts, 0, 1) \
388 F(DebugReferencedBy, 3, 1) \ 388 F(DebugReferencedBy, 3, 1) \
389 F(DebugConstructedBy, 2, 1) \ 389 F(DebugConstructedBy, 2, 1) \
390 F(DebugGetPrototype, 1, 1) \ 390 F(DebugGetPrototype, 1, 1) \
391 F(SystemBreak, 0, 1) \ 391 F(SystemBreak, 0, 1) \
392 F(DebugDisassembleFunction, 1, 1) \ 392 F(DebugDisassembleFunction, 1, 1) \
393 F(DebugDisassembleConstructor, 1, 1) \ 393 F(DebugDisassembleConstructor, 1, 1) \
394 F(FunctionGetInferredName, 1, 1) \ 394 F(FunctionGetInferredName, 1, 1) \
395 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ 395 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 Handle<Script> script, 655 Handle<Script> script,
656 int position); 656 int position);
657 657
658 // Helper functions used stubs. 658 // Helper functions used stubs.
659 static void PerformGC(Object* result); 659 static void PerformGC(Object* result);
660 }; 660 };
661 661
662 } } // namespace v8::internal 662 } } // namespace v8::internal
663 663
664 #endif // V8_RUNTIME_H_ 664 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/mirror-debugger.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698