LLVM 24.0.0git
RuntimeLibcalls.h
Go to the documentation of this file.
1//===- RuntimeLibcalls.h - Interface for runtime libcalls -------*- 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 a common interface to work with library calls into a
10// runtime that may be emitted by a given backend.
11//
12// FIXME: This should probably move to Analysis
13//
14//===----------------------------------------------------------------------===//
15
16#ifndef LLVM_IR_RUNTIME_LIBCALLS_H
17#define LLVM_IR_RUNTIME_LIBCALLS_H
18
19#include "llvm/ADT/ArrayRef.h"
20#include "llvm/ADT/Bitset.h"
21#include "llvm/ADT/Sequence.h"
23#include "llvm/IR/CallingConv.h"
24#include "llvm/IR/InstrTypes.h"
25#include "llvm/IR/PassManager.h"
31
32/// TableGen will produce 2 enums, RTLIB::Libcall and
33/// RTLIB::LibcallImpl. RTLIB::Libcall describes abstract functionality the
34/// compiler may choose to access, RTLIB::LibcallImpl describes a particular ABI
35/// implementation, which includes a name and type signature.
36#define GET_RUNTIME_LIBCALL_ENUM
37#include "llvm/IR/RuntimeLibcalls.inc"
38
39namespace llvm {
40
41template <> struct enum_iteration_traits<RTLIB::Libcall> {
42 static constexpr bool is_iterable = true;
43};
44
45template <> struct enum_iteration_traits<RTLIB::LibcallImpl> {
46 static constexpr bool is_iterable = true;
47};
48
50class Type;
51
52namespace Intrinsic {
53typedef unsigned ID;
54}
55
56namespace RTLIB {
57
58// Return an iterator over all Libcall values.
59static inline auto libcalls() {
60 return enum_seq(static_cast<RTLIB::Libcall>(0), RTLIB::UNKNOWN_LIBCALL);
61}
62
63static inline auto libcall_impls() {
64 return enum_seq(static_cast<RTLIB::LibcallImpl>(1),
65 static_cast<RTLIB::LibcallImpl>(RTLIB::NumLibcallImpls));
66}
67
68/// Manage a bitset representing the list of available libcalls for a module.
69class LibcallImplBitset : public Bitset<RTLIB::NumLibcallImpls> {
70public:
71 constexpr LibcallImplBitset() = default;
73 const std::array<uint64_t, (RTLIB::NumLibcallImpls + 63) / 64> &Src)
74 : Bitset(Src) {}
75};
76
77/// A simple container for information about the supported runtime calls.
79private:
80 /// Bitset of libcalls a module may emit a call to.
81 LibcallImplBitset AvailableLibcallImpls;
82
83public:
85
87
89 const Triple &TT,
92 EABI EABIVersion = EABI::Default, StringRef ABIName = "",
94
95 LLVM_ABI explicit RuntimeLibcallsInfo(const Module &M);
96
98 ModuleAnalysisManager::Invalidator &);
99
100 /// Get the libcall routine name for the specified libcall implementation.
101 static StringRef getLibcallImplName(RTLIB::LibcallImpl CallImpl) {
102 if (CallImpl == RTLIB::Unsupported)
103 return StringRef();
104 return StringRef(RuntimeLibcallImplNameTable.getCString(
105 RuntimeLibcallNameOffsetTable[CallImpl]),
106 RuntimeLibcallNameSizeTable[CallImpl]);
107 }
108
109 /// Set the CallingConv that should be used for the specified libcall
110 /// implementation
111 void setLibcallImplCallingConv(RTLIB::LibcallImpl Call, CallingConv::ID CC) {
112 LibcallImplCallingConvs[Call] = CC;
113 }
114
115 /// Get the CallingConv that should be used for the specified libcall.
117 return LibcallImplCallingConvs[Call];
118 }
119
120 /// Return the libcall provided by \p Impl
121 static RTLIB::Libcall getLibcallFromImpl(RTLIB::LibcallImpl Impl) {
122 return ImplToLibcall[Impl];
123 }
124
125 /// Return the runtime libcall that the floating-point math intrinsic \p ID
126 /// may be lowered to, or RTLIB::UNKNOWN_LIBCALL if there is no such mapping.
127 ///
128 /// \p FTy must be the intrinsic's call signature.
130 FunctionType *FTy);
131
133 return AvailableLibcallImpls.count();
134 }
135
136 bool isAvailable(RTLIB::LibcallImpl Impl) const {
137 return AvailableLibcallImpls.test(Impl);
138 }
139
140 void setAvailable(RTLIB::LibcallImpl Impl) {
141 AvailableLibcallImpls.set(Impl);
142 }
143
144 /// Check if a function name is a recognized runtime call of any kind. This
145 /// does not consider if this call is available for any current compilation,
146 /// just that it is a known call somewhere. This returns the set of all
147 /// LibcallImpls which match the name; multiple implementations with the same
148 /// name may exist but differ in interpretation based on the target context.
149 ///
150 /// Generated by tablegen.
153 // Inlining the early exit on the string name appears to be worthwhile when
154 // querying a real set of symbols
155#define GET_LOOKUP_LIBCALL_IMPL_NAME_BODY
156#include "llvm/IR/RuntimeLibcalls.inc"
157 }
158
159 /// Check if this is valid libcall for the current module, otherwise
160 /// RTLIB::Unsupported.
161 RTLIB::LibcallImpl getSupportedLibcallImpl(StringRef FuncName) const {
162 for (RTLIB::LibcallImpl Impl : lookupLibcallImplName(FuncName)) {
163 if (isAvailable(Impl))
164 return Impl;
165 }
166
167 return RTLIB::Unsupported;
168 }
169
170 /// \returns the function type and attributes for the \p LibcallImpl,
171 /// depending on the target \p TT. If the function has incomplete type
172 /// information, return nullptr for the function type.
173 LLVM_ABI std::pair<FunctionType *, AttributeList>
174 getFunctionTy(LLVMContext &Ctx, const Triple &TT, const DataLayout &DL,
175 RTLIB::LibcallImpl LibcallImpl) const;
176
177 /// Returns true if the function has a vector mask argument, which is assumed
178 /// to be the last argument.
179 LLVM_ABI static bool hasVectorMaskArgument(RTLIB::LibcallImpl Impl);
180
181private:
183 lookupLibcallImplNameImpl(StringRef Name);
184
185 static_assert(static_cast<int>(CallingConv::C) == 0,
186 "default calling conv should be encoded as 0");
187
188 /// Stores the CallingConv that should be used for each libcall
189 /// implementation.;
190 CallingConv::ID LibcallImplCallingConvs[RTLIB::NumLibcallImpls] = {};
191
192 /// Names of concrete implementations of runtime calls. e.g. __ashlsi3 for
193 /// SHL_I32
194 LLVM_ABI static const char RuntimeLibcallImplNameTableStorage[];
195 LLVM_ABI static const StringTable RuntimeLibcallImplNameTable;
196 LLVM_ABI static const uint16_t RuntimeLibcallNameOffsetTable[];
197 LLVM_ABI static const uint8_t RuntimeLibcallNameSizeTable[];
198
199 /// Map from a concrete LibcallImpl implementation to its RTLIB::Libcall kind.
200 LLVM_ABI static const RTLIB::Libcall ImplToLibcall[RTLIB::NumLibcallImpls];
201
202 /// Utility function for tablegenerated lookup function. Return a range of
203 /// enum values that apply for the function name at \p NameOffsetEntry with
204 /// the value \p StrOffset.
206 libcallImplNameHit(uint16_t NameOffsetEntry, uint16_t StrOffset);
207
208 static bool darwinHasSinCosStret(const Triple &TT) {
209 if (!TT.isOSDarwin())
210 return false;
211
212 // Don't bother with 32 bit x86.
213 if (TT.getArch() == Triple::x86)
214 return false;
215 // Macos < 10.9 has no sincos_stret.
216 if (TT.isMacOSX())
217 return !TT.isMacOSXVersionLT(10, 9) && TT.isArch64Bit();
218 // iOS < 7.0 has no sincos_stret.
219 if (TT.isiOS())
220 return !TT.isOSVersionLT(7, 0);
221 // Any other darwin such as WatchOS/TvOS is new enough.
222 return true;
223 }
224
226 static bool isAAPCS_ABI(const Triple &TT, StringRef ABIName);
227
228 /// Generated by tablegen.
229 void setTargetRuntimeLibcallSets(const Triple &TT,
230 ExceptionHandling ExceptionModel,
231 FloatABI::ABIType FloatABI, EABI ABIType,
232 StringRef ABIName,
234
235 /// Set default libcall names. If a target wants to opt-out of a libcall it
236 /// should be placed here.
237 LLVM_ABI void initLibcalls(const Triple &TT, ExceptionHandling ExceptionModel,
238 FloatABI::ABIType FloatABI, EABI ABIType,
239 StringRef ABIName,
241};
242
243} // namespace RTLIB
244
245} // namespace llvm
246
247#endif // LLVM_IR_RUNTIME_LIBCALLS_H
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Atomic ordering constants.
#define LLVM_ABI
Definition Compiler.h:215
#define LLVM_READONLY
Definition Compiler.h:330
This header defines various interfaces for pass management in LLVM.
Provides some synthesis utilities to produce sequences of values.
constexpr Bitset(const std::array< uint64_t,(NumBits+63)/64 > &B)
Definition Bitset.h:56
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
Class to represent function types.
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
Tracks which library functions to use for a particular subtarget.
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
Manage a bitset representing the list of available libcalls for a module.
constexpr LibcallImplBitset(const std::array< uint64_t,(RTLIB::NumLibcallImpls+63)/64 > &Src)
constexpr LibcallImplBitset()=default
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
A table of densely packed, null-terminated strings indexed by offset.
Definition StringTable.h:34
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:48
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
CallInst * Call
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
This namespace contains an enum with a value for every intrinsic/builtin function known by LLVM.
static auto libcall_impls()
static auto libcalls()
This is an optimization pass for GlobalISel generic memory operations.
LongDoubleFormat
The floating-point format used for the target's "long double" type.
Definition CodeGen.h:67
constexpr auto enum_seq(EnumT Begin, EnumT End)
Iterate over an enum type from Begin up to - but not including - End.
Definition Sequence.h:373
ExceptionHandling
Definition CodeGen.h:54
@ None
No exception support.
Definition CodeGen.h:55
VectorLibrary
List of known vector-functions libraries.
CallingConv::ID getLibcallImplCallingConv(RTLIB::LibcallImpl Call) const
Get the CallingConv that should be used for the specified libcall.
static LLVM_ABI RTLIB::Libcall getLibcallForIntrinsic(Intrinsic::ID ID, FunctionType *FTy)
Return the runtime libcall that the floating-point math intrinsic ID may be lowered to,...
unsigned getNumAvailableLibcallImpls() const
bool isAvailable(RTLIB::LibcallImpl Impl) const
LLVM_ABI std::pair< FunctionType *, AttributeList > getFunctionTy(LLVMContext &Ctx, const Triple &TT, const DataLayout &DL, RTLIB::LibcallImpl LibcallImpl) const
void setAvailable(RTLIB::LibcallImpl Impl)
static LLVM_ABI bool hasVectorMaskArgument(RTLIB::LibcallImpl Impl)
Returns true if the function has a vector mask argument, which is assumed to be the last argument.
static iota_range< RTLIB::LibcallImpl > lookupLibcallImplName(StringRef Name)
Check if a function name is a recognized runtime call of any kind.
RTLIB::LibcallImpl getSupportedLibcallImpl(StringRef FuncName) const
Check if this is valid libcall for the current module, otherwise RTLIB::Unsupported.
static StringRef getLibcallImplName(RTLIB::LibcallImpl CallImpl)
Get the libcall routine name for the specified libcall implementation.
void setLibcallImplCallingConv(RTLIB::LibcallImpl Call, CallingConv::ID CC)
Set the CallingConv that should be used for the specified libcall implementation.
static RTLIB::Libcall getLibcallFromImpl(RTLIB::LibcallImpl Impl)
Return the libcall provided by Impl.
LLVM_ABI bool invalidate(Module &M, const PreservedAnalyses &PA, ModuleAnalysisManager::Invalidator &)