Age | Commit message (Expand) | Author |
2011-04-04 | Delete leftover data members. | Jakob Stoklund Olesen |
2011-04-04 | Remove some support for ReturnInsts with multiple operands, and for | Jay Foad |
2011-04-04 | Region: Allow user control the printing style of the print function. | Tobias Grosser |
2011-04-04 | Attempt to fix breakage from r128782 reported by Francois Pichet on | Eli Friedman |
2011-04-03 | Start migrating mach-o dumping facilities to the object file out of a | Eric Christopher |
2011-04-03 | Move Object.cpp out of VMCore and into Object. | Eric Christopher |
2011-04-03 | Assorted bugfixes in object file handling: | Eric Christopher |
2011-04-03 | Add a set of C bindings for the Object interface. | Eric Christopher |
2011-04-02 | PR9446: RecursivelyDeleteTriviallyDeadInstructions can delete the instruction | Eli Friedman |
2011-04-02 | Don't assume something which might be a constant expression is an instruction. | Eli Friedman |
2011-04-02 | While SimplifyDemandedBits constant folds this, we can't rely on it here. | Benjamin Kramer |
2011-04-02 | ptx: support setp's 4-operand format | Che-Liang Chiou |
2011-04-02 | Use InterferenceCache in RegAllocGreedy. | Jakob Stoklund Olesen |
2011-04-02 | Add an InterferenceCache class for caching per-block interference ranges. | Jakob Stoklund Olesen |
2011-04-02 | Use basic block numbers as indexes when mapping slot index ranges. | Jakob Stoklund Olesen |
2011-04-02 | Do some peephole optimizations to remove pointless VMOVs from Neon to integer | Cameron Zwarich |
2011-04-02 | Add a RemoveFromWorklist method to DCI. This is needed to do some complicated | Cameron Zwarich |
2011-04-02 | Fixed a bug in disassembly of STR_POST, where the immediate is the second ope... | Johnny Chen |
2011-04-02 | Undo changes mistakenly made in revision 128750. | Akira Hatanaka |
2011-04-02 | Insert space before ';' to prevent warnings. | Akira Hatanaka |
2011-04-01 | Fixed MOVr for "should be" encoding bits for Inst{19-16} = 0b0000. | Johnny Chen |
2011-04-01 | MOVs should have Inst{19-16} as 0b0000, otherwise, the instruction is UNPREDI... | Johnny Chen |
2011-04-01 | Fix the instruction table entries for AI1_adde_sube_s_irs multiclass definiti... | Johnny Chen |
2011-04-01 | Fix comment. | Benjamin Kramer |
2011-04-01 | Tweaks to the icmp+sext-to-shifts optimization to address Frits' comments: | Benjamin Kramer |
2011-04-01 | Avoid de-referencing pass beginning of a basic block. No small test case poss... | Evan Cheng |
2011-04-01 | Remove redundant code. There are assignments to variables Base and Offset rig... | Akira Hatanaka |
2011-04-01 | Simplifies logic for printing target flags. | Akira Hatanaka |
2011-04-01 | When the architecture is explicitly armv6 or thumbv6, we need to mark the obj... | Owen Anderson |
2011-04-01 | LDRD/STRD instructions should print both Rt and Rt2 in the asm string. | Jim Grosbach |
2011-04-01 | Fix a LDRT/LDRBT decoding bug where for Encoding A2, if Inst{4} != 0, we shou... | Johnny Chen |
2011-04-01 | Fix build. | Benjamin Kramer |
2011-04-01 | InstCombine: Turn icmp + sext into bitwise/integer ops when the input has onl... | Benjamin Kramer |
2011-04-01 | InstCombine: Move (sext icmp) transforms into their own method. No intended f... | Benjamin Kramer |
2011-04-01 | Add comments. | Evan Cheng |
2011-04-01 | Assign node order numbers to results of call instruction lowering. This shoul... | Evan Cheng |
2011-04-01 | Modifies MipsAsmPrinter::isBlockOnlyReachableByFallthrough so that it handles... | Akira Hatanaka |
2011-04-01 | Fix LDRi12 immediate operand, which was changed to be the second operand in $... | Johnny Chen |
2011-04-01 | Add code for analyzing FP branches. Clean up branch Analysis functions. | Akira Hatanaka |
2011-04-01 | Initialize HasVMLxForwarding. | Benjamin Kramer |
2011-04-01 | Various Instructions' resizeOperands() methods are only used to grow the | Jay Foad |
2011-04-01 | While testing dragonegg I noticed that isCastable and getCastOpcode | Duncan Sands |
2011-04-01 | Issue libcalls __udivmod*i4 / __divmod*i4 for div / rem pairs. | Evan Cheng |
2011-04-01 | Remove unused variables | Matt Beaumont-Gay |
2011-03-31 | Apply again changes to support ARM memory asm parsing. I removed | Bruno Cardoso Lopes |
2011-03-31 | The basic register allocator must also use the inline spiller. | Jakob Stoklund Olesen |
2011-03-31 | Provide a legal pointer register class when targeting thumb1. | Jakob Stoklund Olesen |
2011-03-31 | Instcombile optimization: extractelement(cast) -> cast(extractelement) | Nadav Rotem |
2011-03-31 | InstCombine: APFloat can't perform arithmetic on PPC double doubles, don't ev... | Benjamin Kramer |
2011-03-31 | Distribute (A + B) * C to (A * C) + (B * C) to make use of NEON multiplier | Evan Cheng |