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"
|
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;
|
|
|
|
|
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-01-05 01:36:54 +00:00
|
|
|
LLVMContext &Context;
|
2012-12-29 12:29:38 +00:00
|
|
|
Constant *Data;
|
2012-12-30 02:22:16 +00:00
|
|
|
SmallVector<Constant*, 0> Vals;
|
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:
|
2012-12-30 02:22:16 +00:00
|
|
|
explicit AttributeImpl(LLVMContext &C, uint64_t data);
|
|
|
|
explicit AttributeImpl(LLVMContext &C, Attribute::AttrKind data);
|
|
|
|
AttributeImpl(LLVMContext &C, Attribute::AttrKind data,
|
|
|
|
ArrayRef<Constant*> values);
|
|
|
|
AttributeImpl(LLVMContext &C, StringRef data);
|
|
|
|
|
2013-01-21 21:57:28 +00:00
|
|
|
LLVMContext &getContext() { return Context; }
|
|
|
|
|
2013-01-07 08:24:35 +00:00
|
|
|
ArrayRef<Constant*> getValues() const { return Vals; }
|
2012-09-26 21:07:29 +00:00
|
|
|
|
2013-01-04 20:54:35 +00:00
|
|
|
bool hasAttribute(Attribute::AttrKind A) const;
|
2012-10-09 07:45:08 +00:00
|
|
|
|
2012-10-08 21:47:17 +00:00
|
|
|
bool hasAttributes() const;
|
|
|
|
|
|
|
|
uint64_t getAlignment() const;
|
|
|
|
uint64_t getStackAlignment() const;
|
|
|
|
|
2013-01-04 20:54:35 +00:00
|
|
|
bool operator==(Attribute::AttrKind Kind) const;
|
|
|
|
bool operator!=(Attribute::AttrKind Kind) const;
|
2012-12-30 01:38:39 +00:00
|
|
|
|
2013-01-04 20:54:35 +00:00
|
|
|
bool operator==(StringRef Kind) const;
|
|
|
|
bool operator!=(StringRef Kind) const;
|
2012-12-30 01:38:39 +00:00
|
|
|
|
2013-01-24 00:06:56 +00:00
|
|
|
bool operator<(const AttributeImpl &AI) const;
|
|
|
|
|
2013-01-09 23:36:50 +00:00
|
|
|
uint64_t Raw() const; // FIXME: Remove.
|
2012-10-16 05:57:28 +00:00
|
|
|
|
2013-01-04 20:54:35 +00:00
|
|
|
static uint64_t getAttrMask(Attribute::AttrKind Val);
|
2012-10-09 09:11:20 +00:00
|
|
|
|
2012-09-26 21:07:29 +00:00
|
|
|
void Profile(FoldingSetNodeID &ID) const {
|
2012-12-30 02:22:16 +00:00
|
|
|
Profile(ID, Data, Vals);
|
2012-09-26 21:07:29 +00:00
|
|
|
}
|
2012-12-30 02:22:16 +00:00
|
|
|
static void Profile(FoldingSetNodeID &ID, Constant *Data,
|
2013-01-09 00:32:08 +00:00
|
|
|
ArrayRef<Constant*> Vals);
|
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);
|
|
|
|
|
|
|
|
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-01-28 00:21:34 +00:00
|
|
|
uint64_t getSlotIndex(unsigned Slot) const {
|
|
|
|
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 {
|
|
|
|
// FIXME: This needs to use AttrNodes instead.
|
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-28 00:21:34 +00:00
|
|
|
typedef AttributeSetNode::iterator iterator;
|
|
|
|
typedef AttributeSetNode::const_iterator const_iterator;
|
|
|
|
|
|
|
|
iterator begin(unsigned Idx)
|
|
|
|
{ return AttrNodes[Idx].second->begin(); }
|
|
|
|
iterator end(unsigned Idx)
|
|
|
|
{ return AttrNodes[Idx].second->end(); }
|
|
|
|
|
|
|
|
const_iterator begin(unsigned Idx) const
|
|
|
|
{ return AttrNodes[Idx].second->begin(); }
|
|
|
|
const_iterator end(unsigned Idx) const
|
|
|
|
{ return AttrNodes[Idx].second->end(); }
|
|
|
|
|
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.
|
|
|
|
uint64_t Raw(uint64_t Index) const;
|
2012-11-20 05:09:20 +00:00
|
|
|
};
|
|
|
|
|
2012-09-26 21:07:29 +00:00
|
|
|
} // end llvm namespace
|
|
|
|
|
|
|
|
#endif
|