forked from wpilibsuite/allwpilib
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[upstream_utils] Add std::is_debugger_present() shim
Fixes wpilibsuite#7420.
- Loading branch information
Showing
15 changed files
with
405 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import os | ||
import shutil | ||
|
||
from upstream_utils import Lib, walk_cwd_and_copy_if | ||
|
||
|
||
def copy_upstream_src(wpilib_root): | ||
wpiutil = os.path.join(wpilib_root, "wpiutil") | ||
|
||
# Delete old install | ||
for d in [ | ||
"src/main/native/thirdparty/debugging/src", | ||
"src/main/native/thirdparty/debugging/include", | ||
]: | ||
shutil.rmtree(os.path.join(wpiutil, d), ignore_errors=True) | ||
|
||
# Copy debugging files into allwpilib | ||
filenames = walk_cwd_and_copy_if( | ||
lambda dp, f: dp.startswith(os.path.join(".", "src")) | ||
or dp.startswith(os.path.join(".", "include")), | ||
os.path.join(wpiutil, "src/main/native/thirdparty/debugging"), | ||
) | ||
|
||
for filename in filenames: | ||
with open(filename) as f: | ||
content = f.read() | ||
|
||
# Rename namespace from stdx to wpi | ||
content = content.replace("namespace stdx", "namespace wpi") | ||
|
||
with open(filename, "w") as f: | ||
f.write(content) | ||
|
||
|
||
def main(): | ||
name = "debugging" | ||
url = "https://github.com/grafikrobot/debugging" | ||
# master on 2024-11-21 | ||
tag = "c510133c44894b93afbb5be55275bfb88163a2cb" | ||
|
||
expected = Lib(name, url, tag, copy_upstream_src) | ||
expected.main() | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
35 changes: 35 additions & 0 deletions
35
upstream_utils/debugging_patches/0001-Guard-gnu-flatten-attribute.patch
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,35 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Tyler Veness <[email protected]> | ||
Date: Thu, 21 Nov 2024 17:51:15 -0800 | ||
Subject: [PATCH 1/3] Guard [[gnu::flatten]] attribute | ||
|
||
--- | ||
include/debugging.hpp | 10 ++++++++-- | ||
1 file changed, 8 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/include/debugging.hpp b/include/debugging.hpp | ||
index 70ba724a2b6522a774931af7d7be2cee9408567a..25014a9fc65d06052089058feea7566462c01d60 100644 | ||
--- a/include/debugging.hpp | ||
+++ b/include/debugging.hpp | ||
@@ -7,13 +7,19 @@ namespace stdx { | ||
|
||
bool is_debugger_present() noexcept; | ||
|
||
-[[gnu::flatten]] inline void breakpoint() noexcept | ||
+#if defined(__GNUC__) && !defined(__clang__) | ||
+[[gnu::flatten]] | ||
+#endif | ||
+inline void breakpoint() noexcept | ||
{ | ||
psnip_trap(); | ||
} | ||
|
||
|
||
-[[gnu::flatten]] inline void breakpoint_if_debugging() noexcept | ||
+#if defined(__GNUC__) && !defined(__clang__) | ||
+[[gnu::flatten]] | ||
+#endif | ||
+inline void breakpoint_if_debugging() noexcept | ||
{ | ||
if (is_debugger_present()) breakpoint(); | ||
} |
36 changes: 36 additions & 0 deletions
36
...m_utils/debugging_patches/0002-Remove-debugger_query-argument-from-Windows-and-macO.patch
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,36 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Tyler Veness <[email protected]> | ||
Date: Thu, 21 Nov 2024 17:23:48 -0800 | ||
Subject: [PATCH 2/3] Remove debugger_query argument from Windows and macOS | ||
|
||
--- | ||
src/macos.cxx | 2 +- | ||
src/windows.cxx | 2 +- | ||
2 files changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/src/macos.cxx b/src/macos.cxx | ||
index bbcf6f2eec9ea479a2bea0ff06b454dc81b5d356..85dbb5f45d89680e39b4847a9aa2d5472c824f2a 100644 | ||
--- a/src/macos.cxx | ||
+++ b/src/macos.cxx | ||
@@ -13,7 +13,7 @@ auto exc = std::array<T, EXC_TYPES_COUNT> { {} }; | ||
|
||
namespace stdx { | ||
|
||
-bool is_debugger_present(debugger_query q) noexcept | ||
+bool is_debugger_present() noexcept | ||
{ | ||
mach_msg_type_number_t count {}; | ||
auto masks = exc<exception_mask_t>; | ||
diff --git a/src/windows.cxx b/src/windows.cxx | ||
index eec576f415d52f63d2658012546ead2e691d7415..45d98eb27c5182de7ad11291925275fb4fdb54fb 100644 | ||
--- a/src/windows.cxx | ||
+++ b/src/windows.cxx | ||
@@ -9,7 +9,7 @@ | ||
|
||
namespace stdx { | ||
|
||
-bool is_debugger_present(debugger_query q) noexcept | ||
+bool is_debugger_present() noexcept | ||
{ | ||
return ::IsDebuggerPresent(); | ||
} |
22 changes: 22 additions & 0 deletions
22
upstream_utils/debugging_patches/0003-Fix-exception-mask-type-typo-on-macOS.patch
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,22 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Tyler Veness <[email protected]> | ||
Date: Thu, 21 Nov 2024 18:09:37 -0800 | ||
Subject: [PATCH 3/3] Fix exception mask type typo on macOS | ||
|
||
--- | ||
src/macos.cxx | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/src/macos.cxx b/src/macos.cxx | ||
index 85dbb5f45d89680e39b4847a9aa2d5472c824f2a..2c68064742bc7883a08551b88cd5dbb9a1f38100 100644 | ||
--- a/src/macos.cxx | ||
+++ b/src/macos.cxx | ||
@@ -20,7 +20,7 @@ bool is_debugger_present() noexcept | ||
auto ports = exc<mach_port_t>; | ||
auto behaviors = exc<exception_behavior_t>; | ||
auto flavors = exc<thread_state_flavor_t>; | ||
- exception_mast_t mask | ||
+ exception_mask_t mask | ||
= EXC_MASK_ALL & ~(EXC_MASK_RESOURCE | EXC_MASK_GUARD); | ||
kern_return_t result = task_get_exception_ports(mach_task_self(), mask, | ||
masks.data(), &count, ports.data(), behaviors.data(), flavors.data()); |
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
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
29 changes: 29 additions & 0 deletions
29
wpiutil/src/main/native/thirdparty/debugging/include/debugging.hpp
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,29 @@ | ||
#ifndef IXM_BREAKPOINT_HPP | ||
#define IXM_BREAKPOINT_HPP | ||
|
||
#include <debugging/detail/psnip_debug_trap.h> | ||
|
||
namespace wpi { | ||
|
||
bool is_debugger_present() noexcept; | ||
|
||
#if defined(__GNUC__) && !defined(__clang__) | ||
[[gnu::flatten]] | ||
#endif | ||
inline void breakpoint() noexcept | ||
{ | ||
psnip_trap(); | ||
} | ||
|
||
|
||
#if defined(__GNUC__) && !defined(__clang__) | ||
[[gnu::flatten]] | ||
#endif | ||
inline void breakpoint_if_debugging() noexcept | ||
{ | ||
if (is_debugger_present()) breakpoint(); | ||
} | ||
|
||
} // namespace wpi | ||
|
||
#endif |
Oops, something went wrong.