summaryrefslogtreecommitdiff
path: root/test/Transforms/SimplifyLibCalls
Commit message (Expand)AuthorAge
* Move "atomic" and "volatile" designations on instructions after the opcodeEli Friedman2011-08-12
* rip out a ton of intrinsic modernization logic from AutoUpgrade.cpp, which isChris Lattner2011-06-18
* Preserve line number information while simplifying libcalls.Devang Patel2011-03-09
* Optimize fprintf -> iprintf if there are no floating point argumentsRichard Osborne2011-03-03
* Optimize sprintf -> siprintf if there are no floating point argumentsRichard Osborne2011-03-03
* Optimize printf -> iprintf if there are no floating point argumentsRichard Osborne2011-03-03
* Delete obsolete test.Dan Gohman2011-02-28
* SimplifyLibCalls: Add missing legalize check on various printf to puts andDaniel Dunbar2011-02-12
* tests: FileCheckizeDaniel Dunbar2011-02-12
* Revert r64460. strtol and friends cannot be marked readonly, even withDan Gohman2010-12-17
* Add a puts optimization that converts puts() to putchar('\n').Anders Carlsson2010-11-30
* Fix a typo.Anders Carlsson2010-11-30
* Rename this test to FPuts.ll since it actually tests fputs.Anders Carlsson2010-11-30
* Fix some broken CHECK lines.Benjamin Kramer2010-11-29
* test/Transforms/SimplifyLibCalls/floor.ll: Mark as XFAIL:win32 due to lack of...NAKAMURA Takumi2010-10-28
* Add constant folding for strspn and strcspn to SimplifyLibCalls.Benjamin Kramer2010-09-30
* Add strpbrk folding to SimplifyLibCalls.Benjamin Kramer2010-09-29
* Simplify the loop in StrChrOptimizer. FileCheckize test.Benjamin Kramer2010-09-29
* Teach SimplifyLibCalls how to optimize strrchr.Benjamin Kramer2010-09-29
* Make sure that simplify libcalls does not replace a call with one callingRafael Espindola2010-06-16
* simplify-libcalls: fold strncmp(x, y, 1) -> memcmp(x, y, 1)Benjamin Kramer2010-06-16
* simplify-libcalls: fold strstr(a, b) == a -> strncmp(a, b, strlen(b)) == 0Benjamin Kramer2010-06-15
* The memcpy intrinsic only takes i8* for %src and %dst, so cast them to thatNick Lewycky2010-05-31
* Properly promote operands when optimizing a single-character memcmp.Benjamin Kramer2010-05-25
* Reapply address space patch after fixing an issue in MemCopyOptimizer.Mon P Wang2010-04-04
* Revert r100191 since it breaks objc in clang Mon P Wang2010-04-02
* Reapply address space patch after fixing an issue in MemCopyOptimizer.Mon P Wang2010-04-02
* Revert Mon Ping's change 99928, since it broke all the llvm-gcc buildbots.Bob Wilson2010-03-30
* Added support for address spaces and added a isVolatile field to memcpy, memm...Mon P Wang2010-03-30
* Teach simplify libcall to transform __strcpy_chk to __memcpy_chk to enable op...Evan Cheng2010-03-23
* Migrate _chk call lowering from SimplifyLibCalls to InstCombine. StubEric Christopher2010-03-06
* Safely turn memset_chk etc. to non-chk variant if the known object size is >=...Evan Cheng2010-03-05
* Recommit this, looks like it wasn't the cause.Eric Christopher2010-02-03
* Hopefully temporarily revert this.Eric Christopher2010-02-02
* Re-add strcmp and known size object size checking optimization.Eric Christopher2010-02-02
* Revert my last couple of patches. They appear to have broken bison.Eric Christopher2010-01-29
* Make strcpy_chk lower to strcpy if we have a safe size.Eric Christopher2010-01-29
* move an optimization for memcmp out of simplifylibcalls and into Chris Lattner2009-12-24
* reapply my strstr optimization. I have reproduced the x86-64 bootstrapChris Lattner2009-12-16
* revert my strstr optimization, I'm told it breaks x86-64 bootstrap.Chris Lattner2009-12-16
* optimize strstr, PR5783Chris Lattner2009-12-15
* Teach SimplifyLibCalls to fold memcmp calls with constant arguments.Benjamin Kramer2009-11-05
* Fix SimplifyLibCalls to transfer attributes from callees rather thanDan Gohman2009-09-26
* I put the wrong rdar number in this test.Dan Gohman2009-09-26
* Transform pow(x, 0.5) to (x == -inf ? inf : fabs(sqrt(x))), which isDan Gohman2009-09-25
* Change tests from "opt %s" to "opt < %s" so that opt doesn't see theDan Gohman2009-09-11
* Use opt -S instead of piping bitcode output through llvm-dis.Dan Gohman2009-09-08
* Change these tests to feed the assembly files to opt directly, insteadDan Gohman2009-09-08
* Eliminate uses of %prcontext.Daniel Dunbar2009-09-05
* In C++, code is not allowed to call main. In C it is, thisChris Lattner2009-09-03