Skip to content
  1. Feb 15, 2017
    • George Rokos's avatar
      [OpenMP] libomptarget: Protect parent struct from being deallocated · 15a6e7da
      George Rokos authored
      Fixed bug due to which a parent struct was deallocated when one of the struct's pointers was being unmapped.
      
      Differential Revision: https://reviews.llvm.org/D29914
      
      llvm-svn: 295231
      15a6e7da
    • Arnold Schwaighofer's avatar
      AddressSanitizer: don't track swifterror memory addresses · 8d61e003
      Arnold Schwaighofer authored
      They are register promoted by ISel and so it makes no sense to treat them as
      memory.
      
      Inserting calls to the thread sanitizer would also generate invalid IR.
      
      You would hit:
      
      "swifterror value can only be loaded and stored from, or as a swifterror
      argument!"
      
      llvm-svn: 295230
      8d61e003
    • Ahmed Bougacha's avatar
      [AArch64] Make am_ldrlit an iPTR - not OtherVT - operand. NFC-ish. · f8acf568
      Ahmed Bougacha authored
      am_ldrlit diverged from am_brcond in r207105, but kept the OtherVT
      operand type.  It made sense for branch targets, as those are
      represented as MVT::Other in SDAG.  But loads operate on pointers.
      
      This shouldn't have an observable effect on any in-tree code, but helps
      make the patterns consistent for external users.
      
      llvm-svn: 295229
      f8acf568
    • Ahmed Bougacha's avatar
      [OptDiag] Pass const Values/Types to Argument. NFC. · 36026006
      Ahmed Bougacha authored
      llvm-svn: 295228
      36026006
    • Ahmed Bougacha's avatar
      [IR] Accept 'const Type &' in the Type operator<<. NFC. · f9e5a1dd
      Ahmed Bougacha authored
      Type::print is const; there's no reason for the operator not to be.
      
      llvm-svn: 295227
      f9e5a1dd
    • Tobias Edler von Koch's avatar
      [LTO] Add ability to emit assembly to new LTO API · f454b9ea
      Tobias Edler von Koch authored
      Summary:
      Add a field to LTO::Config, CGFileType, to select the file type to emit (object
      or assembly). This is useful for testing and to implement -save-temps.
      
      Reviewers: tejohnson, mehdi_amini, pcc
      
      Reviewed By: mehdi_amini
      
      Subscribers: davide, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D29475
      
      llvm-svn: 295226
      f454b9ea
    • Rui Ueyama's avatar
      Apply different tokenization rules to linker script expressions. · 731a66ae
      Rui Ueyama authored
      The linker script lexer is context-sensitive. In the regular context,
      arithmetic operator characters are regular characters, but in the
      expression context, they are independent tokens. This afects how the
      lexer tokenizes "3*4", for example. (This kind of expression is real;
      the Linux kernel uses it.)
      
      This patch defines function `maybeSplitExpr`. This function splits the
      current token into multiple expression tokens if the lexer is in the
      expression context.
      
      Differential Revision: https://reviews.llvm.org/D29963
      
      llvm-svn: 295225
      731a66ae
    • Richard Smith's avatar
    • Kyle Butt's avatar
      Codegen: Make chains from trellis-shaped CFGs · 7fbec9bd
      Kyle Butt authored
      Lay out trellis-shaped CFGs optimally.
      A trellis of the shape below:
      
        A     B
        |\   /|
        | \ / |
        |  X  |
        | / \ |
        |/   \|
        C     D
      
      would be laid out A; B->C ; D by the current layout algorithm. Now we identify
      trellises and lay them out either A->C; B->D or A->D; B->C. This scales with an
      increasing number of predecessors. A trellis is a a group of 2 or more
      predecessor blocks that all have the same successors.
      
      because of this we can tail duplicate to extend existing trellises.
      
      As an example consider the following CFG:
      
          B   D   F   H
         / \ / \ / \ / \
        A---C---E---G---Ret
      
      Where A,C,E,G are all small (Currently 2 instructions).
      
      The CFG preserving layout is then A,B,C,D,E,F,G,H,Ret.
      
      The current code will copy C into B, E into D and G into F and yield the layout
      A,C,B(C),E,D(E),F(G),G,H,ret
      
      define void @straight_test(i32 %tag) {
      entry:
        br label %test1
      test1: ; A
        %tagbit1 = and i32 %tag, 1
        %tagbit1eq0 = icmp eq i32 %tagbit1, 0
        br i1 %tagbit1eq0, label %test2, label %optional1
      optional1: ; B
        call void @a()
        br label %test2
      test2: ; C
        %tagbit2 = and i32 %tag, 2
        %tagbit2eq0 = icmp eq i32 %tagbit2, 0
        br i1 %tagbit2eq0, label %test3, label %optional2
      optional2: ; D
        call void @b()
        br label %test3
      test3: ; E
        %tagbit3 = and i32 %tag, 4
        %tagbit3eq0 = icmp eq i32 %tagbit3, 0
        br i1 %tagbit3eq0, label %test4, label %optional3
      optional3: ; F
        call void @c()
        br label %test4
      test4: ; G
        %tagbit4 = and i32 %tag, 8
        %tagbit4eq0 = icmp eq i32 %tagbit4, 0
        br i1 %tagbit4eq0, label %exit, label %optional4
      optional4: ; H
        call void @d()
        br label %exit
      exit:
        ret void
      }
      
      here is the layout after D27742:
      straight_test:                          # @straight_test
      ; ... Prologue elided
      ; BB#0:                                 # %entry ; A (merged with test1)
      ; ... More prologue elided
      	mr 30, 3
      	andi. 3, 30, 1
      	bc 12, 1, .LBB0_2
      ; BB#1:                                 # %test2 ; C
      	rlwinm. 3, 30, 0, 30, 30
      	beq	 0, .LBB0_3
      	b .LBB0_4
      .LBB0_2:                                # %optional1 ; B (copy of C)
      	bl a
      	nop
      	rlwinm. 3, 30, 0, 30, 30
      	bne	 0, .LBB0_4
      .LBB0_3:                                # %test3 ; E
      	rlwinm. 3, 30, 0, 29, 29
      	beq	 0, .LBB0_5
      	b .LBB0_6
      .LBB0_4:                                # %optional2 ; D (copy of E)
      	bl b
      	nop
      	rlwinm. 3, 30, 0, 29, 29
      	bne	 0, .LBB0_6
      .LBB0_5:                                # %test4 ; G
      	rlwinm. 3, 30, 0, 28, 28
      	beq	 0, .LBB0_8
      	b .LBB0_7
      .LBB0_6:                                # %optional3 ; F (copy of G)
      	bl c
      	nop
      	rlwinm. 3, 30, 0, 28, 28
      	beq	 0, .LBB0_8
      .LBB0_7:                                # %optional4 ; H
      	bl d
      	nop
      .LBB0_8:                                # %exit ; Ret
      	ld 30, 96(1)                    # 8-byte Folded Reload
      	addi 1, 1, 112
      	ld 0, 16(1)
      	mtlr 0
      	blr
      
      The tail-duplication has produced some benefit, but it has also produced a
      trellis which is not laid out optimally. With this patch, we improve the layouts
      of such trellises, and decrease the cost calculation for tail-duplication
      accordingly.
      
      This patch produces the layout A,C,E,G,B,D,F,H,Ret. This layout does have
      back edges, which is a negative, but it has a bigger compensating
      positive, which is that it handles the case where there are long strings
      of skipped blocks much better than the original layout. Both layouts
      handle runs of executed blocks equally well. Branch prediction also
      improves if there is any correlation between subsequent optional blocks.
      
      Here is the resulting concrete layout:
      
      straight_test:                          # @straight_test
      ; BB#0:                                 # %entry ; A (merged with test1)
      	mr 30, 3
      	andi. 3, 30, 1
      	bc 12, 1, .LBB0_4
      ; BB#1:                                 # %test2 ; C
      	rlwinm. 3, 30, 0, 30, 30
      	bne	 0, .LBB0_5
      .LBB0_2:                                # %test3 ; E
      	rlwinm. 3, 30, 0, 29, 29
      	bne	 0, .LBB0_6
      .LBB0_3:                                # %test4 ; G
      	rlwinm. 3, 30, 0, 28, 28
      	bne	 0, .LBB0_7
      	b .LBB0_8
      .LBB0_4:                                # %optional1 ; B (Copy of C)
      	bl a
      	nop
      	rlwinm. 3, 30, 0, 30, 30
      	beq	 0, .LBB0_2
      .LBB0_5:                                # %optional2 ; D (Copy of E)
      	bl b
      	nop
      	rlwinm. 3, 30, 0, 29, 29
      	beq	 0, .LBB0_3
      .LBB0_6:                                # %optional3 ; F (Copy of G)
      	bl c
      	nop
      	rlwinm. 3, 30, 0, 28, 28
      	beq	 0, .LBB0_8
      .LBB0_7:                                # %optional4 ; H
      	bl d
      	nop
      .LBB0_8:                                # %exit
      
      Differential Revision: https://reviews.llvm.org/D28522
      
      llvm-svn: 295223
      7fbec9bd
    • Rui Ueyama's avatar
      Simplify operator tests. · a4601b5d
      Rui Ueyama authored
      llvm-svn: 295222
      a4601b5d
    • Rui Ueyama's avatar
      Rename a test as they are tests for operators. · fd5edff8
      Rui Ueyama authored
      llvm-svn: 295221
      fd5edff8
    • Xinliang David Li's avatar
      include function name in dot filename · 538d6668
      Xinliang David Li authored
      Differential Revision: http://reviews.llvm.org/D29975
      
      llvm-svn: 295220
      538d6668
    • Arnold Schwaighofer's avatar
      ThreadSanitizer: don't track swifterror memory addresses · 8eb1a485
      Arnold Schwaighofer authored
      They are register promoted by ISel and so it makes no sense to treat them as
      memory.
      
      Inserting calls to the thread sanitizer would also generate invalid IR.
      
      You would hit:
      
      "swifterror value can only be loaded and stored from, or as a swifterror
      argument!"
      
      llvm-svn: 295215
      8eb1a485
    • Michael Kuperstein's avatar
      [DAG] Don't try to create an INSERT_SUBVECTOR with an illegal source · ba80db39
      Michael Kuperstein authored
      We currently can't legalize those, but we should really not be creating
      them in the first place, since legalization would probably look similar to the
      way we legalize CONCAT_VECTORS - basically replace the INSERT with a BUILD.
      
      This fixes PR311956.
      
      Differential Revision: https://reviews.llvm.org/D29961
      
      llvm-svn: 295213
      ba80db39
    • Greg Clayton's avatar
      Fix Xcode project. · 4197b7f4
      Greg Clayton authored
      llvm-svn: 295212
      4197b7f4
    • Pavel Labath's avatar
      Skip TestStepOverBreakpoint on windows · ae11b64d
      Pavel Labath authored
      llvm-svn: 295211
      ae11b64d
    • Dehao Chen's avatar
      Expose getBaseDiscriminatorFromDiscriminator,... · 726da628
      Dehao Chen authored
      Expose getBaseDiscriminatorFromDiscriminator, getDuplicationFactorFromDiscriminator and getCopyIdentifierFromDiscriminator API so that downstream tools can use them to get the correct encoding.
      
      Summary: Discriminators are now encoded with rich information. This patch exposes the encoding API to downstream tools.
      
      Reviewers: davidxl, hfinkel
      
      Reviewed By: davidxl
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D29852
      
      llvm-svn: 295210
      726da628
    • Sanjay Patel's avatar
      [Inline] add tests to show attribute information loss; NFC · 05621864
      Sanjay Patel authored
      llvm-svn: 295209
      05621864
    • Simon Pilgrim's avatar
      [X86][SSE] Propagate undef upper elements from scalar_to_vector during shuffle combining · da25d5c7
      Simon Pilgrim authored
      Only do this for integer types currently - floats types (in particular insertps) load folding often fails with this.
      
      llvm-svn: 295208
      da25d5c7
    • Jonas Devlieghere's avatar
      [clang-tidy] Fix test modernize-return-braced-init-list · f9e7b3ca
      Jonas Devlieghere authored
      llvm-svn: 295207
      f9e7b3ca
    • Stanislav Mekhanoshin's avatar
      [AMDGPU] Revert failed scheduling · 582a5237
      Stanislav Mekhanoshin authored
      This patch reverts region's scheduling to the original untouched state
      in case if we have have decreased occupancy.
      
      In addition it switches to use TargetRegisterInfo occupancy callback
      for pressure limits instead of gradually increasing limits which were
      just passed by. We are going to stay with the best schedule so we do
      not need to tolerate worsened scheduling anymore.
      
      Differential Revision: https://reviews.llvm.org/D29971
      
      llvm-svn: 295206
      582a5237
    • Jonas Devlieghere's avatar
      Fixed indentation issue in release notes · 0a6913bc
      Jonas Devlieghere authored
      llvm-svn: 295205
      0a6913bc
    • Michael Kruse's avatar
      [DeLICM] Add forgotten unittests in previous commit. NFC. · c28c5846
      Michael Kruse authored
      llvm-svn: 295204
      c28c5846
    • Jonathan Peyton's avatar
      Enable yield cycle on Linux · 581fdbaa
      Jonathan Peyton authored
      This change allows the runtime to turn __kmp_yield() on/off repeatedly on Linux.
      This feature was removed when disabling monitor thread, but there are
      applications that perform better with this feature on.
      
      Patch by Hansang Bae
      
      Differential Revision: https://reviews.llvm.org/D29227
      
      llvm-svn: 295203
      581fdbaa
    • Petr Hosek's avatar
      Revert "[libunwind][CMake] Use libc++ headers when available" · ce47cf35
      Petr Hosek authored
      This causing build failure on sanitizer bots because of the unused
      argument '-nostdinc++' during linking of libunwind.
      
      This reverts commit 0e14fd1a1d37b9c6d55a2d3bc7649e5b39ce74d3.
      
      llvm-svn: 295202
      ce47cf35
    • Pavel Labath's avatar
      Revert "Refactor log channel registration mechanism" · f0713996
      Pavel Labath authored
      The change breaks on Windows and NetBSD bots. Revert while I
      investigate.
      
      llvm-svn: 295201
      f0713996
    • Anna Thomas's avatar
      Revert "[JumpThreading] Thread through guards" · 94c8d497
      Anna Thomas authored
      This reverts commit r294617.
      
      We fail on an assert while trying to get a condition from an
      unconditional branch.
      
      llvm-svn: 295200
      94c8d497
    • Jonas Devlieghere's avatar
      [clang-tidy] Add check 'modernize-return-braced-init-list' · 27890431
      Jonas Devlieghere authored
      Summary:
      Replaces explicit calls to the constructor in a return with a braced
      initializer list. This way the return type is not needlessly duplicated in the
      return type and the return statement.
      
      ```
      Foo bar() {
        Baz baz;
        return Foo(baz);
      }
      
      // transforms to:
      
      Foo bar() {
        Baz baz;
        return {baz};
      }
      ```
      
      Reviewers: hokein, Prazek, aaron.ballman, alexfh
      
      Reviewed By: Prazek, aaron.ballman, alexfh
      
      Subscribers: malcolm.parsons, mgorny, cfe-commits
      
      Tags: #clang-tools-extra
      
      Differential Revision: https://reviews.llvm.org/D28768
      
      llvm-svn: 295199
      27890431
    • Benjamin Kramer's avatar
      0ac6d124
    • Michael Kruse's avatar
      [DeLICM] Add Knowledge class. NFC. · e23e94a0
      Michael Kruse authored
      The Knowledge class remembers the state of data at any timepoint of a SCoP's
      execution. Currently, it tracks whether an array element is unused or is
      occupied by some value, and the writes to it. A future addition will be to also
      remember which value it contains.
      
      Objects are used to determine whether two Knowledge contain conflicting
      information, i.e. two states cannot be true a the same time.
      
      This commit was extracted from the DeLICM algorithm at
      https://reviews.llvm.org/D24716.
      
      llvm-svn: 295197
      e23e94a0
    • Benjamin Kramer's avatar
      fbe32f59
    • Simon Pilgrim's avatar
      [X86] Regenerate scalar stack reload test · d811bdd6
      Simon Pilgrim authored
      llvm-svn: 295195
      d811bdd6
    • Benjamin Kramer's avatar
      [clangd] Synchronize logs access. · e14bd424
      Benjamin Kramer authored
      I don't think that this is necessary for correctness, but makes tsan
      much more useful.
      
      llvm-svn: 295194
      e14bd424
    • Benjamin Kramer's avatar
      [clangd] Initialize the thread after the mutex. · 3858b7d6
      Benjamin Kramer authored
      Otherwise locking the mutex yields a racy assertion failure on picky
      implementations.
      
      llvm-svn: 295193
      3858b7d6
    • Malcolm Parsons's avatar
    • Argyrios Kyrtzidis's avatar
      [index] USR generation: use getTemplateArgs() instead of getTemplateInstantiationArgs() · 7d90ed0a
      Argyrios Kyrtzidis authored
      Otherwise we may end up creating a different USR for the definition of a function, vs its declaration.
      
      llvm-svn: 295191
      7d90ed0a
    • Pavel Labath's avatar
      Refactor log channel registration mechanism · 5fb8af40
      Pavel Labath authored
      Summary:
      We currently have two log channel registration mechanisms. One uses a
      set of function pointers and the other one is based on the
      PluginManager.
      
      The PluginManager dependency is unfortunate, as logging
      is also used in lldb-server, and the PluginManager pulls in a lot of
      classes which are not used in lldb-server.
      
      Both approach have the problem that they leave too much to do for the
      user, and so the individual log channels end up reimplementing command
      line argument parsing, category listing, etc.
      
      Here, I replace the PluginManager-based approach with a one. The new API
      is more declarative, so the user only needs to specify the list of list
      of channels, their descriptions, etc., and all the common tasks like
      enabling/disabling categories are hadled by common code. I migrate the
      LogChannelDWARF (only user of the PluginManager method) to the new API.
      
      In the follow-up commits I'll replace the other channels with something
      similar.
      
      Reviewers: clayborg, zturner, beanz
      
      Subscribers: aprantl, lldb-commits
      
      Differential Revision: https://reviews.llvm.org/D29895
      
      llvm-svn: 295190
      5fb8af40
    • Pavel Labath's avatar
      Fix debug build of unit tests · cf8af0ad
      Pavel Labath authored
      Summary:
      It turns out listing each library twice is not enough to resolve all
      references in a debug build on linux - a number of executables fails to
      link with random symbols missing. Increasing the number to three seems
      to be enough. The choice of lldbCore to set the multiplicity on is
      somewhat arbitrary, but it seems fitting, as it is the biggest layering
      transgressor.
      
      Reviewers: beanz
      
      Subscribers: mgorny, lldb-commits
      
      Differential Revision: https://reviews.llvm.org/D29888
      
      llvm-svn: 295189
      cf8af0ad
    • David Bozier's avatar
      4b21d022
    • Benjamin Kramer's avatar
      [clangd] Fix use after free. · 4eaf89f2
      Benjamin Kramer authored
      llvm-svn: 295187
      4eaf89f2
Loading