1. 07 Oct, 2014 1 commit
  2. 04 Aug, 2014 1 commit
  3. 30 Jun, 2014 1 commit
  4. 24 Jun, 2014 1 commit
  5. 18 Jun, 2014 1 commit
  6. 13 Jun, 2014 2 commits
  7. 03 Jun, 2014 1 commit
  8. 27 May, 2014 1 commit
  9. 26 May, 2014 2 commits
  10. 29 Apr, 2014 1 commit
  11. 25 Apr, 2014 3 commits
  12. 10 Mar, 2014 1 commit
  13. 07 Mar, 2014 2 commits
  14. 16 Apr, 2013 1 commit
  15. 15 Apr, 2013 1 commit
  16. 24 Apr, 2012 1 commit
  17. 23 Apr, 2012 2 commits
  18. 05 Jul, 2011 1 commit
  19. 19 Jan, 2011 4 commits
  20. 20 Dec, 2010 1 commit
  21. 07 Dec, 2010 3 commits
  22. 05 Nov, 2010 1 commit
  23. 18 Feb, 2010 1 commit
  24. 07 Jan, 2010 1 commit
  25. 24 Nov, 2009 1 commit
    • sgjesse@chromium.org's avatar
      Remove the different length string types · eb4d261e
      sgjesse@chromium.org authored
      The different length string types was used to encode the string length and the hash in one field. This is now split into two fields one for length and one for hash. The hash field still encodes the array index of the string if it has one. If an array index is encoded in the hash field the string length is added to the top bits of the hash field to avoid a hash value of zero.
      
      On 32-bit this causes an additional 4 bytes to be used for all string objects. On 64-bit this will be half on average dur to pointer alignment.
      Review URL: http://codereview.chromium.org/436001
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3350 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      eb4d261e
  26. 11 Nov, 2009 1 commit
  27. 02 Oct, 2009 1 commit
  28. 25 May, 2009 1 commit
  29. 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