Michael Buch

Results 15 issues of Michael Buch

Tried with top-of-tree as of `4ba360d499f6169d62a9535438b3cf34337ffc67`. But works with `lldb-14`. ```console $ cat nested.cpp template struct C {}; template struct S { template void method() {} }; template void free_function()...

lldb

Example program: ```console $ cat keyword.cpp template struct Foo { template void import() {} }; int main() { Foo f; f.import(); } $ ./bin/lldb a.out (lldb) target create "a.out" Current...

lldb

Should have an edge labelled "b" from I to G. On a side-note, why do we have the b-edge from G going back to G instead of to C? When...

Prior to this change the debug-location for the `llvm.instrprof.increment` intrinsic was set to whatever the current DIBuilder's current debug location was set to. This meant that for switch-statements, a counter's...

In https://reviews.llvm.org/D156020 we moved `GetSDKPathFromDebugInfo` into the `Platform` component so it can be shared between Swift and non-Swift plugins. This patch simply uses that function instead. We wrap the call...

This patch is in preparation for the `__compressed_pair` refactor in https://github.com/llvm/llvm-project/pull/76756. This gets the formatter tests to at least pass. Currently in draft because there's still some cleanup to be...

This patch ensures that if `libc++` is called from Swift (via Swift interop for example), and triggers a `__builtin_verbose_trap`, we don't stop in the Swift-C++ compiler-generated shims. E.g., in the...

This patch ensures that if `libc++` is called from Swift (via Swift interop for example), and triggers a `__builtin_verbose_trap`, we don't stop in the Swift-C++ compiler-generated shims. E.g., in the...

We pass `-stdlib=libc++` in the test-suite to Clang for many of our tests because we want to explicilty test against libc++ type layouts. However, if we don't do this against...

When running in constrained environments like docker, disabling ASLR might fail with errors like: ``` AssertionError: False is not true : launch failed (Cannot launch '/__w/.../lldb-dap/stackTrace/subtleFrames/TestDAP_subtleFrames.test_subtleFrames/a.out': personality set failed: Operation...

lldb