1. 01 Sep, 2011 1 commit
  2. 07 May, 2010 1 commit
  3. 25 Mar, 2010 1 commit
  4. 09 Mar, 2010 1 commit
    • kmillikin@chromium.org's avatar
      Small simplification of #include dependencies. · 3817a7ba
      kmillikin@chromium.org authored
      Remove messages.h from v8.h and include it explicitly in only the few places
      it is needed.  Many files relied on getting handles-inl.h implicitly from
      messages.h through v8.h, so include handles-inl.h explicitly in v8.h
      instead.
      
      Remove zone-inl.h from header files where it is not needed, can be replaced
      by a forward declaration, or can be replaced by zone.h (specifically,
      factory.h and heap.h).  Include zone.h or zone-inl.h in header files where
      it was implicitly included via heap.h or factory.h.  Prefer zone.h over
      zone-inl.h in header files where possible by including zone-inl.h in .cc
      files.
      
      Review URL: http://codereview.chromium.org/668248
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4058 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      3817a7ba
  5. 16 Feb, 2010 1 commit
  6. 15 Feb, 2010 1 commit
    • fschneider@chromium.org's avatar
      Introduce number type information in the virtual frame. · dbe99e40
      fschneider@chromium.org authored
      Each frame element gets a new attribute with number type information. A frame element can be: 
      
      - smi 
      - heap number 
      - number (i.e. either of the above) 
      - or something else. 
      
      The type information is propagated along with all virtual frame operations. 
      Results popped from the frame carry the number information with them.
      
      Two optimizations in the code generator make use of the new 
      information: 
      - GenericBinaryOpSyub omits map checks if input operands are numbers. 
      - Boolean conversion for numbers: Emit inline code for converting a number (smi or heap number) to boolean. Do not emit call to ToBoolean stub in this case.
      
      
      Review URL: http://codereview.chromium.org/545007
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3861 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      dbe99e40
  7. 17 Jul, 2009 1 commit
  8. 27 May, 2009 1 commit
  9. 31 Mar, 2009 3 commits
  10. 27 Mar, 2009 1 commit
  11. 16 Jan, 2009 1 commit
  12. 14 Jan, 2009 1 commit
  13. 26 Sep, 2008 1 commit
  14. 09 Sep, 2008 1 commit
  15. 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
  16. 03 Jul, 2008 1 commit