blob: 737af5baec9ce53cc307fbfe04cbe4aa725c20d5 [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}