aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
AgeCommit message (Expand)Author
2008-08-05Remove the -disable-correct-folding option, which was ugly and is no longer n...Owen Anderson
2008-08-05This option doesn't need to be a target option. It can be in SDISel instead.Owen Anderson
2008-08-04- Fix SelectionDAG to generate correct CFGs.Owen Anderson
2008-08-04Fix SDISel lowering of PHI nodes to use ComputeValueVTs.Dan Gohman
2008-08-04Fix SDISel lowering of zeroinitializer and undef to use ComputeValueVTs.Dan Gohman
2008-07-31Add a flag to disable jump table generation (allDale Johannesen
2008-07-30Don't look for leaf values to store when lowering stores ofDan Gohman
2008-07-29Add vector shifts to the IR, patch by Eli Friedman.Nate Begeman
2008-07-28Fold the useful features of alist and alist_node into ilist, andDan Gohman
2008-07-27Rename SDOperand to SDValue.Dan Gohman
2008-07-25Use AliasAnalysis::pointsToConstantMemory in SDISel to avoid unnecessaryDan Gohman
2008-07-23Enable first-class aggregates support.Dan Gohman
2008-07-21After early-lowering the FORMAL_ARGUMENTS node, delete it.Dan Gohman
2008-07-21Add titles to the various SelectionDAG viewGraph callsDan Gohman
2008-07-17Turn LegalizeTypes back off again for the moment:Duncan Sands
2008-07-16Turn on LegalizeTypes by default.Duncan Sands
2008-07-14Reapply 53476 and 53480, with a fix so that it properly updatesDan Gohman
2008-07-12Back out 53476 and 53480 for now. Somehow they cause llc to miscompile 179.art.Evan Cheng
2008-07-11Add support for putting NamedRegionTimers in TimerGroups, andDan Gohman
2008-07-10make legalize types be a command line option: -enable-legalize-types.Chris Lattner
2008-07-07Pool-allocation for SDNodes. The pool is allocated once for each function,Dan Gohman
2008-07-04Rather than having a different custom legalizationDuncan Sands
2008-07-03Revert my previous check-in that split up MachineModuleInfo. It turns out toBill Wendling
2008-07-02Add a new getMergeValues method that does not needDuncan Sands
2008-07-01Do run ComputeLiveOutVRegInfo with -fast.Evan Cheng
2008-07-01Do not use computationally expensive scheduling heuristics with -fast.Evan Cheng
2008-07-01Apply Chris' suggestion.Evan Cheng
2008-07-01Split ISD::LABEL into ISD::DBG_LABEL and ISD::EH_LABEL, eliminatingDan Gohman
2008-06-30Use a simpler but equivalent form of RecordSource.Dan Gohman
2008-06-30Add timing report for various sub-passes under SelectionDAGISel.Evan Cheng
2008-06-30Rename ISD::LOCATION to ISD::DBG_STOPPOINT to better reflect itsDan Gohman
2008-06-30Split scheduling from instruction selection.Evan Cheng
2008-06-30Replace some std::vectors that showed up in heap profiling withDan Gohman
2008-06-30Revert the SelectionDAG optimization that makesDuncan Sands
2008-06-27Refactor the DebugInfoDesc stuff out of the MachineModuleInfo file. Clean upBill Wendling
2008-06-25Remove the OrigVT member from AtomicSDNode, as it is redundant withDan Gohman
2008-06-25Added MemOperands to Atomic operations since Atomics touches memory.Mon P Wang
2008-06-20Teach ReturnInst lowering about aggregate return values.Dan Gohman
2008-06-20Fix the index calculations for the extractvalue lowering code.Dan Gohman
2008-06-20Simplify the ComputeLinearIndex logic and fix a few bugs.Dan Gohman
2008-06-17add a new -enable-value-prop flag for llcbeta, that enables propagationChris Lattner
2008-06-17Fix spelling.Duncan Sands
2008-06-14add missing atomic intrinsic from gccAndrew Lenharth
2008-06-09CodeGen support for aggregate-value function arguments.Dan Gohman
2008-06-09Handle empty aggregate values.Dan Gohman
2008-06-08Remove comparison methods for MVT. The main causeDuncan Sands
2008-06-07CodeGen support for insertvalue and extractvalue, and for loads andDan Gohman
2008-06-07Connect successors before creating the DAG node for the branch. This hasOwen Anderson
2008-06-06Wrap MVT::ValueType in a struct to get type safetyDuncan Sands
2008-05-23Use isSingleValueType instead of isFirstClassType toDan Gohman