aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG
AgeCommit message (Expand)Author
2010-02-02Revert 95130.Evan Cheng
2010-02-02Pass callsite return type to TargetLowering::LowerCall and use that to check ...Evan Cheng
2010-02-01Improve EXTRACT_VECTOR_ELT patch based on comments from DuncanMon P Wang
2010-02-01eliminate a bunch of pointless LLVMContext arguments.Chris Lattner
2010-02-01fix PR 6157. Testcase pending.Dale Johannesen
2010-02-01Fixed a couple of optimization with EXTRACT_VECTOR_ELT that assumes the resultMon P Wang
2010-01-29Change the SREM case to match the logic in the IR version ComputeMaskedBits.Duncan Sands
2010-01-28Assign the ordering of SDNodes in a much less intrusive fashion. After theBill Wendling
2010-01-28Update of 94055 to track the IR level call site information via an intrinsic.Jim Grosbach
2010-01-27Eliminate target hook IsEligibleForTailCallOptimization.Evan Cheng
2010-01-26Allow some automatic tailcall optimization without changing ABI.Evan Cheng
2010-01-26eliminate the TargetLowering::UsesGlobalOffsetTable bool, which isChris Lattner
2010-01-26Move getJTISymbol from MachineJumpTableInfo to MachineFunction,Chris Lattner
2010-01-26add a new MachineJumpTableInfo::getJTISymbol method,Chris Lattner
2010-01-26stub out a new target hook, need some refactoring before I canChris Lattner
2010-01-26Implement cond ? -1 : 0 with sbb.Evan Cheng
2010-01-26Generate DEBUG_VALUE comments on x86. The (limited)Dale Johannesen
2010-01-25Rearrange handling of jump tables. Highlights:Chris Lattner
2010-01-24make -fno-rtti the default unless a directory builds with REQUIRES_RTTI.Chris Lattner
2010-01-24It seems better to scalarize vectors of size 1 instead of widening them.Mon P Wang
2010-01-24Improved widening loads by adding support for wider loads ifMon P Wang
2010-01-23Remove the '-disable-scheduling' flag and replace it with the 'source' option ofBill Wendling
2010-01-22Enable pre-regalloc scheduling load clustering by default.Evan Cheng
2010-01-22Stop building RTTI information for *most* llvm libraries. NotableChris Lattner
2010-01-22Teach pre-regalloc scheduler to schedule loads from nearby addresses. It may ...Evan Cheng
2010-01-21Trim unneeded includes.Evan Cheng
2010-01-21back this out for now. Growing Function is not good.Jim Grosbach
2010-01-21Make sure that landing pad entries in the EH call site table are in the properJim Grosbach
2010-01-20When XDEBUG is enabled, check for SelectionDAG cycles at some keyDavid Greene
2010-01-20Add some asserts to check SelectionDAG problems earlier.David Greene
2010-01-19Fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n)), to simplify some codeDan Gohman
2010-01-19Add some new debugging APIs to print out "raw" SelectionDAGs to makeDavid Greene
2010-01-19Revert 93811 per request.Dale Johannesen
2010-01-18Enable code to emit dbg.declare as DEBUG_VALUEDale Johannesen
2010-01-18Canonicalize -1 - x to ~x.Evan Cheng
2010-01-16When checking for sret-demotion, it needs to use legal types. When using the...Kenneth Uildriks
2010-01-15Add some debug routines to SelectionDAG to dump full DAGs.David Greene
2010-01-15Improve llvm.dbg.declare intrinsic by referring directly to the storage in it...Victor Hernandez
2010-01-15Revert r93504 because older uses of llvm.dbg.declare intrinsics need to be au...Victor Hernandez
2010-01-15Improve llvm.dbg.declare intrinsic by referring directly to the storage in it...Victor Hernandez
2010-01-15fix 80-column violationsJim Grosbach
2010-01-14Fix a codegen abort seen in 483.xalancbmk.Dan Gohman
2010-01-12Update a partially obsolete comment.Dan Gohman
2010-01-12Fix a typo in a comment.Dan Gohman
2010-01-11Avoid adding PHI arguments for a predecessor that has gone away when a BRCOND...Jakob Stoklund Olesen
2010-01-11Disable transformation of select of two loads to a select of address and then...Mon P Wang
2010-01-09Revert an earlier change to SIGN_EXTEND_INREG for vectors. The VTSDNodeDan Gohman
2010-01-09Dan pointed out checking whether a node is dead by comparing its opcode to IS...Evan Cheng
2010-01-08ReplaceAllUsesOfValueWith may delete other nodes that the one being replaced....Evan Cheng
2010-01-07Fix rdar://7517201, a regression introduced by r92849.Chris Lattner