2012-12-20 09:36:59 +08:00
|
|
|
//===-- AttributeImpl.h - Attribute Internals -------------------*- C++ -*-===//
|
2012-09-27 05:07:29 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2012-12-21 05:28:43 +08:00
|
|
|
///
|
|
|
|
/// \file
|
|
|
|
/// \brief This file defines various helper methods and classes used by
|
|
|
|
/// LLVMContextImpl for creating and managing attributes.
|
|
|
|
///
|
2012-09-27 05:07:29 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_ATTRIBUTESIMPL_H
|
|
|
|
#define LLVM_ATTRIBUTESIMPL_H
|
|
|
|
|
|
|
|
#include "llvm/ADT/FoldingSet.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/Attributes.h"
|
2012-09-27 05:07:29 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2012-12-29 20:29:38 +08:00
|
|
|
class Constant;
|
2012-12-20 07:55:43 +08:00
|
|
|
class LLVMContext;
|
|
|
|
|
2012-12-21 05:28:43 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// \class
|
|
|
|
/// \brief This class represents a single, uniqued attribute. That attribute
|
2012-12-30 10:22:16 +08:00
|
|
|
/// could be a single enum, a tuple, or a string.
|
2012-12-20 09:36:59 +08:00
|
|
|
class AttributeImpl : public FoldingSetNode {
|
2013-01-05 09:36:54 +08:00
|
|
|
LLVMContext &Context;
|
2012-12-29 20:29:38 +08:00
|
|
|
Constant *Data;
|
2012-12-30 10:22:16 +08:00
|
|
|
SmallVector<Constant*, 0> Vals;
|
2013-01-28 05:38:03 +08: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-27 05:07:29 +08:00
|
|
|
public:
|
2012-12-30 10:22:16 +08: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-22 05:57:28 +08:00
|
|
|
LLVMContext &getContext() { return Context; }
|
|
|
|
|
2013-01-07 16:24:35 +08:00
|
|
|
ArrayRef<Constant*> getValues() const { return Vals; }
|
2012-09-27 05:07:29 +08:00
|
|
|
|
2013-01-05 04:54:35 +08:00
|
|
|
bool hasAttribute(Attribute::AttrKind A) const;
|
2012-10-09 15:45:08 +08:00
|
|
|
|
2012-10-09 05:47:17 +08:00
|
|
|
bool hasAttributes() const;
|
|
|
|
|
|
|
|
uint64_t getAlignment() const;
|
|
|
|
uint64_t getStackAlignment() const;
|
|
|
|
|
2013-01-05 04:54:35 +08:00
|
|
|
bool operator==(Attribute::AttrKind Kind) const;
|
|
|
|
bool operator!=(Attribute::AttrKind Kind) const;
|
2012-12-30 09:38:39 +08:00
|
|
|
|
2013-01-05 04:54:35 +08:00
|
|
|
bool operator==(StringRef Kind) const;
|
|
|
|
bool operator!=(StringRef Kind) const;
|
2012-12-30 09:38:39 +08:00
|
|
|
|
2013-01-24 08:06:56 +08:00
|
|
|
bool operator<(const AttributeImpl &AI) const;
|
|
|
|
|
2013-01-10 07:36:50 +08:00
|
|
|
uint64_t Raw() const; // FIXME: Remove.
|
2012-10-16 13:57:28 +08:00
|
|
|
|
2013-01-05 04:54:35 +08:00
|
|
|
static uint64_t getAttrMask(Attribute::AttrKind Val);
|
2012-10-09 17:11:20 +08:00
|
|
|
|
2012-09-27 05:07:29 +08:00
|
|
|
void Profile(FoldingSetNodeID &ID) const {
|
2012-12-30 10:22:16 +08:00
|
|
|
Profile(ID, Data, Vals);
|
2012-09-27 05:07:29 +08:00
|
|
|
}
|
2012-12-30 10:22:16 +08:00
|
|
|
static void Profile(FoldingSetNodeID &ID, Constant *Data,
|
2013-01-09 08:32:08 +08:00
|
|
|
ArrayRef<Constant*> Vals);
|
2012-09-27 05:07:29 +08:00
|
|
|
};
|
|
|
|
|
2012-12-21 05:28:43 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// \class
|
2013-01-24 08:06:56 +08: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-28 05:38:03 +08: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 08:06:56 +08: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-20 06:42:22 +08:00
|
|
|
class AttributeSetImpl : public FoldingSetNode {
|
2013-01-26 07:09:36 +08:00
|
|
|
friend class AttributeSet;
|
|
|
|
|
2013-01-05 04:54:35 +08:00
|
|
|
LLVMContext &Context;
|
|
|
|
|
2013-01-29 06:33:39 +08:00
|
|
|
typedef std::pair<unsigned, AttributeSetNode*> IndexAttrPair;
|
2013-01-28 08:21:34 +08:00
|
|
|
SmallVector<IndexAttrPair, 4> AttrNodes;
|
2013-01-24 09:01:34 +08:00
|
|
|
|
2012-12-30 18:32:01 +08:00
|
|
|
// AttributesSet is uniqued, these should not be publicly available.
|
2012-12-20 06:42:22 +08:00
|
|
|
void operator=(const AttributeSetImpl &) LLVM_DELETED_FUNCTION;
|
|
|
|
AttributeSetImpl(const AttributeSetImpl &) LLVM_DELETED_FUNCTION;
|
2012-11-20 13:09:20 +08:00
|
|
|
public:
|
2013-01-29 05:55:20 +08:00
|
|
|
AttributeSetImpl(LLVMContext &C,
|
2013-01-29 06:33:39 +08:00
|
|
|
ArrayRef<std::pair<unsigned, AttributeSetNode*> > attrs)
|
2013-01-29 05:55:20 +08:00
|
|
|
: Context(C), AttrNodes(attrs.begin(), attrs.end()) {}
|
2013-01-05 04:54:35 +08:00
|
|
|
|
2013-01-28 05:32:11 +08:00
|
|
|
/// \brief Get the context that created this AttributeSetImpl.
|
2013-01-05 04:54:35 +08:00
|
|
|
LLVMContext &getContext() { return Context; }
|
2013-01-28 05:32:11 +08: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 08:21:34 +08:00
|
|
|
uint64_t getSlotIndex(unsigned Slot) const {
|
|
|
|
return AttrNodes[Slot].first;
|
|
|
|
}
|
2013-01-28 05:32:11 +08: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-26 07:09:36 +08:00
|
|
|
AttributeSet getSlotAttributes(unsigned Slot) const {
|
|
|
|
// FIXME: This needs to use AttrNodes instead.
|
2013-01-29 05:55:20 +08:00
|
|
|
return AttributeSet::get(Context, AttrNodes[Slot]);
|
2013-01-26 07:09:36 +08:00
|
|
|
}
|
2012-11-20 13:09:20 +08:00
|
|
|
|
2013-01-28 08:21:34 +08: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 13:09:20 +08:00
|
|
|
void Profile(FoldingSetNodeID &ID) const {
|
2013-01-29 05:55:20 +08:00
|
|
|
Profile(ID, AttrNodes);
|
2012-11-20 13:09:20 +08:00
|
|
|
}
|
2013-01-24 09:01:34 +08:00
|
|
|
static void Profile(FoldingSetNodeID &ID,
|
2013-01-29 06:33:39 +08:00
|
|
|
ArrayRef<std::pair<unsigned, AttributeSetNode*> > Nodes) {
|
2013-01-24 09:01:34 +08:00
|
|
|
for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
|
|
|
|
ID.AddInteger(Nodes[i].first);
|
|
|
|
ID.AddPointer(Nodes[i].second);
|
|
|
|
}
|
|
|
|
}
|
2013-01-28 07:41:29 +08:00
|
|
|
|
|
|
|
// FIXME: This atrocity is temporary.
|
|
|
|
uint64_t Raw(uint64_t Index) const;
|
2012-11-20 13:09:20 +08:00
|
|
|
};
|
|
|
|
|
2012-09-27 05:07:29 +08:00
|
|
|
} // end llvm namespace
|
|
|
|
|
|
|
|
#endif
|