1. 12 Jan, 2019 3 commits
  2. 07 Jan, 2019 1 commit
  3. 04 Jan, 2019 2 commits
  4. 11 Oct, 2018 1 commit
  5. 11 Jul, 2018 1 commit
  6. 11 Jun, 2018 2 commits
  7. 08 Jun, 2018 1 commit
    • Sigurd Schneider's avatar
      [turbolizer] Migrate d3 from v3 to v5 · 8a7d8f81
      Sigurd Schneider authored
      This CL updates the d3.js library to version 5.4. The most notable
      change is that the library can now distinguish between click and drag
      events if an element supports both selection via click and displacement
      via drag.
      
      Curiously, npm created a 'package-lock.json', which is ~500 lines, and
      which is supposed to be checked into the repository according to documentation.
      
      Change-Id: Ifabd236296d951f390e0a1516d89e73138ce1713
      Reviewed-on: https://chromium-review.googlesource.com/1076234Reviewed-by: 's avatarTobias Tebbi <tebbi@chromium.org>
      Commit-Queue: Sigurd Schneider <sigurds@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#53604}
      8a7d8f81
  8. 29 May, 2018 1 commit
  9. 22 May, 2018 1 commit
  10. 18 May, 2018 1 commit
  11. 24 Nov, 2016 1 commit
  12. 11 Aug, 2016 1 commit
  13. 10 Aug, 2016 1 commit
  14. 09 Aug, 2016 2 commits
  15. 15 Jul, 2016 1 commit
    • bgeron's avatar
      [turbolizer] Show a label with a shorter parameter for some opcodes. · feb93dd6
      bgeron authored
      With this patch, every node in turbo-*.json has an opcode, a title, and
      a label. The label field is new; the opcode and title were already
      there. The title is for the mouseover text. The label is what will be
      displayed in the graph view, unless it's too long, in which case only
      the opcode will be displayed. (This is similar to the preexisting
      behaviour of putting titles in labels, except that the titles were
      rarely short enough to fit in a label.)
      
      With this patch, the labels generated are in practice the same as the
      titles we had before, except for LoadField and StoreField, which will be
      rendered as LoadField[[+432]] and StoreField[[+432]] (if 432 was the
      offset).
      
      This diff adds an overloadable method
      
          virtual void Operator1<T>::PrintParameter(ostream&, PrintVerbosity)
      
      for each type T to Operator1. Its default implementation just uses
      operator<<(ostream&, T const&) and adds square brackets around it, but
      it is overridden for FieldAccess to print "[+432]" in the example case.
      
      BUG=
      R=jarin,danno
      
      Review-Url: https://codereview.chromium.org/2093013002
      Cr-Commit-Position: refs/heads/master@{#37795}
      feb93dd6
  16. 19 May, 2016 1 commit