Skip to content
  1. Sep 10, 2019
    • Djordje Todorovic's avatar
      Revert "[utils] Implement the llvm-locstats tool" · b21cc626
      Djordje Todorovic authored
      This reverts commit rL371520.
      
      llvm-svn: 371527
      b21cc626
    • Djordje Todorovic's avatar
      [utils] Implement the llvm-locstats tool · 54008972
      Djordje Todorovic authored
      The tool reports verbose output for the DWARF debug location coverage.
      The llvm-locstats for each variable or formal parameter DIE computes what
      percentage from the code section bytes, where it is in scope, it has
      location description. The line 0 shows the number (and the percentage) of
      DIEs with no location information, but the line 100 shows the number (and
      the percentage) of DIEs where there is location information in all code
      section bytes (where the variable or parameter is in the scope). The line
      50..59 shows the number (and the percentage) of DIEs where the location
      information is in between 50 and 59 percentage of its scope covered.
      
      The tool will be very useful for tracking improvements regarding the
      "debugging optimized code" support with LLVM ecosystem.
      
      Differential Revision: https://reviews.llvm.org/D66526
      
      llvm-svn: 371520
      54008972
  2. Sep 04, 2019
  3. Sep 02, 2019
    • Thomas Preud'homme's avatar
      [FileCheck] Forbid using var defined on same line · a291b950
      Thomas Preud'homme authored
      Summary:
      Commit r366897 introduced the possibility to set a variable from an
      expression, such as [[#VAR2:VAR1+3]]. While introducing this feature, it
      introduced extra logic to allow using such a variable on the same line
      later on. Unfortunately that extra logic is flawed as it relies on a
      mapping from variable to expression defining it when the mapping is from
      variable definition to expression. This flaw causes among other issues
      PR42896.
      
      This commit avoids the problem by forbidding all use of a variable
      defined on the same line, and removes the now useless logic. Redesign
      will be done in a later commit because it will require some amount of
      refactoring first for the solution to be clean. One example is the need
      for some sort of transaction mechanism to set a variable temporarily and
      from an expression and rollback if the CHECK pattern does not match so
      that diagnostics show the right variable values.
      
      Reviewers: jhenderson, chandlerc, jdenny, probinson, grimar, arichardson, rnk
      
      Subscribers: JonChesterfield, rogfer01, hfinkel, kristina, rnk, tra, arichardson, grimar, dblaikie, probinson, llvm-commits, hiraditya
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D66141
      
      llvm-svn: 370663
      a291b950
  4. Aug 30, 2019
  5. Aug 22, 2019
  6. Aug 21, 2019
  7. Aug 15, 2019
  8. Aug 09, 2019
    • Michael Pozulp's avatar
      [Docs][llvm-strip] Fix an indentation issue. · 3de98131
      Michael Pozulp authored
      llvm-svn: 368473
      3de98131
    • Michael Pozulp's avatar
      [Docs][llvm-strip] Add help text to llvm-strip rst doc · 4fe911d9
      Michael Pozulp authored
      Summary: Addresses https://bugs.llvm.org/show_bug.cgi?id=42383
      
      Reviewers: jhenderson, alexshap, rupprecht
      
      Reviewed By: jhenderson
      
      Subscribers: wolfgangp, jakehehrlich, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D65384
      
      llvm-svn: 368464
      4fe911d9
    • Andrea Di Biagio's avatar
      [MCA] Add flag -show-encoding to llvm-mca. · cbec9af6
      Andrea Di Biagio authored
      Flag -show-encoding enables the printing of instruction encodings as part of the
      the instruction info view.
      
      Example (with flags -mtriple=x86_64--  -mcpu=btver2):
      
      Instruction Info:
      [1]: #uOps
      [2]: Latency
      [3]: RThroughput
      [4]: MayLoad
      [5]: MayStore
      [6]: HasSideEffects (U)
      [7]: Encoding Size
      
      [1]    [2]    [3]    [4]    [5]    [6]    [7]    Encodings:     Instructions:
       1      2     1.00                         4     c5 f0 59 d0    vmulps   %xmm0, %xmm1, %xmm2
       1      4     1.00                         4     c5 eb 7c da    vhaddps  %xmm2, %xmm2, %xmm3
       1      4     1.00                         4     c5 e3 7c e3    vhaddps  %xmm3, %xmm3, %xmm4
      
      In this example, column Encoding Size is the size in bytes of the instruction
      encoding. Column Encodings reports the actual instruction encodings as byte
      sequences in hex (objdump style).
      
      The computation of encodings is done by a utility class named mca::CodeEmitter.
      
      In future, I plan to expose the CodeEmitter to the instruction builder, so that
      information about instruction encoding sizes can be used by the simulator. That
      would be a first step towards simulating the throughput from the decoders in the
      hardware frontend.
      
      Differential Revision: https://reviews.llvm.org/D65948
      
      llvm-svn: 368432
      cbec9af6
  9. Aug 08, 2019
  10. Aug 06, 2019
  11. Aug 05, 2019
  12. Aug 02, 2019
  13. Jul 26, 2019
  14. Jul 24, 2019
    • Thomas Preud'homme's avatar
      FileCheck [8/12]: Define numeric var from expr · 4cd9b853
      Thomas Preud'homme authored
      Summary:
      This patch is part of a patch series to add support for FileCheck
      numeric expressions. This specific patch lift the restriction for a
      numeric expression to either be a variable definition or a numeric
      expression to try to match.
      
      This commit allows a numeric variable to be set to the result of the
      evaluation of a numeric expression after it has been matched
      successfully. When it happens, the variable is allowed to be used on
      the same line since its value is known at match time.
      
      It also makes use of this possibility to reuse the parsing code to
      parse a command-line definition by crafting a mirror string of the
      -D option with the equal sign replaced by a colon sign, e.g. for option
      '-D#NUMVAL=10' it creates the string
      '-D#NUMVAL=10 (parsed as [[#NUMVAL:10]])' where the numeric expression
      is parsed to define NUMVAL. This result in a few tests needing updating
      for the location diagnostics on top of the tests for the new feature.
      
      It also enables empty numeric expression which match any number without
      defining a variable. This is done here rather than in commit #5 of the
      patch series because it requires to dissociate automatic regex insertion
      in RegExStr from variable definition which would make commit #5 even
      bigger than it already is.
      
      Copyright:
          - Linaro (changes up to diff 183612 of revision D55940)
          - GraphCore (changes in later versions of revision D55940 and
                       in new revision created off D55940)
      
      Reviewers: jhenderson, chandlerc, jdenny, probinson, grimar, arichardson, rnk
      
      Subscribers: hiraditya, llvm-commits, probinson, dblaikie, grimar, arichardson, tra, rnk, kristina, hfinkel, rogfer01, JonChesterfield
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D60388
      
      > llvm-svn: 366860
      
      llvm-svn: 366897
      4cd9b853
    • Thomas Preud'homme's avatar
      Revert "FileCheck [8/12]: Define numeric var from expr" · 5ecb8802
      Thomas Preud'homme authored
      This reverts commit 1b059775.
      
      llvm-svn: 366872
      5ecb8802
    • Thomas Preud'homme's avatar
      FileCheck [8/12]: Define numeric var from expr · 1b059775
      Thomas Preud'homme authored
      Summary:
      This patch is part of a patch series to add support for FileCheck
      numeric expressions. This specific patch lift the restriction for a
      numeric expression to either be a variable definition or a numeric
      expression to try to match.
      
      This commit allows a numeric variable to be set to the result of the
      evaluation of a numeric expression after it has been matched
      successfully. When it happens, the variable is allowed to be used on
      the same line since its value is known at match time.
      
      It also makes use of this possibility to reuse the parsing code to
      parse a command-line definition by crafting a mirror string of the
      -D option with the equal sign replaced by a colon sign, e.g. for option
      '-D#NUMVAL=10' it creates the string
      '-D#NUMVAL=10 (parsed as [[#NUMVAL:10]])' where the numeric expression
      is parsed to define NUMVAL. This result in a few tests needing updating
      for the location diagnostics on top of the tests for the new feature.
      
      It also enables empty numeric expression which match any number without
      defining a variable. This is done here rather than in commit #5 of the
      patch series because it requires to dissociate automatic regex insertion
      in RegExStr from variable definition which would make commit #5 even
      bigger than it already is.
      
      Copyright:
          - Linaro (changes up to diff 183612 of revision D55940)
          - GraphCore (changes in later versions of revision D55940 and
                       in new revision created off D55940)
      
      Reviewers: jhenderson, chandlerc, jdenny, probinson, grimar, arichardson, rnk
      
      Subscribers: hiraditya, llvm-commits, probinson, dblaikie, grimar, arichardson, tra, rnk, kristina, hfinkel, rogfer01, JonChesterfield
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D60388
      
      llvm-svn: 366860
      1b059775
  15. Jul 16, 2019
  16. Jul 15, 2019
  17. Jul 13, 2019
    • Thomas Preud'homme's avatar
      FileCheck [7/12]: Arbitrary long numeric expressions · 2a7f5204
      Thomas Preud'homme authored
      Summary:
      This patch is part of a patch series to add support for FileCheck
      numeric expressions. This specific patch extend numeric expression to
      support an arbitrary number of operands, either variable or literals.
      
      Copyright:
          - Linaro (changes up to diff 183612 of revision D55940)
          - GraphCore (changes in later versions of revision D55940 and
                       in new revision created off D55940)
      
      Reviewers: jhenderson, chandlerc, jdenny, probinson, grimar, arichardson, rnk
      
      Subscribers: hiraditya, llvm-commits, probinson, dblaikie, grimar, arichardson, tra, rnk, kristina, hfinkel, rogfer01, JonChesterfield
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D60387
      
      llvm-svn: 366001
      2a7f5204
  18. Jul 12, 2019
  19. Jul 10, 2019
  20. Jul 09, 2019
  21. Jul 08, 2019
  22. Jul 05, 2019
  23. Jul 04, 2019
    • Alex Brachet's avatar
      [docs] [tools] Fix see also links · 09a066b3
      Alex Brachet authored
      Summary: Changes "see also" links to use :manpage: instead of plain text or the form `name|name` which was being treated literally, not as a link.
      
      Reviewers: jhenderson, rupprecht
      
      Reviewed By: jhenderson
      
      Subscribers: llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D63970
      
      llvm-svn: 365159
      09a066b3
    • James Henderson's avatar
      [docs][llvm-dwarfdump] Remove unnecessary reference to --show-children · 38d99038
      James Henderson authored
      The --show-children option description describes what it does, and
      references the =<offset> parameter of section dump switches. I don't
      think it needs to be explained again in the documentation of the
      section dump switches too.
      
      Reviewed by: JDevlieghere
      
      Differential Revision: https://reviews.llvm.org/D64132
      
      llvm-svn: 365115
      38d99038
    • Alex Brachet's avatar
      [docs] [NFC] Removed excess spacing · fa9d232e
      Alex Brachet authored
      Summary: Removed excess new lines from documentations. As far as I can tell, it seems as though restructured text is agnostic to new lines, the use of new lines was inconsistent and had no effect on how the files were being displayed.
      
      Reviewers: jhenderson, rupprecht, JDevlieghere
      
      Reviewed By: jhenderson
      
      Subscribers: llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D63971
      
      llvm-svn: 365105
      fa9d232e
  24. Jul 03, 2019
  25. Jul 02, 2019
Loading