| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Refactor. | Devang Patel | 2011-01-26 | 1 | -19/+30 | |
| | | | | | llvm-svn: 124300 | |||||
| * | [AVX] Support EXTRACT_SUBVECTOR on x86. This provides a default | David Greene | 2011-01-26 | 4 | -5/+37 | |
| | | | | | | | | | implementation of EXTRACT_SUBVECTOR for x86, going through the stack in a similr fashion to how the codegen implements BUILD_VECTOR. Eventually this will get matched to VEXTRACTF128 if AVX is available. llvm-svn: 124292 | |||||
| * | fix the encoding and add testcases for ARM nop, yield, wfe and wfi instructions | Bruno Cardoso Lopes | 2011-01-26 | 1 | -0/+1 | |
| | | | | | llvm-svn: 124288 | |||||
| * | Fix PR9039, a use-after-free in reassociate. The issue was that the | Duncan Sands | 2011-01-26 | 1 | -4/+11 | |
| | | | | | | | | | operand being factorized (and erased) could occur several times in Ops, resulting in freed memory being used when the next occurrence in Ops was analyzed. llvm-svn: 124287 | |||||
| * | AttrListPtr has an overloaded operator== which does this for us, we should use | Nick Lewycky | 2011-01-26 | 2 | -12/+7 | |
| | | | | | | | it. No functionality change! llvm-svn: 124286 | |||||
| * | Teach mergefunc that intptr_t is the same width as a pointer. We still can't | Nick Lewycky | 2011-01-26 | 1 | -1/+7 | |
| | | | | | | | | merge vector<intptr_t>::push_back() and vector<void*>::push_back() because Enumerate() doesn't realize that "i64* null" and "i8** null" are equivalent. llvm-svn: 124285 | |||||
| * | There are no vectors of pointer or arrays, so we don't need to check vector | Nick Lewycky | 2011-01-26 | 1 | -7/+1 | |
| | | | | | | | elements for type equivalence. llvm-svn: 124284 | |||||
| * | APInt has a method for determining whether a number is a power of 2 | Duncan Sands | 2011-01-26 | 1 | -1/+1 | |
| | | | | | | | which is more efficient than countPopulation - use it. llvm-svn: 124283 | |||||
| * | Fix memory corruption. If one of the SCEV creation functions calls another but | Nick Lewycky | 2011-01-26 | 1 | -0/+2 | |
| | | | | | | | | doesn't return immediately after then the insert position in UniqueSCEVs will be out of date. No test because this is a memory corruption issue. Fixes PR9051! llvm-svn: 124282 | |||||
| * | Separate out the constant bonus from the size reduction metrics. Rework | Eric Christopher | 2011-01-26 | 1 | -82/+85 | |
| | | | | | | | | | | a few loops accordingly. Should be no functional change. This is a step for more accurate cost/benefit analysis of devirt/inlining bonuses. llvm-svn: 124275 | |||||
| * | Add needed braces. | Bill Wendling | 2011-01-26 | 1 | -1/+2 | |
| | | | | | llvm-svn: 124273 | |||||
| * | Target/X86: Tweak win64's tailcall. | NAKAMURA Takumi | 2011-01-26 | 7 | -12/+49 | |
| | | | | | llvm-svn: 124272 | |||||
| * | Fix whitespace. | NAKAMURA Takumi | 2011-01-26 | 6 | -132/+129 | |
| | | | | | llvm-svn: 124270 | |||||
| * | lib/Target/X86/X86RegisterInfo.cpp: Fix whitespace. | NAKAMURA Takumi | 2011-01-26 | 1 | -3/+3 | |
| | | | | | llvm-svn: 124268 | |||||
| * | lib/Target/X86/X86RegisterInfo.cpp: Fix a typo in comment. | NAKAMURA Takumi | 2011-01-26 | 1 | -1/+1 | |
| | | | | | llvm-svn: 124267 | |||||
| * | Coding style formatting changes. | Eric Christopher | 2011-01-26 | 1 | -7/+2 | |
| | | | | | llvm-svn: 124260 | |||||
| * | Rename member variables to follow the rest of LLVM. | Jakob Stoklund Olesen | 2011-01-26 | 2 | -295/+295 | |
| | | | | | | | No functional change. llvm-svn: 124257 | |||||
| * | Provide an interface to transfer SDDbgValue from one SDNode to another. | Devang Patel | 2011-01-25 | 2 | -0/+25 | |
| | | | | | llvm-svn: 124245 | |||||
| * | Revert 124230. It was causing test failures. | Bill Wendling | 2011-01-25 | 1 | -4/+2 | |
| | | | | | llvm-svn: 124233 | |||||
| * | The floating point value is encoded in its binary form as an Imm. Convert it | Bill Wendling | 2011-01-25 | 1 | -2/+4 | |
| | | | | | | | appropriately so that it prints out the decimal representation. llvm-svn: 124230 | |||||
| * | Add support for parsing a Real value. It stores the Real value as its binary | Bill Wendling | 2011-01-25 | 1 | -1/+7 | |
| | | | | | | | | encoding. It's up to the individual back-ends to convert it to their preferred representation when printing. llvm-svn: 124229 | |||||
| * | Move unnamed_addr after the function arguments on Sabre's request. | Rafael Espindola | 2011-01-25 | 2 | -6/+6 | |
| | | | | | llvm-svn: 124209 | |||||
| * | Resolve DanglingDbgValue of PHI nodes where the use follows dbg.value ↵ | Devang Patel | 2011-01-25 | 1 | -1/+3 | |
| | | | | | | | intrinisic. llvm-svn: 124203 | |||||
| * | This assertion is too restrictive, it does not apply for dangling dbg value ↵ | Devang Patel | 2011-01-25 | 1 | -8/+0 | |
| | | | | | | | nodes (nodes where dbg.value intrinsic preceds use of the value). llvm-svn: 124202 | |||||
| * | In which I discover that zero+zero is zero, d'oh! | Duncan Sands | 2011-01-25 | 1 | -3/+3 | |
| | | | | | llvm-svn: 124188 | |||||
| * | See if this fixes llvm-gcc bootstrap. | Duncan Sands | 2011-01-25 | 1 | -1/+2 | |
| | | | | | llvm-svn: 124184 | |||||
| * | According to my auto-simplifier the most common missed simplifications in | Duncan Sands | 2011-01-25 | 2 | -13/+228 | |
| | | | | | | | | | | | | optimized code are: (non-negative number)+(power-of-two) != 0 -> true and (x | 1) != 0 -> true Instcombine knows about the second one of course, but only does it if X|1 has only one use. These fire thousands of times in the testsuite. llvm-svn: 124183 | |||||
| * | Teach mergefunc how to emit aliases safely again -- but keep it turned it off | Nick Lewycky | 2011-01-25 | 1 | -25/+79 | |
| | | | | | | | | for now. It's controlled by the HasGlobalAliases variable which is not attached to any flag yet. llvm-svn: 124182 | |||||
| * | Reorganize this so that the early exit and special cases come early | Eric Christopher | 2011-01-25 | 1 | -26/+26 | |
| | | | | | | | rather than interspersed. No functional change. llvm-svn: 124168 | |||||
| * | Don't merge restore with tail call instruction. | Evan Cheng | 2011-01-25 | 1 | -1/+6 | |
| | | | | | llvm-svn: 124167 | |||||
| * | Provide correct registers for EH stuff on ARM | Anton Korobeynikov | 2011-01-24 | 1 | -3/+4 | |
| | | | | | llvm-svn: 124151 | |||||
| * | Support printing exception section into the current one. This is the case ↵ | Anton Korobeynikov | 2011-01-24 | 1 | -1/+2 | |
| | | | | | | | when LSDASection is blank llvm-svn: 124150 | |||||
| * | Speculatively revert r124138. | Devang Patel | 2011-01-24 | 1 | -3/+1 | |
| | | | | | llvm-svn: 124142 | |||||
| * | Resolve DanglingDbgValue of PHI nodes where the use follows dbg.value ↵ | Devang Patel | 2011-01-24 | 1 | -1/+3 | |
| | | | | | | | intrinisic. llvm-svn: 124138 | |||||
| * | Temporarily workaround JM/lencod miscompile (SIGSEGV). | Andrew Trick | 2011-01-24 | 1 | -0/+2 | |
| | | | | | | | rdar://problem/8893967 llvm-svn: 124137 | |||||
| * | Give GetUnderlyingObject a TargetData, to keep it in sync | Dan Gohman | 2011-01-24 | 8 | -16/+19 | |
| | | | | | | | | | | | | with BasicAA's DecomposeGEPExpression, which recently began using a TargetData. This fixes PR8968, though the testcase is awkward to reduce. Also, update several off GetUnderlyingObject's users which happen to have a TargetData handy to pass it in. llvm-svn: 124134 | |||||
| * | fix PR8928 by clearing a stale map, patch by Jakub Staszak! | Chris Lattner | 2011-01-24 | 1 | -0/+1 | |
| | | | | | llvm-svn: 124132 | |||||
| * | Handle strings in section names the same way as gas: | Rafael Espindola | 2011-01-24 | 1 | -3/+14 | |
| | | | | | | | | * If the name is a single string, we remove the quotes * If the name starts without a quote, we include any quotes in the name llvm-svn: 124127 | |||||
| * | Add a comment. | Dan Gohman | 2011-01-24 | 1 | -0/+1 | |
| | | | | | llvm-svn: 124126 | |||||
| * | Support/CommandLine: Fix LookupNearestOption to also search extra option names. | Daniel Dunbar | 2011-01-24 | 1 | -10/+25 | |
| | | | | | llvm-svn: 124124 | |||||
| * | fix a missing shuffle pattern, PR9009. Patch by Artiom Myaskouvskey! | Chris Lattner | 2011-01-24 | 1 | -0/+3 | |
| | | | | | llvm-svn: 124102 | |||||
| * | fix PR9017, a bug where we'd assert when promoting in unreachable | Chris Lattner | 2011-01-24 | 1 | -0/+3 | |
| | | | | | | | code. llvm-svn: 124100 | |||||
| * | fix PR9015, a crash linking recursive metadata. | Chris Lattner | 2011-01-24 | 1 | -6/+11 | |
| | | | | | llvm-svn: 124099 | |||||
| * | this isn't a memset, we do convert dest[i] to one though :) | Chris Lattner | 2011-01-24 | 1 | -8/+0 | |
| | | | | | llvm-svn: 124097 | |||||
| * | with recent work, we now optimize this into: | Chris Lattner | 2011-01-24 | 1 | -20/+0 | |
| | | | | | | | | | | | | define i32 @foo(i32 %x) nounwind readnone ssp { entry: %tobool = icmp eq i32 %x, 0 %tmp5 = select i1 %tobool, i32 2, i32 1 ret i32 %tmp5 } llvm-svn: 124091 | |||||
| * | enhance SRoA to promote allocas that are used by PHI nodes. This often | Chris Lattner | 2011-01-24 | 1 | -26/+157 | |
| | | | | | | | | | | | occurs because instcombine sinks loads and inserts phis. This kicks in on such apps as 175.vpr, eon, 403.gcc, xalancbmk and a bunch of times in spec2006 in some app that uses std::deque. This resolves the last of rdar://7339113. llvm-svn: 124090 | |||||
| * | Enhance SRoA to promote allocas that are used by selects in some | Chris Lattner | 2011-01-23 | 1 | -1/+132 | |
| | | | | | | | | | | | | | | | | | | | | | common cases. This triggers a surprising number of times in SPEC2K6 because min/max idioms end up doing this. For example, code from the STL ends up looking like this to SRoA: %202 = load i64* %__old_size, align 8, !tbaa !3 %203 = load i64* %__old_size, align 8, !tbaa !3 %204 = load i64* %__n, align 8, !tbaa !3 %205 = icmp ult i64 %203, %204 %storemerge.i = select i1 %205, i64* %__n, i64* %__old_size %206 = load i64* %storemerge.i, align 8, !tbaa !3 We can now promote both the __n and the __old_size allocas. This addresses another chunk of rdar://7339113, poor codegen on stringswitch. llvm-svn: 124088 | |||||
| * | teach Value::isDereferenceablePointer that byval arguments are always | Chris Lattner | 2011-01-23 | 1 | -0/+4 | |
| | | | | | | | dereferencable, noticed by inspection. llvm-svn: 124085 | |||||
| * | Add a memset loop that LoopIdiomRecognize doesn't recognize. | Anders Carlsson | 2011-01-23 | 1 | -0/+8 | |
| | | | | | llvm-svn: 124082 | |||||
| * | Simplify some code with no functionality change. Make the test a lot more | Nick Lewycky | 2011-01-23 | 1 | -12/+4 | |
| | | | | | | | robust against smarter optimizations, using the power of FileCheck. llvm-svn: 124081 | |||||

