blob: e6ff3d28d2d1321bb42bf575493364fb528ed705 [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 Lattner00950542001-06-06 20:29:01 +000010
Chris Lattner697954c2002-01-20 22:54:45 +000011Instruction::Instruction(const Type *ty, unsigned it, const std::string &Name)
Chris Lattner71947fd2002-02-03 07:52:58 +000012 : User(ty, Value::InstructionVal, Name) {
Chris Lattner00950542001-06-06 20:29:01 +000013 Parent = 0;
14 iType = it;
15}
16
Chris Lattner00950542001-06-06 20:29:01 +000017// Specialize setName to take care of symbol table majik
Chris Lattner697954c2002-01-20 22:54:45 +000018void Instruction::setName(const std::string &name, SymbolTable *ST) {
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000019 BasicBlock *P = 0; Function *PP = 0;
Chris Lattnere05bf2f2001-09-07 16:47:03 +000020 assert((ST == 0 || !getParent() || !getParent()->getParent() ||
21 ST == getParent()->getParent()->getSymbolTable()) &&
22 "Invalid symtab argument!");
Chris Lattner00950542001-06-06 20:29:01 +000023 if ((P = getParent()) && (PP = P->getParent()) && hasName())
24 PP->getSymbolTable()->remove(this);
25 Value::setName(name);
26 if (PP && hasName()) PP->getSymbolTableSure()->insert(this);
27}
Vikram S. Advec1056452002-07-14 23:09:40 +000028
29
30const char *Instruction::getOpcodeName(unsigned OpCode) {
31 switch (OpCode) {
32 // Terminators
Chris Lattner0513e9f2002-08-14 18:18:02 +000033 case Ret: return "ret";
34 case Br: return "br";
Vikram S. Advec1056452002-07-14 23:09:40 +000035 case Switch: return "switch";
36 case Invoke: return "invoke";
37
Vikram S. Advec1056452002-07-14 23:09:40 +000038 // Standard binary operators...
39 case Add: return "add";
40 case Sub: return "sub";
41 case Mul: return "mul";
42 case Div: return "div";
43 case Rem: return "rem";
44
45 // Logical operators...
46 case And: return "and";
47 case Or : return "or";
48 case Xor: return "xor";
49
50 // SetCC operators...
51 case SetLE: return "setle";
52 case SetGE: return "setge";
53 case SetLT: return "setlt";
54 case SetGT: return "setgt";
55 case SetEQ: return "seteq";
56 case SetNE: return "setne";
57
58 // Memory instructions...
59 case Malloc: return "malloc";
60 case Free: return "free";
61 case Alloca: return "alloca";
62 case Load: return "load";
63 case Store: return "store";
64 case GetElementPtr: return "getelementptr";
65
66 // Other instructions...
67 case PHINode: return "phi";
68 case Cast: return "cast";
69 case Call: return "call";
70 case Shl: return "shl";
71 case Shr: return "shr";
72
73 default: return "<Invalid operator> ";
74 }
75
76 return 0;
77}