Fix typeo in assertion message
[oota-llvm.git] / lib / VMCore / Instruction.cpp
1 //===-- Instruction.cpp - Implement the Instruction class --------*- C++ -*--=//
2 //
3 // This file implements the Instruction class for the VMCore library.
4 //
5 //===----------------------------------------------------------------------===//
6
7 #include "llvm/Function.h"
8 #include "llvm/SymbolTable.h"
9 #include "llvm/Type.h"
10 #include "Support/LeakDetector.h"
11
12 Instruction::Instruction(const Type *ty, unsigned it, const std::string &Name) 
13   : User(ty, Value::InstructionVal, Name) {
14   Parent = 0;
15   iType = it;
16
17   // Make sure that we get added to a basicblock
18   LeakDetector::addGarbageObject(this);
19 }
20
21 void Instruction::setParent(BasicBlock *P) {
22   if (getParent())
23     LeakDetector::addGarbageObject(this);
24
25   Parent = P;
26
27   if (getParent())
28     LeakDetector::removeGarbageObject(this);
29 }
30
31 // Specialize setName to take care of symbol table majik
32 void Instruction::setName(const std::string &name, SymbolTable *ST) {
33   BasicBlock *P = 0; Function *PP = 0;
34   assert((ST == 0 || !getParent() || !getParent()->getParent() || 
35           ST == getParent()->getParent()->getSymbolTable()) &&
36          "Invalid symtab argument!");
37   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 }
42
43
44 const char *Instruction::getOpcodeName(unsigned OpCode) {
45   switch (OpCode) {
46   // Terminators
47   case Ret:    return "ret";
48   case Br:     return "br";
49   case Switch: return "switch";
50   case Invoke: return "invoke";
51     
52   // 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 }