blob: 9bbdd21f77de1a15eb589c4088eac33ce1753813 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- JITSymbol.h - JIT symbol abstraction ---------------------*- C++ -*-===//
2//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// 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
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
7//===----------------------------------------------------------------------===//
8//
9// Abstraction for target process addresses.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_EXECUTIONENGINE_JITSYMBOL_H
14#define LLVM_EXECUTIONENGINE_JITSYMBOL_H
15
16#include <algorithm>
17#include <cassert>
18#include <cstddef>
19#include <cstdint>
20#include <functional>
21#include <map>
22#include <set>
23#include <string>
24
Andrew Scull0372a572018-11-16 15:47:06 +000025#include "llvm/ADT/BitmaskEnum.h"
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020026#include "llvm/ADT/FunctionExtras.h"
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010027#include "llvm/ADT/StringRef.h"
28#include "llvm/Support/Error.h"
29
30namespace llvm {
31
32class GlobalValue;
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020033class GlobalValueSummary;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010034
35namespace object {
36
Andrew Scullcdfcccc2018-10-05 20:58:37 +010037class SymbolRef;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010038
39} // end namespace object
40
Andrew Scullcdfcccc2018-10-05 20:58:37 +010041/// Represents an address in the target process's address space.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010042using JITTargetAddress = uint64_t;
43
Andrew Walbran16937d02019-10-22 13:54:20 +010044/// Convert a JITTargetAddress to a pointer.
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020045///
46/// Note: This is a raw cast of the address bit pattern to the given pointer
47/// type. When casting to a function pointer in order to execute JIT'd code
48/// jitTargetAddressToFunction should be preferred, as it will also perform
49/// pointer signing on targets that require it.
Andrew Walbran16937d02019-10-22 13:54:20 +010050template <typename T> T jitTargetAddressToPointer(JITTargetAddress Addr) {
51 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
52 uintptr_t IntPtr = static_cast<uintptr_t>(Addr);
53 assert(IntPtr == Addr && "JITTargetAddress value out of range for uintptr_t");
54 return reinterpret_cast<T>(IntPtr);
55}
56
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020057/// Convert a JITTargetAddress to a callable function pointer.
58///
59/// Casts the given address to a callable function pointer. This operation
60/// will perform pointer signing for platforms that require it (e.g. arm64e).
61template <typename T> T jitTargetAddressToFunction(JITTargetAddress Addr) {
62 static_assert(std::is_pointer<T>::value &&
63 std::is_function<std::remove_pointer_t<T>>::value,
64 "T must be a function pointer type");
65 return jitTargetAddressToPointer<T>(Addr);
66}
67
68/// Convert a pointer to a JITTargetAddress.
Andrew Walbran16937d02019-10-22 13:54:20 +010069template <typename T> JITTargetAddress pointerToJITTargetAddress(T *Ptr) {
70 return static_cast<JITTargetAddress>(reinterpret_cast<uintptr_t>(Ptr));
71}
72
Andrew Scullcdfcccc2018-10-05 20:58:37 +010073/// Flags for symbols in the JIT.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010074class JITSymbolFlags {
75public:
76 using UnderlyingType = uint8_t;
Andrew Walbran3d2c1972020-04-07 12:24:26 +010077 using TargetFlagsType = uint8_t;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010078
79 enum FlagNames : UnderlyingType {
80 None = 0,
81 HasError = 1U << 0,
82 Weak = 1U << 1,
83 Common = 1U << 2,
84 Absolute = 1U << 3,
85 Exported = 1U << 4,
Andrew Scullcdfcccc2018-10-05 20:58:37 +010086 Callable = 1U << 5,
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020087 MaterializationSideEffectsOnly = 1U << 6,
88 LLVM_MARK_AS_BITMASK_ENUM( // LargestValue =
89 MaterializationSideEffectsOnly)
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010090 };
91
Andrew Scullcdfcccc2018-10-05 20:58:37 +010092 /// Default-construct a JITSymbolFlags instance.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010093 JITSymbolFlags() = default;
94
Andrew Scullcdfcccc2018-10-05 20:58:37 +010095 /// Construct a JITSymbolFlags instance from the given flags.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010096 JITSymbolFlags(FlagNames Flags) : Flags(Flags) {}
97
Andrew Scullcdfcccc2018-10-05 20:58:37 +010098 /// Construct a JITSymbolFlags instance from the given flags and target
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010099 /// flags.
100 JITSymbolFlags(FlagNames Flags, TargetFlagsType TargetFlags)
Andrew Walbran3d2c1972020-04-07 12:24:26 +0100101 : TargetFlags(TargetFlags), Flags(Flags) {}
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100102
Andrew Scull0372a572018-11-16 15:47:06 +0000103 /// Implicitly convert to bool. Returs true if any flag is set.
104 explicit operator bool() const { return Flags != None || TargetFlags != 0; }
105
106 /// Compare for equality.
107 bool operator==(const JITSymbolFlags &RHS) const {
108 return Flags == RHS.Flags && TargetFlags == RHS.TargetFlags;
109 }
110
111 /// Bitwise AND-assignment for FlagNames.
112 JITSymbolFlags &operator&=(const FlagNames &RHS) {
113 Flags &= RHS;
114 return *this;
115 }
116
117 /// Bitwise OR-assignment for FlagNames.
118 JITSymbolFlags &operator|=(const FlagNames &RHS) {
119 Flags |= RHS;
120 return *this;
121 }
122
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100123 /// Return true if there was an error retrieving this symbol.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100124 bool hasError() const {
125 return (Flags & HasError) == HasError;
126 }
127
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100128 /// Returns true if the Weak flag is set.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100129 bool isWeak() const {
130 return (Flags & Weak) == Weak;
131 }
132
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100133 /// Returns true if the Common flag is set.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100134 bool isCommon() const {
135 return (Flags & Common) == Common;
136 }
137
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100138 /// Returns true if the symbol isn't weak or common.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100139 bool isStrong() const {
140 return !isWeak() && !isCommon();
141 }
142
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100143 /// Returns true if the Exported flag is set.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100144 bool isExported() const {
145 return (Flags & Exported) == Exported;
146 }
147
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100148 /// Returns true if the given symbol is known to be callable.
149 bool isCallable() const { return (Flags & Callable) == Callable; }
150
Olivier Deprezf4ef2d02021-04-20 13:36:24 +0200151 /// Returns true if this symbol is a materialization-side-effects-only
152 /// symbol. Such symbols do not have a real address. They exist to trigger
153 /// and support synchronization of materialization side effects, e.g. for
154 /// collecting initialization information. These symbols will vanish from
155 /// the symbol table immediately upon reaching the ready state, and will
156 /// appear to queries as if they were never defined (except that query
157 /// callback execution will be delayed until they reach the ready state).
158 /// MaterializationSideEffectOnly symbols should only be queried using the
159 /// SymbolLookupFlags::WeaklyReferencedSymbol flag (see
160 /// llvm/include/llvm/ExecutionEngine/Orc/Core.h).
161 bool hasMaterializationSideEffectsOnly() const {
162 return (Flags & MaterializationSideEffectsOnly) ==
163 MaterializationSideEffectsOnly;
164 }
165
Andrew Scull0372a572018-11-16 15:47:06 +0000166 /// Get the underlying flags value as an integer.
167 UnderlyingType getRawFlagsValue() const {
168 return static_cast<UnderlyingType>(Flags);
169 }
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100170
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100171 /// Return a reference to the target-specific flags.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100172 TargetFlagsType& getTargetFlags() { return TargetFlags; }
173
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100174 /// Return a reference to the target-specific flags.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100175 const TargetFlagsType& getTargetFlags() const { return TargetFlags; }
176
177 /// Construct a JITSymbolFlags value based on the flags of the given global
178 /// value.
179 static JITSymbolFlags fromGlobalValue(const GlobalValue &GV);
180
Olivier Deprezf4ef2d02021-04-20 13:36:24 +0200181 /// Construct a JITSymbolFlags value based on the flags of the given global
182 /// value summary.
183 static JITSymbolFlags fromSummary(GlobalValueSummary *S);
184
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100185 /// Construct a JITSymbolFlags value based on the flags of the given libobject
186 /// symbol.
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100187 static Expected<JITSymbolFlags>
188 fromObjectSymbol(const object::SymbolRef &Symbol);
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100189
190private:
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100191 TargetFlagsType TargetFlags = 0;
Andrew Walbran3d2c1972020-04-07 12:24:26 +0100192 FlagNames Flags = None;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100193};
194
Andrew Scull0372a572018-11-16 15:47:06 +0000195inline JITSymbolFlags operator&(const JITSymbolFlags &LHS,
196 const JITSymbolFlags::FlagNames &RHS) {
197 JITSymbolFlags Tmp = LHS;
198 Tmp &= RHS;
199 return Tmp;
200}
201
202inline JITSymbolFlags operator|(const JITSymbolFlags &LHS,
203 const JITSymbolFlags::FlagNames &RHS) {
204 JITSymbolFlags Tmp = LHS;
205 Tmp |= RHS;
206 return Tmp;
207}
208
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100209/// ARM-specific JIT symbol flags.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100210/// FIXME: This should be moved into a target-specific header.
211class ARMJITSymbolFlags {
212public:
213 ARMJITSymbolFlags() = default;
214
215 enum FlagNames {
216 None = 0,
217 Thumb = 1 << 0
218 };
219
220 operator JITSymbolFlags::TargetFlagsType&() { return Flags; }
221
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100222 static ARMJITSymbolFlags fromObjectSymbol(const object::SymbolRef &Symbol);
223
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100224private:
225 JITSymbolFlags::TargetFlagsType Flags = 0;
226};
227
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100228/// Represents a symbol that has been evaluated to an address already.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100229class JITEvaluatedSymbol {
230public:
231 JITEvaluatedSymbol() = default;
232
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100233 /// Create a 'null' symbol.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100234 JITEvaluatedSymbol(std::nullptr_t) {}
235
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100236 /// Create a symbol for the given address and flags.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100237 JITEvaluatedSymbol(JITTargetAddress Address, JITSymbolFlags Flags)
238 : Address(Address), Flags(Flags) {}
239
Olivier Deprezf4ef2d02021-04-20 13:36:24 +0200240 /// Create a symbol from the given pointer with the given flags.
241 template <typename T>
242 static JITEvaluatedSymbol
243 fromPointer(T *P, JITSymbolFlags Flags = JITSymbolFlags::Exported) {
244 return JITEvaluatedSymbol(pointerToJITTargetAddress(P), Flags);
245 }
246
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100247 /// An evaluated symbol converts to 'true' if its address is non-zero.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100248 explicit operator bool() const { return Address != 0; }
249
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100250 /// Return the address of this symbol.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100251 JITTargetAddress getAddress() const { return Address; }
252
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100253 /// Return the flags for this symbol.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100254 JITSymbolFlags getFlags() const { return Flags; }
255
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100256 /// Set the flags for this symbol.
257 void setFlags(JITSymbolFlags Flags) { this->Flags = std::move(Flags); }
258
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100259private:
260 JITTargetAddress Address = 0;
261 JITSymbolFlags Flags;
262};
263
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100264/// Represents a symbol in the JIT.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100265class JITSymbol {
266public:
Olivier Deprezf4ef2d02021-04-20 13:36:24 +0200267 using GetAddressFtor = unique_function<Expected<JITTargetAddress>()>;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100268
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100269 /// Create a 'null' symbol, used to represent a "symbol not found"
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100270 /// result from a successful (non-erroneous) lookup.
271 JITSymbol(std::nullptr_t)
272 : CachedAddr(0) {}
273
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100274 /// Create a JITSymbol representing an error in the symbol lookup
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100275 /// process (e.g. a network failure during a remote lookup).
276 JITSymbol(Error Err)
277 : Err(std::move(Err)), Flags(JITSymbolFlags::HasError) {}
278
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100279 /// Create a symbol for a definition with a known address.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100280 JITSymbol(JITTargetAddress Addr, JITSymbolFlags Flags)
281 : CachedAddr(Addr), Flags(Flags) {}
282
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100283 /// Construct a JITSymbol from a JITEvaluatedSymbol.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100284 JITSymbol(JITEvaluatedSymbol Sym)
285 : CachedAddr(Sym.getAddress()), Flags(Sym.getFlags()) {}
286
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100287 /// Create a symbol for a definition that doesn't have a known address
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100288 /// yet.
289 /// @param GetAddress A functor to materialize a definition (fixing the
290 /// address) on demand.
291 ///
292 /// This constructor allows a JIT layer to provide a reference to a symbol
293 /// definition without actually materializing the definition up front. The
294 /// user can materialize the definition at any time by calling the getAddress
295 /// method.
296 JITSymbol(GetAddressFtor GetAddress, JITSymbolFlags Flags)
297 : GetAddress(std::move(GetAddress)), CachedAddr(0), Flags(Flags) {}
298
299 JITSymbol(const JITSymbol&) = delete;
300 JITSymbol& operator=(const JITSymbol&) = delete;
301
302 JITSymbol(JITSymbol &&Other)
303 : GetAddress(std::move(Other.GetAddress)), Flags(std::move(Other.Flags)) {
304 if (Flags.hasError())
305 Err = std::move(Other.Err);
306 else
307 CachedAddr = std::move(Other.CachedAddr);
308 }
309
310 JITSymbol& operator=(JITSymbol &&Other) {
311 GetAddress = std::move(Other.GetAddress);
312 Flags = std::move(Other.Flags);
313 if (Flags.hasError())
314 Err = std::move(Other.Err);
315 else
316 CachedAddr = std::move(Other.CachedAddr);
317 return *this;
318 }
319
320 ~JITSymbol() {
321 if (Flags.hasError())
322 Err.~Error();
323 else
324 CachedAddr.~JITTargetAddress();
325 }
326
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100327 /// Returns true if the symbol exists, false otherwise.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100328 explicit operator bool() const {
329 return !Flags.hasError() && (CachedAddr || GetAddress);
330 }
331
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100332 /// Move the error field value out of this JITSymbol.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100333 Error takeError() {
334 if (Flags.hasError())
335 return std::move(Err);
336 return Error::success();
337 }
338
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100339 /// Get the address of the symbol in the target address space. Returns
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100340 /// '0' if the symbol does not exist.
341 Expected<JITTargetAddress> getAddress() {
342 assert(!Flags.hasError() && "getAddress called on error value");
343 if (GetAddress) {
344 if (auto CachedAddrOrErr = GetAddress()) {
345 GetAddress = nullptr;
346 CachedAddr = *CachedAddrOrErr;
347 assert(CachedAddr && "Symbol could not be materialized.");
348 } else
349 return CachedAddrOrErr.takeError();
350 }
351 return CachedAddr;
352 }
353
354 JITSymbolFlags getFlags() const { return Flags; }
355
356private:
357 GetAddressFtor GetAddress;
358 union {
359 JITTargetAddress CachedAddr;
360 Error Err;
361 };
362 JITSymbolFlags Flags;
363};
364
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100365/// Symbol resolution interface.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100366///
367/// Allows symbol flags and addresses to be looked up by name.
368/// Symbol queries are done in bulk (i.e. you request resolution of a set of
369/// symbols, rather than a single one) to reduce IPC overhead in the case of
370/// remote JITing, and expose opportunities for parallel compilation.
371class JITSymbolResolver {
372public:
373 using LookupSet = std::set<StringRef>;
374 using LookupResult = std::map<StringRef, JITEvaluatedSymbol>;
Olivier Deprezf4ef2d02021-04-20 13:36:24 +0200375 using OnResolvedFunction = unique_function<void(Expected<LookupResult>)>;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100376
377 virtual ~JITSymbolResolver() = default;
378
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100379 /// Returns the fully resolved address and flags for each of the given
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100380 /// symbols.
381 ///
382 /// This method will return an error if any of the given symbols can not be
383 /// resolved, or if the resolution process itself triggers an error.
Andrew Scull0372a572018-11-16 15:47:06 +0000384 virtual void lookup(const LookupSet &Symbols,
385 OnResolvedFunction OnResolved) = 0;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100386
Andrew Scull0372a572018-11-16 15:47:06 +0000387 /// Returns the subset of the given symbols that should be materialized by
388 /// the caller. Only weak/common symbols should be looked up, as strong
389 /// definitions are implicitly always part of the caller's responsibility.
390 virtual Expected<LookupSet>
391 getResponsibilitySet(const LookupSet &Symbols) = 0;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100392
393private:
394 virtual void anchor();
395};
396
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100397/// Legacy symbol resolution interface.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100398class LegacyJITSymbolResolver : public JITSymbolResolver {
399public:
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100400 /// Performs lookup by, for each symbol, first calling
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100401 /// findSymbolInLogicalDylib and if that fails calling
402 /// findSymbol.
Andrew Scull0372a572018-11-16 15:47:06 +0000403 void lookup(const LookupSet &Symbols, OnResolvedFunction OnResolved) final;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100404
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100405 /// Performs flags lookup by calling findSymbolInLogicalDylib and
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100406 /// returning the flags value for that symbol.
Andrew Scull0372a572018-11-16 15:47:06 +0000407 Expected<LookupSet> getResponsibilitySet(const LookupSet &Symbols) final;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100408
409 /// This method returns the address of the specified symbol if it exists
410 /// within the logical dynamic library represented by this JITSymbolResolver.
411 /// Unlike findSymbol, queries through this interface should return addresses
412 /// for hidden symbols.
413 ///
414 /// This is of particular importance for the Orc JIT APIs, which support lazy
415 /// compilation by breaking up modules: Each of those broken out modules
416 /// must be able to resolve hidden symbols provided by the others. Clients
417 /// writing memory managers for MCJIT can usually ignore this method.
418 ///
419 /// This method will be queried by RuntimeDyld when checking for previous
420 /// definitions of common symbols.
421 virtual JITSymbol findSymbolInLogicalDylib(const std::string &Name) = 0;
422
423 /// This method returns the address of the specified function or variable.
424 /// It is used to resolve symbols during module linking.
425 ///
426 /// If the returned symbol's address is equal to ~0ULL then RuntimeDyld will
427 /// skip all relocations for that symbol, and the client will be responsible
428 /// for handling them manually.
429 virtual JITSymbol findSymbol(const std::string &Name) = 0;
430
431private:
Olivier Deprezf4ef2d02021-04-20 13:36:24 +0200432 void anchor() override;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100433};
434
435} // end namespace llvm
436
437#endif // LLVM_EXECUTIONENGINE_JITSYMBOL_H