llvm-project icon indicating copy to clipboard operation
llvm-project copied to clipboard

The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. This fork is used to manage Apple’s stable releases of Clang as well as support the Swift project.

Results 329 llvm-project issues
Sort by recently updated
recently updated
newest added

The `python_api/address_range/TestAddressRange.py` test fails in SwiftCI, because the reported range is prefixed with the name of the executable that that won't match the regex: ``` Expected: [0x140001020-0x14000103d) Actual: a.out[0x140001020-0x14000103d) ```...

We see 3 tests failing for swift-lldb in CI, because of unexpected additional breakpoint sites. Failures look like this: ``` llvm-project\lldb\test\Shell\Unwind\windows-unaligned-x86_64.test:20:10: error: CHECK: expected string not found in input #...

This test was added with https://github.com/swiftlang/llvm-project/commit/8fed7dc6aa10 and we see failures since the rebranch (switching to [swiftlang:stable/20240723](https://github.com/swiftlang/llvm-project/tree/stable/20240723)). SwiftCI error message: ``` # RUN: at line 3 T:/5/bin/swiftc -module-cache-path T:/5/.\lldb-test-build.noindex\module-cache-clang -g C:\Users\swift-ci\jenkins\workspace\swift-PR-windows\llvm-project\lldb\test\Shell\Swift/Inputs/Global.swift...

…te-breakpoints"" This reverts commit c93fb6d699b398048459e2b203ccec25ed9e6ee9.

This fixes the following `swift/release/6.0` Ubuntu CI test failures: ``` lldb-api :: commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py lldb-api :: commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py lldb-api :: commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py ``` (cherry picked from commit https://github.com/swiftlang/llvm-project/commit/adf44d5c3ea03569f019740e1140c3205810b3fa) (cherry picked from commit https://github.com/swiftlang/llvm-project/commit/2bcab9ba7139cfa96c85433fa85b29c8a6d7008b)

To support Swift types defined with @_originallyDefinedIn, we need to encode the ABI module name in debug info somehow. This patch adds a new alternative_module_name to LLVM IR and DWARF...

When running tests for LLDB in CI, the ones for SwiftREPL fail with an error like this: ``` $ "t:\5\bin\lldb.exe" "--no-lldbinit" "-S" "T:/5/tools/lldb\test\Shell\lit-lldb-init-quiet" "--repl" error: failed to stop process at...

As per https://github.com/apple/swift/pull/65930, Swift compiler's built-in Clang instance may require to perform type-checking against one OS version and compilation/code-generation against an earlier version. This change allows Swift to configure it's...

(cherry picked from commit 7cbb01a4ad2a4d47cd2986a588a32fe3b78d313c)

A synthetic perftest gives the following results (`frame variable some_large_var`): Before: GetCanonicalType = 5.2s, CommandObjectFrameVariable::DoExecute = 24.1s After: GetCanonicalType = 0.5s, CommandObjectFrameVariable::DoExecute = 19.1s