Skip to content
  1. Aug 08, 2018
  2. Aug 06, 2018
  3. Aug 03, 2018
  4. Jul 31, 2018
  5. Jul 23, 2018
  6. Jul 21, 2018
  7. Jul 20, 2018
  8. Jul 19, 2018
  9. Jul 17, 2018
  10. Jul 16, 2018
    • Matt Davis's avatar
      [llvm-mca][docs] Initial description of mca internals. NFC · ed78e85f
      Matt Davis authored
      This patch introduces a brief description of the components of MCA.  The main
      focus is on Views.   This is a work in progress, and more descriptions will be
      introduced later.  I want to flesh-out the Views section more and provide a
      detailed description of eventing in MCA.  Eventually a brief code example of a
      View should accompany the description.
      
      Also, we should consider moving the MCA internals guide elsewhere at some point.
      
      llvm-svn: 337219
      ed78e85f
  11. Jul 14, 2018
  12. Jul 13, 2018
    • Joel E. Denny's avatar
      [FileCheck] Implement -v and -vv for tracing matches · dc5ba317
      Joel E. Denny authored
      -v prints all directive pattern matches.
      
      -vv additionally prints info that might be noise to users but that can
      be helpful to FileCheck developers.
      
      To maximize code reuse and to make diagnostics more consistent, this
      patch also adjusts and extends some of the existing diagnostics.
      CHECK-NOT failures now report variables uses.  Many more diagnostics
      now report the check prefix and kind of directive.
      
      Reviewed By: probinson
      
      Differential Revision: https://reviews.llvm.org/D47114
      
      llvm-svn: 336967
      dc5ba317
  13. Jul 11, 2018
    • Joel E. Denny's avatar
      [FileCheck] Don't permit overlapping CHECK-DAG · bcf5b441
      Joel E. Denny authored
      That is, make CHECK-DAG skip matches that overlap the matches of any
      preceding consecutive CHECK-DAG directives.  This change makes
      CHECK-DAG more consistent with other directives, and there is evidence
      it makes CHECK-DAG more intuitive and less error-prone.  See the RFC
      discussion starting at:
      
        http://lists.llvm.org/pipermail/llvm-dev/2018-May/123010.html
      
      Moreover, this behavior enables CHECK-DAG groups for unordered,
      non-unique strings or patterns.  For example, it is useful for
      verifying output or logs from a parallel program, such as the OpenMP
      runtime.
      
      This patch also implements the command-line option
      -allow-deprecated-dag-overlap, which reverts CHECK-DAG to the old
      overlapping behavior.  This option should not be used in new tests.
      It is meant only for the existing tests that are broken by this change
      and that need time to update.
      
      See the following bugzilla issue for tracking of such tests:
      
        https://bugs.llvm.org/show_bug.cgi?id=37532
      
      Patches to add -allow-deprecated-dag-overlap to those tests will
      follow immediately.
      
      Reviewed By: probinson
      
      Differential Revision: https://reviews.llvm.org/D47106
      
      llvm-svn: 336847
      bcf5b441
    • Joel E. Denny's avatar
      Revert r336830: [FileCheck] Don't permit overlapping CHECK-DAG · 614c9861
      Joel E. Denny authored
      Companion patches are failing to commit, and this patch alone breaks
      many tests.
      
      llvm-svn: 336833
      614c9861
    • Joel E. Denny's avatar
      [FileCheck] Don't permit overlapping CHECK-DAG · edf33885
      Joel E. Denny authored
      That is, make CHECK-DAG skip matches that overlap the matches of any
      preceding consecutive CHECK-DAG directives.  This change makes
      CHECK-DAG more consistent with other directives, and there is evidence
      it makes CHECK-DAG more intuitive and less error-prone.  See the RFC
      discussion starting at:
      
        http://lists.llvm.org/pipermail/llvm-dev/2018-May/123010.html
      
      Moreover, this behavior enables CHECK-DAG groups for unordered,
      non-unique strings or patterns.  For example, it is useful for
      verifying output or logs from a parallel program, such as the OpenMP
      runtime.
      
      This patch also implements the command-line option
      -allow-deprecated-dag-overlap, which reverts CHECK-DAG to the old
      overlapping behavior.  This option should not be used in new tests.
      It is meant only for the existing tests that are broken by this change
      and that need time to update.
      
      See the following bugzilla issue for tracking of such tests:
      
        https://bugs.llvm.org/show_bug.cgi?id=37532
      
      Patches to add -allow-deprecated-dag-overlap to those tests will
      follow immediately.
      
      Reviewed By: probinson
      
      Differential Revision: https://reviews.llvm.org/D47106
      
      llvm-svn: 336830
      edf33885
    • Simon Tatham's avatar
      [TableGen] Add a general-purpose JSON backend. · 6a8c6cad
      Simon Tatham authored
      The aim of this backend is to output everything TableGen knows about
      the record set, similarly to the default -print-records backend. But
      where -print-records produces output in TableGen's input syntax
      (convenient for humans to read), this backend produces it as
      structured JSON data, which is convenient for loading into standard
      scripting languages such as Python, in order to extract information
      from the data set in an automated way.
      
      The output data contains a JSON representation of the variable
      definitions in output 'def' records, and a few pieces of metadata such
      as which of those definitions are tagged with the 'field' prefix and
      which defs are derived from which classes. It doesn't dump out
      absolutely every piece of knowledge it _could_ produce, such as type
      information and complicated arithmetic operator nodes in abstract
      superclasses; the main aim is to allow consumers of this JSON dump to
      essentially act as new backends, and backends don't generally need to
      depend on that kind of data.
      
      The new backend is implemented as an EmitJSON() function similar to
      all of llvm-tblgen's other EmitFoo functions, except that it lives in
      lib/TableGen instead of utils/TableGen on the basis that I'm expecting
      to add it to clang-tblgen too in a future patch.
      
      To test it, I've written a Python script that loads the JSON output
      and tests properties of it based on comments in the .td source - more
      or less like FileCheck, except that the CHECK: lines have Python
      expressions after them instead of textual pattern matches.
      
      Reviewers: nhaehnle
      
      Reviewed By: nhaehnle
      
      Subscribers: arichardson, labath, mgorny, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D46054
      
      llvm-svn: 336771
      6a8c6cad
  14. Jul 02, 2018
    • Dave Lee's avatar
      nm: Add -no-weak flag for hiding weak symbols · d4f77a52
      Dave Lee authored
      Summary:
      This adds a new -no-weak flag to nm to hide weak symbols in its output.
      This also adds a -W alias for this which is analogous to -U.
      
      Patch by Keith Smiley
      
      Reviewers: kastiglione, enderby, compnerd
      
      Reviewed By: kastiglione
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D48751
      
      llvm-svn: 336126
      d4f77a52
  15. Jun 26, 2018
    • James Henderson's avatar
      Fix doc title underlining. · c307b003
      James Henderson authored
      llvm-svn: 335615
      c307b003
    • James Henderson's avatar
      [FileCheck] Add CHECK-EMPTY directive for checking for blank lines · 5507f668
      James Henderson authored
      Prior to this change, there was no clean way of getting FileCheck to
      check that a line is completely empty. The expected way of using
      "CHECK: {{^$}}" does not work because the '^' matches the end of the
      previous match (this behaviour may be desirable in certain instances).
      For the same reason, "CHECK-NEXT: {{^$}}" will fail when the previous
      match was at the end of the line, as the pattern will match there.
      Using the recommended [[:space:]] to match an explicit new line could
      also match a space, and thus is not always desired. Literal '\n'
      matches also do not work. A workaround was suggested in the review, but
      it is a little clunky.
      
      This change adds a new directive that behaves the same as CHECK-NEXT,
      except that it only matches against empty lines (nothing, not even
      whitespace, is allowed). As with CHECK-NEXT, it will fail if more than
      one newline occurs before the next blank line. Example usage:
      ; test.txt
      foo
      
      bar
      ; CHECK: foo
      ; CHECK-EMPTY:
      ; CHECK-NEXT: bar
      
      Differential Revision: https://reviews.llvm.org/D28896
      
      Reviewed by: probinson
      
      llvm-svn: 335613
      5507f668
  16. Jun 25, 2018
  17. Jun 18, 2018
  18. Jun 01, 2018
  19. May 31, 2018
    • Joel E. Denny's avatar
      [lit] Report line number for failed RUN command · 31b37396
      Joel E. Denny authored
      (Relands r333584, reverted in 333592.)
      
      When debugging test failures with -vv (or -v in the case of the
      internal shell), this makes it easier to locate the RUN line that
      failed.  For example, clang's test/Driver/linux-ld.c has 892 total RUN
      lines, and clang's test/Driver/arm-cortex-cpus.c has 424 RUN lines
      after concatenation for line continuations.
      
      When reading the generated shell script, this also makes it easier to
      locate the RUN line that produced each command.
      
      To support reporting RUN line numbers in the case of the internal
      shell, this patch extends the internal shell to support the null
      command, ":", except pipelines are not supported.
      
      To support reporting RUN line numbers in the case of windows cmd.exe
      as the external shell, this patch extends -vv to set "echo on" instead
      of "echo off" in bat files.  (Support for windows cmd.exe as a lit
      external shell will likely be dropped later, but I found out too
      late.)
      
      Reviewed By: delcypher,	asmith, stella.stamenova, jmorse, lebedev.ri, rnk
      
      Differential Revision: https://reviews.llvm.org/D44598
      
      llvm-svn: 333614
      31b37396
  20. May 30, 2018
    • Joel E. Denny's avatar
      Revert r333584: [lit] Report line number for failed RUN command · 71792c74
      Joel E. Denny authored
      It breaks test-suite.
      
      llvm-svn: 333592
      71792c74
    • Joel E. Denny's avatar
      [lit] Report line number for failed RUN command · b6423479
      Joel E. Denny authored
      (Relands r330755 (reverted in r330848) with fix for PR37239.)
      
      When debugging test failures with -vv (or -v in the case of the
      internal shell), this makes it easier to locate the RUN line that
      failed.  For example, clang's test/Driver/linux-ld.c has 892 total RUN
      lines, and clang's test/Driver/arm-cortex-cpus.c has 424 RUN lines
      after concatenation for line continuations.
      
      When reading the generated shell script, this also makes it easier to
      locate the RUN line that produced each command.
      
      To support reporting RUN line numbers in the case of the internal
      shell, this patch extends the internal shell to support the null
      command, ":", except pipelines are not supported.
      
      To support reporting RUN line numbers in the case of windows cmd.exe
      as the external shell, this patch extends -vv to set "echo on" instead
      of "echo off" in bat files.  (Support for windows cmd.exe as a lit
      external shell will likely be dropped later, but I found out too
      late.)
      
      Reviewed By: delcypher,	asmith, stella.stamenova, jmorse, lebedev.ri, rnk
      
      Differential Revision: https://reviews.llvm.org/D44598
      
      llvm-svn: 333584
      b6423479
  21. May 24, 2018
  22. May 22, 2018
  23. May 18, 2018
  24. May 17, 2018
  25. May 14, 2018
    • Nicola Zaghen's avatar
      Rename DEBUG macro to LLVM_DEBUG. · d34e60ca
      Nicola Zaghen authored
          
      The DEBUG() macro is very generic so it might clash with other projects.
      The renaming was done as follows:
      - git grep -l 'DEBUG' | xargs sed -i 's/\bDEBUG\s\?(/LLVM_DEBUG(/g'
      - git diff -U0 master | ../clang/tools/clang-format/clang-format-diff.py -i -p1 -style LLVM
      - Manual change to APInt
      - Manually chage DOCS as regex doesn't match it.
      
      In the transition period the DEBUG() macro is still present and aliased
      to the LLVM_DEBUG() one.
      
      Differential Revision: https://reviews.llvm.org/D43624
      
      llvm-svn: 332240
      d34e60ca
  26. Apr 25, 2018
Loading