1 //===- Intrinsics.h - LLVM Intrinsic Function Handling ----------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 // This file defines a set of enums which allow processing of intrinsic
10 // functions. Values of these enum types are returned by
11 // Function::getIntrinsicID.
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_IR_INTRINSICS_H
16 #define LLVM_IR_INTRINSICS_H
18 #include "llvm/ADT/ArrayRef.h"
19 #include "llvm/ADT/None.h"
20 #include "llvm/ADT/Optional.h"
32 /// This namespace contains an enum with a value for every intrinsic/builtin
33 /// function known by LLVM. The enum values are returned by
34 /// Function::getIntrinsicID().
37 not_intrinsic
= 0, // Must be zero
39 // Get the intrinsic enums generated from Intrinsics.td
40 #define GET_INTRINSIC_ENUM_VALUES
41 #include "llvm/IR/IntrinsicEnums.inc"
42 #undef GET_INTRINSIC_ENUM_VALUES
46 /// Return the LLVM name for an intrinsic, such as "llvm.ppc.altivec.lvx".
47 /// Note, this version is for intrinsics with no overloads. Use the other
48 /// version of getName if overloads are required.
49 StringRef
getName(ID id
);
51 /// Return the LLVM name for an intrinsic, such as "llvm.ppc.altivec.lvx".
52 /// Note, this version of getName supports overloads, but is less efficient
53 /// than the StringRef version of this function. If no overloads are
54 /// requried, it is safe to use this version, but better to use the StringRef
56 std::string
getName(ID id
, ArrayRef
<Type
*> Tys
);
58 /// Return the function type for an intrinsic.
59 FunctionType
*getType(LLVMContext
&Context
, ID id
,
60 ArrayRef
<Type
*> Tys
= None
);
62 /// Returns true if the intrinsic can be overloaded.
63 bool isOverloaded(ID id
);
65 /// Returns true if the intrinsic is a leaf, i.e. it does not make any calls
66 /// itself. Most intrinsics are leafs, the exceptions being the patchpoint
67 /// and statepoint intrinsics. These call (or invoke) their "target" argument.
70 /// Return the attributes for an intrinsic.
71 AttributeList
getAttributes(LLVMContext
&C
, ID id
);
73 /// Create or insert an LLVM Function declaration for an intrinsic, and return
76 /// The Tys parameter is for intrinsics with overloaded types (e.g., those
77 /// using iAny, fAny, vAny, or iPTRAny). For a declaration of an overloaded
78 /// intrinsic, Tys must provide exactly one type for each overloaded type in
80 Function
*getDeclaration(Module
*M
, ID id
, ArrayRef
<Type
*> Tys
= None
);
82 /// Looks up Name in NameTable via binary search. NameTable must be sorted
83 /// and all entries must start with "llvm.". If NameTable contains an exact
84 /// match for Name or a prefix of Name followed by a dot, its index in
85 /// NameTable is returned. Otherwise, -1 is returned.
86 int lookupLLVMIntrinsicByName(ArrayRef
<const char *> NameTable
,
89 /// Map a GCC builtin name to an intrinsic ID.
90 ID
getIntrinsicForGCCBuiltin(const char *Prefix
, StringRef BuiltinName
);
92 /// Map a MS builtin name to an intrinsic ID.
93 ID
getIntrinsicForMSBuiltin(const char *Prefix
, StringRef BuiltinName
);
95 /// This is a type descriptor which explains the type requirements of an
96 /// intrinsic. This is returned by getIntrinsicInfoTableEntries.
97 struct IITDescriptor
{
98 enum IITDescriptorKind
{
99 Void
, VarArg
, MMX
, Token
, Metadata
, Half
, Float
, Double
, Quad
,
100 Integer
, Vector
, Pointer
, Struct
,
101 Argument
, ExtendArgument
, TruncArgument
, HalfVecArgument
,
102 SameVecWidthArgument
, PtrToArgument
, PtrToElt
, VecOfAnyPtrsToElt
106 unsigned Integer_Width
;
107 unsigned Float_Width
;
108 unsigned Vector_Width
;
109 unsigned Pointer_AddressSpace
;
110 unsigned Struct_NumElements
;
111 unsigned Argument_Info
;
122 unsigned getArgumentNumber() const {
123 assert(Kind
== Argument
|| Kind
== ExtendArgument
||
124 Kind
== TruncArgument
|| Kind
== HalfVecArgument
||
125 Kind
== SameVecWidthArgument
|| Kind
== PtrToArgument
||
127 return Argument_Info
>> 3;
129 ArgKind
getArgumentKind() const {
130 assert(Kind
== Argument
|| Kind
== ExtendArgument
||
131 Kind
== TruncArgument
|| Kind
== HalfVecArgument
||
132 Kind
== SameVecWidthArgument
|| Kind
== PtrToArgument
);
133 return (ArgKind
)(Argument_Info
& 7);
136 // VecOfAnyPtrsToElt uses both an overloaded argument (for address space)
137 // and a reference argument (for matching vector width and element types)
138 unsigned getOverloadArgNumber() const {
139 assert(Kind
== VecOfAnyPtrsToElt
);
140 return Argument_Info
>> 16;
142 unsigned getRefArgNumber() const {
143 assert(Kind
== VecOfAnyPtrsToElt
);
144 return Argument_Info
& 0xFFFF;
147 static IITDescriptor
get(IITDescriptorKind K
, unsigned Field
) {
148 IITDescriptor Result
= { K
, { Field
} };
152 static IITDescriptor
get(IITDescriptorKind K
, unsigned short Hi
,
154 unsigned Field
= Hi
<< 16 | Lo
;
155 IITDescriptor Result
= {K
, {Field
}};
160 /// Return the IIT table descriptor for the specified intrinsic into an array
161 /// of IITDescriptors.
162 void getIntrinsicInfoTableEntries(ID id
, SmallVectorImpl
<IITDescriptor
> &T
);
164 /// Match the specified type (which comes from an intrinsic argument or return
165 /// value) with the type constraints specified by the .td file. If the given
166 /// type is an overloaded type it is pushed to the ArgTys vector.
168 /// Returns false if the given type matches with the constraints, true
170 bool matchIntrinsicType(Type
*Ty
, ArrayRef
<IITDescriptor
> &Infos
,
171 SmallVectorImpl
<Type
*> &ArgTys
);
173 /// Verify if the intrinsic has variable arguments. This method is intended to
174 /// be called after all the fixed arguments have been matched first.
176 /// This method returns true on error.
177 bool matchIntrinsicVarArg(bool isVarArg
, ArrayRef
<IITDescriptor
> &Infos
);
179 // Checks if the intrinsic name matches with its signature and if not
180 // returns the declaration with the same signature and remangled name.
181 llvm::Optional
<Function
*> remangleIntrinsicFunction(Function
*F
);
183 } // End Intrinsic namespace
185 } // End llvm namespace