1. 31 Jul, 2020 3 commits
  2. 24 Jul, 2020 1 commit
  3. 20 Jan, 2020 1 commit
  4. 27 May, 2019 1 commit
    • Clemens Hammacher's avatar
      [cleanup] Replace simple typedefs by using · a335f2ae
      Clemens Hammacher authored
      This replaces all typedefs that define types and not functions by the
      equivalent "using" declaration.
      
      This was done mostly automatically using this command:
      ag -l '\btypedef\b' src test | xargs -L1 \
           perl -i -p0e 's/typedef ([^*;{}]+) (\w+);/using \2 = \1;/sg'
      
      Patchset 2 then adds some manual changes for typedefs for pointer types,
      where the regular expression did not match.
      
      R=mstarzinger@chromium.org
      TBR=yangguo@chromium.org, jarin@chromium.org
      
      Bug: v8:9183
      Change-Id: I6f6ee28d1793b7ac34a58f980b94babc21874b78
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1631409
      Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
      Reviewed-by: 's avatarMichael Starzinger <mstarzinger@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#61849}
      a335f2ae
  5. 13 Oct, 2017 1 commit
  6. 14 Aug, 2017 1 commit
  7. 17 Oct, 2016 1 commit
  8. 20 Sep, 2016 1 commit
  9. 26 Jul, 2016 1 commit
  10. 01 Apr, 2016 1 commit
  11. 09 Dec, 2015 1 commit
  12. 30 Oct, 2015 1 commit
    • mstarzinger's avatar
      Move compiler cctests into v8::internal::compiler namespace. · 16f13300
      mstarzinger authored
      This moves all cctest files for the compiler to live in the same
      namespace as the components they are testing. Hence we can avoid the
      forbidden using directives pulling in entire namespaces.
      
      From the Google C++ style guide: "You may not use a using-directive to
      make all names from a namespace available". This would be covered by
      presubmit linter checks if build/namespaces were not blacklisted.
      
      R=bmeurer@chromium.org
      
      Review URL: https://codereview.chromium.org/1424943004
      
      Cr-Commit-Position: refs/heads/master@{#31671}
      16f13300
  13. 28 Oct, 2015 2 commits
  14. 23 Sep, 2015 3 commits
  15. 29 Apr, 2015 1 commit
  16. 24 Mar, 2015 1 commit
  17. 19 Mar, 2015 1 commit
  18. 30 Jan, 2015 3 commits
  19. 16 Jan, 2015 1 commit
  20. 02 Dec, 2014 1 commit
    • danno's avatar
      Clean up node iteration · f6e5bc16
      danno authored
      - Create a first-class Edge type.
      - Separate node and edge iterators
      - Make iterators only responsible for iteration
      - Make it possible to modify the use edge iterator while iterating.
      - Add the ability to update inputs to Edges directly.
      
      Review URL: https://codereview.chromium.org/765983002
      
      Cr-Commit-Position: refs/heads/master@{#25616}
      f6e5bc16
  21. 28 Nov, 2014 1 commit
  22. 29 Oct, 2014 1 commit
  23. 27 Oct, 2014 2 commits
  24. 24 Sep, 2014 1 commit
  25. 29 Aug, 2014 1 commit
  26. 31 Jul, 2014 1 commit
  27. 30 Jul, 2014 1 commit