1. 02 Apr, 2012 1 commit
  2. 23 Feb, 2012 1 commit
  3. 31 Jan, 2012 2 commits
  4. 30 Jan, 2012 2 commits
  5. 17 Jan, 2012 2 commits
  6. 13 Jan, 2012 1 commit
  7. 19 Sep, 2011 1 commit
  8. 04 Aug, 2011 1 commit
  9. 18 Mar, 2011 3 commits
  10. 07 Dec, 2010 3 commits
  11. 10 Nov, 2010 1 commit
  12. 25 Oct, 2010 1 commit
  13. 30 Sep, 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. 22 Apr, 2010 1 commit
  20. 21 Oct, 2009 1 commit
  21. 29 Oct, 2008 1 commit
  22. 17 Oct, 2008 1 commit
  23. 09 Sep, 2008 1 commit
  24. 05 Sep, 2008 1 commit
    • erik.corry@gmail.com's avatar
      * Split up code_space into old_data_space and code_space. · 388c1094
      erik.corry@gmail.com authored
      * Make old_data_space non-executable on OSs and hardware that support it.
      * Rename old_space to old_pointer_space (can contain pointers, esp. to new space).
      * Ensure that individual pages allocated for old_space are only executable when
      they are for code objects.
      * Ensure Space::Setup can cope with non-aligned memory.
      * Make some methods on Spaces virtual.  Make a way to iterate over all spaces.
      * Replace executability flag with Executability enum in order to make intent at
      call site clearer.
      * Fix serialization/deserialization to allocate write barrier memory for large
      arrays.
      
      
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@165 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      388c1094
  25. 22 Aug, 2008 1 commit
    • christian.plesner.hansen's avatar
      Included mjsunit JavaScript test suite and C++ unit tests. · c42f5829
      christian.plesner.hansen authored
      In the shell sample don't print the result of executing a script, only
      evaluating expressions.
      
      Fixed issue when building samples on Windows using a shared V8
      library.  Added visibility option on Linux build which makes the
      generated library 18% smaller.
      
      Changed build system to accept multiple build modes in one build and
      generate seperate objects, libraries and executables for each mode.
      
      Removed deferred negation optimization (a * -b => -(a * b)) since this
      visibly changes operand conversion order.
      
      Improved parsing performance by introducing stack guard in preparsing.
      Without a stack guard preparsing always bails out with stack overflow.
      
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      c42f5829