Skip to content
  1. Apr 12, 2021
  2. Apr 08, 2021
  3. Apr 06, 2021
  4. Apr 05, 2021
  5. Apr 03, 2021
  6. Apr 02, 2021
  7. Apr 01, 2021
  8. Mar 31, 2021
  9. Mar 30, 2021
  10. Mar 29, 2021
  11. Mar 28, 2021
  12. Mar 27, 2021
    • Nico Weber's avatar
      [gn build] rewrap a comment to 80 cols · ab158d35
      Nico Weber authored
      ab158d35
    • Joel E. Denny's avatar
      [FileCheck] Try to fix buildbot failures caused by c7c542e8 · 43279d1d
      Joel E. Denny authored
      For example,
      
      <https://lab.llvm.org/buildbot/#/builders/132/builds/3929>
      
      has this diagnostic:
      
      ```
      /opt/gcc/9.3.0/snos/include/g++/bits/stl_tree.h:780:8: error: static assertion failed: comparison object must be invocable as const
        780 |        is_invocable_v<const _Compare&, const _Key&, const _Key&>,
            |        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      ```
      43279d1d
    • Joel E. Denny's avatar
      [FileCheck] Fix -dump-input per-pattern diagnostic indexing · c7c542e8
      Joel E. Denny authored
      In input dump annotations, `check:2'1` indicates diagnostic 1 for the
      `CHECK` directive on check file line 2.  Without this patch,
      `-dump-input` computes the diagnostic index with the assumption that
      FileCheck *consecutively* produces all diagnostics for the same
      pattern.  Already, that can be a false assumption, as in the examples
      below.  Moreover, it seems like a brittle assumption as FileCheck
      evolves.  Finally, it actually complicates the implementation even if
      it makes it slightly more efficient.
      
      This patch avoids that assumption.  Examples below show results after
      applying this patch.  Before applying this patch, `'N` is omitted
      throughout these examples because the implementation doesn't notice
      there's more than one diagnostic per pattern.
      
      First, `CHECK-LABEL` violates the assumption because `CHECK-LABEL`
      tries to match twice, and other directives can match in between:
      
      ```
      $ cat check
      CHECK: foobar
      CHECK-LABEL: foobar
      
      $ FileCheck -vv check < input |& tail -8
      <<<<<<
                 1: text
                 2: foobar
      label:2'0     ^~~~~~
      check:1       ^~~~~~
      label:2'1           X error: no match found
                 3: text
      >>>>>>
      ```
      
      Second, `--implicit-check-not` is obviously processed many times among
      other directives:
      
      ```
      $ cat check
      CHECK: foo
      CHECK: foo
      
      $ FileCheck -vv -dump-input=always -implicit-check-not=foo \
                  check < input |& tail -16
      <<<<<<
                  1: text
      not:imp1'0     X~~~~
                  2: foo
      check:1        ^~~
      not:imp1'1        X
                  3: text
      not:imp1'1     ~~~~~
                  4: foo
      check:2        ^~~
      not:imp1'2        X
                  5: text
      not:imp1'2     ~~~~~
                  6:
      eof:2          ^
      >>>>>>
      ```
      
      Reviewed By: thopre, jhenderson
      
      Differential Revision: https://reviews.llvm.org/D97813
      c7c542e8
  13. Mar 26, 2021
    • Giorgis Georgakoudis's avatar
      [Utils] Add prefix parameter in update test checks to avoid FileCheck conflicts · 8bc2c662
      Giorgis Georgakoudis authored
      IR values convert to check prefix FileCheck variables for IR checks. For example, nameless values, e.g., %0, convert to check prefix TMP FileCheck variables, e.g., [[TMP0:%.*]]. This check prefix may clash with named values that have the same name and that causes auto-generated tests to fail. Currently a warning is emitted to change the names of the IR values but this is not always possible, if for example they are generated by clang. Manual intervention to fix the FileCheck variable names is too tedious. This patch add a parameter to prefix conflicting FileCheck variable names with a user-provided string to automate the process.
      
      Reviewed By: jdoerfert
      
      Differential Revision: https://reviews.llvm.org/D99415
      8bc2c662
  14. Mar 25, 2021
    • Abhina Sreeskantharajan's avatar
      [NFC] Reordering parameters in getFile and getFileOrSTDIN · c83cd8fe
      Abhina Sreeskantharajan authored
      In future patches I will be setting the IsText parameter frequently so I will refactor the args to be in the following order. I have removed the FileSize parameter because it is never used.
      
      ```
        static ErrorOr<std::unique_ptr<MemoryBuffer>>
        getFile(const Twine &Filename, bool IsText = false,
                bool RequiresNullTerminator = true, bool IsVolatile = false);
      
        static ErrorOr<std::unique_ptr<MemoryBuffer>>
        getFileOrSTDIN(const Twine &Filename, bool IsText = false,
                       bool RequiresNullTerminator = true);
      
       static ErrorOr<std::unique_ptr<MB>>
       getFileAux(const Twine &Filename, uint64_t MapSize, uint64_t Offset,
                  bool IsText, bool RequiresNullTerminator, bool IsVolatile);
      
        static ErrorOr<std::unique_ptr<WritableMemoryBuffer>>
        getFile(const Twine &Filename, bool IsVolatile = false);
      ```
      
      Reviewed By: jhenderson
      
      Differential Revision: https://reviews.llvm.org/D99182
      c83cd8fe
    • Giorgis Georgakoudis's avatar
  15. Mar 24, 2021
Loading