summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/SimplifyLibCalls.cpp
Commit message (Expand)AuthorAge
...
* Clean whitespaces.Nadav Rotem2012-07-24
* Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.hChandler Carruth2012-06-29
* revert my previous commit (r159173), since as Eli pointed out, it's perfectly...Nuno Lopes2012-06-25
* do not set realloc() as NotAlias, since it can return the same pointer. This ...Nuno Lopes2012-06-25
* Teach SimplifyLibCalls about stpcpy.David Majnemer2012-05-15
* fix pr12559: mark unavailable win32 math libcallsJoe Groff2012-04-17
* reapply the patches reverted in r149470 that reenable ConstantDataArray,Chris Lattner2012-02-05
* Revert Chris' commits up to r149348 that started causing VMCoreTests unit tes...Argyrios Kyrtzidis2012-02-01
* eliminate the last uses of GetConstantStringInfo from this file, I didn't rea...Chris Lattner2012-01-31
* start moving SimplifyLibcalls over to getConstantStringInfo, which isChris Lattner2012-01-31
* Turn cos(-x) into cos(x). Patch by Alexander Malyshev!Nick Lewycky2011-12-27
* Only replace fwrite with fputc, if the return value is unused.Joerg Sonnenberger2011-12-12
* Switch llvm.cttz and llvm.ctlz to accept a second i1 parameter whichChandler Carruth2011-12-12
* Add support for custom names for library functions in TargetLibraryInfo. Add...Eli Friedman2011-11-17
* StringRefize and simplify.Benjamin Kramer2011-11-15
* SimplifyLibCalls: Use IRBuilder.CreateGlobalString when creating a string for...Benjamin Kramer2011-10-29
* PR11061: Make simplifylibcalls fold strcmp("", x) correctly.Eli Friedman2011-10-05
* Stop emitting instructions with the name "tmp" they eat up memory and have to...Benjamin Kramer2011-09-27
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* Change Intrinsic::getDeclaration and friends to take an ArrayRef.Benjamin Kramer2011-07-14
* Second attempt at de-constifying LLVM Types in FunctionType::get(),Jay Foad2011-07-12
* Revert r134893 and r134888 (and related patches in other trees). It was causingBill Wendling2011-07-12
* De-constify Types in FunctionType::get().Jay Foad2011-07-11
* Preserve line number information while simplifying libcalls.Devang Patel2011-03-09
* Fix typo in comment.Richard Osborne2011-03-03
* 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
* wire TargetLibraryInfo into simplify libcalls and use it in a couple ofChris Lattner2011-02-24
* move a massive amount of code out into its own helper functionChris Lattner2011-02-24
* SimplifyLibCalls: Add missing legalize check on various printf to puts andDaniel Dunbar2011-02-12
* SimplifyLibCalls: Use IRBuilder to simplify code.Benjamin Kramer2010-12-27
* 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
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-19
* Now with fewer extraneous semicolons!Owen Anderson2010-10-07
* Tighten up prototype verification of strchr and strrchr to avoid a crash in t...Benjamin Kramer2010-09-30
* 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
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-06
* Revert r110396 to fix buildbots.Owen Anderson2010-08-06
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-05
* Fix a comment.Dan Gohman2010-08-04
* mass elimination of reliance on automatic iterator dereferencingGabor Greif2010-07-22
* undo 80 column trespassing I causedGabor Greif2010-07-22
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-21
* Detabify this file.Nick Lewycky2010-07-06
* use ArgOperand APIGabor Greif2010-06-30