Skip to content
  1. Jan 28, 2014
    • Alexander Potapenko's avatar
      [ASan] Move the signal handling-related flags to sanitizer_common. · cf4bef31
      Alexander Potapenko authored
      This change is a part of refactoring intended to have common signal handling behavior in all tools.
      
      llvm-svn: 200295
      cf4bef31
    • Chandler Carruth's avatar
      [vectorizer] Completely disable the block frequency guidance of the loop · b7836285
      Chandler Carruth authored
      vectorizer, placing it behind an off-by-default flag.
      
      It turns out that block frequency isn't what we want at all, here or
      elsewhere. This has been I think a nagging feeling for several of us
      working with it, but Arnold has given some really nice simple examples
      where the results are so comprehensively wrong that they aren't useful.
      
      I'm planning to email the dev list with a summary of why its not really
      useful and a couple of ideas about how to better structure these types
      of heuristics.
      
      llvm-svn: 200294
      b7836285
    • Evgeniy Stepanov's avatar
      [msan] Replace assert() with GTest ASSERT_* in msan_test. · 0b09c623
      Evgeniy Stepanov authored
      llvm-svn: 200293
      0b09c623
    • Nick Lewycky's avatar
      Clarify. Thanks to Sean Silva and Warren Hunt for help wordsmithing! · 8993f265
      Nick Lewycky authored
      llvm-svn: 200292
      8993f265
    • Alexey Samsonov's avatar
      Fix this test and don't run it in ASan bootstrap · b80effdf
      Alexey Samsonov authored
      llvm-svn: 200291
      b80effdf
    • Alexey Bataev's avatar
      40e7522e
    • Nick Lewycky's avatar
      Fix always-false conditional thinko in documentation. · b05a8440
      Nick Lewycky authored
      llvm-svn: 200289
      b05a8440
    • Hal Finkel's avatar
      Handle spilling the PPC GPRC_NOR0 register class · 4e703bce
      Hal Finkel authored
      GPRC_NOR0 is not a subclass of GPRC (because it also contains the ZERO pseudo
      register). As a result, we also need to check for it in the spilling code.
      
      llvm-svn: 200288
      4e703bce
    • Craig Topper's avatar
      Improve handling of EnforceSmallerThan. Remove all types that are smaller from... · 74169dcf
      Craig Topper authored
      Improve handling of EnforceSmallerThan. Remove all types that are smaller from the larger set not just the smallest type from the smaller set. Ensure 'smaller' vectors have the same or fewer total bits. Similar for 'larger' vectors.
      
      llvm-svn: 200287
      74169dcf
    • Timur Iskhodzhanov's avatar
    • Michel Danzer's avatar
      R600/SI: Add pattern for truncating i32 to i1 · bf1a6410
      Michel Danzer authored
      
      
      Fixes half a dozen piglit tests with radeonsi.
      
      Reviewed-by: default avatarTom Stellard <thomas.stellard@amd.com>
      llvm-svn: 200283
      bf1a6410
    • Jakob Stoklund Olesen's avatar
      Fix the DWARF EH encodings for Sparc PIC code. · 83c67735
      Jakob Stoklund Olesen authored
      Also emit the stubs that were generated for references to typeinfo
      symbols.
      
      llvm-svn: 200282
      83c67735
    • Reid Kleckner's avatar
      Update optimization passes to handle inalloca arguments · 26af2cae
      Reid Kleckner authored
      Summary:
      I searched Transforms/ and Analysis/ for 'ByVal' and updated those call
      sites to check for inalloca if appropriate.
      
      I added tests for any change that would allow an optimization to fire on
      inalloca.
      
      Reviewers: nlewycky
      
      Differential Revision: http://llvm-reviews.chandlerc.com/D2449
      
      llvm-svn: 200281
      26af2cae
    • Reid Kleckner's avatar
      Test case for clobbers on cpuid in ms inline asm · 020acd88
      Reid Kleckner authored
      Tests r200279 in LLVM.
      
      llvm-svn: 200280
      020acd88
    • Reid Kleckner's avatar
      x86: add implicit defs for cpuid · b2340d4c
      Reid Kleckner authored
      This avoids miscompiling MS inline asm in LLVM where we have to infer
      clobbers.  Test case forthcoming in Clang.
      
      llvm-svn: 200279
      b2340d4c
    • Rui Ueyama's avatar
      [PECOFF] Replace magic numbers with sizeof. · 4aaba3e2
      Rui Ueyama authored
      llvm-svn: 200278
      4aaba3e2
    • Aaron Ballman's avatar
      Relaxing the alignment requirements for fields in a transparent_union. Emits... · 54fe5eb8
      Aaron Ballman authored
      Relaxing the alignment requirements for fields in a transparent_union. Emits the diagnostic only when subsequent alignments are more strict than the alignment required by the first field.
      
      Fixes PR15134
      
      llvm-svn: 200277
      54fe5eb8
    • Rui Ueyama's avatar
      [PECOFF] Convert more binary files to YAML. · bdc2fc36
      Rui Ueyama authored
      Because the object files are now readable to humans, I don't think we need the
      source assembly file any more, so I removed them too in this commit.
      
      llvm-svn: 200276
      bdc2fc36
    • Rui Ueyama's avatar
      [PECOFF] Remove a redundant test. · 6d3fee23
      Rui Ueyama authored
      peplus.test and pe32plus.test basically covered the same thing, so
      remove pe32plus.test and then rename peplus.test -> pe32plus.test.
      
      llvm-svn: 200275
      6d3fee23
    • Rui Ueyama's avatar
      dc2f00ee
    • Chandler Carruth's avatar
      [LPM] Fix PR18616 where the shifts to the loop pass manager to extract · d84f776e
      Chandler Carruth authored
      LCSSA from it caused a crasher with the LoopUnroll pass.
      
      This crasher is really nasty. We destroy LCSSA form in a suprising way.
      When unrolling a loop into an outer loop, we not only need to restore
      LCSSA form for the outer loop, but for all children of the outer loop.
      This is somewhat obvious in retrospect, but hey!
      
      While this seems pretty heavy-handed, it's not that bad. Fundamentally,
      we only do this when we unroll a loop, which is already a heavyweight
      operation. We're unrolling all of these hypothetical inner loops as
      well, so their size and complexity is already on the critical path. This
      is just adding another pass over them to re-canonicalize.
      
      I have a test case from PR18616 that is great for reproducing this, but
      pretty useless to check in as it relies on many 10s of nested empty
      loops that get unrolled and deleted in just the right order. =/ What's
      worse is that investigating this has exposed another source of failure
      that is likely to be even harder to test. I'll try to come up with test
      cases for these fixes, but I want to get the fixes into the tree first
      as they're causing crashes in the wild.
      
      llvm-svn: 200273
      d84f776e
    • Rui Ueyama's avatar
      s/0/nullptr/ · a709af28
      Rui Ueyama authored
      llvm-svn: 200272
      a709af28
    • Juergen Ributzka's avatar
      [TLI] Add a new hook to TargetLowering to query the target if a load of a... · 659ce00d
      Juergen Ributzka authored
      [TLI] Add a new hook to TargetLowering to query the target if a load of a constant should be converted to simply the constant itself.
      
      Before this patch we used getIntImmCost from TargetTransformInfo to determine if
      a load of a constant should be converted to just a constant, but the threshold
      for this was set to an arbitrary value. This value works well for the two
      targets (X86 and ARM) that implement this target-hook, but it isn't
      target-independent at all.
      
      Now targets have the possibility to decide directly if this optimization should
      be performed. The default value is set to false to preserve the current
      behavior. The target hook has been moved to TargetLowering, which removed the
      last use and need of TargetTransformInfo in SelectionDAG.
      
      llvm-svn: 200271
      659ce00d
    • Arnold Schwaighofer's avatar
      LoopVectorize: Support conditional stores by scalarizing · 18865db3
      Arnold Schwaighofer authored
      The vectorizer takes a loop like this and widens all instructions except for the
      store. The stores are scalarized/unrolled and hidden behind an "if" block.
      
        for (i = 0; i < 128; ++i) {
          if (a[i] < 10)
            a[i] += val;
        }
      
        for (i = 0; i < 128; i+=2) {
          v = a[i:i+1];
          v0 = (extract v, 0) + 10;
          v1 = (extract v, 1) + 10;
          if (v0 < 10)
            a[i] = v0;
          if (v1 < 10)
            a[i] = v1;
        }
      
      The vectorizer relies on subsequent optimizations to sink instructions into the
      conditional block where they are anticipated.
      
      The flag "vectorize-num-stores-pred" controls whether and how many stores to
      handle this way. Vectorization of conditional stores is disabled per default for
      now.
      
      This patch also adds a change to the heuristic when the flag
      "enable-loadstore-runtime-unroll" is enabled (off by default). It unrolls small
      loops until load/store ports are saturated. This heuristic uses TTI's
      getMaxUnrollFactor as a measure for load/store ports.
      
      I also added a second flag -enable-cond-stores-vec. It will enable vectorization
      of conditional stores. But there is no cost model for vectorization of
      conditional stores in place yet so this will not do good at the moment.
      
      rdar://15892953
      
      Results for x86-64 -O3 -mavx +/- -mllvm -enable-loadstore-runtime-unroll
      -vectorize-num-stores-pred=1 (before the BFI change):
      
       Performance Regressions:
         Benchmarks/Ptrdist/yacr2/yacr2 7.35% (maze3() is identical but 10% slower)
         Applications/siod/siod         2.18%
       Performance improvements:
         mesa                          -4.42%
         libquantum                    -4.15%
      
       With a patch that slightly changes the register heuristics (by subtracting the
       induction variable on both sides of the register pressure equation, as the
       induction variable is probably not really unrolled):
      
       Performance Regressions:
         Benchmarks/Ptrdist/yacr2/yacr2  7.73%
         Applications/siod/siod          1.97%
      
       Performance Improvements:
         libquantum                    -13.05% (we now also unroll quantum_toffoli)
         mesa                           -4.27%
      
      llvm-svn: 200270
      18865db3
    • Eric Christopher's avatar
      Revert r199871 and replace it with a simple check in the debug info · 2037caf8
      Eric Christopher authored
      code to see if we're emitting a function into a non-default
      text section. This is still a less-than-ideal solution, but more
      contained than r199871 to determine whether or not we're emitting
      code into an array of comdat sections.
      
      llvm-svn: 200269
      2037caf8
    • Kaelyn Uhrain's avatar
      Apply the typo correction replacement location fix from r191450 to the · 59baee84
      Kaelyn Uhrain authored
      case when correcting for too many arguments (r191450 had only fixed the
      problem for when there were too few arguments). Also fix the underlining
      for both cases.
      
      llvm-svn: 200268
      59baee84
    • Greg Clayton's avatar
      Fixed a crasher when handling process events that is due to a translation from... · c809cbcf
      Greg Clayton authored
      Fixed a crasher when handling process events that is due to a translation from the public API to the private API.
      
      llvm-svn: 200267
      c809cbcf
    • Todd Fiala's avatar
      Modified GDBProcessCommunicationServer to launch via the platform. · b8b49ec9
      Todd Fiala authored
      GDBProcessCommunicationServer now optionally takes a PlatformSP that
      defaults to the default platform for the host.
      GDBProcessCommunicationServer::LaunchProcess () now uses the platform
      to launch the process.
      
      lldb-gdbserver now takes an optional --platform={platform_plugin_name}
      or -p {platform_plugin_name} command line option. If no platform is
      specified, the default platform for the host is used; otherwise, if
      the platform_plugin_name matches a registered platform plugin or
      matches the default platform's name (which is not necessarily
      registered by name in the case of 'host'), that platform is used. If
      the platform name cannot be resolved, lldb-gdbserver exits after
      printing all the available platform plugin names and the default
      platform plugin name.
      
      llvm-svn: 200266
      b8b49ec9
    • Richard Smith's avatar
      Remove dead code; MacroDirective's IsHidden flag is always false. · 2e87e144
      Richard Smith authored
      llvm-svn: 200265
      2e87e144
    • Eric Christopher's avatar
      Reformat slightly. · f07ee3ae
      Eric Christopher authored
      llvm-svn: 200264
      f07ee3ae
    • Greg Clayton's avatar
      Merging the iohandler branch back into main. · 44d93782
      Greg Clayton authored
      The many many benefits include:
      1 - Input/Output/Error streams are now handled as real streams not a push style input
      2 - auto completion in python embedded interpreter
      3 - multi-line input for "script" and "expression" commands now allow you to edit previous/next lines using up and down arrow keys and this makes multi-line input actually a viable thing to use
      4 - it is now possible to use curses to drive LLDB (please try the "gui" command)
      
      We will need to deal with and fix any buildbot failures and tests and arise now that input/output and error are correctly hooked up in all cases.
      
      llvm-svn: 200263
      44d93782
    • Manman Ren's avatar
      PGO branch weight: keep halving the weights until they can fit into · f1cb16e4
      Manman Ren authored
      uint32.
      
      When folding branches to common destination, the updated branch weights
      can exceed uint32 by more than factor of 2. We should keep halving the
      weights until they can fit into uint32.
      
      llvm-svn: 200262
      f1cb16e4
  2. Jan 27, 2014
Loading