1. 09 Mar, 2010 1 commit
  2. 01 Mar, 2010 1 commit
  3. 28 Jan, 2010 1 commit
  4. 25 Jan, 2010 1 commit
  5. 21 Jan, 2010 1 commit
    • mikhail.naganov@gmail.com's avatar
      Fix issue 553: function frame is skipped in profile when compare stub is called. · 999e3fca
      mikhail.naganov@gmail.com authored
      The problem appeared due to a fact that stubs doesn't create a stack
      frame, reusing the stack frame of the caller function. When building
      stack traces, the current function is retrieved from PC, and its
      callees are retrieved by traversing the stack backwards. Thus, for
      stubs, the stub itself was discovered via PC, and then stub's caller's
      caller was retrieved from stack.
      
      To fix this problem, a pointer to JSFunction object is now captured
      from the topmost stack frame, and is saved into stack trace log
      record. Then a simple heuristics is applied whether a referred
      function should be added to decoded stack, or not, to avoid reporting
      the same function twice (from PC and from the pointer.)
      
      BUG=553
      TEST=added to mjsunit/tools/tickprocessor
      
      Review URL: http://codereview.chromium.org/546089
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3673 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      999e3fca
  6. 14 Jan, 2010 1 commit
  7. 12 Jan, 2010 1 commit
  8. 18 Dec, 2009 1 commit
  9. 17 Dec, 2009 1 commit
    • sgjesse@chromium.org's avatar
      Extend the maximum size map space · 44b7c59e
      sgjesse@chromium.org authored
      On 32-bit the maps are now aligned on a 32-byte boundary in order to encode more maps during compacting GC. The actual size of a map on 32-bit is 28 bytes making this change waste 4 bytes per map.
      
      On 64-bit the encoding for compacting GC is now using more than 32-bits and the maps here are still pointer size aligned. The actual size of a map on 64-bit is 48 bytes and this change does not intruduce any waste.
      
      My choice of 16 bits for kMapPageIndexBits for 64-bit should give the same maximum number of pages (8K) for map space. As maps on 64-bit are larger than on 32-bit the total number of maps on 64-bit will be smaller than on 32-bit. We could consider raising this to 17 or 18.
      
      I moved the kPageSizeBits to globals.h as the calculation of the encoding really depended on this.
      
      There are still an #ifdef/#endif in objects.h and this constant could be moved to globaks.h as well, but I kept it together with the related constants.
      
      All the tests run in debug mode with additional options --gc-global --always-compact as well (except for a few tests on which also fails before this change when run with --gc-global --always-compact).
      
      BUG=http://code.google.com/p/v8/issues/detail?id=524
      BUG=http://crbug.com/29428
      TEST=test/mjsunit/regress/regress-524.js
      
      Review URL: http://codereview.chromium.org/504026
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3481 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      44b7c59e
  10. 11 Nov, 2009 1 commit
  11. 27 Oct, 2009 1 commit
  12. 21 Oct, 2009 1 commit
  13. 20 Oct, 2009 1 commit
  14. 05 Oct, 2009 1 commit
  15. 01 Oct, 2009 2 commits
  16. 21 Sep, 2009 1 commit
  17. 18 Sep, 2009 1 commit
  18. 02 Sep, 2009 1 commit
  19. 21 Aug, 2009 1 commit
  20. 20 Aug, 2009 1 commit
  21. 19 Aug, 2009 2 commits
  22. 13 Aug, 2009 2 commits
  23. 12 Aug, 2009 1 commit
  24. 23 Jul, 2009 1 commit
  25. 14 Jul, 2009 1 commit
  26. 10 Jul, 2009 1 commit
  27. 09 Jul, 2009 3 commits
  28. 08 Jul, 2009 1 commit
  29. 30 Jun, 2009 1 commit
  30. 26 May, 2009 1 commit
  31. 25 May, 2009 2 commits
  32. 14 May, 2009 1 commit
  33. 12 May, 2009 1 commit
  34. 07 May, 2009 1 commit