Skip to content
  1. Jul 09, 2017
    • Craig Topper's avatar
      [InstCombine] Speculatively implement a fix for what might be the root cause... · e79b3e7d
      Craig Topper authored
      [InstCombine] Speculatively implement a fix for what might be the root cause of PR33721 by making sure that we have integer types before doing select C, -1, 0 -> sext C to int
      
      I recently changed m_One and m_AllOnes to use Constant::isOneValue/isAllOnesValue which work on floating point values too. The original implementation looked specifically for ConstantInt scalars and splats. So I'm guessing we are accidentally trying to issue sext/zexts on floating point types now.
      
      Hopefully I figure out how to reproduce the failure from the PR soon.
      
      llvm-svn: 307486
      e79b3e7d
  2. Jul 08, 2017
    • Max Kazantsev's avatar
      Re-enable "[IndVars] Canonicalize comparisons between non-negative values and indvars" · b9edcbcb
      Max Kazantsev authored
      The patch was reverted due to a bug. The bug was that if the IV is the 2nd operand of the icmp
      instruction, then the "Pred" variable gets swapped and differs from the instruction's predicate.
      In this patch we use the original predicate to do the transformation.
      
      Also added a test case that exercises this situation.
      
      Differentian Revision: https://reviews.llvm.org/D35107
      
      llvm-svn: 307477
      b9edcbcb
    • Craig Topper's avatar
      [InstCombine] Make InstCombine's IRBuilder be passed by reference everywhere · bb4069e4
      Craig Topper authored
      Previously the InstCombiner class contained a pointer to an IR builder that had been passed to the constructor. Sometimes this would be passed to helper functions as either a pointer or the pointer would be dereferenced to be passed by reference.
      
      This patch makes it a reference everywhere including the InstCombiner class itself so there is more inconsistency. This a large, but mechanical patch. I've done very minimal formatting changes on it despite what clang-format wanted to do.
      
      llvm-svn: 307451
      bb4069e4
  3. Jul 07, 2017
    • Dehao Chen's avatar
      Increase the import-threshold for crtical functions. · 64c46574
      Dehao Chen authored
      Summary: For interative sample-pgo, if a hot call site is inlined in the profiling binary, we should inline it in before profile annotation in the backend. Before that, the compile phase first collects all GUIDs that needs to be imported and creates virtual "hot" call edge in the summary. However, "hot" is not good enough to guarantee the callsites get inlined. This patch introduces "critical" call edge, and assign much higher importing threshold for those edges.
      
      Reviewers: tejohnson
      
      Reviewed By: tejohnson
      
      Subscribers: sanjoy, mehdi_amini, llvm-commits, eraman
      
      Differential Revision: https://reviews.llvm.org/D35096
      
      llvm-svn: 307439
      64c46574
    • Anna Thomas's avatar
      [LoopUnrollRuntime] Support multiple exit blocks unrolling when prolog remainder generated · e3872003
      Anna Thomas authored
      With the NFC refactoring in rL307417 (git SHA 987dd01), all the logic
      is in place to support multiple exit/exiting blocks when prolog
      remainder is generated.
      This patch removed the assert that multiple exit blocks unrolling is only
      supported when epilog remainder is generated.
      
      Also, added test runs and checks with PROLOG prefix in
      runtime-loop-multiple-exits.ll test cases.
      
      llvm-svn: 307435
      e3872003
    • Davide Italiano's avatar
      [Local] Update the comment for removeUnreachableBlocks. · 4eb210bd
      Davide Italiano authored
      It referenced a wrong function name, and didn't mention what the
      second argument did. This should be slightly more accurate now.
      
      llvm-svn: 307425
      4eb210bd
    • Gor Nishanov's avatar
      [cloning] Do not duplicate types when cloning functions · 8cdf6487
      Gor Nishanov authored
      Summary:
      This is an addon to the change rl304488 cloning fixes. (Originally rl304226 reverted rl304228 and reapplied rl304488 https://reviews.llvm.org/D33655)
      
      rl304488 works great when DILocalVariables that comes from the inlined function has a 'unique-ed' type, but,
      in the case when the variable type is distinct we will create a second DILocalVariable in the scope of the original function that was inlined.
      
      Consider cloning of the following function:
      ```
      define private void @f() !dbg !5 {
        %1 = alloca i32, !dbg !11
        call void @llvm.dbg.declare(metadata i32* %1, metadata !14, metadata !12), !dbg !18
        ret void, !dbg !18
      }
      
      !14 = !DILocalVariable(name: "inlined", scope: !15, file: !6, line: 5, type: !17) ; came from an inlined function
      !15 = distinct !DISubprogram(name: "inlined", linkageName: "inlined", scope: null, file: !6, line: 8, type: !7, isLocal: true, isDefinition: true, scopeLine: 9, isOptimized: false, unit: !0, variables: !16)
      !16 = !{!14}
      !17 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "some_struct", size: 32, align: 32)
      ```
      
      Without this fix, when function 'f' is cloned, we will create another DILocalVariable for "inlined", due to its type being distinct.
      
      ```
      define private void @f.1() !dbg !23 {
        %1 = alloca i32, !dbg !26
        call void @llvm.dbg.declare(metadata i32* %1, metadata !28, metadata !12), !dbg !30
        ret void, !dbg !30
      }
      
      !14 = !DILocalVariable(name: "inlined", scope: !15, file: !6, line: 5, type: !17)
      !15 = distinct !DISubprogram(name: "inlined", linkageName: "inlined", scope: null, file: !6, line: 8, type: !7, isLocal: true, isDefinition: true, scopeLine: 9, isOptimized: false, unit: !0, variables: !16)
      !16 = !{!14}
      !17 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "some_struct", size: 32, align: 32)
       ;
      !28 = !DILocalVariable(name: "inlined", scope: !15, file: !6, line: 5, type: !29) ; OOPS second DILocalVariable
      !29 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "some_struct", size: 32, align: 32)
      ```
      
      Now we have two DILocalVariable for "inlined" within the same scope. This result in assert in AsmPrinter/DwarfDebug.h:131: void llvm::DbgVariable::addMMIEntry(const llvm::DbgVariable &): Assertion `V.Var == Var && "conflicting variable"' failed.
      (Full example: See: https://bugs.llvm.org/show_bug.cgi?id=33492)
      
      In this change we prevent duplication of types so that when a metadata for DILocalVariable is cloned it will get uniqued to the same metadate node as an original variable.
      
      Reviewers: loladiro, dblaikie, aprantl, echristo
      
      Reviewed By: loladiro
      
      Subscribers: EricWF, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D35106
      
      llvm-svn: 307418
      8cdf6487
    • Anna Thomas's avatar
      [LoopUnrollRuntime] NFC: use the precomputed loop exit in ConnectProlog · 734ab3f7
      Anna Thomas authored
      Minor refactoring to use the preexisting loop exit that's already
      calculated. We do not need to recompute the loop exit in ConnectProlog.
      Apart from avoiding redundant computation, this is required for
      supporting multiple loop exits when Prolog remainder loops are generated.
      
      llvm-svn: 307417
      734ab3f7
    • Yaxun Liu's avatar
      [InferAddressSpaces] Fix assertion about null pointer · b909f11a
      Yaxun Liu authored
      InferAddressSpaces does not check address space in collectFlatAddressExpressions,
      which causes values with non flat address space put into Postorder and causes
      assertion in cloneValueWithNewAddressSpace.
      
      This patch fixes assertion in OpenCL 2.0 conformance test generic_address_space
      subtest for amdgcn target.
      
      Differential Revision: https://reviews.llvm.org/D34991
      
      llvm-svn: 307349
      b909f11a
    • Sean Fertile's avatar
      Extend memcpy expansion in Transform/Utils to handle wider operand types. · 9cd1cdf8
      Sean Fertile authored
      Adds loop expansions for known-size and unknown-sized memcpy calls, allowing the
      target to provide the operand types through TTI callbacks. The default values
      for the TTI callbacks use int8 operand types and matches the existing behaviour
      if they aren't overridden by the target.
      
      Differential revision: https://reviews.llvm.org/D32536
      
      llvm-svn: 307346
      9cd1cdf8
    • Evgeniy Stepanov's avatar
      Revert r307342, r307343. · 7d3eeaaa
      Evgeniy Stepanov authored
      Revert "Copy arguments passed by value into explicit allocas for ASan."
      Revert "[asan] Add end-to-end tests for overflows of byval arguments."
      
      Build failure on lldb-x86_64-ubuntu-14.04-buildserver.
      Test failure on clang-cmake-aarch64-42vma and sanitizer-x86_64-linux-android.
      
      llvm-svn: 307345
      7d3eeaaa
    • Evgeniy Stepanov's avatar
      Copy arguments passed by value into explicit allocas for ASan. · 2a7a4bc1
      Evgeniy Stepanov authored
      ASan determines the stack layout from alloca instructions. Since
      arguments marked as "byval" do not have an explicit alloca instruction, ASan
      does not produce red zones for them. This commit produces an explicit alloca
      instruction and copies the byval argument into the allocated memory so that red
      zones are produced.
      
      Patch by Matt Morehouse.
      
      Differential revision: https://reviews.llvm.org/D34789
      
      llvm-svn: 307342
      2a7a4bc1
    • Wei Mi's avatar
      [ConstHoisting] Turn on consthoist-with-block-frequency by default. · 75867550
      Wei Mi authored
      Using profile information to guide consthoisting is generally helpful for
      performance, so the patch turns it on by default. No compile time or perf
      regression were found using spec2000 and spec2006 on x86.  Some significant
      improvement (>20%) was seen on internal benchmarks.
      
      Differential Revision: https://reviews.llvm.org/D35063
      
      llvm-svn: 307338
      75867550
    • Craig Topper's avatar
      [InstCombine] No need to pass DataLayout to helper functions if we're passing... · cb22039b
      Craig Topper authored
      [InstCombine] No need to pass DataLayout to helper functions if we're passing the InstCombiner object. We can just ask it for the DataLayout. NFC
      
      llvm-svn: 307333
      cb22039b
    • Craig Topper's avatar
      [InstCombine] Remove unused arguments from some helper functions. NFC · 4853c430
      Craig Topper authored
      llvm-svn: 307332
      4853c430
    • Craig Topper's avatar
      [InstCombine] Change a couple helper functions to only take the IRBuilder as... · 2bb9f0f6
      Craig Topper authored
      [InstCombine] Change a couple helper functions to only take the IRBuilder as an argument and not the whole InstCombiner object. NFC
      
      llvm-svn: 307331
      2bb9f0f6
    • Wei Mi's avatar
      [ConstHoisting] choose to hoist when frequency is the same. · 20526b27
      Wei Mi authored
      The patch is to adjust the strategy of frequency based consthoisting:
      Previously when the candidate block has the same frequency with the existing
      blocks containing a const, it will not hoist the const to the candidate block.
      For that case, now we change the strategy to hoist the const if only existing
      blocks have more than one block member. This is helpful for reducing code size.
      
      Differential Revision: https://reviews.llvm.org/D35084
      
      llvm-svn: 307328
      20526b27
  4. Jul 06, 2017
  5. Jul 05, 2017
Loading