Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / include / llvm / ExecutionEngine / JITSymbol.h
blobda1352f617402bc209d8420a6850b6c42afa68d4
1 //===- JITSymbol.h - JIT symbol abstraction ---------------------*- 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 // Abstraction for target process addresses.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_EXECUTIONENGINE_JITSYMBOL_H
14 #define LLVM_EXECUTIONENGINE_JITSYMBOL_H
16 #include <algorithm>
17 #include <cassert>
18 #include <cstddef>
19 #include <cstdint>
20 #include <functional>
21 #include <map>
22 #include <set>
23 #include <string>
25 #include "llvm/ADT/BitmaskEnum.h"
26 #include "llvm/ADT/StringRef.h"
27 #include "llvm/Support/Error.h"
29 namespace llvm {
31 class GlobalValue;
33 namespace object {
35 class SymbolRef;
37 } // end namespace object
39 /// Represents an address in the target process's address space.
40 using JITTargetAddress = uint64_t;
42 /// Convert a JITTargetAddress to a pointer.
43 template <typename T> T jitTargetAddressToPointer(JITTargetAddress Addr) {
44 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
45 uintptr_t IntPtr = static_cast<uintptr_t>(Addr);
46 assert(IntPtr == Addr && "JITTargetAddress value out of range for uintptr_t");
47 return reinterpret_cast<T>(IntPtr);
50 template <typename T> JITTargetAddress pointerToJITTargetAddress(T *Ptr) {
51 return static_cast<JITTargetAddress>(reinterpret_cast<uintptr_t>(Ptr));
54 /// Flags for symbols in the JIT.
55 class JITSymbolFlags {
56 public:
57 using UnderlyingType = uint8_t;
58 using TargetFlagsType = uint64_t;
60 enum FlagNames : UnderlyingType {
61 None = 0,
62 HasError = 1U << 0,
63 Weak = 1U << 1,
64 Common = 1U << 2,
65 Absolute = 1U << 3,
66 Exported = 1U << 4,
67 Callable = 1U << 5,
68 Lazy = 1U << 6,
69 Materializing = 1U << 7,
70 LLVM_MARK_AS_BITMASK_ENUM(/* LargestValue = */ Materializing)
73 static JITSymbolFlags stripTransientFlags(JITSymbolFlags Orig) {
74 return static_cast<FlagNames>(Orig.Flags & ~Lazy & ~Materializing);
77 /// Default-construct a JITSymbolFlags instance.
78 JITSymbolFlags() = default;
80 /// Construct a JITSymbolFlags instance from the given flags.
81 JITSymbolFlags(FlagNames Flags) : Flags(Flags) {}
83 /// Construct a JITSymbolFlags instance from the given flags and target
84 /// flags.
85 JITSymbolFlags(FlagNames Flags, TargetFlagsType TargetFlags)
86 : Flags(Flags), TargetFlags(TargetFlags) {}
88 /// Implicitly convert to bool. Returs true if any flag is set.
89 explicit operator bool() const { return Flags != None || TargetFlags != 0; }
91 /// Compare for equality.
92 bool operator==(const JITSymbolFlags &RHS) const {
93 return Flags == RHS.Flags && TargetFlags == RHS.TargetFlags;
96 /// Bitwise AND-assignment for FlagNames.
97 JITSymbolFlags &operator&=(const FlagNames &RHS) {
98 Flags &= RHS;
99 return *this;
102 /// Bitwise OR-assignment for FlagNames.
103 JITSymbolFlags &operator|=(const FlagNames &RHS) {
104 Flags |= RHS;
105 return *this;
108 /// Return true if there was an error retrieving this symbol.
109 bool hasError() const {
110 return (Flags & HasError) == HasError;
113 /// Returns true if this is a lazy symbol.
114 /// This flag is used internally by the JIT APIs to track
115 /// materialization states.
116 bool isLazy() const { return Flags & Lazy; }
118 /// Returns true if this symbol is in the process of being
119 /// materialized.
120 bool isMaterializing() const { return Flags & Materializing; }
122 /// Returns true if this symbol is fully materialized.
123 /// (i.e. neither lazy, nor materializing).
124 bool isMaterialized() const { return !(Flags & (Lazy | Materializing)); }
126 /// Returns true if the Weak flag is set.
127 bool isWeak() const {
128 return (Flags & Weak) == Weak;
131 /// Returns true if the Common flag is set.
132 bool isCommon() const {
133 return (Flags & Common) == Common;
136 /// Returns true if the symbol isn't weak or common.
137 bool isStrong() const {
138 return !isWeak() && !isCommon();
141 /// Returns true if the Exported flag is set.
142 bool isExported() const {
143 return (Flags & Exported) == Exported;
146 /// Returns true if the given symbol is known to be callable.
147 bool isCallable() const { return (Flags & Callable) == Callable; }
149 /// Get the underlying flags value as an integer.
150 UnderlyingType getRawFlagsValue() const {
151 return static_cast<UnderlyingType>(Flags);
154 /// Return a reference to the target-specific flags.
155 TargetFlagsType& getTargetFlags() { return TargetFlags; }
157 /// Return a reference to the target-specific flags.
158 const TargetFlagsType& getTargetFlags() const { return TargetFlags; }
160 /// Construct a JITSymbolFlags value based on the flags of the given global
161 /// value.
162 static JITSymbolFlags fromGlobalValue(const GlobalValue &GV);
164 /// Construct a JITSymbolFlags value based on the flags of the given libobject
165 /// symbol.
166 static Expected<JITSymbolFlags>
167 fromObjectSymbol(const object::SymbolRef &Symbol);
169 private:
170 FlagNames Flags = None;
171 TargetFlagsType TargetFlags = 0;
174 inline JITSymbolFlags operator&(const JITSymbolFlags &LHS,
175 const JITSymbolFlags::FlagNames &RHS) {
176 JITSymbolFlags Tmp = LHS;
177 Tmp &= RHS;
178 return Tmp;
181 inline JITSymbolFlags operator|(const JITSymbolFlags &LHS,
182 const JITSymbolFlags::FlagNames &RHS) {
183 JITSymbolFlags Tmp = LHS;
184 Tmp |= RHS;
185 return Tmp;
188 /// ARM-specific JIT symbol flags.
189 /// FIXME: This should be moved into a target-specific header.
190 class ARMJITSymbolFlags {
191 public:
192 ARMJITSymbolFlags() = default;
194 enum FlagNames {
195 None = 0,
196 Thumb = 1 << 0
199 operator JITSymbolFlags::TargetFlagsType&() { return Flags; }
201 static ARMJITSymbolFlags fromObjectSymbol(const object::SymbolRef &Symbol);
203 private:
204 JITSymbolFlags::TargetFlagsType Flags = 0;
207 /// Represents a symbol that has been evaluated to an address already.
208 class JITEvaluatedSymbol {
209 public:
210 JITEvaluatedSymbol() = default;
212 /// Create a 'null' symbol.
213 JITEvaluatedSymbol(std::nullptr_t) {}
215 /// Create a symbol for the given address and flags.
216 JITEvaluatedSymbol(JITTargetAddress Address, JITSymbolFlags Flags)
217 : Address(Address), Flags(Flags) {}
219 /// An evaluated symbol converts to 'true' if its address is non-zero.
220 explicit operator bool() const { return Address != 0; }
222 /// Return the address of this symbol.
223 JITTargetAddress getAddress() const { return Address; }
225 /// Return the flags for this symbol.
226 JITSymbolFlags getFlags() const { return Flags; }
228 /// Set the flags for this symbol.
229 void setFlags(JITSymbolFlags Flags) { this->Flags = std::move(Flags); }
231 private:
232 JITTargetAddress Address = 0;
233 JITSymbolFlags Flags;
236 /// Represents a symbol in the JIT.
237 class JITSymbol {
238 public:
239 using GetAddressFtor = std::function<Expected<JITTargetAddress>()>;
241 /// Create a 'null' symbol, used to represent a "symbol not found"
242 /// result from a successful (non-erroneous) lookup.
243 JITSymbol(std::nullptr_t)
244 : CachedAddr(0) {}
246 /// Create a JITSymbol representing an error in the symbol lookup
247 /// process (e.g. a network failure during a remote lookup).
248 JITSymbol(Error Err)
249 : Err(std::move(Err)), Flags(JITSymbolFlags::HasError) {}
251 /// Create a symbol for a definition with a known address.
252 JITSymbol(JITTargetAddress Addr, JITSymbolFlags Flags)
253 : CachedAddr(Addr), Flags(Flags) {}
255 /// Construct a JITSymbol from a JITEvaluatedSymbol.
256 JITSymbol(JITEvaluatedSymbol Sym)
257 : CachedAddr(Sym.getAddress()), Flags(Sym.getFlags()) {}
259 /// Create a symbol for a definition that doesn't have a known address
260 /// yet.
261 /// @param GetAddress A functor to materialize a definition (fixing the
262 /// address) on demand.
264 /// This constructor allows a JIT layer to provide a reference to a symbol
265 /// definition without actually materializing the definition up front. The
266 /// user can materialize the definition at any time by calling the getAddress
267 /// method.
268 JITSymbol(GetAddressFtor GetAddress, JITSymbolFlags Flags)
269 : GetAddress(std::move(GetAddress)), CachedAddr(0), Flags(Flags) {}
271 JITSymbol(const JITSymbol&) = delete;
272 JITSymbol& operator=(const JITSymbol&) = delete;
274 JITSymbol(JITSymbol &&Other)
275 : GetAddress(std::move(Other.GetAddress)), Flags(std::move(Other.Flags)) {
276 if (Flags.hasError())
277 Err = std::move(Other.Err);
278 else
279 CachedAddr = std::move(Other.CachedAddr);
282 JITSymbol& operator=(JITSymbol &&Other) {
283 GetAddress = std::move(Other.GetAddress);
284 Flags = std::move(Other.Flags);
285 if (Flags.hasError())
286 Err = std::move(Other.Err);
287 else
288 CachedAddr = std::move(Other.CachedAddr);
289 return *this;
292 ~JITSymbol() {
293 if (Flags.hasError())
294 Err.~Error();
295 else
296 CachedAddr.~JITTargetAddress();
299 /// Returns true if the symbol exists, false otherwise.
300 explicit operator bool() const {
301 return !Flags.hasError() && (CachedAddr || GetAddress);
304 /// Move the error field value out of this JITSymbol.
305 Error takeError() {
306 if (Flags.hasError())
307 return std::move(Err);
308 return Error::success();
311 /// Get the address of the symbol in the target address space. Returns
312 /// '0' if the symbol does not exist.
313 Expected<JITTargetAddress> getAddress() {
314 assert(!Flags.hasError() && "getAddress called on error value");
315 if (GetAddress) {
316 if (auto CachedAddrOrErr = GetAddress()) {
317 GetAddress = nullptr;
318 CachedAddr = *CachedAddrOrErr;
319 assert(CachedAddr && "Symbol could not be materialized.");
320 } else
321 return CachedAddrOrErr.takeError();
323 return CachedAddr;
326 JITSymbolFlags getFlags() const { return Flags; }
328 private:
329 GetAddressFtor GetAddress;
330 union {
331 JITTargetAddress CachedAddr;
332 Error Err;
334 JITSymbolFlags Flags;
337 /// Symbol resolution interface.
339 /// Allows symbol flags and addresses to be looked up by name.
340 /// Symbol queries are done in bulk (i.e. you request resolution of a set of
341 /// symbols, rather than a single one) to reduce IPC overhead in the case of
342 /// remote JITing, and expose opportunities for parallel compilation.
343 class JITSymbolResolver {
344 public:
345 using LookupSet = std::set<StringRef>;
346 using LookupResult = std::map<StringRef, JITEvaluatedSymbol>;
347 using OnResolvedFunction = std::function<void(Expected<LookupResult>)>;
349 virtual ~JITSymbolResolver() = default;
351 /// Returns the fully resolved address and flags for each of the given
352 /// symbols.
354 /// This method will return an error if any of the given symbols can not be
355 /// resolved, or if the resolution process itself triggers an error.
356 virtual void lookup(const LookupSet &Symbols,
357 OnResolvedFunction OnResolved) = 0;
359 /// Returns the subset of the given symbols that should be materialized by
360 /// the caller. Only weak/common symbols should be looked up, as strong
361 /// definitions are implicitly always part of the caller's responsibility.
362 virtual Expected<LookupSet>
363 getResponsibilitySet(const LookupSet &Symbols) = 0;
365 private:
366 virtual void anchor();
369 /// Legacy symbol resolution interface.
370 class LegacyJITSymbolResolver : public JITSymbolResolver {
371 public:
372 /// Performs lookup by, for each symbol, first calling
373 /// findSymbolInLogicalDylib and if that fails calling
374 /// findSymbol.
375 void lookup(const LookupSet &Symbols, OnResolvedFunction OnResolved) final;
377 /// Performs flags lookup by calling findSymbolInLogicalDylib and
378 /// returning the flags value for that symbol.
379 Expected<LookupSet> getResponsibilitySet(const LookupSet &Symbols) final;
381 /// This method returns the address of the specified symbol if it exists
382 /// within the logical dynamic library represented by this JITSymbolResolver.
383 /// Unlike findSymbol, queries through this interface should return addresses
384 /// for hidden symbols.
386 /// This is of particular importance for the Orc JIT APIs, which support lazy
387 /// compilation by breaking up modules: Each of those broken out modules
388 /// must be able to resolve hidden symbols provided by the others. Clients
389 /// writing memory managers for MCJIT can usually ignore this method.
391 /// This method will be queried by RuntimeDyld when checking for previous
392 /// definitions of common symbols.
393 virtual JITSymbol findSymbolInLogicalDylib(const std::string &Name) = 0;
395 /// This method returns the address of the specified function or variable.
396 /// It is used to resolve symbols during module linking.
398 /// If the returned symbol's address is equal to ~0ULL then RuntimeDyld will
399 /// skip all relocations for that symbol, and the client will be responsible
400 /// for handling them manually.
401 virtual JITSymbol findSymbol(const std::string &Name) = 0;
403 private:
404 virtual void anchor();
407 } // end namespace llvm
409 #endif // LLVM_EXECUTIONENGINE_JITSYMBOL_H