Skip to content
  1. May 11, 2020
    • Sergey Dmitriev's avatar
      [Attributor] Fix for a crash on RAUW when rewriting function signature · 3df40007
      Sergey Dmitriev authored
      Reviewers: jdoerfert, sstefan1, uenoku
      
      Reviewed By: uenoku
      
      Subscribers: hiraditya, uenoku, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D79680
      3df40007
    • Kang Zhang's avatar
      [PowerPC] Use PredictableSelectIsExpensive to enable select to branch in CGP · dcc5ff3b
      Kang Zhang authored
      Summary:
      This patch will set the variable PredictableSelectIsExpensive to do the
      select to if based on BranchProbability in CodeGenPrepare.
      
      When the BranchProbability more than MinPercentageForPredictableBranch,
      PPC will convert SELECT to branch.
      
      Reviewed By: nemanjai
      
      Differential Revision: https://reviews.llvm.org/D71883
      dcc5ff3b
    • Sam McCall's avatar
      Revert "[DAGCombine] Remove the getNegatibleCost to avoid the out of sync with... · 728cf6d8
      Sam McCall authored
      Revert "[DAGCombine] Remove the getNegatibleCost to avoid the out of sync with getNegatedExpression"
      
      This reverts commit 3c44c441.
      
      Causes infloops on some inputs, see https://reviews.llvm.org/D77319 for repro
      728cf6d8
    • Tyker's avatar
      [AssumeBundles] fix crashes · 78d85c20
      Tyker authored
      Summary:
      this patch fixe crash/asserts found in the test-suite.
      the AssumeptionCache cannot be assumed to have all assumes contrary to what i tought.
      prevent generation of information for terminators, because this can create broken IR in transfromation where we insert the new terminator before removing the old one.
      
      Reviewers: jdoerfert
      
      Reviewed By: jdoerfert
      
      Subscribers: hiraditya, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D79458
      78d85c20
    • OCHyams's avatar
      [NFC][DwarfDebug] Add test for variables with a single location which · da100de0
      OCHyams authored
      don't span their entire scope.
      
      The previous commit (6d1c40c1) is an older version of the test.
      
      Reviewed By: aprantl, vsk
      
      Differential Revision: https://reviews.llvm.org/D79573
      da100de0
    • Djordje Todorovic's avatar
      [NFC][DwarfDebug] Avoid default capturing when using lambdas · 45e5a32a
      Djordje Todorovic authored
      It is bad practice to capture by default (via [&] in this case) when
      using lambdas, so we should avoid that as much as possible.
      
      This patch fixes that in the getForwardingRegsDefinedByMI
      from DwarfDebug module.
      
      Differential Revision: https://reviews.llvm.org/D79616
      45e5a32a
    • Djordje Todorovic's avatar
      [NFC][DwarfDebug] Prefer explicit to auto type deduction · 2552dc53
      Djordje Todorovic authored
      We should use explicit type instead of auto type deduction when
      the type is so obvious. In addition, we remove ambiguity, since auto
      type deduction sometimes is not that intuitive, so that could lead
      us to some unwanted behavior.
      
      This patch fixes that in the collectCallSiteParameters() from
      DwarfDebug module.
      
      Differential Revision: https://reviews.llvm.org/D79624
      2552dc53
    • Xun Li's avatar
      Remove an unused Module param · 44e5aaf9
      Xun Li authored
      Summary:
      In D65848 the function getFuncNameInModule was refactored to no longer use module.
      This diff removes the parameter and rename the function name to avoid confusion.
      
      Reviewers: wenlei, wmi, davidxl
      
      Reviewed By: wenlei
      
      Subscribers: hiraditya, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D79310
      44e5aaf9
    • Xing GUO's avatar
      1171bef0
    • Fangrui Song's avatar
      [gcov] Implement --stdout -t · f081150c
      Fangrui Song authored
      gcov by default prints to a .gcov file. With --stdout, stdout is used.
      Some summary information is omitted. There is no separator for multiple
      source files.
      f081150c
    • Johannes Doerfert's avatar
      [Attributor] Merge the query set into AbstractAttribute · 3a8740bd
      Johannes Doerfert authored
      The old QuerriedAAs contained two vectors, one for required one for
      optional dependences (=queries). We now use a single vector and encode
      the kind directly in the pointer.
      
      This reduces memory consumption and makes the connection between
      abstract attributes and their dependences clearer.
      
      No functional change is intended, changes in the test are due to
      different order in the query map. Neither the order before nor now is in
      any way special.
      
      ---
      
      Single run of the Attributor module and then CGSCC pass (oldPM)
      for SPASS/clause.c (~10k LLVM-IR loc):
      
      Before:
      ```
      calls to allocation functions: 543734 (329735/s)
      temporary memory allocations: 105895 (64217/s)
      peak heap memory consumption: 19.19MB
      peak RSS (including heaptrack overhead): 102.26MB
      total memory leaked: 269.10KB
      ```
      
      After:
      ```
      calls to allocation functions: 513292 (341511/s)
      temporary memory allocations: 106028 (70544/s)
      peak heap memory consumption: 13.35MB
      peak RSS (including heaptrack overhead): 95.64MB
      total memory leaked: 269.10KB
      ```
      
      Difference:
      ```
      calls to allocation functions: -30442 (208506/s)
      temporary memory allocations: 133 (-910/s)
      peak heap memory consumption: -5.84MB
      peak RSS (including heaptrack overhead): 0B
      total memory leaked: 0B
      ```
      
      ---
      
      Reviewed By: uenoku
      
      Differential Revision: https://reviews.llvm.org/D78729
      3a8740bd
    • QingShan Zhang's avatar
      [DAGCombine] Remove the getNegatibleCost to avoid the out of sync with getNegatedExpression · 3c44c441
      QingShan Zhang authored
      We have the getNegatibleCost/getNegatedExpression to evaluate the cost and negate the expression.
      However, during negating the expression, the cost might change as we are changing the DAG,
      and then, hit the assertion if we negated the wrong expression as the cost is not trustful anymore.
      
      This patch is target to remove the getNegatibleCost to avoid the out of sync with getNegatedExpression,
      and check the cost during negating the expression. It also reduce the duplicated code between
      getNegatibleCost and getNegatedExpression. And fix the crash for the test in D76638
      
      Reviewed By: RKSimon, spatel
      
      Differential Revision: https://reviews.llvm.org/D77319
      3c44c441
    • Fangrui Song's avatar
      [X86] Fix combineVectorCompareAndMaskUnaryOp regression after... · f40fc7b8
      Fangrui Song authored
      [X86] Fix combineVectorCompareAndMaskUnaryOp regression after 0e8e7314
      f40fc7b8
    • Johannes Doerfert's avatar
      [Attributor][FIX] Carefully handle/ignore/forget `argmemonly` · 5e06b251
      Johannes Doerfert authored
      When we have an existing `argmemonly` or `inaccessiblememorargmemonly`
      we used to "know" that information. However, interprocedural constant
      propagation can invalidate these attributes. We now ignore and remove
      these attributes for internal functions (which may be affected by IP
      constant propagation), if we are deriving new attributes for the
      function.
      5e06b251
    • Johannes Doerfert's avatar
      [Attributor] Use "simplify to constant" in genericValueTraversal · 713ee3aa
      Johannes Doerfert authored
      As we replace values with constants interprocedurally, we also need to
      do this "look-through" step during the generic value traversal or we
      would derive properties from replaced values. While this is often not
      problematic, it is when we use the "kind" of a value for reasoning,
      e.g., accesses to arguments allow `argmemonly`.
      713ee3aa
    • Johannes Doerfert's avatar
      [Attributor] Ignore illegal accesses to `null` · 513ac6e9
      Johannes Doerfert authored
      When we categorize a pointer value we bailed at `null` before. If we
      know `null` is not a valid memory location we can ignore it as there
      won't be an access at all.
      513ac6e9
    • Johannes Doerfert's avatar
      [Attributor] Use existing helpers to determine IR facts · 31c03b92
      Johannes Doerfert authored
      We now use getPointerDereferenceableBytes to determine `nonnull` and
      `dereferenceable` facts from the IR. We also use getPointerAlignment in
      AAAlign for the same reason. The latter can interfere with callbacks so
      we do restrict it to non-function-pointers for now.
      31c03b92
    • Johannes Doerfert's avatar
      a9ee8b49
    • Lang Hames's avatar
      [ORC] Share ownership of JITDylibs between ExecutionSession and · 41379f1e
      Lang Hames authored
      MaterializationResponsibility.
      
      MaterializationResponsibility objects provide a connection between a
      materialization process (compiler, jit linker, etc.) and the JIT state held in
      the ExecutionSession and JITDylib objects. Switching to shared ownership
      extends the lifetime of JITDylibs to ensure they remain accessible until all
      materializers targeting them have completed. This will allow (in a follow-up
      patch) JITDylibs to be removed from the ExecutionSession and placed in a
      pending-destruction state while they are kept alive to communicate errors
      to/from any still-runnning materialization processes. The intent is to enable
      JITDylibs to be safely removed even if they have running compiles targeting
      them.
      41379f1e
    • Fangrui Song's avatar
      [gcov] Default coverage version to '407*' and delete CC1 option -coverage-cfg-checksum · 25544ce2
      Fangrui Song authored
      Defaulting to -Xclang -coverage-version='407*' makes .gcno/.gcda
      compatible with gcov [4.7,8)
      
      In addition, delete clang::CodeGenOptionsBase::CoverageExtraChecksum and GCOVOptions::UseCfgChecksum.
      We can infer the information from the version.
      
      With this change, .gcda files produced by `clang --coverage a.o` linked executable can be read by gcov 4.7~7.
      We don't need other -Xclang -coverage* options.
      There may be a mismatching version warning, though.
      
      (Note, GCC r173147 "split checksum into cfg checksum and line checksum"
       made gcov 4.7 incompatible with previous versions.)
      25544ce2
  2. May 10, 2020
  3. May 09, 2020
Loading