| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | MachineOperand::getImmedValue -> MachineOperand::getImm | Chris Lattner | 2007-12-30 | 4 | -12/+9 |
| | | | | | llvm-svn: 45454 | ||||
| * | make machine operands fatter: give each one an up-pointer to the | Chris Lattner | 2007-12-30 | 1 | -1/+7 |
| | | | | | | | machineinstr that owns it. llvm-svn: 45449 | ||||
| * | use simplified operand addition methods. | Chris Lattner | 2007-12-30 | 1 | -17/+25 |
| | | | | | llvm-svn: 45436 | ||||
| * | use simplified operand addition methods. | Chris Lattner | 2007-12-30 | 1 | -30/+22 |
| | | | | | llvm-svn: 45435 | ||||
| * | Start using the simplified methods for adding operands. | Chris Lattner | 2007-12-30 | 3 | -28/+29 |
| | | | | | llvm-svn: 45432 | ||||
| * | simplify some code by factoring operand construction better. | Chris Lattner | 2007-12-30 | 1 | -22/+4 |
| | | | | | llvm-svn: 45428 | ||||
| * | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 59 | -118/+118 |
| | | | | | llvm-svn: 45418 | ||||
| * | remove attribution from lib Makefiles. | Chris Lattner | 2007-12-29 | 2 | -4/+4 |
| | | | | | llvm-svn: 45415 | ||||
| * | Fold comparisons against a constant nan, and optimize ORD/UNORD | Chris Lattner | 2007-12-29 | 1 | -0/+22 |
| | | | | | | | | | | | | | | | | | | | | | | | | | comparisons with a constant. This allows us to compile isnan to: _foo: fcmpu cr7, f1, f1 mfcr r2 rlwinm r3, r2, 0, 31, 31 blr instead of: LCPI1_0: ; float .space 4 _foo: lis r2, ha16(LCPI1_0) lfs f0, lo16(LCPI1_0)(r2) fcmpu cr7, f1, f0 mfcr r2 rlwinm r3, r2, 0, 31, 31 blr llvm-svn: 45405 | ||||
| * | make sure not to zap volatile stores, thanks a lot to Dale for noticing this! | Chris Lattner | 2007-12-29 | 1 | -1/+2 |
| | | | | | llvm-svn: 45402 | ||||
| * | don't fold fp_round(fp_extend(load)) -> fp_round(extload) | Chris Lattner | 2007-12-29 | 1 | -0/+4 |
| | | | | | llvm-svn: 45400 | ||||
| * | Delete a store whose input is a load from the same pointer: | Chris Lattner | 2007-12-29 | 1 | -1/+12 |
| | | | | | | | | x = load p store x -> p llvm-svn: 45398 | ||||
| * | Flesh out the Briggs implementation a little bit more, fix a few FIXMEs. | Owen Anderson | 2007-12-24 | 1 | -11/+35 |
| | | | | | llvm-svn: 45347 | ||||
| * | Sketch out an implementation of Briggs' copy placement algorithm. | Owen Anderson | 2007-12-23 | 1 | -10/+104 |
| | | | | | llvm-svn: 45334 | ||||
| * | initial code for forming an FGETSIGN node. This is disabled until | Chris Lattner | 2007-12-22 | 1 | -0/+26 |
| | | | | | | | legalizer support goes in. llvm-svn: 45323 | ||||
| * | improve support for fgetsign | Chris Lattner | 2007-12-22 | 1 | -0/+6 |
| | | | | | llvm-svn: 45322 | ||||
| * | Tell TargetLoweringOpt whether it is running before | Chris Lattner | 2007-12-22 | 1 | -1/+1 |
| | | | | | | | or after legalize. llvm-svn: 45321 | ||||
| * | Add a new FGETSIGN operation, which defaults to expand on all | Chris Lattner | 2007-12-22 | 1 | -1/+5 |
| | | | | | | | targets. llvm-svn: 45320 | ||||
| * | Use getIntrinsicID instead of looking up intrinsic prototypes. Also | Gordon Henriksen | 2007-12-22 | 1 | -28/+29 |
| | | | | | | | | fixes a bug with indirect calls. (Test case will be included with ocaml collector patch.) llvm-svn: 45316 | ||||
| * | Note what still needs doing. | Owen Anderson | 2007-12-22 | 1 | -1/+6 |
| | | | | | llvm-svn: 45310 | ||||
| * | Remove critical edge breaking. It won't be necessary as long as we are very ↵ | Owen Anderson | 2007-12-22 | 1 | -37/+0 |
| | | | | | | | careful when inserting copies. llvm-svn: 45309 | ||||
| * | More accurate checks for two-address constraints. | Evan Cheng | 2007-12-20 | 1 | -8/+40 |
| | | | | | llvm-svn: 45259 | ||||
| * | The physical register + virtual register joining requirement was much too ↵ | Evan Cheng | 2007-12-20 | 1 | -1/+1 |
| | | | | | | | strict. llvm-svn: 45253 | ||||
| * | Bring back a burr scheduling heuristic that's still needed. | Evan Cheng | 2007-12-20 | 1 | -5/+34 |
| | | | | | llvm-svn: 45252 | ||||
| * | Updated comments to reflect what "side effects" means in this situation. | Bill Wendling | 2007-12-20 | 1 | -10/+3 |
| | | | | | llvm-svn: 45245 | ||||
| * | Simplify LowerCallTo by using a callsite. | Duncan Sands | 2007-12-19 | 1 | -41/+27 |
| | | | | | llvm-svn: 45198 | ||||
| * | The C++ exception handling personality function wants | Duncan Sands | 2007-12-19 | 3 | -28/+60 |
| | | | | | | | | | | | | | | | | | | | | | | | | to know about calls that cannot throw ('nounwind'): if such a call does throw for some reason then the personality will terminate the program. The distinction between an ordinary call and a nounwind call is that an ordinary call gets an entry in the exception table but a nounwind call does not. This patch sets up the exception table appropriately. One oddity is that I've chosen to bracket nounwind calls with labels (like invokes) - the other choice would have been to bracket ordinary calls with labels. While bracketing ordinary calls is more natural (because bracketing by labels would then correspond exactly to getting an entry in the exception table), I didn't do it because introducing labels impedes some optimizations and I'm guessing that ordinary calls occur more often than nounwind calls. This fixes the gcc filter2 eh test, at least at -O0 (the inliner needs some tweaking at higher optimization levels). llvm-svn: 45197 | ||||
| * | Don't leave newly created nodes around if it turns out they are not needed. | Evan Cheng | 2007-12-19 | 1 | -2/+4 |
| | | | | | llvm-svn: 45186 | ||||
| * | Add debugging info. Use the newly created "hasUnmodelledSideEffects" method. | Bill Wendling | 2007-12-18 | 1 | -21/+38 |
| | | | | | llvm-svn: 45178 | ||||
| * | Support more insane CEP's in AsmPrinter (Yes, PyPy folks do really use them). | Anton Korobeynikov | 2007-12-18 | 1 | -1/+24 |
| | | | | | llvm-svn: 45172 | ||||
| * | Fix PR1872: SrcValue and SrcValueOffset should not be used to compute load / ↵ | Evan Cheng | 2007-12-18 | 1 | -20/+0 |
| | | | | | | | store node id. llvm-svn: 45167 | ||||
| * | Also print alignment and volatileness. | Evan Cheng | 2007-12-18 | 1 | -13/+19 |
| | | | | | llvm-svn: 45164 | ||||
| * | FIX for PR1799: When a load is unfolded from an instruction, check if it is ↵ | Evan Cheng | 2007-12-18 | 1 | -26/+36 |
| | | | | | | | a new node. If not, do not create a new SUnit. llvm-svn: 45157 | ||||
| * | SelectionDAG::dump() should print SrcValue of LoadSDNode and StoreSDNode. | Evan Cheng | 2007-12-18 | 1 | -0/+18 |
| | | | | | llvm-svn: 45151 | ||||
| * | Make invokes of inline asm legal. Teach codegen | Duncan Sands | 2007-12-17 | 1 | -17/+20 |
| | | | | | | | | | how to lower them (with no attempt made to be efficient, since they should only occur for unoptimized code). llvm-svn: 45108 | ||||
| * | Change the PointerType api for creating pointer types. The old functionality ↵ | Christopher Lamb | 2007-12-17 | 2 | -10/+11 |
| | | | | | | | of PointerType::get() has become PointerType::getUnqual(), which returns a pointer in the generic address space. The new prototype of PointerType::get() requires both a type and an address space. llvm-svn: 45082 | ||||
| * | Break local interferences in StrongPHIElimination. One step closer... | Owen Anderson | 2007-12-16 | 1 | -0/+135 |
| | | | | | llvm-svn: 45070 | ||||
| * | A few more comments. | Owen Anderson | 2007-12-16 | 1 | -1/+6 |
| | | | | | llvm-svn: 45069 | ||||
| * | Add explicit keywords, and fix a minor typo that they uncovered. | Dan Gohman | 2007-12-14 | 3 | -4/+5 |
| | | | | | llvm-svn: 45034 | ||||
| * | Bug fix. Must also match ResNo when matching an operand with a user. | Evan Cheng | 2007-12-14 | 1 | -1/+1 |
| | | | | | llvm-svn: 45028 | ||||
| * | Add register pairs to the list to check for local interferences. | Owen Anderson | 2007-12-13 | 1 | -4/+10 |
| | | | | | llvm-svn: 44987 | ||||
| * | Remove ugly and horrible code. It's not necessary for correctness, and can ↵ | Owen Anderson | 2007-12-13 | 1 | -47/+7 |
| | | | | | | | be added back later if it causes code quality issues. llvm-svn: 44986 | ||||
| * | Implicit def instructions, e.g. X86::IMPLICIT_DEF_GR32, are always ↵ | Evan Cheng | 2007-12-12 | 1 | -3/+15 |
| | | | | | | | re-materializable and they should not be spilled. llvm-svn: 44960 | ||||
| * | Allow vector integer constants to be created with | Dan Gohman | 2007-12-12 | 1 | -9/+22 |
| | | | | | | | | | SelectionDAG::getConstant, in the same way as vector floating-point constants. This allows the legalize expansion code for @llvm.ctpop and friends to be usable with vector types. llvm-svn: 44954 | ||||
| * | Forgot to remove a register from the PHI-union after I'd determined that it | Owen Anderson | 2007-12-12 | 1 | -3/+6 |
| | | | | | | | interfered with other registers. Seems like that might be a good thing to do. :-) llvm-svn: 44902 | ||||
| * | If deleting a reload instruction due to reuse (value is available in ↵ | Evan Cheng | 2007-12-11 | 1 | -2/+18 |
| | | | | | | | register R and reload is targeting R), make sure to invalidate the kill information of the last kill. llvm-svn: 44894 | ||||
| * | Need to grow the indexed map. Added debug statements. | Bill Wendling | 2007-12-11 | 1 | -21/+27 |
| | | | | | llvm-svn: 44892 | ||||
| * | Simplify slightly. | Bill Wendling | 2007-12-11 | 1 | -3/+4 |
| | | | | | llvm-svn: 44881 | ||||
| * | More progress on StrongPHIElimination. Now we actually USE the DomForest! | Owen Anderson | 2007-12-11 | 1 | -0/+89 |
| | | | | | llvm-svn: 44877 | ||||
| * | Blark! How in the world did this work without this?! | Bill Wendling | 2007-12-11 | 1 | -4/+9 |
| | | | | | llvm-svn: 44874 | ||||

