blob: 49ceab7041548d31edccbea0da435142f315cabb [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- MachineInstr.cpp --------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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>
22using namespace llvm;
23
24/// MachineInstr ctor - This constructor creates a dummy MachineInstr with
25/// TID NULL and no operands.
26MachineInstr::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
32void MachineInstr::addImplicitDefUseOperands() {
33 if (TID->ImplicitDefs)
Chris Lattner720b6cf2007-12-30 00:12:25 +000034 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
Chris Lattner63ab1f22007-12-30 00:41:17 +000035 addOperand(MachineOperand::CreateReg(*ImpDefs, true, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036 if (TID->ImplicitUses)
Chris Lattner720b6cf2007-12-30 00:12:25 +000037 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
Chris Lattner63ab1f22007-12-30 00:41:17 +000038 addOperand(MachineOperand::CreateReg(*ImpUses, false, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039}
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).
Evan Chengbdf72b42007-10-13 02:23:01 +000045MachineInstr::MachineInstr(const TargetInstrDescriptor &tid, bool NoImp)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046 : TID(&tid), NumImplicitOps(0), parent(0) {
Evan Chengbdf72b42007-10-13 02:23:01 +000047 if (!NoImp && TID->ImplicitDefs)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000048 for (const unsigned *ImpDefs = TID->ImplicitDefs; *ImpDefs; ++ImpDefs)
49 NumImplicitOps++;
Evan Chengbdf72b42007-10-13 02:23:01 +000050 if (!NoImp && TID->ImplicitUses)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051 for (const unsigned *ImpUses = TID->ImplicitUses; *ImpUses; ++ImpUses)
52 NumImplicitOps++;
53 Operands.reserve(NumImplicitOps + TID->numOperands);
Evan Chengbdf72b42007-10-13 02:23:01 +000054 if (!NoImp)
55 addImplicitDefUseOperands();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000056 // 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///
63MachineInstr::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///
82MachineInstr::MachineInstr(const MachineInstr &MI) {
83 TID = MI.getInstrDescriptor();
84 NumImplicitOps = MI.NumImplicitOps;
85 Operands.reserve(MI.getNumOperands());
86
87 // Add operands
Chris Lattnere722c3f2007-12-30 06:11:04 +000088 for (unsigned i = 0; i != MI.getNumOperands(); ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089 Operands.push_back(MI.getOperand(i));
Chris Lattnere722c3f2007-12-30 06:11:04 +000090 Operands.back().ParentMI = this;
91 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000092
93 // Set parent, next, and prev to null
94 parent = 0;
95 prev = 0;
96 next = 0;
97}
98
99
100MachineInstr::~MachineInstr() {
101 LeakDetector::removeGarbageObject(this);
Chris Lattnere722c3f2007-12-30 06:11:04 +0000102#ifndef NDEBUG
103 for (unsigned i = 0, e = Operands.size(); i != e; ++i)
104 assert(Operands[i].ParentMI == this && "ParentMI mismatch!");
105#endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106}
107
108/// getOpcode - Returns the opcode of this MachineInstr.
109///
Dan Gohman5f222be2007-09-14 20:08:19 +0000110int MachineInstr::getOpcode() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000111 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.
116MachineInstr *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///
125bool 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///
135unsigned 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.
150bool 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:
Chris Lattner6afc4e32007-12-30 20:55:08 +0000156 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
157 getSubReg() == Other.getSubReg();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000158 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.
180int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill) const {
181 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
182 const MachineOperand &MO = getOperand(i);
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000183 if (MO.isRegister() && MO.isUse() && MO.getReg() == Reg)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 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.
192MachineOperand *MachineInstr::findRegisterDefOperand(unsigned Reg) {
193 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
194 MachineOperand &MO = getOperand(i);
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000195 if (MO.isRegister() && MO.isDef() && MO.getReg() == Reg)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196 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.
204int 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
Evan Cheng687d1082007-10-12 08:50:34 +0000215/// isRegReDefinedByTwoAddr - Returns true if the Reg re-definition is due
216/// to two addr elimination.
217bool 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
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000233/// copyKillDeadInfo - Copies kill / dead operand properties from MI.
234///
235void MachineInstr::copyKillDeadInfo(const MachineInstr *MI) {
236 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
237 const MachineOperand &MO = MI->getOperand(i);
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000238 if (!MO.isRegister() || (!MO.isKill() && !MO.isDead()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000239 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.
254void 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)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000259 // Predicated operands must be last operands.
Chris Lattner63ab1f22007-12-30 00:41:17 +0000260 addOperand(MI->getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000261 }
262 }
263 }
264}
265
266void MachineInstr::dump() const {
267 cerr << " " << *this;
268}
269
Chris Lattner8d5e9a82007-12-30 21:01:27 +0000270static void OutputReg(std::ostream &os, unsigned RegNo,
271 const MRegisterInfo *MRI = 0) {
272 if (MRegisterInfo::isPhysicalRegister(RegNo)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000273 if (MRI)
274 os << "%" << MRI->get(RegNo).Name;
275 else
Chris Lattner8d5e9a82007-12-30 21:01:27 +0000276 os << "%mreg" << RegNo;
277 } else {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278 os << "%reg" << RegNo;
Chris Lattner8d5e9a82007-12-30 21:01:27 +0000279 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000280}
281
282static void print(const MachineOperand &MO, std::ostream &OS,
283 const TargetMachine *TM) {
284 const MRegisterInfo *MRI = 0;
285
286 if (TM) MRI = TM->getRegisterInfo();
287
288 switch (MO.getType()) {
289 case MachineOperand::MO_Register:
290 OutputReg(OS, MO.getReg(), MRI);
Chris Lattner8d5e9a82007-12-30 21:01:27 +0000291 if (MO.isDef()) OS << "<d>";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000292 break;
293 case MachineOperand::MO_Immediate:
Chris Lattnerda4cff12007-12-30 20:50:28 +0000294 OS << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295 break;
296 case MachineOperand::MO_MachineBasicBlock:
297 OS << "mbb<"
298 << ((Value*)MO.getMachineBasicBlock()->getBasicBlock())->getName()
299 << "," << (void*)MO.getMachineBasicBlock() << ">";
300 break;
301 case MachineOperand::MO_FrameIndex:
302 OS << "<fi#" << MO.getFrameIndex() << ">";
303 break;
304 case MachineOperand::MO_ConstantPoolIndex:
305 OS << "<cp#" << MO.getConstantPoolIndex() << ">";
306 break;
307 case MachineOperand::MO_JumpTableIndex:
308 OS << "<jt#" << MO.getJumpTableIndex() << ">";
309 break;
310 case MachineOperand::MO_GlobalAddress:
311 OS << "<ga:" << ((Value*)MO.getGlobal())->getName();
312 if (MO.getOffset()) OS << "+" << MO.getOffset();
313 OS << ">";
314 break;
315 case MachineOperand::MO_ExternalSymbol:
316 OS << "<es:" << MO.getSymbolName();
317 if (MO.getOffset()) OS << "+" << MO.getOffset();
318 OS << ">";
319 break;
320 default:
321 assert(0 && "Unrecognized operand type");
322 }
323}
324
325void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const {
326 unsigned StartOp = 0;
327
328 // Specialize printing if op#0 is definition
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000329 if (getNumOperands() && getOperand(0).isRegister() && getOperand(0).isDef()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000330 ::print(getOperand(0), OS, TM);
331 if (getOperand(0).isDead())
332 OS << "<dead>";
333 OS << " = ";
334 ++StartOp; // Don't print this operand again!
335 }
336
337 if (TID)
338 OS << TID->Name;
339
340 for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) {
341 const MachineOperand& mop = getOperand(i);
342 if (i != StartOp)
343 OS << ",";
344 OS << " ";
345 ::print(mop, OS, TM);
346
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000347 if (mop.isRegister()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000348 if (mop.isDef() || mop.isKill() || mop.isDead() || mop.isImplicit()) {
349 OS << "<";
350 bool NeedComma = false;
351 if (mop.isImplicit()) {
352 OS << (mop.isDef() ? "imp-def" : "imp-use");
353 NeedComma = true;
354 } else if (mop.isDef()) {
355 OS << "def";
356 NeedComma = true;
357 }
358 if (mop.isKill() || mop.isDead()) {
359 if (NeedComma)
360 OS << ",";
361 if (mop.isKill())
362 OS << "kill";
363 if (mop.isDead())
364 OS << "dead";
365 }
366 OS << ">";
367 }
368 }
369 }
370
371 OS << "\n";
372}
373
374void MachineInstr::print(std::ostream &os) const {
375 // If the instruction is embedded into a basic block, we can find the target
376 // info for the instruction.
377 if (const MachineBasicBlock *MBB = getParent()) {
378 const MachineFunction *MF = MBB->getParent();
379 if (MF)
380 print(os, &MF->getTarget());
381 else
382 print(os, 0);
383 }
384
385 // Otherwise, print it out in the "raw" format without symbolic register names
386 // and such.
387 os << getInstrDescriptor()->Name;
388
Chris Lattner8d5e9a82007-12-30 21:01:27 +0000389 for (unsigned i = 0, N = getNumOperands(); i < N; i++)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390 os << "\t" << getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000391
392 os << "\n";
393}
394
395void MachineOperand::print(std::ostream &OS) const {
396 switch (getType()) {
397 case MO_Register:
398 OutputReg(OS, getReg());
Chris Lattner8d5e9a82007-12-30 21:01:27 +0000399 if (isDef()) OS << "<d>";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000400 break;
401 case MO_Immediate:
Chris Lattnerda4cff12007-12-30 20:50:28 +0000402 OS << getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403 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