2012-12-19 07:18:57 +00:00
|
|
|
//===-- Attribute.cpp - Implement AttributesList -------------------------===//
|
2008-01-02 23:42:30 +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-19 07:18:57 +00:00
|
|
|
// This file implements the Attribute, AttributeImpl, AttrBuilder,
|
2012-12-19 22:42:22 +00:00
|
|
|
// AttributeSetImpl, and AttributeSet classes.
|
2008-01-02 23:42:30 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-09-23 23:03:40 +00:00
|
|
|
#include "llvm/Attributes.h"
|
2012-12-20 01:36:59 +00:00
|
|
|
#include "AttributeImpl.h"
|
2012-09-26 21:07:29 +00:00
|
|
|
#include "LLVMContextImpl.h"
|
2008-03-12 17:45:29 +00:00
|
|
|
#include "llvm/ADT/FoldingSet.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/Atomic.h"
|
2010-01-05 01:29:58 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2008-01-02 23:42:30 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Support/Mutex.h"
|
2009-08-23 11:37:21 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Type.h"
|
2008-01-02 23:42:30 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2012-12-19 07:18:57 +00:00
|
|
|
// Attribute Implementation
|
2008-03-12 17:45:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2008-01-14 19:52:09 +00:00
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
Attribute Attribute::get(LLVMContext &Context, ArrayRef<AttrVal> Vals) {
|
2012-10-15 20:35:56 +00:00
|
|
|
AttrBuilder B;
|
2012-10-15 04:46:55 +00:00
|
|
|
for (ArrayRef<AttrVal>::iterator I = Vals.begin(), E = Vals.end();
|
|
|
|
I != E; ++I)
|
|
|
|
B.addAttribute(*I);
|
2012-12-19 07:18:57 +00:00
|
|
|
return Attribute::get(Context, B);
|
2012-10-15 04:46:55 +00:00
|
|
|
}
|
2012-10-11 01:05:52 +00:00
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
Attribute Attribute::get(LLVMContext &Context, AttrBuilder &B) {
|
|
|
|
// If there are no attributes, return an empty Attribute class.
|
2012-10-16 05:55:09 +00:00
|
|
|
if (!B.hasAttributes())
|
2012-12-19 07:18:57 +00:00
|
|
|
return Attribute();
|
2012-10-08 21:47:17 +00:00
|
|
|
|
|
|
|
// Otherwise, build a key to look up the existing attributes.
|
|
|
|
LLVMContextImpl *pImpl = Context.pImpl;
|
|
|
|
FoldingSetNodeID ID;
|
2012-10-16 05:55:09 +00:00
|
|
|
ID.AddInteger(B.Raw());
|
2012-10-08 21:47:17 +00:00
|
|
|
|
|
|
|
void *InsertPoint;
|
2012-12-20 01:36:59 +00:00
|
|
|
AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
|
2012-10-08 21:47:17 +00:00
|
|
|
|
|
|
|
if (!PA) {
|
|
|
|
// If we didn't find any existing attributes of the same shape then create a
|
|
|
|
// new one and insert it.
|
2012-12-20 01:36:59 +00:00
|
|
|
PA = new AttributeImpl(B.Raw());
|
2012-10-08 21:47:17 +00:00
|
|
|
pImpl->AttrsSet.InsertNode(PA, InsertPoint);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the AttributesList that we found or created.
|
2012-12-19 07:18:57 +00:00
|
|
|
return Attribute(PA);
|
2012-10-08 21:47:17 +00:00
|
|
|
}
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
bool Attribute::hasAttribute(AttrVal Val) const {
|
2012-10-15 04:46:55 +00:00
|
|
|
return Attrs && Attrs->hasAttribute(Val);
|
2012-10-05 06:44:41 +00:00
|
|
|
}
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
bool Attribute::hasAttributes() const {
|
2012-10-15 05:40:12 +00:00
|
|
|
return Attrs && Attrs->hasAttributes();
|
|
|
|
}
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
bool Attribute::hasAttributes(const Attribute &A) const {
|
2012-10-15 04:46:55 +00:00
|
|
|
return Attrs && Attrs->hasAttributes(A);
|
2012-10-09 09:11:20 +00:00
|
|
|
}
|
|
|
|
|
2012-10-05 06:44:41 +00:00
|
|
|
/// This returns the alignment field of an attribute as a byte alignment value.
|
2012-12-19 07:18:57 +00:00
|
|
|
unsigned Attribute::getAlignment() const {
|
|
|
|
if (!hasAttribute(Attribute::Alignment))
|
2012-10-09 20:56:48 +00:00
|
|
|
return 0;
|
2012-10-15 04:46:55 +00:00
|
|
|
return 1U << ((Attrs->getAlignment() >> 16) - 1);
|
2012-10-05 06:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// This returns the stack alignment field of an attribute as a byte alignment
|
|
|
|
/// value.
|
2012-12-19 07:18:57 +00:00
|
|
|
unsigned Attribute::getStackAlignment() const {
|
|
|
|
if (!hasAttribute(Attribute::StackAlignment))
|
2012-10-09 20:56:48 +00:00
|
|
|
return 0;
|
2012-10-15 04:46:55 +00:00
|
|
|
return 1U << ((Attrs->getStackAlignment() >> 26) - 1);
|
2012-10-05 06:44:41 +00:00
|
|
|
}
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
uint64_t Attribute::Raw() const {
|
2012-10-16 05:57:28 +00:00
|
|
|
return Attrs ? Attrs->Raw() : 0;
|
2012-10-07 08:55:05 +00:00
|
|
|
}
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
Attribute Attribute::typeIncompatible(Type *Ty) {
|
2012-10-15 20:35:56 +00:00
|
|
|
AttrBuilder Incompatible;
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2012-10-09 19:01:18 +00:00
|
|
|
if (!Ty->isIntegerTy())
|
2012-12-19 07:18:57 +00:00
|
|
|
// Attribute that only apply to integers.
|
|
|
|
Incompatible.addAttribute(Attribute::SExt)
|
|
|
|
.addAttribute(Attribute::ZExt);
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2012-10-09 19:01:18 +00:00
|
|
|
if (!Ty->isPointerTy())
|
2012-12-19 07:18:57 +00:00
|
|
|
// Attribute that only apply to pointers.
|
|
|
|
Incompatible.addAttribute(Attribute::ByVal)
|
|
|
|
.addAttribute(Attribute::Nest)
|
|
|
|
.addAttribute(Attribute::NoAlias)
|
|
|
|
.addAttribute(Attribute::NoCapture)
|
|
|
|
.addAttribute(Attribute::StructRet);
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
return Attribute::get(Ty->getContext(), Incompatible);
|
2012-10-05 06:44:41 +00:00
|
|
|
}
|
|
|
|
|
2012-10-15 20:35:56 +00:00
|
|
|
/// encodeLLVMAttributesForBitcode - This returns an integer containing an
|
|
|
|
/// encoding of all the LLVM attributes found in the given attribute bitset.
|
|
|
|
/// Any change to this encoding is a breaking change to bitcode compatibility.
|
2012-12-19 07:18:57 +00:00
|
|
|
uint64_t Attribute::encodeLLVMAttributesForBitcode(Attribute Attrs) {
|
2012-10-15 20:35:56 +00:00
|
|
|
// FIXME: It doesn't make sense to store the alignment information as an
|
|
|
|
// expanded out value, we should store it as a log2 value. However, we can't
|
|
|
|
// just change that here without breaking bitcode compatibility. If this ever
|
|
|
|
// becomes a problem in practice, we should introduce new tag numbers in the
|
|
|
|
// bitcode file and have those tags use a more efficiently encoded alignment
|
|
|
|
// field.
|
|
|
|
|
|
|
|
// Store the alignment in the bitcode as a 16-bit raw value instead of a 5-bit
|
|
|
|
// log2 encoded value. Shift the bits above the alignment up by 11 bits.
|
|
|
|
uint64_t EncodedAttrs = Attrs.Raw() & 0xffff;
|
2012-12-19 07:18:57 +00:00
|
|
|
if (Attrs.hasAttribute(Attribute::Alignment))
|
2012-10-15 20:35:56 +00:00
|
|
|
EncodedAttrs |= Attrs.getAlignment() << 16;
|
2012-10-22 17:33:31 +00:00
|
|
|
EncodedAttrs |= (Attrs.Raw() & (0xffffULL << 21)) << 11;
|
2012-10-15 20:35:56 +00:00
|
|
|
return EncodedAttrs;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// decodeLLVMAttributesForBitcode - This returns an attribute bitset containing
|
|
|
|
/// the LLVM attributes that have been decoded from the given integer. This
|
|
|
|
/// function must stay in sync with 'encodeLLVMAttributesForBitcode'.
|
2012-12-19 07:18:57 +00:00
|
|
|
Attribute Attribute::decodeLLVMAttributesForBitcode(LLVMContext &C,
|
2012-10-15 20:35:56 +00:00
|
|
|
uint64_t EncodedAttrs) {
|
|
|
|
// The alignment is stored as a 16-bit raw value from bits 31--16. We shift
|
|
|
|
// the bits above 31 down by 11 bits.
|
|
|
|
unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16;
|
|
|
|
assert((!Alignment || isPowerOf2_32(Alignment)) &&
|
|
|
|
"Alignment must be a power of two.");
|
|
|
|
|
|
|
|
AttrBuilder B(EncodedAttrs & 0xffff);
|
|
|
|
if (Alignment)
|
|
|
|
B.addAlignmentAttr(Alignment);
|
2012-10-22 17:33:31 +00:00
|
|
|
B.addRawValue((EncodedAttrs & (0xffffULL << 32)) >> 11);
|
2012-12-19 07:18:57 +00:00
|
|
|
return Attribute::get(C, B);
|
2012-10-15 20:35:56 +00:00
|
|
|
}
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
std::string Attribute::getAsString() const {
|
2008-01-02 23:42:30 +00:00
|
|
|
std::string Result;
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::ZExt))
|
2008-01-02 23:42:30 +00:00
|
|
|
Result += "zeroext ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::SExt))
|
2008-01-02 23:42:30 +00:00
|
|
|
Result += "signext ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::NoReturn))
|
2008-01-02 23:42:30 +00:00
|
|
|
Result += "noreturn ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::NoUnwind))
|
2008-01-02 23:42:30 +00:00
|
|
|
Result += "nounwind ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::UWTable))
|
2011-05-25 03:44:17 +00:00
|
|
|
Result += "uwtable ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::ReturnsTwice))
|
2011-10-03 14:45:37 +00:00
|
|
|
Result += "returns_twice ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::InReg))
|
2008-01-02 23:42:30 +00:00
|
|
|
Result += "inreg ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::NoAlias))
|
2008-01-02 23:42:30 +00:00
|
|
|
Result += "noalias ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::NoCapture))
|
2008-12-19 09:38:31 +00:00
|
|
|
Result += "nocapture ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::StructRet))
|
2009-07-17 18:07:26 +00:00
|
|
|
Result += "sret ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::ByVal))
|
2008-01-02 23:42:30 +00:00
|
|
|
Result += "byval ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::Nest))
|
2008-01-02 23:42:30 +00:00
|
|
|
Result += "nest ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::ReadNone))
|
2008-01-02 23:42:30 +00:00
|
|
|
Result += "readnone ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::ReadOnly))
|
2008-01-02 23:42:30 +00:00
|
|
|
Result += "readonly ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::OptimizeForSize))
|
2008-09-26 22:53:05 +00:00
|
|
|
Result += "optsize ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::NoInline))
|
2008-09-26 22:53:05 +00:00
|
|
|
Result += "noinline ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::InlineHint))
|
2010-02-06 01:16:28 +00:00
|
|
|
Result += "inlinehint ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::AlwaysInline))
|
2008-09-26 22:53:05 +00:00
|
|
|
Result += "alwaysinline ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::StackProtect))
|
2008-11-13 01:02:14 +00:00
|
|
|
Result += "ssp ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::StackProtectReq))
|
2008-11-13 01:02:14 +00:00
|
|
|
Result += "sspreq ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::NoRedZone))
|
2009-06-04 22:05:33 +00:00
|
|
|
Result += "noredzone ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::NoImplicitFloat))
|
2009-06-05 21:57:13 +00:00
|
|
|
Result += "noimplicitfloat ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::Naked))
|
2009-07-17 18:07:26 +00:00
|
|
|
Result += "naked ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::NonLazyBind))
|
2011-06-15 20:36:13 +00:00
|
|
|
Result += "nonlazybind ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::AddressSafety))
|
2012-01-20 17:56:17 +00:00
|
|
|
Result += "address_safety ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::MinSize))
|
2012-10-30 16:32:52 +00:00
|
|
|
Result += "minsize ";
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::StackAlignment)) {
|
2010-02-12 00:31:15 +00:00
|
|
|
Result += "alignstack(";
|
2012-09-21 15:26:31 +00:00
|
|
|
Result += utostr(getStackAlignment());
|
2010-02-12 00:31:15 +00:00
|
|
|
Result += ") ";
|
|
|
|
}
|
2012-12-19 07:18:57 +00:00
|
|
|
if (hasAttribute(Attribute::Alignment)) {
|
2008-02-19 23:51:49 +00:00
|
|
|
Result += "align ";
|
2012-09-21 15:26:31 +00:00
|
|
|
Result += utostr(getAlignment());
|
2008-02-19 23:51:49 +00:00
|
|
|
Result += " ";
|
|
|
|
}
|
2008-08-05 15:51:44 +00:00
|
|
|
// Trim the trailing space.
|
2008-12-19 09:38:31 +00:00
|
|
|
assert(!Result.empty() && "Unknown attribute!");
|
2008-08-05 15:51:44 +00:00
|
|
|
Result.erase(Result.end()-1);
|
2008-01-02 23:42:30 +00:00
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2012-10-05 06:44:41 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2012-10-15 20:35:56 +00:00
|
|
|
// AttrBuilder Implementation
|
2012-10-05 06:44:41 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
AttrBuilder &AttrBuilder::addAttribute(Attribute::AttrVal Val){
|
2012-12-20 01:36:59 +00:00
|
|
|
Bits |= AttributeImpl::getAttrMask(Val);
|
2012-10-09 19:01:18 +00:00
|
|
|
return *this;
|
2012-10-05 06:44:41 +00:00
|
|
|
}
|
|
|
|
|
2012-10-15 20:35:56 +00:00
|
|
|
AttrBuilder &AttrBuilder::addRawValue(uint64_t Val) {
|
2012-10-14 04:10:01 +00:00
|
|
|
Bits |= Val;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-10-15 20:35:56 +00:00
|
|
|
AttrBuilder &AttrBuilder::addAlignmentAttr(unsigned Align) {
|
2012-10-14 03:58:29 +00:00
|
|
|
if (Align == 0) return *this;
|
2012-10-05 06:44:41 +00:00
|
|
|
assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
|
|
|
|
assert(Align <= 0x40000000 && "Alignment too large.");
|
|
|
|
Bits |= (Log2_32(Align) + 1) << 16;
|
2012-10-14 03:58:29 +00:00
|
|
|
return *this;
|
2012-10-05 06:44:41 +00:00
|
|
|
}
|
2012-10-15 20:35:56 +00:00
|
|
|
AttrBuilder &AttrBuilder::addStackAlignmentAttr(unsigned Align){
|
2012-10-05 06:44:41 +00:00
|
|
|
// Default alignment, allow the target to define how to align it.
|
2012-10-14 03:58:29 +00:00
|
|
|
if (Align == 0) return *this;
|
2012-10-05 06:44:41 +00:00
|
|
|
assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
|
|
|
|
assert(Align <= 0x100 && "Alignment too large.");
|
|
|
|
Bits |= (Log2_32(Align) + 1) << 26;
|
2012-10-14 03:58:29 +00:00
|
|
|
return *this;
|
2008-01-02 23:42:30 +00:00
|
|
|
}
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
AttrBuilder &AttrBuilder::removeAttribute(Attribute::AttrVal Val) {
|
2012-12-20 01:36:59 +00:00
|
|
|
Bits &= ~AttributeImpl::getAttrMask(Val);
|
2012-10-09 19:01:18 +00:00
|
|
|
return *this;
|
2012-10-09 09:11:20 +00:00
|
|
|
}
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
AttrBuilder &AttrBuilder::addAttributes(const Attribute &A) {
|
2012-10-14 07:17:34 +00:00
|
|
|
Bits |= A.Raw();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
AttrBuilder &AttrBuilder::removeAttributes(const Attribute &A){
|
2012-10-09 00:01:21 +00:00
|
|
|
Bits &= ~A.Raw();
|
2012-10-14 06:39:53 +00:00
|
|
|
return *this;
|
2012-10-09 00:01:21 +00:00
|
|
|
}
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
bool AttrBuilder::hasAttribute(Attribute::AttrVal A) const {
|
2012-12-20 01:36:59 +00:00
|
|
|
return Bits & AttributeImpl::getAttrMask(A);
|
2012-10-10 07:36:45 +00:00
|
|
|
}
|
|
|
|
|
2012-10-15 20:35:56 +00:00
|
|
|
bool AttrBuilder::hasAttributes() const {
|
2012-10-08 23:27:46 +00:00
|
|
|
return Bits != 0;
|
|
|
|
}
|
2012-12-19 07:18:57 +00:00
|
|
|
bool AttrBuilder::hasAttributes(const Attribute &A) const {
|
2012-10-09 00:01:21 +00:00
|
|
|
return Bits & A.Raw();
|
|
|
|
}
|
2012-10-15 20:35:56 +00:00
|
|
|
bool AttrBuilder::hasAlignmentAttr() const {
|
2012-12-20 01:36:59 +00:00
|
|
|
return Bits & AttributeImpl::getAttrMask(Attribute::Alignment);
|
2012-10-08 23:27:46 +00:00
|
|
|
}
|
|
|
|
|
2012-10-15 20:35:56 +00:00
|
|
|
uint64_t AttrBuilder::getAlignment() const {
|
2012-10-09 20:56:48 +00:00
|
|
|
if (!hasAlignmentAttr())
|
|
|
|
return 0;
|
2012-11-19 10:03:09 +00:00
|
|
|
return 1ULL <<
|
2012-12-20 01:36:59 +00:00
|
|
|
(((Bits & AttributeImpl::getAttrMask(Attribute::Alignment)) >> 16) - 1);
|
2012-10-08 23:27:46 +00:00
|
|
|
}
|
|
|
|
|
2012-10-15 20:35:56 +00:00
|
|
|
uint64_t AttrBuilder::getStackAlignment() const {
|
2012-10-10 07:36:45 +00:00
|
|
|
if (!hasAlignmentAttr())
|
|
|
|
return 0;
|
2012-11-19 10:03:09 +00:00
|
|
|
return 1ULL <<
|
2012-12-20 01:36:59 +00:00
|
|
|
(((Bits & AttributeImpl::getAttrMask(Attribute::StackAlignment))>>26)-1);
|
2012-10-10 07:36:45 +00:00
|
|
|
}
|
|
|
|
|
2012-09-26 21:07:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// AttributeImpl Definition
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-20 01:36:59 +00:00
|
|
|
uint64_t AttributeImpl::getAttrMask(uint64_t Val) {
|
2012-10-09 07:45:08 +00:00
|
|
|
switch (Val) {
|
2012-12-19 07:18:57 +00:00
|
|
|
case Attribute::None: return 0;
|
|
|
|
case Attribute::ZExt: return 1 << 0;
|
|
|
|
case Attribute::SExt: return 1 << 1;
|
|
|
|
case Attribute::NoReturn: return 1 << 2;
|
|
|
|
case Attribute::InReg: return 1 << 3;
|
|
|
|
case Attribute::StructRet: return 1 << 4;
|
|
|
|
case Attribute::NoUnwind: return 1 << 5;
|
|
|
|
case Attribute::NoAlias: return 1 << 6;
|
|
|
|
case Attribute::ByVal: return 1 << 7;
|
|
|
|
case Attribute::Nest: return 1 << 8;
|
|
|
|
case Attribute::ReadNone: return 1 << 9;
|
|
|
|
case Attribute::ReadOnly: return 1 << 10;
|
|
|
|
case Attribute::NoInline: return 1 << 11;
|
|
|
|
case Attribute::AlwaysInline: return 1 << 12;
|
|
|
|
case Attribute::OptimizeForSize: return 1 << 13;
|
|
|
|
case Attribute::StackProtect: return 1 << 14;
|
|
|
|
case Attribute::StackProtectReq: return 1 << 15;
|
|
|
|
case Attribute::Alignment: return 31 << 16;
|
|
|
|
case Attribute::NoCapture: return 1 << 21;
|
|
|
|
case Attribute::NoRedZone: return 1 << 22;
|
|
|
|
case Attribute::NoImplicitFloat: return 1 << 23;
|
|
|
|
case Attribute::Naked: return 1 << 24;
|
|
|
|
case Attribute::InlineHint: return 1 << 25;
|
|
|
|
case Attribute::StackAlignment: return 7 << 26;
|
|
|
|
case Attribute::ReturnsTwice: return 1 << 29;
|
|
|
|
case Attribute::UWTable: return 1 << 30;
|
|
|
|
case Attribute::NonLazyBind: return 1U << 31;
|
|
|
|
case Attribute::AddressSafety: return 1ULL << 32;
|
|
|
|
case Attribute::MinSize: return 1ULL << 33;
|
2012-10-09 07:45:08 +00:00
|
|
|
}
|
|
|
|
llvm_unreachable("Unsupported attribute type");
|
|
|
|
}
|
|
|
|
|
2012-12-20 01:36:59 +00:00
|
|
|
bool AttributeImpl::hasAttribute(uint64_t A) const {
|
2012-10-09 07:45:08 +00:00
|
|
|
return (Bits & getAttrMask(A)) != 0;
|
2012-10-08 21:47:17 +00:00
|
|
|
}
|
2012-09-26 21:07:29 +00:00
|
|
|
|
2012-12-20 01:36:59 +00:00
|
|
|
bool AttributeImpl::hasAttributes() const {
|
2012-10-08 21:47:17 +00:00
|
|
|
return Bits != 0;
|
|
|
|
}
|
2012-09-26 21:07:29 +00:00
|
|
|
|
2012-12-20 01:36:59 +00:00
|
|
|
bool AttributeImpl::hasAttributes(const Attribute &A) const {
|
2012-10-08 21:47:17 +00:00
|
|
|
return Bits & A.Raw(); // FIXME: Raw() won't work here in the future.
|
|
|
|
}
|
2012-09-26 21:07:29 +00:00
|
|
|
|
2012-12-20 01:36:59 +00:00
|
|
|
uint64_t AttributeImpl::getAlignment() const {
|
2012-12-19 07:18:57 +00:00
|
|
|
return Bits & getAttrMask(Attribute::Alignment);
|
2012-10-08 21:47:17 +00:00
|
|
|
}
|
2012-09-26 21:07:29 +00:00
|
|
|
|
2012-12-20 01:36:59 +00:00
|
|
|
uint64_t AttributeImpl::getStackAlignment() const {
|
2012-12-19 07:18:57 +00:00
|
|
|
return Bits & getAttrMask(Attribute::StackAlignment);
|
2012-10-08 21:47:17 +00:00
|
|
|
}
|
2012-09-26 21:07:29 +00:00
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2012-12-19 22:42:22 +00:00
|
|
|
// AttributeSetImpl Definition
|
2008-03-12 17:45:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-07 23:16:57 +00:00
|
|
|
AttributeSet AttributeSet::get(LLVMContext &C,
|
2012-12-12 19:21:53 +00:00
|
|
|
ArrayRef<AttributeWithIndex> Attrs) {
|
2008-09-25 21:00:45 +00:00
|
|
|
// If there are no attributes then return a null AttributesList pointer.
|
2012-05-28 01:47:44 +00:00
|
|
|
if (Attrs.empty())
|
2012-12-07 23:16:57 +00:00
|
|
|
return AttributeSet();
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2008-01-02 23:42:30 +00:00
|
|
|
#ifndef NDEBUG
|
2012-05-28 01:47:44 +00:00
|
|
|
for (unsigned i = 0, e = Attrs.size(); i != e; ++i) {
|
2012-10-16 06:01:44 +00:00
|
|
|
assert(Attrs[i].Attrs.hasAttributes() &&
|
2008-09-25 21:00:45 +00:00
|
|
|
"Pointless attribute!");
|
2008-03-12 17:45:29 +00:00
|
|
|
assert((!i || Attrs[i-1].Index < Attrs[i].Index) &&
|
2008-09-25 21:00:45 +00:00
|
|
|
"Misordered AttributesList!");
|
2008-01-02 23:42:30 +00:00
|
|
|
}
|
|
|
|
#endif
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2008-01-02 23:42:30 +00:00
|
|
|
// Otherwise, build a key to look up the existing attributes.
|
2012-11-20 05:09:20 +00:00
|
|
|
LLVMContextImpl *pImpl = C.pImpl;
|
2008-01-02 23:42:30 +00:00
|
|
|
FoldingSetNodeID ID;
|
2012-12-19 22:42:22 +00:00
|
|
|
AttributeSetImpl::Profile(ID, Attrs);
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2012-11-20 05:09:20 +00:00
|
|
|
void *InsertPoint;
|
2012-12-19 22:42:22 +00:00
|
|
|
AttributeSetImpl *PA = pImpl->AttrsLists.FindNodeOrInsertPos(ID,
|
2012-11-20 05:09:20 +00:00
|
|
|
InsertPoint);
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2008-01-02 23:42:30 +00:00
|
|
|
// If we didn't find any existing attributes of the same shape then
|
|
|
|
// create a new one and insert it.
|
2012-11-20 05:09:20 +00:00
|
|
|
if (!PA) {
|
2012-12-19 23:55:43 +00:00
|
|
|
PA = new AttributeSetImpl(C, Attrs);
|
2012-11-20 05:09:20 +00:00
|
|
|
pImpl->AttrsLists.InsertNode(PA, InsertPoint);
|
2008-01-02 23:42:30 +00:00
|
|
|
}
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
// Return the AttributesList that we found or created.
|
2012-12-07 23:16:57 +00:00
|
|
|
return AttributeSet(PA);
|
2008-01-02 23:42:30 +00:00
|
|
|
}
|
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2012-12-07 23:16:57 +00:00
|
|
|
// AttributeSet Method Implementations
|
2008-03-12 17:45:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2008-01-02 23:42:30 +00:00
|
|
|
|
2012-12-07 23:16:57 +00:00
|
|
|
const AttributeSet &AttributeSet::operator=(const AttributeSet &RHS) {
|
2008-09-25 21:00:45 +00:00
|
|
|
if (AttrList == RHS.AttrList) return *this;
|
2012-11-20 05:09:20 +00:00
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
AttrList = RHS.AttrList;
|
2008-03-12 17:45:29 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-10-16 06:01:44 +00:00
|
|
|
/// getNumSlots - Return the number of slots used in this attribute list.
|
2008-03-12 17:45:29 +00:00
|
|
|
/// This is the number of arguments that have an attribute set on them
|
|
|
|
/// (including the function itself).
|
2012-12-07 23:16:57 +00:00
|
|
|
unsigned AttributeSet::getNumSlots() const {
|
2008-09-25 21:00:45 +00:00
|
|
|
return AttrList ? AttrList->Attrs.size() : 0;
|
2008-03-12 17:45:29 +00:00
|
|
|
}
|
2008-01-02 23:42:30 +00:00
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
/// getSlot - Return the AttributeWithIndex at the specified slot. This
|
|
|
|
/// holds a number plus a set of attributes.
|
2012-12-07 23:16:57 +00:00
|
|
|
const AttributeWithIndex &AttributeSet::getSlot(unsigned Slot) const {
|
2008-09-25 21:00:45 +00:00
|
|
|
assert(AttrList && Slot < AttrList->Attrs.size() && "Slot # out of range!");
|
|
|
|
return AttrList->Attrs[Slot];
|
2008-03-12 17:45:29 +00:00
|
|
|
}
|
|
|
|
|
2012-10-16 06:01:44 +00:00
|
|
|
/// getAttributes - The attributes for the specified index are returned.
|
2012-12-19 07:18:57 +00:00
|
|
|
/// Attribute for the result are denoted with Idx = 0. Function notes are
|
2012-10-16 06:01:44 +00:00
|
|
|
/// denoted with idx = ~0.
|
2012-12-19 07:18:57 +00:00
|
|
|
Attribute AttributeSet::getAttributes(unsigned Idx) const {
|
|
|
|
if (AttrList == 0) return Attribute();
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
const SmallVector<AttributeWithIndex, 4> &Attrs = AttrList->Attrs;
|
2008-03-12 17:45:29 +00:00
|
|
|
for (unsigned i = 0, e = Attrs.size(); i != e && Attrs[i].Index <= Idx; ++i)
|
|
|
|
if (Attrs[i].Index == Idx)
|
|
|
|
return Attrs[i].Attrs;
|
2012-09-21 15:26:31 +00:00
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
return Attribute();
|
2008-03-12 17:45:29 +00:00
|
|
|
}
|
2008-01-02 23:42:30 +00:00
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
/// hasAttrSomewhere - Return true if the specified attribute is set for at
|
|
|
|
/// least one parameter or for the return value.
|
2012-12-19 07:18:57 +00:00
|
|
|
bool AttributeSet::hasAttrSomewhere(Attribute::AttrVal Attr) const {
|
2008-09-25 21:00:45 +00:00
|
|
|
if (AttrList == 0) return false;
|
2012-10-10 07:36:45 +00:00
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
const SmallVector<AttributeWithIndex, 4> &Attrs = AttrList->Attrs;
|
2008-03-12 17:45:29 +00:00
|
|
|
for (unsigned i = 0, e = Attrs.size(); i != e; ++i)
|
2012-10-10 07:36:45 +00:00
|
|
|
if (Attrs[i].Attrs.hasAttribute(Attr))
|
2008-03-12 17:45:29 +00:00
|
|
|
return true;
|
2012-11-20 05:09:20 +00:00
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
return false;
|
2008-01-02 23:42:30 +00:00
|
|
|
}
|
|
|
|
|
2012-12-07 23:16:57 +00:00
|
|
|
unsigned AttributeSet::getNumAttrs() const {
|
2012-10-09 00:01:21 +00:00
|
|
|
return AttrList ? AttrList->Attrs.size() : 0;
|
|
|
|
}
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
Attribute &AttributeSet::getAttributesAtIndex(unsigned i) const {
|
2012-10-09 00:01:21 +00:00
|
|
|
assert(AttrList && "Trying to get an attribute from an empty list!");
|
|
|
|
assert(i < AttrList->Attrs.size() && "Index out of range!");
|
|
|
|
return AttrList->Attrs[i].Attrs;
|
|
|
|
}
|
2008-03-12 17:45:29 +00:00
|
|
|
|
2012-12-07 23:16:57 +00:00
|
|
|
AttributeSet AttributeSet::addAttr(LLVMContext &C, unsigned Idx,
|
2012-12-19 07:18:57 +00:00
|
|
|
Attribute Attrs) const {
|
|
|
|
Attribute OldAttrs = getAttributes(Idx);
|
2008-02-19 23:51:49 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
// FIXME it is not obvious how this should work for alignment.
|
|
|
|
// For now, say we can't change a known alignment.
|
2012-09-21 15:26:31 +00:00
|
|
|
unsigned OldAlign = OldAttrs.getAlignment();
|
|
|
|
unsigned NewAlign = Attrs.getAlignment();
|
2008-02-20 12:07:57 +00:00
|
|
|
assert((!OldAlign || !NewAlign || OldAlign == NewAlign) &&
|
2008-02-19 23:51:49 +00:00
|
|
|
"Attempt to change alignment!");
|
|
|
|
#endif
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2012-10-15 20:35:56 +00:00
|
|
|
AttrBuilder NewAttrs =
|
|
|
|
AttrBuilder(OldAttrs).addAttributes(Attrs);
|
|
|
|
if (NewAttrs == AttrBuilder(OldAttrs))
|
2008-03-12 17:45:29 +00:00
|
|
|
return *this;
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
SmallVector<AttributeWithIndex, 8> NewAttrList;
|
|
|
|
if (AttrList == 0)
|
|
|
|
NewAttrList.push_back(AttributeWithIndex::get(Idx, Attrs));
|
2008-03-12 17:45:29 +00:00
|
|
|
else {
|
2008-09-25 21:00:45 +00:00
|
|
|
const SmallVector<AttributeWithIndex, 4> &OldAttrList = AttrList->Attrs;
|
2008-03-12 17:45:29 +00:00
|
|
|
unsigned i = 0, e = OldAttrList.size();
|
|
|
|
// Copy attributes for arguments before this one.
|
|
|
|
for (; i != e && OldAttrList[i].Index < Idx; ++i)
|
|
|
|
NewAttrList.push_back(OldAttrList[i]);
|
|
|
|
|
|
|
|
// If there are attributes already at this index, merge them in.
|
|
|
|
if (i != e && OldAttrList[i].Index == Idx) {
|
2012-10-14 07:35:59 +00:00
|
|
|
Attrs =
|
2012-12-19 07:18:57 +00:00
|
|
|
Attribute::get(C, AttrBuilder(Attrs).
|
2012-10-14 07:35:59 +00:00
|
|
|
addAttributes(OldAttrList[i].Attrs));
|
2008-03-12 17:45:29 +00:00
|
|
|
++i;
|
|
|
|
}
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
NewAttrList.push_back(AttributeWithIndex::get(Idx, Attrs));
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
// Copy attributes for arguments after this one.
|
2012-10-16 06:01:44 +00:00
|
|
|
NewAttrList.insert(NewAttrList.end(),
|
2008-03-12 17:45:29 +00:00
|
|
|
OldAttrList.begin()+i, OldAttrList.end());
|
|
|
|
}
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2012-11-20 05:09:20 +00:00
|
|
|
return get(C, NewAttrList);
|
2008-01-02 23:42:30 +00:00
|
|
|
}
|
|
|
|
|
2012-12-07 23:16:57 +00:00
|
|
|
AttributeSet AttributeSet::removeAttr(LLVMContext &C, unsigned Idx,
|
2012-12-19 07:18:57 +00:00
|
|
|
Attribute Attrs) const {
|
2008-02-19 23:51:49 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
// FIXME it is not obvious how this should work for alignment.
|
|
|
|
// For now, say we can't pass in alignment, which no current use does.
|
2012-12-19 07:18:57 +00:00
|
|
|
assert(!Attrs.hasAttribute(Attribute::Alignment) &&
|
2012-10-09 07:45:08 +00:00
|
|
|
"Attempt to exclude alignment!");
|
2008-02-19 23:51:49 +00:00
|
|
|
#endif
|
2012-12-07 23:16:57 +00:00
|
|
|
if (AttrList == 0) return AttributeSet();
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
Attribute OldAttrs = getAttributes(Idx);
|
2012-10-15 20:35:56 +00:00
|
|
|
AttrBuilder NewAttrs =
|
|
|
|
AttrBuilder(OldAttrs).removeAttributes(Attrs);
|
|
|
|
if (NewAttrs == AttrBuilder(OldAttrs))
|
2008-03-12 17:45:29 +00:00
|
|
|
return *this;
|
|
|
|
|
2008-09-25 21:00:45 +00:00
|
|
|
SmallVector<AttributeWithIndex, 8> NewAttrList;
|
|
|
|
const SmallVector<AttributeWithIndex, 4> &OldAttrList = AttrList->Attrs;
|
2008-03-12 17:45:29 +00:00
|
|
|
unsigned i = 0, e = OldAttrList.size();
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
// Copy attributes for arguments before this one.
|
|
|
|
for (; i != e && OldAttrList[i].Index < Idx; ++i)
|
|
|
|
NewAttrList.push_back(OldAttrList[i]);
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
// If there are attributes already at this index, merge them in.
|
|
|
|
assert(OldAttrList[i].Index == Idx && "Attribute isn't set?");
|
2012-12-19 07:18:57 +00:00
|
|
|
Attrs = Attribute::get(C, AttrBuilder(OldAttrList[i].Attrs).
|
2012-10-14 06:39:53 +00:00
|
|
|
removeAttributes(Attrs));
|
2008-03-12 17:45:29 +00:00
|
|
|
++i;
|
2012-10-14 08:54:26 +00:00
|
|
|
if (Attrs.hasAttributes()) // If any attributes left for this param, add them.
|
2008-09-25 21:00:45 +00:00
|
|
|
NewAttrList.push_back(AttributeWithIndex::get(Idx, Attrs));
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2008-03-12 17:45:29 +00:00
|
|
|
// Copy attributes for arguments after this one.
|
2012-10-16 06:01:44 +00:00
|
|
|
NewAttrList.insert(NewAttrList.end(),
|
2008-03-12 17:45:29 +00:00
|
|
|
OldAttrList.begin()+i, OldAttrList.end());
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2012-11-20 05:09:20 +00:00
|
|
|
return get(C, NewAttrList);
|
2008-01-02 23:42:30 +00:00
|
|
|
}
|
|
|
|
|
2012-12-07 23:16:57 +00:00
|
|
|
void AttributeSet::dump() const {
|
2010-01-05 01:29:58 +00:00
|
|
|
dbgs() << "PAL[ ";
|
2008-03-12 17:45:29 +00:00
|
|
|
for (unsigned i = 0; i < getNumSlots(); ++i) {
|
2008-09-25 21:00:45 +00:00
|
|
|
const AttributeWithIndex &PAWI = getSlot(i);
|
2012-10-14 08:54:26 +00:00
|
|
|
dbgs() << "{" << PAWI.Index << "," << PAWI.Attrs.getAsString() << "} ";
|
2008-03-12 17:45:29 +00:00
|
|
|
}
|
2012-10-16 06:01:44 +00:00
|
|
|
|
2010-01-05 01:29:58 +00:00
|
|
|
dbgs() << "]\n";
|
2008-01-06 18:27:01 +00:00
|
|
|
}
|