aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Utils/BuildLibCalls.cpp
Commit message (Expand)AuthorAgeFilesLines
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-5/+5
* One more debug line number miss in instcombine (although the code in question...Eli Friedman2011-05-271-5/+1
* BuildLibCalls: Nuke EmitMemCpy, EmitMemMove and EmitMemSet. They are dead and...Benjamin Kramer2010-12-271-49/+5
* undo 80 column trespassing I causedGabor Greif2010-07-221-5/+6
* eliminate CallInst::ArgOffsetGabor Greif2010-07-161-5/+5
* use ArgOperand API and CallInst::ArgOffsetGabor Greif2010-06-281-17/+17
* use ArgOperand API (one more hunk I could split)Gabor Greif2010-06-251-2/+2
* simplify-libcalls: fold strstr(a, b) == a -> strncmp(a, b, strlen(b)) == 0Benjamin Kramer2010-06-151-0/+25
* The memcpy intrinsic only takes i8* for %src and %dst, so cast them to thatNick Lewycky2010-05-311-2/+2
* Revert 101465, it broke internal OpenGL testing.Eric Christopher2010-04-161-19/+19
* reapply r101434Gabor Greif2010-04-161-19/+19
* back out r101423 and r101397, they break llvm-gcc self-host on darwin10Gabor Greif2010-04-161-19/+19
* reapply r101364, which has been backed out in r101368Gabor Greif2010-04-151-19/+19
* back out r101364, as it trips the linux nightlybot on some clang C++ testsGabor Greif2010-04-151-19/+19
* rotate CallInst operands, i.e. move callee to the backGabor Greif2010-04-151-19/+19
* Actually... return after the check for invalid input.Eric Christopher2010-04-131-0/+1
* Verify function prototypes before trying to optimize functions. We alsoEric Christopher2010-04-121-2/+48
* Add support for stpncpy_chk.Eric Christopher2010-04-071-6/+6
* Reapply address space patch after fixing an issue in MemCopyOptimizer.Mon P Wang2010-04-041-20/+23
* Revert r100191 since it breaks objc in clang Mon P Wang2010-04-021-23/+20
* Reapply address space patch after fixing an issue in MemCopyOptimizer.Mon P Wang2010-04-021-20/+23
* Revert Mon Ping's change 99928, since it broke all the llvm-gcc buildbots.Bob Wilson2010-03-301-23/+20
* Added support for address spaces and added a isVolatile field to memcpy, memm...Mon P Wang2010-03-301-20/+23
* Teach simplify libcall to transform __strcpy_chk to __memcpy_chk to enable op...Evan Cheng2010-03-231-1/+25
* Fix 80 col violation.Evan Cheng2010-03-221-1/+1
* Add a virtual destructor and give vtable a home.Benjamin Kramer2010-03-121-0/+2
* Factor checked library call optimization into a common helper class and use itBenjamin Kramer2010-03-121-0/+81
* stpcpy is so similar to strcpy, it doesn't deserve a complete copy of the __s...Benjamin Kramer2010-03-111-21/+3
* Lower stpcpy_chk when possible.Eric Christopher2010-03-111-0/+18
* Fix typo.Eric Christopher2010-03-111-1/+1
* Add strncpy libcall creator. Use it when it should be used.Eric Christopher2010-03-111-0/+20
* Move SimplifyLibCalls's LibCall builders to a separate file so theyEric Christopher2010-03-051-0/+324