Skip to content
  1. Jun 05, 2015
    • Benjamin Kramer's avatar
      f2d06a57
    • Benjamin Kramer's avatar
      [ARM] Make helper function static. · 113b2a94
      Benjamin Kramer authored
      This one had a declaration but it differed from the definition so the
      declaration was actually dead.
      
      llvm-svn: 239157
      113b2a94
    • Yaron Keren's avatar
      Rangify for loops in LegacyPassManager.cpp. · 3b1e24be
      Yaron Keren authored
      llvm-svn: 239155
      3b1e24be
    • John Brawn's avatar
      [ARM] Add support for -sp- FPUs and FPU none to TargetParser · 985c04e8
      John Brawn authored
      These are added mainly for the benefit of clang, but this also means that they
      are now allowed in .fpu directives and we emit the correct .fpu directive when
      single-precision-only is used.
      
      Differential Revision: http://reviews.llvm.org/D10238
      
      llvm-svn: 239151
      985c04e8
    • John Brawn's avatar
      [ARM] Add knowledge of FPU subtarget features to TargetParser · d03d2292
      John Brawn authored
      Add getFPUFeatures to TargetParser, which gets the list of subtarget features
      that are enabled/disabled for each FPU, and use it when handling the .fpu
      directive.
      
      No functional change in this commit, though clang will start behaving
      differently once it starts using this.
      
      Differential Revision: http://reviews.llvm.org/D10237
      
      llvm-svn: 239150
      d03d2292
    • Artyom Skrobov's avatar
      [ARMTargetParser] Follow-up for r239099: one case was missed · acd1cd66
      Artyom Skrobov authored
      llvm-svn: 239147
      acd1cd66
    • Toma Tabacu's avatar
      Revert "[mips] [IAS] Restore STI.FeatureBits in .set pop." (r239144). · 399a56d7
      Toma Tabacu authored
      This is breaking the Windows buildbots.
      
      llvm-svn: 239145
      399a56d7
    • Toma Tabacu's avatar
      [mips] [IAS] Restore STI.FeatureBits in .set pop. · 89ebf88f
      Toma Tabacu authored
      Summary:
      Only restoring AvailableFeatures is not enough and will lead to buggy behaviour.
      For example, if we have a feature enabled and we ".set pop", the next time we try
      to ".set" that feature nothing will happen because the "!(STI.getFeatureBits()[Feature])"
      check will be false, because we didn't restore STI.FeatureBits.
      
      In order to fix this, we need to make MipsAssemblerOptions remember the STI.FeatureBits
      instead of the AvailableFeatures and then regenerate AvailableFeatures each time we ".set pop".
      This is because, AFAIK, there is no way to convert from AvailableFeatures back to STI.FeatureBits,
      but the reverse is possible by using ComputeAvailableFeatures(STI.FeatureBits).
      
      I also moved the updating of AssemblerOptions inside the "if" statement in
      setFeatureBits() and clearFeatureBits(), as there is no reason to update if
      nothing changes.
      
      Reviewers: dsanders, mkuper
      
      Reviewed By: dsanders
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D9156
      
      llvm-svn: 239144
      89ebf88f
    • David Majnemer's avatar
      [LoopVectorize] Don't crash on zero-sized types in isInductionPHI · b58f32f7
      David Majnemer authored
      isInductionPHI wants to calculate the stride based on the pointee size.
      However, this is not possible when the pointee is zero sized.
      
      This fixes PR23763.
      
      llvm-svn: 239143
      b58f32f7
    • Andrea Di Biagio's avatar
      Simplify code; NFC. · eb33134c
      Andrea Di Biagio authored
      Also, moved test cases from CodeGen/X86/fold-buildvector-bug.ll into
      CodeGen/X86/buildvec-insertvec.ll and regenerated CHECK lines using
      update_llc_test_checks.py.
      
      llvm-svn: 239142
      eb33134c
    • David Majnemer's avatar
      [InstCombine] Rephrase fix to SimplifyWithOpReplaced · 6d808183
      David Majnemer authored
      I don't have the IR which is causing the build bot breakage but I can
      postulate as to why they are timing out:
      1. SimplifyWithOpReplaced was stripping flags from the simplified value.
      2. visitSelectInstWithICmp was overriding SimplifyWithOpReplaced because
         it's simplification wasn't correct.
      3. InstCombine would revisit the add instruction and note that it can
         rederive the flags.
      4. By modifying the value, we chose to revisit instructions which reuse
         the value.  One of the instructions is the original select, causing
         LLVM to never reach fixpoint.
      
      Instead, strip the flags only when we are sure we are going to perform
      the simplification.
      
      llvm-svn: 239141
      6d808183
    • Daniel Jasper's avatar
      Revert "[InstCombine] Don't miscompile safe increment idiom" · 917fa5ee
      Daniel Jasper authored
      This is breaking a lot of build bots and is causing very long-running
      compiles (infinite loops)?
      
      Likely, we shouldn't return nullptr?
      
      llvm-svn: 239139
      917fa5ee
    • Justin Bogner's avatar
      InstrProf: Fix reading of consecutive 32 bit coverage maps · d49d8eec
      Justin Bogner authored
      When we generate coverage data, we explicitly set each coverage map's
      alignment to 8 (See InstrProfiling::lowerCoverageData), but when we
      read the coverage data, we assume consecutive maps are exactly
      adjacent. When we're dealing with 32 bit, maps can end on a 4 byte
      boundary, causing us to think the padding is part of the next record.
      
      Fix this by adjusting the buffer to an appropriately aligned address
      between records.
      
      This is pretty awkward to test, as it requires a binary with multiple
      coverage maps to hit, so we'd need to check in multiple source files
      and a binary blob as inputs.
      
      llvm-svn: 239129
      d49d8eec
    • Jim Grosbach's avatar
      MC: Clean up naming in MCObjectFileInfo.h. · bb2591f5
      Jim Grosbach authored
      Init*() methods to init*().
      
      llvm-svn: 239121
      bb2591f5
    • Jim Grosbach's avatar
      MC: Clean up the naming for MCMachObjectWriter. NFC. · 56ed0bb1
      Jim Grosbach authored
      s/ExecutePostLayoutBinding/executePostLayoutBinding/
      s/ComputeSymbolTable/computeSymbolTable/
      s/BindIndirectSymbols/bindIndirectSymbols/
      s/RecordTLVPRelocation/recordTLVPRelocation/
      s/RecordScatteredRelocation/recordScatteredRelocation/
      s/WriteLinkerOptionsLoadCommand/writeLinkerOptionsLoadCommand/
      s/WriteLinkeditLoadCommand/writeLinkeditLoadCommand/
      s/WriteNlist/writeNlist/
      s/WriteDysymtabLoadCommand/writeDysymtabLoadCommand/
      s/WriteSymtabLoadCommand/writeSymtabLoadCommand/
      s/WriteSection/writeSection/
      s/WriteSegmentLoadCommand/writeSegmentLoadCommand/
      s/WriteHeader/writeHeader/
      
      llvm-svn: 239119
      56ed0bb1
    • Alexey Samsonov's avatar
      [Object, ELF] Don't assert on invalid magic in createELFObjectFile. · 49179ddb
      Alexey Samsonov authored
      Instead, return a proper error code from factory.
      
      llvm-svn: 239116
      49179ddb
    • David Majnemer's avatar
      [InstCombine] Don't miscompile safe increment idiom · 00f7d9ec
      David Majnemer authored
      We cleverly handle cases where computation done in one argument of a select
      instruction is suitable for the other operand, thus obviating the need
      of the select and the comparison.  However, the other operand cannot
      have flags.
      
      This fixes PR23757.
      
      llvm-svn: 239115
      00f7d9ec
    • Swaroop Sridhar's avatar
      Statepoint: Fix handling of Far Immediate calls · 70d18df1
      Swaroop Sridhar authored
      gc.statepoint intrinsics with a far immediate call target 
      were lowered incorrectly as pc-rel32 calls.
      
      This change fixes the problem, and generates an indirect call 
      via a scratch register.
      
      For example: 
      
      Intrinsic:
        %safepoint_token = call i32 (i64, i32, void ()*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_isVoidf(i64 0, i32 0, void ()* inttoptr (i64 140727162896504 to void ()*), i32 0, i32 0, i32 0, i32 0)
      
      Old Incorrect Lowering:
        callq 140727162896504
      
      New Correct Lowering:
        movabsq $140727162896504, %rax 
        callq *%rax
      
      In lowerCallFromStatepoint(), the callee-target was modified and 
      represented as a "TargetConstant" node, rather than a "Constant" node.
      Undoing this modification enabled LowerCall() to generate the 
      correct CALL instruction.
      
      llvm-svn: 239114
      70d18df1
    • Alexey Samsonov's avatar
      [Object, ELF] Don't call llvm_unreachable() from createELFObjectFile. · 18ad2e54
      Alexey Samsonov authored
      Instead, return a proper error code from factory.
      
      llvm-svn: 239113
      18ad2e54
    • Charles Davis's avatar
      [Target/X86] Don't use callee-saved registers in a Win64 tail call on non-Windows. · da280728
      Charles Davis authored
      Summary:
      A small bit that I missed when I updated the X86 backend to account for
      the Win64 calling convention on non-Windows. Now we don't use dead
      non-volatile registers when emitting a Win64 indirect tail call on
      non-Windows.
      
      Should fix PR23710.
      
      Test Plan: Added test for the correct behavior based on the case I posted to PR23710.
      
      Reviewers: rnk
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D10258
      
      llvm-svn: 239111
      da280728
    • Alexey Samsonov's avatar
    • Alexey Samsonov's avatar
      [Object, MachO] Don't crash on incomplete MachO segment load commands. · f8a7bf8c
      Alexey Samsonov authored
      Report proper error code from MachOObjectFile constructor if we
      can't parse another segment load command (we already return a proper
      error if segment load command contents is suspicious).
      
      llvm-svn: 239109
      f8a7bf8c
    • Jim Grosbach's avatar
      MC: Clean up naming in MCObjectWriter. NFC. · 36e60e91
      Jim Grosbach authored
      s/WriteObject/writeObject/
      s/RecordRelocation/recordRelocation/
      s/IsSymbolRefDifferenceFullyResolved/isSymbolRefDifferenceFullyResolved/
      s/Write8/write8/
      s/WriteLE16/writeLE16/
      s/WriteLE32/writeLE32/
      s/WriteLE64/writeLE64/
      s/WriteBE16/writeBE16/
      s/WriteBE32/writeBE32/
      s/WriteBE64/writeBE64/
      s/Write16/write16/
      s/Write32/write32/
      s/Write64/write64/
      s/WriteZeroes/writeZeroes/
      s/WriteBytes/writeBytes/
      
      llvm-svn: 239108
      36e60e91
    • Alexey Samsonov's avatar
      [Object, MachO] Simplify load segment parsing code. NFC. · e1a76ab8
      Alexey Samsonov authored
      llvm-svn: 239106
      e1a76ab8
    • Benjamin Kramer's avatar
      [SDAG switch lowering] Fix switch case -> or merging for 0 and INT_MIN · ff0fb693
      Benjamin Kramer authored
      The big/small ordering here is based on signed values so SmallValue will
      be INT_MIN and BigValue 0. This shouldn't be a problem but the code
      assumed that BigValue always had more bits set than SmallValue.
      
      We used to just miss the transformation, but a recent refactoring of
      mine turned this into an assertion failure.
      
      llvm-svn: 239105
      ff0fb693
  2. Jun 04, 2015
    • Colin LeMahieu's avatar
      Revert r239095 incorrect test tree. · c40be85a
      Colin LeMahieu authored
      llvm-svn: 239102
      c40be85a
    • Jingyue Wu's avatar
      [NVPTX] roll forward r239082 · a2f6027a
      Jingyue Wu authored
      NVPTXISelDAGToDAG translates "addrspacecast to param" to
      NVPTX::nvvm_ptr_gen_to_param
      
      Added an llc test in bug21465.
      
      llvm-svn: 239100
      a2f6027a
    • Artyom Skrobov's avatar
      Simplify ARMTargetParser::getArchSynonym · 85aebc8c
      Artyom Skrobov authored
      Summary:
      1) The only caller, ARMTargetParser::parseArch, uses the results for an "endswith" test; so, including the "arm" prefix into the result is unnecessary.
      2) Most ARMTargetParser::parseArch callers pass it the output from ARMTargetParser::getCanonicalArchName; so, make this behaviour the default. Then, including the "arm" prefix into the cases is unnecessary.
      
      Reviewers: rengolin
      
      Reviewed By: rengolin
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D10249
      
      llvm-svn: 239099
      85aebc8c
    • Colin LeMahieu's avatar
      [Hexagon] Removing unused variable. · f99fe00a
      Colin LeMahieu authored
      llvm-svn: 239097
      f99fe00a
    • Benjamin Kramer's avatar
      [MachOWriter] Use for-range and roll some duplicated code into loops. · 1ec70d85
      Benjamin Kramer authored
      No functionality change intended.
      
      llvm-svn: 239096
      1ec70d85
    • Colin LeMahieu's avatar
      [Hexagon] Adding functionality for duplexing. Duplexing is a way to compress... · fc52c11d
      Colin LeMahieu authored
      [Hexagon] Adding functionality for duplexing.  Duplexing is a way to compress commonly used pairs of instructions in order to reduce code size.  The test case duplex.ll normally would be 8 bytes, assign register to 0 and jump to link register.  After duplexing this is only 4 bytes.  This also tests the HexagonMCShuffler code path which is used to make sure duplexed instructions still follow slot requirements.
      
      llvm-svn: 239095
      fc52c11d
    • Jingyue Wu's avatar
      Revert r239082 · b8f38668
      Jingyue Wu authored
      llc crashed for NVPTX backend
      
      llvm-svn: 239094
      b8f38668
    • Rafael Espindola's avatar
      Remove unused argument. NFC. · 57c80832
      Rafael Espindola authored
      llvm-svn: 239092
      57c80832
    • Sergey Dmitrouk's avatar
      Erase constant dbgloc on reuse in PHI node · 3160d02b
      Sergey Dmitrouk authored
      Basic block selection involves checking successor BBs for PHI nodes
      that depend on the current BB.  In case such BBs are found, the value
      being selected is a constant and such constant already exists in
      current BB, it's value is reused.
      
      This might lead to wrong locations in some situations, especially if
      same constant value ends up being materialized twice in two different
      ways, which discards that sharing and leaves us with wrong debug
      location in the successor BB.
      
      In code this involves the following sequence of calls:
      
       SelectionDAGBuilder::HandlePHINodesInSuccessorBlocks ->
       SelectionDAGBuilder::CopyValueToVirtualRegister ->
       SelectionDAGBuilder::getNonRegisterValue
      
      llvm-svn: 239089
      3160d02b
    • Ahmed Bougacha's avatar
      [GlobalMerge] Take into account minsize on Global users' parents. · 82076412
      Ahmed Bougacha authored
      Now that we can look at users, we can trivially do this: when we would
      have otherwise disabled GlobalMerge (currently -O<3), we can just run
      it for minsize functions, as it's usually a codesize win.
      
      Differential Revision: http://reviews.llvm.org/D10054
      
      llvm-svn: 239087
      82076412
    • Jim Grosbach's avatar
      MC: Remove obsolete MachO UseAggressiveSymbolFolding. · 7c76b4cc
      Jim Grosbach authored
      Fix the FIXME and remove this old as(1) compat option. It was useful for
      bringup of the integrated assembler to diff object files, but now it's
      just causing more relocations than strictly necessary to be generated.
      
      rdar://21201804
      
      llvm-svn: 239084
      7c76b4cc
    • Jingyue Wu's avatar
      [NVPTX] kernel pointer arguments point to the global address space · f3a8079b
      Jingyue Wu authored
      Summary:
      With this patch, NVPTXLowerKernelArgs converts a kernel pointer argument to a
      pointer in the global address space. This change, along with
      NVPTXFavorNonGenericAddrSpaces, allows the NVPTX backend to emit ld.global.*
      and st.global.* for accessing kernel pointer arguments.
      
      Minor changes:
      1. refactor: extract function convertToPointerInAddrSpace
      2. fix a bug in the test case in bug21465.ll
      
      Test Plan: lower-kernel-ptr-arg.ll
      
      Reviewers: eliben, meheff, jholewinski
      
      Reviewed By: jholewinski
      
      Subscribers: wengxt, jholewinski, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D10154
      
      llvm-svn: 239082
      f3a8079b
    • Alexey Samsonov's avatar
      [Object, MachO] Don't crash on invalid MachO segment load commands. · 074da9b5
      Alexey Samsonov authored
      Summary:
      Properly report the error in segment load commands from MachOObjectFile
      constructor instead of crashing the program.
      
      Adjust the test case accordingly.
      
      Test Plan: regression test suite
      
      Reviewers: rafael, filcab
      
      Subscribers: llvm-commits
      llvm-svn: 239081
      074da9b5
    • Alexey Samsonov's avatar
      [Object, MachO] Don't crash on invalid MachO load commands. · de5a94a6
      Alexey Samsonov authored
      Summary:
      Currently all load commands are parsed in MachOObjectFile constructor.
      If the next load command cannot be parsed, or if command size is too
      small, properly report it through the error code and fail to construct
      the object, instead of crashing the program.
      
      Test Plan: regression test suite
      
      Reviewers: rafael, filcab
      
      Subscribers: llvm-commits
      llvm-svn: 239080
      de5a94a6
    • Alexey Samsonov's avatar
      [Object, MachO] Don't crash on parsing invalid MachO header. · 9f336636
      Alexey Samsonov authored
      Summary: Instead, properly report this error from MachOObjectFile constructor.
      
      Test Plan: regression test suite
      
      Reviewers: rafael
      
      Subscribers: llvm-commits
      llvm-svn: 239078
      9f336636
Loading