1. 15 Nov, 2010 1 commit
  2. 13 Nov, 2010 1 commit
  3. 10 Nov, 2010 2 commits
  4. 25 Oct, 2010 1 commit
  5. 19 Oct, 2010 1 commit
  6. 30 Sep, 2010 1 commit
  7. 28 Sep, 2010 3 commits
  8. 24 Sep, 2010 1 commit
    • dimich@chromium.org's avatar
      Add CODE_POINTER_ALIGN, use it in Page to align generated code. · 589eb4a8
      dimich@chromium.org authored
      The object's space in Page starts after Page header and is aligned to kMapAlignment which is 32 bytes on 32-bit and 8 bytes on 64-bit.
      
      In case of 64-bit target, the current page header size is exactly 32 bytes so we get the code magically aligned at 32 bytes but it is better to have a separate CODE_POINTER_ALIGN macro to make sure the object space in Page is aligned properly for both maps and code.
      
      There could be a small waste of bytes sometimes (since both Page header and Code header sizes are aligned separately) but it seems the optimal one would involve cross-dependencies between .h files and not clear if it's worth it.
      
      This is a back-port from Isolates branch.
      
      Review URL: http://codereview.chromium.org/3461021
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5526 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      589eb4a8
  9. 03 Sep, 2010 2 commits
  10. 01 Sep, 2010 1 commit
  11. 30 Aug, 2010 2 commits
  12. 18 Aug, 2010 1 commit
  13. 11 Jun, 2010 1 commit
  14. 27 May, 2010 1 commit
  15. 26 May, 2010 1 commit
  16. 25 May, 2010 1 commit
    • vegorov@chromium.org's avatar
      Cardmarking writebarrier. · 675e711f
      vegorov@chromium.org authored
      - New сardmarking write barrier handles large objects and normal objects in a similar fashion (no more additional space for pointer tracking is required, no conditional branches in WB code).
      - Changes to enable oldspaces iteration without maps decoding:
      -- layout change for FixedArrays: length is stored as a smis (initial patch by
      Kevin Millikin)
      -- layout change for SharedFunctionInfo: integer fields are stored as smi on
      arm, ia32 and rearranged on x64.
      -- layout change for String: meaning of LSB bit is fliped (1 now means hash not
      computed); on x64 padding is added.
      -- layout of maps is _not_ changed. Map space is currently iterated in a special
      way.
      
      Review URL: http://codereview.chromium.org/2144006
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4715 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      675e711f
  17. 21 May, 2010 2 commits
  18. 20 May, 2010 2 commits
  19. 23 Apr, 2010 1 commit
  20. 22 Apr, 2010 2 commits
  21. 08 Apr, 2010 1 commit
  22. 28 Jan, 2010 1 commit
  23. 27 Jan, 2010 1 commit
  24. 25 Jan, 2010 1 commit
  25. 21 Jan, 2010 1 commit
  26. 19 Jan, 2010 1 commit
  27. 14 Jan, 2010 1 commit
  28. 13 Jan, 2010 1 commit
  29. 12 Jan, 2010 1 commit
  30. 18 Dec, 2009 1 commit
  31. 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
  32. 11 Nov, 2009 1 commit