1. 21 Oct, 2010 1 commit
  2. 20 Oct, 2010 1 commit
  3. 05 Oct, 2010 1 commit
  4. 04 Oct, 2010 2 commits
  5. 01 Oct, 2010 1 commit
    • kaznacheev@chromium.org's avatar
      Fine-tune inobject slack tracking. · 1156bbc8
      kaznacheev@chromium.org authored
      The current parameters (initial slack = 6, kGenerousAllocationsCount = 16)
      caused 15-20% performance regression on 3d-raytrace on x64 
      (visible both in standalone shell and in the web harness). This is very
      likely some kind of an alignment  problem (it goes away completely with --prof).
      A similar problem can be observed on ia32 with initial slack=2.
      
      Increased initial slack to 8 and decreased constructions count to 8. 
      This made the regression go away (and did not harm any of the other tests).
      
      Review URL: http://codereview.chromium.org/3595002
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5571 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      1156bbc8
  6. 30 Sep, 2010 1 commit
  7. 29 Sep, 2010 1 commit
  8. 23 Sep, 2010 2 commits
    • kaznacheev@chromium.org's avatar
      Dynamically determine optimal instance size. · 06c86740
      kaznacheev@chromium.org authored
      The number of inobject properties used to be derived from the number
      of this property assignments in the constructor (and increased by 2 to
      allow for properties added later). This very often leads to wasted inobject 
      slots.
      
      This patch reclaims some of the unused inobject space by the following method:
       - for each constructor function the first several objects are allocated using the initial 
         ("generous) instance size estimation (this is called 'tracking phase').
       - during the tracking phase map transitions are tracked and actual property counts are collected.
       - at the end of the tracking phase instance sizes in the maps are decreased if necessary
         (starting with the function's initial map and traversing the transition tree).
       - all further allocation use more realistic instance size estimation.
      
      Shrinking generously allocated objects without costly heap traversal is made possible 
      by initializing their inobject properties with one_pointer_filler_map (instead of undefined). 
      
      The initial slack for the generous allocation is increased from 2 to 6 which really helps some tests.
      
      Review URL: http://codereview.chromium.org/3329019
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5510 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      06c86740
    • vegorov@chromium.org's avatar
      Fix possible evaluation order problems. · 7c8bb527
      vegorov@chromium.org authored
      We should not allow handle dereference and GC inside the same expression because order of subexpression evalution are not defined.
      
      Review URL: http://codereview.chromium.org/3398014
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5509 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      7c8bb527
  9. 14 Sep, 2010 1 commit
  10. 17 Aug, 2010 1 commit
  11. 13 Aug, 2010 1 commit
  12. 11 Aug, 2010 2 commits
  13. 19 Jul, 2010 1 commit
  14. 30 Jun, 2010 1 commit
  15. 25 May, 2010 1 commit
  16. 28 Apr, 2010 1 commit
  17. 19 Apr, 2010 1 commit
  18. 06 Apr, 2010 1 commit
  19. 25 Mar, 2010 1 commit
  20. 23 Mar, 2010 2 commits
  21. 18 Mar, 2010 1 commit
  22. 17 Mar, 2010 1 commit
  23. 02 Mar, 2010 1 commit
  24. 26 Feb, 2010 1 commit
  25. 16 Feb, 2010 3 commits
  26. 10 Feb, 2010 1 commit
  27. 03 Feb, 2010 1 commit
  28. 29 Jan, 2010 2 commits
  29. 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
  30. 01 Dec, 2009 1 commit
  31. 27 Nov, 2009 1 commit
  32. 18 Nov, 2009 1 commit
  33. 12 Nov, 2009 1 commit