Fix "the the" and similar typos.
[oota-llvm.git] / lib / CodeGen / MachineInstr.cpp
2010-02-10 Dan GohmanFix "the the" and similar typos.
2010-02-10 Dale JohannesenAdd isDebug argument to ChangeToRegister; this prevents
2010-02-09 Chris Lattnermove target-independent opcodes out of TargetInstrInfo
2010-01-19 Jakob Stoklund OlesenIdentify predicate and optional-def operands when print...
2010-01-16 Devang PatelReplace DebugLocTuple with DILocation.
2010-01-13 Dale JohannesenFurther progration of metadata operands. The
2010-01-06 Jakob Stoklund OlesenAdd <imp-def> and <imp-kill> operands when replacing...
2010-01-04 David GreeneChange errs() to dbgs().
2009-12-28 Chris Lattnersnip one more #include from Metadata.h
2009-12-25 Bill WendlingRemove dead store.
2009-12-25 Bill WendlingRemove dead store from copy-pasto.
2009-12-16 Jim GrosbachAdd @earlyclobber TableGen constraint
2009-12-07 Evan ChengFollow up to 90488. Turn a check into an assertion.
2009-12-05 Dan GohmanDon't print the debug directory; it's often long and...
2009-12-03 Evan ChengWatch out for PHI instruction with no source operands.
2009-12-03 Evan ChengFill out codegen SSA updater. It's not yet tested.
2009-12-01 Dan GohmanDevang pointed out that this code should use DIScope...
2009-11-23 Dan GohmanPrint the debug info line and column in MachineInstr...
2009-11-16 Dan GohmanInitialize the new AsmPrinterFlags field to 0, fixing...
2009-11-09 Dan GohmanPrint "..." instead of all the uninteresting register...
2009-11-06 Dan GohmanUse WriteAsOperand to print GlobalAddress MachineOperan...
2009-10-31 Dan GohmanMake -print-machineinstrs more readable.
2009-10-30 Dan GohmanInitial target-independent CodeGen support for BlockAdd...
2009-10-21 Evan ChengNeed a comma after imp-use.
2009-10-14 Evan ChengPrint earlyclobber for implicit-defs as well.
2009-10-13 Devang Patels/DebugLoc.CompileUnit/DebugLoc.Scope/g
2009-10-09 Dan GohmanFactor out LiveIntervalAnalysis' code to determine...
2009-10-09 Dan GohmanisTriviallyReMaterializable checks the
2009-10-07 Dan GohmanReplace TargetInstrInfo::isInvariantLoad and its target...
2009-10-05 Chris Lattnerstrength reduce a ton of type equality tests to check...
2009-09-29 Devang PatelRemove std::string uses from DebugInfo interface.
2009-09-25 Dan GohmanMove MachineMemOperand::getAlignment out of line, to...
2009-09-25 Dan GohmanImprove MachineMemOperand handling.
2009-09-23 Dan GohmanGive MachineMemOperand an operator<<, factoring out...
2009-09-21 Dan GohmanChange MachineMemOperand's alignment value to be the...
2009-09-17 Jim Grosbachgrammar
2009-08-23 Chris Lattnerremove some uses of llvm/Support/Streams.h
2009-08-23 Chris Lattnerremove various std::ostream version of printing methods...
2009-08-13 Owen AndersonPush LLVMContexts through the IntegerType APIs.
2009-08-04 Jakob Stoklund OlesenDon't tamper with <undef> operands in MachineInstr...
2009-08-03 Jakob Stoklund OlesenFix Bug 4657: register scavenger asserts with subreg...
2009-08-02 Jakob Stoklund OlesenNever add a kill flag to a constrained physical registe...
2009-07-28 Evan ChengFix a typo.
2009-07-19 Jakob Stoklund OlesenFix http://llvm.org/bugs/show_bug.cgi?id=4583
2009-07-16 Jakob Stoklund OlesenTeach MachineInstr::isRegTiedToDefOperand() to correctl...
2009-07-14 Torok Edwinllvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE...
2009-07-11 Torok Edwinassert(0) -> LLVM_UNREACHABLE.
2009-06-30 Evan ChengAdd a bit IsUndef to MachineOperand. This indicates...
2009-06-24 Chris LattnerRearrange some stuff in MachineOperand and add a new...
2009-06-24 Evan ChengFix support for inline asm input / output operand tying...
2009-06-05 Dan GohmanRemove some unnecessary #includes.
2009-04-30 Argyrios KyrtzidisMake DebugLoc independent of DwarfWriter.
2009-04-29 Jakob Stoklund OlesenMachineInstr::isRegTiedTo{Use,Def}Operand can safely...
2009-04-15 Dan GohmanFix MachineInstr::getNumExplicitOperands to count
2009-04-15 Dan GohmanGive RemoveRegOperandFromRegInfo a comment and move the
2009-04-09 Chris Lattnerignore register zero in isRegTiedToUseOperand, followin...
2009-04-09 Bob WilsonFix pr3954. The register scavenger asserts for inline...
2009-04-09 Chris Lattnerreg0 references are not real registers. This fixes...
2009-03-23 Evan ChengModel inline asm constraint which ties an input to...
2009-03-19 Evan ChengAdded MachineInstr::isRegTiedToDefOperand to check...
2009-02-19 Bill WendlingPrint out debug info when printing the machine instruction.
2009-01-27 Dale JohannesenAdd a DebugLoc field and some simple accessors.
2008-12-23 Dan GohmanUse isTerminator() instead of isBranch()||isReturn...
2008-12-18 Dan GohmanPrint subreg information in MachineInstr::dump.
2008-12-09 Dan GohmanMinor code simplification.
2008-12-05 Dan GohmanDrop the reg argument to isRegReDefinedByTwoAddr, which...
2008-11-18 Dan GohmanAdd more const qualifiers. This fixes build breakage...
2008-11-18 Dan GohmanMake some methods const.
2008-10-10 Mon P WangAdded missing print functions that take a raw_ostream
2008-10-03 Dan GohmanSwitch the MachineOperand accessors back to the short...
2008-10-02 Dan GohmanFix a think-o in isSafeToMove. This fixes it from think...
2008-09-24 Dale JohannesenNext round of earlyclobber handling. Approach the
2008-09-24 Dan GohmanAdd a method to MachineInstr for testing whether it...
2008-09-17 Dale JohannesenAdd a bit to mark operands of asm's that conflict
2008-09-14 Dale Johannesenadjust last patch per review feedback
2008-09-13 Dan GohmanRemove isImm(), isReg(), and friends, in favor of
2008-09-12 Dale JohannesenPass "earlyclobber" bit through to machine
2008-09-03 Dan GohmanFix addRegisterDead and addRegisterKilled to be more...
2008-08-30 Evan ChengFold isRematerializable checks into isSafeToReMat.
2008-08-27 Evan ChengMove the check whether it's worth remating to caller.
2008-08-27 Evan ChengRefactor isSafeToReMat out of 2addr pass.
2008-08-24 Chris Lattnersimplify PseudoSourceValue printing a bit. Unnest...
2008-08-24 Evan ChengPrint PseudoSourceValue.
2008-08-20 Dan GohmanChange the FoldingSetNodeID usage for objects which...
2008-08-14 Owen AndersonMove MachineInstr::getOpcode inline.
2008-08-14 Owen AndersonSpeed up addRegisterDead by adding more fast checks...
2008-07-28 Dan GohmanFold the useful features of alist and alist_node into...
2008-07-21 Dan GohmanNow that the MachineInstr leaks are fixed, enable leak...
2008-07-19 Evan ChengFix a memory leak in LiveIntervalAnalysis.
2008-07-17 Dan GohmanRe-introduce LeakDetector support for MachineInstrs...
2008-07-16 Dan GohmanAdd an assert to check for empty flags for MachineMemOp...
2008-07-11 Dan GohmanTrim unnecessary #includes.
2008-07-10 Evan Cheng- Change the horrible N^2 isRegReDefinedByTwoAddr....
2008-07-08 Dan GohmanIt's no longer necessary to test if a MachineBasicBlock's
2008-07-08 Dan GohmanVerify that MachineMemOperand alignment is a non-zero...
2008-07-07 Dan GohmanPool-allocation for MachineInstrs, MachineBasicBlocks...
2008-07-07 Dan GohmanMove MachineMemOperand's constructor out of line, to...
2008-07-03 Evan Cheng- Remove calls to copyKillDeadInfo which is an N^2...
2008-07-03 Dan GohmanReapply r52988, "Simplify addRegisterKilled and addRegi...
2008-07-02 Dan GohmanRevert r52988. It broke 254.gap on x86-64.
next