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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines various helper methods and classes used by LLVMContextImpl
|
|
|
|
// for creating and managing attributes.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_ATTRIBUTESIMPL_H
|
|
|
|
#define LLVM_ATTRIBUTESIMPL_H
|
|
|
|
|
|
|
|
#include "llvm/ADT/FoldingSet.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "llvm/Attributes.h"
|
2012-09-26 21:07:29 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2012-12-19 23:55:43 +00:00
|
|
|
class LLVMContext;
|
|
|
|
|
2012-12-20 01:36:59 +00:00
|
|
|
class AttributeImpl : public FoldingSetNode {
|
2012-10-08 21:47:17 +00:00
|
|
|
uint64_t Bits; // FIXME: We will be expanding this.
|
2012-09-26 21:07:29 +00:00
|
|
|
public:
|
2012-12-20 01:36:59 +00:00
|
|
|
AttributeImpl(uint64_t bits) : Bits(bits) {}
|
2012-09-26 21:07:29 +00:00
|
|
|
|
2012-10-08 21:47:17 +00:00
|
|
|
bool hasAttribute(uint64_t A) const;
|
2012-10-09 07:45:08 +00:00
|
|
|
|
2012-10-08 21:47:17 +00:00
|
|
|
bool hasAttributes() const;
|
2012-12-19 07:18:57 +00:00
|
|
|
bool hasAttributes(const Attribute &A) const;
|
2012-10-08 21:47:17 +00:00
|
|
|
|
|
|
|
uint64_t getAlignment() const;
|
|
|
|
uint64_t getStackAlignment() const;
|
|
|
|
|
2012-10-16 05:57:28 +00:00
|
|
|
uint64_t Raw() const { return Bits; } // FIXME: Remove.
|
|
|
|
|
2012-10-09 09:11:20 +00:00
|
|
|
static uint64_t getAttrMask(uint64_t Val);
|
|
|
|
|
2012-09-26 21:07:29 +00:00
|
|
|
void Profile(FoldingSetNodeID &ID) const {
|
|
|
|
Profile(ID, Bits);
|
|
|
|
}
|
|
|
|
static void Profile(FoldingSetNodeID &ID, uint64_t Bits) {
|
|
|
|
ID.AddInteger(Bits);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-12-19 22:42:22 +00:00
|
|
|
class AttributeSetImpl : public FoldingSetNode {
|
2012-11-20 05:09:20 +00:00
|
|
|
// AttributesList 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:
|
2012-12-19 23:55:43 +00:00
|
|
|
LLVMContext &Context;
|
2012-11-20 05:09:20 +00:00
|
|
|
SmallVector<AttributeWithIndex, 4> Attrs;
|
|
|
|
|
2012-12-19 23:55:43 +00:00
|
|
|
AttributeSetImpl(LLVMContext &C, ArrayRef<AttributeWithIndex> attrs)
|
|
|
|
: Context(C), Attrs(attrs.begin(), attrs.end()) {}
|
2012-11-20 05:09:20 +00:00
|
|
|
|
|
|
|
void Profile(FoldingSetNodeID &ID) const {
|
|
|
|
Profile(ID, Attrs);
|
|
|
|
}
|
|
|
|
static void Profile(FoldingSetNodeID &ID, ArrayRef<AttributeWithIndex> Attrs){
|
|
|
|
for (unsigned i = 0, e = Attrs.size(); i != e; ++i) {
|
|
|
|
ID.AddInteger(Attrs[i].Attrs.Raw());
|
|
|
|
ID.AddInteger(Attrs[i].Index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-09-26 21:07:29 +00:00
|
|
|
} // end llvm namespace
|
|
|
|
|
|
|
|
#endif
|