blob: a68ad50cf2c4825508691e9bec73d5fdea8d7886 [file] [log] [blame]
Eugene Zelenkodeaf6952017-02-17 00:00:09 +00001//===- Attributes.cpp - Implement AttributesList --------------------------===//
Chris Lattner3e13b8c2008-01-02 23:42:30 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Chris Lattner3e13b8c2008-01-02 23:42:30 +00006//
7//===----------------------------------------------------------------------===//
8//
Bill Wendlingec454542013-01-28 21:55:20 +00009// \file
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000010// This file implements the Attribute, AttributeImpl, AttrBuilder,
Reid Klecknerb5180542017-03-21 16:57:19 +000011// AttributeListImpl, and AttributeList classes.
Chris Lattner3e13b8c2008-01-02 23:42:30 +000012//
13//===----------------------------------------------------------------------===//
14
Chandler Carruth6bda14b2017-06-06 11:49:48 +000015#include "llvm/IR/Attributes.h"
Bill Wendling4607f4b2012-12-20 01:36:59 +000016#include "AttributeImpl.h"
Bill Wendlinge38b8042012-09-26 21:07:29 +000017#include "LLVMContextImpl.h"
Eugene Zelenkodeaf6952017-02-17 00:00:09 +000018#include "llvm/ADT/ArrayRef.h"
19#include "llvm/ADT/FoldingSet.h"
20#include "llvm/ADT/Optional.h"
Benjamin Kramer502b9e12014-04-12 16:15:53 +000021#include "llvm/ADT/STLExtras.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000022#include "llvm/ADT/SmallVector.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/ADT/StringExtras.h"
Eugene Zelenkodeaf6952017-02-17 00:00:09 +000024#include "llvm/ADT/StringRef.h"
25#include "llvm/ADT/Twine.h"
Nico Weber432a3882018-04-30 14:59:11 +000026#include "llvm/Config/llvm-config.h"
Eugene Zelenkodeaf6952017-02-17 00:00:09 +000027#include "llvm/IR/Function.h"
28#include "llvm/IR/LLVMContext.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/Type.h"
Eugene Zelenkodeaf6952017-02-17 00:00:09 +000030#include "llvm/Support/Compiler.h"
David Greenef7014732010-01-05 01:29:58 +000031#include "llvm/Support/Debug.h"
Eugene Zelenkodeaf6952017-02-17 00:00:09 +000032#include "llvm/Support/ErrorHandling.h"
33#include "llvm/Support/MathExtras.h"
Benjamin Kramer1a25d732009-08-23 11:37:21 +000034#include "llvm/Support/raw_ostream.h"
Bill Wendlingd2e493b2013-01-24 00:06:56 +000035#include <algorithm>
Eugene Zelenkodeaf6952017-02-17 00:00:09 +000036#include <cassert>
Eugene Zelenkod761e2c2017-05-15 21:57:41 +000037#include <climits>
38#include <cstddef>
Eugene Zelenkodeaf6952017-02-17 00:00:09 +000039#include <cstdint>
40#include <limits>
Eugene Zelenkodeaf6952017-02-17 00:00:09 +000041#include <string>
42#include <tuple>
43#include <utility>
44
Chris Lattner3e13b8c2008-01-02 23:42:30 +000045using namespace llvm;
46
Chris Lattner8a923e72008-03-12 17:45:29 +000047//===----------------------------------------------------------------------===//
Bill Wendling7707c5a2013-01-29 00:48:16 +000048// Attribute Construction Methods
Chris Lattner8a923e72008-03-12 17:45:29 +000049//===----------------------------------------------------------------------===//
Chris Lattnerd0e1f102008-01-03 00:10:22 +000050
George Burgess IV278199f2016-04-12 01:05:35 +000051// allocsize has two integer arguments, but because they're both 32 bits, we can
52// pack them into one 64-bit value, at the cost of making said value
53// nonsensical.
54//
55// In order to do this, we need to reserve one value of the second (optional)
56// allocsize argument to signify "not present."
George Burgess IV381fc0e2016-08-25 01:05:08 +000057static const unsigned AllocSizeNumElemsNotPresent = -1;
George Burgess IV278199f2016-04-12 01:05:35 +000058
59static uint64_t packAllocSizeArgs(unsigned ElemSizeArg,
60 const Optional<unsigned> &NumElemsArg) {
61 assert((!NumElemsArg.hasValue() ||
62 *NumElemsArg != AllocSizeNumElemsNotPresent) &&
63 "Attempting to pack a reserved value");
64
65 return uint64_t(ElemSizeArg) << 32 |
66 NumElemsArg.getValueOr(AllocSizeNumElemsNotPresent);
67}
68
69static std::pair<unsigned, Optional<unsigned>>
70unpackAllocSizeArgs(uint64_t Num) {
71 unsigned NumElems = Num & std::numeric_limits<unsigned>::max();
72 unsigned ElemSizeArg = Num >> 32;
73
74 Optional<unsigned> NumElemsArg;
75 if (NumElems != AllocSizeNumElemsNotPresent)
76 NumElemsArg = NumElems;
77 return std::make_pair(ElemSizeArg, NumElemsArg);
78}
79
Matt Arsenaulte1cef6e2014-09-03 23:24:31 +000080Attribute Attribute::get(LLVMContext &Context, Attribute::AttrKind Kind,
81 uint64_t Val) {
82 LLVMContextImpl *pImpl = Context.pImpl;
83 FoldingSetNodeID ID;
84 ID.AddInteger(Kind);
Matt Arsenaultfb4308e2014-09-03 23:38:05 +000085 if (Val) ID.AddInteger(Val);
Matt Arsenaulte1cef6e2014-09-03 23:24:31 +000086
87 void *InsertPoint;
88 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
89
90 if (!PA) {
91 // If we didn't find any existing attributes of the same shape then create a
92 // new one and insert it.
Matt Arsenaultfb4308e2014-09-03 23:38:05 +000093 if (!Val)
94 PA = new EnumAttributeImpl(Kind);
95 else
96 PA = new IntAttributeImpl(Kind, Val);
Bill Wendling3f12ac22013-02-05 22:37:24 +000097 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
98 }
99
100 // Return the Attribute that we found or created.
101 return Attribute(PA);
102}
103
104Attribute Attribute::get(LLVMContext &Context, StringRef Kind, StringRef Val) {
105 LLVMContextImpl *pImpl = Context.pImpl;
106 FoldingSetNodeID ID;
107 ID.AddString(Kind);
108 if (!Val.empty()) ID.AddString(Val);
Bill Wendling73ea2de2012-10-08 21:47:17 +0000109
110 void *InsertPoint;
Bill Wendling4607f4b2012-12-20 01:36:59 +0000111 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
Bill Wendling73ea2de2012-10-08 21:47:17 +0000112
113 if (!PA) {
114 // If we didn't find any existing attributes of the same shape then create a
115 // new one and insert it.
Benjamin Kramer741146b2013-07-11 12:13:16 +0000116 PA = new StringAttributeImpl(Kind, Val);
Bill Wendling73ea2de2012-10-08 21:47:17 +0000117 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
118 }
119
Bill Wendlingb9c5b1a2013-02-05 08:09:32 +0000120 // Return the Attribute that we found or created.
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000121 return Attribute(PA);
Bill Wendling73ea2de2012-10-08 21:47:17 +0000122}
123
Tim Northoverb7141202019-05-30 18:48:23 +0000124Attribute Attribute::get(LLVMContext &Context, Attribute::AttrKind Kind,
125 Type *Ty) {
126 LLVMContextImpl *pImpl = Context.pImpl;
127 FoldingSetNodeID ID;
128 ID.AddInteger(Kind);
129 ID.AddPointer(Ty);
130
131 void *InsertPoint;
132 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
133
134 if (!PA) {
135 // If we didn't find any existing attributes of the same shape then create a
136 // new one and insert it.
137 PA = new TypeAttributeImpl(Kind, Ty);
138 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
139 }
140
141 // Return the Attribute that we found or created.
142 return Attribute(PA);
143}
144
Bill Wendling4bbe9db2013-01-27 22:43:04 +0000145Attribute Attribute::getWithAlignment(LLVMContext &Context, uint64_t Align) {
Bill Wendling1c7cc8a2013-01-31 23:16:25 +0000146 assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
147 assert(Align <= 0x40000000 && "Alignment too large.");
Bill Wendling3f12ac22013-02-05 22:37:24 +0000148 return get(Context, Alignment, Align);
Bill Wendling4bbe9db2013-01-27 22:43:04 +0000149}
150
151Attribute Attribute::getWithStackAlignment(LLVMContext &Context,
152 uint64_t Align) {
Bill Wendling1c7cc8a2013-01-31 23:16:25 +0000153 assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
154 assert(Align <= 0x100 && "Alignment too large.");
Bill Wendling3f12ac22013-02-05 22:37:24 +0000155 return get(Context, StackAlignment, Align);
Bill Wendling4bbe9db2013-01-27 22:43:04 +0000156}
157
Hal Finkelb0407ba2014-07-18 15:51:28 +0000158Attribute Attribute::getWithDereferenceableBytes(LLVMContext &Context,
159 uint64_t Bytes) {
160 assert(Bytes && "Bytes must be non-zero.");
161 return get(Context, Dereferenceable, Bytes);
162}
163
Sanjoy Das31ea6d12015-04-16 20:29:50 +0000164Attribute Attribute::getWithDereferenceableOrNullBytes(LLVMContext &Context,
165 uint64_t Bytes) {
166 assert(Bytes && "Bytes must be non-zero.");
167 return get(Context, DereferenceableOrNull, Bytes);
168}
169
Tim Northoverb7141202019-05-30 18:48:23 +0000170Attribute Attribute::getWithByValType(LLVMContext &Context, Type *Ty) {
171 return get(Context, ByVal, Ty);
172}
173
George Burgess IV278199f2016-04-12 01:05:35 +0000174Attribute
175Attribute::getWithAllocSizeArgs(LLVMContext &Context, unsigned ElemSizeArg,
176 const Optional<unsigned> &NumElemsArg) {
177 assert(!(ElemSizeArg == 0 && NumElemsArg && *NumElemsArg == 0) &&
178 "Invalid allocsize arguments -- given allocsize(0, 0)");
179 return get(Context, AllocSize, packAllocSizeArgs(ElemSizeArg, NumElemsArg));
180}
181
Bill Wendling7707c5a2013-01-29 00:48:16 +0000182//===----------------------------------------------------------------------===//
183// Attribute Accessor Methods
184//===----------------------------------------------------------------------===//
185
Bill Wendling3f12ac22013-02-05 22:37:24 +0000186bool Attribute::isEnumAttribute() const {
187 return pImpl && pImpl->isEnumAttribute();
188}
189
Hal Finkele15442c2014-07-18 06:51:55 +0000190bool Attribute::isIntAttribute() const {
191 return pImpl && pImpl->isIntAttribute();
Bill Wendling3f12ac22013-02-05 22:37:24 +0000192}
193
194bool Attribute::isStringAttribute() const {
195 return pImpl && pImpl->isStringAttribute();
196}
197
Tim Northoverb7141202019-05-30 18:48:23 +0000198bool Attribute::isTypeAttribute() const {
199 return pImpl && pImpl->isTypeAttribute();
200}
201
Bill Wendling3f12ac22013-02-05 22:37:24 +0000202Attribute::AttrKind Attribute::getKindAsEnum() const {
Bill Wendling440e9d82013-07-25 00:34:29 +0000203 if (!pImpl) return None;
Tim Northoverb7141202019-05-30 18:48:23 +0000204 assert((isEnumAttribute() || isIntAttribute() || isTypeAttribute()) &&
Bill Wendling3f12ac22013-02-05 22:37:24 +0000205 "Invalid attribute type to get the kind as an enum!");
George Burgess IV500d3032015-12-16 05:21:02 +0000206 return pImpl->getKindAsEnum();
Bill Wendling3f12ac22013-02-05 22:37:24 +0000207}
208
209uint64_t Attribute::getValueAsInt() const {
Bill Wendling440e9d82013-07-25 00:34:29 +0000210 if (!pImpl) return 0;
Hal Finkele15442c2014-07-18 06:51:55 +0000211 assert(isIntAttribute() &&
212 "Expected the attribute to be an integer attribute!");
George Burgess IV500d3032015-12-16 05:21:02 +0000213 return pImpl->getValueAsInt();
Bill Wendling3f12ac22013-02-05 22:37:24 +0000214}
215
216StringRef Attribute::getKindAsString() const {
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000217 if (!pImpl) return {};
Bill Wendling3f12ac22013-02-05 22:37:24 +0000218 assert(isStringAttribute() &&
219 "Invalid attribute type to get the kind as a string!");
George Burgess IV500d3032015-12-16 05:21:02 +0000220 return pImpl->getKindAsString();
Bill Wendling3f12ac22013-02-05 22:37:24 +0000221}
222
223StringRef Attribute::getValueAsString() const {
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000224 if (!pImpl) return {};
Bill Wendling3f12ac22013-02-05 22:37:24 +0000225 assert(isStringAttribute() &&
226 "Invalid attribute type to get the value as a string!");
George Burgess IV500d3032015-12-16 05:21:02 +0000227 return pImpl->getValueAsString();
Bill Wendling3f12ac22013-02-05 22:37:24 +0000228}
229
Tim Northoverb7141202019-05-30 18:48:23 +0000230Type *Attribute::getValueAsType() const {
231 if (!pImpl) return {};
232 assert(isTypeAttribute() &&
233 "Invalid attribute type to get the value as a type!");
234 return pImpl->getValueAsType();
235}
236
237
Bill Wendlingae89a0f2013-02-05 23:48:36 +0000238bool Attribute::hasAttribute(AttrKind Kind) const {
239 return (pImpl && pImpl->hasAttribute(Kind)) || (!pImpl && Kind == None);
240}
241
242bool Attribute::hasAttribute(StringRef Kind) const {
243 if (!isStringAttribute()) return false;
244 return pImpl && pImpl->hasAttribute(Kind);
Bill Wendling03eefb32013-01-29 20:45:34 +0000245}
246
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000247unsigned Attribute::getAlignment() const {
Bill Wendlingc79cdff2013-02-01 01:04:27 +0000248 assert(hasAttribute(Attribute::Alignment) &&
249 "Trying to get alignment from non-alignment attribute!");
Bill Wendling3f12ac22013-02-05 22:37:24 +0000250 return pImpl->getValueAsInt();
Bill Wendlingabf3feb2012-10-05 06:44:41 +0000251}
252
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000253unsigned Attribute::getStackAlignment() const {
Bill Wendlingc79cdff2013-02-01 01:04:27 +0000254 assert(hasAttribute(Attribute::StackAlignment) &&
255 "Trying to get alignment from non-alignment attribute!");
Bill Wendling3f12ac22013-02-05 22:37:24 +0000256 return pImpl->getValueAsInt();
Bill Wendlingabf3feb2012-10-05 06:44:41 +0000257}
258
Hal Finkelb0407ba2014-07-18 15:51:28 +0000259uint64_t Attribute::getDereferenceableBytes() const {
260 assert(hasAttribute(Attribute::Dereferenceable) &&
261 "Trying to get dereferenceable bytes from "
262 "non-dereferenceable attribute!");
263 return pImpl->getValueAsInt();
264}
265
Sanjoy Das31ea6d12015-04-16 20:29:50 +0000266uint64_t Attribute::getDereferenceableOrNullBytes() const {
267 assert(hasAttribute(Attribute::DereferenceableOrNull) &&
268 "Trying to get dereferenceable bytes from "
269 "non-dereferenceable attribute!");
270 return pImpl->getValueAsInt();
271}
272
George Burgess IV278199f2016-04-12 01:05:35 +0000273std::pair<unsigned, Optional<unsigned>> Attribute::getAllocSizeArgs() const {
274 assert(hasAttribute(Attribute::AllocSize) &&
275 "Trying to get allocsize args from non-allocsize attribute");
276 return unpackAllocSizeArgs(pImpl->getValueAsInt());
277}
278
Bill Wendling829b4782013-02-11 08:43:33 +0000279std::string Attribute::getAsString(bool InAttrGrp) const {
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000280 if (!pImpl) return {};
Bill Wendling9c2eba92013-01-31 20:59:05 +0000281
Kostya Serebryanycf880b92013-02-26 06:58:09 +0000282 if (hasAttribute(Attribute::SanitizeAddress))
283 return "sanitize_address";
Evgeniy Stepanovc667c1f2017-12-09 00:21:41 +0000284 if (hasAttribute(Attribute::SanitizeHWAddress))
285 return "sanitize_hwaddress";
Evgeniy Stepanovc5e7f562019-07-15 20:02:23 +0000286 if (hasAttribute(Attribute::SanitizeMemTag))
287 return "sanitize_memtag";
Bill Wendling9c2eba92013-01-31 20:59:05 +0000288 if (hasAttribute(Attribute::AlwaysInline))
289 return "alwaysinline";
Igor Laevsky39d662f2015-07-11 10:30:36 +0000290 if (hasAttribute(Attribute::ArgMemOnly))
291 return "argmemonly";
Michael Gottesman41748d72013-06-27 00:25:01 +0000292 if (hasAttribute(Attribute::Builtin))
293 return "builtin";
Owen Anderson85fa7d52015-05-26 23:48:40 +0000294 if (hasAttribute(Attribute::Convergent))
295 return "convergent";
Manman Ren9bfd0d02016-04-01 21:41:15 +0000296 if (hasAttribute(Attribute::SwiftError))
297 return "swifterror";
Manman Renf46262e2016-03-29 17:37:21 +0000298 if (hasAttribute(Attribute::SwiftSelf))
299 return "swiftself";
Vaivaswatha Nagarajfb3f4902015-12-16 16:16:19 +0000300 if (hasAttribute(Attribute::InaccessibleMemOnly))
301 return "inaccessiblememonly";
302 if (hasAttribute(Attribute::InaccessibleMemOrArgMemOnly))
303 return "inaccessiblemem_or_argmemonly";
Reid Klecknera534a382013-12-19 02:14:12 +0000304 if (hasAttribute(Attribute::InAlloca))
305 return "inalloca";
Bill Wendling9c2eba92013-01-31 20:59:05 +0000306 if (hasAttribute(Attribute::InlineHint))
307 return "inlinehint";
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000308 if (hasAttribute(Attribute::InReg))
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000309 return "inreg";
Tom Roeder44cb65f2014-06-05 19:29:43 +0000310 if (hasAttribute(Attribute::JumpTable))
311 return "jumptable";
Bill Wendling9c2eba92013-01-31 20:59:05 +0000312 if (hasAttribute(Attribute::MinSize))
313 return "minsize";
314 if (hasAttribute(Attribute::Naked))
315 return "naked";
316 if (hasAttribute(Attribute::Nest))
317 return "nest";
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000318 if (hasAttribute(Attribute::NoAlias))
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000319 return "noalias";
Bill Wendling09bd1f72013-02-22 00:12:35 +0000320 if (hasAttribute(Attribute::NoBuiltin))
321 return "nobuiltin";
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000322 if (hasAttribute(Attribute::NoCapture))
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000323 return "nocapture";
Bill Wendling9c2eba92013-01-31 20:59:05 +0000324 if (hasAttribute(Attribute::NoDuplicate))
325 return "noduplicate";
Brian Homerdingb4b21d82019-07-08 15:57:56 +0000326 if (hasAttribute(Attribute::NoFree))
327 return "nofree";
Bill Wendling9c2eba92013-01-31 20:59:05 +0000328 if (hasAttribute(Attribute::NoImplicitFloat))
329 return "noimplicitfloat";
330 if (hasAttribute(Attribute::NoInline))
331 return "noinline";
332 if (hasAttribute(Attribute::NonLazyBind))
333 return "nonlazybind";
Nick Lewyckyd52b1522014-05-20 01:23:40 +0000334 if (hasAttribute(Attribute::NonNull))
335 return "nonnull";
Bill Wendling9c2eba92013-01-31 20:59:05 +0000336 if (hasAttribute(Attribute::NoRedZone))
337 return "noredzone";
338 if (hasAttribute(Attribute::NoReturn))
339 return "noreturn";
Stefan Stipanovic06263672019-07-11 21:37:40 +0000340 if (hasAttribute(Attribute::NoSync))
341 return "nosync";
Johannes Doerfert3b775832019-06-27 15:51:40 +0000342 if (hasAttribute(Attribute::WillReturn))
343 return "willreturn";
Oren Ben Simhonfdd72fd2018-03-17 13:29:46 +0000344 if (hasAttribute(Attribute::NoCfCheck))
345 return "nocf_check";
James Molloye6f87ca2015-11-06 10:32:53 +0000346 if (hasAttribute(Attribute::NoRecurse))
347 return "norecurse";
Bill Wendling9c2eba92013-01-31 20:59:05 +0000348 if (hasAttribute(Attribute::NoUnwind))
349 return "nounwind";
Matt Morehouse236cdaf2018-03-22 17:07:51 +0000350 if (hasAttribute(Attribute::OptForFuzzing))
351 return "optforfuzzing";
Andrea Di Biagio377496b2013-08-23 11:53:55 +0000352 if (hasAttribute(Attribute::OptimizeNone))
353 return "optnone";
Bill Wendling9c2eba92013-01-31 20:59:05 +0000354 if (hasAttribute(Attribute::OptimizeForSize))
355 return "optsize";
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000356 if (hasAttribute(Attribute::ReadNone))
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000357 return "readnone";
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000358 if (hasAttribute(Attribute::ReadOnly))
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000359 return "readonly";
Nicolai Haehnle84c9f992016-07-04 08:01:29 +0000360 if (hasAttribute(Attribute::WriteOnly))
361 return "writeonly";
Stephen Linb8bd2322013-04-20 05:14:40 +0000362 if (hasAttribute(Attribute::Returned))
363 return "returned";
Bill Wendling9c2eba92013-01-31 20:59:05 +0000364 if (hasAttribute(Attribute::ReturnsTwice))
365 return "returns_twice";
366 if (hasAttribute(Attribute::SExt))
367 return "signext";
Chandler Carruth664aa862018-09-04 12:38:00 +0000368 if (hasAttribute(Attribute::SpeculativeLoadHardening))
369 return "speculative_load_hardening";
Matt Arsenaultb19b57e2017-04-28 20:25:27 +0000370 if (hasAttribute(Attribute::Speculatable))
371 return "speculatable";
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000372 if (hasAttribute(Attribute::StackProtect))
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000373 return "ssp";
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000374 if (hasAttribute(Attribute::StackProtectReq))
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000375 return "sspreq";
Bill Wendlingd154e2832013-01-23 06:41:41 +0000376 if (hasAttribute(Attribute::StackProtectStrong))
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000377 return "sspstrong";
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000378 if (hasAttribute(Attribute::SafeStack))
379 return "safestack";
Vlad Tsyrklevichd17f61e2018-04-03 20:10:40 +0000380 if (hasAttribute(Attribute::ShadowCallStack))
381 return "shadowcallstack";
Andrew Kaylor53a5fbb2017-08-14 21:15:13 +0000382 if (hasAttribute(Attribute::StrictFP))
383 return "strictfp";
Bill Wendling9c2eba92013-01-31 20:59:05 +0000384 if (hasAttribute(Attribute::StructRet))
385 return "sret";
Kostya Serebryanycf880b92013-02-26 06:58:09 +0000386 if (hasAttribute(Attribute::SanitizeThread))
387 return "sanitize_thread";
388 if (hasAttribute(Attribute::SanitizeMemory))
389 return "sanitize_memory";
Bill Wendling9c2eba92013-01-31 20:59:05 +0000390 if (hasAttribute(Attribute::UWTable))
391 return "uwtable";
392 if (hasAttribute(Attribute::ZExt))
393 return "zeroext";
Diego Novilloc6399532013-05-24 12:26:52 +0000394 if (hasAttribute(Attribute::Cold))
395 return "cold";
Matt Arsenaultcaf13162019-03-12 21:02:54 +0000396 if (hasAttribute(Attribute::ImmArg))
397 return "immarg";
Bill Wendling9c2eba92013-01-31 20:59:05 +0000398
Tim Northoverb7141202019-05-30 18:48:23 +0000399 if (hasAttribute(Attribute::ByVal)) {
400 std::string Result;
401 Result += "byval";
402 if (Type *Ty = getValueAsType()) {
403 raw_string_ostream OS(Result);
404 Result += '(';
405 Ty->print(OS, false, true);
406 OS.flush();
407 Result += ')';
408 }
409 return Result;
410 }
411
Bill Wendling9c2eba92013-01-31 20:59:05 +0000412 // FIXME: These should be output like this:
413 //
414 // align=4
415 // alignstack=8
416 //
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000417 if (hasAttribute(Attribute::Alignment)) {
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000418 std::string Result;
Bill Wendling829b4782013-02-11 08:43:33 +0000419 Result += "align";
420 Result += (InAttrGrp) ? "=" : " ";
Bill Wendling3f12ac22013-02-05 22:37:24 +0000421 Result += utostr(getValueAsInt());
422 return Result;
423 }
Bill Wendling829b4782013-02-11 08:43:33 +0000424
Sanjoy Das31ea6d12015-04-16 20:29:50 +0000425 auto AttrWithBytesToString = [&](const char *Name) {
Bill Wendling3f12ac22013-02-05 22:37:24 +0000426 std::string Result;
Sanjoy Das31ea6d12015-04-16 20:29:50 +0000427 Result += Name;
Bill Wendling829b4782013-02-11 08:43:33 +0000428 if (InAttrGrp) {
429 Result += "=";
430 Result += utostr(getValueAsInt());
431 } else {
432 Result += "(";
433 Result += utostr(getValueAsInt());
434 Result += ")";
435 }
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000436 return Result;
Sanjoy Das31ea6d12015-04-16 20:29:50 +0000437 };
Bill Wendling9c2eba92013-01-31 20:59:05 +0000438
Sanjoy Das31ea6d12015-04-16 20:29:50 +0000439 if (hasAttribute(Attribute::StackAlignment))
440 return AttrWithBytesToString("alignstack");
441
442 if (hasAttribute(Attribute::Dereferenceable))
443 return AttrWithBytesToString("dereferenceable");
444
445 if (hasAttribute(Attribute::DereferenceableOrNull))
446 return AttrWithBytesToString("dereferenceable_or_null");
Hal Finkelb0407ba2014-07-18 15:51:28 +0000447
George Burgess IV278199f2016-04-12 01:05:35 +0000448 if (hasAttribute(Attribute::AllocSize)) {
449 unsigned ElemSize;
450 Optional<unsigned> NumElems;
451 std::tie(ElemSize, NumElems) = getAllocSizeArgs();
452
453 std::string Result = "allocsize(";
454 Result += utostr(ElemSize);
455 if (NumElems.hasValue()) {
456 Result += ',';
457 Result += utostr(*NumElems);
458 }
459 Result += ')';
460 return Result;
461 }
462
Bill Wendling9c2eba92013-01-31 20:59:05 +0000463 // Convert target-dependent attributes to strings of the form:
464 //
465 // "kind"
466 // "kind" = "value"
Bill Wendling9c2eba92013-01-31 20:59:05 +0000467 //
Bill Wendling3f12ac22013-02-05 22:37:24 +0000468 if (isStringAttribute()) {
Bill Wendling9c2eba92013-01-31 20:59:05 +0000469 std::string Result;
Yaron Keren075759a2015-03-30 15:42:36 +0000470 Result += (Twine('"') + getKindAsString() + Twine('"')).str();
Bill Wendling9c2eba92013-01-31 20:59:05 +0000471
Honggyu Kim9eb6a102016-09-01 11:44:06 +0000472 std::string AttrVal = pImpl->getValueAsString();
473 if (AttrVal.empty()) return Result;
Bill Wendling7a33f772013-02-01 22:32:30 +0000474
Honggyu Kim9eb6a102016-09-01 11:44:06 +0000475 // Since some attribute strings contain special characters that cannot be
476 // printable, those have to be escaped to make the attribute value printable
477 // as is. e.g. "\01__gnu_mcount_nc"
478 {
479 raw_string_ostream OS(Result);
480 OS << "=\"";
Jonas Devlieghere745918ff2018-05-31 17:01:42 +0000481 printEscapedString(AttrVal, OS);
Honggyu Kim9eb6a102016-09-01 11:44:06 +0000482 OS << "\"";
483 }
Bill Wendlingc79cdff2013-02-01 01:04:27 +0000484 return Result;
Bill Wendling9c2eba92013-01-31 20:59:05 +0000485 }
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000486
487 llvm_unreachable("Unknown attribute");
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000488}
489
Bill Wendlingd509a662013-01-29 00:34:06 +0000490bool Attribute::operator<(Attribute A) const {
491 if (!pImpl && !A.pImpl) return false;
492 if (!pImpl) return true;
493 if (!A.pImpl) return false;
494 return *pImpl < *A.pImpl;
495}
496
Bill Wendlingd509a662013-01-29 00:34:06 +0000497//===----------------------------------------------------------------------===//
498// AttributeImpl Definition
499//===----------------------------------------------------------------------===//
500
Eric Christopher0eaa5412014-07-02 22:05:40 +0000501// Pin the vtables to this file.
Eugene Zelenkodeaf6952017-02-17 00:00:09 +0000502AttributeImpl::~AttributeImpl() = default;
503
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +0000504void EnumAttributeImpl::anchor() {}
Eugene Zelenkodeaf6952017-02-17 00:00:09 +0000505
Hal Finkele15442c2014-07-18 06:51:55 +0000506void IntAttributeImpl::anchor() {}
Eugene Zelenkodeaf6952017-02-17 00:00:09 +0000507
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +0000508void StringAttributeImpl::anchor() {}
Alexey Samsonov49109a22013-11-18 09:31:53 +0000509
Tim Northoverb7141202019-05-30 18:48:23 +0000510void TypeAttributeImpl::anchor() {}
511
Bill Wendlingd509a662013-01-29 00:34:06 +0000512bool AttributeImpl::hasAttribute(Attribute::AttrKind A) const {
Bill Wendling3f12ac22013-02-05 22:37:24 +0000513 if (isStringAttribute()) return false;
514 return getKindAsEnum() == A;
Bill Wendlingd509a662013-01-29 00:34:06 +0000515}
516
Bill Wendling3f12ac22013-02-05 22:37:24 +0000517bool AttributeImpl::hasAttribute(StringRef Kind) const {
518 if (!isStringAttribute()) return false;
519 return getKindAsString() == Kind;
Bill Wendlingd509a662013-01-29 00:34:06 +0000520}
521
Bill Wendling3f12ac22013-02-05 22:37:24 +0000522Attribute::AttrKind AttributeImpl::getKindAsEnum() const {
Tim Northoverb7141202019-05-30 18:48:23 +0000523 assert(isEnumAttribute() || isIntAttribute() || isTypeAttribute());
Benjamin Kramer741146b2013-07-11 12:13:16 +0000524 return static_cast<const EnumAttributeImpl *>(this)->getEnumKind();
Bill Wendlingd509a662013-01-29 00:34:06 +0000525}
526
Bill Wendling3f12ac22013-02-05 22:37:24 +0000527uint64_t AttributeImpl::getValueAsInt() const {
Hal Finkele15442c2014-07-18 06:51:55 +0000528 assert(isIntAttribute());
529 return static_cast<const IntAttributeImpl *>(this)->getValue();
Bill Wendlingd509a662013-01-29 00:34:06 +0000530}
531
Bill Wendling3f12ac22013-02-05 22:37:24 +0000532StringRef AttributeImpl::getKindAsString() const {
Benjamin Kramer741146b2013-07-11 12:13:16 +0000533 assert(isStringAttribute());
534 return static_cast<const StringAttributeImpl *>(this)->getStringKind();
Bill Wendlingd509a662013-01-29 00:34:06 +0000535}
536
Bill Wendling3f12ac22013-02-05 22:37:24 +0000537StringRef AttributeImpl::getValueAsString() const {
Benjamin Kramer741146b2013-07-11 12:13:16 +0000538 assert(isStringAttribute());
539 return static_cast<const StringAttributeImpl *>(this)->getStringValue();
Bill Wendlingd509a662013-01-29 00:34:06 +0000540}
541
Tim Northoverb7141202019-05-30 18:48:23 +0000542Type *AttributeImpl::getValueAsType() const {
543 assert(isTypeAttribute());
544 return static_cast<const TypeAttributeImpl *>(this)->getTypeValue();
545}
546
Bill Wendlingd509a662013-01-29 00:34:06 +0000547bool AttributeImpl::operator<(const AttributeImpl &AI) const {
Bill Wendlingc79cdff2013-02-01 01:04:27 +0000548 // This sorts the attributes with Attribute::AttrKinds coming first (sorted
549 // relative to their enum value) and then strings.
Bill Wendling26b95752013-02-15 05:25:26 +0000550 if (isEnumAttribute()) {
551 if (AI.isEnumAttribute()) return getKindAsEnum() < AI.getKindAsEnum();
Hal Finkele15442c2014-07-18 06:51:55 +0000552 if (AI.isIntAttribute()) return true;
Bill Wendling26b95752013-02-15 05:25:26 +0000553 if (AI.isStringAttribute()) return true;
Tim Northoverb7141202019-05-30 18:48:23 +0000554 if (AI.isTypeAttribute()) return true;
555 }
556
557 if (isTypeAttribute()) {
558 if (AI.isEnumAttribute()) return false;
559 if (AI.isTypeAttribute()) {
560 assert(getKindAsEnum() != AI.getKindAsEnum() &&
561 "Comparison of types would be unstable");
562 return getKindAsEnum() < AI.getKindAsEnum();
563 }
564 if (AI.isIntAttribute()) return true;
565 if (AI.isStringAttribute()) return true;
Bill Wendling26b95752013-02-15 05:25:26 +0000566 }
Bill Wendlingc79cdff2013-02-01 01:04:27 +0000567
Hal Finkele15442c2014-07-18 06:51:55 +0000568 if (isIntAttribute()) {
Bill Wendling26b95752013-02-15 05:25:26 +0000569 if (AI.isEnumAttribute()) return false;
Tim Northoverb7141202019-05-30 18:48:23 +0000570 if (AI.isTypeAttribute()) return false;
Reid Kleckner7de67612016-04-04 23:06:05 +0000571 if (AI.isIntAttribute()) {
572 if (getKindAsEnum() == AI.getKindAsEnum())
573 return getValueAsInt() < AI.getValueAsInt();
574 return getKindAsEnum() < AI.getKindAsEnum();
575 }
Bill Wendling26b95752013-02-15 05:25:26 +0000576 if (AI.isStringAttribute()) return true;
Bill Wendling3f12ac22013-02-05 22:37:24 +0000577 }
Bill Wendlingd509a662013-01-29 00:34:06 +0000578
Tim Northoverb7141202019-05-30 18:48:23 +0000579 assert(isStringAttribute());
Bill Wendling26b95752013-02-15 05:25:26 +0000580 if (AI.isEnumAttribute()) return false;
Tim Northoverb7141202019-05-30 18:48:23 +0000581 if (AI.isTypeAttribute()) return false;
Hal Finkele15442c2014-07-18 06:51:55 +0000582 if (AI.isIntAttribute()) return false;
Bill Wendling26b95752013-02-15 05:25:26 +0000583 if (getKindAsString() == AI.getKindAsString())
584 return getValueAsString() < AI.getValueAsString();
585 return getKindAsString() < AI.getKindAsString();
Bill Wendlingd509a662013-01-29 00:34:06 +0000586}
587
Bill Wendlingd509a662013-01-29 00:34:06 +0000588//===----------------------------------------------------------------------===//
Reid Klecknerc2cb5602017-04-12 00:38:00 +0000589// AttributeSet Definition
590//===----------------------------------------------------------------------===//
591
592AttributeSet AttributeSet::get(LLVMContext &C, const AttrBuilder &B) {
593 return AttributeSet(AttributeSetNode::get(C, B));
594}
595
596AttributeSet AttributeSet::get(LLVMContext &C, ArrayRef<Attribute> Attrs) {
597 return AttributeSet(AttributeSetNode::get(C, Attrs));
598}
599
Javed Absarf3d79042017-05-11 12:28:08 +0000600AttributeSet AttributeSet::addAttribute(LLVMContext &C,
Reid Kleckner8bf67fe2017-05-23 17:01:48 +0000601 Attribute::AttrKind Kind) const {
Javed Absarf3d79042017-05-11 12:28:08 +0000602 if (hasAttribute(Kind)) return *this;
603 AttrBuilder B;
604 B.addAttribute(Kind);
605 return addAttributes(C, AttributeSet::get(C, B));
606}
607
608AttributeSet AttributeSet::addAttribute(LLVMContext &C, StringRef Kind,
Reid Kleckner8bf67fe2017-05-23 17:01:48 +0000609 StringRef Value) const {
Javed Absarf3d79042017-05-11 12:28:08 +0000610 AttrBuilder B;
611 B.addAttribute(Kind, Value);
612 return addAttributes(C, AttributeSet::get(C, B));
613}
614
615AttributeSet AttributeSet::addAttributes(LLVMContext &C,
616 const AttributeSet AS) const {
617 if (!hasAttributes())
618 return AS;
619
620 if (!AS.hasAttributes())
621 return *this;
622
623 AttrBuilder B(AS);
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000624 for (const auto I : *this)
Javed Absarf3d79042017-05-11 12:28:08 +0000625 B.addAttribute(I);
626
627 return get(C, B);
628}
629
630AttributeSet AttributeSet::removeAttribute(LLVMContext &C,
631 Attribute::AttrKind Kind) const {
632 if (!hasAttribute(Kind)) return *this;
Daniel Neilson88dddb82018-01-17 19:15:21 +0000633 AttrBuilder B(*this);
634 B.removeAttribute(Kind);
635 return get(C, B);
Javed Absarf3d79042017-05-11 12:28:08 +0000636}
637
638AttributeSet AttributeSet::removeAttribute(LLVMContext &C,
639 StringRef Kind) const {
640 if (!hasAttribute(Kind)) return *this;
Daniel Neilson88dddb82018-01-17 19:15:21 +0000641 AttrBuilder B(*this);
642 B.removeAttribute(Kind);
643 return get(C, B);
Javed Absarf3d79042017-05-11 12:28:08 +0000644}
645
646AttributeSet AttributeSet::removeAttributes(LLVMContext &C,
647 const AttrBuilder &Attrs) const {
Javed Absarf3d79042017-05-11 12:28:08 +0000648 AttrBuilder B(*this);
649 B.remove(Attrs);
650 return get(C, B);
651}
652
Reid Klecknerc2cb5602017-04-12 00:38:00 +0000653unsigned AttributeSet::getNumAttributes() const {
654 return SetNode ? SetNode->getNumAttributes() : 0;
655}
656
657bool AttributeSet::hasAttribute(Attribute::AttrKind Kind) const {
Eugene Zelenkod761e2c2017-05-15 21:57:41 +0000658 return SetNode ? SetNode->hasAttribute(Kind) : false;
Reid Klecknerc2cb5602017-04-12 00:38:00 +0000659}
660
661bool AttributeSet::hasAttribute(StringRef Kind) const {
Eugene Zelenkod761e2c2017-05-15 21:57:41 +0000662 return SetNode ? SetNode->hasAttribute(Kind) : false;
Reid Klecknerc2cb5602017-04-12 00:38:00 +0000663}
664
665Attribute AttributeSet::getAttribute(Attribute::AttrKind Kind) const {
666 return SetNode ? SetNode->getAttribute(Kind) : Attribute();
667}
668
669Attribute AttributeSet::getAttribute(StringRef Kind) const {
670 return SetNode ? SetNode->getAttribute(Kind) : Attribute();
671}
672
673unsigned AttributeSet::getAlignment() const {
674 return SetNode ? SetNode->getAlignment() : 0;
675}
676
677unsigned AttributeSet::getStackAlignment() const {
678 return SetNode ? SetNode->getStackAlignment() : 0;
679}
680
681uint64_t AttributeSet::getDereferenceableBytes() const {
682 return SetNode ? SetNode->getDereferenceableBytes() : 0;
683}
684
685uint64_t AttributeSet::getDereferenceableOrNullBytes() const {
686 return SetNode ? SetNode->getDereferenceableOrNullBytes() : 0;
687}
688
Tim Northoverb7141202019-05-30 18:48:23 +0000689Type *AttributeSet::getByValType() const {
690 return SetNode ? SetNode->getByValType() : nullptr;
691}
692
Reid Klecknerc2cb5602017-04-12 00:38:00 +0000693std::pair<unsigned, Optional<unsigned>> AttributeSet::getAllocSizeArgs() const {
Konstantin Zhuravlyov6df95b72017-04-12 23:57:37 +0000694 return SetNode ? SetNode->getAllocSizeArgs()
695 : std::pair<unsigned, Optional<unsigned>>(0, 0);
Reid Klecknerc2cb5602017-04-12 00:38:00 +0000696}
697
698std::string AttributeSet::getAsString(bool InAttrGrp) const {
699 return SetNode ? SetNode->getAsString(InAttrGrp) : "";
700}
701
702AttributeSet::iterator AttributeSet::begin() const {
703 return SetNode ? SetNode->begin() : nullptr;
704}
705
706AttributeSet::iterator AttributeSet::end() const {
707 return SetNode ? SetNode->end() : nullptr;
708}
709
Aaron Ballman615eb472017-10-15 14:32:27 +0000710#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Javed Absarf3d79042017-05-11 12:28:08 +0000711LLVM_DUMP_METHOD void AttributeSet::dump() const {
712 dbgs() << "AS =\n";
713 dbgs() << " { ";
714 dbgs() << getAsString(true) << " }\n";
715}
716#endif
717
Reid Klecknerc2cb5602017-04-12 00:38:00 +0000718//===----------------------------------------------------------------------===//
Bill Wendlingd509a662013-01-29 00:34:06 +0000719// AttributeSetNode Definition
720//===----------------------------------------------------------------------===//
721
Reid Kleckner8ff77852017-04-10 23:46:08 +0000722AttributeSetNode::AttributeSetNode(ArrayRef<Attribute> Attrs)
Evgeniy Stepanov41c22b42019-07-13 00:29:03 +0000723 : NumAttrs(Attrs.size()) {
Reid Kleckner8ff77852017-04-10 23:46:08 +0000724 // There's memory after the node where we can store the entries in.
Fangrui Song75709322018-11-17 01:44:25 +0000725 llvm::copy(Attrs, getTrailingObjects<Attribute>());
Reid Kleckner8ff77852017-04-10 23:46:08 +0000726
Evgeniy Stepanov41c22b42019-07-13 00:29:03 +0000727 static_assert(Attribute::EndAttrKinds <=
728 sizeof(AvailableAttrs) * CHAR_BIT,
729 "Too many attributes");
730
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000731 for (const auto I : *this) {
Reid Kleckner8ff77852017-04-10 23:46:08 +0000732 if (!I.isStringAttribute()) {
Evgeniy Stepanov41c22b42019-07-13 00:29:03 +0000733 Attribute::AttrKind Kind = I.getKindAsEnum();
734 AvailableAttrs[Kind / 8] |= 1ULL << (Kind % 8);
Reid Kleckner8ff77852017-04-10 23:46:08 +0000735 }
736 }
737}
738
Bill Wendlingd509a662013-01-29 00:34:06 +0000739AttributeSetNode *AttributeSetNode::get(LLVMContext &C,
740 ArrayRef<Attribute> Attrs) {
741 if (Attrs.empty())
Craig Topperc6207612014-04-09 06:08:46 +0000742 return nullptr;
Bill Wendlingd509a662013-01-29 00:34:06 +0000743
744 // Otherwise, build a key to look up the existing attributes.
745 LLVMContextImpl *pImpl = C.pImpl;
746 FoldingSetNodeID ID;
747
748 SmallVector<Attribute, 8> SortedAttrs(Attrs.begin(), Attrs.end());
Fangrui Song0cac7262018-09-27 02:13:45 +0000749 llvm::sort(SortedAttrs);
Bill Wendlingd509a662013-01-29 00:34:06 +0000750
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000751 for (const auto Attr : SortedAttrs)
George Burgess IV500d3032015-12-16 05:21:02 +0000752 Attr.Profile(ID);
Bill Wendlingd509a662013-01-29 00:34:06 +0000753
754 void *InsertPoint;
755 AttributeSetNode *PA =
756 pImpl->AttrsSetNodes.FindNodeOrInsertPos(ID, InsertPoint);
757
758 // If we didn't find any existing attributes of the same shape then create a
759 // new one and insert it.
760 if (!PA) {
Benjamin Kramer741146b2013-07-11 12:13:16 +0000761 // Coallocate entries after the AttributeSetNode itself.
James Y Knightaa365b22015-08-05 22:57:34 +0000762 void *Mem = ::operator new(totalSizeToAlloc<Attribute>(SortedAttrs.size()));
Benjamin Kramer741146b2013-07-11 12:13:16 +0000763 PA = new (Mem) AttributeSetNode(SortedAttrs);
Bill Wendlingd509a662013-01-29 00:34:06 +0000764 pImpl->AttrsSetNodes.InsertNode(PA, InsertPoint);
765 }
766
Reid Klecknerb5180542017-03-21 16:57:19 +0000767 // Return the AttributeSetNode that we found or created.
Bill Wendlingd509a662013-01-29 00:34:06 +0000768 return PA;
769}
770
Reid Klecknereb9dd5b2017-04-10 23:31:05 +0000771AttributeSetNode *AttributeSetNode::get(LLVMContext &C, const AttrBuilder &B) {
772 // Add target-independent attributes.
773 SmallVector<Attribute, 8> Attrs;
774 for (Attribute::AttrKind Kind = Attribute::None;
775 Kind != Attribute::EndAttrKinds; Kind = Attribute::AttrKind(Kind + 1)) {
776 if (!B.contains(Kind))
777 continue;
778
779 Attribute Attr;
780 switch (Kind) {
Tim Northoverb7141202019-05-30 18:48:23 +0000781 case Attribute::ByVal:
782 Attr = Attribute::getWithByValType(C, B.getByValType());
783 break;
Reid Klecknereb9dd5b2017-04-10 23:31:05 +0000784 case Attribute::Alignment:
785 Attr = Attribute::getWithAlignment(C, B.getAlignment());
786 break;
787 case Attribute::StackAlignment:
788 Attr = Attribute::getWithStackAlignment(C, B.getStackAlignment());
789 break;
790 case Attribute::Dereferenceable:
791 Attr = Attribute::getWithDereferenceableBytes(
792 C, B.getDereferenceableBytes());
793 break;
794 case Attribute::DereferenceableOrNull:
795 Attr = Attribute::getWithDereferenceableOrNullBytes(
796 C, B.getDereferenceableOrNullBytes());
797 break;
798 case Attribute::AllocSize: {
799 auto A = B.getAllocSizeArgs();
800 Attr = Attribute::getWithAllocSizeArgs(C, A.first, A.second);
801 break;
802 }
803 default:
804 Attr = Attribute::get(C, Kind);
805 }
806 Attrs.push_back(Attr);
807 }
808
809 // Add target-dependent (string) attributes.
810 for (const auto &TDA : B.td_attrs())
811 Attrs.emplace_back(Attribute::get(C, TDA.first, TDA.second));
812
813 return get(C, Attrs);
814}
815
Bill Wendlingbce7b972013-02-13 08:42:21 +0000816bool AttributeSetNode::hasAttribute(StringRef Kind) const {
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000817 for (const auto I : *this)
Benjamin Krameraf28e7d2016-06-26 14:10:56 +0000818 if (I.hasAttribute(Kind))
Bill Wendlingbce7b972013-02-13 08:42:21 +0000819 return true;
820 return false;
821}
822
823Attribute AttributeSetNode::getAttribute(Attribute::AttrKind Kind) const {
Matthias Braun31eeb76f2016-01-29 22:25:13 +0000824 if (hasAttribute(Kind)) {
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000825 for (const auto I : *this)
Benjamin Krameraf28e7d2016-06-26 14:10:56 +0000826 if (I.hasAttribute(Kind))
827 return I;
Matthias Braun31eeb76f2016-01-29 22:25:13 +0000828 }
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000829 return {};
Bill Wendlingbce7b972013-02-13 08:42:21 +0000830}
831
832Attribute AttributeSetNode::getAttribute(StringRef Kind) const {
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000833 for (const auto I : *this)
Benjamin Krameraf28e7d2016-06-26 14:10:56 +0000834 if (I.hasAttribute(Kind))
835 return I;
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000836 return {};
Bill Wendlingbce7b972013-02-13 08:42:21 +0000837}
838
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000839unsigned AttributeSetNode::getAlignment() const {
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000840 for (const auto I : *this)
Benjamin Krameraf28e7d2016-06-26 14:10:56 +0000841 if (I.hasAttribute(Attribute::Alignment))
842 return I.getAlignment();
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000843 return 0;
844}
845
846unsigned AttributeSetNode::getStackAlignment() const {
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000847 for (const auto I : *this)
Benjamin Krameraf28e7d2016-06-26 14:10:56 +0000848 if (I.hasAttribute(Attribute::StackAlignment))
849 return I.getStackAlignment();
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000850 return 0;
851}
852
Tim Northoverb7141202019-05-30 18:48:23 +0000853Type *AttributeSetNode::getByValType() const {
854 for (const auto I : *this)
855 if (I.hasAttribute(Attribute::ByVal))
856 return I.getValueAsType();
857 return 0;
858}
859
Hal Finkelb0407ba2014-07-18 15:51:28 +0000860uint64_t AttributeSetNode::getDereferenceableBytes() const {
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000861 for (const auto I : *this)
Benjamin Krameraf28e7d2016-06-26 14:10:56 +0000862 if (I.hasAttribute(Attribute::Dereferenceable))
863 return I.getDereferenceableBytes();
Hal Finkelb0407ba2014-07-18 15:51:28 +0000864 return 0;
865}
866
Sanjoy Das06cf33f2015-05-06 17:41:54 +0000867uint64_t AttributeSetNode::getDereferenceableOrNullBytes() const {
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000868 for (const auto I : *this)
Benjamin Krameraf28e7d2016-06-26 14:10:56 +0000869 if (I.hasAttribute(Attribute::DereferenceableOrNull))
870 return I.getDereferenceableOrNullBytes();
Sanjoy Das06cf33f2015-05-06 17:41:54 +0000871 return 0;
872}
873
George Burgess IV278199f2016-04-12 01:05:35 +0000874std::pair<unsigned, Optional<unsigned>>
875AttributeSetNode::getAllocSizeArgs() const {
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000876 for (const auto I : *this)
Benjamin Krameraf28e7d2016-06-26 14:10:56 +0000877 if (I.hasAttribute(Attribute::AllocSize))
878 return I.getAllocSizeArgs();
George Burgess IV278199f2016-04-12 01:05:35 +0000879 return std::make_pair(0, 0);
880}
881
Rafael Espindolacbf5a7a2013-05-01 13:07:03 +0000882std::string AttributeSetNode::getAsString(bool InAttrGrp) const {
Benjamin Kramer0baf8f42013-04-19 11:43:21 +0000883 std::string Str;
Benjamin Kramer741146b2013-07-11 12:13:16 +0000884 for (iterator I = begin(), E = end(); I != E; ++I) {
885 if (I != begin())
Rafael Espindolacbf5a7a2013-05-01 13:07:03 +0000886 Str += ' ';
887 Str += I->getAsString(InAttrGrp);
Bill Wendlingf2955aa2013-01-29 03:20:31 +0000888 }
889 return Str;
890}
891
Bill Wendlingd509a662013-01-29 00:34:06 +0000892//===----------------------------------------------------------------------===//
Reid Klecknerb5180542017-03-21 16:57:19 +0000893// AttributeListImpl Definition
Bill Wendlingd509a662013-01-29 00:34:06 +0000894//===----------------------------------------------------------------------===//
895
Reid Kleckner51b2cd82017-10-11 01:40:38 +0000896/// Map from AttributeList index to the internal array index. Adding one happens
897/// to work, but it relies on unsigned integer wrapping. MSVC warns about
898/// unsigned wrapping in constexpr functions, so write out the conditional. LLVM
899/// folds it to add anyway.
Reid Kleckner8bf67fe2017-05-23 17:01:48 +0000900static constexpr unsigned attrIdxToArrayIdx(unsigned Index) {
Reid Kleckner51b2cd82017-10-11 01:40:38 +0000901 return Index == AttributeList::FunctionIndex ? 0 : Index + 1;
Reid Kleckner8bf67fe2017-05-23 17:01:48 +0000902}
903
904AttributeListImpl::AttributeListImpl(LLVMContext &C,
905 ArrayRef<AttributeSet> Sets)
Evgeniy Stepanov41c22b42019-07-13 00:29:03 +0000906 : Context(C), NumAttrSets(Sets.size()) {
Reid Kleckner8bf67fe2017-05-23 17:01:48 +0000907 assert(!Sets.empty() && "pointless AttributeListImpl");
Reid Klecknera82be602017-04-11 00:16:00 +0000908
909 // There's memory after the node where we can store the entries in.
Fangrui Song75709322018-11-17 01:44:25 +0000910 llvm::copy(Sets, getTrailingObjects<AttributeSet>());
Reid Klecknera82be602017-04-11 00:16:00 +0000911
912 // Initialize AvailableFunctionAttrs summary bitset.
Reid Klecknerec0fc032017-04-12 22:22:01 +0000913 static_assert(Attribute::EndAttrKinds <=
914 sizeof(AvailableFunctionAttrs) * CHAR_BIT,
915 "Too many attributes");
Reid Kleckner8bf67fe2017-05-23 17:01:48 +0000916 static_assert(attrIdxToArrayIdx(AttributeList::FunctionIndex) == 0U,
917 "function should be stored in slot 0");
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000918 for (const auto I : Sets[0]) {
Evgeniy Stepanov41c22b42019-07-13 00:29:03 +0000919 if (!I.isStringAttribute()) {
920 Attribute::AttrKind Kind = I.getKindAsEnum();
921 AvailableFunctionAttrs[Kind / 8] |= 1ULL << (Kind % 8);
922 }
Reid Klecknera82be602017-04-11 00:16:00 +0000923 }
924}
925
926void AttributeListImpl::Profile(FoldingSetNodeID &ID) const {
Reid Kleckner8bf67fe2017-05-23 17:01:48 +0000927 Profile(ID, makeArrayRef(begin(), end()));
Reid Klecknera82be602017-04-11 00:16:00 +0000928}
929
Reid Kleckner8bf67fe2017-05-23 17:01:48 +0000930void AttributeListImpl::Profile(FoldingSetNodeID &ID,
931 ArrayRef<AttributeSet> Sets) {
932 for (const auto &Set : Sets)
933 ID.AddPointer(Set.SetNode);
Reid Klecknera82be602017-04-11 00:16:00 +0000934}
935
Aaron Ballman615eb472017-10-15 14:32:27 +0000936#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Reid Klecknerb5180542017-03-21 16:57:19 +0000937LLVM_DUMP_METHOD void AttributeListImpl::dump() const {
938 AttributeList(const_cast<AttributeListImpl *>(this)).dump();
Peter Collingbourneabca2ec2013-08-02 22:34:30 +0000939}
Matthias Braun8c209aa2017-01-28 02:02:38 +0000940#endif
Peter Collingbourneabca2ec2013-08-02 22:34:30 +0000941
Bill Wendlingd509a662013-01-29 00:34:06 +0000942//===----------------------------------------------------------------------===//
Reid Klecknerb5180542017-03-21 16:57:19 +0000943// AttributeList Construction and Mutation Methods
Bill Wendlingd509a662013-01-29 00:34:06 +0000944//===----------------------------------------------------------------------===//
945
Reid Kleckner8bf67fe2017-05-23 17:01:48 +0000946AttributeList AttributeList::getImpl(LLVMContext &C,
947 ArrayRef<AttributeSet> AttrSets) {
948 assert(!AttrSets.empty() && "pointless AttributeListImpl");
Reid Klecknereb9dd5b2017-04-10 23:31:05 +0000949
Bill Wendlingd509a662013-01-29 00:34:06 +0000950 LLVMContextImpl *pImpl = C.pImpl;
951 FoldingSetNodeID ID;
Reid Kleckner8bf67fe2017-05-23 17:01:48 +0000952 AttributeListImpl::Profile(ID, AttrSets);
Bill Wendlingd509a662013-01-29 00:34:06 +0000953
954 void *InsertPoint;
Reid Klecknerb5180542017-03-21 16:57:19 +0000955 AttributeListImpl *PA =
956 pImpl->AttrsLists.FindNodeOrInsertPos(ID, InsertPoint);
Bill Wendlingd509a662013-01-29 00:34:06 +0000957
958 // If we didn't find any existing attributes of the same shape then
959 // create a new one and insert it.
960 if (!PA) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000961 // Coallocate entries after the AttributeListImpl itself.
James Y Knightaa365b22015-08-05 22:57:34 +0000962 void *Mem = ::operator new(
Reid Kleckner8bf67fe2017-05-23 17:01:48 +0000963 AttributeListImpl::totalSizeToAlloc<AttributeSet>(AttrSets.size()));
964 PA = new (Mem) AttributeListImpl(C, AttrSets);
Bill Wendlingd509a662013-01-29 00:34:06 +0000965 pImpl->AttrsLists.InsertNode(PA, InsertPoint);
966 }
967
968 // Return the AttributesList that we found or created.
Reid Klecknerb5180542017-03-21 16:57:19 +0000969 return AttributeList(PA);
Bill Wendlingd509a662013-01-29 00:34:06 +0000970}
971
Reid Klecknerb5180542017-03-21 16:57:19 +0000972AttributeList
973AttributeList::get(LLVMContext &C,
974 ArrayRef<std::pair<unsigned, Attribute>> Attrs) {
Bill Wendlingd509a662013-01-29 00:34:06 +0000975 // If there are no attributes then return a null AttributesList pointer.
976 if (Attrs.empty())
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000977 return {};
Bill Wendlingd509a662013-01-29 00:34:06 +0000978
Craig Toppere30b8ca2016-01-03 19:43:40 +0000979 assert(std::is_sorted(Attrs.begin(), Attrs.end(),
980 [](const std::pair<unsigned, Attribute> &LHS,
981 const std::pair<unsigned, Attribute> &RHS) {
982 return LHS.first < RHS.first;
983 }) && "Misordered Attributes list!");
Eugene Zelenko7fb5d412018-03-30 00:47:31 +0000984 assert(llvm::none_of(Attrs,
985 [](const std::pair<unsigned, Attribute> &Pair) {
986 return Pair.second.hasAttribute(Attribute::None);
987 }) &&
David Majnemer0a16c222016-08-11 21:15:00 +0000988 "Pointless attribute!");
Bill Wendlingd509a662013-01-29 00:34:06 +0000989
990 // Create a vector if (unsigned, AttributeSetNode*) pairs from the attributes
991 // list.
Reid Klecknerc2cb5602017-04-12 00:38:00 +0000992 SmallVector<std::pair<unsigned, AttributeSet>, 8> AttrPairVec;
Eugene Zelenkodeaf6952017-02-17 00:00:09 +0000993 for (ArrayRef<std::pair<unsigned, Attribute>>::iterator I = Attrs.begin(),
Bill Wendlingd509a662013-01-29 00:34:06 +0000994 E = Attrs.end(); I != E; ) {
995 unsigned Index = I->first;
996 SmallVector<Attribute, 4> AttrVec;
NAKAMURA Takumif05d2f22013-01-29 15:18:16 +0000997 while (I != E && I->first == Index) {
Bill Wendlingd509a662013-01-29 00:34:06 +0000998 AttrVec.push_back(I->second);
999 ++I;
1000 }
1001
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001002 AttrPairVec.emplace_back(Index, AttributeSet::get(C, AttrVec));
Bill Wendlingd509a662013-01-29 00:34:06 +00001003 }
1004
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001005 return get(C, AttrPairVec);
Bill Wendlingd509a662013-01-29 00:34:06 +00001006}
1007
Reid Klecknerb5180542017-03-21 16:57:19 +00001008AttributeList
1009AttributeList::get(LLVMContext &C,
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001010 ArrayRef<std::pair<unsigned, AttributeSet>> Attrs) {
Bill Wendlingd509a662013-01-29 00:34:06 +00001011 // If there are no attributes then return a null AttributesList pointer.
1012 if (Attrs.empty())
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001013 return {};
Bill Wendlingd509a662013-01-29 00:34:06 +00001014
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001015 assert(std::is_sorted(Attrs.begin(), Attrs.end(),
1016 [](const std::pair<unsigned, AttributeSet> &LHS,
1017 const std::pair<unsigned, AttributeSet> &RHS) {
1018 return LHS.first < RHS.first;
1019 }) &&
1020 "Misordered Attributes list!");
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001021 assert(llvm::none_of(Attrs,
1022 [](const std::pair<unsigned, AttributeSet> &Pair) {
1023 return !Pair.second.hasAttributes();
1024 }) &&
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001025 "Pointless attribute!");
1026
1027 unsigned MaxIndex = Attrs.back().first;
Craig Topperf8642502018-04-16 17:05:01 +00001028 // If the MaxIndex is FunctionIndex and there are other indices in front
1029 // of it, we need to use the largest of those to get the right size.
1030 if (MaxIndex == FunctionIndex && Attrs.size() > 1)
1031 MaxIndex = Attrs[Attrs.size() - 2].first;
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001032
1033 SmallVector<AttributeSet, 4> AttrVec(attrIdxToArrayIdx(MaxIndex) + 1);
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001034 for (const auto Pair : Attrs)
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001035 AttrVec[attrIdxToArrayIdx(Pair.first)] = Pair.second;
1036
1037 return getImpl(C, AttrVec);
Bill Wendlingd509a662013-01-29 00:34:06 +00001038}
1039
Reid Kleckner7f720332017-04-13 00:58:09 +00001040AttributeList AttributeList::get(LLVMContext &C, AttributeSet FnAttrs,
1041 AttributeSet RetAttrs,
1042 ArrayRef<AttributeSet> ArgAttrs) {
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001043 // Scan from the end to find the last argument with attributes. Most
1044 // arguments don't have attributes, so it's nice if we can have fewer unique
1045 // AttributeListImpls by dropping empty attribute sets at the end of the list.
1046 unsigned NumSets = 0;
1047 for (size_t I = ArgAttrs.size(); I != 0; --I) {
1048 if (ArgAttrs[I - 1].hasAttributes()) {
1049 NumSets = I + 2;
1050 break;
1051 }
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00001052 }
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001053 if (NumSets == 0) {
1054 // Check function and return attributes if we didn't have argument
1055 // attributes.
1056 if (RetAttrs.hasAttributes())
1057 NumSets = 2;
1058 else if (FnAttrs.hasAttributes())
1059 NumSets = 1;
1060 }
1061
1062 // If all attribute sets were empty, we can use the empty attribute list.
1063 if (NumSets == 0)
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001064 return {};
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001065
1066 SmallVector<AttributeSet, 8> AttrSets;
1067 AttrSets.reserve(NumSets);
1068 // If we have any attributes, we always have function attributes.
1069 AttrSets.push_back(FnAttrs);
1070 if (NumSets > 1)
1071 AttrSets.push_back(RetAttrs);
1072 if (NumSets > 2) {
1073 // Drop the empty argument attribute sets at the end.
1074 ArgAttrs = ArgAttrs.take_front(NumSets - 2);
1075 AttrSets.insert(AttrSets.end(), ArgAttrs.begin(), ArgAttrs.end());
1076 }
1077
1078 return getImpl(C, AttrSets);
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00001079}
1080
Reid Klecknerb5180542017-03-21 16:57:19 +00001081AttributeList AttributeList::get(LLVMContext &C, unsigned Index,
1082 const AttrBuilder &B) {
Bill Wendlingd509a662013-01-29 00:34:06 +00001083 if (!B.hasAttributes())
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001084 return {};
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001085 Index = attrIdxToArrayIdx(Index);
1086 SmallVector<AttributeSet, 8> AttrSets(Index + 1);
1087 AttrSets[Index] = AttributeSet::get(C, B);
1088 return getImpl(C, AttrSets);
Bill Wendlingd509a662013-01-29 00:34:06 +00001089}
1090
Reid Klecknerb5180542017-03-21 16:57:19 +00001091AttributeList AttributeList::get(LLVMContext &C, unsigned Index,
1092 ArrayRef<Attribute::AttrKind> Kinds) {
Bill Wendlingd509a662013-01-29 00:34:06 +00001093 SmallVector<std::pair<unsigned, Attribute>, 8> Attrs;
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001094 for (const auto K : Kinds)
David Majnemer0a16c222016-08-11 21:15:00 +00001095 Attrs.emplace_back(Index, Attribute::get(C, K));
Bill Wendlingd509a662013-01-29 00:34:06 +00001096 return get(C, Attrs);
1097}
1098
Reid Klecknerb5180542017-03-21 16:57:19 +00001099AttributeList AttributeList::get(LLVMContext &C, unsigned Index,
1100 ArrayRef<StringRef> Kinds) {
Amaury Sechet6100adf2016-06-15 17:50:39 +00001101 SmallVector<std::pair<unsigned, Attribute>, 8> Attrs;
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001102 for (const auto K : Kinds)
David Majnemer0a16c222016-08-11 21:15:00 +00001103 Attrs.emplace_back(Index, Attribute::get(C, K));
Amaury Sechet6100adf2016-06-15 17:50:39 +00001104 return get(C, Attrs);
1105}
1106
Reid Klecknerb5180542017-03-21 16:57:19 +00001107AttributeList AttributeList::get(LLVMContext &C,
1108 ArrayRef<AttributeList> Attrs) {
1109 if (Attrs.empty())
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001110 return {};
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001111 if (Attrs.size() == 1)
1112 return Attrs[0];
Bill Wendlingd509a662013-01-29 00:34:06 +00001113
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001114 unsigned MaxSize = 0;
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001115 for (const auto List : Attrs)
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001116 MaxSize = std::max(MaxSize, List.getNumAttrSets());
1117
Reid Kleckner1d7cbdf2017-05-31 14:24:06 +00001118 // If every list was empty, there is no point in merging the lists.
1119 if (MaxSize == 0)
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001120 return {};
Reid Kleckner1d7cbdf2017-05-31 14:24:06 +00001121
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001122 SmallVector<AttributeSet, 8> NewAttrSets(MaxSize);
1123 for (unsigned I = 0; I < MaxSize; ++I) {
1124 AttrBuilder CurBuilder;
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001125 for (const auto List : Attrs)
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001126 CurBuilder.merge(List.getAttributes(I - 1));
1127 NewAttrSets[I] = AttributeSet::get(C, CurBuilder);
Bill Wendlingd509a662013-01-29 00:34:06 +00001128 }
1129
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001130 return getImpl(C, NewAttrSets);
Bill Wendlingd509a662013-01-29 00:34:06 +00001131}
1132
Reid Klecknerb5180542017-03-21 16:57:19 +00001133AttributeList AttributeList::addAttribute(LLVMContext &C, unsigned Index,
1134 Attribute::AttrKind Kind) const {
Amaury Sechet392638d2016-06-14 20:27:35 +00001135 if (hasAttribute(Index, Kind)) return *this;
Reid Kleckneree4930b2017-05-02 22:07:37 +00001136 AttrBuilder B;
1137 B.addAttribute(Kind);
1138 return addAttributes(C, Index, B);
Reed Kotler795c7b42013-03-13 20:20:08 +00001139}
1140
Reid Klecknerb5180542017-03-21 16:57:19 +00001141AttributeList AttributeList::addAttribute(LLVMContext &C, unsigned Index,
1142 StringRef Kind,
1143 StringRef Value) const {
Eugene Zelenkodeaf6952017-02-17 00:00:09 +00001144 AttrBuilder B;
Bill Wendling3b2f6102013-07-25 18:34:24 +00001145 B.addAttribute(Kind, Value);
Reid Kleckneree4930b2017-05-02 22:07:37 +00001146 return addAttributes(C, Index, B);
Bill Wendling3b2f6102013-07-25 18:34:24 +00001147}
1148
Reid Kleckner5fbdd172017-05-31 19:23:09 +00001149AttributeList AttributeList::addAttribute(LLVMContext &C, unsigned Index,
Reid Klecknerb5180542017-03-21 16:57:19 +00001150 Attribute A) const {
Reid Kleckner5fbdd172017-05-31 19:23:09 +00001151 AttrBuilder B;
1152 B.addAttribute(A);
1153 return addAttributes(C, Index, B);
Akira Hatanaka237916b2015-12-02 06:58:49 +00001154}
1155
Reid Klecknerb5180542017-03-21 16:57:19 +00001156AttributeList AttributeList::addAttributes(LLVMContext &C, unsigned Index,
Reid Kleckner61906252017-04-19 01:51:13 +00001157 const AttrBuilder &B) const {
1158 if (!B.hasAttributes())
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00001159 return *this;
1160
Reid Klecknerfe64c012017-04-18 22:10:18 +00001161 if (!pImpl)
Reid Kleckner61906252017-04-19 01:51:13 +00001162 return AttributeList::get(C, {{Index, AttributeSet::get(C, B)}});
Reid Klecknerfe64c012017-04-18 22:10:18 +00001163
Bill Wendlingd509a662013-01-29 00:34:06 +00001164#ifndef NDEBUG
1165 // FIXME it is not obvious how this should work for alignment. For now, say
1166 // we can't change a known alignment.
Reid Klecknerbf6b3b152017-05-19 22:23:47 +00001167 unsigned OldAlign = getAttributes(Index).getAlignment();
Reid Kleckner61906252017-04-19 01:51:13 +00001168 unsigned NewAlign = B.getAlignment();
Bill Wendlingd509a662013-01-29 00:34:06 +00001169 assert((!OldAlign || !NewAlign || OldAlign == NewAlign) &&
1170 "Attempt to change alignment!");
1171#endif
1172
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001173 Index = attrIdxToArrayIdx(Index);
1174 SmallVector<AttributeSet, 4> AttrSets(this->begin(), this->end());
1175 if (Index >= AttrSets.size())
1176 AttrSets.resize(Index + 1);
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00001177
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001178 AttrBuilder Merged(AttrSets[Index]);
1179 Merged.merge(B);
1180 AttrSets[Index] = AttributeSet::get(C, Merged);
Bill Wendlingd509a662013-01-29 00:34:06 +00001181
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001182 return getImpl(C, AttrSets);
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00001183}
1184
Reid Kleckner5fbdd172017-05-31 19:23:09 +00001185AttributeList AttributeList::addParamAttribute(LLVMContext &C,
1186 ArrayRef<unsigned> ArgNos,
1187 Attribute A) const {
1188 assert(std::is_sorted(ArgNos.begin(), ArgNos.end()));
1189
1190 SmallVector<AttributeSet, 4> AttrSets(this->begin(), this->end());
1191 unsigned MaxIndex = attrIdxToArrayIdx(ArgNos.back() + FirstArgIndex);
1192 if (MaxIndex >= AttrSets.size())
1193 AttrSets.resize(MaxIndex + 1);
1194
1195 for (unsigned ArgNo : ArgNos) {
1196 unsigned Index = attrIdxToArrayIdx(ArgNo + FirstArgIndex);
1197 AttrBuilder B(AttrSets[Index]);
1198 B.addAttribute(A);
1199 AttrSets[Index] = AttributeSet::get(C, B);
1200 }
1201
1202 return getImpl(C, AttrSets);
1203}
1204
Reid Klecknerb5180542017-03-21 16:57:19 +00001205AttributeList AttributeList::removeAttribute(LLVMContext &C, unsigned Index,
1206 Attribute::AttrKind Kind) const {
Amaury Sechet392638d2016-06-14 20:27:35 +00001207 if (!hasAttribute(Index, Kind)) return *this;
Daniel Neilson88dddb82018-01-17 19:15:21 +00001208
1209 Index = attrIdxToArrayIdx(Index);
1210 SmallVector<AttributeSet, 4> AttrSets(this->begin(), this->end());
1211 assert(Index < AttrSets.size());
1212
1213 AttrSets[Index] = AttrSets[Index].removeAttribute(C, Kind);
1214
1215 return getImpl(C, AttrSets);
Bill Wendlingd509a662013-01-29 00:34:06 +00001216}
1217
Reid Klecknerb5180542017-03-21 16:57:19 +00001218AttributeList AttributeList::removeAttribute(LLVMContext &C, unsigned Index,
1219 StringRef Kind) const {
Amaury Sechet6100adf2016-06-15 17:50:39 +00001220 if (!hasAttribute(Index, Kind)) return *this;
Daniel Neilson88dddb82018-01-17 19:15:21 +00001221
1222 Index = attrIdxToArrayIdx(Index);
1223 SmallVector<AttributeSet, 4> AttrSets(this->begin(), this->end());
1224 assert(Index < AttrSets.size());
1225
1226 AttrSets[Index] = AttrSets[Index].removeAttribute(C, Kind);
1227
1228 return getImpl(C, AttrSets);
Bill Wendlingd509a662013-01-29 00:34:06 +00001229}
1230
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001231AttributeList
1232AttributeList::removeAttributes(LLVMContext &C, unsigned Index,
1233 const AttrBuilder &AttrsToRemove) const {
Reid Klecknerb5180542017-03-21 16:57:19 +00001234 if (!pImpl)
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001235 return {};
Pete Cooperd2a44612015-05-06 23:19:43 +00001236
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001237 Index = attrIdxToArrayIdx(Index);
1238 SmallVector<AttributeSet, 4> AttrSets(this->begin(), this->end());
1239 if (Index >= AttrSets.size())
1240 AttrSets.resize(Index + 1);
Pete Cooperd2a44612015-05-06 23:19:43 +00001241
Daniel Neilson88dddb82018-01-17 19:15:21 +00001242 AttrSets[Index] = AttrSets[Index].removeAttributes(C, AttrsToRemove);
Pete Cooperd2a44612015-05-06 23:19:43 +00001243
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001244 return getImpl(C, AttrSets);
Pete Cooperd2a44612015-05-06 23:19:43 +00001245}
1246
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00001247AttributeList AttributeList::removeAttributes(LLVMContext &C,
1248 unsigned WithoutIndex) const {
1249 if (!pImpl)
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001250 return {};
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001251 WithoutIndex = attrIdxToArrayIdx(WithoutIndex);
1252 if (WithoutIndex >= getNumAttrSets())
1253 return *this;
1254 SmallVector<AttributeSet, 4> AttrSets(this->begin(), this->end());
1255 AttrSets[WithoutIndex] = AttributeSet();
1256 return getImpl(C, AttrSets);
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00001257}
1258
Reid Klecknerb5180542017-03-21 16:57:19 +00001259AttributeList AttributeList::addDereferenceableAttr(LLVMContext &C,
1260 unsigned Index,
1261 uint64_t Bytes) const {
Eugene Zelenkodeaf6952017-02-17 00:00:09 +00001262 AttrBuilder B;
Ramkumar Ramachandra8fcb4982015-02-14 19:37:54 +00001263 B.addDereferenceableAttr(Bytes);
Reid Kleckneree4930b2017-05-02 22:07:37 +00001264 return addAttributes(C, Index, B);
Ramkumar Ramachandra8fcb4982015-02-14 19:37:54 +00001265}
1266
Reid Klecknerb5180542017-03-21 16:57:19 +00001267AttributeList
1268AttributeList::addDereferenceableOrNullAttr(LLVMContext &C, unsigned Index,
1269 uint64_t Bytes) const {
Eugene Zelenkodeaf6952017-02-17 00:00:09 +00001270 AttrBuilder B;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001271 B.addDereferenceableOrNullAttr(Bytes);
Reid Kleckneree4930b2017-05-02 22:07:37 +00001272 return addAttributes(C, Index, B);
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001273}
1274
Reid Klecknerb5180542017-03-21 16:57:19 +00001275AttributeList
1276AttributeList::addAllocSizeAttr(LLVMContext &C, unsigned Index,
1277 unsigned ElemSizeArg,
1278 const Optional<unsigned> &NumElemsArg) {
Eugene Zelenkodeaf6952017-02-17 00:00:09 +00001279 AttrBuilder B;
George Burgess IV278199f2016-04-12 01:05:35 +00001280 B.addAllocSizeAttr(ElemSizeArg, NumElemsArg);
Reid Kleckneree4930b2017-05-02 22:07:37 +00001281 return addAttributes(C, Index, B);
George Burgess IV278199f2016-04-12 01:05:35 +00001282}
1283
Bill Wendlingd509a662013-01-29 00:34:06 +00001284//===----------------------------------------------------------------------===//
Reid Klecknerb5180542017-03-21 16:57:19 +00001285// AttributeList Accessor Methods
Bill Wendlingd509a662013-01-29 00:34:06 +00001286//===----------------------------------------------------------------------===//
1287
Reid Klecknerb5180542017-03-21 16:57:19 +00001288LLVMContext &AttributeList::getContext() const { return pImpl->getContext(); }
1289
Reid Klecknerf021fab2017-04-13 23:12:13 +00001290AttributeSet AttributeList::getParamAttributes(unsigned ArgNo) const {
Reid Klecknera0b45f42017-05-03 18:17:31 +00001291 return getAttributes(ArgNo + FirstArgIndex);
Bill Wendling5d020a32013-02-10 05:00:40 +00001292}
1293
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001294AttributeSet AttributeList::getRetAttributes() const {
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00001295 return getAttributes(ReturnIndex);
Bill Wendlingd509a662013-01-29 00:34:06 +00001296}
1297
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001298AttributeSet AttributeList::getFnAttributes() const {
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00001299 return getAttributes(FunctionIndex);
Bill Wendlingd509a662013-01-29 00:34:06 +00001300}
1301
Reid Klecknerb5180542017-03-21 16:57:19 +00001302bool AttributeList::hasAttribute(unsigned Index,
1303 Attribute::AttrKind Kind) const {
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001304 return getAttributes(Index).hasAttribute(Kind);
Bill Wendlingd509a662013-01-29 00:34:06 +00001305}
1306
Reid Klecknerb5180542017-03-21 16:57:19 +00001307bool AttributeList::hasAttribute(unsigned Index, StringRef Kind) const {
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001308 return getAttributes(Index).hasAttribute(Kind);
Bill Wendlingbce7b972013-02-13 08:42:21 +00001309}
1310
Reid Klecknerb5180542017-03-21 16:57:19 +00001311bool AttributeList::hasAttributes(unsigned Index) const {
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001312 return getAttributes(Index).hasAttributes();
Bill Wendlingd509a662013-01-29 00:34:06 +00001313}
1314
Reid Klecknerb5180542017-03-21 16:57:19 +00001315bool AttributeList::hasFnAttribute(Attribute::AttrKind Kind) const {
Matthias Braun33282812016-01-29 22:25:19 +00001316 return pImpl && pImpl->hasFnAttribute(Kind);
1317}
1318
Reid Klecknerb5180542017-03-21 16:57:19 +00001319bool AttributeList::hasFnAttribute(StringRef Kind) const {
1320 return hasAttribute(AttributeList::FunctionIndex, Kind);
Amaury Sechet5f04d812016-09-09 04:50:38 +00001321}
1322
Reid Klecknerf021fab2017-04-13 23:12:13 +00001323bool AttributeList::hasParamAttribute(unsigned ArgNo,
1324 Attribute::AttrKind Kind) const {
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001325 return hasAttribute(ArgNo + FirstArgIndex, Kind);
Reid Klecknerf021fab2017-04-13 23:12:13 +00001326}
1327
Reid Klecknerb5180542017-03-21 16:57:19 +00001328bool AttributeList::hasAttrSomewhere(Attribute::AttrKind Attr,
1329 unsigned *Index) const {
Craig Topperc6207612014-04-09 06:08:46 +00001330 if (!pImpl) return false;
Bill Wendlingd509a662013-01-29 00:34:06 +00001331
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001332 for (unsigned I = index_begin(), E = index_end(); I != E; ++I) {
1333 if (hasAttribute(I, Attr)) {
1334 if (Index)
1335 *Index = I;
1336 return true;
1337 }
1338 }
Bill Wendlingd509a662013-01-29 00:34:06 +00001339
1340 return false;
1341}
1342
Reid Klecknerb5180542017-03-21 16:57:19 +00001343Attribute AttributeList::getAttribute(unsigned Index,
1344 Attribute::AttrKind Kind) const {
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001345 return getAttributes(Index).getAttribute(Kind);
Bill Wendlingbce7b972013-02-13 08:42:21 +00001346}
1347
Reid Klecknerb5180542017-03-21 16:57:19 +00001348Attribute AttributeList::getAttribute(unsigned Index, StringRef Kind) const {
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001349 return getAttributes(Index).getAttribute(Kind);
Bill Wendlingbce7b972013-02-13 08:42:21 +00001350}
1351
Reid Kleckner859f8b52017-04-28 20:34:27 +00001352unsigned AttributeList::getRetAlignment() const {
1353 return getAttributes(ReturnIndex).getAlignment();
1354}
1355
1356unsigned AttributeList::getParamAlignment(unsigned ArgNo) const {
Reid Klecknera0b45f42017-05-03 18:17:31 +00001357 return getAttributes(ArgNo + FirstArgIndex).getAlignment();
Bill Wendlingd509a662013-01-29 00:34:06 +00001358}
1359
Tim Northoverb7141202019-05-30 18:48:23 +00001360Type *AttributeList::getParamByValType(unsigned Index) const {
1361 return getAttributes(Index+FirstArgIndex).getByValType();
1362}
1363
1364
Reid Klecknerb5180542017-03-21 16:57:19 +00001365unsigned AttributeList::getStackAlignment(unsigned Index) const {
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001366 return getAttributes(Index).getStackAlignment();
Bill Wendlingd509a662013-01-29 00:34:06 +00001367}
1368
Reid Klecknerb5180542017-03-21 16:57:19 +00001369uint64_t AttributeList::getDereferenceableBytes(unsigned Index) const {
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001370 return getAttributes(Index).getDereferenceableBytes();
Hal Finkelb0407ba2014-07-18 15:51:28 +00001371}
1372
Reid Klecknerb5180542017-03-21 16:57:19 +00001373uint64_t AttributeList::getDereferenceableOrNullBytes(unsigned Index) const {
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001374 return getAttributes(Index).getDereferenceableOrNullBytes();
Sanjoy Das06cf33f2015-05-06 17:41:54 +00001375}
1376
George Burgess IV278199f2016-04-12 01:05:35 +00001377std::pair<unsigned, Optional<unsigned>>
Reid Klecknerb5180542017-03-21 16:57:19 +00001378AttributeList::getAllocSizeArgs(unsigned Index) const {
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001379 return getAttributes(Index).getAllocSizeArgs();
George Burgess IV278199f2016-04-12 01:05:35 +00001380}
1381
Reid Klecknerb5180542017-03-21 16:57:19 +00001382std::string AttributeList::getAsString(unsigned Index, bool InAttrGrp) const {
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001383 return getAttributes(Index).getAsString(InAttrGrp);
Bill Wendlingd509a662013-01-29 00:34:06 +00001384}
1385
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001386AttributeSet AttributeList::getAttributes(unsigned Index) const {
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001387 Index = attrIdxToArrayIdx(Index);
1388 if (!pImpl || Index >= getNumAttrSets())
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001389 return {};
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001390 return pImpl->begin()[Index];
Bill Wendlingd509a662013-01-29 00:34:06 +00001391}
1392
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001393AttributeList::iterator AttributeList::begin() const {
1394 return pImpl ? pImpl->begin() : nullptr;
Bill Wendlinga9174862013-01-31 23:53:05 +00001395}
1396
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001397AttributeList::iterator AttributeList::end() const {
1398 return pImpl ? pImpl->end() : nullptr;
Bill Wendlinga9174862013-01-31 23:53:05 +00001399}
1400
Bill Wendlingd509a662013-01-29 00:34:06 +00001401//===----------------------------------------------------------------------===//
Reid Klecknerb5180542017-03-21 16:57:19 +00001402// AttributeList Introspection Methods
Bill Wendlingd509a662013-01-29 00:34:06 +00001403//===----------------------------------------------------------------------===//
1404
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001405unsigned AttributeList::getNumAttrSets() const {
1406 return pImpl ? pImpl->NumAttrSets : 0;
Bill Wendlingd509a662013-01-29 00:34:06 +00001407}
1408
Aaron Ballman615eb472017-10-15 14:32:27 +00001409#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Reid Klecknerb5180542017-03-21 16:57:19 +00001410LLVM_DUMP_METHOD void AttributeList::dump() const {
Bill Wendlingd509a662013-01-29 00:34:06 +00001411 dbgs() << "PAL[\n";
1412
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001413 for (unsigned i = index_begin(), e = index_end(); i != e; ++i) {
1414 if (getAttributes(i).hasAttributes())
1415 dbgs() << " { " << i << " => " << getAsString(i) << " }\n";
Bill Wendlingd509a662013-01-29 00:34:06 +00001416 }
1417
1418 dbgs() << "]\n";
1419}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001420#endif
Bill Wendlingd509a662013-01-29 00:34:06 +00001421
Bill Wendlingabf3feb2012-10-05 06:44:41 +00001422//===----------------------------------------------------------------------===//
Bill Wendlingcd330342013-01-04 23:27:34 +00001423// AttrBuilder Method Implementations
Bill Wendlingabf3feb2012-10-05 06:44:41 +00001424//===----------------------------------------------------------------------===//
1425
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001426// FIXME: Remove this ctor, use AttributeSet.
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001427AttrBuilder::AttrBuilder(AttributeList AL, unsigned Index) {
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001428 AttributeSet AS = AL.getAttributes(Index);
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001429 for (const auto &A : AS)
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001430 addAttribute(A);
Bill Wendling096f5442013-01-07 08:24:35 +00001431}
1432
Reid Klecknerc2cb5602017-04-12 00:38:00 +00001433AttrBuilder::AttrBuilder(AttributeSet AS) {
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001434 for (const auto &A : AS)
Reid Kleckner8bf67fe2017-05-23 17:01:48 +00001435 addAttribute(A);
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00001436}
1437
Bill Wendlingcd330342013-01-04 23:27:34 +00001438void AttrBuilder::clear() {
Benjamin Kramereaf706b2013-02-18 12:09:51 +00001439 Attrs.reset();
Sanjoy Das88d0fde2015-09-03 22:27:42 +00001440 TargetDepAttrs.clear();
Guillaume Chateleta7b6a7c2019-08-06 09:16:33 +00001441 Alignment.reset();
1442 StackAlignment.reset();
1443 DerefBytes = DerefOrNullBytes = 0;
George Burgess IV278199f2016-04-12 01:05:35 +00001444 AllocSizeArgs = 0;
Tim Northoverb7141202019-05-30 18:48:23 +00001445 ByValType = nullptr;
Bill Wendlingcd330342013-01-04 23:27:34 +00001446}
1447
1448AttrBuilder &AttrBuilder::addAttribute(Attribute::AttrKind Val) {
Benjamin Kramereaf706b2013-02-18 12:09:51 +00001449 assert((unsigned)Val < Attribute::EndAttrKinds && "Attribute out of range!");
Bill Wendling1c7cc8a2013-01-31 23:16:25 +00001450 assert(Val != Attribute::Alignment && Val != Attribute::StackAlignment &&
George Burgess IV278199f2016-04-12 01:05:35 +00001451 Val != Attribute::Dereferenceable && Val != Attribute::AllocSize &&
Hal Finkelb0407ba2014-07-18 15:51:28 +00001452 "Adding integer attribute without adding a value!");
Benjamin Kramereaf706b2013-02-18 12:09:51 +00001453 Attrs[Val] = true;
Bill Wendling7c04e042012-10-09 19:01:18 +00001454 return *this;
Bill Wendlingabf3feb2012-10-05 06:44:41 +00001455}
1456
Bill Wendling23804da2013-01-31 23:38:01 +00001457AttrBuilder &AttrBuilder::addAttribute(Attribute Attr) {
Bill Wendling0a437302013-02-10 10:13:23 +00001458 if (Attr.isStringAttribute()) {
1459 addAttribute(Attr.getKindAsString(), Attr.getValueAsString());
1460 return *this;
1461 }
1462
Bill Wendling3f12ac22013-02-05 22:37:24 +00001463 Attribute::AttrKind Kind = Attr.getKindAsEnum();
Benjamin Kramereaf706b2013-02-18 12:09:51 +00001464 Attrs[Kind] = true;
Bill Wendling1aa9d9e2013-01-28 05:23:28 +00001465
Bill Wendling3f12ac22013-02-05 22:37:24 +00001466 if (Kind == Attribute::Alignment)
Guillaume Chateleta7b6a7c2019-08-06 09:16:33 +00001467 Alignment = MaybeAlign(Attr.getAlignment());
Bill Wendling3f12ac22013-02-05 22:37:24 +00001468 else if (Kind == Attribute::StackAlignment)
Guillaume Chateleta7b6a7c2019-08-06 09:16:33 +00001469 StackAlignment = MaybeAlign(Attr.getStackAlignment());
Tim Northoverb7141202019-05-30 18:48:23 +00001470 else if (Kind == Attribute::ByVal)
1471 ByValType = Attr.getValueAsType();
Hal Finkelb0407ba2014-07-18 15:51:28 +00001472 else if (Kind == Attribute::Dereferenceable)
1473 DerefBytes = Attr.getDereferenceableBytes();
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001474 else if (Kind == Attribute::DereferenceableOrNull)
1475 DerefOrNullBytes = Attr.getDereferenceableOrNullBytes();
George Burgess IV278199f2016-04-12 01:05:35 +00001476 else if (Kind == Attribute::AllocSize)
1477 AllocSizeArgs = Attr.getValueAsInt();
Bill Wendling1aa9d9e2013-01-28 05:23:28 +00001478 return *this;
1479}
1480
Bill Wendlingb9c5b1a2013-02-05 08:09:32 +00001481AttrBuilder &AttrBuilder::addAttribute(StringRef A, StringRef V) {
1482 TargetDepAttrs[A] = V;
1483 return *this;
1484}
1485
Bill Wendling23804da2013-01-31 23:38:01 +00001486AttrBuilder &AttrBuilder::removeAttribute(Attribute::AttrKind Val) {
Benjamin Kramereaf706b2013-02-18 12:09:51 +00001487 assert((unsigned)Val < Attribute::EndAttrKinds && "Attribute out of range!");
1488 Attrs[Val] = false;
Bill Wendling23804da2013-01-31 23:38:01 +00001489
1490 if (Val == Attribute::Alignment)
Guillaume Chateleta7b6a7c2019-08-06 09:16:33 +00001491 Alignment.reset();
Bill Wendling23804da2013-01-31 23:38:01 +00001492 else if (Val == Attribute::StackAlignment)
Guillaume Chateleta7b6a7c2019-08-06 09:16:33 +00001493 StackAlignment.reset();
Tim Northoverb7141202019-05-30 18:48:23 +00001494 else if (Val == Attribute::ByVal)
1495 ByValType = nullptr;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001496 else if (Val == Attribute::Dereferenceable)
1497 DerefBytes = 0;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001498 else if (Val == Attribute::DereferenceableOrNull)
1499 DerefOrNullBytes = 0;
George Burgess IV278199f2016-04-12 01:05:35 +00001500 else if (Val == Attribute::AllocSize)
1501 AllocSizeArgs = 0;
Bill Wendling23804da2013-01-31 23:38:01 +00001502
1503 return *this;
1504}
1505
Reid Klecknerb5180542017-03-21 16:57:19 +00001506AttrBuilder &AttrBuilder::removeAttributes(AttributeList A, uint64_t Index) {
Reid Kleckner6652a522017-04-28 18:37:16 +00001507 remove(A.getAttributes(Index));
Bill Wendling1aa9d9e2013-01-28 05:23:28 +00001508 return *this;
1509}
1510
Bill Wendlingb9c5b1a2013-02-05 08:09:32 +00001511AttrBuilder &AttrBuilder::removeAttribute(StringRef A) {
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001512 auto I = TargetDepAttrs.find(A);
Bill Wendlingb9c5b1a2013-02-05 08:09:32 +00001513 if (I != TargetDepAttrs.end())
1514 TargetDepAttrs.erase(I);
1515 return *this;
1516}
1517
George Burgess IV278199f2016-04-12 01:05:35 +00001518std::pair<unsigned, Optional<unsigned>> AttrBuilder::getAllocSizeArgs() const {
1519 return unpackAllocSizeArgs(AllocSizeArgs);
1520}
1521
Guillaume Chateleta7b6a7c2019-08-06 09:16:33 +00001522AttrBuilder &AttrBuilder::addAlignmentAttr(unsigned A) {
1523 MaybeAlign Align(A);
1524 if (!Align)
1525 return *this;
Bill Wendlingcd330342013-01-04 23:27:34 +00001526
Guillaume Chateleta7b6a7c2019-08-06 09:16:33 +00001527 assert(*Align <= 0x40000000 && "Alignment too large.");
Bill Wendlingcd330342013-01-04 23:27:34 +00001528
Benjamin Kramereaf706b2013-02-18 12:09:51 +00001529 Attrs[Attribute::Alignment] = true;
Bill Wendlingcd330342013-01-04 23:27:34 +00001530 Alignment = Align;
Bill Wendlingabd5ba22012-10-14 03:58:29 +00001531 return *this;
Chris Lattner3e13b8c2008-01-02 23:42:30 +00001532}
1533
Guillaume Chateleta7b6a7c2019-08-06 09:16:33 +00001534AttrBuilder &AttrBuilder::addStackAlignmentAttr(unsigned A) {
1535 MaybeAlign Align(A);
Bill Wendlingcd330342013-01-04 23:27:34 +00001536 // Default alignment, allow the target to define how to align it.
Guillaume Chateleta7b6a7c2019-08-06 09:16:33 +00001537 if (!Align)
1538 return *this;
Bill Wendlingcd330342013-01-04 23:27:34 +00001539
Guillaume Chateleta7b6a7c2019-08-06 09:16:33 +00001540 assert(*Align <= 0x100 && "Alignment too large.");
Bill Wendlingcd330342013-01-04 23:27:34 +00001541
Benjamin Kramereaf706b2013-02-18 12:09:51 +00001542 Attrs[Attribute::StackAlignment] = true;
Bill Wendlingcd330342013-01-04 23:27:34 +00001543 StackAlignment = Align;
1544 return *this;
1545}
1546
Hal Finkelb0407ba2014-07-18 15:51:28 +00001547AttrBuilder &AttrBuilder::addDereferenceableAttr(uint64_t Bytes) {
1548 if (Bytes == 0) return *this;
1549
1550 Attrs[Attribute::Dereferenceable] = true;
1551 DerefBytes = Bytes;
1552 return *this;
1553}
1554
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001555AttrBuilder &AttrBuilder::addDereferenceableOrNullAttr(uint64_t Bytes) {
1556 if (Bytes == 0)
1557 return *this;
1558
1559 Attrs[Attribute::DereferenceableOrNull] = true;
1560 DerefOrNullBytes = Bytes;
1561 return *this;
1562}
1563
George Burgess IV278199f2016-04-12 01:05:35 +00001564AttrBuilder &AttrBuilder::addAllocSizeAttr(unsigned ElemSize,
1565 const Optional<unsigned> &NumElems) {
1566 return addAllocSizeAttrFromRawRepr(packAllocSizeArgs(ElemSize, NumElems));
1567}
1568
1569AttrBuilder &AttrBuilder::addAllocSizeAttrFromRawRepr(uint64_t RawArgs) {
1570 // (0, 0) is our "not present" value, so we need to check for it here.
1571 assert(RawArgs && "Invalid allocsize arguments -- given allocsize(0, 0)");
1572
1573 Attrs[Attribute::AllocSize] = true;
1574 // Reuse existing machinery to store this as a single 64-bit integer so we can
1575 // save a few bytes over using a pair<unsigned, Optional<unsigned>>.
1576 AllocSizeArgs = RawArgs;
1577 return *this;
1578}
1579
Tim Northoverb7141202019-05-30 18:48:23 +00001580AttrBuilder &AttrBuilder::addByValAttr(Type *Ty) {
1581 Attrs[Attribute::ByVal] = true;
1582 ByValType = Ty;
1583 return *this;
1584}
1585
Bill Wendlinge2614922013-02-06 01:16:00 +00001586AttrBuilder &AttrBuilder::merge(const AttrBuilder &B) {
1587 // FIXME: What if both have alignments, but they don't match?!
1588 if (!Alignment)
1589 Alignment = B.Alignment;
1590
1591 if (!StackAlignment)
1592 StackAlignment = B.StackAlignment;
1593
Hal Finkelb0407ba2014-07-18 15:51:28 +00001594 if (!DerefBytes)
1595 DerefBytes = B.DerefBytes;
1596
Pete Cooperd2a44612015-05-06 23:19:43 +00001597 if (!DerefOrNullBytes)
1598 DerefOrNullBytes = B.DerefOrNullBytes;
1599
George Burgess IV278199f2016-04-12 01:05:35 +00001600 if (!AllocSizeArgs)
1601 AllocSizeArgs = B.AllocSizeArgs;
1602
Tim Northoverb7141202019-05-30 18:48:23 +00001603 if (!ByValType)
1604 ByValType = B.ByValType;
1605
Benjamin Kramer45e7d532013-02-16 19:13:18 +00001606 Attrs |= B.Attrs;
Bill Wendlinge2614922013-02-06 01:16:00 +00001607
Pete Cooperd2a44612015-05-06 23:19:43 +00001608 for (auto I : B.td_attrs())
1609 TargetDepAttrs[I.first] = I.second;
Bill Wendlinge2614922013-02-06 01:16:00 +00001610
1611 return *this;
1612}
1613
Pete Cooperd2a44612015-05-06 23:19:43 +00001614AttrBuilder &AttrBuilder::remove(const AttrBuilder &B) {
1615 // FIXME: What if both have alignments, but they don't match?!
1616 if (B.Alignment)
Guillaume Chateleta7b6a7c2019-08-06 09:16:33 +00001617 Alignment.reset();
Pete Cooperd2a44612015-05-06 23:19:43 +00001618
1619 if (B.StackAlignment)
Guillaume Chateleta7b6a7c2019-08-06 09:16:33 +00001620 StackAlignment.reset();
Pete Cooperd2a44612015-05-06 23:19:43 +00001621
1622 if (B.DerefBytes)
1623 DerefBytes = 0;
1624
1625 if (B.DerefOrNullBytes)
1626 DerefOrNullBytes = 0;
1627
George Burgess IV278199f2016-04-12 01:05:35 +00001628 if (B.AllocSizeArgs)
1629 AllocSizeArgs = 0;
1630
Tim Northoverb7141202019-05-30 18:48:23 +00001631 if (B.ByValType)
1632 ByValType = nullptr;
1633
Pete Cooperd2a44612015-05-06 23:19:43 +00001634 Attrs &= ~B.Attrs;
1635
1636 for (auto I : B.td_attrs())
1637 TargetDepAttrs.erase(I.first);
1638
1639 return *this;
1640}
1641
1642bool AttrBuilder::overlaps(const AttrBuilder &B) const {
1643 // First check if any of the target independent attributes overlap.
1644 if ((Attrs & B.Attrs).any())
1645 return true;
1646
1647 // Then check if any target dependent ones do.
Sean Silva9011aca2017-02-22 06:34:04 +00001648 for (const auto &I : td_attrs())
Pete Cooperd2a44612015-05-06 23:19:43 +00001649 if (B.contains(I.first))
1650 return true;
1651
1652 return false;
1653}
1654
Bill Wendling4b001442013-02-06 01:33:42 +00001655bool AttrBuilder::contains(StringRef A) const {
1656 return TargetDepAttrs.find(A) != TargetDepAttrs.end();
1657}
1658
Bill Wendling50d27842012-10-15 20:35:56 +00001659bool AttrBuilder::hasAttributes() const {
Benjamin Kramereaf706b2013-02-18 12:09:51 +00001660 return !Attrs.none() || !TargetDepAttrs.empty();
Bill Wendlingc6daefa2012-10-08 23:27:46 +00001661}
Bill Wendling9ac69f92013-01-04 20:54:35 +00001662
Reid Kleckner6652a522017-04-28 18:37:16 +00001663bool AttrBuilder::hasAttributes(AttributeList AL, uint64_t Index) const {
1664 AttributeSet AS = AL.getAttributes(Index);
Bill Wendling9ca01da2013-02-02 00:42:06 +00001665
Eugene Zelenko7fb5d412018-03-30 00:47:31 +00001666 for (const auto Attr : AS) {
Hal Finkele15442c2014-07-18 06:51:55 +00001667 if (Attr.isEnumAttribute() || Attr.isIntAttribute()) {
Reid Kleckner6652a522017-04-28 18:37:16 +00001668 if (contains(Attr.getKindAsEnum()))
Bill Wendling7cde51d2013-02-12 07:56:49 +00001669 return true;
1670 } else {
1671 assert(Attr.isStringAttribute() && "Invalid attribute kind!");
Reid Kleckner6652a522017-04-28 18:37:16 +00001672 return contains(Attr.getKindAsString());
Bill Wendling7cde51d2013-02-12 07:56:49 +00001673 }
1674 }
Bill Wendling9ca01da2013-02-02 00:42:06 +00001675
1676 return false;
Bill Wendling70f39172012-10-09 00:01:21 +00001677}
Bill Wendling9ac69f92013-01-04 20:54:35 +00001678
Bill Wendling50d27842012-10-15 20:35:56 +00001679bool AttrBuilder::hasAlignmentAttr() const {
Bill Wendlingcd330342013-01-04 23:27:34 +00001680 return Alignment != 0;
Bill Wendlingc6daefa2012-10-08 23:27:46 +00001681}
1682
Bill Wendlingd509a662013-01-29 00:34:06 +00001683bool AttrBuilder::operator==(const AttrBuilder &B) {
Benjamin Kramer45e7d532013-02-16 19:13:18 +00001684 if (Attrs != B.Attrs)
1685 return false;
Bill Wendling4b001442013-02-06 01:33:42 +00001686
1687 for (td_const_iterator I = TargetDepAttrs.begin(),
1688 E = TargetDepAttrs.end(); I != E; ++I)
1689 if (B.TargetDepAttrs.find(I->first) == B.TargetDepAttrs.end())
1690 return false;
1691
Hal Finkelb0407ba2014-07-18 15:51:28 +00001692 return Alignment == B.Alignment && StackAlignment == B.StackAlignment &&
Tim Northoverb7141202019-05-30 18:48:23 +00001693 DerefBytes == B.DerefBytes && ByValType == B.ByValType;
Bill Wendlingd509a662013-01-29 00:34:06 +00001694}
1695
Bill Wendling57625a42013-01-25 23:09:36 +00001696//===----------------------------------------------------------------------===//
1697// AttributeFuncs Function Defintions
1698//===----------------------------------------------------------------------===//
1699
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001700/// Which attributes cannot be applied to a type.
Craig Toppere3dcce92015-08-01 22:20:21 +00001701AttrBuilder AttributeFuncs::typeIncompatible(Type *Ty) {
Bill Wendling57625a42013-01-25 23:09:36 +00001702 AttrBuilder Incompatible;
1703
1704 if (!Ty->isIntegerTy())
1705 // Attribute that only apply to integers.
1706 Incompatible.addAttribute(Attribute::SExt)
1707 .addAttribute(Attribute::ZExt);
1708
1709 if (!Ty->isPointerTy())
1710 // Attribute that only apply to pointers.
1711 Incompatible.addAttribute(Attribute::ByVal)
1712 .addAttribute(Attribute::Nest)
1713 .addAttribute(Attribute::NoAlias)
1714 .addAttribute(Attribute::NoCapture)
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001715 .addAttribute(Attribute::NonNull)
Hal Finkelb0407ba2014-07-18 15:51:28 +00001716 .addDereferenceableAttr(1) // the int here is ignored
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001717 .addDereferenceableOrNullAttr(1) // the int here is ignored
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001718 .addAttribute(Attribute::ReadNone)
1719 .addAttribute(Attribute::ReadOnly)
Reid Klecknera534a382013-12-19 02:14:12 +00001720 .addAttribute(Attribute::StructRet)
1721 .addAttribute(Attribute::InAlloca);
Bill Wendling57625a42013-01-25 23:09:36 +00001722
Pete Cooper2777d8872015-05-06 23:19:56 +00001723 return Incompatible;
Bill Wendling57625a42013-01-25 23:09:36 +00001724}
Akira Hatanaka1cb242e2015-12-22 23:57:37 +00001725
1726template<typename AttrClass>
1727static bool isEqual(const Function &Caller, const Function &Callee) {
1728 return Caller.getFnAttribute(AttrClass::getKind()) ==
1729 Callee.getFnAttribute(AttrClass::getKind());
1730}
1731
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001732/// Compute the logical AND of the attributes of the caller and the
Akira Hatanaka1cb242e2015-12-22 23:57:37 +00001733/// callee.
1734///
1735/// This function sets the caller's attribute to false if the callee's attribute
1736/// is false.
1737template<typename AttrClass>
1738static void setAND(Function &Caller, const Function &Callee) {
1739 if (AttrClass::isSet(Caller, AttrClass::getKind()) &&
1740 !AttrClass::isSet(Callee, AttrClass::getKind()))
1741 AttrClass::set(Caller, AttrClass::getKind(), false);
1742}
1743
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001744/// Compute the logical OR of the attributes of the caller and the
Akira Hatanaka1cb242e2015-12-22 23:57:37 +00001745/// callee.
1746///
1747/// This function sets the caller's attribute to true if the callee's attribute
1748/// is true.
1749template<typename AttrClass>
1750static void setOR(Function &Caller, const Function &Callee) {
1751 if (!AttrClass::isSet(Caller, AttrClass::getKind()) &&
1752 AttrClass::isSet(Callee, AttrClass::getKind()))
1753 AttrClass::set(Caller, AttrClass::getKind(), true);
1754}
1755
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001756/// If the inlined function had a higher stack protection level than the
Akira Hatanaka1cb242e2015-12-22 23:57:37 +00001757/// calling function, then bump up the caller's stack protection level.
1758static void adjustCallerSSPLevel(Function &Caller, const Function &Callee) {
1759 // If upgrading the SSP attribute, clear out the old SSP Attributes first.
1760 // Having multiple SSP attributes doesn't actually hurt, but it adds useless
1761 // clutter to the IR.
Reid Kleckneree4930b2017-05-02 22:07:37 +00001762 AttrBuilder OldSSPAttr;
1763 OldSSPAttr.addAttribute(Attribute::StackProtect)
1764 .addAttribute(Attribute::StackProtectStrong)
1765 .addAttribute(Attribute::StackProtectReq);
Akira Hatanaka1cb242e2015-12-22 23:57:37 +00001766
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +00001767 if (Callee.hasFnAttribute(Attribute::StackProtectReq)) {
Reid Klecknerb5180542017-03-21 16:57:19 +00001768 Caller.removeAttributes(AttributeList::FunctionIndex, OldSSPAttr);
Akira Hatanaka1cb242e2015-12-22 23:57:37 +00001769 Caller.addFnAttr(Attribute::StackProtectReq);
1770 } else if (Callee.hasFnAttribute(Attribute::StackProtectStrong) &&
Akira Hatanaka1cb242e2015-12-22 23:57:37 +00001771 !Caller.hasFnAttribute(Attribute::StackProtectReq)) {
Reid Klecknerb5180542017-03-21 16:57:19 +00001772 Caller.removeAttributes(AttributeList::FunctionIndex, OldSSPAttr);
Akira Hatanaka1cb242e2015-12-22 23:57:37 +00001773 Caller.addFnAttr(Attribute::StackProtectStrong);
1774 } else if (Callee.hasFnAttribute(Attribute::StackProtect) &&
Akira Hatanaka1cb242e2015-12-22 23:57:37 +00001775 !Caller.hasFnAttribute(Attribute::StackProtectReq) &&
1776 !Caller.hasFnAttribute(Attribute::StackProtectStrong))
1777 Caller.addFnAttr(Attribute::StackProtect);
1778}
1779
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001780/// If the inlined function required stack probes, then ensure that
whitequarked54b4a2017-06-21 18:46:50 +00001781/// the calling function has those too.
1782static void adjustCallerStackProbes(Function &Caller, const Function &Callee) {
whitequark08b20352017-06-22 23:22:36 +00001783 if (!Caller.hasFnAttribute("probe-stack") &&
1784 Callee.hasFnAttribute("probe-stack")) {
1785 Caller.addFnAttr(Callee.getFnAttribute("probe-stack"));
1786 }
1787}
1788
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001789/// If the inlined function defines the size of guard region
whitequark08b20352017-06-22 23:22:36 +00001790/// on the stack, then ensure that the calling function defines a guard region
1791/// that is no larger.
1792static void
1793adjustCallerStackProbeSize(Function &Caller, const Function &Callee) {
1794 if (Callee.hasFnAttribute("stack-probe-size")) {
1795 uint64_t CalleeStackProbeSize;
1796 Callee.getFnAttribute("stack-probe-size")
1797 .getValueAsString()
1798 .getAsInteger(0, CalleeStackProbeSize);
1799 if (Caller.hasFnAttribute("stack-probe-size")) {
1800 uint64_t CallerStackProbeSize;
1801 Caller.getFnAttribute("stack-probe-size")
1802 .getValueAsString()
1803 .getAsInteger(0, CallerStackProbeSize);
1804 if (CallerStackProbeSize > CalleeStackProbeSize) {
1805 Caller.addFnAttr(Callee.getFnAttribute("stack-probe-size"));
1806 }
1807 } else {
1808 Caller.addFnAttr(Callee.getFnAttribute("stack-probe-size"));
1809 }
1810 }
whitequarked54b4a2017-06-21 18:46:50 +00001811}
1812
Craig Topper1d504f72018-07-24 18:49:00 +00001813/// If the inlined function defines a min legal vector width, then ensure
Craig Topper961b9562018-11-29 07:27:38 +00001814/// the calling function has the same or larger min legal vector width. If the
1815/// caller has the attribute, but the callee doesn't, we need to remove the
1816/// attribute from the caller since we can't make any guarantees about the
1817/// caller's requirements.
1818/// This function is called after the inlining decision has been made so we have
1819/// to merge the attribute this way. Heuristics that would use
Craig Topper1d504f72018-07-24 18:49:00 +00001820/// min-legal-vector-width to determine inline compatibility would need to be
1821/// handled as part of inline cost analysis.
1822static void
1823adjustMinLegalVectorWidth(Function &Caller, const Function &Callee) {
Craig Topper961b9562018-11-29 07:27:38 +00001824 if (Caller.hasFnAttribute("min-legal-vector-width")) {
1825 if (Callee.hasFnAttribute("min-legal-vector-width")) {
Craig Topper1d504f72018-07-24 18:49:00 +00001826 uint64_t CallerVectorWidth;
1827 Caller.getFnAttribute("min-legal-vector-width")
1828 .getValueAsString()
1829 .getAsInteger(0, CallerVectorWidth);
Craig Topper961b9562018-11-29 07:27:38 +00001830 uint64_t CalleeVectorWidth;
1831 Callee.getFnAttribute("min-legal-vector-width")
1832 .getValueAsString()
1833 .getAsInteger(0, CalleeVectorWidth);
1834 if (CallerVectorWidth < CalleeVectorWidth)
Craig Topper1d504f72018-07-24 18:49:00 +00001835 Caller.addFnAttr(Callee.getFnAttribute("min-legal-vector-width"));
Craig Topper1d504f72018-07-24 18:49:00 +00001836 } else {
Craig Topper961b9562018-11-29 07:27:38 +00001837 // If the callee doesn't have the attribute then we don't know anything
1838 // and must drop the attribute from the caller.
1839 Caller.removeFnAttr("min-legal-vector-width");
Craig Topper1d504f72018-07-24 18:49:00 +00001840 }
1841 }
1842}
1843
Manoj Gupta9d83ce92018-07-30 19:33:53 +00001844/// If the inlined function has "null-pointer-is-valid=true" attribute,
1845/// set this attribute in the caller post inlining.
1846static void
1847adjustNullPointerValidAttr(Function &Caller, const Function &Callee) {
1848 if (Callee.nullPointerIsDefined() && !Caller.nullPointerIsDefined()) {
1849 Caller.addFnAttr(Callee.getFnAttribute("null-pointer-is-valid"));
1850 }
1851}
1852
Akira Hatanaka1cb242e2015-12-22 23:57:37 +00001853#define GET_ATTR_COMPAT_FUNC
1854#include "AttributesCompatFunc.inc"
1855
1856bool AttributeFuncs::areInlineCompatible(const Function &Caller,
1857 const Function &Callee) {
1858 return hasCompatibleFnAttrs(Caller, Callee);
1859}
1860
Akira Hatanaka1cb242e2015-12-22 23:57:37 +00001861void AttributeFuncs::mergeAttributesForInlining(Function &Caller,
1862 const Function &Callee) {
1863 mergeFnAttrs(Caller, Callee);
1864}