- 585c401 Add a comment to this test. by Dan Gohman · 15 years ago
- 9f93d30 ScalarEvolution support for <= and >= loops. by Dan Gohman · 15 years ago
- 1210446 fix some failures my callgraph dump format change broke. by Chris Lattner · 15 years ago
- ddb3eaf Don't attempt to analyze values which are obviously undef. This fixes some by Dan Gohman · 15 years ago
- 27dead4 Generalize ScalarEvolution's PHI analysis to handle loops that don't by Dan Gohman · 15 years ago
- b57b6f1 Pointers to zero-sized objects don't point to overlapping objects. by Dan Gohman · 15 years ago
- d207558 add newlines at the end of files. by Chris Lattner · 15 years ago
- 20adc9d Reapply address space patch after fixing an issue in MemCopyOptimizer. by Mon P Wang · 15 years ago
- e754d3f Revert r100191 since it breaks objc in clang by Mon P Wang · 15 years ago
- e33c848 Reapply address space patch after fixing an issue in MemCopyOptimizer. by Mon P Wang · 15 years ago
- 100f090 Revert Mon Ping's change 99928, since it broke all the llvm-gcc buildbots. by Bob Wilson · 15 years ago
- 808bab0 Added support for address spaces and added a isVolatile field to memcpy, memmove, and memset, by Mon P Wang · 15 years ago
- 4ecbca5 Avoid analyzing instructions in blocks not reachable from the entry block. by Dan Gohman · 15 years ago
- 69ece93 remove andersen's tests. by Chris Lattner · 15 years ago
- 00cb5b7 Teach ScalarEvolution how to compute a tripcount for a loop with by Dan Gohman · 15 years ago
- 8a977e2 -disable-output is no longer needed with -analyze. by Dan Gohman · 15 years ago
- 52fddd3 Fix the the ceiling-division used in computing the MaxBECount so that it doesn't by Dan Gohman · 15 years ago
- 24dcbaf Fix PR6047 by Tobias Grosser · 15 years ago
- 3073329 Use WriteAsOperand instead of getName() to print loop header names, by Dan Gohman · 15 years ago
- aceba31 Delete useless trailing semicolons. by Dan Gohman · 15 years ago
- 0fce29b gvn is optimizing this better now. by Chris Lattner · 15 years ago
- 0488ecd Add a comment about A[i+(j+1)]. by Dan Gohman · 15 years ago
- 3c47f2d @test9 is a testcase for r89958. Before 89958, we misanalyzed the by Chris Lattner · 15 years ago
- 1ce0eaa Implement PR1143 (at -m64) by making basicaa look through extensions. We by Chris Lattner · 15 years ago
- fa39668 teach GetLinearExpression to be a bit more aggressive. by Chris Lattner · 15 years ago
- 856a72c update status of this. basicaa is much improved now, by Chris Lattner · 15 years ago
- 5d5261c Teach basicaa that x|c == x+c when the c bits of x are clear. This by Chris Lattner · 15 years ago
- f6ac4d9 teach basicaa that A[i] != A[i+1]. by Chris Lattner · 15 years ago
- 61d2462 rename test by Chris Lattner · 15 years ago
- d84eb91 Change the other half of aliasGEP (which handles GEP differencing) to use DecomposeGEPExpression. This dramatically simplifies and shrinks the code by eliminating the horrible CheckGEPInstructions method, fixes a miscompilation (@test3) and makes the code more aggressive. In particular, we now handle the @test4 case, which is reduced from the SmallPtrSet constructor. Missing this caused us to emit a variable length memset instead of a fixed size one. by Chris Lattner · 15 years ago
- 4b7d0d9 add a new random feature test by Chris Lattner · 15 years ago
- 4723303 remove a silly condition that doesn't make a lot of sense anymore. by Chris Lattner · 15 years ago
- 8e345a1 Update computeArraySize() to use ComputeMultiple() to determine the array size associated with a malloc; also extend PerformHeapAllocSRoA() to check if the optimized malloc's arg had its highest bit set, so that it is safe for ComputeMultiple() to look through sext instructions while determining the optimized malloc's array size by Victor Hernandez · 15 years ago
- 9d0b704 Re-commit r86077 now that r86290 fixes the 179.art and 175.vpr ARM regressions. by Victor Hernandez · 15 years ago
- df98761 Revert r86077 because it caused crashes in 179.art and 175.vpr on ARM by Victor Hernandez · 15 years ago
- 24f934d Update CreateMalloc so that its callers specify the size to allocate: by Victor Hernandez · 15 years ago
- b908f8a Make opt default to not adding a target data string and update tests that depend on target data to supply it within the test by Kenneth Uildriks · 15 years ago
- 4ea7d4c Convert Analysis tests to FileCheck in regards to PR5307. by Edward O'Callaghan · 15 years ago
- 6665b0e Teach BasicAA how to analyze Select instructions, and make it more by Dan Gohman · 15 years ago
- 5639cb6 Update these tests to match what Loop::print now prints. by Dan Gohman · 15 years ago
- ec63ad6 fix test by Chris Lattner · 15 years ago
- e62b263 tighten up test3, add test3a for the converse by Chris Lattner · 15 years ago
- 6e85d91 tighten test2, add a test that it doesn't get transformed in the invalid edge case. by Chris Lattner · 15 years ago
- 15d3c05 Merge tests into modref.ll. Also add a test for r84174 at Chris' behest! by Nick Lewycky · 15 years ago
- c1a38f5 Add a couple new testcases. by Nick Lewycky · 15 years ago
- a22922d replace a useless test with a useful one by Chris Lattner · 15 years ago
- ca55ee0 Make use of the result of the loads even though that means adding -instcombine. by Nick Lewycky · 15 years ago
- 681a33e Another BasicAA fix. If a value does not alias a GEP's base pointer, then it by Evan Cheng · 15 years ago
- 2c4f282 Replace test with a simpler hand crafted one. by Evan Cheng · 15 years ago
- 50a5914 Teach basic AA about PHI nodes. If all operands of a phi NoAlias another value than it's safe to declare the PHI NoAlias the value. Ditto for MustAlias. by Evan Cheng · 15 years ago
- 2d17506 don't use dead loads as tests. by Chris Lattner · 15 years ago
- 5c9be67 Teach BasicAA a little something about the atomic intrinsics: they can only by Nick Lewycky · 15 years ago
- 3e0c99a Revert 82694 "Auto-upgrade malloc instructions to malloc calls." because it causes regressions in the nightly tests. by Victor Hernandez · 15 years ago
- 96b930d Auto-upgrade malloc instructions to malloc calls. by Victor Hernandez · 15 years ago
- 1f96e67 Teach ScalarEvolution how to reason about no-wrap flags on loops by Dan Gohman · 15 years ago
- cabfea2 Eliminate more redundant llvm-as calls. by Dan Gohman · 15 years ago
- f2f6ce6 Change tests from "opt %s" to "opt < %s" so that opt doesn't see the by Dan Gohman · 15 years ago
- fce288f Eliminate more uses of llvm-as and llvm-dis. by Dan Gohman · 15 years ago
- 7c1a96c Convert a few more opt | llvm-dis to opt -S. by Dan Gohman · 15 years ago
- 3e054fe Use opt -S instead of piping bitcode output through llvm-dis. by Dan Gohman · 15 years ago
- b1e1e82 Change these tests to feed the assembly files to opt directly, instead by Dan Gohman · 15 years ago
- 365b18e Updated tests to use ProfileVerifer to test ProfileLoader and ProfileEstimator. by Andreas Neustifter · 15 years ago
- b5f2596 Revert "--- Reverse-merging r80908 into '.':", I already "fixed" this. by Daniel Dunbar · 15 years ago
- 1c5ffdf --- Reverse-merging r80908 into '.': D test/Analysis/Profiling by Bill Wendling · 15 years ago
- 57ed222 Disable some parts of the profiling-tool-chain test, which is currently failing by Daniel Dunbar · 15 years ago
- 3a22ff3 Reapply profiling tests. by Daniel Dunbar · 15 years ago
- ca172ae Removed temporarily because of breaking Darwin builds. by Andreas Neustifter · 15 years ago
- 793d4a8 Changed profiling-tool-chain.ll test to use optimal-edge-profiling instead of by Andreas Neustifter · 15 years ago
- 5458981 Don't force the triple or data layout in this test. We just have to get them by Daniel Dunbar · 15 years ago
- b2e673c rename test so that name reflects what it is testing for. by Chris Lattner · 15 years ago
- aaf6159 convert to filecheck format. by Chris Lattner · 15 years ago
- 1cb2de3 rm needs -f by Torok Edwin · 15 years ago
- 0debb15 Remove the llvmprof.out from the test output, otherwise running by Torok Edwin · 15 years ago
- 1896727 Remove profiling output file because two consecutive runs of make check give by Andreas Neustifter · 15 years ago
- cf4f719 Removed unnecessary file creation during test. by Andreas Neustifter · 15 years ago
- 82fdced Pulled all tests into one test. Removed some redundant tests. Rename. by Andreas Neustifter · 15 years ago
- 798261c Readded test from r79615, this tests the complete profiling tool chain. Furhter by Andreas Neustifter · 15 years ago
- 2385e0e Create a ScalarEvolution-based AliasAnalysis implementation. by Dan Gohman · 15 years ago
- 4678c2d Removed profiling test, lli not available on all platforms. by Andreas Neustifter · 15 years ago
- e879bda Added tests for Profiling Infrastructure. by Andreas Neustifter · 15 years ago
- 7a7be36 Loosen up the regex for this test so that it doesn't implicitly by Dan Gohman · 15 years ago
- 683e922 Make LLVM Assembly dramatically easier to read by aligning the comments, by Dan Gohman · 15 years ago
- e2652f2 Add another Strong-SIV testcase. by Andreas Bolka · 15 years ago
- bdab0e9 Fix Strong-SIV testcase. by Andreas Bolka · 15 years ago
- 831f6f6 ZIV tester for LDA. by Andreas Bolka · 15 years ago
- 7cf8503 Fix LDA testcases. by Andreas Bolka · 15 years ago
- c20a6fd Expand LDA testcases. by Andreas Bolka · 15 years ago
- 7b43f5c Slightly reformat LDA tests to ease grepping. by Andreas Bolka · 15 years ago
- 59858cf Change the assembly syntax for nsw, nuw, and exact, putting them by Dan Gohman · 15 years ago
- 19378d6 When attempting to sign-extend an addrec by interpreting by Dan Gohman · 15 years ago
- eb490a7 Teach ScalarEvolution to make use of no-overflow flags when by Dan Gohman · 15 years ago
- 0dcde10 FileCheck'ize and expand LDA testcases. by Andreas Bolka · 15 years ago
- 0f4b285 Replace the original ad-hoc code for determining whether (v pred w) implies by Dan Gohman · 15 years ago
- 19211b4 Add a testcase for PR4569, which is now fixed. by Dan Gohman · 15 years ago
- 969f28d Introduce a pointertracking pass. by Torok Edwin · 15 years ago
- 08d4ec0 Add testcases for PR4538, PR4537, and PR4534. by Dan Gohman · 15 years ago
- d1ec989 When comparing constants, consider a less wide constant to be "less complex" by Nick Lewycky · 15 years ago
- e9722fc Array accesses are independent if the underlying arrays differ. by Andreas Bolka · 15 years ago
- c6a3030 Print pairwise dependence results, add testcases. by Andreas Bolka · 15 years ago
- e56f4a4 Add a testcase demoing some of ScalarEvolution's new trip count logic. by Dan Gohman · 15 years ago