blob: bd342a2473c46eb0e59869b9ceffb728957ead7b [file] [log] [blame]
Chris Lattner2f7c9632001-06-06 20:29:01 +00001//===-- Method.cpp - Implement the Method class ------------------*- C++ -*--=//
2//
3// This file implements the Method class for the VMCore library.
4//
5//===----------------------------------------------------------------------===//
6
7#include "llvm/ValueHolderImpl.h"
8#include "llvm/DerivedTypes.h"
9#include "llvm/SymbolTable.h"
10#include "llvm/Module.h"
11#include "llvm/Method.h"
12#include "llvm/BasicBlock.h"
13#include "llvm/iOther.h"
14
15// Instantiate Templates - This ugliness is the price we have to pay
16// for having a ValueHolderImpl.h file seperate from ValueHolder.h! :(
17//
Chris Lattnerf2a738c2001-07-14 06:13:19 +000018template class ValueHolder<MethodArgument, Method, Method>;
19template class ValueHolder<BasicBlock , Method, Method>;
Chris Lattner2f7c9632001-06-06 20:29:01 +000020
21Method::Method(const MethodType *Ty, const string &name)
Chris Lattnerf2a738c2001-07-14 06:13:19 +000022 : Value(Ty, Value::MethodVal, name), SymTabValue(this), BasicBlocks(this),
Chris Lattner2f7c9632001-06-06 20:29:01 +000023 ArgumentList(this, this) {
24 assert(Ty->isMethodType() && "Method signature must be of method type!");
25 Parent = 0;
26}
27
28Method::~Method() {
29 dropAllReferences(); // After this it is safe to delete instructions.
30
31 // TODO: Should remove from the end, not the beginning of vector!
Chris Lattner4cee8d82001-06-27 23:41:11 +000032 iterator BI = begin();
33 while ((BI = begin()) != end())
Chris Lattner2f7c9632001-06-06 20:29:01 +000034 delete BasicBlocks.remove(BI);
35
36 // Delete all of the method arguments and unlink from symbol table...
37 ArgumentList.delete_all();
38 ArgumentList.setParent(0);
39}
40
41// Specialize setName to take care of symbol table majik
Chris Lattner5c764a52001-09-07 16:47:18 +000042void Method::setName(const string &name, SymbolTable *ST) {
Chris Lattner2f7c9632001-06-06 20:29:01 +000043 Module *P;
Chris Lattner5c764a52001-09-07 16:47:18 +000044 assert((ST == 0 || (!getParent() || ST == getParent()->getSymbolTable())) &&
45 "Invalid symtab argument!");
Chris Lattner2f7c9632001-06-06 20:29:01 +000046 if ((P = getParent()) && hasName()) P->getSymbolTable()->remove(this);
47 Value::setName(name);
48 if (P && getName() != "") P->getSymbolTableSure()->insert(this);
49}
50
51void Method::setParent(Module *parent) {
52 Parent = parent;
53
54 // Relink symbol tables together...
55 setParentSymTab(Parent ? Parent->getSymbolTableSure() : 0);
56}
57
58const Type *Method::getReturnType() const {
59 return ((const MethodType *)getType())->getReturnType();
60}
61
62const MethodType *Method::getMethodType() const {
63 return (const MethodType *)getType();
64}
65
66// dropAllReferences() - This function causes all the subinstructions to "let
67// go" of all references that they are maintaining. This allows one to
68// 'delete' a whole class at a time, even though there may be circular
69// references... first all references are dropped, and all use counts go to
70// zero. Then everything is delete'd for real. Note that no operations are
71// valid on an object that has "dropped all references", except operator
72// delete.
73//
74void Method::dropAllReferences() {
Chris Lattner4cee8d82001-06-27 23:41:11 +000075 for_each(begin(), end(), std::mem_fun(&BasicBlock::dropAllReferences));
Chris Lattner2f7c9632001-06-06 20:29:01 +000076}