aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
Commit message (Expand)AuthorAgeFilesLines
* Allow the lowering of ISD::GLOBAL_OFFSET_TABLE.Lauro Ramos Venancio2007-04-201-1/+1
* Implement "general dynamic", "initial exec" and "local exec" TLS models forLauro Ramos Venancio2007-04-201-0/+2
* 1. Insert custom lowering hooks for ISD::ROTR and ISD::ROTL.Scott Michel2007-04-021-3/+17
* don't rely on ADLChris Lattner2007-03-241-1/+1
* Refactoring of formal parameter flags. Enable properly use ofAnton Korobeynikov2007-03-071-7/+4
* big endian 32-bit systems (e.g. ppc32) want to return the high reg first, notChris Lattner2007-03-061-0/+5
* Fix CodeGen/Generic/fpowi-promote.ll and PR1239Chris Lattner2007-03-031-0/+12
* Add an expand action for ISD label which just deletes the label.Chris Lattner2007-03-031-0/+3
* Chain is on second operand.Jim Laskey2007-02-281-4/+23
* Drop unused operand.Jim Laskey2007-02-241-2/+0
* Simplify lowering and selection of exception ops.Jim Laskey2007-02-221-2/+26
* Selection and lowering for exception handling.Jim Laskey2007-02-211-0/+2
* For PR1195:Reid Spencer2007-02-151-8/+8
* For PR1195:Reid Spencer2007-02-151-1/+1
* Generalize TargetData strings, to support more interesting forms of data.Chris Lattner2007-02-141-3/+3
* implement expand of truncate. This allows truncates from i128 to i64 toChris Lattner2007-02-131-0/+13
* Make use of TLI.SimplifySetCC() in LegalizeSetCCOperands().Evan Cheng2007-02-081-8/+36
* swtich vector-> smallvector, speeding up selectiondag stuff 1%Chris Lattner2007-02-041-2/+2
* Switch promoted/expanded ops over to using a DenseMap. Vector related mapsChris Lattner2007-02-041-8/+7
* switch LegalizedNodes from std::map to a DenseMap. This speeds up iselChris Lattner2007-02-041-3/+15
* Eliminate some malloc traffic from LegalizeAllNodesNotLeadingTo, speedingChris Lattner2007-02-041-4/+5
* Switch ComputeTopDownOrdering over to using a densemap. This speeds upChris Lattner2007-02-031-2/+3
* PastoEvan Cheng2007-02-031-1/+1
* Fixed uninitialized stuff inside LegalizeDAG. Fortunately, the onlyAnton Korobeynikov2007-02-011-4/+5
* Fit in 80 columnsChris Lattner2007-02-011-4/+4
* Allow the target to override the ISD::CondCode that's to be used to test theEvan Cheng2007-01-311-18/+4
* Finish off bug 680, allowing targets to custom lower frame and returnNate Begeman2007-01-291-0/+10
* More cleanupAnton Korobeynikov2007-01-281-2/+2
* Propagate changes from my local tree. This patch includes:Anton Korobeynikov2007-01-281-2/+4
* Change the MachineDebugInfo to MachineModuleInfo to better reflect usageJim Laskey2007-01-261-4/+4
* Make LABEL a builtin opcode.Jim Laskey2007-01-261-6/+6
* Teach TargetData to handle 'preferred' alignment for each target, and useChris Lattner2007-01-201-4/+9
* For PR1043:Reid Spencer2007-01-191-0/+1
* Store default libgcc routine names and allow them to be redefined by target.Evan Cheng2007-01-121-82/+128
* Expand fcopysign to the bitwise sequence if select is marked as expensive.Evan Cheng2007-01-051-4/+6
* Bug in ExpandFCOPYSIGNToBitwiseOps(). Clear the old sign bit of operand 0Evan Cheng2007-01-051-4/+14
* Expand fcopysign to a series of bitwise of operations when it's profitable toEvan Cheng2007-01-041-19/+46
* Clean up from recent changes. Comment the new parameter to ExpandLibCall.Reid Spencer2007-01-031-24/+20
* For PR950:Reid Spencer2006-12-311-44/+64
* May need to promote the operand (either sign_extend_inreg or and) beforeEvan Cheng2006-12-191-18/+29
* LegalizeSetCCOperands() may end up inserting libcalls. They need to beEvan Cheng2006-12-181-3/+2
* Expand FP undefEvan Cheng2006-12-161-0/+1
* Allow promoted FP_TO_UINT / FP_TO_SINT to expand operand.Evan Cheng2006-12-161-2/+1
* Expand fabs / fneg to and / xor.Evan Cheng2006-12-161-3/+22
* Fix select_cc, select expansion to soft-fp bugs.Evan Cheng2006-12-151-3/+11
* silence a bogus warningChris Lattner2006-12-151-1/+1
* Expand FP compares to soft-fp call(s)Evan Cheng2006-12-151-7/+102
* 1. Tidy up jump table info.Jim Laskey2006-12-141-5/+12
* More soft-fp work.Evan Cheng2006-12-131-4/+9
* Expand (f64 extload f32) to (f64 fp_ext (load f32)) if f64 type action is exp...Evan Cheng2006-12-131-0/+10