1. 24 Jun, 2011 1 commit
  2. 20 Jun, 2011 1 commit
  3. 17 Jun, 2011 1 commit
  4. 16 Jun, 2011 1 commit
  5. 15 Jun, 2011 2 commits
  6. 14 Jun, 2011 1 commit
  7. 09 Jun, 2011 2 commits
  8. 08 Jun, 2011 1 commit
  9. 01 Jun, 2011 1 commit
  10. 26 May, 2011 1 commit
  11. 24 May, 2011 1 commit
    • ager@chromium.org's avatar
      Fix calls of strict mode function with an implicit receiver. · 6f775f2f
      ager@chromium.org authored
      Only IA32 version for now. I'll start porting.
      
      Strict mode functions are to get 'undefined' as the receiver when
      called with an implicit receiver. Modes are bad! It forces us to have
      checks on all function calls.
      
      This change attempts to limit the cost by passing information about
      whether or not a call is with an implicit or explicit receiver in ecx
      as part of the calling convention. The cost is setting ecx on all
      calls and checking ecx on entry to strict mode functions.
      
      Implicit/explicit receiver state has to be maintained by ICs. Various
      stubs have to not clobber ecx or save and restore it.
      
      CallFunction stub needs to check if the receiver is implicit when it
      doesn't know from the context.
      
      Review URL: http://codereview.chromium.org/7039036
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@8040 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      6f775f2f
  12. 29 Apr, 2011 1 commit
  13. 27 Apr, 2011 1 commit
  14. 20 Apr, 2011 1 commit
  15. 13 Apr, 2011 1 commit
  16. 12 Apr, 2011 2 commits
  17. 07 Apr, 2011 2 commits
  18. 01 Apr, 2011 1 commit
  19. 23 Mar, 2011 1 commit
  20. 21 Mar, 2011 1 commit
  21. 18 Mar, 2011 3 commits
  22. 17 Mar, 2011 2 commits
  23. 14 Mar, 2011 1 commit
  24. 09 Mar, 2011 2 commits
  25. 10 Feb, 2011 1 commit
  26. 02 Feb, 2011 1 commit
  27. 27 Jan, 2011 1 commit
  28. 25 Jan, 2011 3 commits
  29. 19 Jan, 2011 1 commit
    • vitalyr@chromium.org's avatar
      Support StringCharCodeAt in hydrogen/lithium. · b4ff318e
      vitalyr@chromium.org authored
      This patch adds H- and L-variants of StringCharCodeAt and StringLength.
      
      StringCharCodeAt is used to inline a constant function call of
      String.prototype.charCodeAt and to implement the corresponding inline
      runtime function. It does not yet use the recently introduced extra IC
      state. (We can specialize on string encoding and avoid deopts because
      of out of bounds accesses.)
      
      StringLength needs more work because the stub version of it also
      supports strings wrappers and it matters in some cases. (We have to
      separate the string only case.)
      
      Review URL: http://codereview.chromium.org/6243008
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6408 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      b4ff318e
  30. 17 Jan, 2011 1 commit