Infer alignment for non-fixed stack object.
[oota-llvm.git] / lib / CodeGen /
2009-12-09 Evan ChengInfer alignment for non-fixed stack object.
2009-12-09 Evan ChengAdd const qualifier.
2009-12-09 Evan ChengRefactor InferAlignment out of DAGCombine.
2009-12-08 Devang PatelRevert 90858 90875 and 90805 for now.
2009-12-08 Devang PatelCleanup.
2009-12-08 Devang PatelDo not try to push dead variable's debug info into...
2009-12-07 Evan ChengWatch out for duplicated PHI instructions.
2009-12-07 Evan ChengFollow up to 90488. Turn a check into an assertion.
2009-12-07 Devang PatelAdd support to emit debug info for c++ style namespaces.
2009-12-07 Evan ChengDelete code accidentally left behind.
2009-12-07 Evan ChengPre-regalloc tale duplication. Work in progress.
2009-12-07 Evan ChengIf BB is empty, insert PHI before end() instead of...
2009-12-07 Anton KorobeynikovTruncate the arguments of llvm.frameaddress / llvm...
2009-12-05 Dan GohmanRemove old DBG_LABEL code.
2009-12-05 Dan GohmanRemove the unused DisableLegalizeTypes option and relat...
2009-12-05 Bill WendlingTemporarily revert r90502. It was causing the llvm...
2009-12-05 Dan GohmanDon't print a space before the : between the file name...
2009-12-05 Dan GohmanPrint newlines after printing labels for debug info...
2009-12-05 Dan GohmanDon't blindly set the debug location for PHI node copies.
2009-12-05 Dan GohmanMake TargetSelectInstruction protected and called from...
2009-12-05 Dan GohmanRemove the target hook TargetInstrInfo::BlockHasNoFallT...
2009-12-05 Dan GohmanSimplify this code: don't call AnalyzeBranch before...
2009-12-05 Dan GohmanThe debug information for an LLVM Instruction applies...
2009-12-05 Dan GohmanFix this code to use DIScope instead of DICompileUnit...
2009-12-05 Dan GohmanDon't print the debug directory; it's often long and...
2009-12-04 Dan GohmanPrint a space between the comment character and the...
2009-12-04 Devang PatelIn TAG_subrange_type, uppder bound is zero indexed.
2009-12-04 David GreeneUse new interfaces to print spill size.
2009-12-04 Evan ChengHandle recursive PHI's.
2009-12-04 Evan ChengAdd a pre-regalloc tail duplication pass.
2009-12-04 Evan ChengDon't try to be cute with undef optimization here....
2009-12-04 Duncan SandsAdd note about a subtle bug in this code. Does not...
2009-12-04 Jakob Stoklund OlesenAlso attempt trivial coalescing for live intervals...
2009-12-04 Evan Cheng- If the reaching definition is an undef and the use...
2009-12-03 Devang PatelInsert composite type DIE into the map before processin...
2009-12-03 Evan ChengHandle undef values properly.
2009-12-03 Evan ChengWatch out for PHI instruction with no source operands.
2009-12-03 Duncan SandsFix ExpandShiftWithUnknownAmountBit, which was complete...
2009-12-03 Jakob Stoklund OlesenClean up some loop logic.
2009-12-03 Devang PatelAdd support to emit debug info for virtual functions...
2009-12-03 Evan ChengTeach tail duplication to update SSA form. Work in...
2009-12-03 Nate BegemanDon't pull vector sext through both hands of a logical...
2009-12-03 Jakob Stoklund OlesenDon't call getValueType() on a null SDValue
2009-12-03 Evan ChengFill out codegen SSA updater. It's not yet tested.
2009-12-03 Jakob Stoklund OlesenDon't hang on to pointers or references after vector...
2009-12-03 Devang PatelEmit method definition DIE at module level (even for...
2009-12-03 Chris Lattnerimprove portability to avoid conflicting with std:...
2009-12-02 Douglas GregorFix CMake makefiles
2009-12-02 Evan ChengSkeleton for MachineInstr level SSA updater.
2009-12-02 Jim GrosbachAdd MaxStackAlignment.cpp to CMake
2009-12-02 Jim GrosbachFactor the stack alignment calculations out into a...
2009-12-02 Bob WilsonDon't count PHI instructions toward the limit for tail...
2009-12-02 Devang PatelClarify that DIEString does not keep a copy of the...
2009-12-01 Devang PatelReuse existing subprogram DIE.
2009-12-01 Evan ChengFix PR5391: support early clobber physical register...
2009-12-01 Dan GohmanAdd edge source labels to SelectionDAG graphs, now...
2009-12-01 Dan GohmanMinor cleanups.
2009-12-01 Dan GohmanTrim an unnecessary #include.
2009-12-01 Devang PatelClear function specific containers while processing...
2009-12-01 Jakob Stoklund OlesenMove PHIElimination::isLiveOut method to LiveVariables.
2009-12-01 Jakob Stoklund OlesenUse CFG connectedness as a secondary sort key when...
2009-12-01 Dan GohmanDevang pointed out that this code should use DIScope...
2009-12-01 Evan ChengFix PR5614: parts of a physical register def may be...
2009-11-30 Devang PatelIf pointer type has a name then do not ignore the name.
2009-11-30 Jakob Stoklund OlesenNew virtual registers created for spill intervals shoul...
2009-11-30 Bob WilsonReprioritize tests for tail duplication to be aggressiv...
2009-11-30 Bob WilsonRemove isProfitableToDuplicateIndirectBranch target...
2009-11-30 Tobias GrosserFix last DOTGraphTraits problems in CompilationGraph.
2009-11-30 Tobias GrosserRemove ShortNames from getNodeLabel in DOTGraphTraits
2009-11-30 Tobias GrosserInstantiate DefaultDOTGraphTraits
2009-11-30 Mon P WangAdded support to allow clients to custom widen. For...
2009-11-26 Bob WilsonRename new TailDuplicationPass to avoid name conflict...
2009-11-26 Evan ChengWhen all defs of a vr are implicit_def, delete all...
2009-11-26 Bob WilsonSplit tail duplication into a separate pass. This...
2009-11-25 Evan ChengProcessImplicitDefs should watch out for invalidated...
2009-11-25 Benjamin KramerAvoid some possibly unsafe uses of StringRef::data().
2009-11-25 Devang PatelUse StringRef (again) in DebugInfo interface.
2009-11-24 Bob WilsonRefactor target hook for tail duplication as requested...
2009-11-24 Devang PatelUse StringRef instead of std::string in DIEString.
2009-11-24 Devang PatelRemove DebugLabelFolder pass. It is not used by dwarf...
2009-11-24 Devang PatelSwith to pubtypes section before emitting pub types.
2009-11-24 Devang PatelEmit pubtypes.
2009-11-24 David Goodwin<rdar://problem/6721894>. Allow multiple registers...
2009-11-23 Dan GohmanRemove ISD::DEBUG_LOC and ISD::DBG_LABEL, which are...
2009-11-23 Dan GohmanSimplify this code.
2009-11-23 Dan GohmanPrint the debug info line and column in MachineInstr...
2009-11-23 Devang PatelRevert r89487.
2009-11-23 Dan GohmanMove CopyCatchInfo into FunctionLoweringInfo.cpp too...
2009-11-23 Dan GohmanRename SelectionDAGLowering to SelectionDAGBuilder...
2009-11-23 Dan GohmanMove RegsForValue to an anonymous namespace, since...
2009-11-23 Dan GohmanMove some more code out of SelectionDAGBuild.cpp and...
2009-11-23 Ted KremenekUpdate CMake file.
2009-11-23 Dan GohmanMove the FunctionLoweringInfo class and some related...
2009-11-23 Nick LewyckyPull LLVMContext out of PromoteMemToReg.
2009-11-22 Jim GrosbachAdd getFrameIndexReference() to TargetRegisterInfo...
2009-11-22 Jim Grosbach80-column cleanup
2009-11-22 Jakob Stoklund OlesenTeach MachineBasicBlock::updateTerminator() to handle...
2009-11-21 Jim Grosbachremove trailing whitespace
2009-11-21 Evan ChengAllow target to disable if-converting predicable instru...
2009-11-21 Devang PatelCosmetic changes, which were long overdue, in DwarfDebu...
next