blob: 70a0dbc28b6a4db9fc22f5652dc446a02e145bfe [file] [log] [blame]
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +00001//===- Function.cpp - Implement the Global object classes -----------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +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
Misha Brukmanb1c93172005-04-21 23:48:37 +00006//
John Criswell482202a2003-10-20 19:43:21 +00007//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00008//
Chandler Carruthef860a22013-01-02 09:10:48 +00009// This file implements the Function class for the IR library.
Chris Lattner2f7c9632001-06-06 20:29:01 +000010//
11//===----------------------------------------------------------------------===//
12
Chandler Carruth6bda14b2017-06-06 11:49:48 +000013#include "llvm/IR/Function.h"
Chris Lattner113f4f42002-06-25 16:13:24 +000014#include "SymbolTableListTraitsImpl.h"
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +000015#include "llvm/ADT/ArrayRef.h"
16#include "llvm/ADT/DenseSet.h"
17#include "llvm/ADT/None.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000018#include "llvm/ADT/STLExtras.h"
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +000019#include "llvm/ADT/SmallString.h"
20#include "llvm/ADT/SmallVector.h"
Chris Lattnerb392d302004-12-05 06:43:27 +000021#include "llvm/ADT/StringExtras.h"
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +000022#include "llvm/ADT/StringRef.h"
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +000023#include "llvm/IR/Argument.h"
24#include "llvm/IR/Attributes.h"
25#include "llvm/IR/BasicBlock.h"
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +000026#include "llvm/IR/Constant.h"
Diego Novillo2567f3d2015-05-13 15:13:45 +000027#include "llvm/IR/Constants.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/DerivedTypes.h"
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +000029#include "llvm/IR/GlobalValue.h"
Chandler Carruth83948572014-03-04 10:30:26 +000030#include "llvm/IR/InstIterator.h"
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +000031#include "llvm/IR/Instruction.h"
32#include "llvm/IR/Instructions.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/IntrinsicInst.h"
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +000034#include "llvm/IR/Intrinsics.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/LLVMContext.h"
Diego Novillo2567f3d2015-05-13 15:13:45 +000036#include "llvm/IR/MDBuilder.h"
37#include "llvm/IR/Metadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000038#include "llvm/IR/Module.h"
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +000039#include "llvm/IR/SymbolTableListTraits.h"
40#include "llvm/IR/Type.h"
41#include "llvm/IR/Use.h"
42#include "llvm/IR/User.h"
43#include "llvm/IR/Value.h"
44#include "llvm/IR/ValueSymbolTable.h"
45#include "llvm/Support/Casting.h"
46#include "llvm/Support/Compiler.h"
47#include "llvm/Support/ErrorHandling.h"
48#include <algorithm>
49#include <cassert>
50#include <cstddef>
51#include <cstdint>
52#include <cstring>
53#include <string>
54
Chris Lattner189d19f2003-11-21 20:23:48 +000055using namespace llvm;
Easwaran Ramane5b8de22018-01-17 22:24:23 +000056using ProfileCount = Function::ProfileCount;
Brian Gaeke960707c2003-11-11 22:41:34 +000057
Chris Lattner113f4f42002-06-25 16:13:24 +000058// Explicit instantiations of SymbolTableListTraits since some of the methods
59// are not in the public header file...
Duncan P. N. Exon Smith37bf6782015-10-07 20:05:10 +000060template class llvm::SymbolTableListTraits<BasicBlock>;
Chris Lattner2f7c9632001-06-06 20:29:01 +000061
Chris Lattnerda975502001-09-10 07:58:01 +000062//===----------------------------------------------------------------------===//
Chris Lattnerd255ae22002-04-09 19:39:35 +000063// Argument Implementation
64//===----------------------------------------------------------------------===//
65
Reid Kleckner56d028d2017-03-17 17:16:39 +000066Argument::Argument(Type *Ty, const Twine &Name, Function *Par, unsigned ArgNo)
67 : Value(Ty, Value::ArgumentVal), Parent(Par), ArgNo(ArgNo) {
Chris Lattner32ab6432007-02-12 05:18:08 +000068 setName(Name);
Chris Lattner9ed7aef2002-09-06 21:33:15 +000069}
70
Chris Lattner9ed7aef2002-09-06 21:33:15 +000071void Argument::setParent(Function *parent) {
72 Parent = parent;
73}
74
Nick Lewyckyd52b1522014-05-20 01:23:40 +000075bool Argument::hasNonNullAttr() const {
76 if (!getType()->isPointerTy()) return false;
Reid Klecknerf021fab2017-04-13 23:12:13 +000077 if (getParent()->hasParamAttribute(getArgNo(), Attribute::NonNull))
Hal Finkelb0407ba2014-07-18 15:51:28 +000078 return true;
79 else if (getDereferenceableBytes() > 0 &&
Manoj Gupta77eeac32018-07-09 22:27:23 +000080 !NullPointerIsDefined(getParent(),
81 getType()->getPointerAddressSpace()))
Hal Finkelb0407ba2014-07-18 15:51:28 +000082 return true;
83 return false;
Nick Lewyckyd52b1522014-05-20 01:23:40 +000084}
85
Chris Lattnere30f09d2008-01-24 17:47:11 +000086bool Argument::hasByValAttr() const {
Duncan Sands19d0b472010-02-16 11:11:14 +000087 if (!getType()->isPointerTy()) return false;
Amaury Sechet7b05a4c2016-03-14 01:37:29 +000088 return hasAttribute(Attribute::ByVal);
Chris Lattnere30f09d2008-01-24 17:47:11 +000089}
90
Manman Renf46262e2016-03-29 17:37:21 +000091bool Argument::hasSwiftSelfAttr() const {
Reid Klecknerf021fab2017-04-13 23:12:13 +000092 return getParent()->hasParamAttribute(getArgNo(), Attribute::SwiftSelf);
Manman Renf46262e2016-03-29 17:37:21 +000093}
94
Manman Ren9bfd0d02016-04-01 21:41:15 +000095bool Argument::hasSwiftErrorAttr() const {
Reid Klecknerf021fab2017-04-13 23:12:13 +000096 return getParent()->hasParamAttribute(getArgNo(), Attribute::SwiftError);
Manman Ren9bfd0d02016-04-01 21:41:15 +000097}
98
Reid Klecknera534a382013-12-19 02:14:12 +000099bool Argument::hasInAllocaAttr() const {
100 if (!getType()->isPointerTy()) return false;
Amaury Sechet7b05a4c2016-03-14 01:37:29 +0000101 return hasAttribute(Attribute::InAlloca);
Reid Klecknera534a382013-12-19 02:14:12 +0000102}
103
Reid Kleckner436c42e2014-01-17 23:58:17 +0000104bool Argument::hasByValOrInAllocaAttr() const {
105 if (!getType()->isPointerTy()) return false;
Reid Klecknerb5180542017-03-21 16:57:19 +0000106 AttributeList Attrs = getParent()->getAttributes();
Reid Klecknerf021fab2017-04-13 23:12:13 +0000107 return Attrs.hasParamAttribute(getArgNo(), Attribute::ByVal) ||
108 Attrs.hasParamAttribute(getArgNo(), Attribute::InAlloca);
Reid Kleckner436c42e2014-01-17 23:58:17 +0000109}
110
Chris Lattner4d37d992011-05-22 23:57:23 +0000111unsigned Argument::getParamAlignment() const {
112 assert(getType()->isPointerTy() && "Only pointers have alignments");
Reid Kleckner859f8b52017-04-28 20:34:27 +0000113 return getParent()->getParamAlignment(getArgNo());
Chris Lattner4d37d992011-05-22 23:57:23 +0000114}
115
Hal Finkelb0407ba2014-07-18 15:51:28 +0000116uint64_t Argument::getDereferenceableBytes() const {
117 assert(getType()->isPointerTy() &&
118 "Only pointers have dereferenceable bytes");
Reid Kleckner5fbdd172017-05-31 19:23:09 +0000119 return getParent()->getParamDereferenceableBytes(getArgNo());
Hal Finkelb0407ba2014-07-18 15:51:28 +0000120}
121
Sanjoy Das06cf33f2015-05-06 17:41:54 +0000122uint64_t Argument::getDereferenceableOrNullBytes() const {
123 assert(getType()->isPointerTy() &&
124 "Only pointers have dereferenceable bytes");
Reid Kleckner5fbdd172017-05-31 19:23:09 +0000125 return getParent()->getParamDereferenceableOrNullBytes(getArgNo());
Sanjoy Das06cf33f2015-05-06 17:41:54 +0000126}
127
Duncan Sands5d96f3f2009-12-11 08:36:17 +0000128bool Argument::hasNestAttr() const {
Duncan Sands19d0b472010-02-16 11:11:14 +0000129 if (!getType()->isPointerTy()) return false;
Amaury Sechet7b05a4c2016-03-14 01:37:29 +0000130 return hasAttribute(Attribute::Nest);
Duncan Sands5d96f3f2009-12-11 08:36:17 +0000131}
132
Chris Lattnere30f09d2008-01-24 17:47:11 +0000133bool Argument::hasNoAliasAttr() const {
Duncan Sands19d0b472010-02-16 11:11:14 +0000134 if (!getType()->isPointerTy()) return false;
Amaury Sechet7b05a4c2016-03-14 01:37:29 +0000135 return hasAttribute(Attribute::NoAlias);
Chris Lattnere30f09d2008-01-24 17:47:11 +0000136}
137
Duncan Sandsdf128eb2008-12-31 18:08:59 +0000138bool Argument::hasNoCaptureAttr() const {
Duncan Sands19d0b472010-02-16 11:11:14 +0000139 if (!getType()->isPointerTy()) return false;
Amaury Sechet7b05a4c2016-03-14 01:37:29 +0000140 return hasAttribute(Attribute::NoCapture);
Duncan Sandsdf128eb2008-12-31 18:08:59 +0000141}
142
Owen Andersonc64dfb42008-02-17 23:22:28 +0000143bool Argument::hasStructRetAttr() const {
Duncan Sands19d0b472010-02-16 11:11:14 +0000144 if (!getType()->isPointerTy()) return false;
Amaury Sechet7b05a4c2016-03-14 01:37:29 +0000145 return hasAttribute(Attribute::StructRet);
Owen Andersonc64dfb42008-02-17 23:22:28 +0000146}
147
Stephen Linb8bd2322013-04-20 05:14:40 +0000148bool Argument::hasReturnedAttr() const {
Amaury Sechet7b05a4c2016-03-14 01:37:29 +0000149 return hasAttribute(Attribute::Returned);
Stephen Linb8bd2322013-04-20 05:14:40 +0000150}
151
Juergen Ributzka384c3b52014-08-05 05:43:41 +0000152bool Argument::hasZExtAttr() const {
Amaury Sechet7b05a4c2016-03-14 01:37:29 +0000153 return hasAttribute(Attribute::ZExt);
Juergen Ributzka384c3b52014-08-05 05:43:41 +0000154}
155
Juergen Ributzka384c3b52014-08-05 05:43:41 +0000156bool Argument::hasSExtAttr() const {
Amaury Sechet7b05a4c2016-03-14 01:37:29 +0000157 return hasAttribute(Attribute::SExt);
Juergen Ributzka384c3b52014-08-05 05:43:41 +0000158}
159
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000160bool Argument::onlyReadsMemory() const {
Reid Klecknerf021fab2017-04-13 23:12:13 +0000161 AttributeList Attrs = getParent()->getAttributes();
162 return Attrs.hasParamAttribute(getArgNo(), Attribute::ReadOnly) ||
163 Attrs.hasParamAttribute(getArgNo(), Attribute::ReadNone);
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000164}
165
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000166void Argument::addAttrs(AttrBuilder &B) {
167 AttributeList AL = getParent()->getAttributes();
Reid Kleckner5fbdd172017-05-31 19:23:09 +0000168 AL = AL.addParamAttributes(Parent->getContext(), getArgNo(), B);
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000169 getParent()->setAttributes(AL);
170}
171
172void Argument::addAttr(Attribute::AttrKind Kind) {
Reid Kleckner5fbdd172017-05-31 19:23:09 +0000173 getParent()->addParamAttr(getArgNo(), Kind);
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000174}
175
176void Argument::addAttr(Attribute Attr) {
Reid Kleckner5fbdd172017-05-31 19:23:09 +0000177 getParent()->addParamAttr(getArgNo(), Attr);
Gordon Henriksen2d9cc212008-04-28 17:37:06 +0000178}
Chris Lattnere30f09d2008-01-24 17:47:11 +0000179
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000180void Argument::removeAttr(Attribute::AttrKind Kind) {
Reid Kleckner5fbdd172017-05-31 19:23:09 +0000181 getParent()->removeParamAttr(getArgNo(), Kind);
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000182}
183
Amaury Sechet7b05a4c2016-03-14 01:37:29 +0000184bool Argument::hasAttribute(Attribute::AttrKind Kind) const {
Reid Klecknerf021fab2017-04-13 23:12:13 +0000185 return getParent()->hasParamAttribute(getArgNo(), Kind);
Amaury Sechet7b05a4c2016-03-14 01:37:29 +0000186}
187
Chris Lattnerd255ae22002-04-09 19:39:35 +0000188//===----------------------------------------------------------------------===//
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000189// Helper Methods in Function
Reid Spencer019c8862007-04-09 15:01:12 +0000190//===----------------------------------------------------------------------===//
191
Owen Anderson47db9412009-07-22 00:24:57 +0000192LLVMContext &Function::getContext() const {
193 return getType()->getContext();
Owen Anderson0a2c4582009-07-02 18:03:58 +0000194}
195
Mircea Trofin87b67252018-10-18 19:49:44 +0000196unsigned Function::getInstructionCount() const {
Jessica Paquettee49374d2018-05-18 17:26:39 +0000197 unsigned NumInstrs = 0;
Mircea Trofin87b67252018-10-18 19:49:44 +0000198 for (const BasicBlock &BB : BasicBlocks)
Jessica Paquettee49374d2018-05-18 17:26:39 +0000199 NumInstrs += std::distance(BB.instructionsWithoutDebug().begin(),
200 BB.instructionsWithoutDebug().end());
201 return NumInstrs;
202}
203
Alexander Richardson6bcf2ba2018-08-23 09:25:17 +0000204Function *Function::Create(FunctionType *Ty, LinkageTypes Linkage,
205 const Twine &N, Module &M) {
206 return Create(Ty, Linkage, M.getDataLayout().getProgramAddressSpace(), N, &M);
207}
208
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000209void Function::removeFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +0000210 getParent()->getFunctionList().remove(getIterator());
Duncan Sands185eeac2007-11-25 14:10:56 +0000211}
212
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000213void Function::eraseFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +0000214 getParent()->getFunctionList().erase(getIterator());
Reid Spencer019c8862007-04-09 15:01:12 +0000215}
216
Reid Spencer019c8862007-04-09 15:01:12 +0000217//===----------------------------------------------------------------------===//
Chris Lattner57698e22002-03-26 18:01:55 +0000218// Function Implementation
Chris Lattnerda975502001-09-10 07:58:01 +0000219//===----------------------------------------------------------------------===//
220
Alexander Richardson6bcf2ba2018-08-23 09:25:17 +0000221static unsigned computeAddrSpace(unsigned AddrSpace, Module *M) {
222 // If AS == -1 and we are passed a valid module pointer we place the function
223 // in the program address space. Otherwise we default to AS0.
224 if (AddrSpace == static_cast<unsigned>(-1))
225 return M ? M->getDataLayout().getProgramAddressSpace() : 0;
226 return AddrSpace;
227}
228
229Function::Function(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace,
230 const Twine &name, Module *ParentModule)
David Blaikied583b192015-08-21 21:35:28 +0000231 : GlobalObject(Ty, Value::FunctionVal,
Alexander Richardson6bcf2ba2018-08-23 09:25:17 +0000232 OperandTraits<Function>::op_begin(this), 0, Linkage, name,
233 computeAddrSpace(AddrSpace, ParentModule)),
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +0000234 NumArgs(Ty->getNumParams()) {
Chris Lattner654695b2009-01-05 07:58:59 +0000235 assert(FunctionType::isValidReturnType(getReturnType()) &&
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000236 "invalid return type");
Duncan P. N. Exon Smith4472b772015-04-24 20:47:23 +0000237 setGlobalObjectSubClassData(0);
Mehdi Aminia53d49e2016-09-17 06:00:02 +0000238
239 // We only need a symbol table for a function if the context keeps value names
240 if (!getContext().shouldDiscardValueNames())
241 SymTab = make_unique<ValueSymbolTable>();
Chris Lattner6213ae02002-09-06 20:46:32 +0000242
Chris Lattnere2de9082007-08-18 06:14:52 +0000243 // If the function has arguments, mark them as lazily built.
244 if (Ty->getNumParams())
Chris Lattnerb9c86512009-12-29 02:14:09 +0000245 setValueSubclassData(1); // Set the "has lazy arguments" bit.
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000246
Chris Lattner6213ae02002-09-06 20:46:32 +0000247 if (ParentModule)
248 ParentModule->getFunctionList().push_back(this);
Duncan Sandsa8ff6ca2008-04-07 13:39:11 +0000249
Justin Lebar291abd32016-12-28 22:59:45 +0000250 HasLLVMReservedName = getName().startswith("llvm.");
Duncan Sandsa8ff6ca2008-04-07 13:39:11 +0000251 // Ensure intrinsics have the right parameter attributes.
Pete Coopera7c0c182015-05-19 00:24:26 +0000252 // Note, the IntID field will have been set in Value::setName if this function
253 // name is a valid intrinsic ID.
254 if (IntID)
255 setAttributes(Intrinsic::getAttributes(getContext(), IntID));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000256}
257
Gordon Henriksen14a55692007-12-10 02:14:30 +0000258Function::~Function() {
259 dropAllReferences(); // After this it is safe to delete instructions.
Chris Lattner2f7c9632001-06-06 20:29:01 +0000260
Chris Lattner2f7c9632001-06-06 20:29:01 +0000261 // Delete all of the method arguments and unlink from symbol table...
Reid Kleckner56d028d2017-03-17 17:16:39 +0000262 if (Arguments)
263 clearArguments();
Reid Spencerc6a83842007-04-22 17:28:03 +0000264
Gordon Henriksend930f912008-08-17 18:44:35 +0000265 // Remove the function from the on-the-side GC table.
266 clearGC();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000267}
268
Chris Lattnere2de9082007-08-18 06:14:52 +0000269void Function::BuildLazyArguments() const {
270 // Create the arguments vector, all arguments start out unnamed.
Reid Kleckner56d028d2017-03-17 17:16:39 +0000271 auto *FT = getFunctionType();
272 if (NumArgs > 0) {
273 Arguments = std::allocator<Argument>().allocate(NumArgs);
274 for (unsigned i = 0, e = NumArgs; i != e; ++i) {
275 Type *ArgTy = FT->getParamType(i);
276 assert(!ArgTy->isVoidTy() && "Cannot have void typed arguments!");
277 new (Arguments + i) Argument(ArgTy, "", const_cast<Function *>(this), i);
278 }
Chris Lattnere2de9082007-08-18 06:14:52 +0000279 }
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000280
Chris Lattnere2de9082007-08-18 06:14:52 +0000281 // Clear the lazy arguments bit.
Chris Lattnerb9c86512009-12-29 02:14:09 +0000282 unsigned SDC = getSubclassDataFromValue();
Peter Collingbourne51d2de72014-12-03 02:08:38 +0000283 const_cast<Function*>(this)->setValueSubclassData(SDC &= ~(1<<0));
Reid Kleckner56d028d2017-03-17 17:16:39 +0000284 assert(!hasLazyArguments());
285}
286
287static MutableArrayRef<Argument> makeArgArray(Argument *Args, size_t Count) {
288 return MutableArrayRef<Argument>(Args, Count);
289}
290
291void Function::clearArguments() {
292 for (Argument &A : makeArgArray(Arguments, NumArgs)) {
293 A.setName("");
294 A.~Argument();
295 }
296 std::allocator<Argument>().deallocate(Arguments, NumArgs);
297 Arguments = nullptr;
Chris Lattnere2de9082007-08-18 06:14:52 +0000298}
299
Duncan P. N. Exon Smithbdfc9842016-04-06 06:38:15 +0000300void Function::stealArgumentListFrom(Function &Src) {
301 assert(isDeclaration() && "Expected no references to current arguments");
302
303 // Drop the current arguments, if any, and set the lazy argument bit.
304 if (!hasLazyArguments()) {
Reid Kleckner56d028d2017-03-17 17:16:39 +0000305 assert(llvm::all_of(makeArgArray(Arguments, NumArgs),
Duncan P. N. Exon Smithbdfc9842016-04-06 06:38:15 +0000306 [](const Argument &A) { return A.use_empty(); }) &&
307 "Expected arguments to be unused in declaration");
Reid Kleckner56d028d2017-03-17 17:16:39 +0000308 clearArguments();
Duncan P. N. Exon Smithbdfc9842016-04-06 06:38:15 +0000309 setValueSubclassData(getSubclassDataFromValue() | (1 << 0));
310 }
311
312 // Nothing to steal if Src has lazy arguments.
313 if (Src.hasLazyArguments())
314 return;
315
316 // Steal arguments from Src, and fix the lazy argument bits.
Reid Kleckner56d028d2017-03-17 17:16:39 +0000317 assert(arg_size() == Src.arg_size());
318 Arguments = Src.Arguments;
319 Src.Arguments = nullptr;
320 for (Argument &A : makeArgArray(Arguments, NumArgs)) {
321 // FIXME: This does the work of transferNodesFromList inefficiently.
322 SmallString<128> Name;
323 if (A.hasName())
324 Name = A.getName();
325 if (!Name.empty())
326 A.setName("");
327 A.setParent(this);
328 if (!Name.empty())
329 A.setName(Name);
330 }
331
Duncan P. N. Exon Smithbdfc9842016-04-06 06:38:15 +0000332 setValueSubclassData(getSubclassDataFromValue() & ~(1 << 0));
Reid Kleckner56d028d2017-03-17 17:16:39 +0000333 assert(!hasLazyArguments());
Duncan P. N. Exon Smithbdfc9842016-04-06 06:38:15 +0000334 Src.setValueSubclassData(Src.getSubclassDataFromValue() | (1 << 0));
335}
336
Chris Lattner2f7c9632001-06-06 20:29:01 +0000337// dropAllReferences() - This function causes all the subinstructions to "let
338// go" of all references that they are maintaining. This allows one to
339// 'delete' a whole class at a time, even though there may be circular
340// references... first all references are dropped, and all use counts go to
Misha Brukmanfa100532003-10-10 17:54:14 +0000341// zero. Then everything is deleted for real. Note that no operations are
Misha Brukmanb1c93172005-04-21 23:48:37 +0000342// valid on an object that has "dropped all references", except operator
Chris Lattner2f7c9632001-06-06 20:29:01 +0000343// delete.
344//
Chris Lattner4e8c4872002-03-23 22:51:58 +0000345void Function::dropAllReferences() {
Rafael Espindolad4bcefc2014-10-24 18:13:04 +0000346 setIsMaterializable(false);
347
Benjamin Krameraf28e7d2016-06-26 14:10:56 +0000348 for (BasicBlock &BB : *this)
349 BB.dropAllReferences();
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000350
Dan Gohmanf844b3b2010-12-07 19:56:51 +0000351 // Delete all basic blocks. They are now unused, except possibly by
352 // blockaddresses, but BasicBlock's destructor takes care of those.
353 while (!BasicBlocks.empty())
354 BasicBlocks.begin()->eraseFromParent();
Peter Collingbourne3fa50f92013-09-16 01:08:15 +0000355
Vedant Kumar3a63fb32015-12-19 08:52:49 +0000356 // Drop uses of any optional data (real or placeholder).
357 if (getNumOperands()) {
358 User::dropAllReferences();
359 setNumHungOffUseOperands(0);
360 setValueSubclassData(getSubclassDataFromValue() & ~0xe);
361 }
Duncan P. N. Exon Smithe2510cd2015-04-24 21:51:02 +0000362
363 // Metadata is stored in a side-table.
364 clearMetadata();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000365}
Chris Lattnerda975502001-09-10 07:58:01 +0000366
Amaury Sechet392638d2016-06-14 20:27:35 +0000367void Function::addAttribute(unsigned i, Attribute::AttrKind Kind) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000368 AttributeList PAL = getAttributes();
Amaury Sechet392638d2016-06-14 20:27:35 +0000369 PAL = PAL.addAttribute(getContext(), i, Kind);
Devang Patel4c758ea2008-09-25 21:00:45 +0000370 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000371}
372
Amaury Sechet5db224e2016-06-12 06:17:24 +0000373void Function::addAttribute(unsigned i, Attribute Attr) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000374 AttributeList PAL = getAttributes();
Amaury Sechet5db224e2016-06-12 06:17:24 +0000375 PAL = PAL.addAttribute(getContext(), i, Attr);
376 setAttributes(PAL);
377}
378
Reid Kleckneree4930b2017-05-02 22:07:37 +0000379void Function::addAttributes(unsigned i, const AttrBuilder &Attrs) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000380 AttributeList PAL = getAttributes();
Amaury Sechet392638d2016-06-14 20:27:35 +0000381 PAL = PAL.addAttributes(getContext(), i, Attrs);
Bill Wendlingc0e2a1f2013-01-23 00:20:53 +0000382 setAttributes(PAL);
383}
384
Reid Kleckner5fbdd172017-05-31 19:23:09 +0000385void Function::addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) {
386 AttributeList PAL = getAttributes();
387 PAL = PAL.addParamAttribute(getContext(), ArgNo, Kind);
388 setAttributes(PAL);
389}
390
391void Function::addParamAttr(unsigned ArgNo, Attribute Attr) {
392 AttributeList PAL = getAttributes();
393 PAL = PAL.addParamAttribute(getContext(), ArgNo, Attr);
394 setAttributes(PAL);
395}
396
397void Function::addParamAttrs(unsigned ArgNo, const AttrBuilder &Attrs) {
398 AttributeList PAL = getAttributes();
399 PAL = PAL.addParamAttributes(getContext(), ArgNo, Attrs);
400 setAttributes(PAL);
401}
402
Amaury Sechet392638d2016-06-14 20:27:35 +0000403void Function::removeAttribute(unsigned i, Attribute::AttrKind Kind) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000404 AttributeList PAL = getAttributes();
Amaury Sechet392638d2016-06-14 20:27:35 +0000405 PAL = PAL.removeAttribute(getContext(), i, Kind);
Amaury Sechet7b05a4c2016-03-14 01:37:29 +0000406 setAttributes(PAL);
407}
408
Amaury Sechet6100adf2016-06-15 17:50:39 +0000409void Function::removeAttribute(unsigned i, StringRef Kind) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000410 AttributeList PAL = getAttributes();
Amaury Sechet6100adf2016-06-15 17:50:39 +0000411 PAL = PAL.removeAttribute(getContext(), i, Kind);
412 setAttributes(PAL);
413}
414
Reid Kleckneree4930b2017-05-02 22:07:37 +0000415void Function::removeAttributes(unsigned i, const AttrBuilder &Attrs) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000416 AttributeList PAL = getAttributes();
Amaury Sechet392638d2016-06-14 20:27:35 +0000417 PAL = PAL.removeAttributes(getContext(), i, Attrs);
Devang Patel4c758ea2008-09-25 21:00:45 +0000418 setAttributes(PAL);
Duncan Sands66336db2008-07-08 09:41:30 +0000419}
420
Reid Kleckner5fbdd172017-05-31 19:23:09 +0000421void Function::removeParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) {
422 AttributeList PAL = getAttributes();
423 PAL = PAL.removeParamAttribute(getContext(), ArgNo, Kind);
424 setAttributes(PAL);
425}
426
427void Function::removeParamAttr(unsigned ArgNo, StringRef Kind) {
428 AttributeList PAL = getAttributes();
429 PAL = PAL.removeParamAttribute(getContext(), ArgNo, Kind);
430 setAttributes(PAL);
431}
432
433void Function::removeParamAttrs(unsigned ArgNo, const AttrBuilder &Attrs) {
434 AttributeList PAL = getAttributes();
435 PAL = PAL.removeParamAttributes(getContext(), ArgNo, Attrs);
436 setAttributes(PAL);
437}
438
Ramkumar Ramachandra8fcb4982015-02-14 19:37:54 +0000439void Function::addDereferenceableAttr(unsigned i, uint64_t Bytes) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000440 AttributeList PAL = getAttributes();
Ramkumar Ramachandra8fcb4982015-02-14 19:37:54 +0000441 PAL = PAL.addDereferenceableAttr(getContext(), i, Bytes);
442 setAttributes(PAL);
443}
444
Reid Kleckner5fbdd172017-05-31 19:23:09 +0000445void Function::addDereferenceableParamAttr(unsigned ArgNo, uint64_t Bytes) {
446 AttributeList PAL = getAttributes();
447 PAL = PAL.addDereferenceableParamAttr(getContext(), ArgNo, Bytes);
448 setAttributes(PAL);
449}
450
Sanjoy Das31ea6d12015-04-16 20:29:50 +0000451void Function::addDereferenceableOrNullAttr(unsigned i, uint64_t Bytes) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000452 AttributeList PAL = getAttributes();
Sanjoy Das31ea6d12015-04-16 20:29:50 +0000453 PAL = PAL.addDereferenceableOrNullAttr(getContext(), i, Bytes);
454 setAttributes(PAL);
455}
456
Reid Kleckner5fbdd172017-05-31 19:23:09 +0000457void Function::addDereferenceableOrNullParamAttr(unsigned ArgNo,
458 uint64_t Bytes) {
459 AttributeList PAL = getAttributes();
460 PAL = PAL.addDereferenceableOrNullParamAttr(getContext(), ArgNo, Bytes);
461 setAttributes(PAL);
462}
463
Mehdi Amini599ebf22016-01-08 02:28:20 +0000464const std::string &Function::getGC() const {
Gordon Henriksend930f912008-08-17 18:44:35 +0000465 assert(hasGC() && "Function has no collector");
Mehdi Amini599ebf22016-01-08 02:28:20 +0000466 return getContext().getGC(*this);
Gordon Henriksen71183b62007-12-10 03:18:06 +0000467}
468
Benjamin Kramer728f4442016-05-29 10:46:35 +0000469void Function::setGC(std::string Str) {
Mehdi Amini599ebf22016-01-08 02:28:20 +0000470 setValueSubclassDataBit(14, !Str.empty());
471 getContext().setGC(*this, std::move(Str));
Gordon Henriksen71183b62007-12-10 03:18:06 +0000472}
473
Gordon Henriksend930f912008-08-17 18:44:35 +0000474void Function::clearGC() {
Mehdi Amini599ebf22016-01-08 02:28:20 +0000475 if (!hasGC())
476 return;
477 getContext().deleteGC(*this);
478 setValueSubclassDataBit(14, false);
Gordon Henriksen71183b62007-12-10 03:18:06 +0000479}
480
Rafael Espindola769efe62015-12-02 20:03:17 +0000481/// Copy all additional attributes (those not needed to create a Function) from
482/// the Function Src to this one.
Reid Klecknere7c78542017-05-11 21:14:29 +0000483void Function::copyAttributesFrom(const Function *Src) {
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000484 GlobalObject::copyAttributesFrom(Src);
Reid Klecknere7c78542017-05-11 21:14:29 +0000485 setCallingConv(Src->getCallingConv());
486 setAttributes(Src->getAttributes());
487 if (Src->hasGC())
488 setGC(Src->getGC());
Gordon Henriksend930f912008-08-17 18:44:35 +0000489 else
490 clearGC();
Reid Klecknere7c78542017-05-11 21:14:29 +0000491 if (Src->hasPersonalityFn())
492 setPersonalityFn(Src->getPersonalityFn());
493 if (Src->hasPrefixData())
494 setPrefixData(Src->getPrefixData());
495 if (Src->hasPrologueData())
496 setPrologueData(Src->getPrologueData());
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000497}
498
Reid Kleckner0b5220d2016-01-26 02:06:41 +0000499/// Table of string intrinsic names indexed by enum value.
500static const char * const IntrinsicNameTable[] = {
501 "not_intrinsic",
502#define GET_INTRINSIC_NAME_TABLE
Reid Klecknerf5890e42018-06-23 02:02:38 +0000503#include "llvm/IR/IntrinsicImpl.inc"
Reid Kleckner0b5220d2016-01-26 02:06:41 +0000504#undef GET_INTRINSIC_NAME_TABLE
505};
506
Justin Bogner92a8c612016-07-15 16:31:37 +0000507/// Table of per-target intrinsic name tables.
508#define GET_INTRINSIC_TARGET_DATA
Reid Klecknerf5890e42018-06-23 02:02:38 +0000509#include "llvm/IR/IntrinsicImpl.inc"
Justin Bogner92a8c612016-07-15 16:31:37 +0000510#undef GET_INTRINSIC_TARGET_DATA
511
512/// Find the segment of \c IntrinsicNameTable for intrinsics with the same
513/// target as \c Name, or the generic table if \c Name is not target specific.
514///
515/// Returns the relevant slice of \c IntrinsicNameTable
516static ArrayRef<const char *> findTargetSubtable(StringRef Name) {
517 assert(Name.startswith("llvm."));
518
519 ArrayRef<IntrinsicTargetInfo> Targets(TargetInfos);
520 // Drop "llvm." and take the first dotted component. That will be the target
521 // if this is target specific.
522 StringRef Target = Name.drop_front(5).split('.').first;
523 auto It = std::lower_bound(Targets.begin(), Targets.end(), Target,
524 [](const IntrinsicTargetInfo &TI,
525 StringRef Target) { return TI.Name < Target; });
526 // We've either found the target or just fall back to the generic set, which
527 // is always first.
528 const auto &TI = It != Targets.end() && It->Name == Target ? *It : Targets[0];
529 return makeArrayRef(&IntrinsicNameTable[1] + TI.Offset, TI.Count);
530}
531
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000532/// This does the actual lookup of an intrinsic ID which
Pete Cooper21241132015-05-19 00:02:25 +0000533/// matches the given function name.
Tim Northover6b3bd612016-07-29 20:32:59 +0000534Intrinsic::ID Function::lookupIntrinsicID(StringRef Name) {
Justin Bogner92a8c612016-07-15 16:31:37 +0000535 ArrayRef<const char *> NameTable = findTargetSubtable(Name);
Reid Klecknerc2752da2016-01-26 22:33:19 +0000536 int Idx = Intrinsic::lookupLLVMIntrinsicByName(NameTable, Name);
Justin Bogner92a8c612016-07-15 16:31:37 +0000537 if (Idx == -1)
538 return Intrinsic::not_intrinsic;
539
540 // Intrinsic IDs correspond to the location in IntrinsicNameTable, but we have
541 // an index into a sub-table.
542 int Adjust = NameTable.data() - IntrinsicNameTable;
543 Intrinsic::ID ID = static_cast<Intrinsic::ID>(Idx + Adjust);
Pete Cooper21241132015-05-19 00:02:25 +0000544
Reid Kleckner0b5220d2016-01-26 02:06:41 +0000545 // If the intrinsic is not overloaded, require an exact match. If it is
Roman Tereshin12a4dc42018-02-28 23:51:49 +0000546 // overloaded, require either exact or prefix match.
547 const auto MatchSize = strlen(NameTable[Idx]);
548 assert(Name.size() >= MatchSize && "Expected either exact or prefix match");
549 bool IsExactMatch = Name.size() == MatchSize;
550 return IsExactMatch || isOverloaded(ID) ? ID : Intrinsic::not_intrinsic;
Pete Cooper21241132015-05-19 00:02:25 +0000551}
552
Pete Coopera7c0c182015-05-19 00:24:26 +0000553void Function::recalculateIntrinsicID() {
Justin Lebar291abd32016-12-28 22:59:45 +0000554 StringRef Name = getName();
555 if (!Name.startswith("llvm.")) {
556 HasLLVMReservedName = false;
Pete Coopera7c0c182015-05-19 00:24:26 +0000557 IntID = Intrinsic::not_intrinsic;
558 return;
Michael Ilseman516d7032013-03-01 18:48:54 +0000559 }
Justin Lebar291abd32016-12-28 22:59:45 +0000560 HasLLVMReservedName = true;
561 IntID = lookupIntrinsicID(Name);
Michael Ilseman516d7032013-03-01 18:48:54 +0000562}
563
Philip Reames319c48e2014-11-12 00:21:51 +0000564/// Returns a stable mangling for the type specified for use in the name
Philip Reames059ecbf2014-11-24 23:24:24 +0000565/// mangling scheme used by 'any' types in intrinsic signatures. The mangling
566/// of named types is simply their name. Manglings for unnamed types consist
567/// of a prefix ('p' for pointers, 'a' for arrays, 'f_' for functions)
568/// combined with the mangling of their component types. A vararg function
569/// type will have a suffix of 'vararg'. Since function types can contain
570/// other function types, we close a function type mangling with suffix 'f'
571/// which can't be confused with it's prefix. This ensures we don't have
572/// collisions between two unrelated function types. Otherwise, you might
573/// parse ffXX as f(fXX) or f(fX)X. (X is a placeholder for any other type.)
Craig Topper2fa14362018-03-29 17:21:10 +0000574///
Philip Reames319c48e2014-11-12 00:21:51 +0000575static std::string getMangledTypeStr(Type* Ty) {
576 std::string Result;
577 if (PointerType* PTyp = dyn_cast<PointerType>(Ty)) {
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +0000578 Result += "p" + utostr(PTyp->getAddressSpace()) +
Philip Reames319c48e2014-11-12 00:21:51 +0000579 getMangledTypeStr(PTyp->getElementType());
580 } else if (ArrayType* ATyp = dyn_cast<ArrayType>(Ty)) {
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +0000581 Result += "a" + utostr(ATyp->getNumElements()) +
Philip Reames319c48e2014-11-12 00:21:51 +0000582 getMangledTypeStr(ATyp->getElementType());
Daniel Berlin3c1432f2017-02-15 23:16:20 +0000583 } else if (StructType *STyp = dyn_cast<StructType>(Ty)) {
584 if (!STyp->isLiteral()) {
585 Result += "s_";
586 Result += STyp->getName();
587 } else {
588 Result += "sl_";
589 for (auto Elem : STyp->elements())
590 Result += getMangledTypeStr(Elem);
591 }
592 // Ensure nested structs are distinguishable.
593 Result += "s";
594 } else if (FunctionType *FT = dyn_cast<FunctionType>(Ty)) {
Philip Reames319c48e2014-11-12 00:21:51 +0000595 Result += "f_" + getMangledTypeStr(FT->getReturnType());
596 for (size_t i = 0; i < FT->getNumParams(); i++)
597 Result += getMangledTypeStr(FT->getParamType(i));
598 if (FT->isVarArg())
599 Result += "vararg";
Philip Reames059ecbf2014-11-24 23:24:24 +0000600 // Ensure nested function types are distinguishable.
Fangrui Songf78650a2018-07-30 19:41:25 +0000601 Result += "f";
Craig Topper2fa14362018-03-29 17:21:10 +0000602 } else if (isa<VectorType>(Ty)) {
Elena Demikhovsky1ca72e12015-11-19 07:17:16 +0000603 Result += "v" + utostr(Ty->getVectorNumElements()) +
604 getMangledTypeStr(Ty->getVectorElementType());
Craig Topper2fa14362018-03-29 17:21:10 +0000605 } else if (Ty) {
606 switch (Ty->getTypeID()) {
607 default: llvm_unreachable("Unhandled type");
608 case Type::VoidTyID: Result += "isVoid"; break;
609 case Type::MetadataTyID: Result += "Metadata"; break;
610 case Type::HalfTyID: Result += "f16"; break;
611 case Type::FloatTyID: Result += "f32"; break;
612 case Type::DoubleTyID: Result += "f64"; break;
613 case Type::X86_FP80TyID: Result += "f80"; break;
614 case Type::FP128TyID: Result += "f128"; break;
615 case Type::PPC_FP128TyID: Result += "ppcf128"; break;
616 case Type::X86_MMXTyID: Result += "x86mmx"; break;
617 case Type::IntegerTyID:
618 Result += "i" + utostr(cast<IntegerType>(Ty)->getBitWidth());
619 break;
620 }
621 }
Philip Reames319c48e2014-11-12 00:21:51 +0000622 return Result;
623}
624
Pete Coopera8db71e2016-08-18 18:30:54 +0000625StringRef Intrinsic::getName(ID id) {
626 assert(id < num_intrinsics && "Invalid intrinsic ID!");
Pete Coopera5f8c722016-08-22 20:18:28 +0000627 assert(!isOverloaded(id) &&
628 "This version of getName does not support overloading");
Pete Coopera8db71e2016-08-18 18:30:54 +0000629 return IntrinsicNameTable[id];
630}
631
Benjamin Kramere6e19332011-07-14 17:45:39 +0000632std::string Intrinsic::getName(ID id, ArrayRef<Type*> Tys) {
Chris Lattner71b8c982006-03-25 06:32:47 +0000633 assert(id < num_intrinsics && "Invalid intrinsic ID!");
Reid Kleckner0b5220d2016-01-26 02:06:41 +0000634 std::string Result(IntrinsicNameTable[id]);
Benjamin Krameraf28e7d2016-06-26 14:10:56 +0000635 for (Type *Ty : Tys) {
636 Result += "." + getMangledTypeStr(Ty);
Mon P Wang2c839d42008-07-30 04:36:53 +0000637 }
Reid Spencer2a2117c2007-04-01 07:25:33 +0000638 return Result;
Chris Lattner71b8c982006-03-25 06:32:47 +0000639}
640
Chris Lattnerf39c2782012-05-27 18:28:35 +0000641/// IIT_Info - These are enumerators that describe the entries returned by the
642/// getIntrinsicInfoTableEntries function.
643///
644/// NOTE: This must be kept in synch with the copy in TblGen/IntrinsicEmitter!
645enum IIT_Info {
Robert Khasanov65c27562014-10-20 19:25:05 +0000646 // Common values should be encoded with 0-15.
Chris Lattnerf39c2782012-05-27 18:28:35 +0000647 IIT_Done = 0,
648 IIT_I1 = 1,
649 IIT_I8 = 2,
650 IIT_I16 = 3,
651 IIT_I32 = 4,
652 IIT_I64 = 5,
Michael Ilseman6c6d7152013-01-11 01:45:05 +0000653 IIT_F16 = 6,
654 IIT_F32 = 7,
655 IIT_F64 = 8,
656 IIT_V2 = 9,
657 IIT_V4 = 10,
658 IIT_V8 = 11,
659 IIT_V16 = 12,
660 IIT_V32 = 13,
Robert Khasanov65c27562014-10-20 19:25:05 +0000661 IIT_PTR = 14,
662 IIT_ARG = 15,
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000663
Robert Khasanov65c27562014-10-20 19:25:05 +0000664 // Values from 16+ are only encodable with the inefficient encoding.
665 IIT_V64 = 16,
Robert Khasanovb25e5622014-09-30 11:32:22 +0000666 IIT_MMX = 17,
Joseph Tremoulet917c7382015-09-02 13:36:25 +0000667 IIT_TOKEN = 18,
668 IIT_METADATA = 19,
669 IIT_EMPTYSTRUCT = 20,
670 IIT_STRUCT2 = 21,
671 IIT_STRUCT3 = 22,
672 IIT_STRUCT4 = 23,
673 IIT_STRUCT5 = 24,
674 IIT_EXTEND_ARG = 25,
675 IIT_TRUNC_ARG = 26,
676 IIT_ANYPTR = 27,
677 IIT_V1 = 28,
678 IIT_VARARG = 29,
679 IIT_HALF_VEC_ARG = 30,
680 IIT_SAME_VEC_WIDTH_ARG = 31,
681 IIT_PTR_TO_ARG = 32,
Elena Demikhovskycaaceef2016-11-03 03:23:55 +0000682 IIT_PTR_TO_ELT = 33,
Elad Cohenef5798a2017-05-03 12:28:54 +0000683 IIT_VEC_OF_ANYPTRS_TO_ELT = 34,
Elena Demikhovskycaaceef2016-11-03 03:23:55 +0000684 IIT_I128 = 35,
685 IIT_V512 = 36,
Artem Belevich786ca6a2017-10-12 17:40:00 +0000686 IIT_V1024 = 37,
687 IIT_STRUCT6 = 38,
688 IIT_STRUCT7 = 39,
Stefan Pintilie83a5fe12018-07-09 18:50:06 +0000689 IIT_STRUCT8 = 40,
690 IIT_F128 = 41
Chris Lattnerf39c2782012-05-27 18:28:35 +0000691};
692
Chris Lattnerf39c2782012-05-27 18:28:35 +0000693static void DecodeIITType(unsigned &NextElt, ArrayRef<unsigned char> Infos,
694 SmallVectorImpl<Intrinsic::IITDescriptor> &OutputTable) {
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +0000695 using namespace Intrinsic;
696
Chris Lattnera57c7972012-05-17 05:13:57 +0000697 IIT_Info Info = IIT_Info(Infos[NextElt++]);
Chris Lattner3e34a7b2012-05-17 05:03:24 +0000698 unsigned StructElts = 2;
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000699
Chris Lattnera57c7972012-05-17 05:13:57 +0000700 switch (Info) {
Chris Lattnerf39c2782012-05-27 18:28:35 +0000701 case IIT_Done:
702 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Void, 0));
703 return;
Andrew Tricka2efd992013-10-31 17:18:11 +0000704 case IIT_VARARG:
705 OutputTable.push_back(IITDescriptor::get(IITDescriptor::VarArg, 0));
706 return;
Chris Lattnerf39c2782012-05-27 18:28:35 +0000707 case IIT_MMX:
708 OutputTable.push_back(IITDescriptor::get(IITDescriptor::MMX, 0));
709 return;
Joseph Tremoulet917c7382015-09-02 13:36:25 +0000710 case IIT_TOKEN:
711 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Token, 0));
712 return;
Chris Lattnerf39c2782012-05-27 18:28:35 +0000713 case IIT_METADATA:
714 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Metadata, 0));
715 return;
Michael Ilseman6c6d7152013-01-11 01:45:05 +0000716 case IIT_F16:
717 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Half, 0));
718 return;
Chris Lattnerf39c2782012-05-27 18:28:35 +0000719 case IIT_F32:
720 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Float, 0));
721 return;
722 case IIT_F64:
723 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Double, 0));
724 return;
Stefan Pintilie83a5fe12018-07-09 18:50:06 +0000725 case IIT_F128:
726 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Quad, 0));
727 return;
Chris Lattnerf39c2782012-05-27 18:28:35 +0000728 case IIT_I1:
729 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 1));
730 return;
731 case IIT_I8:
732 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 8));
733 return;
734 case IIT_I16:
735 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer,16));
736 return;
737 case IIT_I32:
738 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 32));
739 return;
740 case IIT_I64:
741 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 64));
742 return;
Kit Barton66460332015-05-25 15:49:26 +0000743 case IIT_I128:
744 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 128));
745 return;
Jiangning Liu63dc8402013-09-24 02:47:27 +0000746 case IIT_V1:
747 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 1));
748 DecodeIITType(NextElt, Infos, OutputTable);
749 return;
Chris Lattner827b2532012-05-17 04:30:58 +0000750 case IIT_V2:
Chris Lattnerf39c2782012-05-27 18:28:35 +0000751 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 2));
752 DecodeIITType(NextElt, Infos, OutputTable);
753 return;
Chris Lattner827b2532012-05-17 04:30:58 +0000754 case IIT_V4:
Chris Lattnerf39c2782012-05-27 18:28:35 +0000755 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 4));
756 DecodeIITType(NextElt, Infos, OutputTable);
757 return;
Chris Lattner827b2532012-05-17 04:30:58 +0000758 case IIT_V8:
Chris Lattnerf39c2782012-05-27 18:28:35 +0000759 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 8));
760 DecodeIITType(NextElt, Infos, OutputTable);
761 return;
Chris Lattner827b2532012-05-17 04:30:58 +0000762 case IIT_V16:
Chris Lattnerf39c2782012-05-27 18:28:35 +0000763 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 16));
764 DecodeIITType(NextElt, Infos, OutputTable);
765 return;
Chris Lattner3e34a7b2012-05-17 05:03:24 +0000766 case IIT_V32:
Chris Lattnerf39c2782012-05-27 18:28:35 +0000767 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 32));
768 DecodeIITType(NextElt, Infos, OutputTable);
769 return;
Robert Khasanovb25e5622014-09-30 11:32:22 +0000770 case IIT_V64:
771 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 64));
772 DecodeIITType(NextElt, Infos, OutputTable);
773 return;
Krzysztof Parzyszekb8bb90b2015-11-24 16:28:14 +0000774 case IIT_V512:
775 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 512));
776 DecodeIITType(NextElt, Infos, OutputTable);
777 return;
778 case IIT_V1024:
779 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Vector, 1024));
780 DecodeIITType(NextElt, Infos, OutputTable);
781 return;
Chris Lattner4f18aa82012-05-23 05:19:18 +0000782 case IIT_PTR:
Chris Lattnerf39c2782012-05-27 18:28:35 +0000783 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Pointer, 0));
784 DecodeIITType(NextElt, Infos, OutputTable);
785 return;
Chris Lattner4f18aa82012-05-23 05:19:18 +0000786 case IIT_ANYPTR: { // [ANYPTR addrspace, subtype]
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000787 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Pointer,
Chris Lattnerf39c2782012-05-27 18:28:35 +0000788 Infos[NextElt++]));
789 DecodeIITType(NextElt, Infos, OutputTable);
790 return;
Pete Cooper243efd72012-05-21 23:21:28 +0000791 }
Chris Lattnerf39c2782012-05-27 18:28:35 +0000792 case IIT_ARG: {
793 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]);
794 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Argument, ArgInfo));
795 return;
796 }
Tim Northoveraa3cf1e2014-03-28 12:31:39 +0000797 case IIT_EXTEND_ARG: {
Chris Lattnerf39c2782012-05-27 18:28:35 +0000798 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]);
Tim Northoveraa3cf1e2014-03-28 12:31:39 +0000799 OutputTable.push_back(IITDescriptor::get(IITDescriptor::ExtendArgument,
Chris Lattnerf39c2782012-05-27 18:28:35 +0000800 ArgInfo));
801 return;
802 }
Tim Northoveraa3cf1e2014-03-28 12:31:39 +0000803 case IIT_TRUNC_ARG: {
Chris Lattnerf39c2782012-05-27 18:28:35 +0000804 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]);
Tim Northoveraa3cf1e2014-03-28 12:31:39 +0000805 OutputTable.push_back(IITDescriptor::get(IITDescriptor::TruncArgument,
Chris Lattnerf39c2782012-05-27 18:28:35 +0000806 ArgInfo));
807 return;
Chris Lattner3e34a7b2012-05-17 05:03:24 +0000808 }
Tim Northover4516de32014-03-29 07:04:54 +0000809 case IIT_HALF_VEC_ARG: {
810 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]);
811 OutputTable.push_back(IITDescriptor::get(IITDescriptor::HalfVecArgument,
812 ArgInfo));
813 return;
814 }
Elena Demikhovskyf1de34b2014-12-04 09:40:44 +0000815 case IIT_SAME_VEC_WIDTH_ARG: {
816 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]);
817 OutputTable.push_back(IITDescriptor::get(IITDescriptor::SameVecWidthArgument,
818 ArgInfo));
819 return;
820 }
Elena Demikhovskyfb81b932014-12-25 07:49:20 +0000821 case IIT_PTR_TO_ARG: {
822 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]);
823 OutputTable.push_back(IITDescriptor::get(IITDescriptor::PtrToArgument,
824 ArgInfo));
825 return;
826 }
Elena Demikhovskycaaceef2016-11-03 03:23:55 +0000827 case IIT_PTR_TO_ELT: {
828 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]);
829 OutputTable.push_back(IITDescriptor::get(IITDescriptor::PtrToElt, ArgInfo));
830 return;
831 }
Elad Cohenef5798a2017-05-03 12:28:54 +0000832 case IIT_VEC_OF_ANYPTRS_TO_ELT: {
833 unsigned short ArgNo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]);
834 unsigned short RefNo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]);
835 OutputTable.push_back(
836 IITDescriptor::get(IITDescriptor::VecOfAnyPtrsToElt, ArgNo, RefNo));
Elena Demikhovsky23a485a2015-02-08 08:27:19 +0000837 return;
838 }
Chris Lattnerf39c2782012-05-27 18:28:35 +0000839 case IIT_EMPTYSTRUCT:
840 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Struct, 0));
841 return;
Artem Belevich786ca6a2017-10-12 17:40:00 +0000842 case IIT_STRUCT8: ++StructElts; LLVM_FALLTHROUGH;
843 case IIT_STRUCT7: ++StructElts; LLVM_FALLTHROUGH;
844 case IIT_STRUCT6: ++StructElts; LLVM_FALLTHROUGH;
Justin Bognercd1d5aa2016-08-17 20:30:52 +0000845 case IIT_STRUCT5: ++StructElts; LLVM_FALLTHROUGH;
846 case IIT_STRUCT4: ++StructElts; LLVM_FALLTHROUGH;
847 case IIT_STRUCT3: ++StructElts; LLVM_FALLTHROUGH;
Chris Lattner3e34a7b2012-05-17 05:03:24 +0000848 case IIT_STRUCT2: {
Chris Lattnerf39c2782012-05-27 18:28:35 +0000849 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Struct,StructElts));
850
Chris Lattner3e34a7b2012-05-17 05:03:24 +0000851 for (unsigned i = 0; i != StructElts; ++i)
Chris Lattnerf39c2782012-05-27 18:28:35 +0000852 DecodeIITType(NextElt, Infos, OutputTable);
853 return;
Chris Lattner827b2532012-05-17 04:30:58 +0000854 }
Chris Lattner7f0e7ba2012-05-16 06:34:44 +0000855 }
856 llvm_unreachable("unhandled");
857}
Chris Lattner7f0e7ba2012-05-16 06:34:44 +0000858
Chris Lattnerf39c2782012-05-27 18:28:35 +0000859#define GET_INTRINSIC_GENERATOR_GLOBAL
Reid Klecknerf5890e42018-06-23 02:02:38 +0000860#include "llvm/IR/IntrinsicImpl.inc"
Chris Lattnerf39c2782012-05-27 18:28:35 +0000861#undef GET_INTRINSIC_GENERATOR_GLOBAL
862
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000863void Intrinsic::getIntrinsicInfoTableEntries(ID id,
Chris Lattnerf39c2782012-05-27 18:28:35 +0000864 SmallVectorImpl<IITDescriptor> &T){
Chris Lattner7f0e7ba2012-05-16 06:34:44 +0000865 // Check to see if the intrinsic's type was expressible by the table.
866 unsigned TableVal = IIT_Table[id-1];
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000867
Chris Lattnera3b0f522012-05-17 15:55:41 +0000868 // Decode the TableVal into an array of IITValues.
869 SmallVector<unsigned char, 8> IITValues;
870 ArrayRef<unsigned char> IITEntries;
871 unsigned NextElt = 0;
872 if ((TableVal >> 31) != 0) {
873 // This is an offset into the IIT_LongEncodingTable.
874 IITEntries = IIT_LongEncodingTable;
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000875
Chris Lattnera3b0f522012-05-17 15:55:41 +0000876 // Strip sentinel bit.
877 NextElt = (TableVal << 1) >> 1;
878 } else {
Chris Lattnerf39c2782012-05-27 18:28:35 +0000879 // Decode the TableVal into an array of IITValues. If the entry was encoded
880 // into a single word in the table itself, decode it now.
Chris Lattnera57c7972012-05-17 05:13:57 +0000881 do {
882 IITValues.push_back(TableVal & 0xF);
883 TableVal >>= 4;
884 } while (TableVal);
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000885
Chris Lattnera3b0f522012-05-17 15:55:41 +0000886 IITEntries = IITValues;
887 NextElt = 0;
Chris Lattner7f0e7ba2012-05-16 06:34:44 +0000888 }
Chris Lattnerf39c2782012-05-27 18:28:35 +0000889
890 // Okay, decode the table into the output vector of IITDescriptors.
891 DecodeIITType(NextElt, IITEntries, T);
892 while (NextElt != IITEntries.size() && IITEntries[NextElt] != 0)
893 DecodeIITType(NextElt, IITEntries, T);
894}
895
Chris Lattnerf39c2782012-05-27 18:28:35 +0000896static Type *DecodeFixedType(ArrayRef<Intrinsic::IITDescriptor> &Infos,
897 ArrayRef<Type*> Tys, LLVMContext &Context) {
898 using namespace Intrinsic;
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +0000899
Chris Lattnerf39c2782012-05-27 18:28:35 +0000900 IITDescriptor D = Infos.front();
901 Infos = Infos.slice(1);
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000902
Chris Lattnerf39c2782012-05-27 18:28:35 +0000903 switch (D.Kind) {
904 case IITDescriptor::Void: return Type::getVoidTy(Context);
Andrew Tricka2efd992013-10-31 17:18:11 +0000905 case IITDescriptor::VarArg: return Type::getVoidTy(Context);
Chris Lattnerf39c2782012-05-27 18:28:35 +0000906 case IITDescriptor::MMX: return Type::getX86_MMXTy(Context);
Joseph Tremoulet917c7382015-09-02 13:36:25 +0000907 case IITDescriptor::Token: return Type::getTokenTy(Context);
Chris Lattnerf39c2782012-05-27 18:28:35 +0000908 case IITDescriptor::Metadata: return Type::getMetadataTy(Context);
Michael Ilseman6c6d7152013-01-11 01:45:05 +0000909 case IITDescriptor::Half: return Type::getHalfTy(Context);
Chris Lattnerf39c2782012-05-27 18:28:35 +0000910 case IITDescriptor::Float: return Type::getFloatTy(Context);
911 case IITDescriptor::Double: return Type::getDoubleTy(Context);
Stefan Pintilie83a5fe12018-07-09 18:50:06 +0000912 case IITDescriptor::Quad: return Type::getFP128Ty(Context);
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000913
Chris Lattnerf39c2782012-05-27 18:28:35 +0000914 case IITDescriptor::Integer:
915 return IntegerType::get(Context, D.Integer_Width);
916 case IITDescriptor::Vector:
917 return VectorType::get(DecodeFixedType(Infos, Tys, Context),D.Vector_Width);
918 case IITDescriptor::Pointer:
919 return PointerType::get(DecodeFixedType(Infos, Tys, Context),
920 D.Pointer_AddressSpace);
921 case IITDescriptor::Struct: {
Artem Belevich786ca6a2017-10-12 17:40:00 +0000922 SmallVector<Type *, 8> Elts;
Chris Lattnerf39c2782012-05-27 18:28:35 +0000923 for (unsigned i = 0, e = D.Struct_NumElements; i != e; ++i)
Artem Belevich786ca6a2017-10-12 17:40:00 +0000924 Elts.push_back(DecodeFixedType(Infos, Tys, Context));
925 return StructType::get(Context, Elts);
Chris Lattnerf39c2782012-05-27 18:28:35 +0000926 }
Chris Lattnerf39c2782012-05-27 18:28:35 +0000927 case IITDescriptor::Argument:
928 return Tys[D.getArgumentNumber()];
Tim Northoveraa3cf1e2014-03-28 12:31:39 +0000929 case IITDescriptor::ExtendArgument: {
930 Type *Ty = Tys[D.getArgumentNumber()];
931 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
932 return VectorType::getExtendedElementVectorType(VTy);
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000933
Tim Northoveraa3cf1e2014-03-28 12:31:39 +0000934 return IntegerType::get(Context, 2 * cast<IntegerType>(Ty)->getBitWidth());
935 }
936 case IITDescriptor::TruncArgument: {
937 Type *Ty = Tys[D.getArgumentNumber()];
938 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
939 return VectorType::getTruncatedElementVectorType(VTy);
940
941 IntegerType *ITy = cast<IntegerType>(Ty);
942 assert(ITy->getBitWidth() % 2 == 0);
943 return IntegerType::get(Context, ITy->getBitWidth() / 2);
944 }
Tim Northover4516de32014-03-29 07:04:54 +0000945 case IITDescriptor::HalfVecArgument:
946 return VectorType::getHalfElementsVectorType(cast<VectorType>(
947 Tys[D.getArgumentNumber()]));
Elena Demikhovskyfb81b932014-12-25 07:49:20 +0000948 case IITDescriptor::SameVecWidthArgument: {
Elena Demikhovskyf1de34b2014-12-04 09:40:44 +0000949 Type *EltTy = DecodeFixedType(Infos, Tys, Context);
950 Type *Ty = Tys[D.getArgumentNumber()];
Simon Pilgrimf87226e2019-01-23 16:00:22 +0000951 if (auto *VTy = dyn_cast<VectorType>(Ty))
Elena Demikhovskyf1de34b2014-12-04 09:40:44 +0000952 return VectorType::get(EltTy, VTy->getNumElements());
Simon Pilgrimf87226e2019-01-23 16:00:22 +0000953 return EltTy;
Elena Demikhovskyfb81b932014-12-25 07:49:20 +0000954 }
955 case IITDescriptor::PtrToArgument: {
956 Type *Ty = Tys[D.getArgumentNumber()];
957 return PointerType::getUnqual(Ty);
958 }
Elena Demikhovskycaaceef2016-11-03 03:23:55 +0000959 case IITDescriptor::PtrToElt: {
960 Type *Ty = Tys[D.getArgumentNumber()];
961 VectorType *VTy = dyn_cast<VectorType>(Ty);
962 if (!VTy)
963 llvm_unreachable("Expected an argument of Vector Type");
964 Type *EltTy = VTy->getVectorElementType();
965 return PointerType::getUnqual(EltTy);
966 }
Elad Cohenef5798a2017-05-03 12:28:54 +0000967 case IITDescriptor::VecOfAnyPtrsToElt:
968 // Return the overloaded type (which determines the pointers address space)
969 return Tys[D.getOverloadArgNumber()];
Eugene Zelenkoeba7e4e2017-05-10 23:41:30 +0000970 }
Chris Lattnerf39c2782012-05-27 18:28:35 +0000971 llvm_unreachable("unhandled");
972}
973
Chris Lattnerf39c2782012-05-27 18:28:35 +0000974FunctionType *Intrinsic::getType(LLVMContext &Context,
975 ID id, ArrayRef<Type*> Tys) {
976 SmallVector<IITDescriptor, 8> Table;
977 getIntrinsicInfoTableEntries(id, Table);
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000978
Chris Lattnerf39c2782012-05-27 18:28:35 +0000979 ArrayRef<IITDescriptor> TableRef = Table;
980 Type *ResultTy = DecodeFixedType(TableRef, Tys, Context);
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000981
Chris Lattnera3b0f522012-05-17 15:55:41 +0000982 SmallVector<Type*, 8> ArgTys;
Chris Lattnerf39c2782012-05-27 18:28:35 +0000983 while (!TableRef.empty())
984 ArgTys.push_back(DecodeFixedType(TableRef, Tys, Context));
Jim Laskey2682ea62007-02-07 20:38:26 +0000985
Steven Wud05affc2014-10-20 15:47:24 +0000986 // DecodeFixedType returns Void for IITDescriptor::Void and IITDescriptor::VarArg
987 // If we see void type as the type of the last argument, it is vararg intrinsic
988 if (!ArgTys.empty() && ArgTys.back()->isVoidTy()) {
989 ArgTys.pop_back();
990 return FunctionType::get(ResultTy, ArgTys, true);
991 }
Michael Ilsemanacdb76d2012-12-17 20:37:55 +0000992 return FunctionType::get(ResultTy, ArgTys, false);
Jim Laskey2682ea62007-02-07 20:38:26 +0000993}
994
Mon P Wangb4024932009-02-24 23:17:49 +0000995bool Intrinsic::isOverloaded(ID id) {
Mon P Wangb4024932009-02-24 23:17:49 +0000996#define GET_INTRINSIC_OVERLOAD_TABLE
Reid Klecknerf5890e42018-06-23 02:02:38 +0000997#include "llvm/IR/IntrinsicImpl.inc"
Mon P Wangb4024932009-02-24 23:17:49 +0000998#undef GET_INTRINSIC_OVERLOAD_TABLE
Mon P Wangb4024932009-02-24 23:17:49 +0000999}
1000
Sanjoy Dasc65d43e2015-06-18 19:28:26 +00001001bool Intrinsic::isLeaf(ID id) {
1002 switch (id) {
1003 default:
1004 return true;
1005
1006 case Intrinsic::experimental_gc_statepoint:
1007 case Intrinsic::experimental_patchpoint_void:
1008 case Intrinsic::experimental_patchpoint_i64:
1009 return false;
1010 }
1011}
1012
Chris Lattner49b7ee12009-01-12 01:18:58 +00001013/// This defines the "Intrinsic::getAttributes(ID id)" method.
Duncan Sands38ef3a82007-12-03 20:06:50 +00001014#define GET_INTRINSIC_ATTRIBUTES
Reid Klecknerf5890e42018-06-23 02:02:38 +00001015#include "llvm/IR/IntrinsicImpl.inc"
Duncan Sands38ef3a82007-12-03 20:06:50 +00001016#undef GET_INTRINSIC_ATTRIBUTES
1017
Benjamin Kramere6e19332011-07-14 17:45:39 +00001018Function *Intrinsic::getDeclaration(Module *M, ID id, ArrayRef<Type*> Tys) {
Duncan Sands38ef3a82007-12-03 20:06:50 +00001019 // There can never be multiple globals with the same name of different types,
1020 // because intrinsics must be a specific type.
James Y Knight13680222019-02-01 02:28:03 +00001021 return cast<Function>(
1022 M->getOrInsertFunction(getName(id, Tys),
1023 getType(M->getContext(), id, Tys))
1024 .getCallee());
Jim Laskey2682ea62007-02-07 20:38:26 +00001025}
1026
Dale Johannesenb842d522009-02-05 01:49:45 +00001027// This defines the "Intrinsic::getIntrinsicForGCCBuiltin()" method.
1028#define GET_LLVM_INTRINSIC_FOR_GCC_BUILTIN
Reid Klecknerf5890e42018-06-23 02:02:38 +00001029#include "llvm/IR/IntrinsicImpl.inc"
Dale Johannesenb842d522009-02-05 01:49:45 +00001030#undef GET_LLVM_INTRINSIC_FOR_GCC_BUILTIN
1031
Saleem Abdulrasool4e63fc42014-07-04 18:42:25 +00001032// This defines the "Intrinsic::getIntrinsicForMSBuiltin()" method.
1033#define GET_LLVM_INTRINSIC_FOR_MS_BUILTIN
Reid Klecknerf5890e42018-06-23 02:02:38 +00001034#include "llvm/IR/IntrinsicImpl.inc"
Saleem Abdulrasool4e63fc42014-07-04 18:42:25 +00001035#undef GET_LLVM_INTRINSIC_FOR_MS_BUILTIN
1036
Artur Pilipenkobc552272016-06-22 14:56:33 +00001037bool Intrinsic::matchIntrinsicType(Type *Ty, ArrayRef<Intrinsic::IITDescriptor> &Infos,
1038 SmallVectorImpl<Type*> &ArgTys) {
1039 using namespace Intrinsic;
1040
1041 // If we ran out of descriptors, there are too many arguments.
1042 if (Infos.empty()) return true;
1043 IITDescriptor D = Infos.front();
1044 Infos = Infos.slice(1);
1045
1046 switch (D.Kind) {
1047 case IITDescriptor::Void: return !Ty->isVoidTy();
1048 case IITDescriptor::VarArg: return true;
1049 case IITDescriptor::MMX: return !Ty->isX86_MMXTy();
1050 case IITDescriptor::Token: return !Ty->isTokenTy();
1051 case IITDescriptor::Metadata: return !Ty->isMetadataTy();
1052 case IITDescriptor::Half: return !Ty->isHalfTy();
1053 case IITDescriptor::Float: return !Ty->isFloatTy();
1054 case IITDescriptor::Double: return !Ty->isDoubleTy();
Stefan Pintilie83a5fe12018-07-09 18:50:06 +00001055 case IITDescriptor::Quad: return !Ty->isFP128Ty();
Artur Pilipenkobc552272016-06-22 14:56:33 +00001056 case IITDescriptor::Integer: return !Ty->isIntegerTy(D.Integer_Width);
1057 case IITDescriptor::Vector: {
1058 VectorType *VT = dyn_cast<VectorType>(Ty);
1059 return !VT || VT->getNumElements() != D.Vector_Width ||
1060 matchIntrinsicType(VT->getElementType(), Infos, ArgTys);
1061 }
1062 case IITDescriptor::Pointer: {
1063 PointerType *PT = dyn_cast<PointerType>(Ty);
1064 return !PT || PT->getAddressSpace() != D.Pointer_AddressSpace ||
1065 matchIntrinsicType(PT->getElementType(), Infos, ArgTys);
1066 }
1067
1068 case IITDescriptor::Struct: {
1069 StructType *ST = dyn_cast<StructType>(Ty);
1070 if (!ST || ST->getNumElements() != D.Struct_NumElements)
1071 return true;
1072
1073 for (unsigned i = 0, e = D.Struct_NumElements; i != e; ++i)
1074 if (matchIntrinsicType(ST->getElementType(i), Infos, ArgTys))
1075 return true;
1076 return false;
1077 }
1078
1079 case IITDescriptor::Argument:
1080 // Two cases here - If this is the second occurrence of an argument, verify
1081 // that the later instance matches the previous instance.
1082 if (D.getArgumentNumber() < ArgTys.size())
1083 return Ty != ArgTys[D.getArgumentNumber()];
1084
Simon Pilgrimac5b7752019-01-23 16:01:19 +00001085 // Otherwise, if this is the first instance of an argument, record it and
1086 // verify the "Any" kind.
1087 assert(D.getArgumentNumber() == ArgTys.size() && "Table consistency error");
1088 ArgTys.push_back(Ty);
Artur Pilipenkobc552272016-06-22 14:56:33 +00001089
Simon Pilgrimac5b7752019-01-23 16:01:19 +00001090 switch (D.getArgumentKind()) {
1091 case IITDescriptor::AK_Any: return false; // Success
1092 case IITDescriptor::AK_AnyInteger: return !Ty->isIntOrIntVectorTy();
1093 case IITDescriptor::AK_AnyFloat: return !Ty->isFPOrFPVectorTy();
1094 case IITDescriptor::AK_AnyVector: return !isa<VectorType>(Ty);
1095 case IITDescriptor::AK_AnyPointer: return !isa<PointerType>(Ty);
1096 }
1097 llvm_unreachable("all argument kinds not covered");
Artur Pilipenkobc552272016-06-22 14:56:33 +00001098
1099 case IITDescriptor::ExtendArgument: {
1100 // This may only be used when referring to a previous vector argument.
1101 if (D.getArgumentNumber() >= ArgTys.size())
1102 return true;
1103
1104 Type *NewTy = ArgTys[D.getArgumentNumber()];
1105 if (VectorType *VTy = dyn_cast<VectorType>(NewTy))
1106 NewTy = VectorType::getExtendedElementVectorType(VTy);
1107 else if (IntegerType *ITy = dyn_cast<IntegerType>(NewTy))
1108 NewTy = IntegerType::get(ITy->getContext(), 2 * ITy->getBitWidth());
1109 else
1110 return true;
1111
1112 return Ty != NewTy;
1113 }
1114 case IITDescriptor::TruncArgument: {
1115 // This may only be used when referring to a previous vector argument.
1116 if (D.getArgumentNumber() >= ArgTys.size())
1117 return true;
1118
1119 Type *NewTy = ArgTys[D.getArgumentNumber()];
1120 if (VectorType *VTy = dyn_cast<VectorType>(NewTy))
1121 NewTy = VectorType::getTruncatedElementVectorType(VTy);
1122 else if (IntegerType *ITy = dyn_cast<IntegerType>(NewTy))
1123 NewTy = IntegerType::get(ITy->getContext(), ITy->getBitWidth() / 2);
1124 else
1125 return true;
1126
1127 return Ty != NewTy;
1128 }
1129 case IITDescriptor::HalfVecArgument:
1130 // This may only be used when referring to a previous vector argument.
1131 return D.getArgumentNumber() >= ArgTys.size() ||
1132 !isa<VectorType>(ArgTys[D.getArgumentNumber()]) ||
1133 VectorType::getHalfElementsVectorType(
1134 cast<VectorType>(ArgTys[D.getArgumentNumber()])) != Ty;
1135 case IITDescriptor::SameVecWidthArgument: {
1136 if (D.getArgumentNumber() >= ArgTys.size())
1137 return true;
Simon Pilgrimf87226e2019-01-23 16:00:22 +00001138 auto *ReferenceType = dyn_cast<VectorType>(ArgTys[D.getArgumentNumber()]);
1139 auto *ThisArgType = dyn_cast<VectorType>(Ty);
1140 // Both must be vectors of the same number of elements or neither.
1141 if ((ReferenceType != nullptr) != (ThisArgType != nullptr))
Artur Pilipenkobc552272016-06-22 14:56:33 +00001142 return true;
Simon Pilgrimf87226e2019-01-23 16:00:22 +00001143 Type *EltTy = Ty;
1144 if (ThisArgType) {
1145 if (ReferenceType->getVectorNumElements() !=
1146 ThisArgType->getVectorNumElements())
1147 return true;
1148 EltTy = ThisArgType->getVectorElementType();
1149 }
1150 return matchIntrinsicType(EltTy, Infos, ArgTys);
Artur Pilipenkobc552272016-06-22 14:56:33 +00001151 }
1152 case IITDescriptor::PtrToArgument: {
1153 if (D.getArgumentNumber() >= ArgTys.size())
1154 return true;
1155 Type * ReferenceType = ArgTys[D.getArgumentNumber()];
1156 PointerType *ThisArgType = dyn_cast<PointerType>(Ty);
1157 return (!ThisArgType || ThisArgType->getElementType() != ReferenceType);
1158 }
Elena Demikhovskycaaceef2016-11-03 03:23:55 +00001159 case IITDescriptor::PtrToElt: {
1160 if (D.getArgumentNumber() >= ArgTys.size())
1161 return true;
1162 VectorType * ReferenceType =
1163 dyn_cast<VectorType> (ArgTys[D.getArgumentNumber()]);
1164 PointerType *ThisArgType = dyn_cast<PointerType>(Ty);
1165
1166 return (!ThisArgType || !ReferenceType ||
1167 ThisArgType->getElementType() != ReferenceType->getElementType());
1168 }
Elad Cohenef5798a2017-05-03 12:28:54 +00001169 case IITDescriptor::VecOfAnyPtrsToElt: {
1170 unsigned RefArgNumber = D.getRefArgNumber();
1171
1172 // This may only be used when referring to a previous argument.
1173 if (RefArgNumber >= ArgTys.size())
Artur Pilipenkobc552272016-06-22 14:56:33 +00001174 return true;
Elad Cohenef5798a2017-05-03 12:28:54 +00001175
1176 // Record the overloaded type
1177 assert(D.getOverloadArgNumber() == ArgTys.size() &&
1178 "Table consistency error");
1179 ArgTys.push_back(Ty);
1180
1181 // Verify the overloaded type "matches" the Ref type.
1182 // i.e. Ty is a vector with the same width as Ref.
1183 // Composed of pointers to the same element type as Ref.
1184 VectorType *ReferenceType = dyn_cast<VectorType>(ArgTys[RefArgNumber]);
Artur Pilipenkobc552272016-06-22 14:56:33 +00001185 VectorType *ThisArgVecTy = dyn_cast<VectorType>(Ty);
1186 if (!ThisArgVecTy || !ReferenceType ||
1187 (ReferenceType->getVectorNumElements() !=
1188 ThisArgVecTy->getVectorNumElements()))
1189 return true;
1190 PointerType *ThisArgEltTy =
1191 dyn_cast<PointerType>(ThisArgVecTy->getVectorElementType());
1192 if (!ThisArgEltTy)
1193 return true;
1194 return ThisArgEltTy->getElementType() !=
1195 ReferenceType->getVectorElementType();
1196 }
1197 }
1198 llvm_unreachable("unhandled");
1199}
1200
Artur Pilipenkob68b8212016-06-24 14:47:27 +00001201bool
1202Intrinsic::matchIntrinsicVarArg(bool isVarArg,
1203 ArrayRef<Intrinsic::IITDescriptor> &Infos) {
1204 // If there are no descriptors left, then it can't be a vararg.
1205 if (Infos.empty())
1206 return isVarArg;
1207
1208 // There should be only one descriptor remaining at this point.
1209 if (Infos.size() != 1)
1210 return true;
1211
1212 // Check and verify the descriptor.
1213 IITDescriptor D = Infos.front();
1214 Infos = Infos.slice(1);
1215 if (D.Kind == IITDescriptor::VarArg)
1216 return !isVarArg;
1217
1218 return true;
1219}
1220
Artur Pilipenko6c7a8ab2016-06-24 15:10:29 +00001221Optional<Function*> Intrinsic::remangleIntrinsicFunction(Function *F) {
1222 Intrinsic::ID ID = F->getIntrinsicID();
1223 if (!ID)
1224 return None;
1225
1226 FunctionType *FTy = F->getFunctionType();
1227 // Accumulate an array of overloaded types for the given intrinsic
1228 SmallVector<Type *, 4> ArgTys;
1229 {
1230 SmallVector<Intrinsic::IITDescriptor, 8> Table;
1231 getIntrinsicInfoTableEntries(ID, Table);
1232 ArrayRef<Intrinsic::IITDescriptor> TableRef = Table;
1233
1234 // If we encounter any problems matching the signature with the descriptor
1235 // just give up remangling. It's up to verifier to report the discrepancy.
1236 if (Intrinsic::matchIntrinsicType(FTy->getReturnType(), TableRef, ArgTys))
1237 return None;
1238 for (auto Ty : FTy->params())
1239 if (Intrinsic::matchIntrinsicType(Ty, TableRef, ArgTys))
1240 return None;
1241 if (Intrinsic::matchIntrinsicVarArg(FTy->isVarArg(), TableRef))
1242 return None;
1243 }
1244
1245 StringRef Name = F->getName();
1246 if (Name == Intrinsic::getName(ID, ArgTys))
1247 return None;
1248
1249 auto NewDecl = Intrinsic::getDeclaration(F->getParent(), ID, ArgTys);
1250 NewDecl->setCallingConv(F->getCallingConv());
1251 assert(NewDecl->getFunctionType() == FTy && "Shouldn't change the signature");
1252 return NewDecl;
1253}
1254
Gabor Greif161cb042010-03-23 14:40:20 +00001255/// hasAddressTaken - returns true if there are any uses of this function
1256/// other than direct calls or invokes to it.
Gabor Greifa2fbc0a2010-03-24 13:21:49 +00001257bool Function::hasAddressTaken(const User* *PutOffender) const {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001258 for (const Use &U : uses()) {
1259 const User *FU = U.getUser();
1260 if (isa<BlockAddress>(FU))
Jay Foadca0c4992012-05-12 08:30:16 +00001261 continue;
Chandler Carruth90c09232019-01-07 07:31:49 +00001262 const auto *Call = dyn_cast<CallBase>(FU);
1263 if (!Call) {
Richard Trieu7a083812016-02-18 22:09:30 +00001264 if (PutOffender)
1265 *PutOffender = FU;
1266 return true;
1267 }
Chandler Carruth90c09232019-01-07 07:31:49 +00001268 if (!Call->isCallee(&U)) {
Richard Trieu7a083812016-02-18 22:09:30 +00001269 if (PutOffender)
1270 *PutOffender = FU;
1271 return true;
1272 }
Jay Foad557169d2009-06-10 08:41:11 +00001273 }
1274 return false;
1275}
1276
Eli Friedman1923a332011-10-20 05:23:42 +00001277bool Function::isDefTriviallyDead() const {
1278 // Check the linkage
1279 if (!hasLinkOnceLinkage() && !hasLocalLinkage() &&
1280 !hasAvailableExternallyLinkage())
1281 return false;
1282
1283 // Check if the function is used by anything other than a blockaddress.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001284 for (const User *U : users())
1285 if (!isa<BlockAddress>(U))
Eli Friedman1923a332011-10-20 05:23:42 +00001286 return false;
1287
1288 return true;
1289}
1290
Bill Wendling63a4ea12011-10-17 18:43:40 +00001291/// callsFunctionThatReturnsTwice - Return true if the function has a call to
1292/// setjmp or other function that gcc recognizes as "returning twice".
1293bool Function::callsFunctionThatReturnsTwice() const {
Chandler Carruth90c09232019-01-07 07:31:49 +00001294 for (const Instruction &I : instructions(this))
1295 if (const auto *Call = dyn_cast<CallBase>(&I))
1296 if (Call->hasFnAttr(Attribute::ReturnsTwice))
1297 return true;
Bill Wendling63a4ea12011-10-17 18:43:40 +00001298
1299 return false;
1300}
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001301
Vedant Kumar3a63fb32015-12-19 08:52:49 +00001302Constant *Function::getPersonalityFn() const {
1303 assert(hasPersonalityFn() && getNumOperands());
1304 return cast<Constant>(Op<0>());
Vedant Kumar1ab5ea52015-10-06 20:31:57 +00001305}
1306
Vedant Kumar3a63fb32015-12-19 08:52:49 +00001307void Function::setPersonalityFn(Constant *Fn) {
Keno Fischer9bc46b12015-12-23 18:27:23 +00001308 setHungoffOperand<0>(Fn);
Vedant Kumar3a63fb32015-12-19 08:52:49 +00001309 setValueSubclassDataBit(3, Fn != nullptr);
Vedant Kumar1ab5ea52015-10-06 20:31:57 +00001310}
1311
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001312Constant *Function::getPrefixData() const {
Vedant Kumar3a63fb32015-12-19 08:52:49 +00001313 assert(hasPrefixData() && getNumOperands());
1314 return cast<Constant>(Op<1>());
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001315}
1316
1317void Function::setPrefixData(Constant *PrefixData) {
Keno Fischer9bc46b12015-12-23 18:27:23 +00001318 setHungoffOperand<1>(PrefixData);
Vedant Kumar3a63fb32015-12-19 08:52:49 +00001319 setValueSubclassDataBit(1, PrefixData != nullptr);
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001320}
Peter Collingbourne51d2de72014-12-03 02:08:38 +00001321
1322Constant *Function::getPrologueData() const {
Vedant Kumar3a63fb32015-12-19 08:52:49 +00001323 assert(hasPrologueData() && getNumOperands());
1324 return cast<Constant>(Op<2>());
Peter Collingbourne51d2de72014-12-03 02:08:38 +00001325}
1326
1327void Function::setPrologueData(Constant *PrologueData) {
Keno Fischer9bc46b12015-12-23 18:27:23 +00001328 setHungoffOperand<2>(PrologueData);
Vedant Kumar3a63fb32015-12-19 08:52:49 +00001329 setValueSubclassDataBit(2, PrologueData != nullptr);
1330}
1331
1332void Function::allocHungoffUselist() {
1333 // If we've already allocated a uselist, stop here.
1334 if (getNumOperands())
Peter Collingbourne51d2de72014-12-03 02:08:38 +00001335 return;
1336
Vedant Kumar3a63fb32015-12-19 08:52:49 +00001337 allocHungoffUses(3, /*IsPhi=*/ false);
1338 setNumHungOffUseOperands(3);
1339
1340 // Initialize the uselist with placeholder operands to allow traversal.
1341 auto *CPN = ConstantPointerNull::get(Type::getInt1PtrTy(getContext(), 0));
1342 Op<0>().set(CPN);
1343 Op<1>().set(CPN);
1344 Op<2>().set(CPN);
1345}
1346
1347template <int Idx>
1348void Function::setHungoffOperand(Constant *C) {
Keno Fischer9bc46b12015-12-23 18:27:23 +00001349 if (C) {
1350 allocHungoffUselist();
1351 Op<Idx>().set(C);
1352 } else if (getNumOperands()) {
1353 Op<Idx>().set(
1354 ConstantPointerNull::get(Type::getInt1PtrTy(getContext(), 0)));
1355 }
Vedant Kumar3a63fb32015-12-19 08:52:49 +00001356}
1357
1358void Function::setValueSubclassDataBit(unsigned Bit, bool On) {
1359 assert(Bit < 16 && "SubclassData contains only 16 bits");
1360 if (On)
1361 setValueSubclassData(getSubclassDataFromValue() | (1 << Bit));
1362 else
1363 setValueSubclassData(getSubclassDataFromValue() & ~(1 << Bit));
Peter Collingbourne51d2de72014-12-03 02:08:38 +00001364}
Akira Hatanaka3058d0f2015-05-06 23:54:14 +00001365
Easwaran Ramane5b8de22018-01-17 22:24:23 +00001366void Function::setEntryCount(ProfileCount Count,
Dehao Chena60cdd32017-02-28 18:09:44 +00001367 const DenseSet<GlobalValue::GUID> *S) {
Easwaran Ramane5b8de22018-01-17 22:24:23 +00001368 assert(Count.hasValue());
1369#if !defined(NDEBUG)
1370 auto PrevCount = getEntryCount();
1371 assert(!PrevCount.hasValue() || PrevCount.getType() == Count.getType());
1372#endif
Diego Novillo2567f3d2015-05-13 15:13:45 +00001373 MDBuilder MDB(getContext());
Easwaran Ramane5b8de22018-01-17 22:24:23 +00001374 setMetadata(
1375 LLVMContext::MD_prof,
1376 MDB.createFunctionEntryCount(Count.getCount(), Count.isSynthetic(), S));
Diego Novillo2567f3d2015-05-13 15:13:45 +00001377}
1378
Easwaran Ramane5b8de22018-01-17 22:24:23 +00001379void Function::setEntryCount(uint64_t Count, Function::ProfileCountType Type,
1380 const DenseSet<GlobalValue::GUID> *Imports) {
1381 setEntryCount(ProfileCount(Count, Type), Imports);
1382}
1383
Xinliang David Li499c80b2019-04-24 19:51:16 +00001384ProfileCount Function::getEntryCount(bool AllowSynthetic) const {
Diego Novillo2567f3d2015-05-13 15:13:45 +00001385 MDNode *MD = getMetadata(LLVMContext::MD_prof);
1386 if (MD && MD->getOperand(0))
Easwaran Ramane5b8de22018-01-17 22:24:23 +00001387 if (MDString *MDS = dyn_cast<MDString>(MD->getOperand(0))) {
Diego Novillo2567f3d2015-05-13 15:13:45 +00001388 if (MDS->getString().equals("function_entry_count")) {
1389 ConstantInt *CI = mdconst::extract<ConstantInt>(MD->getOperand(1));
David Callahanc1c810d2016-08-05 18:38:19 +00001390 uint64_t Count = CI->getValue().getZExtValue();
Teresa Johnson915897e2017-12-18 20:02:43 +00001391 // A value of -1 is used for SamplePGO when there were no samples.
1392 // Treat this the same as unknown.
1393 if (Count == (uint64_t)-1)
Easwaran Ramane5b8de22018-01-17 22:24:23 +00001394 return ProfileCount::getInvalid();
1395 return ProfileCount(Count, PCT_Real);
Xinliang David Li499c80b2019-04-24 19:51:16 +00001396 } else if (AllowSynthetic &&
1397 MDS->getString().equals("synthetic_function_entry_count")) {
Easwaran Ramane5b8de22018-01-17 22:24:23 +00001398 ConstantInt *CI = mdconst::extract<ConstantInt>(MD->getOperand(1));
1399 uint64_t Count = CI->getValue().getZExtValue();
1400 return ProfileCount(Count, PCT_Synthetic);
Diego Novillo2567f3d2015-05-13 15:13:45 +00001401 }
Easwaran Ramane5b8de22018-01-17 22:24:23 +00001402 }
1403 return ProfileCount::getInvalid();
Diego Novillo2567f3d2015-05-13 15:13:45 +00001404}
Dehao Chen302b69c2016-10-18 20:42:47 +00001405
Dehao Chena60cdd32017-02-28 18:09:44 +00001406DenseSet<GlobalValue::GUID> Function::getImportGUIDs() const {
1407 DenseSet<GlobalValue::GUID> R;
1408 if (MDNode *MD = getMetadata(LLVMContext::MD_prof))
1409 if (MDString *MDS = dyn_cast<MDString>(MD->getOperand(0)))
1410 if (MDS->getString().equals("function_entry_count"))
1411 for (unsigned i = 2; i < MD->getNumOperands(); i++)
1412 R.insert(mdconst::extract<ConstantInt>(MD->getOperand(i))
1413 ->getValue()
1414 .getZExtValue());
1415 return R;
1416}
1417
Dehao Chen302b69c2016-10-18 20:42:47 +00001418void Function::setSectionPrefix(StringRef Prefix) {
1419 MDBuilder MDB(getContext());
1420 setMetadata(LLVMContext::MD_section_prefix,
1421 MDB.createFunctionSectionPrefix(Prefix));
1422}
1423
1424Optional<StringRef> Function::getSectionPrefix() const {
1425 if (MDNode *MD = getMetadata(LLVMContext::MD_section_prefix)) {
Craig Topper781aa182018-05-05 01:57:00 +00001426 assert(cast<MDString>(MD->getOperand(0))
Dehao Chen302b69c2016-10-18 20:42:47 +00001427 ->getString()
1428 .equals("function_section_prefix") &&
1429 "Metadata not match");
Craig Topper781aa182018-05-05 01:57:00 +00001430 return cast<MDString>(MD->getOperand(1))->getString();
Dehao Chen302b69c2016-10-18 20:42:47 +00001431 }
1432 return None;
1433}
Manoj Gupta77eeac32018-07-09 22:27:23 +00001434
1435bool Function::nullPointerIsDefined() const {
1436 return getFnAttribute("null-pointer-is-valid")
1437 .getValueAsString()
1438 .equals("true");
1439}
1440
1441bool llvm::NullPointerIsDefined(const Function *F, unsigned AS) {
1442 if (F && F->nullPointerIsDefined())
1443 return true;
1444
1445 if (AS != 0)
1446 return true;
1447
1448 return false;
1449}