| Commit message (Expand) | Author | Age | Files | Lines |
* | This patch checks for valid mnemonics at the beginning of parseInstruction me... | Vladimir Medic | 2013-07-17 | 1 | -0/+5 |
* | Split openFileForRead into Windows and Unix versions. | Rafael Espindola | 2013-07-17 | 3 | -15/+40 |
* | Fix comparisons of alloca alignment in inliner merging | Hal Finkel | 2013-07-17 | 1 | -3/+12 |
* | Implement eret and deret(return from exception) instructions for Mips. Test e... | Vladimir Medic | 2013-07-17 | 2 | -0/+21 |
* | [ARMv8] Add support for the NEON instructions vmaxnm/vminnm. | Joey Gouly | 2013-07-17 | 5 | -0/+119 |
* | Ensure sys::getProcessTriple always uses a normalized triple. Patch by | Duncan Sands | 2013-07-17 | 1 | -1/+1 |
* | [XCore] Ensure implicit operands aren't lost on the return instruction. | Richard Osborne | 2013-07-17 | 1 | -1/+3 |
* | Teach x86 fast-isel to use AVX opcodes for vector stores when AVX is enabled. | Craig Topper | 2013-07-17 | 1 | -6/+6 |
* | Make x86 fast-isel correctly choose between aligned and unaligned operations ... | Craig Topper | 2013-07-17 | 1 | -12/+28 |
* | Fix ARMFastISel::ARMEmitIntExt shift emission | JF Bastien | 2013-07-17 | 1 | -30/+52 |
* | PPC: Add CTR-register clobber to builtin setjmp | Hal Finkel | 2013-07-17 | 3 | -0/+9 |
* | Mark a method 'const' and another 'static'. | Craig Topper | 2013-07-17 | 1 | -2/+2 |
* | Make a few more static string pointers constant. | Craig Topper | 2013-07-17 | 1 | -8/+8 |
* | Don't fallback to copy + delete in rename. | Rafael Espindola | 2013-07-17 | 1 | -11/+2 |
* | Make constant string pointer into an array to remove a pointer lookup for eve... | Craig Topper | 2013-07-17 | 2 | -2/+2 |
* | raw_ostream.cpp: Introduce <fcntl.h> to let O_BINARY provided. Or, llvm::outs... | NAKAMURA Takumi | 2013-07-17 | 1 | -0/+5 |
* | SLPVectorizer: Accelerate the isConsecutive check by replacing the subtractio... | Nadav Rotem | 2013-07-17 | 1 | -10/+5 |
* | PPC: Implement base pointer and stack realignment | Hal Finkel | 2013-07-17 | 5 | -41/+240 |
* | Move string pointer from being a static class member to just a static global ... | Craig Topper | 2013-07-17 | 2 | -7/+2 |
* | Add getModuleFlag(StringRef Key) to query a module flag given Key. | Manman Ren | 2013-07-16 | 2 | -11/+17 |
* | flip the scev minus direction to simplify the code. | Nadav Rotem | 2013-07-16 | 1 | -3/+3 |
* | SLPVectorizer: Improve the compile time of isConsecutive by adding a simple c... | Nadav Rotem | 2013-07-16 | 1 | -0/+18 |
* | Related to r181161 - Indirect branches may not be the last branch in a basic | Lang Hames | 2013-07-16 | 1 | -0/+7 |
* | ARM: Add support for the Thumb2 PLI alternate literal form. | Tilmann Scheller | 2013-07-16 | 1 | -0/+3 |
* | Add a wrapper for open. | Rafael Espindola | 2013-07-16 | 11 | -60/+71 |
* | Remove floats from live range splitting costs. | Jakob Stoklund Olesen | 2013-07-16 | 2 | -26/+28 |
* | Reapply r185393. | Jakob Stoklund Olesen | 2013-07-16 | 2 | -82/+80 |
* | [X86] Use min/max to optimze unsigend vector comparison on X86 | Juergen Ributzka | 2013-07-16 | 1 | -2/+22 |
* | Make SpecialCaseList match full strings, as documented, using anchors. | Peter Collingbourne | 2013-07-16 | 1 | -1/+1 |
* | Test commit to verify write access. | Juergen Ributzka | 2013-07-16 | 1 | -0/+1 |
* | [Support] Add a Unicode conversion wrapper from UTF16 to UTF8 | Reid Kleckner | 2013-07-16 | 1 | -0/+55 |
* | When the inliner merges allocas, it must keep the larger alignment | Hal Finkel | 2013-07-16 | 1 | -2/+16 |
* | SLPVectorizer: Reduce the compile time of the consecutive store lookup. | Nadav Rotem | 2013-07-16 | 1 | -5/+13 |
* | Create files with mode 666. This matches the behavior of other unix tools. | Rafael Espindola | 2013-07-16 | 1 | -1/+1 |
* | [Support] Fix some warnings when self-hosting clang on Windows | Reid Kleckner | 2013-07-16 | 2 | -2/+5 |
* | [APFloat] PR16573: Avoid losing mantissa bits in ppc_fp128 to double truncation | Ulrich Weigand | 2013-07-16 | 1 | -0/+17 |
* | [XCore] Fix printing of inline asm operands. | Richard Osborne | 2013-07-16 | 1 | -11/+7 |
* | ARM: allow printing of ARM atomic DAG nodes. | Tim Northover | 2013-07-16 | 1 | -0/+13 |
* | [SystemZ] Use ROSBG and non-zero form of RISBG for OR nodes | Richard Sandiford | 2013-07-16 | 1 | -1/+86 |
* | Fixing a buildbot failure:unused function. | Vladimir Medic | 2013-07-16 | 1 | -14/+0 |
* | [SystemZ] Add MC support for R[NOX]SBG | Richard Sandiford | 2013-07-16 | 1 | -0/+8 |
* | [SystemZ] Use RISBG for (shift (and ...)) | Richard Sandiford | 2013-07-16 | 1 | -97/+168 |
* | This patch represents Mips utilization of r186388 code that alows asm matche... | Vladimir Medic | 2013-07-16 | 4 | -270/+242 |
* | PPCJITInfo.cpp: Tweak r186252 with s/__ppc/__powerpc/ to work on powerpc-linu... | NAKAMURA Takumi | 2013-07-16 | 1 | -2/+2 |
* | ARM: implement ldrex, strex and clrex intrinsics | Tim Northover | 2013-07-16 | 5 | -16/+131 |
* | ARM EABI divmod support | Renato Golin | 2013-07-16 | 3 | -2/+87 |
* | Add a version of sys::fs::status that uses fstat. | Rafael Espindola | 2013-07-16 | 2 | -40/+68 |
* | Instead friending status, provide windows and posix constructors to file_status. | Rafael Espindola | 2013-07-16 | 2 | -25/+18 |
* | Add 'const' qualifiers to static const char* variables. | Craig Topper | 2013-07-16 | 9 | -37/+38 |
* | PEI: Support for non-zero SPAdj at beginning of a basic block. | Manman Ren | 2013-07-15 | 1 | -15/+26 |