-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[lldb][libc++] Hide all libc++ implementation details from stacktraces #108870
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
04daaac
d0cf329
d31e3c5
79b591c
c272d51
a02a623
2c0ffe2
2083216
078e005
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
CXX_SOURCES := main.cpp | ||
USE_LIBCPP := 1 | ||
CXXFLAGS_EXTRAS := -std=c++17 | ||
CXXFLAGS_EXTRAS := -std=c++20 | ||
|
||
include Makefile.rules |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import lldb | ||
from lldbsuite.test.decorators import * | ||
from lldbsuite.test.lldbtest import * | ||
from lldbsuite.test import lldbutil | ||
|
||
|
||
class LibCxxInternalsRecognizerTestCase(TestBase): | ||
NO_DEBUG_INFO_TESTCASE = True | ||
|
||
@add_test_categories(["libc++"]) | ||
def test_frame_recognizer(self): | ||
"""Test that implementation details of libc++ are hidden""" | ||
self.build() | ||
(target, process, thread, bkpt) = lldbutil.run_to_source_breakpoint( | ||
self, "break here", lldb.SBFileSpec("main.cpp") | ||
) | ||
|
||
expected_parents = { | ||
"sort_less(int, int)": ["::sort", "test_algorithms"], | ||
# `std::ranges::sort` is implemented as an object of types `__sort`. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There're a large number of such customization point objects (and niebloids, which will be respecified as CPOs soon, see P3136R0) since C++20. Should we invent some convention to recognize them uniformly? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure that such a convention would be necessary. With the current heuristic ("never hide a frame which was immediately called from user code"), the end result to the user is fine, despite the debug info containing the |
||
# We never hide the frame of the entry-point into the standard library, even | ||
# if the name starts with `__` which usually indicates an internal function. | ||
"ranges_sort_less(int, int)": [ | ||
"ranges::__sort::operator()", | ||
"test_algorithms", | ||
], | ||
# `ranges::views::transform` internally uses `std::invoke`, and that | ||
# call also shows up in the stack trace | ||
"view_transform(int)": [ | ||
"::invoke", | ||
"ranges::transform_view", | ||
"test_algorithms", | ||
], | ||
# Various types of `invoke` calls | ||
"consume_number(int)": ["::invoke", "test_invoke"], | ||
"invoke_add(int, int)": ["::invoke", "test_invoke"], | ||
"Callable::member_function(int) const": ["::invoke", "test_invoke"], | ||
"Callable::operator()(int) const": ["::invoke", "test_invoke"], | ||
# Containers | ||
"MyKey::operator<(MyKey const&) const": [ | ||
"less", | ||
"::emplace", | ||
"test_containers", | ||
], | ||
} | ||
stop_set = set() | ||
while process.GetState() != lldb.eStateExited: | ||
fn = thread.GetFrameAtIndex(0).GetFunctionName() | ||
stop_set.add(fn) | ||
self.assertIn(fn, expected_parents.keys()) | ||
frame_id = 1 | ||
for expected_parent in expected_parents[fn]: | ||
# Skip all hidden frames | ||
while ( | ||
frame_id < thread.GetNumFrames() | ||
and thread.GetFrameAtIndex(frame_id).IsHidden() | ||
): | ||
frame_id = frame_id + 1 | ||
# Expect the correct parent frame | ||
self.assertIn( | ||
expected_parent, thread.GetFrameAtIndex(frame_id).GetFunctionName() | ||
) | ||
frame_id = frame_id + 1 | ||
process.Continue() | ||
|
||
# Make sure that we actually verified all intended scenarios | ||
self.assertEqual(len(stop_set), len(expected_parents)) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
#include <algorithm> | ||
#include <functional> | ||
#include <map> | ||
#include <ranges> | ||
#include <vector> | ||
|
||
bool sort_less(int a, int b) { | ||
__builtin_printf("break here"); | ||
return a < b; | ||
} | ||
|
||
bool ranges_sort_less(int a, int b) { | ||
__builtin_printf("break here"); | ||
return a < b; | ||
} | ||
|
||
int view_transform(int a) { | ||
__builtin_printf("break here"); | ||
return a * a; | ||
} | ||
|
||
void test_algorithms() { | ||
std::vector<int> vec{8, 1, 3, 2}; | ||
|
||
// The internal frames for `std::sort` should be hidden | ||
std::sort(vec.begin(), vec.end(), sort_less); | ||
|
||
// The internal frames for `ranges::sort` should be hidden | ||
std::ranges::sort(vec.begin(), vec.end(), ranges_sort_less); | ||
|
||
// Same for views | ||
for (auto x : vec | std::ranges::views::transform(view_transform)) { | ||
// no-op | ||
} | ||
} | ||
|
||
void consume_number(int i) { __builtin_printf("break here"); } | ||
|
||
int invoke_add(int i, int j) { | ||
__builtin_printf("break here"); | ||
return i + j; | ||
} | ||
|
||
struct Callable { | ||
Callable(int num) : num_(num) {} | ||
void operator()(int i) const { __builtin_printf("break here"); } | ||
void member_function(int i) const { __builtin_printf("break here"); } | ||
int num_; | ||
}; | ||
|
||
void test_invoke() { | ||
// Invoke a void-returning function | ||
std::invoke(consume_number, -9); | ||
|
||
// Invoke a non-void-returning function | ||
std::invoke(invoke_add, 1, 10); | ||
|
||
// Invoke a member function | ||
const Callable foo(314159); | ||
std::invoke(&Callable::member_function, foo, 1); | ||
|
||
// Invoke a function object | ||
std::invoke(Callable(12), 18); | ||
} | ||
|
||
struct MyKey { | ||
int x; | ||
bool operator==(const MyKey &) const = default; | ||
bool operator<(const MyKey &other) const { | ||
__builtin_printf("break here"); | ||
return x < other.x; | ||
} | ||
}; | ||
|
||
void test_containers() { | ||
std::map<MyKey, int> map; | ||
map.emplace(MyKey{1}, 2); | ||
map.emplace(MyKey{2}, 3); | ||
} | ||
|
||
int main() { | ||
test_algorithms(); | ||
test_invoke(); | ||
test_containers(); | ||
return 0; | ||
} |
This file was deleted.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.