MCPcopy Create free account
hub / github.com/WasmEdge/WasmEdge / getIntrinsics

Method getIntrinsics

lib/llvm/jit.cpp:22–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20}
21
22Symbol<const Executable::IntrinsicsTable *>
23JITLibrary::getIntrinsics() noexcept {
24 if (auto Symbol = J->lookup<const IntrinsicsTable *>("intrinsics")) {
25 return createSymbol<const IntrinsicsTable *>(*Symbol);
26 } else {
27 spdlog::error("{}"sv, Symbol.error().message().string_view());
28 return {};
29 }
30}
31
32std::vector<Symbol<Executable::Wrapper>>
33JITLibrary::getTypes(size_t Size) noexcept {

Callers 1

loadExecutableMethod · 0.45

Calls 3

errorFunction · 0.50
string_viewMethod · 0.45
messageMethod · 0.45

Tested by

no test coverage detected