Skip to content
  1. Oct 31, 2019
    • Amy Huang's avatar
      [CodeView] Add option to disable inline line tables. · 6d038903
      Amy Huang authored
      Summary:
      This adds a clang option to disable inline line tables. When it is used,
      the inliner uses the call site as the location of the inlined function instead of
      marking it as an inline location with the function location.
      
      See https://bugs.llvm.org/show_bug.cgi?id=42344
      
      Reviewers: rnk
      
      Subscribers: hiraditya, cfe-commits, llvm-commits
      
      Tags: #clang, #llvm
      
      Differential Revision: https://reviews.llvm.org/D67723
      6d038903
    • Reid Kleckner's avatar
      [lit] Add missing import · 3dec3085
      Reid Kleckner authored
      Apparently llvm-lit.py does not execute this path
      3dec3085
    • Dan Liew's avatar
      Revert "[Builtins] Downgrade duplicate source file warning from a fatal error to a warning." · 23a33d45
      Dan Liew authored
      This reverts commit dc748816.
      
      Now that 8ea148dc has landed it should
      be safe to turning the warning back into a fatal error.
      23a33d45
    • Dan Liew's avatar
      [Builtins] Fix bug where powerpc builtins specializations didn't remove generic implementations. · 8ea148dc
      Dan Liew authored
      Summary:
      Previously the CMake code looked for filepaths of the form
      `<arch>/<filename>` as an indication that `<arch>/<filename>` provided a
      specialization of a top-level file `<filename>`. For powerpc there was a
      bug because the powerpc specialized implementations lived in `ppc/` but
      the architectures were `powerpc64` and `powerpc64le` which meant that
      CMake was looking for files at `powerpc64/<filename>` and
      `powerpc64le/<filename>`.
      
      The result of this is that for powerpc the builtins library contained a
      duplicate symbol for `divtc3` because it had the generic implementation
      and the specialized version in the built static library.
      
      Although we could just add similar code to what there is for arm (i.e.
      compute `${_arch}`) to fix this, this is extremely error prone (until
      r375150 no error was raised). Instead this patch takes a different
      approach that removes looking for the architecture name entirely.
      Instead this patch uses the convention that a source file in a
      sub-directory might be a specialization of a generic implementation and
      if a source file of the same name (ignoring extension) exists at the
      top-level then it is the corresponding generic implementation. This
      approach is much simpler because it doesn't require keeping track of
      different architecture names.
      
      This convention already existed in repository but previously it was
      implicit.  This change makes it explicit.
      
      This patch is motivated by wanting to revert r375162 which worked around
      the powerpc bug found when r375150 landed.
      
      Once it lands we should revert r375162.
      
      Reviewers: phosek, beanz, compnerd, shiva0217, amyk, rupprecht, kongyi, mstorsjo, t.p.northover, weimingz, jroelofs, joerg, sidneym
      
      Subscribers: nemanjai, mgorny, kristof.beyls, jsji, shchenz, steven.zhang, #sanitizers, llvm-commits
      
      Tags: #llvm, #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D69189
      8ea148dc
    • tyker's avatar
      [InstCombine] keep assumption before sinking calls · c3b06d0c
      tyker authored
      Summary:
      in the following C code the branch is not removed by clang in O3.
      ```
      int f1(char* p) {
          int i1 = __builtin_strlen(p);
          if (!p)
              return -1;
          return i1;
      }
      ```
      The issue is that the call to strlen is sunk to the following block by instcombine. In its new place the call to strlen doesn't dominate the use in the icmp anymore so value tracking can't see that p cannot be null.
      This patch resolves the issue by inserting an assumption at the place of the call before sinking a call when that call can be used to prove an argument to be nonnull.
      This resolves this issue at O3.
      
      Reviewers: majnemer, xbolva00, fhahn, jdoerfert, spatel, efriedma
      
      Reviewed By: jdoerfert
      
      Subscribers: hiraditya, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D69477
      c3b06d0c
    • Reid Kleckner's avatar
      [lit] Silence warning about importing the resource module on Windows · 5632d375
      Reid Kleckner authored
      lit was printing this warning on every test run on Windows, and that is
      not necessary.
      5632d375
    • Adrian Prantl's avatar
      Run clang-format on lldb/source/Commands (NFC) · a925974b
      Adrian Prantl authored
      These files had a lot of whitespace errors in them which was a
      constant source of merge conflicts downstream.
      a925974b
  2. Oct 30, 2019
Loading