summaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineSSAUpdater.cpp
AgeCommit message (Expand)Author
2017-11-17Fix a bunch more layering of CodeGen headers that are in TargetDavid Blaikie
2017-11-08Target/TargetInstrInfo.h -> CodeGen/TargetInstrInfo.h to match layeringDavid Blaikie
2017-09-11[CodeGen] Fix some Clang-tidy modernize-use-using and Include What You Use wa...Eugene Zelenko
2016-10-20Retire llvm::alignOf in favor of C++11 alignof.Benjamin Kramer
2016-04-18[NFC] Header cleanupMehdi Amini
2015-06-23Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)Alexander Kornienko
2015-06-19Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko
2014-10-14Remove unnecessary TargetMachine.h includes.Eric Christopher
2014-08-05Have MachineFunction cache a pointer to the subtarget to make lookupsEric Christopher
2014-08-04Remove the TargetMachine forwards for TargetSubtargetInfo basedEric Christopher
2014-04-21[Modules] Make Support/Debug.h modular. This requires it to not changeChandler Carruth
2014-04-14[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper
2014-03-23remove a bunch of unused private methodsNuno Lopes
2013-07-14Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...Craig Topper
2012-12-20Use MachineInstrBuilder in a few CodeGen passes.Jakob Stoklund Olesen
2012-12-19Remove the explicit MachineInstrBuilder(MI) constructor.Jakob Stoklund Olesen
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-08-14Fix undefined behavior: binding null pointer to reference. No functionality c...Richard Smith
2012-06-20Fix two rather subtle internal vs. external linker issues.Chandler Carruth
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2011-12-06Mix some minor misuse of MachineBasicBlock iterator.Evan Cheng
2010-05-10Fix PR7096. When a block containing multiple defs is tail duplicated, theBob Wilson
2010-05-04Combine the implementations of the core part of the SSAUpdater andBob Wilson
2010-04-26Update MachineSSAUpdater with the same changes I made for the IR-levelBob Wilson
2010-04-02stop using DebugLoc::getUnknownLoc()Chris Lattner
2010-02-10fix missing #includes.Chris Lattner
2010-02-09move target-independent opcodes out of TargetInstrInfoChris Lattner
2010-01-05Change errs() to dbgs().David Greene
2009-12-07Watch out for duplicated PHI instructions.Evan Cheng
2009-12-07Pre-regalloc tale duplication. Work in progress.Evan Cheng
2009-12-07If BB is empty, insert PHI before end() instead of front().Evan Cheng
2009-12-04Don't try to be cute with undef optimization here. Let ProcessImplicitDefs ha...Evan Cheng
2009-12-04- If the reaching definition is an undef and the use is a PHI, add the implic...Evan Cheng
2009-12-03Handle undef values properly.Evan Cheng
2009-12-03Fill out codegen SSA updater. It's not yet tested.Evan Cheng
2009-12-02Skeleton for MachineInstr level SSA updater.Evan Cheng