aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineSSAUpdater.cpp
AgeCommit message (Expand)AuthorFilesLines
2021-04-07[docs] Fix doxygen comments wrongly attached to the llvm namespaceNicolás Alvarez1-2/+2
2021-02-19[CodeGen] Use range-based for loops (NFC)Kazu Hirata1-3/+1
2021-01-27[llvm] Use append_range (NFC)Kazu Hirata1-3/+1
2020-08-21MachineSSAUpdater: Allow initialization with just a register classNicolai Hähnle1-4/+7
2020-04-08CodeGen: Use Register in MachineSSAUpdaterMatt Arsenault1-26/+26
2020-01-23[CodeGen] Make use of MachineInstrBuilder::getRegJay Foad1-1/+1
2019-10-08MachineSSAUpdater: insert IMPLICIT_DEF at top of basic blockNicolai Haehnle1-1/+1
2019-08-15Apply llvm-prefer-register-over-unsigned from clang-tidy to LLVMDaniel Sanders1-2/+2
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-07-30Remove trailing spaceFangrui Song1-2/+2
2018-05-14Rename DEBUG macro to LLVM_DEBUG.Nicola Zaghen1-1/+1
2017-11-17Fix a bunch more layering of CodeGen headers that are in TargetDavid Blaikie1-2/+2
2017-11-08Target/TargetInstrInfo.h -> CodeGen/TargetInstrInfo.h to match layeringDavid Blaikie1-1/+1
2017-09-11[CodeGen] Fix some Clang-tidy modernize-use-using and Include What You Use wa...Eugene Zelenko1-14/+22
2016-10-20Retire llvm::alignOf in favor of C++11 alignof.Benjamin Kramer1-1/+0
2016-04-18[NFC] Header cleanupMehdi Amini1-1/+0
2015-06-23Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)Alexander Kornienko1-1/+1
2015-06-19Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko1-1/+1
2014-10-14Remove unnecessary TargetMachine.h includes.Eric Christopher1-1/+0
2014-08-05Have MachineFunction cache a pointer to the subtarget to make lookupsEric Christopher1-1/+1
2014-08-04Remove the TargetMachine forwards for TargetSubtargetInfo basedEric Christopher1-1/+2
2014-04-21[Modules] Make Support/Debug.h modular. This requires it to not changeChandler Carruth1-0/+2
2014-04-14[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-4/+4
2014-03-23remove a bunch of unused private methodsNuno Lopes1-10/+0
2013-07-14Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...Craig Topper1-1/+1
2012-12-20Use MachineInstrBuilder in a few CodeGen passes.Jakob Stoklund Olesen1-2/+1
2012-12-19Remove the explicit MachineInstrBuilder(MI) constructor.Jakob Stoklund Olesen1-5/+4
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-5/+5
2012-08-14Fix undefined behavior: binding null pointer to reference. No functionality c...Richard Smith1-1/+1
2012-06-20Fix two rather subtle internal vs. external linker issues.Chandler Carruth1-25/+20
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie1-1/+0
2011-12-06Mix some minor misuse of MachineBasicBlock iterator.Evan Cheng1-3/+3
2010-05-10Fix PR7096. When a block containing multiple defs is tail duplicated, theBob Wilson1-1/+1
2010-05-04Combine the implementations of the core part of the SSAUpdater andBob Wilson1-437/+109
2010-04-26Update MachineSSAUpdater with the same changes I made for the IR-levelBob Wilson1-122/+428
2010-04-02stop using DebugLoc::getUnknownLoc()Chris Lattner1-1/+1
2010-02-10fix missing #includes.Chris Lattner1-0/+1
2010-02-09move target-independent opcodes out of TargetInstrInfoChris Lattner1-8/+8
2010-01-05Change errs() to dbgs().David Greene1-2/+2
2009-12-07Watch out for duplicated PHI instructions.Evan Cheng1-3/+37
2009-12-07Pre-regalloc tale duplication. Work in progress.Evan Cheng1-1/+11
2009-12-07If BB is empty, insert PHI before end() instead of front().Evan Cheng1-3/+6
2009-12-04Don't try to be cute with undef optimization here. Let ProcessImplicitDefs ha...Evan Cheng1-27/+17
2009-12-04- If the reaching definition is an undef and the use is a PHI, add the implic...Evan Cheng1-11/+15
2009-12-03Handle undef values properly.Evan Cheng1-15/+38
2009-12-03Fill out codegen SSA updater. It's not yet tested.Evan Cheng1-8/+229
2009-12-02Skeleton for MachineInstr level SSA updater.Evan Cheng1-0/+108