2001-06-06 20:29:01 +00:00
|
|
|
//===-- Instruction.cpp - Implement the Instruction class --------*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// This file implements the Instruction class for the VMCore library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Instruction.h"
|
2002-02-12 21:07:25 +00:00
|
|
|
#include "llvm/BasicBlock.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
#include "llvm/Method.h"
|
|
|
|
#include "llvm/SymbolTable.h"
|
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
Instruction::Instruction(const Type *ty, unsigned it, const std::string &Name)
|
2002-02-03 07:52:58 +00:00
|
|
|
: User(ty, Value::InstructionVal, Name) {
|
2001-06-06 20:29:01 +00:00
|
|
|
Parent = 0;
|
|
|
|
iType = it;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Specialize setName to take care of symbol table majik
|
2002-01-20 22:54:45 +00:00
|
|
|
void Instruction::setName(const std::string &name, SymbolTable *ST) {
|
2001-06-06 20:29:01 +00:00
|
|
|
BasicBlock *P = 0; Method *PP = 0;
|
2001-09-07 16:47:03 +00:00
|
|
|
assert((ST == 0 || !getParent() || !getParent()->getParent() ||
|
|
|
|
ST == getParent()->getParent()->getSymbolTable()) &&
|
|
|
|
"Invalid symtab argument!");
|
2001-06-06 20:29:01 +00:00
|
|
|
if ((P = getParent()) && (PP = P->getParent()) && hasName())
|
|
|
|
PP->getSymbolTable()->remove(this);
|
|
|
|
Value::setName(name);
|
|
|
|
if (PP && hasName()) PP->getSymbolTableSure()->insert(this);
|
|
|
|
}
|