1 //===-- MachineInstr.cpp --------------------------------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // Methods common to all machine instructions. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/CodeGen/MachineInstr.h" 15 #include "llvm/CodeGen/MachineFunction.h" 16 #include "llvm/Target/TargetMachine.h" 17 #include "llvm/Target/TargetInstrInfo.h" 18 #include "llvm/Target/MRegisterInfo.h" 19 #include "llvm/Support/LeakDetector.h" 20 #include "llvm/Support/Streams.h" 21 #include <ostream> 22 using namespace llvm; 23 24 /// MachineInstr ctor - This constructor creates a dummy MachineInstr with 25 /// TID NULL and no operands. 26 MachineInstr::MachineInstr() 27 : TID(0), NumImplicitOps(0), parent(0) { 28 // Make sure that we get added to a machine basicblock 29 LeakDetector::addGarbageObject(this); 30 } 31 32 void MachineInstr::addImplicitDefUseOperands() { 33 if (TID->ImplicitDefs) 34 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs) 35 addOperand(MachineOperand::CreateReg(*ImpDefs, true, true)); 36 if (TID->ImplicitUses) 37 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses) 38 addOperand(MachineOperand::CreateReg(*ImpUses, false, true)); 39 } 40 41 /// MachineInstr ctor - This constructor create a MachineInstr and add the 42 /// implicit operands. It reserves space for number of operands specified by 43 /// TargetInstrDescriptor or the numOperands if it is not zero. (for 44 /// instructions with variable number of operands). 45 MachineInstr::MachineInstr(const TargetInstrDescriptor &tid, bool NoImp) 46 : TID(&tid), NumImplicitOps(0), parent(0) { 47 if (!NoImp && TID->ImplicitDefs) 48 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs) 49 NumImplicitOps++; 50 if (!NoImp && TID->ImplicitUses) 51 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses) 52 NumImplicitOps++; 53 Operands.reserve(NumImplicitOps + TID->numOperands); 54 if (!NoImp) 55 addImplicitDefUseOperands(); 56 // Make sure that we get added to a machine basicblock 57 LeakDetector::addGarbageObject(this); 58 } 59 60 /// MachineInstr ctor - Work exactly the same as the ctor above, except that the 61 /// MachineInstr is created and added to the end of the specified basic block. 62 /// 63 MachineInstr::MachineInstr(MachineBasicBlock *MBB, 64 const TargetInstrDescriptor &tid) 65 : TID(&tid), NumImplicitOps(0), parent(0) { 66 assert(MBB && "Cannot use inserting ctor with null basic block!"); 67 if (TID->ImplicitDefs) 68 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs) 69 NumImplicitOps++; 70 if (TID->ImplicitUses) 71 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses) 72 NumImplicitOps++; 73 Operands.reserve(NumImplicitOps + TID->numOperands); 74 addImplicitDefUseOperands(); 75 // Make sure that we get added to a machine basicblock 76 LeakDetector::addGarbageObject(this); 77 MBB->push_back(this); // Add instruction to end of basic block! 78 } 79 80 /// MachineInstr ctor - Copies MachineInstr arg exactly 81 /// 82 MachineInstr::MachineInstr(const MachineInstr &MI) { 83 TID = MI.getInstrDescriptor(); 84 NumImplicitOps = MI.NumImplicitOps; 85 Operands.reserve(MI.getNumOperands()); 86 87 // Add operands 88 for (unsigned i = 0; i != MI.getNumOperands(); ++i) { 89 Operands.push_back(MI.getOperand(i)); 90 Operands.back().ParentMI = this; 91 } 92 93 // Set parent, next, and prev to null 94 parent = 0; 95 prev = 0; 96 next = 0; 97 } 98 99 100 MachineInstr::~MachineInstr() { 101 LeakDetector::removeGarbageObject(this); 102 #ifndef NDEBUG 103 for (unsigned i = 0, e = Operands.size(); i != e; ++i) 104 assert(Operands[i].ParentMI == this && "ParentMI mismatch!"); 105 #endif 106 } 107 108 /// getOpcode - Returns the opcode of this MachineInstr. 109 /// 110 int MachineInstr::getOpcode() const { 111 return TID->Opcode; 112 } 113 114 /// removeFromParent - This method unlinks 'this' from the containing basic 115 /// block, and returns it, but does not delete it. 116 MachineInstr *MachineInstr::removeFromParent() { 117 assert(getParent() && "Not embedded in a basic block!"); 118 getParent()->remove(this); 119 return this; 120 } 121 122 123 /// OperandComplete - Return true if it's illegal to add a new operand 124 /// 125 bool MachineInstr::OperandsComplete() const { 126 unsigned short NumOperands = TID->numOperands; 127 if ((TID->Flags & M_VARIABLE_OPS) == 0 && 128 getNumOperands()-NumImplicitOps >= NumOperands) 129 return true; // Broken: we have all the operands of this instruction! 130 return false; 131 } 132 133 /// getNumExplicitOperands - Returns the number of non-implicit operands. 134 /// 135 unsigned MachineInstr::getNumExplicitOperands() const { 136 unsigned NumOperands = TID->numOperands; 137 if ((TID->Flags & M_VARIABLE_OPS) == 0) 138 return NumOperands; 139 140 for (unsigned e = getNumOperands(); NumOperands != e; ++NumOperands) { 141 const MachineOperand &MO = getOperand(NumOperands); 142 if (!MO.isRegister() || !MO.isImplicit()) 143 NumOperands++; 144 } 145 return NumOperands; 146 } 147 148 /// isIdenticalTo - Return true if this operand is identical to the specified 149 /// operand. 150 bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const { 151 if (getType() != Other.getType()) return false; 152 153 switch (getType()) { 154 default: assert(0 && "Unrecognized operand type"); 155 case MachineOperand::MO_Register: 156 return getReg() == Other.getReg() && isDef() == Other.isDef() && 157 getSubReg() == Other.getSubReg(); 158 case MachineOperand::MO_Immediate: 159 return getImm() == Other.getImm(); 160 case MachineOperand::MO_MachineBasicBlock: 161 return getMBB() == Other.getMBB(); 162 case MachineOperand::MO_FrameIndex: 163 return getFrameIndex() == Other.getFrameIndex(); 164 case MachineOperand::MO_ConstantPoolIndex: 165 return getConstantPoolIndex() == Other.getConstantPoolIndex() && 166 getOffset() == Other.getOffset(); 167 case MachineOperand::MO_JumpTableIndex: 168 return getJumpTableIndex() == Other.getJumpTableIndex(); 169 case MachineOperand::MO_GlobalAddress: 170 return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset(); 171 case MachineOperand::MO_ExternalSymbol: 172 return !strcmp(getSymbolName(), Other.getSymbolName()) && 173 getOffset() == Other.getOffset(); 174 } 175 } 176 177 /// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of 178 /// the specific register or -1 if it is not found. It further tightening 179 /// the search criteria to a use that kills the register if isKill is true. 180 int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill) const { 181 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { 182 const MachineOperand &MO = getOperand(i); 183 if (MO.isRegister() && MO.isUse() && MO.getReg() == Reg) 184 if (!isKill || MO.isKill()) 185 return i; 186 } 187 return -1; 188 } 189 190 /// findRegisterDefOperand() - Returns the MachineOperand that is a def of 191 /// the specific register or NULL if it is not found. 192 MachineOperand *MachineInstr::findRegisterDefOperand(unsigned Reg) { 193 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { 194 MachineOperand &MO = getOperand(i); 195 if (MO.isRegister() && MO.isDef() && MO.getReg() == Reg) 196 return &MO; 197 } 198 return NULL; 199 } 200 201 /// findFirstPredOperandIdx() - Find the index of the first operand in the 202 /// operand list that is used to represent the predicate. It returns -1 if 203 /// none is found. 204 int MachineInstr::findFirstPredOperandIdx() const { 205 const TargetInstrDescriptor *TID = getInstrDescriptor(); 206 if (TID->Flags & M_PREDICABLE) { 207 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) 208 if ((TID->OpInfo[i].Flags & M_PREDICATE_OPERAND)) 209 return i; 210 } 211 212 return -1; 213 } 214 215 /// isRegReDefinedByTwoAddr - Returns true if the Reg re-definition is due 216 /// to two addr elimination. 217 bool MachineInstr::isRegReDefinedByTwoAddr(unsigned Reg) const { 218 const TargetInstrDescriptor *TID = getInstrDescriptor(); 219 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { 220 const MachineOperand &MO1 = getOperand(i); 221 if (MO1.isRegister() && MO1.isDef() && MO1.getReg() == Reg) { 222 for (unsigned j = i+1; j < e; ++j) { 223 const MachineOperand &MO2 = getOperand(j); 224 if (MO2.isRegister() && MO2.isUse() && MO2.getReg() == Reg && 225 TID->getOperandConstraint(j, TOI::TIED_TO) == (int)i) 226 return true; 227 } 228 } 229 } 230 return false; 231 } 232 233 /// copyKillDeadInfo - Copies kill / dead operand properties from MI. 234 /// 235 void MachineInstr::copyKillDeadInfo(const MachineInstr *MI) { 236 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 237 const MachineOperand &MO = MI->getOperand(i); 238 if (!MO.isRegister() || (!MO.isKill() && !MO.isDead())) 239 continue; 240 for (unsigned j = 0, ee = getNumOperands(); j != ee; ++j) { 241 MachineOperand &MOp = getOperand(j); 242 if (!MOp.isIdenticalTo(MO)) 243 continue; 244 if (MO.isKill()) 245 MOp.setIsKill(); 246 else 247 MOp.setIsDead(); 248 break; 249 } 250 } 251 } 252 253 /// copyPredicates - Copies predicate operand(s) from MI. 254 void MachineInstr::copyPredicates(const MachineInstr *MI) { 255 const TargetInstrDescriptor *TID = MI->getInstrDescriptor(); 256 if (TID->Flags & M_PREDICABLE) { 257 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 258 if ((TID->OpInfo[i].Flags & M_PREDICATE_OPERAND)) { 259 // Predicated operands must be last operands. 260 addOperand(MI->getOperand(i)); 261 } 262 } 263 } 264 } 265 266 void MachineInstr::dump() const { 267 cerr << " " << *this; 268 } 269 270 static inline void OutputReg(std::ostream &os, unsigned RegNo, 271 const MRegisterInfo *MRI = 0) { 272 if (!RegNo || MRegisterInfo::isPhysicalRegister(RegNo)) { 273 if (MRI) 274 os << "%" << MRI->get(RegNo).Name; 275 else 276 os << "%mreg(" << RegNo << ")"; 277 } else 278 os << "%reg" << RegNo; 279 } 280 281 static void print(const MachineOperand &MO, std::ostream &OS, 282 const TargetMachine *TM) { 283 const MRegisterInfo *MRI = 0; 284 285 if (TM) MRI = TM->getRegisterInfo(); 286 287 switch (MO.getType()) { 288 case MachineOperand::MO_Register: 289 OutputReg(OS, MO.getReg(), MRI); 290 break; 291 case MachineOperand::MO_Immediate: 292 OS << MO.getImm(); 293 break; 294 case MachineOperand::MO_MachineBasicBlock: 295 OS << "mbb<" 296 << ((Value*)MO.getMachineBasicBlock()->getBasicBlock())->getName() 297 << "," << (void*)MO.getMachineBasicBlock() << ">"; 298 break; 299 case MachineOperand::MO_FrameIndex: 300 OS << "<fi#" << MO.getFrameIndex() << ">"; 301 break; 302 case MachineOperand::MO_ConstantPoolIndex: 303 OS << "<cp#" << MO.getConstantPoolIndex() << ">"; 304 break; 305 case MachineOperand::MO_JumpTableIndex: 306 OS << "<jt#" << MO.getJumpTableIndex() << ">"; 307 break; 308 case MachineOperand::MO_GlobalAddress: 309 OS << "<ga:" << ((Value*)MO.getGlobal())->getName(); 310 if (MO.getOffset()) OS << "+" << MO.getOffset(); 311 OS << ">"; 312 break; 313 case MachineOperand::MO_ExternalSymbol: 314 OS << "<es:" << MO.getSymbolName(); 315 if (MO.getOffset()) OS << "+" << MO.getOffset(); 316 OS << ">"; 317 break; 318 default: 319 assert(0 && "Unrecognized operand type"); 320 } 321 } 322 323 void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const { 324 unsigned StartOp = 0; 325 326 // Specialize printing if op#0 is definition 327 if (getNumOperands() && getOperand(0).isRegister() && getOperand(0).isDef()) { 328 ::print(getOperand(0), OS, TM); 329 if (getOperand(0).isDead()) 330 OS << "<dead>"; 331 OS << " = "; 332 ++StartOp; // Don't print this operand again! 333 } 334 335 if (TID) 336 OS << TID->Name; 337 338 for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) { 339 const MachineOperand& mop = getOperand(i); 340 if (i != StartOp) 341 OS << ","; 342 OS << " "; 343 ::print(mop, OS, TM); 344 345 if (mop.isRegister()) { 346 if (mop.isDef() || mop.isKill() || mop.isDead() || mop.isImplicit()) { 347 OS << "<"; 348 bool NeedComma = false; 349 if (mop.isImplicit()) { 350 OS << (mop.isDef() ? "imp-def" : "imp-use"); 351 NeedComma = true; 352 } else if (mop.isDef()) { 353 OS << "def"; 354 NeedComma = true; 355 } 356 if (mop.isKill() || mop.isDead()) { 357 if (NeedComma) 358 OS << ","; 359 if (mop.isKill()) 360 OS << "kill"; 361 if (mop.isDead()) 362 OS << "dead"; 363 } 364 OS << ">"; 365 } 366 } 367 } 368 369 OS << "\n"; 370 } 371 372 void MachineInstr::print(std::ostream &os) const { 373 // If the instruction is embedded into a basic block, we can find the target 374 // info for the instruction. 375 if (const MachineBasicBlock *MBB = getParent()) { 376 const MachineFunction *MF = MBB->getParent(); 377 if (MF) 378 print(os, &MF->getTarget()); 379 else 380 print(os, 0); 381 } 382 383 // Otherwise, print it out in the "raw" format without symbolic register names 384 // and such. 385 os << getInstrDescriptor()->Name; 386 387 for (unsigned i = 0, N = getNumOperands(); i < N; i++) { 388 os << "\t" << getOperand(i); 389 if (getOperand(i).isRegister() && getOperand(i).isDef()) 390 os << "<d>"; 391 } 392 393 os << "\n"; 394 } 395 396 void MachineOperand::print(std::ostream &OS) const { 397 switch (getType()) { 398 case MO_Register: 399 OutputReg(OS, getReg()); 400 break; 401 case MO_Immediate: 402 OS << getImm(); 403 break; 404 case MO_MachineBasicBlock: 405 OS << "<mbb:" 406 << ((Value*)getMachineBasicBlock()->getBasicBlock())->getName() 407 << "@" << (void*)getMachineBasicBlock() << ">"; 408 break; 409 case MO_FrameIndex: 410 OS << "<fi#" << getFrameIndex() << ">"; 411 break; 412 case MO_ConstantPoolIndex: 413 OS << "<cp#" << getConstantPoolIndex() << ">"; 414 break; 415 case MO_JumpTableIndex: 416 OS << "<jt#" << getJumpTableIndex() << ">"; 417 break; 418 case MO_GlobalAddress: 419 OS << "<ga:" << ((Value*)getGlobal())->getName() << ">"; 420 break; 421 case MO_ExternalSymbol: 422 OS << "<es:" << getSymbolName() << ">"; 423 break; 424 default: 425 assert(0 && "Unrecognized operand type"); 426 break; 427 } 428 } 429 430