mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
SROA and Mem2Reg now can leverage DIExpression -- op_fragment, more specifically -- to generate correct debug info for optimized SIL. Some important highlights: - The new swift::salvageDebugInfo, similar to llvm::salvageDebugInfo, tries to restore / transfer debug info from a deleted instruction. Currently I only implemented this for store instruction whose destination is an alloc_stack value. - Since we now have source-variable-specific SIL location inside a `debug_value` instruction (and its friends), this patch teaches SILCloner and SILInliner to remap the debug scope there in addition to debug scope of the instruction. - DCE now does not remove `debug_value` instruction whose associating with a function argument SSA value that is not used elsewhere. Since that SSA value will not disappear so we should keep the debug info.
33 lines
727 B
Swift
33 lines
727 B
Swift
// RUN: %target-swift-frontend -O -emit-sil -parse-as-library %s | %FileCheck %s
|
|
|
|
protocol E {
|
|
func f() -> Bool
|
|
}
|
|
|
|
protocol P {
|
|
associatedtype A = Int
|
|
}
|
|
|
|
public struct X : P, E {
|
|
func f() -> Bool { return true }
|
|
}
|
|
|
|
func g<T : P>(_ x : T) -> Bool {
|
|
if let y = x as? E { return y.f() }
|
|
return false
|
|
}
|
|
|
|
// Check that this function can be completely constant folded and no alloc_stack remains.
|
|
|
|
// CHECK-LABEL: sil @$s16dead_alloc_stack6testitySbAA1XVF
|
|
// CHECK: bb0({{.*}}):
|
|
// CHECK-NEXT: debug_value
|
|
// CHECK-NEXT: integer_literal
|
|
// CHECK-NEXT: struct
|
|
// CHECK-NEXT: return
|
|
// CHECK-NEXT: } // end sil function '$s16dead_alloc_stack6testitySbAA1XVF'
|
|
public func testit(_ x: X) -> Bool {
|
|
return g(x)
|
|
}
|
|
|