blob: 4368b7e109235c92f6165b10189eb4fd49a5ebc0 [file] [log] [blame]
Chris Lattner00950542001-06-06 20:29:01 +00001//===-- Instruction.cpp - Implement the Instruction class --------*- C++ -*--=//
2//
3// This file implements the Instruction class for the VMCore library.
4//
5//===----------------------------------------------------------------------===//
6
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00007#include "llvm/Function.h"
Chris Lattner00950542001-06-06 20:29:01 +00008#include "llvm/SymbolTable.h"
Chris Lattner7e708292002-06-25 16:13:24 +00009#include "llvm/Type.h"
Chris Lattnerd1e693f2002-09-08 18:59:35 +000010#include "Support/LeakDetector.h"
Chris Lattner00950542001-06-06 20:29:01 +000011
Chris Lattner697954c2002-01-20 22:54:45 +000012Instruction::Instruction(const Type *ty, unsigned it, const std::string &Name)
Chris Lattner71947fd2002-02-03 07:52:58 +000013 : User(ty, Value::InstructionVal, Name) {
Chris Lattner00950542001-06-06 20:29:01 +000014 Parent = 0;
15 iType = it;
Chris Lattnerd1e693f2002-09-08 18:59:35 +000016
17 // Make sure that we get added to a basicblock
18 LeakDetector::addGarbageObject(this);
Chris Lattner00950542001-06-06 20:29:01 +000019}
20
Chris Lattnerbded1322002-09-06 21:33:15 +000021void Instruction::setParent(BasicBlock *P) {
Chris Lattnerd1e693f2002-09-08 18:59:35 +000022 if (getParent())
23 LeakDetector::addGarbageObject(this);
24
Chris Lattnerbded1322002-09-06 21:33:15 +000025 Parent = P;
Chris Lattnerd1e693f2002-09-08 18:59:35 +000026
27 if (getParent())
28 LeakDetector::removeGarbageObject(this);
Chris Lattnerbded1322002-09-06 21:33:15 +000029}
30
Chris Lattner00950542001-06-06 20:29:01 +000031// Specialize setName to take care of symbol table majik
Chris Lattner697954c2002-01-20 22:54:45 +000032void Instruction::setName(const std::string &name, SymbolTable *ST) {
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000033 BasicBlock *P = 0; Function *PP = 0;
Chris Lattnere05bf2f2001-09-07 16:47:03 +000034 assert((ST == 0 || !getParent() || !getParent()->getParent() ||
35 ST == getParent()->getParent()->getSymbolTable()) &&
36 "Invalid symtab argument!");
Chris Lattner00950542001-06-06 20:29:01 +000037 if ((P = getParent()) && (PP = P->getParent()) && hasName())
38 PP->getSymbolTable()->remove(this);
39 Value::setName(name);
40 if (PP && hasName()) PP->getSymbolTableSure()->insert(this);
41}
Vikram S. Advec1056452002-07-14 23:09:40 +000042
43
44const char *Instruction::getOpcodeName(unsigned OpCode) {
45 switch (OpCode) {
46 // Terminators
Chris Lattner0513e9f2002-08-14 18:18:02 +000047 case Ret: return "ret";
48 case Br: return "br";
Vikram S. Advec1056452002-07-14 23:09:40 +000049 case Switch: return "switch";
50 case Invoke: return "invoke";
51
Vikram S. Advec1056452002-07-14 23:09:40 +000052 // Standard binary operators...
53 case Add: return "add";
54 case Sub: return "sub";
55 case Mul: return "mul";
56 case Div: return "div";
57 case Rem: return "rem";
58
59 // Logical operators...
60 case And: return "and";
61 case Or : return "or";
62 case Xor: return "xor";
63
64 // SetCC operators...
65 case SetLE: return "setle";
66 case SetGE: return "setge";
67 case SetLT: return "setlt";
68 case SetGT: return "setgt";
69 case SetEQ: return "seteq";
70 case SetNE: return "setne";
71
72 // Memory instructions...
73 case Malloc: return "malloc";
74 case Free: return "free";
75 case Alloca: return "alloca";
76 case Load: return "load";
77 case Store: return "store";
78 case GetElementPtr: return "getelementptr";
79
80 // Other instructions...
81 case PHINode: return "phi";
82 case Cast: return "cast";
83 case Call: return "call";
84 case Shl: return "shl";
85 case Shr: return "shr";
86
87 default: return "<Invalid operator> ";
88 }
89
90 return 0;
91}