2002-03-26 18:01:55 +00:00
|
|
|
//===-- Function.cpp - Implement the Global object classes -------*- C++ -*--=//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2002-03-26 18:01:55 +00:00
|
|
|
// This file implements the Function & GlobalVariable classes for the VMCore
|
2001-09-10 07:58:01 +00:00
|
|
|
// library.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Module.h"
|
2002-09-06 20:46:32 +00:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
#include "llvm/iOther.h"
|
2003-05-08 03:47:33 +00:00
|
|
|
#include "llvm/Intrinsics.h"
|
2002-09-08 18:59:35 +00:00
|
|
|
#include "Support/LeakDetector.h"
|
2002-06-25 16:13:24 +00:00
|
|
|
#include "SymbolTableListTraitsImpl.h"
|
|
|
|
|
2002-09-06 21:33:15 +00:00
|
|
|
BasicBlock *ilist_traits<BasicBlock>::createNode() {
|
2002-09-08 18:59:35 +00:00
|
|
|
BasicBlock *Ret = new BasicBlock();
|
|
|
|
// This should not be garbage monitored.
|
|
|
|
LeakDetector::removeGarbageObject(Ret);
|
|
|
|
return Ret;
|
2002-09-06 21:33:15 +00:00
|
|
|
}
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
iplist<BasicBlock> &ilist_traits<BasicBlock>::getList(Function *F) {
|
|
|
|
return F->getBasicBlockList();
|
|
|
|
}
|
|
|
|
|
|
|
|
Argument *ilist_traits<Argument>::createNode() {
|
2002-09-08 18:59:35 +00:00
|
|
|
Argument *Ret = new Argument(Type::IntTy);
|
|
|
|
// This should not be garbage monitored.
|
|
|
|
LeakDetector::removeGarbageObject(Ret);
|
|
|
|
return Ret;
|
2002-06-25 16:13:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
iplist<Argument> &ilist_traits<Argument>::getList(Function *F) {
|
|
|
|
return F->getArgumentList();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Explicit instantiations of SymbolTableListTraits since some of the methods
|
|
|
|
// are not in the public header file...
|
|
|
|
template SymbolTableListTraits<Argument, Function, Function>;
|
|
|
|
template SymbolTableListTraits<BasicBlock, Function, Function>;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-04-09 19:39:35 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Argument Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-09-17 01:17:57 +00:00
|
|
|
Argument::Argument(const Type *Ty, const std::string &Name, Function *Par)
|
2002-09-06 21:33:15 +00:00
|
|
|
: Value(Ty, Value::ArgumentVal, Name) {
|
|
|
|
Parent = 0;
|
2002-09-08 18:59:35 +00:00
|
|
|
|
|
|
|
// Make sure that we get added to a function
|
|
|
|
LeakDetector::addGarbageObject(this);
|
|
|
|
|
2002-09-06 21:33:15 +00:00
|
|
|
if (Par)
|
|
|
|
Par->getArgumentList().push_back(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-09 19:39:35 +00:00
|
|
|
// Specialize setName to take care of symbol table majik
|
|
|
|
void Argument::setName(const std::string &name, SymbolTable *ST) {
|
|
|
|
Function *P;
|
2002-11-20 18:36:02 +00:00
|
|
|
assert((ST == 0 || (!getParent() || ST == &getParent()->getSymbolTable())) &&
|
2002-04-09 19:39:35 +00:00
|
|
|
"Invalid symtab argument!");
|
2002-11-20 18:36:02 +00:00
|
|
|
if ((P = getParent()) && hasName()) P->getSymbolTable().remove(this);
|
2002-04-09 19:39:35 +00:00
|
|
|
Value::setName(name);
|
2002-11-20 18:36:02 +00:00
|
|
|
if (P && hasName()) P->getSymbolTable().insert(this);
|
2002-04-09 19:39:35 +00:00
|
|
|
}
|
|
|
|
|
2002-09-06 21:33:15 +00:00
|
|
|
void Argument::setParent(Function *parent) {
|
2002-09-08 18:59:35 +00:00
|
|
|
if (getParent())
|
|
|
|
LeakDetector::addGarbageObject(this);
|
2002-09-06 21:33:15 +00:00
|
|
|
Parent = parent;
|
2002-09-08 18:59:35 +00:00
|
|
|
if (getParent())
|
|
|
|
LeakDetector::removeGarbageObject(this);
|
2002-09-06 21:33:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-10 07:58:01 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-03-26 18:01:55 +00:00
|
|
|
// Function Implementation
|
2001-09-10 07:58:01 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-04-16 20:28:45 +00:00
|
|
|
Function::Function(const FunctionType *Ty, LinkageTypes Linkage,
|
2002-09-06 20:46:32 +00:00
|
|
|
const std::string &name, Module *ParentModule)
|
2003-04-16 20:28:45 +00:00
|
|
|
: GlobalValue(PointerType::get(Ty), Value::FunctionVal, Linkage, name) {
|
2002-06-25 16:13:24 +00:00
|
|
|
BasicBlocks.setItemParent(this);
|
|
|
|
BasicBlocks.setParent(this);
|
|
|
|
ArgumentList.setItemParent(this);
|
|
|
|
ArgumentList.setParent(this);
|
2002-11-20 18:07:48 +00:00
|
|
|
SymTab = new SymbolTable();
|
2002-09-06 20:46:32 +00:00
|
|
|
|
2002-10-13 20:57:00 +00:00
|
|
|
// Create the arguments vector, all arguments start out unnamed.
|
|
|
|
for (unsigned i = 0, e = Ty->getNumParams(); i != e; ++i) {
|
|
|
|
assert(Ty->getParamType(i) != Type::VoidTy &&
|
|
|
|
"Cannot have void typed arguments!");
|
|
|
|
ArgumentList.push_back(new Argument(Ty->getParamType(i)));
|
|
|
|
}
|
|
|
|
|
2002-09-08 18:59:35 +00:00
|
|
|
// Make sure that we get added to a function
|
|
|
|
LeakDetector::addGarbageObject(this);
|
|
|
|
|
2002-09-06 20:46:32 +00:00
|
|
|
if (ParentModule)
|
|
|
|
ParentModule->getFunctionList().push_back(this);
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2002-03-23 22:51:58 +00:00
|
|
|
Function::~Function() {
|
2001-06-06 20:29:01 +00:00
|
|
|
dropAllReferences(); // After this it is safe to delete instructions.
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
BasicBlocks.clear(); // Delete all basic blocks...
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
// Delete all of the method arguments and unlink from symbol table...
|
2002-06-25 16:13:24 +00:00
|
|
|
ArgumentList.clear();
|
2001-06-06 20:29:01 +00:00
|
|
|
ArgumentList.setParent(0);
|
2002-04-28 04:51:51 +00:00
|
|
|
delete SymTab;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Specialize setName to take care of symbol table majik
|
2002-03-23 22:51:58 +00:00
|
|
|
void Function::setName(const std::string &name, SymbolTable *ST) {
|
2001-06-06 20:29:01 +00:00
|
|
|
Module *P;
|
2002-11-20 18:36:02 +00:00
|
|
|
assert((ST == 0 || (!getParent() || ST == &getParent()->getSymbolTable())) &&
|
2001-09-07 16:47:18 +00:00
|
|
|
"Invalid symtab argument!");
|
2002-11-20 18:36:02 +00:00
|
|
|
if ((P = getParent()) && hasName()) P->getSymbolTable().remove(this);
|
2001-06-06 20:29:01 +00:00
|
|
|
Value::setName(name);
|
2002-11-20 18:36:02 +00:00
|
|
|
if (P && getName() != "") P->getSymbolTable().insert(this);
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2002-03-23 22:51:58 +00:00
|
|
|
void Function::setParent(Module *parent) {
|
2002-09-08 18:59:35 +00:00
|
|
|
if (getParent())
|
|
|
|
LeakDetector::addGarbageObject(this);
|
2001-06-06 20:29:01 +00:00
|
|
|
Parent = parent;
|
2002-09-08 18:59:35 +00:00
|
|
|
if (getParent())
|
|
|
|
LeakDetector::removeGarbageObject(this);
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2002-03-29 03:44:36 +00:00
|
|
|
const FunctionType *Function::getFunctionType() const {
|
|
|
|
return cast<FunctionType>(getType()->getElementType());
|
2001-10-03 14:53:21 +00:00
|
|
|
}
|
|
|
|
|
2002-03-23 22:51:58 +00:00
|
|
|
const Type *Function::getReturnType() const {
|
2002-03-29 03:44:36 +00:00
|
|
|
return getFunctionType()->getReturnType();
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// dropAllReferences() - This function causes all the subinstructions to "let
|
|
|
|
// go" of all references that they are maintaining. This allows one to
|
|
|
|
// 'delete' a whole class at a time, even though there may be circular
|
|
|
|
// references... first all references are dropped, and all use counts go to
|
|
|
|
// zero. Then everything is delete'd for real. Note that no operations are
|
|
|
|
// valid on an object that has "dropped all references", except operator
|
|
|
|
// delete.
|
|
|
|
//
|
2002-03-23 22:51:58 +00:00
|
|
|
void Function::dropAllReferences() {
|
2002-06-25 16:13:24 +00:00
|
|
|
for (iterator I = begin(), E = end(); I != E; ++I)
|
|
|
|
I->dropAllReferences();
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2001-09-10 07:58:01 +00:00
|
|
|
|
2003-05-08 03:47:33 +00:00
|
|
|
/// getIntrinsicID - This method returns the ID number of the specified
|
|
|
|
/// function, or LLVMIntrinsic::not_intrinsic if the function is not an
|
|
|
|
/// instrinsic, or if the pointer is null. This value is always defined to be
|
|
|
|
/// zero to allow easy checking for whether a function is intrinsic or not. The
|
|
|
|
/// particular intrinsic functions which correspond to this value are defined in
|
|
|
|
/// llvm/Intrinsics.h.
|
|
|
|
///
|
|
|
|
unsigned Function::getIntrinsicID() const {
|
|
|
|
if (getName().size() <= 5 || getName()[4] != '.' || getName()[0] != 'l' ||
|
|
|
|
getName()[1] != 'l' || getName()[2] != 'v' || getName()[3] != 'm')
|
|
|
|
return 0; // All intrinsics start with 'llvm.'
|
|
|
|
|
2003-08-06 20:08:25 +00:00
|
|
|
// a table of all Alpha intrinsic functions
|
|
|
|
struct {
|
|
|
|
std::string name; // The name of the intrinsic
|
|
|
|
unsigned id; // Its ID number
|
|
|
|
} alpha_intrinsics[] = {
|
|
|
|
{ "llvm.alpha.ctlz", LLVMIntrinsic::alpha_ctlz },
|
|
|
|
{ "llvm.alpha.cttz", LLVMIntrinsic::alpha_cttz },
|
|
|
|
{ "llvm.alpha.ctpop", LLVMIntrinsic::alpha_ctpop },
|
|
|
|
{ "llvm.alpha.umulh", LLVMIntrinsic::alpha_umulh },
|
|
|
|
{ "llvm.alpha.vecop", LLVMIntrinsic::alpha_vecop },
|
|
|
|
{ "llvm.alpha.pup", LLVMIntrinsic::alpha_pup },
|
|
|
|
{ "llvm.alpha.bytezap", LLVMIntrinsic::alpha_bytezap },
|
|
|
|
{ "llvm.alpha.bytemanip", LLVMIntrinsic::alpha_bytemanip },
|
|
|
|
{ "llvm.alpha.dfp_bop", LLVMIntrinsic::alpha_dfpbop },
|
|
|
|
{ "llvm.alpha.dfp_uop", LLVMIntrinsic::alpha_dfpuop },
|
|
|
|
{ "llvm.alpha.unordered", LLVMIntrinsic::alpha_unordered },
|
|
|
|
{ "llvm.alpha.uqtodfp", LLVMIntrinsic::alpha_uqtodfp },
|
|
|
|
{ "llvm.alpha.uqtosfp", LLVMIntrinsic::alpha_uqtosfp },
|
|
|
|
{ "llvm.alpha.dfptosq", LLVMIntrinsic::alpha_dfptosq },
|
|
|
|
{ "llvm.alpha.sfptosq", LLVMIntrinsic::alpha_sfptosq },
|
|
|
|
};
|
|
|
|
const unsigned num_alpha_intrinsics =
|
|
|
|
sizeof(alpha_intrinsics) / sizeof(*alpha_intrinsics);
|
|
|
|
|
2003-05-08 03:47:33 +00:00
|
|
|
switch (getName()[5]) {
|
2003-07-28 21:20:57 +00:00
|
|
|
case 'a':
|
2003-08-24 05:30:29 +00:00
|
|
|
if (getName().size() > 11 &&
|
|
|
|
std::string(getName().begin()+4, getName().begin()+11) == ".alpha.")
|
|
|
|
for (unsigned i = 0; i < num_alpha_intrinsics; ++i)
|
|
|
|
if (getName() == alpha_intrinsics[i].name)
|
|
|
|
return alpha_intrinsics[i].id;
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
if (getName() == "llvm.exc.getcurrent")return LLVMIntrinsic::exc_getcurrent;
|
2003-08-24 12:24:08 +00:00
|
|
|
if (getName() == "llvm.exc.setcurrent")return LLVMIntrinsic::exc_setcurrent;
|
2003-07-28 21:20:57 +00:00
|
|
|
break;
|
2003-05-17 22:26:33 +00:00
|
|
|
case 'l':
|
|
|
|
if (getName() == "llvm.longjmp") return LLVMIntrinsic::longjmp;
|
|
|
|
break;
|
|
|
|
case 's':
|
2003-08-18 15:41:24 +00:00
|
|
|
if (getName() == "llvm.setjmp") return LLVMIntrinsic::setjmp;
|
|
|
|
if (getName() == "llvm.sigsetjmp") return LLVMIntrinsic::sigsetjmp;
|
|
|
|
if (getName() == "llvm.siglongjmp") return LLVMIntrinsic::siglongjmp;
|
2003-05-17 22:26:33 +00:00
|
|
|
break;
|
2003-08-24 12:24:08 +00:00
|
|
|
case 'u':
|
|
|
|
if (getName() == "llvm.unwind") return LLVMIntrinsic::unwind;
|
|
|
|
break;
|
2003-05-08 03:47:33 +00:00
|
|
|
case 'v':
|
2003-05-17 22:26:33 +00:00
|
|
|
if (getName() == "llvm.va_copy") return LLVMIntrinsic::va_copy;
|
|
|
|
if (getName() == "llvm.va_end") return LLVMIntrinsic::va_end;
|
|
|
|
if (getName() == "llvm.va_start") return LLVMIntrinsic::va_start;
|
2003-05-08 03:47:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// The "llvm." namespace is reserved!
|
|
|
|
assert(0 && "Unknown LLVM intrinsic function!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-10 07:58:01 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GlobalVariable Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-04-16 20:28:45 +00:00
|
|
|
GlobalVariable::GlobalVariable(const Type *Ty, bool constant, LinkageTypes Link,
|
2002-07-24 22:08:53 +00:00
|
|
|
Constant *Initializer,
|
2002-09-06 21:33:15 +00:00
|
|
|
const std::string &Name, Module *ParentModule)
|
2003-04-16 20:28:45 +00:00
|
|
|
: GlobalValue(PointerType::get(Ty), Value::GlobalVariableVal, Link, Name),
|
2001-12-03 22:26:30 +00:00
|
|
|
isConstantGlobal(constant) {
|
2001-09-18 04:01:05 +00:00
|
|
|
if (Initializer) Operands.push_back(Use((Value*)Initializer, this));
|
2002-09-06 21:33:15 +00:00
|
|
|
|
2002-09-08 18:59:35 +00:00
|
|
|
LeakDetector::addGarbageObject(this);
|
|
|
|
|
2002-09-06 21:33:15 +00:00
|
|
|
if (ParentModule)
|
|
|
|
ParentModule->getGlobalList().push_back(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalVariable::setParent(Module *parent) {
|
2002-09-08 18:59:35 +00:00
|
|
|
if (getParent())
|
|
|
|
LeakDetector::addGarbageObject(this);
|
2002-09-06 21:33:15 +00:00
|
|
|
Parent = parent;
|
2002-09-08 18:59:35 +00:00
|
|
|
if (getParent())
|
|
|
|
LeakDetector::removeGarbageObject(this);
|
2001-09-10 07:58:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Specialize setName to take care of symbol table majik
|
2002-01-20 22:54:45 +00:00
|
|
|
void GlobalVariable::setName(const std::string &name, SymbolTable *ST) {
|
2001-09-10 07:58:01 +00:00
|
|
|
Module *P;
|
2002-11-20 18:36:02 +00:00
|
|
|
assert((ST == 0 || (!getParent() || ST == &getParent()->getSymbolTable())) &&
|
2001-09-10 07:58:01 +00:00
|
|
|
"Invalid symtab argument!");
|
2002-11-20 18:36:02 +00:00
|
|
|
if ((P = getParent()) && hasName()) P->getSymbolTable().remove(this);
|
2001-09-10 07:58:01 +00:00
|
|
|
Value::setName(name);
|
2002-11-20 18:36:02 +00:00
|
|
|
if (P && getName() != "") P->getSymbolTable().insert(this);
|
2001-09-10 07:58:01 +00:00
|
|
|
}
|