1. 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
  2. 02 Dec, 2015 1 commit
  3. 04 Nov, 2015 1 commit
  4. 19 Oct, 2015 1 commit
  5. 30 Sep, 2015 2 commits
  6. 17 Sep, 2015 1 commit
  7. 07 Sep, 2015 1 commit
  8. 02 Sep, 2015 2 commits
  9. 01 Sep, 2015 1 commit
  10. 31 Aug, 2015 2 commits
  11. 27 Aug, 2015 1 commit
  12. 25 Aug, 2015 3 commits
  13. 24 Aug, 2015 1 commit
  14. 20 Aug, 2015 2 commits
  15. 31 Jul, 2015 1 commit
  16. 10 Jul, 2015 2 commits
  17. 07 Jul, 2015 1 commit
  18. 06 Jul, 2015 1 commit
  19. 03 Jul, 2015 1 commit
  20. 02 Jul, 2015 1 commit
  21. 25 Jun, 2015 2 commits
  22. 23 Jun, 2015 2 commits
  23. 22 Jun, 2015 2 commits
  24. 19 Jun, 2015 2 commits
  25. 18 Jun, 2015 2 commits
  26. 11 Jun, 2015 3 commits