2009-07-28 23:49:47 +02:00
|
|
|
//===-- llvm/Metadata.h - Metadata definitions ------------------*- C++ -*-===//
|
2009-05-10 22:57:05 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
/// @file
|
2009-07-28 23:49:47 +02:00
|
|
|
/// This file contains the declarations for metadata subclasses.
|
|
|
|
/// They represent the different flavors of metadata that live in LLVM.
|
2009-05-10 22:57:05 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-10-20 13:44:38 +02:00
|
|
|
#ifndef LLVM_METADATA_H
|
|
|
|
#define LLVM_METADATA_H
|
2009-05-10 22:57:05 +02:00
|
|
|
|
2009-10-22 01:57:35 +02:00
|
|
|
#include "llvm/Value.h"
|
2011-03-04 02:20:33 +01:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2009-09-03 03:39:20 +02:00
|
|
|
#include "llvm/ADT/FoldingSet.h"
|
2009-07-29 19:16:17 +02:00
|
|
|
#include "llvm/ADT/ilist_node.h"
|
2009-05-10 22:57:05 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-07-29 17:24:54 +02:00
|
|
|
class Constant;
|
2009-09-16 20:09:00 +02:00
|
|
|
class Instruction;
|
2009-08-11 19:45:13 +02:00
|
|
|
class LLVMContext;
|
2009-12-28 09:30:43 +01:00
|
|
|
class Module;
|
2009-12-28 09:26:43 +01:00
|
|
|
template <typename T> class SmallVectorImpl;
|
2009-12-31 02:22:29 +01:00
|
|
|
template<typename ValueSubClass, typename ItemParentClass>
|
|
|
|
class SymbolTableListTraits;
|
|
|
|
|
|
|
|
|
2009-07-22 19:43:22 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// MDString - a single uniqued string.
|
|
|
|
/// These are used to efficiently contain a byte sequence for metadata.
|
2011-06-02 01:32:40 +02:00
|
|
|
/// MDString is always unnamed.
|
2010-01-22 23:52:10 +01:00
|
|
|
class MDString : public Value {
|
2009-07-22 19:43:22 +02:00
|
|
|
MDString(const MDString &); // DO NOT IMPLEMENT
|
|
|
|
|
2009-08-04 00:51:10 +02:00
|
|
|
StringRef Str;
|
2009-12-28 09:30:43 +01:00
|
|
|
explicit MDString(LLVMContext &C, StringRef S);
|
2009-07-22 19:43:22 +02:00
|
|
|
|
2009-07-23 03:19:53 +02:00
|
|
|
public:
|
2009-10-22 02:10:15 +02:00
|
|
|
static MDString *get(LLVMContext &Context, StringRef Str);
|
2010-03-10 17:04:20 +01:00
|
|
|
static MDString *get(LLVMContext &Context, const char *Str) {
|
|
|
|
return get(Context, Str ? StringRef(Str) : StringRef());
|
|
|
|
}
|
|
|
|
|
2009-07-26 01:55:21 +02:00
|
|
|
StringRef getString() const { return Str; }
|
|
|
|
|
2009-11-04 04:08:57 +01:00
|
|
|
unsigned getLength() const { return (unsigned)Str.size(); }
|
2009-07-22 19:43:22 +02:00
|
|
|
|
2009-10-19 09:10:59 +02:00
|
|
|
typedef StringRef::iterator iterator;
|
|
|
|
|
2009-07-22 19:43:22 +02:00
|
|
|
/// begin() - Pointer to the first byte of the string.
|
|
|
|
///
|
2009-10-19 09:10:59 +02:00
|
|
|
iterator begin() const { return Str.begin(); }
|
2009-07-22 19:43:22 +02:00
|
|
|
|
|
|
|
/// end() - Pointer to one byte past the end of the string.
|
|
|
|
///
|
2009-10-19 09:10:59 +02:00
|
|
|
iterator end() const { return Str.end(); }
|
2009-07-22 19:43:22 +02:00
|
|
|
|
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
|
|
|
static inline bool classof(const MDString *) { return true; }
|
|
|
|
static bool classof(const Value *V) {
|
|
|
|
return V->getValueID() == MDStringVal;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-12-28 08:41:54 +01:00
|
|
|
|
2009-12-31 02:22:29 +01:00
|
|
|
class MDNodeOperand;
|
2009-12-28 08:41:54 +01:00
|
|
|
|
2009-05-10 22:57:05 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// MDNode - a tuple of other values.
|
2010-01-22 23:52:10 +01:00
|
|
|
class MDNode : public Value, public FoldingSetNode {
|
2009-08-04 00:51:10 +02:00
|
|
|
MDNode(const MDNode &); // DO NOT IMPLEMENT
|
2009-12-28 10:07:21 +01:00
|
|
|
void operator=(const MDNode &); // DO NOT IMPLEMENT
|
2009-12-31 02:22:29 +01:00
|
|
|
friend class MDNodeOperand;
|
2010-02-18 21:53:16 +01:00
|
|
|
friend class LLVMContextImpl;
|
2009-12-28 10:07:21 +01:00
|
|
|
|
2009-12-31 02:22:29 +01:00
|
|
|
/// NumOperands - This many 'MDNodeOperand' items are co-allocated onto the
|
2009-12-31 02:05:46 +01:00
|
|
|
/// end of this MDNode.
|
2009-12-28 10:07:21 +01:00
|
|
|
unsigned NumOperands;
|
2009-12-18 21:09:14 +01:00
|
|
|
|
2009-12-28 10:07:21 +01:00
|
|
|
// Subclass data enums.
|
|
|
|
enum {
|
2009-12-30 22:42:11 +01:00
|
|
|
/// FunctionLocalBit - This bit is set if this MDNode is function local.
|
|
|
|
/// This is true when it (potentially transitively) contains a reference to
|
|
|
|
/// something in a function, like an argument, basicblock, or instruction.
|
|
|
|
FunctionLocalBit = 1 << 0,
|
|
|
|
|
|
|
|
/// NotUniquedBit - This is set on MDNodes that are not uniqued because they
|
2010-04-29 14:32:45 +02:00
|
|
|
/// have a null operand.
|
2009-12-31 02:05:46 +01:00
|
|
|
NotUniquedBit = 1 << 1,
|
|
|
|
|
|
|
|
/// DestroyFlag - This bit is set by destroy() so the destructor can assert
|
|
|
|
/// that the node isn't being destroyed with a plain 'delete'.
|
|
|
|
DestroyFlag = 1 << 2
|
2009-12-28 10:07:21 +01:00
|
|
|
};
|
2009-12-18 21:09:14 +01:00
|
|
|
|
2010-01-10 08:14:18 +01:00
|
|
|
// FunctionLocal enums.
|
|
|
|
enum FunctionLocalness {
|
|
|
|
FL_Unknown = -1,
|
|
|
|
FL_No = 0,
|
|
|
|
FL_Yes = 1
|
|
|
|
};
|
|
|
|
|
2010-02-18 22:03:36 +01:00
|
|
|
/// replaceOperand - Replace each instance of F from the operand list of this
|
|
|
|
/// node with T.
|
2009-12-31 02:22:29 +01:00
|
|
|
void replaceOperand(MDNodeOperand *Op, Value *NewVal);
|
2009-12-31 02:05:46 +01:00
|
|
|
~MDNode();
|
2009-09-03 03:39:20 +02:00
|
|
|
|
2011-04-21 21:59:31 +02:00
|
|
|
MDNode(LLVMContext &C, ArrayRef<Value*> Vals, bool isFunctionLocal);
|
2010-01-10 08:14:18 +01:00
|
|
|
|
2011-04-21 21:59:31 +02:00
|
|
|
static MDNode *getMDNode(LLVMContext &C, ArrayRef<Value*> Vals,
|
2010-01-26 03:36:35 +01:00
|
|
|
FunctionLocalness FL, bool Insert = true);
|
2009-05-10 22:57:05 +02:00
|
|
|
public:
|
2009-08-04 00:51:10 +02:00
|
|
|
// Constructors and destructors.
|
2011-04-21 21:59:31 +02:00
|
|
|
static MDNode *get(LLVMContext &Context, ArrayRef<Value*> Vals);
|
2010-01-10 08:14:18 +01:00
|
|
|
// getWhenValsUnresolved - Construct MDNode determining function-localness
|
|
|
|
// from isFunctionLocal argument, not by analyzing Vals.
|
2011-04-21 21:59:31 +02:00
|
|
|
static MDNode *getWhenValsUnresolved(LLVMContext &Context,
|
|
|
|
ArrayRef<Value*> Vals,
|
|
|
|
bool isFunctionLocal);
|
2010-01-26 03:36:35 +01:00
|
|
|
|
2011-04-21 21:59:31 +02:00
|
|
|
static MDNode *getIfExists(LLVMContext &Context, ArrayRef<Value*> Vals);
|
2010-08-21 00:02:26 +02:00
|
|
|
|
|
|
|
/// getTemporary - Return a temporary MDNode, for use in constructing
|
|
|
|
/// cyclic MDNode structures. A temporary MDNode is not uniqued,
|
|
|
|
/// may be RAUW'd, and must be manually deleted with deleteTemporary.
|
2011-04-21 21:59:31 +02:00
|
|
|
static MDNode *getTemporary(LLVMContext &Context, ArrayRef<Value*> Vals);
|
2010-08-21 00:02:26 +02:00
|
|
|
|
|
|
|
/// deleteTemporary - Deallocate a node created by getTemporary. The
|
|
|
|
/// node must not have any users.
|
|
|
|
static void deleteTemporary(MDNode *N);
|
2009-08-04 00:51:10 +02:00
|
|
|
|
2009-12-31 02:22:29 +01:00
|
|
|
/// getOperand - Return specified operand.
|
|
|
|
Value *getOperand(unsigned i) const;
|
2009-12-28 08:41:54 +01:00
|
|
|
|
2009-12-31 02:22:29 +01:00
|
|
|
/// getNumOperands - Return number of MDNode operands.
|
|
|
|
unsigned getNumOperands() const { return NumOperands; }
|
2009-12-16 03:52:09 +01:00
|
|
|
|
|
|
|
/// isFunctionLocal - Return whether MDNode is local to a function.
|
2009-12-29 03:14:09 +01:00
|
|
|
bool isFunctionLocal() const {
|
|
|
|
return (getSubclassDataFromValue() & FunctionLocalBit) != 0;
|
|
|
|
}
|
2010-01-14 02:45:14 +01:00
|
|
|
|
|
|
|
// getFunction - If this metadata is function-local and recursively has a
|
|
|
|
// function-local operand, return the first such operand's parent function.
|
2010-01-18 23:55:08 +01:00
|
|
|
// Otherwise, return null. getFunction() should not be used for performance-
|
|
|
|
// critical code because it recursively visits all the MDNode's operands.
|
2010-01-20 05:45:57 +01:00
|
|
|
const Function *getFunction() const;
|
2009-12-18 21:09:14 +01:00
|
|
|
|
2009-09-03 03:39:20 +02:00
|
|
|
/// Profile - calculate a unique identifier for this MDNode to collapse
|
|
|
|
/// duplicates
|
|
|
|
void Profile(FoldingSetNodeID &ID) const;
|
|
|
|
|
2009-05-10 22:57:05 +02:00
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
|
|
|
static inline bool classof(const MDNode *) { return true; }
|
|
|
|
static bool classof(const Value *V) {
|
|
|
|
return V->getValueID() == MDNodeVal;
|
|
|
|
}
|
2009-12-29 03:14:09 +01:00
|
|
|
private:
|
2010-07-21 20:54:18 +02:00
|
|
|
// destroy - Delete this node. Only when there are no uses.
|
|
|
|
void destroy();
|
|
|
|
|
2009-12-30 22:42:11 +01:00
|
|
|
bool isNotUniqued() const {
|
|
|
|
return (getSubclassDataFromValue() & NotUniquedBit) != 0;
|
|
|
|
}
|
2010-03-13 02:26:15 +01:00
|
|
|
void setIsNotUniqued();
|
2009-12-30 22:42:11 +01:00
|
|
|
|
2009-12-29 03:14:09 +01:00
|
|
|
// Shadow Value::setValueSubclassData with a private forwarding method so that
|
|
|
|
// any future subclasses cannot accidentally use it.
|
|
|
|
void setValueSubclassData(unsigned short D) {
|
|
|
|
Value::setValueSubclassData(D);
|
|
|
|
}
|
2009-05-10 22:57:05 +02:00
|
|
|
};
|
|
|
|
|
2009-07-29 02:33:07 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2010-08-20 20:22:57 +02:00
|
|
|
/// NamedMDNode - a tuple of MDNodes. Despite its name, a NamedMDNode isn't
|
|
|
|
/// itself an MDNode. NamedMDNodes belong to modules, have names, and contain
|
|
|
|
/// lists of MDNodes.
|
2010-07-22 01:38:33 +02:00
|
|
|
class NamedMDNode : public ilist_node<NamedMDNode> {
|
2009-07-29 19:16:17 +02:00
|
|
|
friend class SymbolTableListTraits<NamedMDNode, Module>;
|
2010-01-12 23:00:04 +01:00
|
|
|
friend struct ilist_traits<NamedMDNode>;
|
2009-08-11 19:45:13 +02:00
|
|
|
friend class LLVMContextImpl;
|
2010-07-22 01:38:33 +02:00
|
|
|
friend class Module;
|
2009-08-04 00:51:10 +02:00
|
|
|
NamedMDNode(const NamedMDNode &); // DO NOT IMPLEMENT
|
|
|
|
|
2010-01-07 20:39:36 +01:00
|
|
|
std::string Name;
|
2009-07-29 02:33:07 +02:00
|
|
|
Module *Parent;
|
2010-07-21 20:01:42 +02:00
|
|
|
void *Operands; // SmallVector<TrackingVH<MDNode>, 4>
|
2009-07-29 02:33:07 +02:00
|
|
|
|
2009-10-21 19:33:41 +02:00
|
|
|
void setParent(Module *M) { Parent = M; }
|
2009-07-29 02:33:07 +02:00
|
|
|
|
2010-07-22 01:38:33 +02:00
|
|
|
explicit NamedMDNode(const Twine &N);
|
2009-08-11 20:01:24 +02:00
|
|
|
|
2010-07-22 01:38:33 +02:00
|
|
|
public:
|
2009-08-03 08:19:01 +02:00
|
|
|
/// eraseFromParent - Drop all references and remove the node from parent
|
|
|
|
/// module.
|
|
|
|
void eraseFromParent();
|
|
|
|
|
|
|
|
/// dropAllReferences - Remove all uses and clear node vector.
|
|
|
|
void dropAllReferences();
|
|
|
|
|
2009-08-04 00:51:10 +02:00
|
|
|
/// ~NamedMDNode - Destroy NamedMDNode.
|
2009-08-03 08:19:01 +02:00
|
|
|
~NamedMDNode();
|
|
|
|
|
2009-07-29 02:33:07 +02:00
|
|
|
/// getParent - Get the module that holds this named metadata collection.
|
|
|
|
inline Module *getParent() { return Parent; }
|
|
|
|
inline const Module *getParent() const { return Parent; }
|
|
|
|
|
2009-12-31 02:22:29 +01:00
|
|
|
/// getOperand - Return specified operand.
|
2010-01-05 21:41:31 +01:00
|
|
|
MDNode *getOperand(unsigned i) const;
|
2009-12-28 09:07:14 +01:00
|
|
|
|
2009-12-31 02:22:29 +01:00
|
|
|
/// getNumOperands - Return the number of NamedMDNode operands.
|
|
|
|
unsigned getNumOperands() const;
|
2009-07-29 02:33:07 +02:00
|
|
|
|
2009-12-31 02:22:29 +01:00
|
|
|
/// addOperand - Add metadata operand.
|
2010-01-05 21:41:31 +01:00
|
|
|
void addOperand(MDNode *M);
|
2010-01-07 20:39:36 +01:00
|
|
|
|
|
|
|
/// getName - Return a constant reference to this named metadata's name.
|
|
|
|
StringRef getName() const;
|
|
|
|
|
2010-07-22 01:38:33 +02:00
|
|
|
/// print - Implement operator<< on NamedMDNode.
|
|
|
|
void print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW = 0) const;
|
2011-12-10 00:18:34 +01:00
|
|
|
|
|
|
|
/// dump() - Allow printing of NamedMDNodes from the debugger.
|
|
|
|
void dump() const;
|
2009-07-29 02:33:07 +02:00
|
|
|
};
|
|
|
|
|
2009-05-10 22:57:05 +02:00
|
|
|
} // end llvm namespace
|
|
|
|
|
|
|
|
#endif
|