2003-09-30 18:37:50 +00:00
|
|
|
//===-- llvm/GlobalValue.h - Class to represent a global value --*- C++ -*-===//
|
2003-10-20 20:19:47 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-10-03 14:53:21 +00:00
|
|
|
//
|
|
|
|
// This file is a common base class of all globally definable objects. As such,
|
2002-09-06 21:31:57 +00:00
|
|
|
// it is subclassed by GlobalVariable and by Function. This is used because you
|
2001-10-03 14:53:21 +00:00
|
|
|
// can do certain things with these global objects that you can't do to anything
|
|
|
|
// else. For example, use the address of one as a constant.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_GLOBALVALUE_H
|
|
|
|
#define LLVM_GLOBALVALUE_H
|
|
|
|
|
2004-07-17 23:28:28 +00:00
|
|
|
#include "llvm/Constant.h"
|
2003-11-11 22:41:34 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2001-10-03 14:53:21 +00:00
|
|
|
class PointerType;
|
2002-04-28 04:45:05 +00:00
|
|
|
class Module;
|
2001-10-03 14:53:21 +00:00
|
|
|
|
2004-07-17 23:28:28 +00:00
|
|
|
class GlobalValue : public Constant {
|
2001-10-03 14:53:21 +00:00
|
|
|
GlobalValue(const GlobalValue &); // do not implement
|
2003-04-16 20:28:45 +00:00
|
|
|
public:
|
|
|
|
enum LinkageTypes {
|
|
|
|
ExternalLinkage, // Externally visible function
|
|
|
|
LinkOnceLinkage, // Keep one copy of named function when linking (inline)
|
2003-10-16 18:27:04 +00:00
|
|
|
WeakLinkage, // Keep one copy of named function when linking (weak)
|
2003-04-16 20:28:45 +00:00
|
|
|
AppendingLinkage, // Special purpose, only applies to global arrays
|
2004-11-14 21:02:28 +00:00
|
|
|
InternalLinkage, // Rename collisions when linking (static functions)
|
|
|
|
GhostLinkage // Stand-in functions for streaming fns from BC files
|
2003-04-16 20:28:45 +00:00
|
|
|
};
|
2001-10-03 14:53:21 +00:00
|
|
|
protected:
|
2003-04-16 20:28:45 +00:00
|
|
|
GlobalValue(const Type *Ty, ValueTy vty, LinkageTypes linkage,
|
2002-01-20 22:54:45 +00:00
|
|
|
const std::string &name = "")
|
2004-07-17 23:28:28 +00:00
|
|
|
: Constant(Ty, vty, name), Linkage(linkage), Parent(0) { }
|
2001-10-03 19:28:15 +00:00
|
|
|
|
2003-04-16 20:28:45 +00:00
|
|
|
LinkageTypes Linkage; // The linkage of this global
|
2001-10-03 19:28:15 +00:00
|
|
|
Module *Parent;
|
2001-10-03 14:53:21 +00:00
|
|
|
public:
|
2004-07-19 00:55:19 +00:00
|
|
|
~GlobalValue() {
|
|
|
|
removeDeadConstantUsers(); // remove any dead constants using this.
|
|
|
|
}
|
2004-07-17 23:28:28 +00:00
|
|
|
|
|
|
|
/// If the usage is empty (except transitively dead constants), then this
|
2004-07-18 00:55:49 +00:00
|
|
|
/// global value can can be safely deleted since the destructor will
|
2004-07-17 23:28:28 +00:00
|
|
|
/// delete the dead constants as well.
|
2004-07-18 00:55:49 +00:00
|
|
|
/// @brief Determine if the usage of this global value is empty except
|
2004-07-17 23:28:28 +00:00
|
|
|
/// for transitively dead constants.
|
|
|
|
bool use_empty_except_constants();
|
2001-10-03 14:53:21 +00:00
|
|
|
|
2002-10-09 23:11:33 +00:00
|
|
|
/// getType - Global values are always pointers.
|
2001-10-03 14:53:21 +00:00
|
|
|
inline const PointerType *getType() const {
|
2003-11-16 20:21:15 +00:00
|
|
|
return reinterpret_cast<const PointerType*>(User::getType());
|
2001-10-03 14:53:21 +00:00
|
|
|
}
|
|
|
|
|
2003-04-16 20:28:45 +00:00
|
|
|
bool hasExternalLinkage() const { return Linkage == ExternalLinkage; }
|
|
|
|
bool hasLinkOnceLinkage() const { return Linkage == LinkOnceLinkage; }
|
2003-10-16 18:27:04 +00:00
|
|
|
bool hasWeakLinkage() const { return Linkage == WeakLinkage; }
|
2003-04-16 20:28:45 +00:00
|
|
|
bool hasAppendingLinkage() const { return Linkage == AppendingLinkage; }
|
|
|
|
bool hasInternalLinkage() const { return Linkage == InternalLinkage; }
|
|
|
|
void setLinkage(LinkageTypes LT) { Linkage = LT; }
|
|
|
|
LinkageTypes getLinkage() const { return Linkage; }
|
2001-11-26 18:46:40 +00:00
|
|
|
|
2004-11-15 23:20:19 +00:00
|
|
|
/// hasNotBeenReadFromBytecode - If a module provider is being used to lazily
|
|
|
|
/// stream in functions from disk, this method can be used to check to see if
|
|
|
|
/// the function has been read in yet or not. Unless you are working on the
|
|
|
|
/// JIT or something else that streams stuff in lazily, you don't need to
|
|
|
|
/// worry about this.
|
|
|
|
bool hasNotBeenReadFromBytecode() const { return Linkage == GhostLinkage; }
|
|
|
|
|
|
|
|
/// Override from Constant class. No GlobalValue's are null values so this
|
|
|
|
/// always returns false.
|
2004-07-17 23:28:28 +00:00
|
|
|
virtual bool isNullValue() const { return false; }
|
|
|
|
|
|
|
|
/// Override from Constant class.
|
|
|
|
virtual void destroyConstant();
|
|
|
|
|
2002-10-09 23:11:33 +00:00
|
|
|
/// isExternal - Return true if the primary definition of this global value is
|
|
|
|
/// outside of the current translation unit...
|
|
|
|
virtual bool isExternal() const = 0;
|
|
|
|
|
|
|
|
/// getParent - Get the module that this global value is contained inside
|
|
|
|
/// of...
|
2001-10-03 19:28:15 +00:00
|
|
|
inline Module *getParent() { return Parent; }
|
|
|
|
inline const Module *getParent() const { return Parent; }
|
|
|
|
|
2004-07-12 01:17:52 +00:00
|
|
|
/// removeDeadConstantUsers - If there are any dead constant users dangling
|
|
|
|
/// off of this global value, remove them. This method is useful for clients
|
|
|
|
/// that want to check to see if a global is unused, but don't want to deal
|
|
|
|
/// with potentially dead constants hanging off of the globals.
|
|
|
|
///
|
2004-07-19 00:55:19 +00:00
|
|
|
/// This method tries to make the global dead. If it detects a user that
|
|
|
|
/// would prevent it from becoming completely dead, it gives up early,
|
|
|
|
/// potentially leaving some dead constant users around.
|
|
|
|
void removeDeadConstantUsers();
|
2004-07-12 01:17:52 +00:00
|
|
|
|
2001-10-03 14:53:21 +00:00
|
|
|
// Methods for support type inquiry through isa, cast, and dyn_cast:
|
|
|
|
static inline bool classof(const GlobalValue *T) { return true; }
|
|
|
|
static inline bool classof(const Value *V) {
|
2002-03-26 17:48:08 +00:00
|
|
|
return V->getValueType() == Value::FunctionVal ||
|
2001-10-03 14:53:21 +00:00
|
|
|
V->getValueType() == Value::GlobalVariableVal;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-10-03 14:53:21 +00:00
|
|
|
#endif
|