2012-12-20 01:36:59 +00:00
|
|
|
//===-- AttributeImpl.h - Attribute Internals -------------------*- C++ -*-===//
|
2012-09-26 21:07:29 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2012-12-20 21:28:43 +00:00
|
|
|
///
|
|
|
|
/// \file
|
|
|
|
/// \brief This file defines various helper methods and classes used by
|
|
|
|
/// LLVMContextImpl for creating and managing attributes.
|
|
|
|
///
|
2012-09-26 21:07:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_ATTRIBUTESIMPL_H
|
|
|
|
#define LLVM_ATTRIBUTESIMPL_H
|
|
|
|
|
|
|
|
#include "llvm/ADT/FoldingSet.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Attributes.h"
|
2013-01-29 03:20:31 +00:00
|
|
|
#include <string>
|
2012-09-26 21:07:29 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2012-12-29 12:29:38 +00:00
|
|
|
class Constant;
|
2012-12-19 23:55:43 +00:00
|
|
|
class LLVMContext;
|
|
|
|
|
2013-02-05 22:37:24 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// \class
|
|
|
|
/// \brief A set of classes that contain the kind and (optional) value of the
|
|
|
|
/// attribute object. There are three main categories: enum attribute entries,
|
|
|
|
/// represented by Attribute::AttrKind; alignment attribute entries; and string
|
|
|
|
/// attribute enties, which are for target-dependent attributes.
|
|
|
|
class AttributeEntry {
|
|
|
|
unsigned char KindID;
|
|
|
|
protected:
|
|
|
|
enum AttrEntryKind {
|
|
|
|
EnumAttrEntry,
|
|
|
|
AlignAttrEntry,
|
|
|
|
StringAttrEntry
|
|
|
|
};
|
|
|
|
public:
|
|
|
|
AttributeEntry(AttrEntryKind Kind)
|
|
|
|
: KindID(Kind) {}
|
|
|
|
virtual ~AttributeEntry() {}
|
|
|
|
|
|
|
|
unsigned getKindID() const { return KindID; }
|
|
|
|
|
|
|
|
static inline bool classof(const AttributeEntry *) { return true; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class EnumAttributeEntry : public AttributeEntry {
|
|
|
|
Attribute::AttrKind Kind;
|
|
|
|
public:
|
|
|
|
EnumAttributeEntry(Attribute::AttrKind Kind)
|
|
|
|
: AttributeEntry(EnumAttrEntry), Kind(Kind) {}
|
|
|
|
|
|
|
|
Attribute::AttrKind getEnumKind() const { return Kind; }
|
|
|
|
|
|
|
|
static inline bool classof(const AttributeEntry *AE) {
|
|
|
|
return AE->getKindID() == EnumAttrEntry;
|
|
|
|
}
|
|
|
|
static inline bool classof(const EnumAttributeEntry *) { return true; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class AlignAttributeEntry : public AttributeEntry {
|
|
|
|
Attribute::AttrKind Kind;
|
|
|
|
unsigned Align;
|
|
|
|
public:
|
|
|
|
AlignAttributeEntry(Attribute::AttrKind Kind, unsigned Align)
|
|
|
|
: AttributeEntry(AlignAttrEntry), Kind(Kind), Align(Align) {}
|
|
|
|
|
|
|
|
Attribute::AttrKind getEnumKind() const { return Kind; }
|
|
|
|
unsigned getAlignment() const { return Align; }
|
|
|
|
|
|
|
|
static inline bool classof(const AttributeEntry *AE) {
|
|
|
|
return AE->getKindID() == AlignAttrEntry;
|
|
|
|
}
|
|
|
|
static inline bool classof(const AlignAttributeEntry *) { return true; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class StringAttributeEntry : public AttributeEntry {
|
|
|
|
std::string Kind;
|
|
|
|
std::string Val;
|
|
|
|
public:
|
|
|
|
StringAttributeEntry(StringRef Kind, StringRef Val = StringRef())
|
|
|
|
: AttributeEntry(StringAttrEntry), Kind(Kind), Val(Val) {}
|
|
|
|
|
|
|
|
StringRef getStringKind() const { return Kind; }
|
|
|
|
StringRef getStringValue() const { return Val; }
|
|
|
|
|
|
|
|
static inline bool classof(const AttributeEntry *AE) {
|
|
|
|
return AE->getKindID() == StringAttrEntry;
|
|
|
|
}
|
|
|
|
static inline bool classof(const StringAttributeEntry *) { return true; }
|
|
|
|
};
|
|
|
|
|
2012-12-20 21:28:43 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// \class
|
|
|
|
/// \brief This class represents a single, uniqued attribute. That attribute
|
2012-12-30 02:22:16 +00:00
|
|
|
/// could be a single enum, a tuple, or a string.
|
2012-12-20 01:36:59 +00:00
|
|
|
class AttributeImpl : public FoldingSetNode {
|
2013-02-05 22:37:24 +00:00
|
|
|
LLVMContext &Context; ///< Global context for uniquing objects
|
|
|
|
|
|
|
|
AttributeEntry *Entry; ///< Holds the kind and value of the attribute
|
2013-01-27 21:38:03 +00:00
|
|
|
|
|
|
|
// AttributesImpl is uniqued, these should not be publicly available.
|
|
|
|
void operator=(const AttributeImpl &) LLVM_DELETED_FUNCTION;
|
|
|
|
AttributeImpl(const AttributeImpl &) LLVM_DELETED_FUNCTION;
|
2012-09-26 21:07:29 +00:00
|
|
|
public:
|
2013-02-05 22:37:24 +00:00
|
|
|
AttributeImpl(LLVMContext &C, Attribute::AttrKind Kind);
|
|
|
|
AttributeImpl(LLVMContext &C, Attribute::AttrKind Kind, unsigned Align);
|
|
|
|
AttributeImpl(LLVMContext &C, StringRef Kind, StringRef Val = StringRef());
|
|
|
|
~AttributeImpl();
|
2012-12-30 02:22:16 +00:00
|
|
|
|
2013-01-31 20:59:05 +00:00
|
|
|
LLVMContext &getContext() { return Context; }
|
|
|
|
|
2013-02-05 22:37:24 +00:00
|
|
|
bool isEnumAttribute() const;
|
|
|
|
bool isAlignAttribute() const;
|
|
|
|
bool isStringAttribute() const;
|
2012-10-08 21:47:17 +00:00
|
|
|
|
2013-02-05 22:37:24 +00:00
|
|
|
bool hasAttribute(Attribute::AttrKind A) const;
|
|
|
|
bool hasAttribute(StringRef Kind) const;
|
2012-10-08 21:47:17 +00:00
|
|
|
|
2013-02-05 22:37:24 +00:00
|
|
|
Attribute::AttrKind getKindAsEnum() const;
|
|
|
|
uint64_t getValueAsInt() const;
|
2012-12-30 01:38:39 +00:00
|
|
|
|
2013-02-05 22:37:24 +00:00
|
|
|
StringRef getKindAsString() const;
|
|
|
|
StringRef getValueAsString() const;
|
2012-12-30 01:38:39 +00:00
|
|
|
|
2013-01-31 20:59:05 +00:00
|
|
|
/// \brief Used when sorting the attributes.
|
2013-01-24 00:06:56 +00:00
|
|
|
bool operator<(const AttributeImpl &AI) const;
|
|
|
|
|
2012-09-26 21:07:29 +00:00
|
|
|
void Profile(FoldingSetNodeID &ID) const {
|
2013-02-05 22:37:24 +00:00
|
|
|
if (isEnumAttribute())
|
|
|
|
Profile(ID, getKindAsEnum(), 0);
|
|
|
|
else if (isAlignAttribute())
|
|
|
|
Profile(ID, getKindAsEnum(), getValueAsInt());
|
|
|
|
else
|
|
|
|
Profile(ID, getKindAsString(), getValueAsString());
|
|
|
|
}
|
|
|
|
static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind,
|
|
|
|
uint64_t Val) {
|
|
|
|
ID.AddInteger(Kind);
|
|
|
|
if (Val) ID.AddInteger(Val);
|
2012-09-26 21:07:29 +00:00
|
|
|
}
|
2013-02-05 22:37:24 +00:00
|
|
|
static void Profile(FoldingSetNodeID &ID, StringRef Kind, StringRef Values) {
|
|
|
|
ID.AddString(Kind);
|
2013-02-28 21:17:03 +00:00
|
|
|
if (!Values.empty()) ID.AddString(Values);
|
2013-01-29 00:34:06 +00:00
|
|
|
}
|
|
|
|
|
2013-02-01 00:48:14 +00:00
|
|
|
// FIXME: Remove this!
|
2013-01-29 00:34:06 +00:00
|
|
|
static uint64_t getAttrMask(Attribute::AttrKind Val);
|
2012-09-26 21:07:29 +00:00
|
|
|
};
|
|
|
|
|
2012-12-20 21:28:43 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// \class
|
2013-01-24 00:06:56 +00:00
|
|
|
/// \brief This class represents a group of attributes that apply to one
|
|
|
|
/// element: function, return type, or parameter.
|
|
|
|
class AttributeSetNode : public FoldingSetNode {
|
|
|
|
SmallVector<Attribute, 4> AttrList;
|
|
|
|
|
|
|
|
AttributeSetNode(ArrayRef<Attribute> Attrs)
|
|
|
|
: AttrList(Attrs.begin(), Attrs.end()) {}
|
2013-01-27 21:38:03 +00:00
|
|
|
|
|
|
|
// AttributesSetNode is uniqued, these should not be publicly available.
|
|
|
|
void operator=(const AttributeSetNode &) LLVM_DELETED_FUNCTION;
|
|
|
|
AttributeSetNode(const AttributeSetNode &) LLVM_DELETED_FUNCTION;
|
2013-01-24 00:06:56 +00:00
|
|
|
public:
|
|
|
|
static AttributeSetNode *get(LLVMContext &C, ArrayRef<Attribute> Attrs);
|
|
|
|
|
2013-01-29 03:20:31 +00:00
|
|
|
bool hasAttribute(Attribute::AttrKind Kind) const;
|
2013-02-13 08:42:21 +00:00
|
|
|
bool hasAttribute(StringRef Kind) const;
|
2013-01-29 03:20:31 +00:00
|
|
|
bool hasAttributes() const { return !AttrList.empty(); }
|
|
|
|
|
2013-02-13 08:42:21 +00:00
|
|
|
Attribute getAttribute(Attribute::AttrKind Kind) const;
|
|
|
|
Attribute getAttribute(StringRef Kind) const;
|
|
|
|
|
2013-01-29 03:20:31 +00:00
|
|
|
unsigned getAlignment() const;
|
|
|
|
unsigned getStackAlignment() const;
|
2013-05-01 13:07:03 +00:00
|
|
|
std::string getAsString(bool InAttrGrp) const;
|
2013-01-29 03:20:31 +00:00
|
|
|
|
2013-01-24 00:06:56 +00:00
|
|
|
typedef SmallVectorImpl<Attribute>::iterator iterator;
|
|
|
|
typedef SmallVectorImpl<Attribute>::const_iterator const_iterator;
|
|
|
|
|
|
|
|
iterator begin() { return AttrList.begin(); }
|
|
|
|
iterator end() { return AttrList.end(); }
|
|
|
|
|
|
|
|
const_iterator begin() const { return AttrList.begin(); }
|
|
|
|
const_iterator end() const { return AttrList.end(); }
|
|
|
|
|
|
|
|
void Profile(FoldingSetNodeID &ID) const {
|
|
|
|
Profile(ID, AttrList);
|
|
|
|
}
|
|
|
|
static void Profile(FoldingSetNodeID &ID, ArrayRef<Attribute> AttrList) {
|
|
|
|
for (unsigned I = 0, E = AttrList.size(); I != E; ++I)
|
|
|
|
AttrList[I].Profile(ID);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// \class
|
|
|
|
/// \brief This class represents a set of attributes that apply to the function,
|
|
|
|
/// return type, and parameters.
|
2012-12-19 22:42:22 +00:00
|
|
|
class AttributeSetImpl : public FoldingSetNode {
|
2013-01-25 23:09:36 +00:00
|
|
|
friend class AttributeSet;
|
|
|
|
|
2013-01-04 20:54:35 +00:00
|
|
|
LLVMContext &Context;
|
|
|
|
|
2013-01-28 22:33:39 +00:00
|
|
|
typedef std::pair<unsigned, AttributeSetNode*> IndexAttrPair;
|
2013-01-28 00:21:34 +00:00
|
|
|
SmallVector<IndexAttrPair, 4> AttrNodes;
|
2013-01-24 01:01:34 +00:00
|
|
|
|
2012-12-30 10:32:01 +00:00
|
|
|
// AttributesSet is uniqued, these should not be publicly available.
|
2012-12-19 22:42:22 +00:00
|
|
|
void operator=(const AttributeSetImpl &) LLVM_DELETED_FUNCTION;
|
|
|
|
AttributeSetImpl(const AttributeSetImpl &) LLVM_DELETED_FUNCTION;
|
2012-11-20 05:09:20 +00:00
|
|
|
public:
|
2013-01-28 21:55:20 +00:00
|
|
|
AttributeSetImpl(LLVMContext &C,
|
2013-01-28 22:33:39 +00:00
|
|
|
ArrayRef<std::pair<unsigned, AttributeSetNode*> > attrs)
|
2013-01-28 21:55:20 +00:00
|
|
|
: Context(C), AttrNodes(attrs.begin(), attrs.end()) {}
|
2013-01-04 20:54:35 +00:00
|
|
|
|
2013-01-27 21:32:11 +00:00
|
|
|
/// \brief Get the context that created this AttributeSetImpl.
|
2013-01-04 20:54:35 +00:00
|
|
|
LLVMContext &getContext() { return Context; }
|
2013-01-27 21:32:11 +00:00
|
|
|
|
|
|
|
/// \brief Return the number of attributes this AttributeSet contains.
|
|
|
|
unsigned getNumAttributes() const { return AttrNodes.size(); }
|
|
|
|
|
|
|
|
/// \brief Get the index of the given "slot" in the AttrNodes list. This index
|
|
|
|
/// is the index of the return, parameter, or function object that the
|
|
|
|
/// attributes are applied to, not the index into the AttrNodes list where the
|
|
|
|
/// attributes reside.
|
2013-04-30 16:53:38 +00:00
|
|
|
unsigned getSlotIndex(unsigned Slot) const {
|
2013-01-28 00:21:34 +00:00
|
|
|
return AttrNodes[Slot].first;
|
|
|
|
}
|
2013-01-27 21:32:11 +00:00
|
|
|
|
|
|
|
/// \brief Retrieve the attributes for the given "slot" in the AttrNode list.
|
|
|
|
/// \p Slot is an index into the AttrNodes list, not the index of the return /
|
|
|
|
/// parameter/ function which the attributes apply to.
|
2013-01-25 23:09:36 +00:00
|
|
|
AttributeSet getSlotAttributes(unsigned Slot) const {
|
2013-01-28 21:55:20 +00:00
|
|
|
return AttributeSet::get(Context, AttrNodes[Slot]);
|
2013-01-25 23:09:36 +00:00
|
|
|
}
|
2012-11-20 05:09:20 +00:00
|
|
|
|
2013-01-29 03:20:31 +00:00
|
|
|
/// \brief Retrieve the attribute set node for the given "slot" in the
|
|
|
|
/// AttrNode list.
|
|
|
|
AttributeSetNode *getSlotNode(unsigned Slot) const {
|
|
|
|
return AttrNodes[Slot].second;
|
|
|
|
}
|
|
|
|
|
2013-01-28 00:21:34 +00:00
|
|
|
typedef AttributeSetNode::iterator iterator;
|
|
|
|
typedef AttributeSetNode::const_iterator const_iterator;
|
|
|
|
|
2013-04-18 20:17:28 +00:00
|
|
|
iterator begin(unsigned Slot)
|
|
|
|
{ return AttrNodes[Slot].second->begin(); }
|
|
|
|
iterator end(unsigned Slot)
|
|
|
|
{ return AttrNodes[Slot].second->end(); }
|
|
|
|
|
|
|
|
const_iterator begin(unsigned Slot) const
|
|
|
|
{ return AttrNodes[Slot].second->begin(); }
|
|
|
|
const_iterator end(unsigned Slot) const
|
|
|
|
{ return AttrNodes[Slot].second->end(); }
|
2013-01-28 00:21:34 +00:00
|
|
|
|
2012-11-20 05:09:20 +00:00
|
|
|
void Profile(FoldingSetNodeID &ID) const {
|
2013-01-28 21:55:20 +00:00
|
|
|
Profile(ID, AttrNodes);
|
2012-11-20 05:09:20 +00:00
|
|
|
}
|
2013-01-24 01:01:34 +00:00
|
|
|
static void Profile(FoldingSetNodeID &ID,
|
2013-01-28 22:33:39 +00:00
|
|
|
ArrayRef<std::pair<unsigned, AttributeSetNode*> > Nodes) {
|
2013-01-24 01:01:34 +00:00
|
|
|
for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
|
|
|
|
ID.AddInteger(Nodes[i].first);
|
|
|
|
ID.AddPointer(Nodes[i].second);
|
|
|
|
}
|
|
|
|
}
|
2013-01-27 23:41:29 +00:00
|
|
|
|
|
|
|
// FIXME: This atrocity is temporary.
|
2013-04-30 16:53:38 +00:00
|
|
|
uint64_t Raw(unsigned Index) const;
|
2012-11-20 05:09:20 +00:00
|
|
|
};
|
|
|
|
|
2012-09-26 21:07:29 +00:00
|
|
|
} // end llvm namespace
|
|
|
|
|
|
|
|
#endif
|