| Commit message (Expand) | Author | Age | Files | Lines |
* | Turn cos(-x) into cos(x). Patch by Alexander Malyshev! | Nick Lewycky | 2011-12-27 | 1 | -0/+14 |
* | Give string constants generated by IRBuilder private linkage. | Benjamin Kramer | 2011-12-22 | 1 | -1/+1 |
* | Only replace fwrite with fputc, if the return value is unused. | Joerg Sonnenberger | 2011-12-12 | 1 | -0/+13 |
* | Add support for custom names for library functions in TargetLibraryInfo. Add... | Eli Friedman | 2011-11-17 | 1 | -0/+30 |
* | SimplifyLibCalls: Use IRBuilder.CreateGlobalString when creating a string for... | Benjamin Kramer | 2011-10-29 | 1 | -2/+3 |
* | "@string = constant i8 0" is a value i8* string of length zero. Analyze that | Nick Lewycky | 2011-10-20 | 1 | -0/+6 |
* | Fixed quoting on default data layout option. | Lang Hames | 2011-10-17 | 1 | -1/+1 |
* | PR11061: Make simplifylibcalls fold strcmp("", x) correctly. | Eli Friedman | 2011-10-05 | 2 | -44/+124 |
* | Stop emitting instructions with the name "tmp" they eat up memory and have to... | Benjamin Kramer | 2011-09-27 | 1 | -6/+6 |
* | Move "atomic" and "volatile" designations on instructions after the opcode | Eli Friedman | 2011-08-12 | 1 | -11/+11 |
* | rip out a ton of intrinsic modernization logic from AutoUpgrade.cpp, which is | Chris Lattner | 2011-06-18 | 1 | -11/+10 |
* | Preserve line number information while simplifying libcalls. | Devang Patel | 2011-03-09 | 1 | -0/+24 |
* | Optimize fprintf -> iprintf if there are no floating point arguments | Richard Osborne | 2011-03-03 | 1 | -0/+21 |
* | Optimize sprintf -> siprintf if there are no floating point arguments | Richard Osborne | 2011-03-03 | 1 | -0/+21 |
* | Optimize printf -> iprintf if there are no floating point arguments | Richard Osborne | 2011-03-03 | 1 | -0/+29 |
* | Delete obsolete test. | Dan Gohman | 2011-02-28 | 1 | -46/+0 |
* | SimplifyLibCalls: Add missing legalize check on various printf to puts and | Daniel Dunbar | 2011-02-12 | 1 | -7/+20 |
* | tests: FileCheckize | Daniel Dunbar | 2011-02-12 | 1 | -3/+5 |
* | Revert r64460. strtol and friends cannot be marked readonly, even with | Dan Gohman | 2010-12-17 | 1 | -1/+1 |
* | Add a puts optimization that converts puts() to putchar('\n'). | Anders Carlsson | 2010-11-30 | 1 | -0/+15 |
* | Fix a typo. | Anders Carlsson | 2010-11-30 | 1 | -1/+1 |
* | Rename this test to FPuts.ll since it actually tests fputs. | Anders Carlsson | 2010-11-30 | 1 | -0/+0 |
* | Fix some broken CHECK lines. | Benjamin Kramer | 2010-11-29 | 1 | -1/+1 |
* | test/Transforms/SimplifyLibCalls/floor.ll: Mark as XFAIL:win32 due to lack of... | NAKAMURA Takumi | 2010-10-28 | 1 | -0/+2 |
* | Add constant folding for strspn and strcspn to SimplifyLibCalls. | Benjamin Kramer | 2010-09-30 | 1 | -0/+41 |
* | Add strpbrk folding to SimplifyLibCalls. | Benjamin Kramer | 2010-09-29 | 1 | -0/+25 |
* | Simplify the loop in StrChrOptimizer. FileCheckize test. | Benjamin Kramer | 2010-09-29 | 1 | -14/+14 |
* | Teach SimplifyLibCalls how to optimize strrchr. | Benjamin Kramer | 2010-09-29 | 1 | -0/+23 |
* | Make sure that simplify libcalls does not replace a call with one calling | Rafael Espindola | 2010-06-16 | 1 | -0/+16 |
* | simplify-libcalls: fold strncmp(x, y, 1) -> memcmp(x, y, 1) | Benjamin Kramer | 2010-06-16 | 1 | -0/+7 |
* | simplify-libcalls: fold strstr(a, b) == a -> strncmp(a, b, strlen(b)) == 0 | Benjamin Kramer | 2010-06-15 | 1 | -0/+12 |
* | The memcpy intrinsic only takes i8* for %src and %dst, so cast them to that | Nick Lewycky | 2010-05-31 | 1 | -0/+20 |
* | Properly promote operands when optimizing a single-character memcmp. | Benjamin Kramer | 2010-05-25 | 1 | -1/+13 |
* | Reapply address space patch after fixing an issue in MemCopyOptimizer. | Mon P Wang | 2010-04-04 | 1 | -1/+1 |
* | Revert r100191 since it breaks objc in clang | Mon P Wang | 2010-04-02 | 1 | -1/+1 |
* | Reapply address space patch after fixing an issue in MemCopyOptimizer. | Mon P Wang | 2010-04-02 | 1 | -1/+1 |
* | Revert Mon Ping's change 99928, since it broke all the llvm-gcc buildbots. | Bob Wilson | 2010-03-30 | 1 | -1/+1 |
* | Added support for address spaces and added a isVolatile field to memcpy, memm... | Mon P Wang | 2010-03-30 | 1 | -1/+1 |
* | Teach simplify libcall to transform __strcpy_chk to __memcpy_chk to enable op... | Evan Cheng | 2010-03-23 | 1 | -20/+27 |
* | Migrate _chk call lowering from SimplifyLibCalls to InstCombine. Stub | Eric Christopher | 2010-03-06 | 2 | -30/+0 |
* | Safely turn memset_chk etc. to non-chk variant if the known object size is >=... | Evan Cheng | 2010-03-05 | 1 | -0/+18 |
* | Recommit this, looks like it wasn't the cause. | Eric Christopher | 2010-02-03 | 1 | -0/+12 |
* | Hopefully temporarily revert this. | Eric Christopher | 2010-02-02 | 1 | -12/+0 |
* | Re-add strcmp and known size object size checking optimization. | Eric Christopher | 2010-02-02 | 1 | -0/+12 |
* | Revert my last couple of patches. They appear to have broken bison. | Eric Christopher | 2010-01-29 | 1 | -12/+0 |
* | Make strcpy_chk lower to strcpy if we have a safe size. | Eric Christopher | 2010-01-29 | 1 | -0/+12 |
* | move an optimization for memcmp out of simplifylibcalls and into | Chris Lattner | 2009-12-24 | 1 | -3/+0 |
* | reapply my strstr optimization. I have reproduced the x86-64 bootstrap | Chris Lattner | 2009-12-16 | 1 | -0/+48 |
* | revert my strstr optimization, I'm told it breaks x86-64 bootstrap. | Chris Lattner | 2009-12-16 | 1 | -48/+0 |
* | optimize strstr, PR5783 | Chris Lattner | 2009-12-15 | 1 | -0/+48 |