2013-01-12 15:13:45 +01:00
|
|
|
//===- llvm/unittest/IR/AttributesTest.cpp - Attributes unit tests --------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/IR/Attributes.h"
|
|
|
|
#include "llvm/IR/LLVMContext.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
TEST(Attributes, Uniquing) {
|
|
|
|
LLVMContext C;
|
|
|
|
|
|
|
|
Attribute AttrA = Attribute::get(C, Attribute::AlwaysInline);
|
|
|
|
Attribute AttrB = Attribute::get(C, Attribute::AlwaysInline);
|
|
|
|
EXPECT_EQ(AttrA, AttrB);
|
|
|
|
|
Rename AttributeSet to AttributeList
Summary:
This class is a list of AttributeSetNodes corresponding the function
prototype of a call or function declaration. This class used to be
called ParamAttrListPtr, then AttrListPtr, then AttributeSet. It is
typically accessed by parameter and return value index, so
"AttributeList" seems like a more intuitive name.
Rename AttributeSetImpl to AttributeListImpl to follow suit.
It's useful to rename this class so that we can rename AttributeSetNode
to AttributeSet later. AttributeSet is the set of attributes that apply
to a single function, argument, or return value.
Reviewers: sanjoy, javed.absar, chandlerc, pete
Reviewed By: pete
Subscribers: pete, jholewinski, arsenm, dschuff, mehdi_amini, jfb, nhaehnle, sbc100, void, llvm-commits
Differential Revision: https://reviews.llvm.org/D31102
llvm-svn: 298393
2017-03-21 17:57:19 +01:00
|
|
|
AttributeList ASs[] = {AttributeList::get(C, 1, Attribute::ZExt),
|
|
|
|
AttributeList::get(C, 2, Attribute::SExt)};
|
2013-01-12 15:13:45 +01:00
|
|
|
|
Rename AttributeSet to AttributeList
Summary:
This class is a list of AttributeSetNodes corresponding the function
prototype of a call or function declaration. This class used to be
called ParamAttrListPtr, then AttrListPtr, then AttributeSet. It is
typically accessed by parameter and return value index, so
"AttributeList" seems like a more intuitive name.
Rename AttributeSetImpl to AttributeListImpl to follow suit.
It's useful to rename this class so that we can rename AttributeSetNode
to AttributeSet later. AttributeSet is the set of attributes that apply
to a single function, argument, or return value.
Reviewers: sanjoy, javed.absar, chandlerc, pete
Reviewed By: pete
Subscribers: pete, jholewinski, arsenm, dschuff, mehdi_amini, jfb, nhaehnle, sbc100, void, llvm-commits
Differential Revision: https://reviews.llvm.org/D31102
llvm-svn: 298393
2017-03-21 17:57:19 +01:00
|
|
|
AttributeList SetA = AttributeList::get(C, ASs);
|
|
|
|
AttributeList SetB = AttributeList::get(C, ASs);
|
2013-01-12 15:13:45 +01:00
|
|
|
EXPECT_EQ(SetA, SetB);
|
|
|
|
}
|
|
|
|
|
2013-08-03 00:29:40 +02:00
|
|
|
TEST(Attributes, Ordering) {
|
|
|
|
LLVMContext C;
|
|
|
|
|
2016-04-05 01:06:05 +02:00
|
|
|
Attribute Align4 = Attribute::get(C, Attribute::Alignment, 4);
|
|
|
|
Attribute Align5 = Attribute::get(C, Attribute::Alignment, 5);
|
|
|
|
Attribute Deref4 = Attribute::get(C, Attribute::Dereferenceable, 4);
|
|
|
|
Attribute Deref5 = Attribute::get(C, Attribute::Dereferenceable, 5);
|
|
|
|
EXPECT_TRUE(Align4 < Align5);
|
|
|
|
EXPECT_TRUE(Align4 < Deref4);
|
|
|
|
EXPECT_TRUE(Align4 < Deref5);
|
|
|
|
EXPECT_TRUE(Align5 < Deref4);
|
|
|
|
|
Rename AttributeSet to AttributeList
Summary:
This class is a list of AttributeSetNodes corresponding the function
prototype of a call or function declaration. This class used to be
called ParamAttrListPtr, then AttrListPtr, then AttributeSet. It is
typically accessed by parameter and return value index, so
"AttributeList" seems like a more intuitive name.
Rename AttributeSetImpl to AttributeListImpl to follow suit.
It's useful to rename this class so that we can rename AttributeSetNode
to AttributeSet later. AttributeSet is the set of attributes that apply
to a single function, argument, or return value.
Reviewers: sanjoy, javed.absar, chandlerc, pete
Reviewed By: pete
Subscribers: pete, jholewinski, arsenm, dschuff, mehdi_amini, jfb, nhaehnle, sbc100, void, llvm-commits
Differential Revision: https://reviews.llvm.org/D31102
llvm-svn: 298393
2017-03-21 17:57:19 +01:00
|
|
|
AttributeList ASs[] = {AttributeList::get(C, 2, Attribute::ZExt),
|
|
|
|
AttributeList::get(C, 1, Attribute::SExt)};
|
2013-08-03 00:29:40 +02:00
|
|
|
|
Rename AttributeSet to AttributeList
Summary:
This class is a list of AttributeSetNodes corresponding the function
prototype of a call or function declaration. This class used to be
called ParamAttrListPtr, then AttrListPtr, then AttributeSet. It is
typically accessed by parameter and return value index, so
"AttributeList" seems like a more intuitive name.
Rename AttributeSetImpl to AttributeListImpl to follow suit.
It's useful to rename this class so that we can rename AttributeSetNode
to AttributeSet later. AttributeSet is the set of attributes that apply
to a single function, argument, or return value.
Reviewers: sanjoy, javed.absar, chandlerc, pete
Reviewed By: pete
Subscribers: pete, jholewinski, arsenm, dschuff, mehdi_amini, jfb, nhaehnle, sbc100, void, llvm-commits
Differential Revision: https://reviews.llvm.org/D31102
llvm-svn: 298393
2017-03-21 17:57:19 +01:00
|
|
|
AttributeList SetA = AttributeList::get(C, ASs);
|
2017-05-03 00:07:37 +02:00
|
|
|
AttributeList SetB = SetA.removeAttributes(C, 1, ASs[1].getAttributes(1));
|
2013-08-03 00:29:40 +02:00
|
|
|
EXPECT_NE(SetA, SetB);
|
|
|
|
}
|
|
|
|
|
2017-04-19 00:10:18 +02:00
|
|
|
TEST(Attributes, AddAttributes) {
|
|
|
|
LLVMContext C;
|
|
|
|
AttributeList AL;
|
|
|
|
AttrBuilder B;
|
|
|
|
B.addAttribute(Attribute::NoReturn);
|
|
|
|
AL = AL.addAttributes(C, AttributeList::FunctionIndex, AttributeSet::get(C, B));
|
|
|
|
EXPECT_TRUE(AL.hasFnAttribute(Attribute::NoReturn));
|
2017-04-19 03:51:13 +02:00
|
|
|
B.clear();
|
|
|
|
B.addAttribute(Attribute::SExt);
|
|
|
|
AL = AL.addAttributes(C, AttributeList::ReturnIndex, B);
|
|
|
|
EXPECT_TRUE(AL.hasAttribute(AttributeList::ReturnIndex, Attribute::SExt));
|
|
|
|
EXPECT_TRUE(AL.hasFnAttribute(Attribute::NoReturn));
|
2017-04-19 00:10:18 +02:00
|
|
|
}
|
|
|
|
|
2018-01-17 20:15:21 +01:00
|
|
|
TEST(Attributes, RemoveAlign) {
|
|
|
|
LLVMContext C;
|
|
|
|
|
|
|
|
Attribute AlignAttr = Attribute::getWithAlignment(C, 8);
|
|
|
|
Attribute StackAlignAttr = Attribute::getWithStackAlignment(C, 32);
|
|
|
|
AttrBuilder B_align_readonly;
|
|
|
|
B_align_readonly.addAttribute(AlignAttr);
|
|
|
|
B_align_readonly.addAttribute(Attribute::ReadOnly);
|
|
|
|
AttrBuilder B_align;
|
|
|
|
B_align.addAttribute(AlignAttr);
|
|
|
|
AttrBuilder B_stackalign_optnone;
|
|
|
|
B_stackalign_optnone.addAttribute(StackAlignAttr);
|
|
|
|
B_stackalign_optnone.addAttribute(Attribute::OptimizeNone);
|
|
|
|
AttrBuilder B_stackalign;
|
|
|
|
B_stackalign.addAttribute(StackAlignAttr);
|
|
|
|
|
|
|
|
AttributeSet AS = AttributeSet::get(C, B_align_readonly);
|
|
|
|
EXPECT_TRUE(AS.getAlignment() == 8);
|
|
|
|
EXPECT_TRUE(AS.hasAttribute(Attribute::ReadOnly));
|
|
|
|
AS = AS.removeAttribute(C, Attribute::Alignment);
|
|
|
|
EXPECT_FALSE(AS.hasAttribute(Attribute::Alignment));
|
|
|
|
EXPECT_TRUE(AS.hasAttribute(Attribute::ReadOnly));
|
|
|
|
AS = AttributeSet::get(C, B_align_readonly);
|
|
|
|
AS = AS.removeAttributes(C, B_align);
|
|
|
|
EXPECT_TRUE(AS.getAlignment() == 0);
|
|
|
|
EXPECT_TRUE(AS.hasAttribute(Attribute::ReadOnly));
|
|
|
|
|
|
|
|
AttributeList AL;
|
|
|
|
AL = AL.addParamAttributes(C, 0, B_align_readonly);
|
|
|
|
AL = AL.addAttributes(C, 0, B_stackalign_optnone);
|
|
|
|
EXPECT_TRUE(AL.hasAttributes(0));
|
|
|
|
EXPECT_TRUE(AL.hasAttribute(0, Attribute::StackAlignment));
|
|
|
|
EXPECT_TRUE(AL.hasAttribute(0, Attribute::OptimizeNone));
|
|
|
|
EXPECT_TRUE(AL.getStackAlignment(0) == 32);
|
|
|
|
EXPECT_TRUE(AL.hasParamAttrs(0));
|
|
|
|
EXPECT_TRUE(AL.hasParamAttr(0, Attribute::Alignment));
|
|
|
|
EXPECT_TRUE(AL.hasParamAttr(0, Attribute::ReadOnly));
|
|
|
|
EXPECT_TRUE(AL.getParamAlignment(0) == 8);
|
|
|
|
|
|
|
|
AL = AL.removeParamAttribute(C, 0, Attribute::Alignment);
|
|
|
|
EXPECT_FALSE(AL.hasParamAttr(0, Attribute::Alignment));
|
|
|
|
EXPECT_TRUE(AL.hasParamAttr(0, Attribute::ReadOnly));
|
|
|
|
EXPECT_TRUE(AL.hasAttribute(0, Attribute::StackAlignment));
|
|
|
|
EXPECT_TRUE(AL.hasAttribute(0, Attribute::OptimizeNone));
|
|
|
|
EXPECT_TRUE(AL.getStackAlignment(0) == 32);
|
|
|
|
|
|
|
|
AL = AL.removeAttribute(C, 0, Attribute::StackAlignment);
|
|
|
|
EXPECT_FALSE(AL.hasParamAttr(0, Attribute::Alignment));
|
|
|
|
EXPECT_TRUE(AL.hasParamAttr(0, Attribute::ReadOnly));
|
|
|
|
EXPECT_FALSE(AL.hasAttribute(0, Attribute::StackAlignment));
|
|
|
|
EXPECT_TRUE(AL.hasAttribute(0, Attribute::OptimizeNone));
|
|
|
|
|
|
|
|
AttributeList AL2;
|
|
|
|
AL2 = AL2.addParamAttributes(C, 0, B_align_readonly);
|
|
|
|
AL2 = AL2.addAttributes(C, 0, B_stackalign_optnone);
|
|
|
|
|
|
|
|
AL2 = AL2.removeParamAttributes(C, 0, B_align);
|
|
|
|
EXPECT_FALSE(AL2.hasParamAttr(0, Attribute::Alignment));
|
|
|
|
EXPECT_TRUE(AL2.hasParamAttr(0, Attribute::ReadOnly));
|
|
|
|
EXPECT_TRUE(AL2.hasAttribute(0, Attribute::StackAlignment));
|
|
|
|
EXPECT_TRUE(AL2.hasAttribute(0, Attribute::OptimizeNone));
|
|
|
|
EXPECT_TRUE(AL2.getStackAlignment(0) == 32);
|
|
|
|
|
|
|
|
AL2 = AL2.removeAttributes(C, 0, B_stackalign);
|
|
|
|
EXPECT_FALSE(AL2.hasParamAttr(0, Attribute::Alignment));
|
|
|
|
EXPECT_TRUE(AL2.hasParamAttr(0, Attribute::ReadOnly));
|
|
|
|
EXPECT_FALSE(AL2.hasAttribute(0, Attribute::StackAlignment));
|
|
|
|
EXPECT_TRUE(AL2.hasAttribute(0, Attribute::OptimizeNone));
|
|
|
|
}
|
|
|
|
|
2017-05-20 00:23:47 +02:00
|
|
|
TEST(Attributes, AddMatchingAlignAttr) {
|
|
|
|
LLVMContext C;
|
|
|
|
AttributeList AL;
|
|
|
|
AL = AL.addAttribute(C, AttributeList::FirstArgIndex,
|
|
|
|
Attribute::getWithAlignment(C, 8));
|
|
|
|
AL = AL.addAttribute(C, AttributeList::FirstArgIndex + 1,
|
|
|
|
Attribute::getWithAlignment(C, 32));
|
|
|
|
EXPECT_EQ(8U, AL.getParamAlignment(0));
|
|
|
|
EXPECT_EQ(32U, AL.getParamAlignment(1));
|
|
|
|
|
|
|
|
AttrBuilder B;
|
|
|
|
B.addAttribute(Attribute::NonNull);
|
|
|
|
B.addAlignmentAttr(8);
|
|
|
|
AL = AL.addAttributes(C, AttributeList::FirstArgIndex, B);
|
|
|
|
EXPECT_EQ(8U, AL.getParamAlignment(0));
|
|
|
|
EXPECT_EQ(32U, AL.getParamAlignment(1));
|
|
|
|
EXPECT_TRUE(AL.hasParamAttribute(0, Attribute::NonNull));
|
|
|
|
}
|
|
|
|
|
2017-05-31 16:24:06 +02:00
|
|
|
TEST(Attributes, EmptyGet) {
|
|
|
|
LLVMContext C;
|
|
|
|
AttributeList EmptyLists[] = {AttributeList(), AttributeList()};
|
|
|
|
AttributeList AL = AttributeList::get(C, EmptyLists);
|
|
|
|
EXPECT_TRUE(AL.isEmpty());
|
|
|
|
}
|
|
|
|
|
2013-01-12 15:13:45 +01:00
|
|
|
} // end anonymous namespace
|