1. 13 Aug, 2010 1 commit
  2. 30 Jul, 2010 1 commit
  3. 29 Jul, 2010 2 commits
  4. 28 Jul, 2010 1 commit
  5. 14 Jul, 2010 1 commit
  6. 30 Jun, 2010 1 commit
  7. 16 Jun, 2010 1 commit
  8. 10 Jun, 2010 1 commit
  9. 08 Jun, 2010 1 commit
    • sgjesse@chromium.org's avatar
      More precise break points and stepping when debugging · 634fb915
      sgjesse@chromium.org authored
      Added support for more precise break points when debugging and stepping. To achieve that additional nop instructions are inserted where breaking would otherwise be impossible. The number of nop instructions inserted are sufficient to make place for patching with a call to a debug break code stub. On Intel that is 5 nop's for 32-bit and 13 for 64-bit. Om ARM 3 nop instructions (12 bytes) are required.
      
      In order to avoid inserting nop's in to many places a simple ast checker have been added to check whether there are breakable code in a statement or expression. If it is possible to break in an expression no additional break enabeling code is inserted.
      
      Added break locations to the true and false part of a conditional expression.
      
      Added stepping tests to cover more constructs.
      
      These changes are only in the full compiler.
      
      Changed the default value for the option --debugger in teh d8 shell from true to false. The reason for this is that with --debugger turned on the full compiler will be used for all code in when running d8, which can be unexpeceted.
      
      Review URL: http://codereview.chromium.org/2693002
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4820 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      634fb915
  10. 20 May, 2010 1 commit
  11. 19 May, 2010 1 commit
  12. 28 Apr, 2010 2 commits
  13. 06 Apr, 2010 1 commit
  14. 05 Mar, 2010 1 commit
  15. 29 Jan, 2010 2 commits
  16. 18 Jan, 2010 1 commit
  17. 15 Jan, 2010 1 commit
  18. 18 Dec, 2009 1 commit
  19. 14 Dec, 2009 1 commit
  20. 13 Dec, 2009 1 commit
  21. 30 Nov, 2009 1 commit
  22. 18 Nov, 2009 1 commit
  23. 11 Nov, 2009 1 commit
  24. 04 Nov, 2009 1 commit
  25. 28 Sep, 2009 1 commit
  26. 25 Sep, 2009 1 commit
  27. 09 Sep, 2009 2 commits
  28. 07 Sep, 2009 1 commit
  29. 19 Aug, 2009 1 commit
  30. 10 Jul, 2009 1 commit
  31. 09 Jul, 2009 1 commit
  32. 29 May, 2009 1 commit
    • sgjesse@chromium.org's avatar
      Change the handling of the debug break stack guard. The debug break is no... · a019501b
      sgjesse@chromium.org authored
      Change the handling of the debug break stack guard. The debug break is no longer ignored when hit inside "system" JavaScript. The reason for this is twofold:
      
      * Running "system" JavaScript with the debug break flag active leads to slow running code while waiting for the break in non "system" JavaScript (one exception to this it is to try to avoid breaks in the clear mirror cache JavaScript code called when leaving the debugger).
      
      * If this happens while processing RegExp running in native code an infinite loop is created as the stack guard handler for RegExp does not move execution forward
      
      Fixed a GC bug in the interrupt handling for RegExp running in native code.
      
      Added test of debug break while in debug message handler callback and debug break while executing a RegExp.
      Review URL: http://codereview.chromium.org/115262
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2074 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      a019501b
  33. 25 May, 2009 2 commits
  34. 18 May, 2009 1 commit
    • sgjesse@chromium.org's avatar
      Add a script cache to the debugger · 94879a93
      sgjesse@chromium.org authored
      When loaded scripts are requested this cache is filled with all the script objects in the heap. Hereafter its content is kept in sync with the active scripts in the heap through the notifications of new scripts compiled and by using weak handles to get notified when a script is collected.
      
      Through the tracking of collected scripts the debugger event OnScriptCollected have been added to notify a debugger that a script previously returned through the scripts command is no longer in use.
      
      Make the ComputeIntegerHash globally available.
      
      Moved clearing of the mirror cache to when debugger is really left. Previously recursive invocations of the debugger cause the mirror cache to be cleared causing handles to become either stale or reference other objects.
      Review URL: http://codereview.chromium.org/115462
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1988 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      94879a93
  35. 05 May, 2009 1 commit