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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/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"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Type.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"
|
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-22 00:37:52 +00:00
|
|
|
Attribute Attribute::get(LLVMContext &Context, ArrayRef<AttrKind> Vals) {
|
2012-10-15 20:35:56 +00:00
|
|
|
AttrBuilder B;
|
2012-12-22 00:37:52 +00:00
|
|
|
for (ArrayRef<AttrKind>::iterator I = Vals.begin(), E = Vals.end();
|
2012-10-15 04:46:55 +00:00
|
|
|
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;
|
2013-01-05 12:08:00 +00:00
|
|
|
// FIXME: Don't look up ConstantInts here.
|
|
|
|
ID.AddPointer(ConstantInt::get(Type::getInt64Ty(Context), B.getBitMask()));
|
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-30 01:05:42 +00:00
|
|
|
PA = new AttributeImpl(Context, B.getBitMask());
|
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-22 00:37:52 +00:00
|
|
|
bool Attribute::hasAttribute(AttrKind Val) const {
|
2012-12-20 21:28:43 +00:00
|
|
|
return pImpl && pImpl->hasAttribute(Val);
|
2012-10-05 06:44:41 +00:00
|
|
|
}
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
bool Attribute::hasAttributes() const {
|
2012-12-20 21:28:43 +00:00
|
|
|
return pImpl && pImpl->hasAttributes();
|
2012-10-15 05:40:12 +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-12-20 21:28:43 +00:00
|
|
|
return 1U << ((pImpl->getAlignment() >> 16) - 1);
|
2012-10-05 06:44:41 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 01:36:54 +00:00
|
|
|
void Attribute::setAlignment(unsigned Align) {
|
|
|
|
assert(hasAttribute(Attribute::Alignment) &&
|
|
|
|
"Trying to set the alignment on a non-alignment attribute!");
|
|
|
|
pImpl->setAlignment(Align);
|
|
|
|
}
|
|
|
|
|
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-12-20 21:28:43 +00:00
|
|
|
return 1U << ((pImpl->getStackAlignment() >> 26) - 1);
|
2012-10-05 06:44:41 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 01:36:54 +00:00
|
|
|
void Attribute::setStackAlignment(unsigned Align) {
|
|
|
|
assert(hasAttribute(Attribute::StackAlignment) &&
|
|
|
|
"Trying to set the stack alignment on a non-alignment attribute!");
|
|
|
|
pImpl->setStackAlignment(Align);
|
|
|
|
}
|
|
|
|
|
2012-12-31 11:51:54 +00:00
|
|
|
bool Attribute::operator==(AttrKind K) const {
|
2013-01-04 20:54:35 +00:00
|
|
|
return pImpl && *pImpl == K;
|
2012-12-31 11:51:54 +00:00
|
|
|
}
|
|
|
|
bool Attribute::operator!=(AttrKind K) const {
|
2013-01-04 20:54:35 +00:00
|
|
|
return !(*this == K);
|
2012-12-31 11:51:54 +00:00
|
|
|
}
|
|
|
|
|
2012-12-30 01:05:42 +00:00
|
|
|
uint64_t Attribute::getBitMask() const {
|
|
|
|
return pImpl ? pImpl->getBitMask() : 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.
|
2012-12-30 01:05:42 +00:00
|
|
|
uint64_t EncodedAttrs = Attrs.getBitMask() & 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-12-30 01:05:42 +00:00
|
|
|
EncodedAttrs |= (Attrs.getBitMask() & (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 += " ";
|
|
|
|
}
|
2012-12-20 16:04:27 +00:00
|
|
|
if (hasAttribute(Attribute::NoDuplicate))
|
|
|
|
Result += "noduplicate ";
|
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
|
|
|
//===----------------------------------------------------------------------===//
|
2013-01-04 23:27:34 +00:00
|
|
|
// AttrBuilder Method Implementations
|
2012-10-05 06:44:41 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-07 08:24:35 +00:00
|
|
|
AttrBuilder::AttrBuilder(AttributeSet AS, unsigned Idx)
|
|
|
|
: Alignment(0), StackAlignment(0) {
|
|
|
|
AttributeSetImpl *pImpl = AS.AttrList;
|
|
|
|
if (!pImpl) return;
|
|
|
|
|
|
|
|
ArrayRef<AttributeWithIndex> AttrList = pImpl->getAttributes();
|
|
|
|
const AttributeWithIndex *AWI = 0;
|
|
|
|
for (unsigned I = 0, E = AttrList.size(); I != E; ++I)
|
|
|
|
if (AttrList[I].Index == Idx) {
|
|
|
|
AWI = &AttrList[I];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(AWI && "Cannot find index in attribute set!");
|
|
|
|
|
|
|
|
/// FIXME: This will be modified in the future. Basically, the
|
|
|
|
/// AttributeWithIndex class will contain the
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-01-04 23:27:34 +00:00
|
|
|
void AttrBuilder::clear() {
|
|
|
|
Attrs.clear();
|
|
|
|
Alignment = StackAlignment = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
AttrBuilder &AttrBuilder::addAttribute(Attribute::AttrKind Val) {
|
|
|
|
Attrs.insert(Val);
|
2012-10-09 19:01:18 +00:00
|
|
|
return *this;
|
2012-10-05 06:44:41 +00:00
|
|
|
}
|
|
|
|
|
2013-01-04 23:27:34 +00:00
|
|
|
AttrBuilder &AttrBuilder::removeAttribute(Attribute::AttrKind Val) {
|
|
|
|
Attrs.erase(Val);
|
|
|
|
if (Val == Attribute::Alignment)
|
|
|
|
Alignment = 0;
|
|
|
|
else if (Val == Attribute::StackAlignment)
|
|
|
|
StackAlignment = 0;
|
|
|
|
|
2012-10-14 04:10:01 +00:00
|
|
|
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;
|
2013-01-04 23:27:34 +00:00
|
|
|
|
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.");
|
2013-01-04 23:27:34 +00:00
|
|
|
|
|
|
|
Attrs.insert(Attribute::Alignment);
|
|
|
|
Alignment = Align;
|
2012-10-14 03:58:29 +00:00
|
|
|
return *this;
|
2012-10-05 06:44:41 +00:00
|
|
|
}
|
2013-01-04 23:27:34 +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;
|
2013-01-04 23:27:34 +00:00
|
|
|
|
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.");
|
2013-01-04 23:27:34 +00:00
|
|
|
|
|
|
|
Attrs.insert(Attribute::StackAlignment);
|
|
|
|
StackAlignment = Align;
|
2012-10-14 03:58:29 +00:00
|
|
|
return *this;
|
2008-01-02 23:42:30 +00:00
|
|
|
}
|
|
|
|
|
2013-01-04 23:27:34 +00:00
|
|
|
AttrBuilder &AttrBuilder::addRawValue(uint64_t Val) {
|
|
|
|
for (Attribute::AttrKind I = Attribute::None; I != Attribute::EndAttrKinds;
|
|
|
|
I = Attribute::AttrKind(I + 1)) {
|
|
|
|
if (uint64_t A = (Val & AttributeImpl::getAttrMask(I))) {
|
|
|
|
Attrs.insert(I);
|
|
|
|
|
|
|
|
if (I == Attribute::Alignment)
|
|
|
|
Alignment = 1ULL << ((A >> 16) - 1);
|
|
|
|
else if (I == Attribute::StackAlignment)
|
|
|
|
StackAlignment = 1ULL << ((A >> 26)-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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) {
|
2013-01-04 23:27:34 +00:00
|
|
|
uint64_t Mask = A.getBitMask();
|
|
|
|
|
|
|
|
for (Attribute::AttrKind I = Attribute::None; I != Attribute::EndAttrKinds;
|
|
|
|
I = Attribute::AttrKind(I + 1)) {
|
|
|
|
if (uint64_t A = (Mask & AttributeImpl::getAttrMask(I))) {
|
|
|
|
Attrs.insert(I);
|
|
|
|
|
|
|
|
if (I == Attribute::Alignment)
|
|
|
|
Alignment = 1ULL << ((A >> 16) - 1);
|
|
|
|
else if (I == Attribute::StackAlignment)
|
|
|
|
StackAlignment = 1ULL << ((A >> 26)-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-14 07:17:34 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
AttrBuilder &AttrBuilder::removeAttributes(const Attribute &A){
|
2013-01-04 23:27:34 +00:00
|
|
|
uint64_t Mask = A.getBitMask();
|
|
|
|
|
|
|
|
for (Attribute::AttrKind I = Attribute::None; I != Attribute::EndAttrKinds;
|
|
|
|
I = Attribute::AttrKind(I + 1)) {
|
|
|
|
if (Mask & AttributeImpl::getAttrMask(I)) {
|
|
|
|
Attrs.erase(I);
|
|
|
|
|
|
|
|
if (I == Attribute::Alignment)
|
|
|
|
Alignment = 0;
|
|
|
|
else if (I == Attribute::StackAlignment)
|
|
|
|
StackAlignment = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-14 06:39:53 +00:00
|
|
|
return *this;
|
2012-10-09 00:01:21 +00:00
|
|
|
}
|
|
|
|
|
2013-01-03 01:54:39 +00:00
|
|
|
bool AttrBuilder::contains(Attribute::AttrKind A) const {
|
2013-01-04 23:27:34 +00:00
|
|
|
return Attrs.count(A);
|
2012-10-10 07:36:45 +00:00
|
|
|
}
|
|
|
|
|
2012-10-15 20:35:56 +00:00
|
|
|
bool AttrBuilder::hasAttributes() const {
|
2013-01-04 23:27:34 +00:00
|
|
|
return !Attrs.empty();
|
2012-10-08 23:27:46 +00:00
|
|
|
}
|
2013-01-04 20:54:35 +00:00
|
|
|
|
2012-12-19 07:18:57 +00:00
|
|
|
bool AttrBuilder::hasAttributes(const Attribute &A) const {
|
2013-01-04 23:27:34 +00:00
|
|
|
return getBitMask() & A.getBitMask();
|
2012-10-09 00:01:21 +00:00
|
|
|
}
|
2013-01-04 20:54:35 +00:00
|
|
|
|
2012-10-15 20:35:56 +00:00
|
|
|
bool AttrBuilder::hasAlignmentAttr() const {
|
2013-01-04 23:27:34 +00:00
|
|
|
return Alignment != 0;
|
2012-10-08 23:27:46 +00:00
|
|
|
}
|
|
|
|
|
2013-01-04 23:27:34 +00:00
|
|
|
uint64_t AttrBuilder::getBitMask() const {
|
|
|
|
uint64_t Mask = 0;
|
|
|
|
|
|
|
|
for (DenseSet<Attribute::AttrKind>::const_iterator I = Attrs.begin(),
|
|
|
|
E = Attrs.end(); I != E; ++I) {
|
|
|
|
Attribute::AttrKind Kind = *I;
|
|
|
|
|
|
|
|
if (Kind == Attribute::Alignment)
|
|
|
|
Mask |= (Log2_32(Alignment) + 1) << 16;
|
|
|
|
else if (Kind == Attribute::StackAlignment)
|
|
|
|
Mask |= (Log2_32(StackAlignment) + 1) << 26;
|
|
|
|
else
|
|
|
|
Mask |= AttributeImpl::getAttrMask(Kind);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Mask;
|
2012-10-08 23:27:46 +00:00
|
|
|
}
|
|
|
|
|
2013-01-04 23:27:34 +00:00
|
|
|
bool AttrBuilder::operator==(const AttrBuilder &B) {
|
|
|
|
SmallVector<Attribute::AttrKind, 8> This(Attrs.begin(), Attrs.end());
|
|
|
|
SmallVector<Attribute::AttrKind, 8> That(B.Attrs.begin(), B.Attrs.end());
|
|
|
|
return This == That;
|
2012-10-10 07:36:45 +00:00
|
|
|
}
|
|
|
|
|
2012-09-26 21:07:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// AttributeImpl Definition
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-05 01:36:54 +00:00
|
|
|
AttributeImpl::AttributeImpl(LLVMContext &C, uint64_t data)
|
|
|
|
: Context(C) {
|
2012-12-29 12:29:38 +00:00
|
|
|
Data = ConstantInt::get(Type::getInt64Ty(C), data);
|
|
|
|
}
|
2013-01-05 01:36:54 +00:00
|
|
|
AttributeImpl::AttributeImpl(LLVMContext &C, Attribute::AttrKind data)
|
|
|
|
: Context(C) {
|
2012-12-30 02:22:16 +00:00
|
|
|
Data = ConstantInt::get(Type::getInt64Ty(C), data);
|
|
|
|
}
|
|
|
|
AttributeImpl::AttributeImpl(LLVMContext &C, Attribute::AttrKind data,
|
2013-01-05 01:36:54 +00:00
|
|
|
ArrayRef<Constant*> values)
|
|
|
|
: Context(C) {
|
2012-12-30 02:22:16 +00:00
|
|
|
Data = ConstantInt::get(Type::getInt64Ty(C), data);
|
|
|
|
Vals.reserve(values.size());
|
|
|
|
Vals.append(values.begin(), values.end());
|
|
|
|
}
|
2013-01-05 01:36:54 +00:00
|
|
|
AttributeImpl::AttributeImpl(LLVMContext &C, StringRef data)
|
|
|
|
: Context(C) {
|
2012-12-30 02:22:16 +00:00
|
|
|
Data = ConstantDataArray::getString(C, data);
|
|
|
|
}
|
2012-12-29 12:29:38 +00:00
|
|
|
|
2013-01-04 20:54:35 +00:00
|
|
|
bool AttributeImpl::operator==(Attribute::AttrKind Kind) const {
|
2012-12-30 01:38:39 +00:00
|
|
|
if (ConstantInt *CI = dyn_cast<ConstantInt>(Data))
|
|
|
|
return CI->getZExtValue() == Kind;
|
|
|
|
return false;
|
|
|
|
}
|
2013-01-04 20:54:35 +00:00
|
|
|
bool AttributeImpl::operator!=(Attribute::AttrKind Kind) const {
|
|
|
|
return !(*this == Kind);
|
|
|
|
}
|
2012-12-30 01:38:39 +00:00
|
|
|
|
2013-01-04 20:54:35 +00:00
|
|
|
bool AttributeImpl::operator==(StringRef Kind) const {
|
2012-12-30 01:38:39 +00:00
|
|
|
if (ConstantDataArray *CDA = dyn_cast<ConstantDataArray>(Data))
|
|
|
|
if (CDA->isString())
|
|
|
|
return CDA->getAsString() == Kind;
|
|
|
|
return false;
|
|
|
|
}
|
2013-01-04 20:54:35 +00:00
|
|
|
bool AttributeImpl::operator!=(StringRef Kind) const {
|
|
|
|
return !(*this == Kind);
|
|
|
|
}
|
2012-12-30 01:38:39 +00:00
|
|
|
|
2012-12-30 01:05:42 +00:00
|
|
|
uint64_t AttributeImpl::getBitMask() const {
|
2012-12-30 01:38:39 +00:00
|
|
|
// FIXME: Remove this.
|
2012-12-29 12:29:38 +00:00
|
|
|
return cast<ConstantInt>(Data)->getZExtValue();
|
|
|
|
}
|
|
|
|
|
2013-01-04 20:54:35 +00:00
|
|
|
uint64_t AttributeImpl::getAttrMask(Attribute::AttrKind Val) {
|
2012-10-09 07:45:08 +00:00
|
|
|
switch (Val) {
|
2013-01-05 08:47:26 +00:00
|
|
|
case Attribute::EndAttrKinds:
|
|
|
|
case Attribute::AttrKindEmptyKey:
|
|
|
|
case Attribute::AttrKindTombstoneKey:
|
|
|
|
llvm_unreachable("Synthetic enumerators which should never get here");
|
|
|
|
|
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-12-20 16:04:27 +00:00
|
|
|
case Attribute::NoDuplicate: return 1ULL << 34;
|
2012-10-09 07:45:08 +00:00
|
|
|
}
|
|
|
|
llvm_unreachable("Unsupported attribute type");
|
|
|
|
}
|
|
|
|
|
2013-01-04 20:54:35 +00:00
|
|
|
bool AttributeImpl::hasAttribute(Attribute::AttrKind A) const {
|
2012-12-30 01:05:42 +00:00
|
|
|
return (getBitMask() & 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-12-30 01:05:42 +00:00
|
|
|
return getBitMask() != 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
|
|
|
uint64_t AttributeImpl::getAlignment() const {
|
2012-12-30 01:05:42 +00:00
|
|
|
return getBitMask() & getAttrMask(Attribute::Alignment);
|
2012-10-08 21:47:17 +00:00
|
|
|
}
|
2012-09-26 21:07:29 +00:00
|
|
|
|
2013-01-05 01:36:54 +00:00
|
|
|
void AttributeImpl::setAlignment(unsigned Align) {
|
|
|
|
Vals.push_back(ConstantInt::get(Type::getInt64Ty(Context), Align));
|
|
|
|
}
|
|
|
|
|
2012-12-20 01:36:59 +00:00
|
|
|
uint64_t AttributeImpl::getStackAlignment() const {
|
2012-12-30 01:05:42 +00:00
|
|
|
return getBitMask() & getAttrMask(Attribute::StackAlignment);
|
2012-10-08 21:47:17 +00:00
|
|
|
}
|
2012-09-26 21:07:29 +00:00
|
|
|
|
2013-01-05 01:36:54 +00:00
|
|
|
void AttributeImpl::setStackAlignment(unsigned Align) {
|
|
|
|
Vals.push_back(ConstantInt::get(Type::getInt64Ty(Context), Align));
|
|
|
|
}
|
|
|
|
|
2013-01-09 00:32:55 +00:00
|
|
|
void AttributeImpl::Profile(FoldingSetNodeID &ID, Constant *Data,
|
|
|
|
ArrayRef<Constant*> Vals) {
|
2013-01-09 00:32:08 +00:00
|
|
|
ID.AddInteger(cast<ConstantInt>(Data)->getZExtValue());
|
|
|
|
for (ArrayRef<Constant*>::iterator I = Vals.begin(), E = Vals.end();
|
|
|
|
I != E; ++I)
|
|
|
|
ID.AddPointer(*I);
|
|
|
|
}
|
|
|
|
|
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;
|
2013-01-05 01:36:54 +00:00
|
|
|
AttributeSetImpl *PA = pImpl->AttrsLists.FindNodeOrInsertPos(ID, 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
|
|
|
}
|
|
|
|
|
2013-01-05 01:36:54 +00:00
|
|
|
AttributeSet AttributeSet::get(LLVMContext &C, unsigned Idx, AttrBuilder &B) {
|
|
|
|
SmallVector<AttributeWithIndex, 8> Attrs;
|
|
|
|
for (AttrBuilder::iterator I = B.begin(), E = B.end(); I != E; ++I) {
|
|
|
|
Attribute::AttrKind Kind = *I;
|
|
|
|
Attribute A = Attribute::get(C, Kind);
|
|
|
|
|
|
|
|
if (Kind == Attribute::Alignment)
|
|
|
|
A.setAlignment(B.getAlignment());
|
|
|
|
else if (Kind == Attribute::StackAlignment)
|
|
|
|
A.setStackAlignment(B.getStackAlignment());
|
|
|
|
|
|
|
|
Attrs.push_back(AttributeWithIndex::get(Idx, A));
|
|
|
|
}
|
|
|
|
|
|
|
|
return get(C, Attrs);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
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 {
|
2013-01-04 20:54:35 +00:00
|
|
|
return AttrList ? AttrList->getNumAttributes() : 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 {
|
2013-01-04 20:54:35 +00:00
|
|
|
assert(AttrList && Slot < AttrList->getNumAttributes() &&
|
|
|
|
"Slot # out of range!");
|
|
|
|
return AttrList->getAttributes()[Slot];
|
2008-03-12 17:45:29 +00:00
|
|
|
}
|
|
|
|
|
2012-12-30 10:32:01 +00:00
|
|
|
bool AttributeSet::hasAttribute(unsigned Index, Attribute::AttrKind Kind) const{
|
|
|
|
return getAttributes(Index).hasAttribute(Kind);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AttributeSet::hasAttributes(unsigned Index) const {
|
|
|
|
return getAttributes(Index).hasAttributes();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string AttributeSet::getAsString(unsigned Index) const {
|
|
|
|
return getAttributes(Index).getAsString();
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned AttributeSet::getStackAlignment(unsigned Index) const {
|
|
|
|
return getAttributes(Index).getStackAlignment();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t AttributeSet::getBitMask(unsigned Index) const {
|
|
|
|
// FIXME: Remove this.
|
|
|
|
return getAttributes(Index).getBitMask();
|
|
|
|
}
|
|
|
|
|
2012-10-16 06:01:44 +00:00
|
|
|
/// getAttributes - The attributes for the specified index are returned.
|
2012-12-31 11:51:54 +00:00
|
|
|
/// Attributes for the result are denoted with Idx = 0. Function attributes are
|
|
|
|
/// 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
|
|
|
|
2013-01-04 20:54:35 +00:00
|
|
|
ArrayRef<AttributeWithIndex> Attrs = AttrList->getAttributes();
|
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-22 00:37:52 +00:00
|
|
|
bool AttributeSet::hasAttrSomewhere(Attribute::AttrKind Attr) const {
|
2008-09-25 21:00:45 +00:00
|
|
|
if (AttrList == 0) return false;
|
2012-10-10 07:36:45 +00:00
|
|
|
|
2013-01-04 20:54:35 +00:00
|
|
|
ArrayRef<AttributeWithIndex> Attrs = AttrList->getAttributes();
|
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
|
|
|
AttributeSet AttributeSet::addAttr(LLVMContext &C, unsigned Idx,
|
2012-12-31 00:49:59 +00:00
|
|
|
Attribute Attrs) const {
|
2012-12-19 07:18:57 +00:00
|
|
|
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 {
|
2013-01-04 20:54:35 +00:00
|
|
|
ArrayRef<AttributeWithIndex> OldAttrList = AttrList->getAttributes();
|
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-31 00:49:59 +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;
|
2013-01-04 20:54:35 +00:00
|
|
|
ArrayRef<AttributeWithIndex> OldAttrList = AttrList->getAttributes();
|
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);
|
2013-01-04 20:54:35 +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
|
|
|
}
|