1. 06 Jun, 2016 1 commit
  2. 24 May, 2016 1 commit
  3. 29 Jan, 2016 1 commit
    • jkummerow's avatar
      Introduce {FAST,SLOW}_STRING_WRAPPER_ELEMENTS · f4872f74
      jkummerow authored
      String wrappers (new String("foo")) are special objects: their string
      characters are accessed like elements, and they also have an elements
      backing store. This used to require a bunch of explicit checks like:
      
      if (obj->IsJSValue() && JSValue::cast(obj)->value()->IsString()) {
        /* Handle string characters */
      }
      // Handle regular elements (for string wrappers and other objects)
      obj->GetElementsAccessor()->Whatever(...);
      
      This CL introduces new ElementsKinds for string wrapper objects (one for
      fast elements, one for dictionary elements), which allow folding the
      special-casing into new StringWrapperElementsAccessors.
      
      No observable change in behavior is intended.
      
      Review URL: https://codereview.chromium.org/1612323003
      
      Cr-Commit-Position: refs/heads/master@{#33616}
      f4872f74
  4. 22 Dec, 2015 2 commits
  5. 21 Dec, 2015 1 commit
    • cbruni's avatar
      [proxies] Better print for proxies in d8 · 8bfb7189
      cbruni authored
      Function proxies would not be printed so far since they ended up in Function.prototype.toString which only works with Function as a receiver but no Proxy. Additionally added support for more gracefully dealing with recursive __proto__ structures introduced by proxies.
      
      BUG=v8:1543
      LOG=n
      
      Review URL: https://codereview.chromium.org/1530293004
      
      Cr-Commit-Position: refs/heads/master@{#32985}
      8bfb7189
  6. 14 Dec, 2015 1 commit
    • neis's avatar
      [proxies] Improve error messages. · e9606365
      neis authored
      This CL makes proxy-related error messages more accurate and verbose.
      (Exception: those used in deprecated functions in v8natives.js.)  Some of
      the old error messages were simply wrong.
      
      On the side, fix ShouldThrow semantics of JSProxy::SetPrototype and
      JSProxy::DefineOwnProperty.
      
      R=cbruni@chromium.org, jkummerow@chromium.org
      BUG=v8:1543
      LOG=n
      
      Review URL: https://codereview.chromium.org/1527583002
      
      Cr-Commit-Position: refs/heads/master@{#32836}
      e9606365
  7. 09 Dec, 2015 1 commit
  8. 08 Dec, 2015 1 commit
  9. 04 Dec, 2015 2 commits
  10. 02 Dec, 2015 1 commit
  11. 30 Nov, 2015 2 commits
  12. 19 Nov, 2015 1 commit
  13. 13 Nov, 2015 1 commit
  14. 12 Nov, 2015 1 commit
  15. 03 Sep, 2015 1 commit
    • bmeurer's avatar
      [es6] Initial steps towards a correct implementation of IsCallable. · 8a378f46
      bmeurer authored
      This turns the has_instance_call_handler bit on Map into an is_callable
      bit, that matches the spec definition of IsCallable (i.e. instances have
      [[Call]] internal methods).
      
      Also fix the typeof operator to properly say "function" for everything
      that is callable.
      
      Also remove the (unused) premature %_GetPrototype optimization from
      Crankshaft, which just complicated the Map bit swap.
      
      R=mstarzinger@chromium.org, rossberg@chromium.org, yangguo@chromium.org
      CQ_INCLUDE_TRYBOTS=tryserver.v8:v8_linux_layout_dbg
      
      Review URL: https://codereview.chromium.org/1316933002
      
      Cr-Commit-Position: refs/heads/master@{#30552}
      8a378f46
  16. 18 Aug, 2015 1 commit
  17. 20 May, 2015 1 commit
  18. 05 Mar, 2015 1 commit
  19. 20 Oct, 2014 1 commit
  20. 15 Oct, 2014 1 commit
  21. 30 Sep, 2014 1 commit