Skip to content
  1. Jul 19, 2015
  2. Jul 18, 2015
    • Simon Pilgrim's avatar
      [X86][SSE] Updated SHL/LSHR i64 vectorization costs. · 59764dcc
      Simon Pilgrim authored
      This was missed in D8416.
      
      llvm-svn: 242621
      59764dcc
    • Benjamin Kramer's avatar
      [AggressiveAntiDepBreaker] Use range loops for multimap access. · c9436ad6
      Benjamin Kramer authored
      No functionality change intended.
      
      llvm-svn: 242620
      c9436ad6
    • Yaron Keren's avatar
      Rangify for loops in GlobalDCE, NFC. · 3d49f6df
      Yaron Keren authored
      llvm-svn: 242619
      3d49f6df
    • Benjamin Kramer's avatar
      [Hexagon] Use composition instead of inheritance from STL types · 9a5d7889
      Benjamin Kramer authored
      The standard containers are not designed to be inherited from, as
      illustrated by the MSVC hacks for NodeOrdering. No functional change
      intended.
      
      llvm-svn: 242616
      9a5d7889
    • Simon Pilgrim's avatar
      [X86][SSE] Added additional fp/int tests. · 8c81678d
      Simon Pilgrim authored
      Demonstrates some shortfalls in subvector(cvt(x)) compared to cvt(subvector(x)) patterns - especially on AVX/AVX2 targets.
      
      llvm-svn: 242614
      8c81678d
    • Simon Pilgrim's avatar
      Refreshed tests. · c77f72c4
      Simon Pilgrim authored
      llvm-svn: 242613
      c77f72c4
    • Simon Pilgrim's avatar
      Refreshed tests and reordered in descending integer size. · 036db526
      Simon Pilgrim authored
      llvm-svn: 242610
      036db526
    • Simon Pilgrim's avatar
      27e130f1
    • Chandler Carruth's avatar
      [PM/AA] Remove the addEscapingUse update API that won't be easy to · 9f2bf1af
      Chandler Carruth authored
      directly model in the new PM.
      
      This also was an incredibly brittle and expensive update API that was
      never fully utilized by all the passes that claimed to preserve AA, nor
      could it reasonably have been extended to all of them. Any number of
      places add uses of values. If we ever wanted to reliably instrument
      this, we would want a callback hook much like we have with ValueHandles,
      but doing this for every use addition seems *extremely* expensive in
      terms of compile time.
      
      The only user of this update mechanism is GlobalsModRef. The idea of
      using this to keep it up to date doesn't really work anyways as its
      analysis requires a symmetric analysis of two different memory
      locations. It would be very hard to make updates be sufficiently
      rigorous to *guarantee* symmetric analysis in this way, and it pretty
      certainly isn't true today.
      
      However, folks have been using GMR with this update for a long time and
      seem to not be hitting the issues. The reported issue that the update
      hook fixes isn't even a problem any more as other changes to
      GetUnderlyingObject worked around it, and that issue stemmed from *many*
      years ago. As a consequence, a prior patch provided a flag to control
      the unsafe behavior of GMR, and this patch removes the update mechanism
      that has questionable compile-time tradeoffs and is causing problems
      with moving to the new pass manager. Note the lack of test updates --
      not one test in tree actually requires this update, even for a contrived
      case.
      
      All of this was extensively discussed on the dev list, this patch will
      just enact what that discussion decides on. I'm sending it for review in
      part to show what I'm planning, and in part to show the *amazing* amount
      of work this avoids. Every call to the AA here is something like three
      to six indirect function calls, which in the non-LTO pipeline never do
      any work! =[
      
      Differential Revision: http://reviews.llvm.org/D11214
      
      llvm-svn: 242605
      9f2bf1af
    • Kostya Serebryany's avatar
      86e4a3e0
    • Evgeniy Stepanov's avatar
      [asan] Fix shadow mapping on Android/AArch64. · 9cb08f82
      Evgeniy Stepanov authored
      Instrumentation and the runtime library were in disagreement about
      ASan shadow offset on Android/AArch64.
      
      This fixes a large number of existing tests on Android/AArch64.
      
      llvm-svn: 242595
      9cb08f82
    • Matthias Braun's avatar
      ARM: Enable MachineScheduler and disable PostRAScheduler for swift. · 9e859806
      Matthias Braun authored
      Reapply r242500 now that the swift schedmodel includes LDRLIT.
      
      This is mostly done to disable the PostRAScheduler which optimizes for
      instruction latencies which isn't a good fit for out-of-order
      architectures. This also allows to leave out the itinerary table in
      swift in favor of the SchedModel ones.
      
      This change leads to performance improvements/regressions by as much as
      10% in some benchmarks, in fact we loose 0.4% performance over the
      llvm-testsuite for reasons that appear to be unknown or out of the
      compilers control. rdar://20803802 documents the investigation of
      these effects.
      
      While it is probably a good idea to perform the same switch for the
      other ARM out-of-order CPUs, I limited this change to swift as I cannot
      perform the benchmark verification on the other CPUs.
      
      Differential Revision: http://reviews.llvm.org/D10513
      
      llvm-svn: 242588
      9e859806
    • Matthias Braun's avatar
      ARM: Add scheduling information for LDRLIT instructions to swift scheduling model · 141d1c9d
      Matthias Braun authored
      These pseudo instructions are only lowered after register allocation and
      are therefore still present when the machine scheduler runs.
      Add a run: line to a testcase that uses the uncommon flags necessary to
      actually produce a LDRLIT instruction on swift.
      
      llvm-svn: 242587
      141d1c9d
    • Quentin Colombet's avatar
      [RAGreedy] Add an experimental deferred spilling feature. · 11922946
      Quentin Colombet authored
      The idea of deferred spilling is to delay the insertion of spill code until the
      very end of the allocation. A "candidate" to spill variable might not required
      to be spilled because of other evictions that happened after this decision was
      taken. The spirit is similar to the optimistic coloring strategy implemented in
      Preston and Briggs graph coloring algorithm.
      
      For now, this feature is highly experimental. Although correct, it would require
      much more modification to properly model the effect of spilling.
      
      Anyway, this early patch helps prototyping this feature.
      
      Note: The test case cannot unfortunately be reduced and is probably fragile.
      llvm-svn: 242585
      11922946
    • Alex Lorenz's avatar
      MIR Parser: Allow the dollar characters in all of the identifier tokens. · 484903ec
      Alex Lorenz authored
      This commit modifies the machine instruction lexer so that it now accepts the
      '$' characters in identifier tokens.
      
      This change makes the syntax for unquoted global value tokens consistent with
      the syntax for the global idenfitier tokens in the LLVM's assembly language.
      
      llvm-svn: 242584
      484903ec
    • Alex Lorenz's avatar
      AsmParser: Add a function to parse a standalone constant value. · d225595d
      Alex Lorenz authored
      This commit extends the interface provided by the AsmParser library by adding a
      function that allows the user to parse a standalone contant value.
      
      This change is useful for MIR serialization, as it will allow the MIR Parser to
      parse the constant values in a machine constant pool.
      
      Reviewers: Duncan P. N. Exon Smith
      
      Differential Revision: http://reviews.llvm.org/D10280
      
      llvm-svn: 242579
      d225595d
  3. Jul 17, 2015
Loading