summaryrefslogtreecommitdiff
path: root/test/Transforms/SimplifyLibCalls
Commit message (Expand)AuthorAge
* 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
* Add targetdata strings to these tests, since SimplifyLibCalls usesDan Gohman2009-08-19
* Fix SimplifyLibcalls and ValueTracking to check mayBeOverriddenDan Gohman2009-08-19
* Fix PR4645 which was fallout from the fix for PR4641.Daniel Dunbar2009-07-29
* Just discard the output, no need to turn it back into text.Nick Lewycky2009-07-29
* don't dump .bc file to stdout, and simplify this to a trivial testcase.Chris Lattner2009-07-29
* Bulk erasing instructions without RAUWing them is unsafe. Instead, break themNick Lewycky2009-07-29
* Fix simplifylibcalls memset recognition to work on 64-bit platforms Eli Friedman2009-07-18
* part of PR4405: disable a contentious optimization forChris Lattner2009-06-19
* Split the Add, Sub, and Mul instruction opcodes into separateDan Gohman2009-06-04
* fix PR4284, a bug in simplifylibcalls handling memcmp. Patch by Chris Lattner2009-05-30
* Fix PR4206 - crash in simplify lib callsChris Lattner2009-05-13
* add some optimizations for strncpy/strncat and factor someChris Lattner2009-04-12
* Let the strcat optimizer return the pointer to the start of the buffer,Ed Schouten2009-04-06
* Mark strto* as readonly when the endptr is null.Nick Lewycky2009-02-13
* On strtod and friends, mark 'endptr' nocapture in the function prototype, andNick Lewycky2009-02-13
* Reapply r64300:Nick Lewycky2009-02-13
* Revert r64300 and r64301. These were causing the following errors respectively:Bill Wendling2009-02-11
* Make sure the SCC pass manager initializes any containedDuncan Sands2009-02-11
* Forgot this in the previous checkin: fopen now has nocapture, realloc isNick Lewycky2009-01-18
* Run a post-pass that marks known function declarations by name.Nick Lewycky2009-01-04
* Turn strcmp into memcmp, such as strcmp(P, "x") --> memcmp(P, "x", 2).Nick Lewycky2008-12-21
* Optimize memmove and memset into the LLVM builtins. Note that these Eli Friedman2008-11-30