1. 19 Jan, 2011 1 commit
  2. 18 Jan, 2011 2 commits
  3. 15 Dec, 2010 1 commit
  4. 13 Dec, 2010 2 commits
  5. 10 Dec, 2010 1 commit
  6. 07 Dec, 2010 3 commits
  7. 25 Oct, 2010 1 commit
  8. 30 Sep, 2010 1 commit
  9. 20 Sep, 2010 1 commit
  10. 25 Aug, 2010 1 commit
  11. 21 Jul, 2010 1 commit
  12. 02 Jul, 2010 1 commit
  13. 30 Jun, 2010 1 commit
  14. 23 Jun, 2010 1 commit
  15. 10 Jun, 2010 1 commit
  16. 07 Jun, 2010 1 commit
  17. 06 May, 2010 1 commit
  18. 29 Apr, 2010 1 commit
  19. 09 Mar, 2010 1 commit
  20. 01 Mar, 2010 1 commit
  21. 18 Feb, 2010 1 commit
  22. 12 Feb, 2010 1 commit
  23. 09 Feb, 2010 1 commit
  24. 08 Feb, 2010 1 commit
  25. 01 Feb, 2010 1 commit
  26. 22 Jan, 2010 1 commit
  27. 18 Jan, 2010 1 commit
  28. 15 Jan, 2010 1 commit
    • sgjesse@chromium.org's avatar
      Ensure correct boxing of values when calling functions on them · 562f90d3
      sgjesse@chromium.org authored
      When a function is called with a value type as the receiver this is now boxed as an object.
      
      This is a low-impact solution where the receiver is only boxed when required. For IC calls to the V8 builtins values are not boxed and as most of the functions on String.prototype, Number.prototype and Boolean.prototype are sitting there most IC calls on values will not need any boxing of the receiver.
      
      For calls which are not IC calls but calls through the CallFunctionStub a flag is used to determine whether the receiver might be a value and only when that is the case will the receiver be boxed.
      
      No changtes to Function.call and Function.apply - they already boxed values. According to the ES5 spec the receiver should not be boxed for these functions, but current browsers have not adopted that change yet.
      
      BUG=223
      TEST=test/mjsunit/value-wrapper.js
      TEST=test/mjsunit/regress/regress-crbug-3184.js
      Review URL: http://codereview.chromium.org/542087
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3617 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      562f90d3
  29. 07 Jan, 2010 1 commit
  30. 17 Dec, 2009 1 commit
  31. 14 Dec, 2009 1 commit
  32. 10 Dec, 2009 3 commits
  33. 20 Oct, 2009 1 commit
    • kbr@chromium.org's avatar
      Added infrastructure for optimizing new CanvasArray types in WebGL · 46e6297e
      kbr@chromium.org authored
      specification under development. The optimizations are patterned after
      those previously done for CanvasPixelArray. This CL adds all of the
      necessary framework but continues to use the generic KeyedLoadIC and
      KeyedStoreIC code, to create a baseline for benchmarking purposes. The
      next CL will add the optimized ICs to ic-ia32.cc and ic-x64.cc.
      
      These new CanvasArray types have different semantics than
      CanvasPixelArray; out-of-range values are clamped via C cast
      semantics, which is cheaper than the clamping behavior specified by
      CanvasPixelArray. Out-of-range indices raise exceptions instead of
      being silently ignored.
      
      As part of this work, pulled FloatingPointHelper::AllocateHeapNumber
      up to MacroAssembler on ia32 and x64 platforms. Slightly refactored
      KeyedLoadIC and KeyedStoreIC. Fixed encoding for fistp_d on x64 and
      added a few more instructions that are needed for the new ICs. The
      test cases in test-api.cc have been verified by hand to exercise all
      of the generated code paths in the forthcoming specialized ICs.
      
      Review URL: http://codereview.chromium.org/293023
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3096 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      46e6297e
  34. 11 Sep, 2009 1 commit