1. 23 Jan, 2009 1 commit
  2. 20 Jan, 2009 1 commit
  3. 19 Jan, 2009 1 commit
  4. 15 Jan, 2009 3 commits
  5. 14 Jan, 2009 1 commit
  6. 08 Jan, 2009 1 commit
  7. 22 Dec, 2008 1 commit
  8. 19 Dec, 2008 1 commit
  9. 18 Dec, 2008 1 commit
  10. 17 Dec, 2008 2 commits
  11. 12 Dec, 2008 1 commit
  12. 11 Dec, 2008 1 commit
  13. 08 Dec, 2008 2 commits
    • lrn@chromium.org's avatar
      Irregexp is specialized on subject character type. · 5178af89
      lrn@chromium.org authored
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@937 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      5178af89
    • erik.corry@gmail.com's avatar
      Irregexp: · ba09ec5e
      erik.corry@gmail.com authored
      * Facility for generating a node several ways.  This allows
        code to be generated for a node knowing where it is trying
        to match relative to the 'current position' and it allows
        code to be generated that knows where to backtrack to.  Both
        allow dramatic reductions in the amount of popping and pushing
        on the stack and the number of indirect jumps.
      * Generate special backtracking for greedy quantifiers on
        constant-length atoms.  This allows .* to run in constant
        space relative to input string size.
      * When we are checking a long sequence of characters or character
        classes in the input then we do them right to left and only the
        first (rightmost) needs to check for end-of-string.
      * Record the pattern in the profile instead of just <CompiledRegExp>
      * Nodes no longer contain an on_failure_ node.  This was only used
        for lookaheads and they are now handled with a choice node instead.
      Review URL: http://codereview.chromium.org/12900
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@930 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      ba09ec5e
  14. 02 Dec, 2008 1 commit
  15. 01 Dec, 2008 1 commit
  16. 28 Nov, 2008 1 commit
  17. 27 Nov, 2008 3 commits
  18. 26 Nov, 2008 2 commits
  19. 25 Nov, 2008 1 commit
  20. 24 Oct, 2008 1 commit
  21. 09 Oct, 2008 2 commits
  22. 02 Oct, 2008 1 commit
  23. 23 Sep, 2008 1 commit
  24. 09 Sep, 2008 1 commit
  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
  26. 03 Jul, 2008 1 commit