1. f3baad3 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 19 years ago
  2. 75c2194 Move copyKillDeadInfo out-of-line. Add findRegisterUseOperand(). by Evan Cheng · 19 years ago
  3. 3c3ce98 - MachineInstr now keeps a ptr to TargetInstrDescriptor instead of Opcode. by Evan Cheng · 19 years ago
  4. 787b773 Use llvm streams instead of <iostream> by Bill Wendling · 19 years ago
  5. b2a6b0d Clean up. by Evan Cheng · 19 years ago
  6. 20350c4 Change MachineInstr ctor's to take a TargetInstrDescriptor reference instead by Evan Cheng · 19 years ago
  7. 539df43 setOperand should not zap the operand list or add implicit operands to an by Chris Lattner · 19 years ago
  8. ebb0357 Minor updates. by Evan Cheng · 19 years ago
  9. 77af6ac - Let MachineInstr ctors add implicit def and use operands. Other operands by Evan Cheng · 19 years ago
  10. 979bbf4 Add methods to add implicit def use operands to a MI. by Evan Cheng · 19 years ago
  11. 8c9c6d7 Add implicit def / use operands to MachineInstr. by Evan Cheng · 19 years ago
  12. 7a7835d be more aggressive about matching identical instructions. by Chris Lattner · 19 years ago
  13. 33f5af0 implement MachineOperand::isIdenticalTo by Chris Lattner · 19 years ago
  14. 2cb2383 Only call isUse/isDef on register operands by Chris Lattner · 19 years ago
  15. 55772cc Instructions with variable operands (variable_ops) can have a number required by Evan Cheng · 19 years ago
  16. 0f5c793 Remove a bogus cast. by Evan Cheng · 19 years ago
  17. abdf4d5 Final pass of minor cleanups for MachineInstr by Chris Lattner · 19 years ago
  18. 53af9da Remove redundancy and a level of indirection when creating machine operands by Chris Lattner · 19 years ago
  19. 469647b Remove and simplify some more machineinstr/machineoperand stuff. by Chris Lattner · 19 years ago
  20. 10b71c0 Rename MO_VirtualRegister -> MO_Register. Clean up immediate handling. by Chris Lattner · 19 years ago
  21. 10d6341 Move some methods out of MachineInstr into MachineOperand by Chris Lattner · 19 years ago
  22. fef7a2d There shalt be only one "immediate" operand type! by Chris Lattner · 19 years ago
  23. 15c52bd Change "value" in MachineOperand to be a GlobalValue, as that is the only by Chris Lattner · 19 years ago
  24. ee64b6b Remove a bunch more dead V9 specific stuff by Chris Lattner · 19 years ago
  25. 940cc97 Remove a bunch more SparcV9 specific stuff by Chris Lattner · 19 years ago
  26. 6e663f1 Remove some more V9-specific stuff. by Chris Lattner · 19 years ago
  27. 9f6639b Remove some more unused stuff from MachineInstr that was leftover from V9. by Chris Lattner · 19 years ago
  28. 4ca2ea5 JumpTable support! What this represents is working asm and jit support for by Nate Begeman · 19 years ago
  29. dcc1f99 This field no longer exists by Chris Lattner · 19 years ago
  30. a38c358 Remove some of the obvious V9-specific cruft by Chris Lattner · 19 years ago
  31. bec79b4 Add a MachineInstr::eraseFromParent convenience method. by Chris Lattner · 19 years ago
  32. 835702a Remove trailing whitespace by Misha Brukman · 20 years ago
  33. 3065220 Allow machine operands to represent global variables with offsets. This is by Chris Lattner · 21 years ago
  34. 7c16caa Changes For Bug 352 by Reid Spencer · 21 years ago
  35. b47ab7a * Doxygenify comments by Misha Brukman · 21 years ago
  36. eb04d9b Add #include <iostream> since Value.h does not #include it any more. by Reid Spencer · 21 years ago
  37. 23dbc81 Made a fix so that you can print out MachineInstrs that belong to a MachineBasicBlock that is not yet attached to a MachineFunction. This change includes changing the third operand (TargetMachine) to a pointer for the MachineInstr::print function. by Tanya Lattner · 21 years ago
  38. 4300ca9 Make debugging dumps w/ multiple MachineBBs for a given LLVM BB readable. by Brian Gaeke · 21 years ago
  39. 2150542 Adjust to new TargetMachine interface by Chris Lattner · 21 years ago
  40. bcee21b Changed clone to be const. by Tanya Lattner · 21 years ago
  41. 9953d86 Fixed up my changes to add support for cloning Machine Instructions. by Tanya Lattner · 21 years ago
  42. e6a4a7d Adding support to clone MachineInstr by Tanya Lattner · 21 years ago
  43. 0159721 Make MachineOperand's value named 'contents'. Make really, really sure by Brian Gaeke · 22 years ago
  44. 44b1b22 int64_t -> int by Chris Lattner · 22 years ago
  45. 519e1e8 Fix crash caused by passing register 0 to MRegisterInfo::isPhysicalRegister(). by Alkis Evlogimenos · 22 years ago
  46. 91a7dc0 Fix bugs in finegrainification by Chris Lattner · 22 years ago
  47. 43df6c2 Finegrainify namespacification by Chris Lattner · 22 years ago
  48. 63f41ab Fix a __LONG__ term annoyance of mine: symbolic registers weren't being printed by Chris Lattner · 22 years ago
  49. 14f3fe8 Add LeakDetection to MachineInstr. by Alkis Evlogimenos · 22 years ago
  50. 8cdd021 Remove getAllocatedRegNum(). Use getReg() instead. by Alkis Evlogimenos · 22 years ago
  51. e8f7c2f Add head-of-file comments and Doxygen comments. Tighten up a lot of whitespace. by Brian Gaeke · 22 years ago
  52. de8ac74 Add parent pointer to MachineInstr that points to owning by Alkis Evlogimenos · 22 years ago
  53. 6a597d6 Rename the opCode instance variable to Opcode by Chris Lattner · 22 years ago
  54. 6108d9d This field is never read by Chris Lattner · 22 years ago
  55. 3274264 Modify the two address instruction pass to remove the duplicate by Alkis Evlogimenos · 22 years ago
  56. 3d100ef When an instruction like: A += B had both A and B virtual registers by Alkis Evlogimenos · 22 years ago
  57. aaba463 Change interface of MachineOperand as follows: by Alkis Evlogimenos · 22 years ago
  58. 960707c Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
  59. 482202a Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
  60. 02fe6b7 Fixed spelling. by Misha Brukman · 22 years ago
  61. da92f36 Fix assertion in MachineInstr::substituteValue(). by Vikram S. Adve · 22 years ago
  62. 020b544 Do not insert physical regsiters into the regsUsed set by Chris Lattner · 22 years ago
  63. cd4f432 All callers of these methods actually wanted them to preserve the flags, by Chris Lattner · 22 years ago
  64. 41a894d Simplify code, eliminating the need for the X86 isVoid target instr flag by Chris Lattner · 22 years ago
  65. 1789d23 Remove using decl by Chris Lattner · 22 years ago
  66. 689adb1 Change interface to MachineInstr::substituteValue to specify more precisely by Vikram S. Adve · 22 years ago
  67. c468882 Allow explicit physical registers for implicit operands. by Vikram S. Adve · 22 years ago
  68. 7366fa1 (1) Added special register class containing (for now) %fsr. by Vikram S. Adve · 22 years ago
  69. 5da071b Remove obsolete ctor by Chris Lattner · 23 years ago
  70. b4d58d7 Rename MachineInstrInfo -> TargetInstrInfo by Chris Lattner · 23 years ago
  71. a2ad874 Add support for 3 new forms of MachineOperand by Chris Lattner · 23 years ago
  72. fd1ecad * Add printing support for FrameIndex operands by Chris Lattner · 23 years ago
  73. f895418 Implement printing of MBB arguments by Chris Lattner · 23 years ago
  74. d8ea18b Print is const! by Chris Lattner · 23 years ago
  75. 17ec8a8 Remove only uses of markDef/markDefAndUse methods by Chris Lattner · 23 years ago
  76. 6c614a99 Remove fixme by Chris Lattner · 23 years ago
  77. ac6e974 Add special code to make printing SSA form machine instructions nicer by Chris Lattner · 23 years ago
  78. 4e9fb1f Use MRegisterInfo, if available, to print symbolic register names by Chris Lattner · 23 years ago
  79. 214808f Implement structured machine code printing by Chris Lattner · 23 years ago
  80. 27ccb70 Implement autoinserting ctor by Chris Lattner · 23 years ago
  81. a1b4f0f Remove separate vector of implicit refs from MachineInstr, and by Vikram S. Adve · 23 years ago
  82. 07e2683 Move TargetInstrDescriptors extern to the one .cpp file that refers to it: by Chris Lattner · 23 years ago
  83. 660bf10 Use higher level methods, don't use TargetInstrDescriptors directly! by Chris Lattner · 23 years ago
  84. 5c7d638 Remove all traces of the "Opcode Mask" field in the MachineInstr class by Chris Lattner · 23 years ago
  85. bee314f Remove more default arguments that are never used by Chris Lattner · 23 years ago
  86. 307fb1a Remove default operands that are never used by Chris Lattner · 23 years ago
  87. ca4a9d2 * Make MachineOperand ctors private, so MachineOperand can only be created by Chris Lattner · 23 years ago
  88. 864d279 Remove two arguments that are never specified by Chris Lattner · 23 years ago
  89. 340bb96 Fairly major overhaul of MachineInstr & Operand classes by Chris Lattner · 23 years ago
  90. 9668c8c Add #includes now that MachineInstr.h doesn't include llvm/Target/MachineInstrInfo.h by Chris Lattner · 23 years ago
  91. ce64edd - Two minor improvements to the MachineInstr class to reduce footprint and by Chris Lattner · 23 years ago
  92. 97c348d Add method MachineInstr::replace to rewrite a machine instruction in place. by Vikram S. Adve · 23 years ago
  93. 7511302 Dump routine now writes out allocated register numbers if available. by Vikram S. Adve · 23 years ago
  94. fa99db7 Add method MachineInstr::substituteValue() which substitutes by Vikram S. Adve · 23 years ago
  95. 959a5fb by Chris Lattner · 23 years ago
  96. 10073a9 *** empty log message *** by Chris Lattner · 23 years ago
  97. f089faa Add support for marking each operand as a %hh, %hm, %lm or %lo. by Vikram S. Adve · 23 years ago
  98. 6c013a9 Moved class MachineCodeForBasicBlock to MachineCodeForBasicBlock.{cpp,h}. by Vikram S. Adve · 23 years ago
  99. d79d2c3 Improve printing during dumps. by Vikram S. Adve · 23 years ago
  100. 95f65b6 s/method/function by Chris Lattner · 23 years ago