| Commit message (Expand) | Author | Age | Files | Lines |
* | [ARMv8] Prevent generation of deprecated IT blocks on ARMv8 in Thumb mode. | Joey Gouly | 2013-09-09 | 1 | -3/+3 |
* | ARM: Constrain regclass for TSTri instruction. | Jim Grosbach | 2013-08-26 | 1 | -0/+2 |
* | ARM: FastISel verifier error cleanup. | Jim Grosbach | 2013-08-26 | 1 | -0/+7 |
* | [ARM] Fix another ARM FastISel -verify-machineinstrs issue. | Joey Gouly | 2013-08-23 | 1 | -0/+4 |
* | Fix ARM FastISel PIC function call. | Logan Chien | 2013-08-22 | 1 | -2/+9 |
* | ARM: Fix fast-isel copy/paste-o. | Jim Grosbach | 2013-08-20 | 1 | -1/+1 |
* | ARM: Properly constrain comparison fastisel register classes. | Jim Grosbach | 2013-08-16 | 1 | -5/+12 |
* | ARM: Fast-isel register class constrain for extends. | Jim Grosbach | 2013-08-16 | 1 | -0/+1 |
* | ARM: Fix more fast-isel verifier failures. | Jim Grosbach | 2013-08-16 | 1 | -0/+43 |
* | ARM: Clean up fast-isel machine verifier errors. | Jim Grosbach | 2013-08-16 | 1 | -1/+1 |
* | Replace getValueType().getSimpleVT() with getSimpleValueType(). Also remove o... | Craig Topper | 2013-08-15 | 1 | -1/+1 |
* | Fix yet another memory leak found by the vg-leak bot. Folks (including | Chandler Carruth | 2013-07-27 | 1 | -2/+6 |
* | Fix ARMFastISel::ARMEmitIntExt shift emission | JF Bastien | 2013-07-17 | 1 | -30/+52 |
* | Remove extraneous braces. | Eric Christopher | 2013-07-12 | 1 | -6/+3 |
* | DebugInfo: Don't lose unreferenced non-trivial by-value parameters | David Blaikie | 2013-06-21 | 1 | -2/+0 |
* | Enable FastISel on ARM for Linux and NaCl, not MCJIT | JF Bastien | 2013-06-14 | 1 | -3/+18 |
* | ARM FastISel fix sext/zext fold | JF Bastien | 2013-06-11 | 1 | -19/+36 |
* | ARM FastISel fix load register classes | JF Bastien | 2013-06-09 | 1 | -4/+4 |
* | Fix unused variable warning from my previous patch. | JF Bastien | 2013-06-08 | 1 | -0/+1 |
* | ARM FastISel integer sext/zext improvements | JF Bastien | 2013-06-07 | 1 | -38/+103 |
* | Revert r182937 and r182877. | Rafael Espindola | 2013-05-30 | 1 | -17/+3 |
* | Enable FastISel on ARM for Linux and NaCl | JF Bastien | 2013-05-29 | 1 | -3/+17 |
* | Tidy some register classes for ARM and Thumb | JF Bastien | 2013-05-29 | 1 | -2/+2 |
* | No really, don't store anything to this since it's unconditionally | Eric Christopher | 2013-04-22 | 1 | -1/+1 |
* | Remove variable store that is never read. | Eric Christopher | 2013-04-22 | 1 | -1/+1 |
* | Move TryToFoldFastISelLoad to FastISel, where it belongs. In general, I'm | Eli Bendersky | 2013-04-19 | 1 | -5/+5 |
* | [fast-isel] Make sure the FastLowerArguments function checks to make sure the | Chad Rosier | 2013-02-26 | 1 | -0/+1 |
* | [fast-isel] Remove an invalid assert. | Chad Rosier | 2013-02-18 | 1 | -1/+0 |
* | Currently, codegen may spent some time in SDISel passes even if an entire | Evan Cheng | 2013-02-11 | 1 | -0/+74 |
* | Move MRI liveouts to ARM return instructions. | Jakob Stoklund Olesen | 2013-02-05 | 1 | -4/+10 |
* | Add a special ARM trap encoding for NaCl. | Eli Bendersky | 2013-01-30 | 1 | -1/+2 |
* | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 1 | -8/+8 |
* | Remove the Function::getRetAttributes method in favor of using the AttributeS... | Bill Wendling | 2012-12-30 | 1 | -2/+1 |
* | Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl... | Bill Wendling | 2012-12-19 | 1 | -6/+6 |
* | [arm fast-isel] Minor cleanup. No functional change intended. | Chad Rosier | 2012-12-17 | 1 | -10/+6 |
* | [arm fast-isel] Fast-isel only handles simple VTs, so make sure the necessary | Chad Rosier | 2012-12-17 | 1 | -10/+20 |
* | Revert/correct some FastISel changes in r170104 (EVT->MVT for | Patrik Hagglund | 2012-12-17 | 1 | -11/+19 |
* | Change TargetLowering::getRegClassFor to take an MVT, instead of EVT. | Patrik Hagglund | 2012-12-13 | 1 | -41/+35 |
* | Revert EVT->MVT changes, r169836-169851, due to buildbot failures. | Patrik Hagglund | 2012-12-11 | 1 | -35/+41 |
* | Change TargetLowering::getRegClassFor to take an MVT, instead of EVT. | Patrik Hagglund | 2012-12-11 | 1 | -41/+35 |
* | Fall back to the selection dag isel to select tail calls. | Chad Rosier | 2012-12-11 | 1 | -0/+3 |
* | [arm fast-isel] Make the fast-isel implementation of memcpy respect alignment. | Chad Rosier | 2012-12-06 | 1 | -11/+22 |
* | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 2012-12-03 | 1 | -11/+11 |
* | [arm fast-isel] Appease the machine verifier by using the proper register | Chad Rosier | 2012-11-27 | 1 | -9/+7 |
* | [arm fast-isel] Appease the machine verifier by using the proper register | Chad Rosier | 2012-11-27 | 1 | -2/+4 |
* | [arm fast-isel] Appease the machine verifier by using the proper register | Chad Rosier | 2012-11-27 | 1 | -5/+6 |
* | [arm fast-isel] Appease the machine verifier by using the proper register | Chad Rosier | 2012-11-27 | 1 | -4/+10 |
* | Revert r167620; this can be implemented using an existing CL option. | Chad Rosier | 2012-11-09 | 1 | -8/+4 |
* | Add support for -mstrict-align compiler option for ARM targets. | Chad Rosier | 2012-11-09 | 1 | -4/+8 |
* | [arm fast-isel] Appease the machine verifier by using the proper register | Chad Rosier | 2012-11-07 | 1 | -1/+4 |