aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineInstr.cpp
AgeCommit message (Expand)AuthorFilesLines
2013-02-05Remove liveout lists from MachineRegisterInfo.Jakob Stoklund Olesen1-2/+2
2013-01-25ScheduleDAG: colorize the DOT graph and improve formatting.Andrew Trick1-1/+5
2013-01-11For inline asm:Eric Christopher1-1/+5
2013-01-10Allow hasProperty() to be called on bundle-internal instructions.Jakob Stoklund Olesen1-0/+1
2013-01-10Support headerless bundles in MachineInstr::hasProperty().Jakob Stoklund Olesen1-7/+5
2013-01-09Don't print bundle flags.Jakob Stoklund Olesen1-1/+2
2013-01-09Don't require BUNDLE headers in MachineInstr::getBundleSize().Jakob Stoklund Olesen1-10/+5
2013-01-09Fix a typo in MachineInstr::unbundleFromSucc() method.Sergei Larin1-1/+1
2013-01-07Pack MachineOperand bitfields better.Jakob Stoklund Olesen1-1/+1
2013-01-07Pack MachineInstr fields better.Jakob Stoklund Olesen1-5/+3
2013-01-05Don't call destructors on MachineInstr and MachineOperand.Jakob Stoklund Olesen1-20/+1
2013-01-05Use ArrayRecycler for MachineInstr operand lists.Jakob Stoklund Olesen1-74/+91
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-8/+8
2012-12-22Remove a special case that doesn't seem necessary any longer.Jakob Stoklund Olesen1-13/+2
2012-12-22Use getNumOperands() instead of Operands.size().Jakob Stoklund Olesen1-11/+11
2012-12-20Require the two-argument MI::addOperand(MF, MO) for dangling instructions.Jakob Stoklund Olesen1-1/+9
2012-12-20Add an MF argument to MI::copyImplicitOps().Jakob Stoklund Olesen1-2/+3
2012-12-20Use two-arg addOperand(MF, MO) internally in MachineInstr when possible.Jakob Stoklund Olesen1-7/+7
2012-12-20Remove two dead functions.Jakob Stoklund Olesen1-35/+0
2012-12-18Use bidirectional bundle flags to simplify important functions.Jakob Stoklund Olesen1-10/+0
2012-12-18Verify bundle flag consistency when setting them.Jakob Stoklund Olesen1-0/+4
2012-12-18Don't allow the automatically updated MI flags to be set directly.Jakob Stoklund Olesen1-2/+2
2012-12-17Tighten up the erase/remove API for bundled instructions.Jakob Stoklund Olesen1-31/+10
2012-12-07Add higher-level API for dealing with bundled MachineInstrs.Jakob Stoklund Olesen1-0/+32
2012-12-05Remove unused MachineInstr constructors.Jakob Stoklund Olesen1-27/+0
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-15/+15
2012-10-31Check that iterator I is not the end iterator.Akira Hatanaka1-2/+3
2012-10-07Remove unused MachineInstr constructors that don't take a DebugLoc argument.Craig Topper1-29/+0
2012-09-12Fix PR11985Michael Liao1-2/+4
2012-09-11Release build: guard dump functions withManman Ren1-1/+1
2012-09-06Release build: guard dump functions with "ifndef NDEBUG"Manman Ren1-0/+2
2012-09-05Cleanup a few magic numbers.Chad Rosier1-1/+1
2012-09-05[ms-inline asm] We only need one bit to represent the AsmDialect in theChad Rosier1-7/+3
2012-09-05[ms-inline asm] Propagate the asm dialect into the MachineInstr representation.Chad Rosier1-0/+14
2012-09-04Typo.Jakob Stoklund Olesen1-1/+1
2012-09-04Actually use the MachineOperand field for isRegTiedToDefOperand().Jakob Stoklund Olesen1-103/+0
2012-09-04Allow tied uses and defs in different orders.Jakob Stoklund Olesen1-30/+91
2012-08-31Add MachineInstr::tieOperands, remove setIsTied().Jakob Stoklund Olesen1-6/+16
2012-08-30Don't use MCInstrDesc flags for implicit operands.Jakob Stoklund Olesen1-11/+16
2012-08-29Rename hasVolatileMemoryRef() to hasOrderedMemoryRef().Jakob Stoklund Olesen1-8/+8
2012-08-29Don't move normal loads across volatile/atomic loads.Jakob Stoklund Olesen1-3/+8
2012-08-29Maintain a vaild isTied bit as operands are added and removed.Jakob Stoklund Olesen1-1/+39
2012-08-28Add a MachineOperand::isTied() flag.Jakob Stoklund Olesen1-21/+34
2012-08-28Don't allow TargetFlags on MO_Register MachineOperands.Jakob Stoklund Olesen1-2/+2
2012-08-10Also update MRI use lists when changing a use to a def and vice versa.Jakob Stoklund Olesen1-19/+38
2012-08-09Move use list management into MachineRegisterInfo.Jakob Stoklund Olesen1-76/+31
2012-08-07Add a new kind of MachineOperand: MO_TargetIndex.Jakob Stoklund Olesen1-0/+7
2012-07-05Finish fixing the MachineOperand hashing, providing a nice modernChandler Carruth1-47/+47
2012-07-05The hash function for MI expressions, used by MachineCSE, is reallyChandler Carruth1-3/+8
2012-07-04Allow trailing physreg RegisterSDNode operands on non-variadic instructions.Jakob Stoklund Olesen1-1/+3