Rename PaddedSize to AllocSize, in the hope that this
[oota-llvm.git] / lib / CodeGen / SelectionDAG / FastISel.cpp
2009-05-09 Duncan SandsRename PaddedSize to AllocSize, in the hope that this
2009-05-07 Dan GohmanRevert 71165. It did more than just revert 71158 and...
2009-05-07 Bill WendlingTemporarily revert r71158. It was causing a failure...
2009-05-07 Argyrios KyrtzidisMake DwarfWriter::RecordInlinedFnStart more like the...
2009-05-04 Mike StumpRestore minor deletion.
2009-05-03 Argyrios Kyrtzidis-Move the DwarfWriter::ValidDebugInfo check to a static...
2009-04-30 Argyrios KyrtzidisMake DebugLoc independent of DwarfWriter.
2009-04-29 Bill WendlingInstead of passing in an unsigned value for the optimiz...
2009-04-29 Bill WendlingSecond attempt:
2009-04-28 Bill Wendlingr70270 isn't ready yet. Back this out. Sorry for the...
2009-04-28 Bill WendlingMassive check in. This changes the "-fast" flag to...
2009-04-16 Devang PatelDo not treat beginning of inlined scope as beginning...
2009-04-16 Devang PatelRecord line number at the beginning of a func.start.
2009-04-16 Devang PatelIf location where the function was inlined is not know...
2009-04-15 Devang PatelAdd DISubprogram is not null check.
2009-04-15 Devang PatelConstruct and emit DW_TAG_inlined_subroutine DIEs for...
2009-04-13 Devang PatelRight now, Debugging information to encode scopes ...
2009-04-13 Devang PatelReapply 68847.
2009-04-12 Chris Lattnermake UpdateValueMap handle the possiblity that we could be
2009-04-12 Chris Lattneroptimize FastISel::UpdateValueMap to avoid duplicate...
2009-04-11 Dan GohmanRevert r68847. It breaks the build on non-Darwin target...
2009-04-11 Devang PatelKeep track of inlined functions and their locations...
2009-04-09 Devang PatelSilence unused variable warning.
2009-04-09 Devang Patelllvm.dbg.func_start also defines beginning of function...
2009-04-07 Dan GohmanDon't attempt to handle aggregate argument values in...
2009-03-13 Dan GohmanImprove FastISel's handling of truncates to i1, and...
2009-03-13 Dan GohmanFix FastISel's assumption that i1 values are always...
2009-03-13 Bill WendlingOops...I committed too much.
2009-03-13 Bill WendlingTemporarily XFAIL this test.
2009-03-09 Bill WendlingPass in a std::string when getting the names of debuggi...
2009-02-25 Evan ChengClean up dwarf writer, part 1. This eliminated the...
2009-02-24 Bill WendlingOverhaul my earlier submission due to feedback. It...
2009-02-24 Bill Wendling- Use the "Fast" flag instead of "OptimizeForSize"...
2009-02-13 Bill WendlingRevert this. It was breaking stuff.
2009-02-13 Bill WendlingTurn off the old way of handling debug information...
2009-02-12 Chris Lattnermake fast isel fall back to selectiondags for VLA llvm...
2009-02-03 Bill WendlingCreate DebugLoc information in FastISel. Several tempor...
2009-01-22 Evan ChengEliminate a couple of fields from TargetRegisterClass...
2009-01-19 Devang PatelVerify debug info.
2009-01-15 Devang PatelValidate dbg_* intrinsics before lowering them.
2009-01-13 Devang PatelUse DebugInfo interface to lower dbg_* intrinsics.
2009-01-12 Duncan SandsRename getABITypeSize to getTypePaddedSize, as
2008-12-08 Dan GohmanFactor out the code for sign-extending/truncating gep...
2008-11-24 Evan ChengEliminate some unused variable compile time warnings.
2008-11-06 Devang PatelEmit label for llvm.dbg.func.start of the inlined function.
2008-10-14 Dan GohmanFastISel support for exception-handling constructs.
2008-10-13 Chris Lattnercalls can be supported.
2008-10-09 Dale JohannesenAdd a "loses information" return value to APFloat:...
2008-10-07 Dan GohmanAvoid emitting redundant materializations of integer...
2008-10-03 Dan GohmanImplement fast-isel support for zero-extending from i1.
2008-10-02 Dan GohmanOptimize conditional branches in X86FastISel. This...
2008-09-30 Dan GohmanMove the primary fast-isel top-level comments to FastIS...
2008-09-25 Dan GohmanSupport for i1 XOR in FastISel. It is actually safe...
2008-09-25 Dan GohmanFastISel support for debug info.
2008-09-25 Dan GohmanFix a recent fast-isel coverage regression - don't...
2008-09-23 Dan GohmanArrange for FastISel code to have access to the Machine...
2008-09-19 Dan GohmanRefactor X86SelectConstAddr, folding it into X86SelectA...
2008-09-10 Dan GohmanFastISel support for i1 constants.
2008-09-10 Dan GohmanAdd X86FastISel support for static allocas, and refences
2008-09-09 Owen AndersonClean this up, based on Evan's suggestions.
2008-09-09 Owen AndersonCheck for type legality before materializing integer...
2008-09-09 Evan ChengFix a constant lowering bug. Now we can do load and...
2008-09-08 Evan ChengAdd fast isel physical register definition support.
2008-09-07 Evan ChengIndentation.
2008-09-05 Owen AndersonRevert r55859. This is breaking the build in the absce...
2008-09-05 Dan GohmanFastISel support for AND and OR with type i1.
2008-09-05 Dan GohmanFastISel support for ConstantExprs.
2008-09-05 Dan GohmanFastISel support for unreachable.
2008-09-05 Owen AndersonAdd initial support for selecting constant materializat...
2008-09-03 Dan GohmanDo trivial local CSE for constants and other non-Instru...
2008-09-03 Dan GohmanCreate HandlePHINodesInSuccessorBlocksFast, a version of
2008-09-03 Owen AndersonOops, I accidentally broke the fallback case with my...
2008-09-03 Owen AndersonFix an issue where we were reusing materializations...
2008-09-02 Evan Cheng80 col violations.
2008-08-30 Owen AndersonFix an issue where a use might be selected before a...
2008-08-28 Dan GohmanImplement null and undef values for FastISel.
2008-08-28 Owen AndersonHook up support for fast-isel of trunc instructions...
2008-08-28 Owen AndersonFastEmitInst_extractsubreg doesn't need to be passed...
2008-08-27 Owen AndersonAdd a helper method that will be used to support EXTRAC...
2008-08-27 Dan GohmanFix FastISel's bitcast code for the case where getRegFo...
2008-08-27 Owen AndersonUse TargetLowering to get the types in fast isel, which...
2008-08-27 Dan GohmanDon't check TLI.getOperationAction. The FastISel way...
2008-08-27 Dan GohmanAdd a new FastISel method, getRegForValue, which takes...
2008-08-27 Dan GohmanAdd a comment about the current floating-point constant...
2008-08-27 Dan GohmanBasic FastISel support for floating-point constants.
2008-08-27 Owen AndersonFix handling of inttoptr and ptrtoint when unhandled...
2008-08-27 Owen AndersonAdd support for fast isel of inttoptr and ptrtoint...
2008-08-26 Owen AndersonFactor out a large amoutn of the cast handling code...
2008-08-26 Owen AndersonAdd support for fast isel of zext.
2008-08-26 Owen AndersonAdd support for fptosi of constants in fast isel.
2008-08-26 Dan GohmanRefactor the bitcast code into its own function.
2008-08-26 Dan GohmanMake FastISel use the correct argument type when castin...
2008-08-26 Dan GohmanDon't select binary instructions with illegal types.
2008-08-26 Owen AndersonAdd support for fast isel of sitofp, and remove some...
2008-08-26 Owen AndersonUse a combination of copyRegToReg and ISD::BIT_CONVERT...
2008-08-26 Owen AndersonMake TargetInstrInfo::copyRegToReg return a bool indica...
2008-08-26 Owen AndersonAdd support for fast isel of non-constant fptosi instru...
2008-08-25 Owen AndersonAdd a RetVT parameter to emitted FastISel methods,...
2008-08-25 Evan ChengUnbreak build.
2008-08-25 Owen AndersonExpand bitcast support in fast isel to support bitcasts...
next