1. 06 Apr, 2011 1 commit
  2. 18 Mar, 2011 3 commits
  3. 16 Mar, 2011 1 commit
  4. 10 Mar, 2011 1 commit
  5. 02 Mar, 2011 1 commit
  6. 01 Mar, 2011 2 commits
  7. 07 Dec, 2010 3 commits
  8. 10 Nov, 2010 2 commits
  9. 25 Oct, 2010 1 commit
  10. 18 Oct, 2010 1 commit
  11. 19 Jul, 2010 1 commit
  12. 19 Jan, 2010 1 commit
  13. 21 Oct, 2009 1 commit
  14. 17 Jul, 2009 1 commit
  15. 18 Jun, 2009 1 commit
  16. 11 Dec, 2008 1 commit
    • deanm@chromium.org's avatar
      Improve mark-compact object grouping interface. · 6297a191
      deanm@chromium.org authored
      The main goal was to improve O(n^2) behavior when there are many object groups.  The old API required the grouping to be done on the v8 side, along with a linear search.  The new interface requires the caller to do the grouping, passing V8 entire groups at a time.  This removes the group id concept on the v8 side.
      
        - Changed AddObjectToGroup to AddObjectGroup.
        - Removed the group id concept from the V8 side.
        - Remove a static constructor while I'm here, lazily initialize
          the object groups list.
        - Cleaned up return by non-const references to return pointers.
      
      Review URL: http://codereview.chromium.org/13341
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@965 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      6297a191
  17. 23 Oct, 2008 1 commit
  18. 12 Sep, 2008 1 commit
  19. 09 Sep, 2008 1 commit
  20. 08 Sep, 2008 1 commit
  21. 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
  22. 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