LLVM 23.0.0git
Intrinsics.cpp
Go to the documentation of this file.
1//===-- Intrinsics.cpp - Intrinsic Function Handling ------------*- C++ -*-===//
2//
3// 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
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements functions required for supporting intrinsic functions.
10//
11//===----------------------------------------------------------------------===//
12
13#include "llvm/IR/Intrinsics.h"
17#include "llvm/IR/Function.h"
18#include "llvm/IR/IntrinsicsAArch64.h"
19#include "llvm/IR/IntrinsicsAMDGPU.h"
20#include "llvm/IR/IntrinsicsARM.h"
21#include "llvm/IR/IntrinsicsBPF.h"
22#include "llvm/IR/IntrinsicsHexagon.h"
23#include "llvm/IR/IntrinsicsLoongArch.h"
24#include "llvm/IR/IntrinsicsMips.h"
25#include "llvm/IR/IntrinsicsNVPTX.h"
26#include "llvm/IR/IntrinsicsPowerPC.h"
27#include "llvm/IR/IntrinsicsR600.h"
28#include "llvm/IR/IntrinsicsRISCV.h"
29#include "llvm/IR/IntrinsicsS390.h"
30#include "llvm/IR/IntrinsicsSPIRV.h"
31#include "llvm/IR/IntrinsicsVE.h"
32#include "llvm/IR/IntrinsicsX86.h"
33#include "llvm/IR/IntrinsicsXCore.h"
34#include "llvm/IR/Module.h"
36#include "llvm/IR/Type.h"
39
40using namespace llvm;
41
42// Forward declaration of static functions.
43static bool isSignatureValid(FunctionType *FTy,
45 unsigned NumArgs, bool IsVarArg,
46 SmallVectorImpl<Type *> &OverloadTys,
47 raw_ostream &OS);
48
49/// Table of string intrinsic names indexed by enum value.
50#define GET_INTRINSIC_NAME_TABLE
51#include "llvm/IR/IntrinsicImpl.inc"
52
54 assert(id < num_intrinsics && "Invalid intrinsic ID!");
55 return IntrinsicNameTable[IntrinsicNameOffsetTable[id]];
56}
57
59 assert(id < num_intrinsics && "Invalid intrinsic ID!");
61 "This version of getName does not support overloading");
62 return getBaseName(id);
63}
64
65/// Returns a stable mangling for the type specified for use in the name
66/// mangling scheme used by 'any' types in intrinsic signatures. The mangling
67/// of named types is simply their name. Manglings for unnamed types consist
68/// of a prefix ('p' for pointers, 'a' for arrays, 'f_' for functions)
69/// combined with the mangling of their component types. A vararg function
70/// type will have a suffix of 'vararg'. Since function types can contain
71/// other function types, we close a function type mangling with suffix 'f'
72/// which can't be confused with it's prefix. This ensures we don't have
73/// collisions between two unrelated function types. Otherwise, you might
74/// parse ffXX as f(fXX) or f(fX)X. (X is a placeholder for any other type.)
75/// The HasUnnamedType boolean is set if an unnamed type was encountered,
76/// indicating that extra care must be taken to ensure a unique name.
77static std::string getMangledTypeStr(Type *Ty, bool &HasUnnamedType) {
78 std::string Result;
79 if (PointerType *PTyp = dyn_cast<PointerType>(Ty)) {
80 Result += "p" + utostr(PTyp->getAddressSpace());
81 } else if (ArrayType *ATyp = dyn_cast<ArrayType>(Ty)) {
82 Result += "a" + utostr(ATyp->getNumElements()) +
83 getMangledTypeStr(ATyp->getElementType(), HasUnnamedType);
84 } else if (StructType *STyp = dyn_cast<StructType>(Ty)) {
85 if (!STyp->isLiteral()) {
86 Result += "s_";
87 if (STyp->hasName())
88 Result += STyp->getName();
89 else
90 HasUnnamedType = true;
91 } else {
92 Result += "sl_";
93 for (auto *Elem : STyp->elements())
94 Result += getMangledTypeStr(Elem, HasUnnamedType);
95 }
96 // Ensure nested structs are distinguishable.
97 Result += "s";
98 } else if (FunctionType *FT = dyn_cast<FunctionType>(Ty)) {
99 Result += "f_" + getMangledTypeStr(FT->getReturnType(), HasUnnamedType);
100 for (size_t i = 0; i < FT->getNumParams(); i++)
101 Result += getMangledTypeStr(FT->getParamType(i), HasUnnamedType);
102 if (FT->isVarArg())
103 Result += "vararg";
104 // Ensure nested function types are distinguishable.
105 Result += "f";
106 } else if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
107 ElementCount EC = VTy->getElementCount();
108 if (EC.isScalable())
109 Result += "nx";
110 Result += "v" + utostr(EC.getKnownMinValue()) +
111 getMangledTypeStr(VTy->getElementType(), HasUnnamedType);
112 } else if (TargetExtType *TETy = dyn_cast<TargetExtType>(Ty)) {
113 Result += "t";
114 Result += TETy->getName();
115 for (Type *ParamTy : TETy->type_params())
116 Result += "_" + getMangledTypeStr(ParamTy, HasUnnamedType);
117 for (unsigned IntParam : TETy->int_params())
118 Result += "_" + utostr(IntParam);
119 // Ensure nested target extension types are distinguishable.
120 Result += "t";
121 } else if (Ty) {
122 switch (Ty->getTypeID()) {
123 default:
124 llvm_unreachable("Unhandled type");
125 case Type::VoidTyID:
126 Result += "isVoid";
127 break;
129 Result += "Metadata";
130 break;
131 case Type::HalfTyID:
132 Result += "f16";
133 break;
134 case Type::BFloatTyID:
135 Result += "bf16";
136 break;
137 case Type::FloatTyID:
138 Result += "f32";
139 break;
140 case Type::DoubleTyID:
141 Result += "f64";
142 break;
144 Result += "f80";
145 break;
146 case Type::FP128TyID:
147 Result += "f128";
148 break;
150 Result += "ppcf128";
151 break;
153 Result += "x86amx";
154 break;
156 Result += "i" + utostr(cast<IntegerType>(Ty)->getBitWidth());
157 break;
158 case Type::ByteTyID:
159 Result += "b" + utostr(cast<ByteType>(Ty)->getBitWidth());
160 break;
161 }
162 }
163 return Result;
164}
165
167 ArrayRef<Type *> OverloadTys, Module *M,
168 FunctionType *FT,
169 bool EarlyModuleCheck) {
170
171 assert(Id < Intrinsic::num_intrinsics && "Invalid intrinsic ID!");
172 assert((OverloadTys.empty() || Intrinsic::isOverloaded(Id)) &&
173 "This version of getName is for overloaded intrinsics only");
174 (void)EarlyModuleCheck;
175 assert((!EarlyModuleCheck || M ||
176 !any_of(OverloadTys, llvm::IsaPred<PointerType>)) &&
177 "Intrinsic overloading on pointer types need to provide a Module");
178 bool HasUnnamedType = false;
179 std::string Result(Intrinsic::getBaseName(Id));
180 for (Type *Ty : OverloadTys)
181 Result += "." + getMangledTypeStr(Ty, HasUnnamedType);
182 if (HasUnnamedType) {
183 assert(M && "unnamed types need a module");
184 if (!FT)
185 FT = Intrinsic::getType(M->getContext(), Id, OverloadTys);
186 else
187 assert(FT == Intrinsic::getType(M->getContext(), Id, OverloadTys) &&
188 "Provided FunctionType must match arguments");
189 return M->getUniqueIntrinsicName(Result, Id, FT);
190 }
191 return Result;
192}
193
194std::string Intrinsic::getName(ID Id, ArrayRef<Type *> OverloadTys, Module *M,
195 FunctionType *FT) {
196 assert(M && "We need to have a Module");
197 return getIntrinsicNameImpl(Id, OverloadTys, M, FT, true);
198}
199
201 ArrayRef<Type *> OverloadTys) {
202 return getIntrinsicNameImpl(Id, OverloadTys, nullptr, nullptr, false);
203}
204
205/// IIT_Info - These are enumerators that describe the entries returned by the
206/// getIntrinsicInfoTableEntries function.
207///
208/// Defined in Intrinsics.td.
210#define GET_INTRINSIC_IITINFO
211#include "llvm/IR/IntrinsicImpl.inc"
212};
213
214static_assert(IIT_Done == 0, "IIT_Done expected to be 0");
215
216static void
217DecodeIITType(unsigned &NextElt, ArrayRef<unsigned char> Infos,
219 using namespace Intrinsic;
220
221 auto IsScalableVector = [&]() {
222 IIT_Info NextInfo = IIT_Info(Infos[NextElt]);
223 if (NextInfo != IIT_SCALABLE_VEC)
224 return false;
225 // Eat the IIT_SCALABLE_VEC token.
226 ++NextElt;
227 return true;
228 };
229
230 IIT_Info Info = IIT_Info(Infos[NextElt++]);
231
232 switch (Info) {
233 case IIT_Done:
234 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Void, 0));
235 return;
236 case IIT_VARARG:
237 OutputTable.push_back(IITDescriptor::get(IITDescriptor::VarArg, 0));
238 return;
239 case IIT_MMX:
240 OutputTable.push_back(IITDescriptor::get(IITDescriptor::MMX, 0));
241 return;
242 case IIT_AMX:
243 OutputTable.push_back(IITDescriptor::get(IITDescriptor::AMX, 0));
244 return;
245 case IIT_TOKEN:
246 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Token, 0));
247 return;
248 case IIT_METADATA:
249 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Metadata, 0));
250 return;
251 case IIT_F16:
252 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Half, 0));
253 return;
254 case IIT_BF16:
255 OutputTable.push_back(IITDescriptor::get(IITDescriptor::BFloat, 0));
256 return;
257 case IIT_F32:
258 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Float, 0));
259 return;
260 case IIT_F64:
261 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Double, 0));
262 return;
263 case IIT_F128:
264 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Quad, 0));
265 return;
266 case IIT_PPCF128:
267 OutputTable.push_back(IITDescriptor::get(IITDescriptor::PPCQuad, 0));
268 return;
269 case IIT_I1:
270 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 1));
271 return;
272 case IIT_I2:
273 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 2));
274 return;
275 case IIT_I4:
276 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 4));
277 return;
278 case IIT_AARCH64_SVCOUNT:
279 OutputTable.push_back(IITDescriptor::get(IITDescriptor::AArch64Svcount, 0));
280 return;
281 case IIT_I8:
282 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 8));
283 return;
284 case IIT_I16:
285 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 16));
286 return;
287 case IIT_I32:
288 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 32));
289 return;
290 case IIT_I64:
291 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 64));
292 return;
293 case IIT_I128:
294 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 128));
295 return;
296 case IIT_V1:
297 OutputTable.push_back(IITDescriptor::getVector(1, IsScalableVector()));
298 DecodeIITType(NextElt, Infos, OutputTable);
299 return;
300 case IIT_V2:
301 OutputTable.push_back(IITDescriptor::getVector(2, IsScalableVector()));
302 DecodeIITType(NextElt, Infos, OutputTable);
303 return;
304 case IIT_V3:
305 OutputTable.push_back(IITDescriptor::getVector(3, IsScalableVector()));
306 DecodeIITType(NextElt, Infos, OutputTable);
307 return;
308 case IIT_V4:
309 OutputTable.push_back(IITDescriptor::getVector(4, IsScalableVector()));
310 DecodeIITType(NextElt, Infos, OutputTable);
311 return;
312 case IIT_V6:
313 OutputTable.push_back(IITDescriptor::getVector(6, IsScalableVector()));
314 DecodeIITType(NextElt, Infos, OutputTable);
315 return;
316 case IIT_V8:
317 OutputTable.push_back(IITDescriptor::getVector(8, IsScalableVector()));
318 DecodeIITType(NextElt, Infos, OutputTable);
319 return;
320 case IIT_V10:
321 OutputTable.push_back(IITDescriptor::getVector(10, IsScalableVector()));
322 DecodeIITType(NextElt, Infos, OutputTable);
323 return;
324 case IIT_V16:
325 OutputTable.push_back(IITDescriptor::getVector(16, IsScalableVector()));
326 DecodeIITType(NextElt, Infos, OutputTable);
327 return;
328 case IIT_V32:
329 OutputTable.push_back(IITDescriptor::getVector(32, IsScalableVector()));
330 DecodeIITType(NextElt, Infos, OutputTable);
331 return;
332 case IIT_V64:
333 OutputTable.push_back(IITDescriptor::getVector(64, IsScalableVector()));
334 DecodeIITType(NextElt, Infos, OutputTable);
335 return;
336 case IIT_V128:
337 OutputTable.push_back(IITDescriptor::getVector(128, IsScalableVector()));
338 DecodeIITType(NextElt, Infos, OutputTable);
339 return;
340 case IIT_V256:
341 OutputTable.push_back(IITDescriptor::getVector(256, IsScalableVector()));
342 DecodeIITType(NextElt, Infos, OutputTable);
343 return;
344 case IIT_V512:
345 OutputTable.push_back(IITDescriptor::getVector(512, IsScalableVector()));
346 DecodeIITType(NextElt, Infos, OutputTable);
347 return;
348 case IIT_V1024:
349 OutputTable.push_back(IITDescriptor::getVector(1024, IsScalableVector()));
350 DecodeIITType(NextElt, Infos, OutputTable);
351 return;
352 case IIT_V2048:
353 OutputTable.push_back(IITDescriptor::getVector(2048, IsScalableVector()));
354 DecodeIITType(NextElt, Infos, OutputTable);
355 return;
356 case IIT_V4096:
357 OutputTable.push_back(IITDescriptor::getVector(4096, IsScalableVector()));
358 DecodeIITType(NextElt, Infos, OutputTable);
359 return;
360 case IIT_EXTERNREF:
361 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Pointer, 10));
362 return;
363 case IIT_FUNCREF:
364 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Pointer, 20));
365 return;
366 case IIT_PTR:
367 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Pointer, 0));
368 return;
369 case IIT_PTR_AS: // pointer with address space.
370 OutputTable.push_back(
371 IITDescriptor::get(IITDescriptor::Pointer, Infos[NextElt++]));
372 return;
373 case IIT_ANY: {
374 unsigned OverloadInfo = Infos[NextElt++];
375 OutputTable.push_back(
376 IITDescriptor::get(IITDescriptor::Overloaded, OverloadInfo));
377 return;
378 }
379 case IIT_EXTEND_ARG: {
380 unsigned OverloadIndex = Infos[NextElt++];
381 OutputTable.push_back(
382 IITDescriptor::get(IITDescriptor::Extend, OverloadIndex));
383 return;
384 }
385 case IIT_TRUNC_ARG: {
386 unsigned OverloadIndex = Infos[NextElt++];
387 OutputTable.push_back(
388 IITDescriptor::get(IITDescriptor::Trunc, OverloadIndex));
389 return;
390 }
391 case IIT_ONE_NTH_ELTS_VEC_ARG: {
392 unsigned short OverloadIndex = Infos[NextElt++];
393 unsigned short N = Infos[NextElt++];
394 OutputTable.push_back(IITDescriptor::get(IITDescriptor::OneNthEltsVec,
395 /*Hi=*/N, /*Lo=*/OverloadIndex));
396 return;
397 }
398 case IIT_SAME_VEC_WIDTH_ARG: {
399 unsigned OverloadIndex = Infos[NextElt++];
400 OutputTable.push_back(
401 IITDescriptor::get(IITDescriptor::SameVecWidth, OverloadIndex));
402 // IIT_SAME_VEC_WIDTH_ARG entry is followed by the element type.
403 DecodeIITType(NextElt, Infos, OutputTable);
404 return;
405 }
406 case IIT_VEC_OF_ANYPTRS_TO_ELT: {
407 unsigned short OverloadIndex = Infos[NextElt++];
408 unsigned short RefOverloadIndex = Infos[NextElt++];
409 OutputTable.push_back(IITDescriptor::get(IITDescriptor::VecOfAnyPtrsToElt,
410 /*Hi=*/RefOverloadIndex,
411 /*Lo=*/OverloadIndex));
412 return;
413 }
414 case IIT_STRUCT: {
415 unsigned StructElts = Infos[NextElt++] + 2;
416
417 OutputTable.push_back(
418 IITDescriptor::get(IITDescriptor::Struct, StructElts));
419
420 for (unsigned i = 0; i != StructElts; ++i)
421 DecodeIITType(NextElt, Infos, OutputTable);
422 return;
423 }
424 case IIT_SUBDIVIDE2_ARG: {
425 unsigned OverloadIndex = Infos[NextElt++];
426 OutputTable.push_back(
427 IITDescriptor::get(IITDescriptor::Subdivide2, OverloadIndex));
428 return;
429 }
430 case IIT_SUBDIVIDE4_ARG: {
431 unsigned OverloadIndex = Infos[NextElt++];
432 OutputTable.push_back(
433 IITDescriptor::get(IITDescriptor::Subdivide4, OverloadIndex));
434 return;
435 }
436 case IIT_VEC_ELEMENT: {
437 unsigned OverloadIndex = Infos[NextElt++];
438 OutputTable.push_back(
439 IITDescriptor::get(IITDescriptor::VecElement, OverloadIndex));
440 return;
441 }
442 case IIT_VEC_OF_BITCASTS_TO_INT: {
443 unsigned OverloadIndex = Infos[NextElt++];
444 OutputTable.push_back(
445 IITDescriptor::get(IITDescriptor::VecOfBitcastsToInt, OverloadIndex));
446 return;
447 }
448 case IIT_SCALABLE_VEC:
449 break;
450 }
451 llvm_unreachable("unhandled");
452}
453
454#define GET_INTRINSIC_GENERATOR_GLOBAL
455#include "llvm/IR/IntrinsicImpl.inc"
456
457std::tuple<ArrayRef<Intrinsic::IITDescriptor>, unsigned, bool>
460 // Note that `FixedEncodingTy` is defined in IntrinsicImpl.inc and can be
461 // uint16_t or uint32_t based on the the value of `Use16BitFixedEncoding` in
462 // IntrinsicEmitter.cpp.
463 constexpr unsigned FixedEncodingBits = sizeof(FixedEncodingTy) * CHAR_BIT;
464 constexpr unsigned MSBPosition = FixedEncodingBits - 1;
465 // Mask with all bits 1 except the most significant bit.
466 constexpr unsigned Mask = (1U << MSBPosition) - 1;
467
468 FixedEncodingTy TableVal = IIT_Table[id - 1];
469
470 // Array to hold the inlined fixed encoding values expanded from nibbles to
471 // bytes. Its size can be be atmost FixedEncodingBits / 4 i.e., number
472 // of nibbles that can fit in `FixedEncodingTy` + 1 (the IIT_Done terminator
473 // that is not explicitly encoded). Note that if there are trailing 0 bytes
474 // in the encoding (for example, payload following one of the IIT tokens),
475 // the inlined encoding does not encode the actual size of the encoding, so
476 // we always assume its size of this maximum length possible, followed by the
477 // IIT_Done terminator token (whose value is 0).
478 unsigned char IITValues[FixedEncodingBits / 4 + 1] = {0};
479
480 ArrayRef<unsigned char> IITEntries;
481 unsigned NextElt = 0;
482 // Check to see if the intrinsic's type was inlined in the fixed encoding
483 // table.
484 if (TableVal >> MSBPosition) {
485 // This is an offset into the IIT_LongEncodingTable.
486 IITEntries = IIT_LongEncodingTable;
487
488 // Strip sentinel bit.
489 NextElt = TableVal & Mask;
490 } else {
491 // If the entry was encoded into a single word in the table itself, decode
492 // it from an array of nibbles to an array of bytes.
493 do {
494 IITValues[NextElt++] = TableVal & 0xF;
495 TableVal >>= 4;
496 } while (TableVal);
497
498 IITEntries = IITValues;
499 NextElt = 0;
500 }
501
502 // Okay, decode the table into the output vector of IITDescriptors.
503 DecodeIITType(NextElt, IITEntries, T);
504 unsigned NumArgs = 0;
505 while (IITEntries[NextElt] != IIT_Done) {
506 DecodeIITType(NextElt, IITEntries, T);
507 ++NumArgs;
508 }
509
511
512 bool IsVarArg = false;
513 if (TableRef.back().Kind == Intrinsic::IITDescriptor::VarArg) {
514 IsVarArg = true;
515 TableRef.consume_back();
516 --NumArgs;
517 }
518 return {TableRef, NumArgs, IsVarArg};
519}
520
522 ArrayRef<Type *> OverloadTys,
523 LLVMContext &Context) {
524 using namespace Intrinsic;
525
526 IITDescriptor D = Infos.consume_front();
527
528 switch (D.Kind) {
529 case IITDescriptor::Void:
530 return Type::getVoidTy(Context);
531 case IITDescriptor::MMX:
533 case IITDescriptor::AMX:
534 return Type::getX86_AMXTy(Context);
535 case IITDescriptor::Token:
536 return Type::getTokenTy(Context);
537 case IITDescriptor::Metadata:
538 return Type::getMetadataTy(Context);
539 case IITDescriptor::Half:
540 return Type::getHalfTy(Context);
541 case IITDescriptor::BFloat:
542 return Type::getBFloatTy(Context);
543 case IITDescriptor::Float:
544 return Type::getFloatTy(Context);
545 case IITDescriptor::Double:
546 return Type::getDoubleTy(Context);
547 case IITDescriptor::Quad:
548 return Type::getFP128Ty(Context);
549 case IITDescriptor::PPCQuad:
550 return Type::getPPC_FP128Ty(Context);
551 case IITDescriptor::AArch64Svcount:
552 return TargetExtType::get(Context, "aarch64.svcount");
553
554 case IITDescriptor::Integer:
555 return IntegerType::get(Context, D.IntegerWidth);
556 case IITDescriptor::Vector:
557 return VectorType::get(DecodeFixedType(Infos, OverloadTys, Context),
558 D.VectorWidth);
559 case IITDescriptor::Pointer:
560 return PointerType::get(Context, D.PointerAddressSpace);
561 case IITDescriptor::Struct: {
563 for (unsigned i = 0, e = D.StructNumElements; i != e; ++i)
564 Elts.push_back(DecodeFixedType(Infos, OverloadTys, Context));
565 return StructType::get(Context, Elts);
566 }
567 // For any overload kind or partially dependent type, substitute it with the
568 // corresponding concrete type from OverloadTys.
569 case IITDescriptor::Overloaded:
570 case IITDescriptor::VecOfAnyPtrsToElt:
571 return OverloadTys[D.getOverloadIndex()];
572 case IITDescriptor::Extend:
573 return OverloadTys[D.getOverloadIndex()]->getExtendedType();
574 case IITDescriptor::Trunc:
575 return OverloadTys[D.getOverloadIndex()]->getTruncatedType();
576 case IITDescriptor::Subdivide2:
577 case IITDescriptor::Subdivide4: {
578 Type *Ty = OverloadTys[D.getOverloadIndex()];
580 assert(VTy && "Expected overload type to be a Vector Type");
581 int SubDivs = D.Kind == IITDescriptor::Subdivide2 ? 1 : 2;
582 return VectorType::getSubdividedVectorType(VTy, SubDivs);
583 }
584 case IITDescriptor::OneNthEltsVec:
586 cast<VectorType>(OverloadTys[D.getOverloadIndex()]),
587 D.getVectorDivisor());
588 case IITDescriptor::SameVecWidth: {
589 Type *EltTy = DecodeFixedType(Infos, OverloadTys, Context);
590 Type *Ty = OverloadTys[D.getOverloadIndex()];
591 if (auto *VTy = dyn_cast<VectorType>(Ty))
592 return VectorType::get(EltTy, VTy->getElementCount());
593 return EltTy;
594 }
595 case IITDescriptor::VecElement: {
596 Type *Ty = OverloadTys[D.getOverloadIndex()];
597 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
598 return VTy->getElementType();
599 llvm_unreachable("Expected overload type to be a Vector Type");
600 }
601 case IITDescriptor::VecOfBitcastsToInt: {
602 Type *Ty = OverloadTys[D.getOverloadIndex()];
604 assert(VTy && "Expected overload type to be a Vector Type");
605 return VectorType::getInteger(VTy);
606 }
607 case IITDescriptor::VarArg:
608 // VarArg token should be consumed by `getIntrinsicInfoTableEntries`, so we
609 // should never see it here.
610 llvm_unreachable("IITDescriptor::VarArg not expected");
611 }
612 llvm_unreachable("unhandled");
613}
614
616 ArrayRef<Type *> OverloadTys) {
618 auto [TableRef, _, IsVarArg] = getIntrinsicInfoTableEntries(id, Table);
619
620 Type *ResultTy = DecodeFixedType(TableRef, OverloadTys, Context);
621
623 while (!TableRef.empty())
624 ArgTys.push_back(DecodeFixedType(TableRef, OverloadTys, Context));
625 return FunctionType::get(ResultTy, ArgTys, IsVarArg);
626}
627
629#define GET_INTRINSIC_OVERLOAD_TABLE
630#include "llvm/IR/IntrinsicImpl.inc"
631}
632
634#define GET_INTRINSIC_SCALARIZABLE_TABLE
635#include "llvm/IR/IntrinsicImpl.inc"
636}
637
639#define GET_INTRINSIC_PRETTY_PRINT_TABLE
640#include "llvm/IR/IntrinsicImpl.inc"
641}
642
643/// Table of per-target intrinsic name tables.
644#define GET_INTRINSIC_TARGET_DATA
645#include "llvm/IR/IntrinsicImpl.inc"
646
648 return IID > TargetInfos[0].Count;
649}
650
651/// Looks up Name in NameTable via binary search. NameTable must be sorted
652/// and all entries must start with "llvm.". If NameTable contains an exact
653/// match for Name or a prefix of Name followed by a dot, its index in
654/// NameTable is returned. Otherwise, -1 is returned.
656 StringRef Name, StringRef Target = "") {
657 assert(Name.starts_with("llvm.") && "Unexpected intrinsic prefix");
658 assert(Name.drop_front(5).starts_with(Target) && "Unexpected target");
659
660 // Do successive binary searches of the dotted name components. For
661 // "llvm.gc.experimental.statepoint.p1i8.p1i32", we will find the range of
662 // intrinsics starting with "llvm.gc", then "llvm.gc.experimental", then
663 // "llvm.gc.experimental.statepoint", and then we will stop as the range is
664 // size 1. During the search, we can skip the prefix that we already know is
665 // identical. By using strncmp we consider names with differing suffixes to
666 // be part of the equal range.
667 size_t CmpEnd = 4; // Skip the "llvm" component.
668 if (!Target.empty())
669 CmpEnd += 1 + Target.size(); // skip the .target component.
670
671 const unsigned *Low = NameOffsetTable.begin();
672 const unsigned *High = NameOffsetTable.end();
673 const unsigned *LastLow = Low;
674 while (CmpEnd < Name.size() && High - Low > 0) {
675 size_t CmpStart = CmpEnd;
676 CmpEnd = Name.find('.', CmpStart + 1);
677 CmpEnd = CmpEnd == StringRef::npos ? Name.size() : CmpEnd;
678 auto Cmp = [CmpStart, CmpEnd](auto LHS, auto RHS) {
679 // `equal_range` requires the comparison to work with either side being an
680 // offset or the value. Detect which kind each side is to set up the
681 // compared strings.
682 const char *LHSStr;
683 if constexpr (std::is_integral_v<decltype(LHS)>)
684 LHSStr = IntrinsicNameTable.getCString(LHS);
685 else
686 LHSStr = LHS;
687
688 const char *RHSStr;
689 if constexpr (std::is_integral_v<decltype(RHS)>)
690 RHSStr = IntrinsicNameTable.getCString(RHS);
691 else
692 RHSStr = RHS;
693
694 return strncmp(LHSStr + CmpStart, RHSStr + CmpStart, CmpEnd - CmpStart) <
695 0;
696 };
697 LastLow = Low;
698 std::tie(Low, High) = std::equal_range(Low, High, Name.data(), Cmp);
699 }
700 if (High - Low > 0)
701 LastLow = Low;
702
703 if (LastLow == NameOffsetTable.end())
704 return -1;
705 StringRef NameFound = IntrinsicNameTable[*LastLow];
706 if (Name == NameFound ||
707 (Name.starts_with(NameFound) && Name[NameFound.size()] == '.'))
708 return LastLow - NameOffsetTable.begin();
709 return -1;
710}
711
712/// Find the segment of \c IntrinsicNameOffsetTable for intrinsics with the same
713/// target as \c Name, or the generic table if \c Name is not target specific.
714///
715/// Returns the relevant slice of \c IntrinsicNameOffsetTable and the target
716/// name.
717static std::pair<ArrayRef<unsigned>, StringRef>
719 assert(Name.starts_with("llvm."));
720
721 ArrayRef<IntrinsicTargetInfo> Targets(TargetInfos);
722 // Drop "llvm." and take the first dotted component. That will be the target
723 // if this is target specific.
724 StringRef Target = Name.drop_front(5).split('.').first;
725 auto It = partition_point(
726 Targets, [=](const IntrinsicTargetInfo &TI) { return TI.Name < Target; });
727 // We've either found the target or just fall back to the generic set, which
728 // is always first.
729 const auto &TI = It != Targets.end() && It->Name == Target ? *It : Targets[0];
730 return {ArrayRef(&IntrinsicNameOffsetTable[1] + TI.Offset, TI.Count),
731 TI.Name};
732}
733
734/// This does the actual lookup of an intrinsic ID which matches the given
735/// function name.
737 auto [NameOffsetTable, Target] = findTargetSubtable(Name);
738 int Idx = lookupLLVMIntrinsicByName(NameOffsetTable, Name, Target);
739 if (Idx == -1)
741
742 // Intrinsic IDs correspond to the location in IntrinsicNameTable, but we have
743 // an index into a sub-table.
744 int Adjust = NameOffsetTable.data() - IntrinsicNameOffsetTable;
745 Intrinsic::ID ID = static_cast<Intrinsic::ID>(Idx + Adjust);
746
747 // If the intrinsic is not overloaded, require an exact match. If it is
748 // overloaded, require either exact or prefix match.
749 const auto MatchSize = IntrinsicNameTable[NameOffsetTable[Idx]].size();
750 assert(Name.size() >= MatchSize && "Expected either exact or prefix match");
751 bool IsExactMatch = Name.size() == MatchSize;
752 return IsExactMatch || Intrinsic::isOverloaded(ID) ? ID
754}
755
756/// This defines the "Intrinsic::getAttributes(ID id)" method.
757#define GET_INTRINSIC_ATTRIBUTES
758#include "llvm/IR/IntrinsicImpl.inc"
759
760static Function *
762 ArrayRef<Type *> OverloadTys,
763 FunctionType *FT) {
764 std::string Name = OverloadTys.empty()
765 ? Intrinsic::getName(id).str()
766 : Intrinsic::getName(id, OverloadTys, M, FT);
767 Function *F = cast<Function>(M->getOrInsertFunction(Name, FT).getCallee());
768 if (F->getFunctionType() == FT)
769 return F;
770
771 // It's possible that a declaration for this intrinsic already exists with an
772 // incorrect signature, if the signature has changed, but this particular
773 // declaration has not been auto-upgraded yet. In that case, rename the
774 // invalid declaration and insert a new one with the correct signature. The
775 // invalid declaration will get upgraded later.
776 F->setName(F->getName() + ".invalid");
777 return cast<Function>(M->getOrInsertFunction(Name, FT).getCallee());
778}
779
781 ArrayRef<Type *> OverloadTys) {
782 // There can never be multiple globals with the same name of different types,
783 // because intrinsics must be a specific type.
784 FunctionType *FT = getType(M->getContext(), id, OverloadTys);
785 return getOrInsertIntrinsicDeclarationImpl(M, id, OverloadTys, FT);
786}
787
789 ArrayRef<Type *> ArgTys) {
790 // If the intrinsic is not overloaded, use the non-overloaded version.
792 return getOrInsertDeclaration(M, id);
793
794 // Get the intrinsic signature metadata.
796 auto [TableRef, NumArgs, IsVarArg] = getIntrinsicInfoTableEntries(id, Table);
797 FunctionType *FTy = FunctionType::get(RetTy, ArgTys, IsVarArg);
798
799 // Automatically determine the overloaded types.
800 SmallVector<Type *, 4> OverloadTys;
801 [[maybe_unused]] bool IsValid = ::isSignatureValid(
802 FTy, TableRef, NumArgs, IsVarArg, OverloadTys, nulls());
803 assert(IsValid && "intrinsic signature mismatch");
804 return getOrInsertIntrinsicDeclarationImpl(M, id, OverloadTys, FTy);
805}
806
808 return M->getFunction(getName(id));
809}
810
812 ArrayRef<Type *> OverloadTys,
813 FunctionType *FT) {
814 return M->getFunction(getName(id, OverloadTys, M, FT));
815}
816
817// This defines the "Intrinsic::getIntrinsicForClangBuiltin()" method.
818#define GET_LLVM_INTRINSIC_FOR_CLANG_BUILTIN
819#include "llvm/IR/IntrinsicImpl.inc"
820
821// This defines the "Intrinsic::getIntrinsicForMSBuiltin()" method.
822#define GET_LLVM_INTRINSIC_FOR_MS_BUILTIN
823#include "llvm/IR/IntrinsicImpl.inc"
824
826 switch (QID) {
827#define INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC) \
828 case Intrinsic::INTRINSIC:
829#include "llvm/IR/ConstrainedOps.def"
830#undef INSTRUCTION
831 return true;
832 default:
833 return false;
834 }
835}
836
838 switch (QID) {
839#define INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC) \
840 case Intrinsic::INTRINSIC: \
841 return ROUND_MODE == 1;
842#include "llvm/IR/ConstrainedOps.def"
843#undef INSTRUCTION
844 default:
845 return false;
846 }
847}
848
849// This class represents a position in the intrinsic's type signature and is
850// used to generate error messages in `matchIntrinsicType`. The printed position
851// can be of the following forms:
852//
853// return
854// return struct element 3
855// return vector element
856// return struct element 3 vector element
857// argument 3
858// argument 3 vector element
859//
860// To support deferred checks also being able to generate these error messages
861// we need to encode the position compactly so that it can be stashed into
862// DeferredIntrinsicMatchInfo below (without materializing it into a string).
863// The class below serves that purpose.
864//
865namespace {
866struct MatchPosition {
867 uint16_t IsRet : 1;
868 uint16_t Num : 15; // Argument number (when IsRet = false).
869 struct Index {
870 uint16_t IsStruct : 1; // If true, this is a struct element with element
871 // index `Num`, else its a vector element.
872 uint16_t Num : 15; // Struct element index.
873 };
874 // We expect this to be just 2 levels deep, since nested structs are not
875 // supported.
876 static constexpr unsigned INDEX_TABLE_SIZE = 2;
877 Index Indices[INDEX_TABLE_SIZE];
878 uint16_t NumIndices = 0;
879
880 void pop_index() {
881 assert(NumIndices > 0 && "cannot pop from empty indices");
882 --NumIndices;
883 }
884
885 void push_struct_element(unsigned ElementNum) {
886 assert(NumIndices < INDEX_TABLE_SIZE && "index table overflow");
887 assert(isInt<15>(ElementNum) && "Element index overflow");
888 Indices[NumIndices].IsStruct = true;
889 Indices[NumIndices++].Num = ElementNum;
890 }
891
892 void push_vector_element() {
893 assert(NumIndices < INDEX_TABLE_SIZE && "index table overflow");
894 Indices[NumIndices].IsStruct = false;
895 Indices[NumIndices++].Num = 0;
896 }
897};
898} // namespace
899
900static raw_ostream &operator<<(raw_ostream &OS, const MatchPosition &Pos) {
901 OS << "intrinsic ";
902
903 if (Pos.IsRet)
904 OS << "return";
905 else
906 OS << "argument " << Pos.Num;
907
908 for (const MatchPosition::Index &Idx :
909 ArrayRef(Pos.Indices).take_front(Pos.NumIndices)) {
910 if (Idx.IsStruct)
911 OS << " struct element " << Idx.Num;
912 else
913 OS << " vector element";
914 }
915 return OS;
916}
917
919 std::tuple<Type *, ArrayRef<Intrinsic::IITDescriptor>, MatchPosition>;
920
921static bool
923 MatchPosition Position, SmallVectorImpl<Type *> &OverloadTys,
925 bool IsDeferredCheck, raw_ostream &OS) {
926 using namespace Intrinsic;
927
928 // If we ran out of descriptors, there are too many arguments or returns.
929 if (Infos.empty()) {
930 OS << Position << " too many "
931 << (Position.IsRet ? "returns" : "arguments");
932 return true;
933 }
934
935 // Do this before slicing off the 'front' part
936 auto InfosRef = Infos;
937 auto DeferCheck = [&DeferredChecks, &InfosRef, &Position](Type *T) {
938 DeferredChecks.emplace_back(T, InfosRef, Position);
939 return false;
940 };
941
942 IITDescriptor D = Infos.consume_front();
943
944 // Print error message when the (non-dependent) type for current position is
945 // invalid.
946 auto PrintMsg = [&OS, &Position,
947 Ty](bool IsValid, const Twine &Expected,
948 std::optional<unsigned> OIdx = std::nullopt) -> bool {
949 if (IsValid)
950 return false;
951 OS << Position << " type";
952 if (OIdx)
953 OS << " (overload type " << *OIdx << ")";
954 OS << " expected " << Expected << ", but got " << *Ty;
955 return true;
956 };
957
958 // Print message when an overload type is invalid as a result of its use in
959 // current dependent type. DependentQualifier describes the "function" applied
960 // to the overload type to get the dependent type.
961 auto PrintMsgInvalidOverloadTy =
962 [&OS, &Position, &OverloadTys](const Twine &DependentQualifier,
963 const Twine &Expected,
964 unsigned OIdx) -> bool {
965 OS << Position << " is " << DependentQualifier << " overload type " << OIdx
966 << ", so overload type " << OIdx << " expected " << Expected
967 << ", but got " << *OverloadTys[OIdx];
968 return true;
969 };
970
971 // Print message when a dependent type is invalid.
972 auto PrintMsgInvalidDepType =
973 [&OS, &Position, &OverloadTys,
974 Ty](bool IsValid, const Twine &DependentQualifier, const Twine &Expected,
975 unsigned OIdx) -> bool {
976 if (IsValid)
977 return false;
978 bool IsMatching = DependentQualifier.isSingleStringRef() &&
979 DependentQualifier.getSingleStringRef() == "matching";
980 OS << Position << " type (" << DependentQualifier << " overload type "
981 << OIdx << ") expected " << Expected;
982 if (!IsMatching)
983 OS << " (overload type " << OIdx << " is " << *OverloadTys[OIdx] << ")";
984 OS << ", but got " << *Ty;
985 return true;
986 };
987
988 switch (D.Kind) {
989 case IITDescriptor::Void:
990 assert(Position.IsRet && Position.NumIndices == 0 &&
991 "void descriptor expected only for return type");
992 return PrintMsg(Ty->isVoidTy(), "void");
993 case IITDescriptor::MMX: {
995 return PrintMsg(VT && VT->getNumElements() == 1 &&
996 VT->getElementType()->isIntegerTy(64),
997 "x86_mmx (<1 x i64>)");
998 }
999 case IITDescriptor::AMX:
1000 return PrintMsg(Ty->isX86_AMXTy(), "x86_amx");
1001 case IITDescriptor::Token:
1002 return PrintMsg(Ty->isTokenTy(), "token");
1003 case IITDescriptor::Metadata:
1004 return PrintMsg(Ty->isMetadataTy(), "metadata");
1005 case IITDescriptor::Half:
1006 return PrintMsg(Ty->isHalfTy(), "half");
1007 case IITDescriptor::BFloat:
1008 return PrintMsg(Ty->isBFloatTy(), "bfloat");
1009 case IITDescriptor::Float:
1010 return PrintMsg(Ty->isFloatTy(), "float");
1011 case IITDescriptor::Double:
1012 return PrintMsg(Ty->isDoubleTy(), "double");
1013 case IITDescriptor::Quad:
1014 return PrintMsg(Ty->isFP128Ty(), "fp128");
1015 case IITDescriptor::PPCQuad:
1016 return PrintMsg(Ty->isPPC_FP128Ty(), "ppc_fp128");
1017 case IITDescriptor::Integer:
1018 return PrintMsg(Ty->isIntegerTy(D.IntegerWidth),
1019 "i" + Twine(D.IntegerWidth));
1020 case IITDescriptor::AArch64Svcount:
1021 return PrintMsg(isa<TargetExtType>(Ty) &&
1022 cast<TargetExtType>(Ty)->getName() == "aarch64.svcount",
1023 "aarch64.svcount");
1024 case IITDescriptor::Vector: {
1026 StringRef Scalable = D.VectorWidth.isScalable() ? "vscale " : "";
1027 bool HasError =
1028 PrintMsg(VT && VT->getElementCount() == D.VectorWidth,
1029 Twine(Scalable) + "vector with " +
1030 Twine(D.VectorWidth.getKnownMinValue()) + " elements");
1031 if (HasError)
1032 return true;
1033 Position.push_vector_element();
1034 return matchIntrinsicType(VT->getElementType(), Infos, Position,
1035 OverloadTys, DeferredChecks, IsDeferredCheck, OS);
1036 }
1037 case IITDescriptor::Pointer: {
1039 unsigned AS = D.PointerAddressSpace;
1040 bool IsValid = PT && PT->getAddressSpace() == AS;
1041 if (AS == 0)
1042 return PrintMsg(IsValid, "ptr");
1043 return PrintMsg(IsValid, "ptr addrspace(" + Twine(AS) + ")");
1044 }
1045
1046 case IITDescriptor::Struct: {
1048 unsigned EC = D.StructNumElements;
1049 bool HasError = PrintMsg(
1050 ST && ST->isLiteral() && !ST->isPacked() && ST->getNumElements() == EC,
1051 "literal non-packed struct with " + Twine(EC) + " elements");
1052 if (HasError)
1053 return true;
1054
1055 for (const auto &[Idx, ETy] : llvm::enumerate(ST->elements())) {
1056 Position.push_struct_element(Idx);
1057 if (matchIntrinsicType(ETy, Infos, Position, OverloadTys, DeferredChecks,
1058 IsDeferredCheck, OS))
1059 return true;
1060 Position.pop_index();
1061 }
1062 return false;
1063 }
1064
1065 case IITDescriptor::Overloaded: {
1066 unsigned OIdx = D.getOverloadIndex();
1067 if (D.getOverloadKind() == IITDescriptor::AK_MatchType) {
1068 // This is a dependent type instance, check it similarly to other
1069 // dependent types.
1070 if (OIdx >= OverloadTys.size())
1071 return IsDeferredCheck || DeferCheck(Ty);
1072 return PrintMsgInvalidDepType(Ty == OverloadTys[OIdx], "matching",
1073 formatv("{}", *OverloadTys[OIdx]), OIdx);
1074 }
1075
1076 assert(OIdx == OverloadTys.size() && !IsDeferredCheck &&
1077 "Table consistency error");
1078 OverloadTys.push_back(Ty);
1079
1080 switch (D.getOverloadKind()) {
1081 case IITDescriptor::AK_Any:
1082 return false; // Success
1083 case IITDescriptor::AK_AnyInteger:
1084 return PrintMsg(Ty->isIntOrIntVectorTy(), "any integer or integer vector",
1085 OIdx);
1086 case IITDescriptor::AK_AnyFloat:
1087 return PrintMsg(Ty->isFPOrFPVectorTy(), "any fp or fp vector", OIdx);
1088 case IITDescriptor::AK_AnyVector:
1089 return PrintMsg(isa<VectorType>(Ty), "any vector type", OIdx);
1090 case IITDescriptor::AK_AnyPointer:
1091 return PrintMsg(isa<PointerType>(Ty), "any pointer type", OIdx);
1092 default:
1093 break;
1094 }
1095 llvm_unreachable("all argument kinds not covered");
1096 }
1097
1098 case IITDescriptor::Extend:
1099 case IITDescriptor::Trunc: {
1100 unsigned OIdx = D.getOverloadIndex();
1101 // If this is a forward reference, defer the check for later.
1102 if (OIdx >= OverloadTys.size())
1103 return IsDeferredCheck || DeferCheck(Ty);
1104
1105 Type *OTy = OverloadTys[OIdx];
1106 bool IsExtend = D.Kind == IITDescriptor::Extend;
1107 StringRef Qualifier = IsExtend ? "extended" : "truncated";
1108 if (!OTy->isIntOrIntVectorTy())
1109 return PrintMsgInvalidOverloadTy(Qualifier, "int or vector of int", OIdx);
1110
1111 Type *NewTy = IsExtend ? OTy->getExtendedType() : OTy->getTruncatedType();
1112 return PrintMsgInvalidDepType(Ty == NewTy, Qualifier, formatv("{}", *NewTy),
1113 OIdx);
1114 }
1115 case IITDescriptor::OneNthEltsVec: {
1116 unsigned OIdx = D.getOverloadIndex();
1117 unsigned Divisor = D.getVectorDivisor();
1118 // If this is a forward reference, defer the check for later.
1119 if (OIdx >= OverloadTys.size())
1120 return IsDeferredCheck || DeferCheck(Ty);
1121 Type *OTy = OverloadTys[OIdx];
1122 auto *OVecTy = dyn_cast<VectorType>(OTy);
1123 auto Qualifier = formatv("1/nth (n={}) elements vector of", Divisor);
1124 if (!OVecTy)
1125 return PrintMsgInvalidOverloadTy(Qualifier, "vector", OIdx);
1126 if (!OVecTy->getElementCount().isKnownMultipleOf(Divisor))
1127 return PrintMsgInvalidOverloadTy(
1128 Qualifier, formatv("vector with multiple of {} elements", Divisor),
1129 OIdx);
1131 return PrintMsgInvalidDepType(Expected == Ty, Qualifier,
1132 formatv("{}", *Expected), OIdx);
1133 }
1134 case IITDescriptor::SameVecWidth: {
1135 unsigned OIdx = D.getOverloadIndex();
1136 if (OIdx >= OverloadTys.size()) {
1137 // Defer check and subsequent check for the vector element type.
1138 Infos.consume_front();
1139 return IsDeferredCheck || DeferCheck(Ty);
1140 }
1141 auto *OVecTy = dyn_cast<VectorType>(OverloadTys[OIdx]);
1142 auto *ThisArgVecType = dyn_cast<VectorType>(Ty);
1143 // Both must be vectors of the same number of elements or neither.
1144 StringRef Qualifier = "same vector width of";
1145 if (OVecTy && !ThisArgVecType)
1146 return PrintMsgInvalidDepType(false, Qualifier, "vector", OIdx);
1147 if (!OVecTy && ThisArgVecType)
1148 return PrintMsgInvalidDepType(false, Qualifier, "scalar", OIdx);
1149 Type *EltTy = Ty;
1150 if (ThisArgVecType) {
1151 ElementCount Expected = OVecTy->getElementCount();
1152 if (Expected != ThisArgVecType->getElementCount())
1153 return PrintMsgInvalidDepType(
1154 false, Qualifier, formatv("vector with {} elements", Expected),
1155 OIdx);
1156 EltTy = ThisArgVecType->getElementType();
1157 Position.push_vector_element();
1158 }
1159 return matchIntrinsicType(EltTy, Infos, Position, OverloadTys,
1160 DeferredChecks, IsDeferredCheck, OS);
1161 }
1162 case IITDescriptor::VecOfAnyPtrsToElt: {
1163 unsigned RefOverloadIndex = D.getRefOverloadIndex();
1164 if (RefOverloadIndex >= OverloadTys.size()) {
1165 if (IsDeferredCheck)
1166 return true;
1167 // If forward referencing, already add the pointer-vector type and
1168 // defer the checks for later.
1169 assert(D.getOverloadIndex() == OverloadTys.size() &&
1170 "Table consistency error");
1171 OverloadTys.push_back(Ty);
1172 return DeferCheck(Ty);
1173 }
1174
1175 if (!IsDeferredCheck) {
1176 assert(D.getOverloadIndex() == OverloadTys.size() &&
1177 "Table consistency error");
1178 OverloadTys.push_back(Ty);
1179 }
1180
1181 // Verify the overloaded type "matches" the Ref type.
1182 // i.e. Ty is a vector with the same width as Ref and composed of pointers.
1183
1184 StringRef Qualifier = "vector of pointers to elements of";
1185 auto *ReferenceType = dyn_cast<VectorType>(OverloadTys[RefOverloadIndex]);
1186 if (!ReferenceType)
1187 return PrintMsgInvalidOverloadTy(Qualifier, "vector", RefOverloadIndex);
1188
1189 auto *ThisArgVecTy = dyn_cast<VectorType>(Ty);
1190 if (!ThisArgVecTy)
1191 return PrintMsgInvalidDepType(false, Qualifier, "vector",
1192 RefOverloadIndex);
1193
1194 auto ExpectedCount = ReferenceType->getElementCount();
1195 auto Expected =
1196 formatv("vector of pointers with {} elements", ExpectedCount);
1197 bool IsValid = ThisArgVecTy->getElementCount() == ExpectedCount &&
1198 ThisArgVecTy->getElementType()->isPointerTy();
1199 return PrintMsgInvalidDepType(IsValid, Qualifier, Expected,
1200 RefOverloadIndex);
1201 }
1202 case IITDescriptor::VecElement: {
1203 unsigned OIdx = D.getOverloadIndex();
1204 if (OIdx >= OverloadTys.size())
1205 return IsDeferredCheck || DeferCheck(Ty);
1206 StringRef Qualifier = "vector element of";
1207 auto *OVecTy = dyn_cast<VectorType>(OverloadTys[OIdx]);
1208 if (!OVecTy)
1209 return PrintMsgInvalidOverloadTy(Qualifier, "vector", OIdx);
1210 Type *Expected = OVecTy->getElementType();
1211 return PrintMsgInvalidDepType(Expected == Ty, Qualifier,
1212 formatv("{}", *Expected), OIdx);
1213 }
1214 case IITDescriptor::Subdivide2:
1215 case IITDescriptor::Subdivide4: {
1216 unsigned OIdx = D.getOverloadIndex();
1217 // If this is a forward reference, defer the check for later.
1218 if (OIdx >= OverloadTys.size())
1219 return IsDeferredCheck || DeferCheck(Ty);
1220
1221 int SubDivs = D.Kind == IITDescriptor::Subdivide2 ? 1 : 2;
1222 auto *OVecTy = dyn_cast<VectorType>(OverloadTys[OIdx]);
1223 auto Qualifier =
1224 formatv("subdivided by {} vector of", SubDivs == 1 ? 2 : 4);
1225 if (!OVecTy)
1226 return PrintMsgInvalidOverloadTy(Qualifier, "vector", OIdx);
1227
1228 // TODO: Verify that the element type of the overload type is subdivisible
1229 // by 2 or 4.
1231 return PrintMsgInvalidDepType(Expected == Ty, Qualifier,
1232 formatv("{}", *Expected), OIdx);
1233 }
1234 case IITDescriptor::VecOfBitcastsToInt: {
1235 unsigned OIdx = D.getOverloadIndex();
1236 if (OIdx >= OverloadTys.size())
1237 return IsDeferredCheck || DeferCheck(Ty);
1238 auto *OVecTy = dyn_cast<VectorType>(OverloadTys[OIdx]);
1239 StringRef Qualifier = "vector of bitcasts to int of";
1240 if (!OVecTy)
1241 return PrintMsgInvalidOverloadTy(Qualifier, "vector", OIdx);
1243 return PrintMsgInvalidDepType(Expected == Ty, Qualifier,
1244 formatv("{}", *Expected), OIdx);
1245 }
1246 case IITDescriptor::VarArg:
1247 // VarArg token should be consumed by `getIntrinsicInfoTableEntries`, so we
1248 // should never see it here.
1249 llvm_unreachable("IITDescriptor::VarArg not expected");
1250 }
1251 llvm_unreachable("unhandled");
1252}
1253
1254/// Return true if the function type \p FTy is a valid type signature for the
1255/// type constraints specified in the .td file, represented by \p Infos and
1256/// \p IsVarArg. The overloaded types for the intrinsic are pushed to the
1257/// \p OverloadTys vector.
1258///
1259/// If the type is not valid, returns false and prints an error message to
1260/// \p OS.
1263 unsigned NumArgs, bool IsVarArg,
1264 SmallVectorImpl<Type *> &OverloadTys,
1265 raw_ostream &OS) {
1267
1268 assert(!Infos.empty() && "Table consistency error");
1269
1270 MatchPosition Pos;
1271 Pos.IsRet = true;
1272 Pos.Num = 0;
1273
1274 if (matchIntrinsicType(FTy->getReturnType(), Infos, Pos, OverloadTys,
1275 DeferredChecks, false, OS))
1276 return false;
1277
1278 if (FTy->getNumParams() != NumArgs) {
1279 OS << "intrinsic has incorrect number of args. Expected " << NumArgs
1280 << ", but got " << FTy->getNumParams();
1281 return false;
1282 }
1283
1284 Pos.IsRet = false;
1285 for (const auto &[Idx, Ty] : llvm::enumerate(FTy->params())) {
1286 Pos.Num = Idx;
1287 if (matchIntrinsicType(Ty, Infos, Pos, OverloadTys, DeferredChecks, false,
1288 OS))
1289 return false;
1290 }
1291
1292 for (unsigned I = 0, E = DeferredChecks.size(); I != E; ++I) {
1293 auto &[DefTy, DefInfos, DefPosition] = DeferredChecks[I];
1294 if (matchIntrinsicType(DefTy, DefInfos, DefPosition, OverloadTys,
1295 DeferredChecks, true, OS))
1296 return false;
1297 }
1298
1299 if (!Infos.empty()) {
1300 OS << "intrinsic has too few arguments!";
1301 return false;
1302 }
1303
1304 if (FTy->isVarArg() != IsVarArg) {
1305 if (IsVarArg)
1306 OS << "intrinsic was not defined with variable arguments!";
1307 else
1308 OS << "intrinsic was defined with variable arguments!";
1309 return false;
1310 }
1311
1312 return true;
1313}
1314
1316 using namespace Intrinsic;
1319 return !Table.empty() && Table[0].Kind == IITDescriptor::Struct;
1320}
1321
1323 SmallVectorImpl<Type *> &OverloadTys,
1324 raw_ostream &OS) {
1325 if (!ID)
1326 return false;
1327
1329 auto [TableRef, NumArgs, IsVarArg] = getIntrinsicInfoTableEntries(ID, Table);
1330
1331 return ::isSignatureValid(FT, TableRef, NumArgs, IsVarArg, OverloadTys, OS);
1332}
1333
1335 SmallVectorImpl<Type *> &OverloadTys,
1336 raw_ostream &OS) {
1337 return isSignatureValid(F->getIntrinsicID(), F->getFunctionType(),
1338 OverloadTys, OS);
1339}
1340
1342 SmallVector<Type *, 4> OverloadTys;
1343 if (!isSignatureValid(F, OverloadTys))
1344 return std::nullopt;
1345
1346 Intrinsic::ID ID = F->getIntrinsicID();
1347 StringRef Name = F->getName();
1348 std::string WantedName =
1349 Intrinsic::getName(ID, OverloadTys, F->getParent(), F->getFunctionType());
1350 if (Name == WantedName)
1351 return std::nullopt;
1352
1353 Function *NewDecl = [&] {
1354 if (auto *ExistingGV = F->getParent()->getNamedValue(WantedName)) {
1355 if (auto *ExistingF = dyn_cast<Function>(ExistingGV))
1356 if (ExistingF->getFunctionType() == F->getFunctionType())
1357 return ExistingF;
1358
1359 // The name already exists, but is not a function or has the wrong
1360 // prototype. Make place for the new one by renaming the old version.
1361 // Either this old version will be removed later on or the module is
1362 // invalid and we'll get an error.
1363 ExistingGV->setName(WantedName + ".renamed");
1364 }
1365 return Intrinsic::getOrInsertDeclaration(F->getParent(), ID, OverloadTys);
1366 }();
1367
1368 NewDecl->setCallingConv(F->getCallingConv());
1369 assert(NewDecl->getFunctionType() == F->getFunctionType() &&
1370 "Shouldn't change the signature");
1371 return NewDecl;
1372}
1373
1377
1379 {Intrinsic::vector_interleave2, Intrinsic::vector_deinterleave2},
1380 {Intrinsic::vector_interleave3, Intrinsic::vector_deinterleave3},
1381 {Intrinsic::vector_interleave4, Intrinsic::vector_deinterleave4},
1382 {Intrinsic::vector_interleave5, Intrinsic::vector_deinterleave5},
1383 {Intrinsic::vector_interleave6, Intrinsic::vector_deinterleave6},
1384 {Intrinsic::vector_interleave7, Intrinsic::vector_deinterleave7},
1385 {Intrinsic::vector_interleave8, Intrinsic::vector_deinterleave8},
1386};
1387
1389 assert(Factor >= 2 && Factor <= 8 && "Unexpected factor");
1390 return InterleaveIntrinsics[Factor - 2].Interleave;
1391}
1392
1394 assert(Factor >= 2 && Factor <= 8 && "Unexpected factor");
1395 return InterleaveIntrinsics[Factor - 2].Deinterleave;
1396}
1397
1398#define GET_INTRINSIC_PRETTY_PRINT_ARGUMENTS
1399#include "llvm/IR/IntrinsicImpl.inc"
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
ArrayRef< TableEntry > TableRef
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
#define _
Module.h This file contains the declarations for the Module class.
static bool matchIntrinsicType(Type *Ty, ArrayRef< Intrinsic::IITDescriptor > &Infos, MatchPosition Position, SmallVectorImpl< Type * > &OverloadTys, SmallVectorImpl< DeferredIntrinsicMatchInfo > &DeferredChecks, bool IsDeferredCheck, raw_ostream &OS)
static bool isSignatureValid(FunctionType *FTy, ArrayRef< Intrinsic::IITDescriptor > &Infos, unsigned NumArgs, bool IsVarArg, SmallVectorImpl< Type * > &OverloadTys, raw_ostream &OS)
Return true if the function type FTy is a valid type signature for the type constraints specified in ...
static InterleaveIntrinsic InterleaveIntrinsics[]
std::tuple< Type *, ArrayRef< Intrinsic::IITDescriptor >, MatchPosition > DeferredIntrinsicMatchInfo
static std::pair< ArrayRef< unsigned >, StringRef > findTargetSubtable(StringRef Name)
Find the segment of IntrinsicNameOffsetTable for intrinsics with the same target as Name,...
static Function * getOrInsertIntrinsicDeclarationImpl(Module *M, Intrinsic::ID id, ArrayRef< Type * > OverloadTys, FunctionType *FT)
static void DecodeIITType(unsigned &NextElt, ArrayRef< unsigned char > Infos, SmallVectorImpl< Intrinsic::IITDescriptor > &OutputTable)
static std::string getIntrinsicNameImpl(Intrinsic::ID Id, ArrayRef< Type * > OverloadTys, Module *M, FunctionType *FT, bool EarlyModuleCheck)
IIT_Info
IIT_Info - These are enumerators that describe the entries returned by the getIntrinsicInfoTableEntri...
static Type * DecodeFixedType(ArrayRef< Intrinsic::IITDescriptor > &Infos, ArrayRef< Type * > OverloadTys, LLVMContext &Context)
static int lookupLLVMIntrinsicByName(ArrayRef< unsigned > NameOffsetTable, StringRef Name, StringRef Target="")
Looks up Name in NameTable via binary search.
static std::string getMangledTypeStr(Type *Ty, bool &HasUnnamedType)
Returns a stable mangling for the type specified for use in the name mangling scheme used by 'any' ty...
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
#define T
uint64_t High
This file contains the definitions of the enumerations and flags associated with NVVM Intrinsics,...
static StringRef getName(Value *V)
This file contains some functions that are useful when dealing with strings.
static SymbolRef::Type getType(const Symbol *Sym)
Definition TapiFile.cpp:39
static unsigned getBitWidth(Type *Ty, const DataLayout &DL)
Returns the bitwidth of the given scalar or pointer type.
Value * RHS
Value * LHS
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
iterator end() const
Definition ArrayRef.h:130
iterator begin() const
Definition ArrayRef.h:129
bool empty() const
Check if the array is empty.
Definition ArrayRef.h:136
const T & consume_front()
consume_front() - Returns the first element and drops it from ArrayRef.
Definition ArrayRef.h:156
Tagged union holding either a T or a Error.
Definition Error.h:485
Class to represent fixed width SIMD vectors.
unsigned getNumElements() const
static LLVM_ABI FixedVectorType * get(Type *ElementType, unsigned NumElts)
Definition Type.cpp:869
Class to represent function types.
static LLVM_ABI FunctionType * get(Type *Result, ArrayRef< Type * > Params, bool isVarArg)
This static method is the primary way of constructing a FunctionType.
FunctionType * getFunctionType() const
Returns the FunctionType for me.
Definition Function.h:211
const Function & getFunction() const
Definition Function.h:166
void setCallingConv(CallingConv::ID CC)
Definition Function.h:276
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
Definition Type.cpp:350
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
static LLVM_ABI PointerType * get(Type *ElementType, unsigned AddressSpace)
This constructs a pointer to an object of the specified type in a numbered address space.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
static constexpr size_t npos
Definition StringRef.h:58
std::string str() const
Get the contents as an std::string.
Definition StringRef.h:222
constexpr size_t size() const
Get the string size.
Definition StringRef.h:144
Class to represent struct types.
static LLVM_ABI StructType * get(LLVMContext &Context, ArrayRef< Type * > Elements, bool isPacked=false)
This static method is the primary way to create a literal StructType.
Definition Type.cpp:479
Class to represent target extensions types, which are generally unintrospectable from target-independ...
static LLVM_ABI TargetExtType * get(LLVMContext &Context, StringRef Name, ArrayRef< Type * > Types={}, ArrayRef< unsigned > Ints={})
Return a target extension type having the specified name and optional type and integer parameters.
Definition Type.cpp:974
Target - Wrapper for Target specific information.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
static LLVM_ABI Type * getX86_AMXTy(LLVMContext &C)
Definition Type.cpp:293
LLVM_ABI Type * getTruncatedType() const
Given scalar/vector integer type, returns a type with elements half as wide as in the original type.
static LLVM_ABI Type * getMetadataTy(LLVMContext &C)
Definition Type.cpp:288
static LLVM_ABI Type * getTokenTy(LLVMContext &C)
Definition Type.cpp:289
bool isIntOrIntVectorTy() const
Return true if this is an integer type or a vector of integer types.
Definition Type.h:263
static LLVM_ABI Type * getPPC_FP128Ty(LLVMContext &C)
Definition Type.cpp:292
static LLVM_ABI Type * getFP128Ty(LLVMContext &C)
Definition Type.cpp:291
@ X86_AMXTyID
AMX vectors (8192 bits, X86 specific)
Definition Type.h:67
@ HalfTyID
16-bit floating point type
Definition Type.h:57
@ VoidTyID
type with no size
Definition Type.h:64
@ FloatTyID
32-bit floating point type
Definition Type.h:59
@ IntegerTyID
Arbitrary bit width integers.
Definition Type.h:71
@ BFloatTyID
16-bit floating point type (7-bit significand)
Definition Type.h:58
@ DoubleTyID
64-bit floating point type
Definition Type.h:60
@ X86_FP80TyID
80-bit floating point type (X87)
Definition Type.h:61
@ PPC_FP128TyID
128-bit floating point type (two 64-bits, PowerPC)
Definition Type.h:63
@ MetadataTyID
Metadata.
Definition Type.h:66
@ ByteTyID
Arbitrary bit width bytes.
Definition Type.h:72
@ FP128TyID
128-bit floating point type (112-bit significand)
Definition Type.h:62
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
Definition Type.cpp:282
LLVM_ABI Type * getExtendedType() const
Given scalar/vector integer type, returns a type with elements twice as wide as in the original type.
bool isIntegerTy() const
True if this is an instance of IntegerType.
Definition Type.h:257
static LLVM_ABI Type * getDoubleTy(LLVMContext &C)
Definition Type.cpp:287
static LLVM_ABI Type * getFloatTy(LLVMContext &C)
Definition Type.cpp:286
static LLVM_ABI Type * getBFloatTy(LLVMContext &C)
Definition Type.cpp:285
static LLVM_ABI Type * getHalfTy(LLVMContext &C)
Definition Type.cpp:284
static VectorType * getOneNthElementsVectorType(VectorType *VTy, unsigned Denominator)
static VectorType * getSubdividedVectorType(VectorType *VTy, int NumSubdivs)
static VectorType * getInteger(VectorType *VTy)
This static method gets a VectorType with the same number of elements as the input type,...
static LLVM_ABI VectorType * get(Type *ElementType, ElementCount EC)
This static method is the primary way to construct an VectorType.
Type * getElementType() const
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
This namespace contains an enum with a value for every intrinsic/builtin function known by LLVM.
LLVM_ABI Intrinsic::ID getDeinterleaveIntrinsicID(unsigned Factor)
Returns the corresponding llvm.vector.deinterleaveN intrinsic for factor N.
LLVM_ABI Function * getDeclarationIfExists(const Module *M, ID id)
Look up the Function declaration of the intrinsic id in the Module M and return it if it exists.
LLVM_ABI std::optional< Function * > remangleIntrinsicFunction(Function *F)
LLVM_ABI bool hasConstrainedFPRoundingModeOperand(ID QID)
Returns true if the intrinsic ID is for one of the "ConstrainedFloating-Point Intrinsics" that take r...
LLVM_ABI StringRef getName(ID id)
Return the LLVM name for an intrinsic, such as "llvm.ppc.altivec.lvx".
LLVM_ABI Function * getOrInsertDeclaration(Module *M, ID id, ArrayRef< Type * > OverloadTys={})
Look up the Function declaration of the intrinsic id in the Module M.
LLVM_ABI bool isConstrainedFPIntrinsic(ID QID)
Returns true if the intrinsic ID is for one of the "ConstrainedFloating-Point Intrinsics".
LLVM_ABI ID lookupIntrinsicID(StringRef Name)
This does the actual lookup of an intrinsic ID which matches the given function name.
LLVM_ABI bool hasPrettyPrintedArgs(ID id)
Returns true if the intrinsic has pretty printed immediate arguments.
LLVM_ABI std::tuple< ArrayRef< IITDescriptor >, unsigned, bool > getIntrinsicInfoTableEntries(ID id, SmallVectorImpl< IITDescriptor > &T)
Fill the IIT table descriptor for the intrinsic id into an array of IITDescriptors.
LLVM_ABI StringRef getBaseName(ID id)
Return the LLVM name for an intrinsic, without encoded types for overloading, such as "llvm....
LLVM_ABI Intrinsic::ID getInterleaveIntrinsicID(unsigned Factor)
Returns the corresponding llvm.vector.interleaveN intrinsic for factor N.
LLVM_ABI bool isOverloaded(ID id)
Returns true if the intrinsic can be overloaded.
LLVM_ABI FunctionType * getType(LLVMContext &Context, ID id, ArrayRef< Type * > OverloadTys={})
Return the function type for an intrinsic.
LLVM_ABI bool isSignatureValid(Intrinsic::ID ID, FunctionType *FT, SmallVectorImpl< Type * > &OverloadTys, raw_ostream &OS=nulls())
Returns true if FT is a valid function type for intrinsic ID.
LLVM_ABI bool hasStructReturnType(ID id)
Returns true if id has a struct return type.
LLVM_ABI bool isTriviallyScalarizable(ID id)
Returns true if the intrinsic is trivially scalarizable.
LLVM_ABI bool isTargetIntrinsic(ID IID)
isTargetIntrinsic - Returns true if IID is an intrinsic specific to a certain target.
LLVM_ABI std::string getNameNoUnnamedTypes(ID Id, ArrayRef< Type * > OverloadTys)
Return the LLVM name for an intrinsic.
This is an optimization pass for GlobalISel generic memory operations.
@ Low
Lower the current thread's priority such that it does not affect foreground tasks significantly.
Definition Threading.h:280
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
Definition MathExtras.h:165
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
Definition STLExtras.h:2553
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
auto partition_point(R &&Range, Predicate P)
Binary search for the first iterator in a range where a predicate is false.
Definition STLExtras.h:2128
std::string utostr(uint64_t X, bool isNeg=false)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1745
auto formatv(bool Validate, const char *Fmt, Ts &&...Vals)
LLVM_ABI raw_ostream & nulls()
This returns a reference to a raw_ostream which simply discards output.
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
ArrayRef(const T &OneElt) -> ArrayRef< T >
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
constexpr detail::IsaCheckPredicate< Types... > IsaPred
Function object wrapper for the llvm::isa type check.
Definition Casting.h:866
#define N
Intrinsic::ID Interleave
Intrinsic::ID Deinterleave