aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen
AgeCommit message (Expand)Author
2013-02-19Make the dump() function const and reduce the number of hash lookups it perfo...Craig Topper
2013-02-19Use a reference into the BlockLiveness DenseMap to avoid repeated hash lookup...Craig Topper
2013-02-18Support for HiPE-compatible code emission, patch by Yiannis Tsiouris.Benjamin Kramer
2013-02-18[ms-inline asm] Remove a redundant call to the setHasMSInlineAsm function.Chad Rosier
2013-02-18[ms-inline asm] Fix undefined behavior to reset hasMSInlineAsm in advance of ...NAKAMURA Takumi
2013-02-17Remove use of reverse iterators in repairIntervalsInRange(). While they wereCameron Zwarich
2013-02-17Use ArrayRef instead of a reference to a SmallVectorImpl.Cameron Zwarich
2013-02-17Fix a conversion from a forward iterator to a reverse iterator inCameron Zwarich
2013-02-17Add support for updating the LiveIntervals of registers used by 'exotic'Cameron Zwarich
2013-02-16Replace erase loop with std::remove_if.Benjamin Kramer
2013-02-16Replace loop with std::find.Benjamin Kramer
2013-02-16LegalizeDAG.cpp doesn't need DenseMap.Jakub Staszak
2013-02-16Use const reference instead of vector object when passing an argument toJakub Staszak
2013-02-16[ms-inline asm] Do not omit the frame pointer if we have ms-inline assembly.Chad Rosier
2013-02-15Use the 'target-features' and 'target-cpu' attributes to reset the subtarget ...Bill Wendling
2013-02-15enable SDISel sincos optimization for GNU environmentsPaul Redmond
2013-02-15Make helpers static. Add missing include so LLVMInitializeObjCARCOpts gets C ...Benjamin Kramer
2013-02-14Dont merge consecutive loads/stores into vectors when noimplicitfloat is used.Nadav Rotem
2013-02-14Add some legality checks for SETCC before introducing it in the DAG combiner ...Owen Anderson
2013-02-14RegisterCoalescer::reMaterializeTrivialDef() can constrain the destinationCameron Zwarich
2013-02-14Fix RegisterCoalescer::rematerializeTrivialDef() so that it works on flippedCameron Zwarich
2013-02-14Fix some issues with rematerialization in RegisterCoalescer when the destinationCameron Zwarich
2013-02-13Clean up LDV, no functionality change.Manman Ren
2013-02-13MIsched: HazardRecognizers are created for each DAG. Free them.Andrew Trick
2013-02-13Fix comment.Eric Christopher
2013-02-13Debug Info: LiveDebugVarible can remove DBG_VALUEs, make sure we emit them back.Manman Ren
2013-02-12Add static cast to unsigned char whenever a character classification function...Guy Benyei
2013-02-12Allow optionally generating pubnames section in DWARF info. IntroduceKrzysztof Parzyszek
2013-02-12Equal treatment of labels and other terminators in MI DAG construction.Sergei Larin
2013-02-12PR14562 - Truncation of left shift became undefPaul Redmond
2013-02-12Don't consider definitions by other PHIs live-in when trimming a PHI source'sCameron Zwarich
2013-02-12Fix indentation.Cameron Zwarich
2013-02-12Add a hidden option to PHIElimination to split all critical edges. This isCameron Zwarich
2013-02-12Add blocks to the LiveIntervalAnalysis RegMaskBlocks array when splittingCameron Zwarich
2013-02-12Fix the updating of LiveIntervals after splitting a critical edge. PHI operandCameron Zwarich
2013-02-12Check type for legality before forming a select from loads.Pete Cooper
2013-02-11Add support for updating LiveIntervals to MachineBasicBlock::SplitCriticalEdg...Cameron Zwarich
2013-02-11Update SlotIndexes after updateTerminator() possibly removes instructions. I amCameron Zwarich
2013-02-11Revert "Rename LLVMContext diagnostic handler types and functions."Bob Wilson
2013-02-11Currently, codegen may spent some time in SDISel passes even if an entireEvan Cheng
2013-02-11Remove unnecessary code.Evan Cheng
2013-02-10Fix the unused but nearly correct method SlotIndexes::insertMBBInMaps() and addCameron Zwarich
2013-02-10Abstract the liveness checking in PHIElimination::SplitPHIEdges() to supportCameron Zwarich
2013-02-10Add support for updating LiveIntervals to PHIElimination. If LiveIntervals areCameron Zwarich
2013-02-10Fix a typo.Cameron Zwarich
2013-02-10Remove ancient references to 'atomic' phis in PHIElimination that don't reallyCameron Zwarich
2013-02-10Make LiveVariables an instance variable of PHIElimination.Cameron Zwarich
2013-02-09Remove unneeded "TargetMachine.h" #includes.Jakub Staszak
2013-02-09Dwarf: do not use line_table_start in at_stmt_list since we do not always emit Manman Ren
2013-02-09Remove the old liveness algorithm.Jakob Stoklund Olesen