Skip to content
  1. Dec 11, 2017
  2. Dec 09, 2017
    • Dylan McKay's avatar
      Relax unaligned access assertion when type is byte aligned · 80463fe6
      Dylan McKay authored
      Summary:
      This relaxes an assertion inside SelectionDAGBuilder which is overly
      restrictive on targets which have no concept of alignment (such as AVR).
      
      In these architectures, all types are aligned to 8-bits.
      
      After this, LLVM will only assert that accesses are aligned on targets
      which actually require alignment.
      
      This patch follows from a discussion on llvm-dev a few months ago
      http://llvm.1065342.n5.nabble.com/llvm-dev-Unaligned-atomic-load-store-td112815.html
      
      Reviewers: bogner, nemanjai, joerg, efriedma
      
      Reviewed By: efriedma
      
      Subscribers: efriedma, cactus, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D39946
      
      llvm-svn: 320243
      80463fe6
    • Evgeniy Stepanov's avatar
      Hardware-assisted AddressSanitizer (llvm part). · c667c1f4
      Evgeniy Stepanov authored
      Summary:
      This is LLVM instrumentation for the new HWASan tool. It is basically
      a stripped down copy of ASan at this point, w/o stack or global
      support. Instrumenation adds a global constructor + runtime callbacks
      for every load and store.
      
      HWASan comes with its own IR attribute.
      
      A brief design document can be found in
      clang/docs/HardwareAssistedAddressSanitizerDesign.rst (submitted earlier).
      
      Reviewers: kcc, pcc, alekseyshl
      
      Subscribers: srhines, mehdi_amini, mgorny, javed.absar, eraman, llvm-commits, hiraditya
      
      Differential Revision: https://reviews.llvm.org/D40932
      
      llvm-svn: 320217
      c667c1f4
    • Paul Robinson's avatar
      Fix out-of-order stepping behavior in programs with sunk instructions. · 8bd9d6ad
      Paul Robinson authored
      MachineSink attempts to place instructions near the basic blocks where
      they are needed.  Once an instruction has been sunk, its location
      relative to other instructions no longer is consistent with the
      original source code. In order to ensure correct stepping in the
      debugger, the debug location for sunk instructions is either merged
      with the insertion point or erased if the target successor block is
      empty.
      
      Originally submitted as r318679, revised to fix sanitizer failure and
      improve testing.
      
      Patch by Matthew Voss!
      
      Differential Revision: https://reviews.llvm.org/D39933
      
      llvm-svn: 320216
      8bd9d6ad
  3. Dec 08, 2017
  4. Dec 07, 2017
    • Francis Visoiu Mistrih's avatar
      [CodeGen] Fix index when printing tied machine operands · e6fc3ce4
      Francis Visoiu Mistrih authored
      llvm-svn: 320061
      e6fc3ce4
    • Sanjay Patel's avatar
      [DAGCombiner] eliminate shuffle of insert element · 9012391a
      Sanjay Patel authored
      I noticed this pattern in D38316 / D38388. We failed to combine a shuffle that is either 
      repeating a scalar insertion at the same position in a vector or translated to a different 
      element index.
      
      Like the earlier patch, this could be an instcombine too, but since we opted to make this 
      a DAG transform earlier, I've made this one a DAG patch too.
      
      We do not need any legality checking because the new insert is identical to the existing 
      insert except that it may have a different constant insertion operand.
      
      The constant insertion test in test/CodeGen/X86/vector-shuffle-combining.ll was the 
      motivation for D38756.
      
      Differential Revision: https://reviews.llvm.org/D40209
      
      llvm-svn: 320050
      9012391a
    • Francis Visoiu Mistrih's avatar
      [CodeGen] Use more getMFIfAvailable · 567611ef
      Francis Visoiu Mistrih authored
      llvm-svn: 320046
      567611ef
    • Francis Visoiu Mistrih's avatar
      [CodeGen] Use MachineOperand::print in the MIRPrinter for MO_Register. · a8a83d15
      Francis Visoiu Mistrih authored
      Work towards the unification of MIR and debug output by refactoring the
      interfaces.
      
      For MachineOperand::print, keep a simple version that can be easily called
      from `dump()`, and a more complex one which will be called from both the
      MIRPrinter and MachineInstr::print.
      
      Add extra checks inside MachineOperand for detached operands (operands
      with getParent() == nullptr).
      
      https://reviews.llvm.org/D40836
      
      * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" -o -name "*.s" \) -type f -print0 | xargs -0 sed -i '' -E 's/kill: ([^ ]+) ([^ ]+)<def> ([^ ]+)/kill: \1 def \2 \3/g'
      * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" -o -name "*.s" \) -type f -print0 | xargs -0 sed -i '' -E 's/kill: ([^ ]+) ([^ ]+) ([^ ]+)<def>/kill: \1 \2 def \3/g'
      * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" -o -name "*.s" \) -type f -print0 | xargs -0 sed -i '' -E 's/kill: def ([^ ]+) ([^ ]+) ([^ ]+)<def>/kill: def \1 \2 def \3/g'
      * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" -o -name "*.s" \) -type f -print0 | xargs -0 sed -i '' -E 's/<def>//g'
      * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" -o -name "*.s" \) -type f -print0 | xargs -0 sed -i '' -E 's/([^ ]+)<kill>/killed \1/g'
      * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" -o -name "*.s" \) -type f -print0 | xargs -0 sed -i '' -E 's/([^ ]+)<imp-use,kill>/implicit killed \1/g'
      * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" -o -name "*.s" \) -type f -print0 | xargs -0 sed -i '' -E 's/([^ ]+)<dead>/dead \1/g'
      * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" -o -name "*.s" \) -type f -print0 | xargs -0 sed -i '' -E 's/([^ ]+)<def[ ]*,[ ]*dead>/dead \1/g'
      * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" -o -name "*.s" \) -type f -print0 | xargs -0 sed -i '' -E 's/([^ ]+)<imp-def[ ]*,[ ]*dead>/implicit-def dead \1/g'
      * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" -o -name "*.s" \) -type f -print0 | xargs -0 sed -i '' -E 's/([^ ]+)<imp-def>/implicit-def \1/g'
      * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" -o -name "*.s" \) -type f -print0 | xargs -0 sed -i '' -E 's/([^ ]+)<imp-use>/implicit \1/g'
      * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" -o -name "*.s" \) -type f -print0 | xargs -0 sed -i '' -E 's/([^ ]+)<internal>/internal \1/g'
      * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" -o -name "*.s" \) -type f -print0 | xargs -0 sed -i '' -E 's/([^ ]+)<undef>/undef \1/g'
      
      llvm-svn: 320022
      a8a83d15
    • Craig Topper's avatar
      [SelectionDAG] In SplitVecOp_EXTRACT_VECTOR_ELT, simplify the code that makes... · dfecd45f
      Craig Topper authored
      [SelectionDAG] In SplitVecOp_EXTRACT_VECTOR_ELT, simplify the code that makes the type byte addressable.
      
      We can just extend the original vector to vXi1 and trust that the legalization process will revisit it.
      
      llvm-svn: 320013
      dfecd45f
    • Craig Topper's avatar
      [SelectionDAG] Use TLI.getVectorIdxTy to determine type for an... · 26ed8d12
      Craig Topper authored
      [SelectionDAG] Use TLI.getVectorIdxTy to determine type for an EXTRACT_VECTOR_ELT index instead of hardcoding MVT::i8.
      
      llvm-svn: 320012
      26ed8d12
    • Mikael Holmen's avatar
      Skip DBG instr in OptimizePHIs when looking for dead PHI cycles · b5deac44
      Mikael Holmen authored
      Summary:
      Changed use_instructions() to use_nodbg_instructions() when
      building an instruction set.
      
      We don't want the presence of debug info to affect the code
      we generate.
      
      Reviewers: dblaikie, Eugene.Zelenko, chandlerc, aprantl
      
      Reviewed By: aprantl
      
      Subscribers: aprantl, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D40882
      
      llvm-svn: 320010
      b5deac44
    • Sam Clegg's avatar
      [WebAssembly] section kind can be code · e1694f9b
      Sam Clegg authored
      Currently, when creating a named section, the Wasm
      frontend forces it to use `SectionKind::Data`, whereas
      in fact C++ does generate code sections with custom
      names.
      
      Patch by Nicholas Wilson
      
      Differential Revision: https://reviews.llvm.org/D40906
      
      llvm-svn: 320002
      e1694f9b
  5. Dec 06, 2017
  6. Dec 05, 2017
    • Hans Wennborg's avatar
      Re-commit r319490 "XOR the frame pointer with the stack cookie when protecting the stack" · 5df9f087
      Hans Wennborg authored
      The patch originally broke Chromium (crbug.com/791714) due to its failing to
      specify that the new pseudo instructions clobber EFLAGS. This commit fixes
      that.
      
      > Summary: This strengthens the guard and matches MSVC.
      >
      > Reviewers: hans, etienneb
      >
      > Subscribers: hiraditya, JDevlieghere, vlad.tsyrklevich, llvm-commits
      >
      > Differential Revision: https://reviews.llvm.org/D40622
      
      llvm-svn: 319824
      5df9f087
    • Craig Topper's avatar
      [SelectionDAG] Remove the code that handles SETCC with a scalar result type from vector widening. · 8adcbe8c
      Craig Topper authored
      There's no such thing as a setcc with vector operands and scalar result. And if we're trying to widen the result we would have to already be looking at a vector result type.
      
      So this patch renames the VSETCC function as the SETCC function and delete the original SETCC function.
      
      llvm-svn: 319799
      8adcbe8c
    • Craig Topper's avatar
      [SelectionDAG] Remove unused method declaration. · 558cc48b
      Craig Topper authored
      The method implementation was removed in r318982.
      
      llvm-svn: 319798
      558cc48b
    • Sam Parker's avatar
      [DAGCombine] Move AND nodes to multiple load leaves · 0a436a9d
      Sam Parker authored
      Search from AND nodes to find whether they can be propagated back to
      loads, so that the AND and load can be combined into a narrow load.
      We search through OR, XOR and other AND nodes and all bar one of the
      leaves are required to be loads or constants. The exception node then
      needs to be masked off meaning that the 'and' isn't removed, but the
      loads(s) are narrowed still.
      
      Differential Revision: https://reviews.llvm.org/D39604
      
      llvm-svn: 319773
      0a436a9d
    • Bjorn Pettersson's avatar
      [DAGCombine] Handle big endian correctly in CombineConsecutiveLoads · 823b299f
      Bjorn Pettersson authored
      Summary:
      Found out, at code inspection, that there was a fault in
      DAGCombiner::CombineConsecutiveLoads for big-endian targets.
      
      A BUILD_PAIR is always having the least significant bits of
      the composite value in element 0. So when we are doing the checks
      for consecutive loads, for big endian targets, we should check
      if the load to elt 1 is at the lower address and the load
      to elt 0 is at the higher address.
      
      Normally this bug only resulted in missed oppurtunities for
      doing the load combine. I guess that in some rare situation it
      could lead to faulty combines, but I've not seen that happen.
      
      Note that this patch actually will trigger load combine for
      some big endian regression tests.
      One example is test/CodeGen/PowerPC/anon_aggr.ll where we now get
        t76: i64,ch = load<LD8[FixedStack-9]
      instead of
        t37: i32,ch = load<LD4[FixedStack-10]>
        t35: i32,ch = load<LD4[FixedStack-9]>
        t41: i64 = build_pair t37, t35
      before legalization. Then the legalization will split the LD8
      into two loads, so the end result is the same. That should
      verify that the transfomation is correct now.
      
      Reviewers: niravd, hfinkel
      
      Reviewed By: niravd
      
      Subscribers: nemanjai, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D40444
      
      llvm-svn: 319771
      823b299f
    • Sam Parker's avatar
      [DAGCombine] isLegalNarrowLoad function (NFC) · 8b73630c
      Sam Parker authored
      Pull the checks upon the load out from ReduceLoadWidth into their own
      function.
      
      Differential Revision: https://reviews.llvm.org/D40833
      
      llvm-svn: 319766
      8b73630c
    • Jonas Paulsson's avatar
      [Regalloc] Generate and store multiple regalloc hints. · 86c40db4
      Jonas Paulsson authored
      MachineRegisterInfo used to allow just one regalloc hint per virtual
      register. This patch extends this to a vector of regalloc hints, which is
      filled in by common code with sorted copy hints. Such hints will make for
      more ID copies that can be removed.
      
      NB! This improvement is currently (and hopefully temporarily) *disabled* by
      default, except for SystemZ. The only reason for this is the big impact this
      has on tests, which has unfortunately proven unmanageable. It was a long
      while since all the tests were updated and just waiting for review (which
      didn't happen), but now targets have to enable this themselves
      instead. Several targets could get a head-start by downloading the tests
      updates from the Phabricator review. Thanks to those who helped, and sorry
      you now have to do this step yourselves.
      
      This should be an improvement generally for any target!
      
      The target may still create its own hint, in which case this has highest
      priority and is stored first in the vector. If it has target-type, it will
      not be recomputed, as per the previous behaviour.
      
      The temporary hook enableMultipleCopyHints() will be removed as soon as all
      targets return true.
      
      Review: Quentin Colombet, Ulrich Weigand.
      https://reviews.llvm.org/D38128
      
      llvm-svn: 319754
      86c40db4
    • Craig Topper's avatar
      [SelectionDAG] Use WidenTargetBoolean in WidenVecRes_MLOAD and... · 98495291
      Craig Topper authored
      [SelectionDAG] Use WidenTargetBoolean in WidenVecRes_MLOAD and WidenVecOp_MSTORE instead of implementing it manually and incorrectly.
      
      The CONCAT_VECTORS operand get its type from getSetCCResultType, but if the mask type and the setcc have different scalar sizes this creates an illegal CONCAT_VECTORS operation. The concat type should be 2x the mask type, and then an extend should be added if needed.
      
      llvm-svn: 319744
      98495291
    • Daniel Sanders's avatar
      Revert r319691: [globalisel][tablegen] Split atomic load/store into separate... · 3c1c4c0e
      Daniel Sanders authored
      Revert r319691: [globalisel][tablegen] Split atomic load/store into separate opcode and enable for AArch64.
      
      Some concerns were raised with the direction. Revert while we discuss it and look into an alternative
      
      llvm-svn: 319739
      3c1c4c0e
    • Matthias Braun's avatar
      MachineFrameInfo: Cleanup some parameter naming inconsistencies; NFC · 7afbfd0f
      Matthias Braun authored
      Consistently use the same parameter names as the names of the affected
      fields. This avoids some unintuitive abbreviations like `isSS`.
      
      llvm-svn: 319722
      7afbfd0f
    • Matthias Braun's avatar
      TwoAddressInstructionPass: Trigger -O0 behavior on optnone · 62378bb5
      Matthias Braun authored
      While we cannot skip the whole TwoAddressInstructionPass even for -O0
      there are some parts of the pass that are currently skipped at -O0 but
      not for optnone. Changing this as there is no reason to have those two
      hit different code paths here.
      
      llvm-svn: 319721
      62378bb5
Loading