1. 22 Jan, 2021 1 commit
  2. 17 Dec, 2020 1 commit
  3. 18 Nov, 2020 1 commit
  4. 17 Nov, 2020 1 commit
  5. 24 Aug, 2020 1 commit
  6. 09 Jun, 2020 1 commit
  7. 20 Apr, 2020 1 commit
  8. 01 Apr, 2020 1 commit
  9. 21 Feb, 2020 1 commit
  10. 01 Oct, 2019 1 commit
  11. 30 Sep, 2019 1 commit
  12. 31 Jan, 2018 1 commit
  13. 02 Dec, 2017 1 commit
    • Mathias Bynens's avatar
      Normalize casing of hexadecimal digits · 822be9b2
      Mathias Bynens authored
      This patch normalizes the casing of hexadecimal digits in escape
      sequences of the form `\xNN` and integer literals of the form
      `0xNNNN`.
      
      Previously, the V8 code base used an inconsistent mixture of uppercase
      and lowercase.
      
      Google’s C++ style guide uses uppercase in its examples:
      https://google.github.io/styleguide/cppguide.html#Non-ASCII_Characters
      
      Moreover, uppercase letters more clearly stand out from the lowercase
      `x` (or `u`) characters at the start, as well as lowercase letters
      elsewhere in strings.
      
      BUG=v8:7109
      TBR=marja@chromium.org,titzer@chromium.org,mtrofin@chromium.org,mstarzinger@chromium.org,rossberg@chromium.org,yangguo@chromium.org,mlippautz@chromium.org
      NOPRESUBMIT=true
      
      Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_chromium_rel_ng
      Change-Id: I790e21c25d96ad5d95c8229724eb45d2aa9e22d6
      Reviewed-on: https://chromium-review.googlesource.com/804294
      Commit-Queue: Mathias Bynens <mathias@chromium.org>
      Reviewed-by: 's avatarJakob Kummerow <jkummerow@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#49810}
      822be9b2
  14. 18 Oct, 2017 1 commit
  15. 13 Oct, 2017 1 commit
  16. 11 Oct, 2017 1 commit
  17. 02 Aug, 2017 1 commit
  18. 27 Mar, 2017 1 commit
  19. 18 Jan, 2017 1 commit
  20. 13 Jan, 2017 1 commit
  21. 11 Nov, 2016 1 commit
  22. 10 Nov, 2016 1 commit
  23. 27 Jul, 2016 1 commit
  24. 01 Jun, 2016 1 commit
  25. 29 Mar, 2016 1 commit
  26. 16 Mar, 2016 2 commits
  27. 15 Mar, 2016 1 commit
  28. 11 Mar, 2016 1 commit
  29. 01 Feb, 2016 1 commit
    • mbrandy's avatar
      Detect cache line size on Linux for PPC hosts. · c3ff68b6
      mbrandy authored
      In the interest of generalization, this change:
      - Consolidates cache line size detection for all interested
        architectures under base::CPU (currently leveraged by only
        PPC and ARM64).
      - Differentiates between instruction vs data cache line sizes.
      
      R=rmcilroy@chromium.org, jochen@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
      BUG=
      
      Review URL: https://codereview.chromium.org/1643363002
      
      Cr-Commit-Position: refs/heads/master@{#33642}
      c3ff68b6
  30. 30 Sep, 2015 1 commit
  31. 20 Apr, 2015 1 commit
  32. 08 Apr, 2015 1 commit
  33. 19 Mar, 2015 1 commit
  34. 30 Jan, 2015 1 commit
  35. 27 Jan, 2015 1 commit
  36. 23 Jan, 2015 1 commit
  37. 20 Jan, 2015 1 commit
  38. 16 Jan, 2015 1 commit
  39. 19 Dec, 2014 1 commit
    • arajp's avatar
      Make FlushICache NOP for Nvidia Denver CPU's. · f4fb7025
      arajp authored
      Denver supports a coherent cache mechanism. There is no need to clean
      the D cache and invalidate I cache. MTS has to check the translation
      anytime there is an I cache invalidate and this time can be saved by
      making FlushICache a NOP.
      
      The patch improves Octane by roughly 3-4% on Denver.
      
      Review URL: https://codereview.chromium.org/797233002
      
      Cr-Commit-Position: refs/heads/master@{#25898}
      f4fb7025