| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add the support in code-gen for the landingpad instruction lowering. | Bill Wendling | 2011-08-17 | 1 | -3/+39 |
* | Revert patch. Forgot a dependent commit. | Bill Wendling | 2011-08-17 | 1 | -39/+3 |
* | Add the body of 'visitLandingPad'. | Bill Wendling | 2011-08-17 | 1 | -3/+39 |
* | Initial commit of the 'landingpad' instruction. | Bill Wendling | 2011-08-12 | 1 | -0/+3 |
* | Do not drop undef debug values. These are used as range termination marker by... | Devang Patel | 2011-08-03 | 1 | -1/+1 |
* | New approach to r136737: insert the necessary fences for atomic ops in platfo... | Eli Friedman | 2011-08-03 | 1 | -8/+59 |
* | Add the 'resume' instruction for the new EH rewrite. | Bill Wendling | 2011-07-31 | 1 | -0/+4 |
* | Revert r136253, r136263, r136269, r136313, r136325, r136326, r136329, r136338, | Bill Wendling | 2011-07-30 | 1 | -44/+0 |
* | Do not lose branch weights when lowering SwitchInst. | Jakub Staszak | 2011-07-29 | 1 | -11/+32 |
* | Remove unneeded const_cast. | Jakub Staszak | 2011-07-29 | 1 | -2/+2 |
* | Misc optimizer+codegen work for 'cmpxchg' and 'atomicrmw'. They appear to be | Eli Friedman | 2011-07-29 | 1 | -2/+41 |
* | Use the pointer type size. | Bill Wendling | 2011-07-29 | 1 | -1/+1 |
* | And now something that compiles... | Bill Wendling | 2011-07-29 | 1 | -1/+1 |
* | Make sure to sext or trunc the result from the register. | Bill Wendling | 2011-07-29 | 1 | -2/+2 |
* | Visit the landingpad instruction. | Bill Wendling | 2011-07-28 | 1 | -1/+35 |
* | LangRef and basic memory-representation/reading/writing for 'cmpxchg' and | Eli Friedman | 2011-07-28 | 1 | -0/+6 |
* | The personality function should be a Function* and not just a Value*. | Bill Wendling | 2011-07-28 | 1 | -4/+6 |
* | Code generation for 'fence' instruction. | Eli Friedman | 2011-07-27 | 1 | -1/+6 |
* | Merge the contents from exception-handling-rewrite to the mainline. | Bill Wendling | 2011-07-27 | 1 | -0/+8 |
* | Explicitly cast narrowing conversions inside {}s that will become errors in | Jeffrey Yasskin | 2011-07-27 | 1 | -1/+2 |
* | Initial implementation of 'fence' instruction, the new C++0x-style replacemen... | Eli Friedman | 2011-07-25 | 1 | -0/+4 |
* | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 1 | -34/+34 |
* | Check register class matching instead of width of type matching | Eric Christopher | 2011-07-14 | 1 | -4/+6 |
* | Don't emit a bit test if there is only one case the test can yield false. A s... | Benjamin Kramer | 2011-07-14 | 1 | -1/+9 |
* | Convert InsertValueInst and ExtractValueInst APIs to use ArrayRef. | Jay Foad | 2011-07-13 | 1 | -2/+2 |
* | Add an intrinsic and codegen support for fused multiply-accumulate. The intent | Cameron Zwarich | 2011-07-08 | 1 | -0/+7 |
* | Apparently we can't expect a BinaryOperator here. | Benjamin Kramer | 2011-07-08 | 1 | -2/+2 |
* | Emit a more efficient magic number multiplication for exact sdivs. | Benjamin Kramer | 2011-07-08 | 1 | -0/+16 |
* | Introduce "expect" intrinsic instructions. | Jakub Staszak | 2011-07-06 | 1 | -0/+7 |
* | Remove getRegClassForInlineAsmConstraint and all dependencies. | Eric Christopher | 2011-06-30 | 1 | -101/+0 |
* | Distinguish early clobber output operands from clobbered registers. | Jakob Stoklund Olesen | 2011-06-27 | 1 | -2/+1 |
* | When promoting the vector elements in CopyToParts, use vector trunc | Nadav Rotem | 2011-06-19 | 1 | -11/+3 |
* | Introduce MachineBranchProbabilityInfo class, which has similar API to | Jakub Staszak | 2011-06-16 | 1 | -11/+32 |
* | Add TargetRegisterInfo::getRawAllocationOrder(). | Jakob Stoklund Olesen | 2011-06-16 | 1 | -9/+16 |
* | Add one more argument to the prefetch intrinsic to indicate whether it's a data | Bruno Cardoso Lopes | 2011-06-14 | 1 | -2/+3 |
* | Improve the generated code by getCopyFromPartsVector for promoted integer types. | Nadav Rotem | 2011-06-12 | 1 | -21/+20 |
* | Add a parameter to CCState so that it can access the MachineFunction. | Eric Christopher | 2011-06-08 | 1 | -3/+5 |
* | TypeLegalizer: Add support for passing of vector-promoted types in registers ... | Nadav Rotem | 2011-06-04 | 1 | -2/+40 |
* | Add a TODO about memory operands. | Eric Christopher | 2011-06-03 | 1 | -1/+5 |
* | Have LowerOperandForConstraint handle multiple character constraints. | Eric Christopher | 2011-06-02 | 1 | -1/+1 |
* | Allow bitcasts between valid types of the same size and vector | Eric Christopher | 2011-06-01 | 1 | -0/+6 |
* | Preserve debug info during iSel by keeping DanglingDebugInfoMap live until en... | Devang Patel | 2011-05-23 | 1 | -1/+10 |
* | Eliminate some temporary variables, and don't call getByValTypeAlignment | Chris Lattner | 2011-05-22 | 1 | -6/+8 |
* | Preserve debug info for unused zero extended boolean argument. | Devang Patel | 2011-05-16 | 1 | -6/+27 |
* | Make codegen able to handle values of empty types. This is one way | Rafael Espindola | 2011-05-13 | 1 | -6/+29 |
* | Give the 'eh.sjlj.dispatchsetup' intrinsic call the value coming from the setjmp | Bill Wendling | 2011-05-11 | 1 | -1/+1 |
* | Disable my little CopyToReg argument hack with fast-isel. rdar://problem/941... | Eli Friedman | 2011-05-10 | 1 | -2/+3 |
* | Look through struct wrapped types for inline asm statments. | Eric Christopher | 2011-05-09 | 1 | -0/+6 |
* | 80 col violations. | Evan Cheng | 2011-05-06 | 1 | -3/+7 |
* | Avoid extra vreg copies for arguments passed in registers. Specifically, thi... | Eli Friedman | 2011-05-05 | 1 | -12/+44 |