Rename "HasCalls" in MachineFrameInfo to "AdjustsStack" to better describe what
[oota-llvm.git] / lib / CodeGen / SelectionDAG / SelectionDAGISel.cpp
2010-05-14 Bill WendlingRename "HasCalls" in MachineFrameInfo to "AdjustsStack...
2010-05-04 Evan ChengInstruction selection optimizations may have moved...
2010-05-01 Dan GohmanRemove the code for special-casing byval for fast-isel...
2010-05-01 Dan GohmanFix whitespace.
2010-05-01 Dan GohmanReorgnaize more switch code lowering to clean up some...
2010-05-01 Dan GohmanGet rid of the EdgeMapping map. Instead, just check...
2010-04-30 Dan GohmanRemove this debug output. The MachineFunction will...
2010-04-29 Evan ChengRe-enable 102565 with fixes.
2010-04-29 Evan ChengTemporarily disable my changes to unbreak the build.
2010-04-29 Evan ChengAvoid emitting a dbg_value machineinstr that's not...
2010-04-29 Evan ChengCheck Reg against zero.
2010-04-28 Evan ChengReplace r102368 with code that's less fragile. This...
2010-04-23 Dan GohmanMove FastISel's HandlePHINodesInSuccessorBlocks call...
2010-04-22 Dan GohmanSink SelectionDAGBuilder's HandlePHINodesInSuccessorBlo...
2010-04-22 Dan GohmanMove HandlePHINodesInSuccessorBlocks functions out...
2010-04-22 Dan GohmanMove PHINodesToUpdate out of SelectionDAGBuilder and...
2010-04-21 Dan GohmanAdd more const qualifiers on TargetMachine and friends.
2010-04-20 Dan GohmanSink the CopyToExportRegsIfNeeded calls out of Selectio...
2010-04-20 Dan GohmanDon't send PHI nodes down to SelectionDAGBuilder of...
2010-04-20 Dan GohmanRemove this debug output; it isn't that useful, and...
2010-04-20 Dan GohmanSink DebugLoc handling out of SelectionDAGISel into...
2010-04-20 Dan GohmanRemove MachineFunction's DefaultDebugLoc member, and...
2010-04-20 Dan GohmanReapply the removal of SelectionDAGISel's BB, with...
2010-04-19 Dan GohmanRevert 101825, which is causing trouble.
2010-04-19 Dan GohmanEliminate SelectionDAGISel's "current block" member...
2010-04-19 Dan GohmanEliminate the CurMBB member from SelectionDAGBuilder...
2010-04-19 Dan GohmanGive SelectionDAG a TargetMachine too, rather than...
2010-04-19 Dan GohmanCode that needs a TargetMachine should have access...
2010-04-17 Dan GohmanUse const qualifiers with TargetLowering. This eliminat...
2010-04-17 Evan ChengMore work to allow dag combiner to promote 16-bit ops...
2010-04-16 Dan GohmanAvoid creating virtual registers for unused values.
2010-04-16 Dan GohmanFix a comment.
2010-04-16 Dan GohmanRefine further the scope where the global DebugLoc...
2010-04-15 Dan GohmanFix a bunch of namespace polution.
2010-04-15 Dan GohmanAdd more const qualifiers for LLVM IR pointers in CodeGen.
2010-04-15 Dan GohmanAdd const qualifiers to CodeGen's use of LLVM IR constr...
2010-04-14 Dan GohmanDelete unused arguments.
2010-04-14 Dan GohmanFactor out EH landing pad code into a separate function...
2010-04-14 Dan GohmanReset the debug location even if the instruction was...
2010-04-14 Dan GohmanDelete an unused function.
2010-04-14 Dan GohmanClear the FunctionLoweringInfo object before doing...
2010-04-14 Dan GohmanMove this assert out of SelectionDAGISel into FunctionL...
2010-04-14 Dan GohmanAdd a comment.
2010-04-14 Dan GohmanMove the code for initialing the entry block livein...
2010-04-14 Dan GohmanReorgnaize this code to be more tidy and readable.
2010-04-14 Dan GohmanTrim #includes.
2010-04-14 Dan GohmanMove the code for emitting livein copies out of Selecti...
2010-04-14 Dan GohmanSink landing-pad marking code out of
2010-04-07 Chris Lattnerminor tidying.
2010-04-07 Chris Lattnerrename llvm::llvm_report_error -> llvm::report_fatal_error
2010-04-07 Chris LattnerThree changes:
2010-04-05 Chris Lattnerremove some redundant MMI arguments.
2010-04-05 Chris Lattnerunthread MMI from FastISel
2010-04-05 Chris Lattnertrim some spurious references to DwarfWriter. SDIsel...
2010-04-05 Chris Lattnerselection dag doesn't need DwarfWriter, remove some...
2010-04-05 Chris Lattnerfastisel doesn't need DwarfWriter, remove some tendricles.
2010-04-02 Chris Lattnerstop using DebugLoc::getUnknownLoc()
2010-04-02 Chris LattnerSwitch the code generator (except the JIT) onto the...
2010-03-31 Chris Lattneruse the optimized debug info apis in sdisel.
2010-03-28 Chris Lattneradd a statistic for the # times isel has to backtrack.
2010-03-28 Chris Lattnerfinally remove the immAllOnesV_bc/immAllZerosV_bc patterns
2010-03-28 Chris Lattnercomply with the wishes of a fixme.
2010-03-28 Chris Lattnernow that (parallel) is gone and a variety of bugs in...
2010-03-28 Chris Lattneradd an optimized form of OPC_EmitMergeInputChains for...
2010-03-28 Chris Lattnerdon't add nodes to the now-dead nodes list multiple...
2010-03-28 Chris Lattnerdon't add flag nodes with chain results to the NowDeadNodes
2010-03-27 Chris Lattnerimprove -debug-only=isel comments for cases when we...
2010-03-25 Chris LattnerChange tblgen to emit FOOISD opcode names as two
2010-03-15 Devang PatelEmit dwarf variable info communicated by code generator...
2010-03-14 Chris Lattnerfix ShrinkDemandedOps to not leave dead nodes around,
2010-03-14 Chris Lattnerrewrite ShrinkDemandedOps to be faster and indent less,
2010-03-14 Chris Lattnermake -view-isel-dags print after the 'ShrinkDemandedOps...
2010-03-14 Chris Lattnerfix AsmPrinter::GetBlockAddressSymbol to always return...
2010-03-14 Chris Lattnerchange the LabelSDNode to be EHLabelSDNode and make...
2010-03-09 Dan GohmanAttempt to make this debug output meaningful, both...
2010-03-09 Dan GohmanPrint the correct index in the "match failed at index...
2010-03-05 Jakob Stoklund OlesenAvoid creating bad PHI instructions when BR is being...
2010-03-05 Chris LattnerFix PR6497, a bug where we'd fold a load into an addc
2010-03-05 Chris Lattnerinline a small function with one call site.
2010-03-04 Chris Lattneradd a statistic for # times fastisel fails.
2010-03-04 Chris Lattnerchange the new isel matcher to emit ComplexPattern...
2010-03-04 Chris Lattnerinline CannotYetSelectIntrinsic into CannotYetSelect...
2010-03-03 Chris Lattneradd some of the more obscure predicate types to the
2010-03-03 Chris Lattnerspeed up scope node processing: if the first element...
2010-03-03 Chris Lattnerintroduce a new SwitchTypeMatcher node (which is analog...
2010-03-02 Chris LattnerFix some issues in WalkChainUsers dealing with
2010-03-02 Chris Lattnerrun HandleMergeInputChains even if we only have one...
2010-03-02 Chris LattnerFix the xfail I added a couple of patches back. The...
2010-03-02 Chris LattnerI was confused about this, it turns out that MorphNodeTo
2010-03-02 Chris Lattnerfactor node morphing out to its own helper method.
2010-03-02 Chris LattnerSink InstructionSelect() out of each target into SDISel...
2010-03-02 Chris LattnerUse the right induction variable.
2010-03-02 Chris LattnerRewrite chain handling validation and input TokenFactor...
2010-03-02 Chris Lattnerremove dead code.
2010-03-02 Chris Lattnerrefactor some code out of OPC_EmitMergeInputChains...
2010-03-01 Chris LattnerAccelerate isel dispatch for tables that start with...
2010-03-01 Chris Lattnersome trivial microoptimizations.
2010-03-01 Chris Lattnereliminate the CheckMultiOpcodeMatcher code and have...
2010-03-01 Chris Lattneradd a new OPC_SwitchOpcode which is semantically equivalent
2010-02-28 Chris Lattnereliminate GetInt1/2
next