-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #460 from bluescarni/pr/force_load
Implement approach to manually inject heyoka's symbols in the JIT
- Loading branch information
Showing
7 changed files
with
183 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright 2020, 2021, 2022, 2023, 2024 Francesco Biscani ([email protected]), Dario Izzo ([email protected]) | ||
// | ||
// This file is part of the heyoka library. | ||
// | ||
// This Source Code Form is subject to the terms of the Mozilla | ||
// Public License v. 2.0. If a copy of the MPL was not distributed | ||
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
#ifndef HEYOKA_DETAIL_GET_DL_PATH_HPP | ||
#define HEYOKA_DETAIL_GET_DL_PATH_HPP | ||
|
||
#include <string> | ||
|
||
#include <heyoka/config.hpp> | ||
|
||
HEYOKA_BEGIN_NAMESPACE | ||
|
||
namespace detail | ||
{ | ||
|
||
const std::string &get_dl_path(); | ||
|
||
} | ||
|
||
HEYOKA_END_NAMESPACE | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
// Copyright 2020, 2021, 2022, 2023, 2024 Francesco Biscani ([email protected]), Dario Izzo ([email protected]) | ||
// | ||
// This file is part of the heyoka library. | ||
// | ||
// This Source Code Form is subject to the terms of the Mozilla | ||
// Public License v. 2.0. If a copy of the MPL was not distributed | ||
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
#include <exception> | ||
#include <filesystem> | ||
#include <iostream> | ||
#include <string> | ||
|
||
#if __has_include(<dlfcn.h>) | ||
|
||
#define HEYOKA_DETAIL_GET_DL_PATH_DLFCN | ||
|
||
#include <dlfcn.h> | ||
|
||
#endif | ||
|
||
#include <heyoka/config.hpp> | ||
#include <heyoka/detail/get_dl_path.hpp> | ||
|
||
HEYOKA_BEGIN_NAMESPACE | ||
|
||
namespace detail | ||
{ | ||
|
||
namespace | ||
{ | ||
|
||
#if defined(HEYOKA_DETAIL_GET_DL_PATH_DLFCN) | ||
|
||
// NOTE: need a dummy variable to take the address of. | ||
const int dummy = 42; | ||
|
||
// Implementation of make_dl_path() based on dladdr(), from the dlfcn.h header. | ||
std::string make_dl_path_dlfcn() | ||
{ | ||
// Invoke dladdr(). | ||
::Dl_info dl_info; | ||
const auto ret = ::dladdr(static_cast<const void *>(&dummy), &dl_info); | ||
|
||
// NOTE: in case of any failure, we will fall through the | ||
// "return {};" statement and produce an empty string. | ||
if (ret != 0 && dl_info.dli_fname != nullptr) { | ||
try { | ||
return std::filesystem::canonical(std::filesystem::path(dl_info.dli_fname)).string(); | ||
// LCOV_EXCL_START | ||
} catch (const std::exception &e) { | ||
std::cerr << "WARNING - exception raised while trying to determine the path of the heyoka library: " | ||
<< e.what() << std::endl; | ||
} catch (...) { | ||
std::cerr << "WARNING - exception raised while trying to determine the path of the heyoka library" | ||
<< std::endl; | ||
} | ||
} | ||
|
||
return {}; | ||
// LCOV_EXCL_STOP | ||
} | ||
|
||
#endif | ||
|
||
// Factory function for dl_path. | ||
std::string make_dl_path() | ||
{ | ||
#if defined(HEYOKA_DETAIL_GET_DL_PATH_DLFCN) | ||
|
||
return make_dl_path_dlfcn(); | ||
|
||
#else | ||
|
||
return {}; | ||
|
||
#endif | ||
} | ||
|
||
// The path to the heyoka shared library. | ||
const std::string dl_path = make_dl_path(); | ||
|
||
} // namespace | ||
|
||
// This function is meant to return the full canonicalised path to the heyoka shared library. | ||
// | ||
// If, for any reason, the path cannot be determined, an empty | ||
// string will be returned instead. | ||
const std::string &get_dl_path() | ||
{ | ||
return detail::dl_path; | ||
} | ||
|
||
} // namespace detail | ||
|
||
HEYOKA_END_NAMESPACE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters